diff options
author | Arnd Bergmann <arnd@arndb.de> | 2013-03-15 18:02:39 -0400 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2013-03-15 18:02:39 -0400 |
commit | 4a20502de11c3837ec35f2aa7f3c53320fd58d34 (patch) | |
tree | f285a8994003e6117ce0e936eec7a295d3940efc | |
parent | f6161aa153581da4a3867a2d1a7caf4be19b6ec9 (diff) | |
parent | c3117edec5f92cce39f2d220c62f76675397af8d (diff) |
Merge tag 'mvebu_dt_for_v3.10' of git://git.infradead.org/users/jcooper/linux into next/dt
From Jason Cooper <jason@lakedaemon.net>:
mvebu DT changes for v3.10
- mvebu: gpio expander for the Mirabox
- kirkwood: thermal sensor
- dove: thermal sensor
* tag 'mvebu_dt_for_v3.10' of git://git.infradead.org/users/jcooper/linux:
Dove: Thermal: Add DT node and enable in defconfig
ARM: Kirkwood: Add support thermal sensor for 88F6282 and 88F6283
arm: mvebu: enable gpio expander over i2c on Mirabox platform
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
-rw-r--r-- | arch/arm/boot/dts/armada-370-mirabox.dts | 11 | ||||
-rw-r--r-- | arch/arm/boot/dts/dove.dtsi | 5 | ||||
-rw-r--r-- | arch/arm/boot/dts/kirkwood-6282.dtsi | 6 | ||||
-rw-r--r-- | arch/arm/configs/dove_defconfig | 2 | ||||
-rw-r--r-- | arch/arm/configs/kirkwood_defconfig | 2 |
5 files changed, 26 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/armada-370-mirabox.dts b/arch/arm/boot/dts/armada-370-mirabox.dts index dd0c57dd9f30..193ae1467816 100644 --- a/arch/arm/boot/dts/armada-370-mirabox.dts +++ b/arch/arm/boot/dts/armada-370-mirabox.dts | |||
@@ -70,5 +70,16 @@ | |||
70 | usb@d0051000 { | 70 | usb@d0051000 { |
71 | status = "okay"; | 71 | status = "okay"; |
72 | }; | 72 | }; |
73 | |||
74 | i2c@d0011000 { | ||
75 | status = "okay"; | ||
76 | clock-frequency = <100000>; | ||
77 | pca9505: pca9505@25 { | ||
78 | compatible = "nxp,pca9505"; | ||
79 | gpio-controller; | ||
80 | #gpio-cells = <2>; | ||
81 | reg = <0x25>; | ||
82 | }; | ||
83 | }; | ||
73 | }; | 84 | }; |
74 | }; | 85 | }; |
diff --git a/arch/arm/boot/dts/dove.dtsi b/arch/arm/boot/dts/dove.dtsi index 67dbe20868a2..0056214935f4 100644 --- a/arch/arm/boot/dts/dove.dtsi +++ b/arch/arm/boot/dts/dove.dtsi | |||
@@ -50,6 +50,11 @@ | |||
50 | #clock-cells = <1>; | 50 | #clock-cells = <1>; |
51 | }; | 51 | }; |
52 | 52 | ||
53 | thermal: thermal@d001c { | ||
54 | compatible = "marvell,dove-thermal"; | ||
55 | reg = <0xd001c 0x0c>, <0xd005c 0x08>; | ||
56 | }; | ||
57 | |||
53 | uart0: serial@12000 { | 58 | uart0: serial@12000 { |
54 | compatible = "ns16550a"; | 59 | compatible = "ns16550a"; |
55 | reg = <0x12000 0x100>; | 60 | reg = <0x12000 0x100>; |
diff --git a/arch/arm/boot/dts/kirkwood-6282.dtsi b/arch/arm/boot/dts/kirkwood-6282.dtsi index 192cf76fbf93..23991e45bc55 100644 --- a/arch/arm/boot/dts/kirkwood-6282.dtsi +++ b/arch/arm/boot/dts/kirkwood-6282.dtsi | |||
@@ -49,6 +49,12 @@ | |||
49 | }; | 49 | }; |
50 | }; | 50 | }; |
51 | 51 | ||
52 | thermal@10078 { | ||
53 | compatible = "marvell,kirkwood-thermal"; | ||
54 | reg = <0x10078 0x4>; | ||
55 | status = "okay"; | ||
56 | }; | ||
57 | |||
52 | i2c@11100 { | 58 | i2c@11100 { |
53 | compatible = "marvell,mv64xxx-i2c"; | 59 | compatible = "marvell,mv64xxx-i2c"; |
54 | reg = <0x11100 0x20>; | 60 | reg = <0x11100 0x20>; |
diff --git a/arch/arm/configs/dove_defconfig b/arch/arm/configs/dove_defconfig index 3fe8dae8d32d..4364eff5b01e 100644 --- a/arch/arm/configs/dove_defconfig +++ b/arch/arm/configs/dove_defconfig | |||
@@ -75,6 +75,8 @@ CONFIG_I2C_MV64XXX=y | |||
75 | CONFIG_SPI=y | 75 | CONFIG_SPI=y |
76 | CONFIG_SPI_ORION=y | 76 | CONFIG_SPI_ORION=y |
77 | # CONFIG_HWMON is not set | 77 | # CONFIG_HWMON is not set |
78 | CONFIG_THERMAL=y | ||
79 | CONFIG_DOVE_THERMAL=y | ||
78 | CONFIG_USB=y | 80 | CONFIG_USB=y |
79 | CONFIG_USB_EHCI_HCD=y | 81 | CONFIG_USB_EHCI_HCD=y |
80 | CONFIG_USB_EHCI_ROOT_HUB_TT=y | 82 | CONFIG_USB_EHCI_ROOT_HUB_TT=y |
diff --git a/arch/arm/configs/kirkwood_defconfig b/arch/arm/configs/kirkwood_defconfig index 13482ea58b09..8f0065bb6f39 100644 --- a/arch/arm/configs/kirkwood_defconfig +++ b/arch/arm/configs/kirkwood_defconfig | |||
@@ -119,6 +119,8 @@ CONFIG_SPI=y | |||
119 | CONFIG_SPI_ORION=y | 119 | CONFIG_SPI_ORION=y |
120 | CONFIG_GPIO_SYSFS=y | 120 | CONFIG_GPIO_SYSFS=y |
121 | # CONFIG_HWMON is not set | 121 | # CONFIG_HWMON is not set |
122 | CONFIG_THERMAL=y | ||
123 | CONFIG_KIRKWOOD_THERMAL=y | ||
122 | CONFIG_WATCHDOG=y | 124 | CONFIG_WATCHDOG=y |
123 | CONFIG_ORION_WATCHDOG=y | 125 | CONFIG_ORION_WATCHDOG=y |
124 | CONFIG_HID_DRAGONRISE=y | 126 | CONFIG_HID_DRAGONRISE=y |