forked from torvalds/linux
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ARM: dts: motorola-mapphone: Add basic support for mz609 and mz617
The Motorola mapphone tablets are similar to the mapphone phones, but with different display and without some phone related peripherals. Let's add a new motorola-mapphone-mz607-mz617.dtsi and basic files for xyboard mz609 and mz617. All the tablets from mz607 to mz617 are quite similar so let's use motorola-mapphone-mz607-mz617.dtsi naming for the common file. Note that the tc358765 lcd bridge needs driver changes before it can be added. Signed-off-by: Tony Lindgren <[email protected]>
- Loading branch information
Showing
4 changed files
with
87 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
arch/arm/boot/dts/ti/omap/motorola-mapphone-mz607-mz617.dtsi
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// SPDX-License-Identifier: GPL-2.0-only | ||
/dts-v1/; | ||
|
||
#include "motorola-mapphone-common.dtsi" | ||
|
||
&keypad { | ||
keypad,num-rows = <8>; | ||
keypad,num-columns = <8>; | ||
linux,keymap = <MATRIX_KEY(5, 0, KEY_VOLUMEUP)>, | ||
<MATRIX_KEY(3, 0, KEY_VOLUMEDOWN)>; | ||
}; | ||
|
||
/* | ||
* On tablets, mmc1 regulator is vsimcard instead of vwlan2 in the stock kernel | ||
* dtb. The regulator may not be wired even if a MMC cage is added though. | ||
*/ | ||
&mmc1 { | ||
vmmc-supply = <&vsimcard>; | ||
bus-width = <4>; | ||
cd-gpios = <&gpio6 16 GPIO_ACTIVE_LOW>; /* gpio_176 */ | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// SPDX-License-Identifier: GPL-2.0-only | ||
/dts-v1/; | ||
|
||
#include "motorola-mapphone-mz607-mz617.dtsi" | ||
|
||
/ { | ||
model = "Motorola Xyboard MZ609"; | ||
compatible = "motorola,xyboard-mz609", "ti,omap4430", "ti,omap4"; | ||
|
||
chosen { | ||
stdout-path = &uart3; | ||
}; | ||
|
||
aliases { | ||
display1 = &hdmi0; | ||
}; | ||
|
||
backlight: backlight { | ||
compatible = "led-backlight"; | ||
|
||
leds = <&backlight_led>; | ||
brightness-levels = <31 63 95 127 159 191 223 255>; | ||
default-brightness-level = <6>; | ||
}; | ||
}; | ||
|
||
&i2c1 { | ||
led-controller@38 { | ||
compatible = "ti,lm3532"; | ||
#address-cells = <1>; | ||
#size-cells = <0>; | ||
reg = <0x38>; | ||
|
||
enable-gpios = <&gpio6 12 GPIO_ACTIVE_HIGH>; | ||
|
||
ramp-up-us = <1024>; | ||
ramp-down-us = <8193>; | ||
|
||
backlight_led: led@0 { | ||
reg = <0>; | ||
led-sources = <2>; | ||
ti,led-mode = <0>; | ||
label = ":backlight"; | ||
}; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
// SPDX-License-Identifier: GPL-2.0-only | ||
/dts-v1/; | ||
|
||
#include "motorola-mapphone-mz607-mz617.dtsi" | ||
|
||
/ { | ||
model = "Motorola Xyboard MZ617"; | ||
compatible = "motorola,xyboard-mz617", "ti,omap4430", "ti,omap4"; | ||
|
||
chosen { | ||
stdout-path = &uart3; | ||
}; | ||
|
||
aliases { | ||
display1 = &hdmi0; | ||
}; | ||
}; |