diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-20 10:21:54 -0500 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-12-20 10:21:54 -0500 |
| commit | 1ffab3d4139533eff6e27b7568825307e575faa6 (patch) | |
| tree | eca25b2ef6b9b7c8168625c2a5dea6b08fd37756 | |
| parent | ddedec28b1d5144bc2c765d97003997f3505fd3a (diff) | |
| parent | 4d1839138220e7e35bf9e31c854e4e0196dea7a1 (diff) | |
Merge tag 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull ARM SoC fixes from Olof Johansson:
"This is a batch of fixes for arm-soc platforms, most of it is for OMAP
but there are others too (i.MX, Tegra, ep93xx). Fixes warnings, some
broken platforms and drivers, etc. A bit all over the map really."
There was some concern about commit 68136b10 ("RM: sunxi: Change device
tree naming scheme for sunxi"), but Tony says:
"Looks like that's trivial to fix as needed, no need to rebuild the
branch to fix that AFAIK.
The fix can be done once Olof is available online again.
Linus, I suggest that you go ahead and pull this if there are no other
issues with this branch."
* tag 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: (32 commits)
ARM: sunxi: Change device tree naming scheme for sunxi
ARM: ux500: fix missing include
ARM: u300: delete custom pin hog code
ARM: davinci: fix build break due to missing include
ARM: exynos: Fix warning due to missing 'inline' in stub
ARM: imx: Move platform-mx2-emma to arch/arm/mach-imx/devices
ARM i.MX51 clock: Fix regression since enabling MIPI/HSP clocks
ARM: dts: mx27: Fix the AIPI bus for FEC
ARM: OMAP2+: common: remove use of vram
ARM: OMAP3/4: cpuidle: fix sparse and checkpatch warnings
ARM: OMAP4: clock data: DPLLs are missing bypass clocks in their parent lists
ARM: OMAP4: clock data: div_iva_hs_clk is a power-of-two divider
ARM: OMAP4: Fix EMU clock domain always on
ARM: OMAP4460: Workaround ABE DPLL failing to turn-on
ARM: OMAP4: Enhance support for DPLLs with 4X multiplier
ARM: OMAP4: Add function table for non-M4X dplls
ARM: OMAP4: Update timer clock aliases
ARM: OMAP: Move plat/omap-serial.h to include/linux/platform_data/serial-omap.h
ARM: dts: Add build target for omap4-panda-a4
ARM: dts: OMAP2420: Correct H4 board memory size
...
47 files changed, 308 insertions, 304 deletions
diff --git a/arch/arm/boot/dts/Makefile b/arch/arm/boot/dts/Makefile index 0f441740c22a..d077ef8426df 100644 --- a/arch/arm/boot/dts/Makefile +++ b/arch/arm/boot/dts/Makefile | |||
| @@ -107,6 +107,7 @@ dtb-$(CONFIG_ARCH_OMAP2PLUS) += omap2420-h4.dtb \ | |||
| 107 | omap3-evm.dtb \ | 107 | omap3-evm.dtb \ |
| 108 | omap3-tobi.dtb \ | 108 | omap3-tobi.dtb \ |
| 109 | omap4-panda.dtb \ | 109 | omap4-panda.dtb \ |
| 110 | omap4-panda-a4.dtb \ | ||
| 110 | omap4-panda-es.dtb \ | 111 | omap4-panda-es.dtb \ |
| 111 | omap4-var-som.dtb \ | 112 | omap4-var-som.dtb \ |
| 112 | omap4-sdp.dtb \ | 113 | omap4-sdp.dtb \ |
| @@ -131,8 +132,8 @@ dtb-$(CONFIG_ARCH_SPEAR3XX)+= spear300-evb.dtb \ | |||
| 131 | spear320-evb.dtb \ | 132 | spear320-evb.dtb \ |
| 132 | spear320-hmi.dtb | 133 | spear320-hmi.dtb |
| 133 | dtb-$(CONFIG_ARCH_SPEAR6XX)+= spear600-evb.dtb | 134 | dtb-$(CONFIG_ARCH_SPEAR6XX)+= spear600-evb.dtb |
| 134 | dtb-$(CONFIG_ARCH_SUNXI) += sun4i-cubieboard.dtb \ | 135 | dtb-$(CONFIG_ARCH_SUNXI) += sun4i-a10-cubieboard.dtb \ |
| 135 | sun5i-olinuxino.dtb | 136 | sun5i-a13-olinuxino.dtb |
| 136 | dtb-$(CONFIG_ARCH_TEGRA) += tegra20-harmony.dtb \ | 137 | dtb-$(CONFIG_ARCH_TEGRA) += tegra20-harmony.dtb \ |
| 137 | tegra20-medcom-wide.dtb \ | 138 | tegra20-medcom-wide.dtb \ |
| 138 | tegra20-paz00.dtb \ | 139 | tegra20-paz00.dtb \ |
diff --git a/arch/arm/boot/dts/imx27-3ds.dts b/arch/arm/boot/dts/imx27-3ds.dts index b01c0d745fc5..fa04c7b18bcb 100644 --- a/arch/arm/boot/dts/imx27-3ds.dts +++ b/arch/arm/boot/dts/imx27-3ds.dts | |||
| @@ -21,17 +21,17 @@ | |||
| 21 | }; | 21 | }; |
| 22 | 22 | ||
| 23 | soc { | 23 | soc { |
| 24 | aipi@10000000 { /* aipi */ | 24 | aipi@10000000 { /* aipi1 */ |
| 25 | |||
| 26 | uart1: serial@1000a000 { | 25 | uart1: serial@1000a000 { |
| 27 | fsl,uart-has-rtscts; | 26 | fsl,uart-has-rtscts; |
| 28 | status = "okay"; | 27 | status = "okay"; |
| 29 | }; | 28 | }; |
| 29 | }; | ||
| 30 | 30 | ||
| 31 | fec@1002b000 { | 31 | aipi@10020000 { /* aipi2 */ |
| 32 | ethernet@1002b000 { | ||
| 32 | status = "okay"; | 33 | status = "okay"; |
| 33 | }; | 34 | }; |
| 34 | }; | 35 | }; |
| 35 | }; | 36 | }; |
| 36 | |||
| 37 | }; | 37 | }; |
diff --git a/arch/arm/boot/dts/imx27-phytec-phycore.dts b/arch/arm/boot/dts/imx27-phytec-phycore.dts index af50469e34b2..53b0ec0c228e 100644 --- a/arch/arm/boot/dts/imx27-phytec-phycore.dts +++ b/arch/arm/boot/dts/imx27-phytec-phycore.dts | |||
| @@ -21,8 +21,7 @@ | |||
| 21 | }; | 21 | }; |
| 22 | 22 | ||
| 23 | soc { | 23 | soc { |
| 24 | aipi@10000000 { /* aipi */ | 24 | aipi@10000000 { /* aipi1 */ |
| 25 | |||
| 26 | serial@1000a000 { | 25 | serial@1000a000 { |
| 27 | fsl,uart-has-rtscts; | 26 | fsl,uart-has-rtscts; |
| 28 | status = "okay"; | 27 | status = "okay"; |
| @@ -38,10 +37,6 @@ | |||
| 38 | status = "okay"; | 37 | status = "okay"; |
| 39 | }; | 38 | }; |
| 40 | 39 | ||
| 41 | ethernet@1002b000 { | ||
| 42 | status = "okay"; | ||
| 43 | }; | ||
| 44 | |||
| 45 | i2c@1001d000 { | 40 | i2c@1001d000 { |
| 46 | clock-frequency = <400000>; | 41 | clock-frequency = <400000>; |
| 47 | status = "okay"; | 42 | status = "okay"; |
| @@ -60,6 +55,12 @@ | |||
| 60 | }; | 55 | }; |
| 61 | }; | 56 | }; |
| 62 | }; | 57 | }; |
| 58 | |||
| 59 | aipi@10020000 { /* aipi2 */ | ||
| 60 | ethernet@1002b000 { | ||
| 61 | status = "okay"; | ||
| 62 | }; | ||
| 63 | }; | ||
| 63 | }; | 64 | }; |
| 64 | 65 | ||
| 65 | nor_flash@c0000000 { | 66 | nor_flash@c0000000 { |
diff --git a/arch/arm/boot/dts/imx27.dtsi b/arch/arm/boot/dts/imx27.dtsi index b8d3905915ac..5a82cb5707a8 100644 --- a/arch/arm/boot/dts/imx27.dtsi +++ b/arch/arm/boot/dts/imx27.dtsi | |||
| @@ -55,7 +55,7 @@ | |||
| 55 | compatible = "fsl,aipi-bus", "simple-bus"; | 55 | compatible = "fsl,aipi-bus", "simple-bus"; |
| 56 | #address-cells = <1>; | 56 | #address-cells = <1>; |
| 57 | #size-cells = <1>; | 57 | #size-cells = <1>; |
| 58 | reg = <0x10000000 0x10000000>; | 58 | reg = <0x10000000 0x20000>; |
| 59 | ranges; | 59 | ranges; |
| 60 | 60 | ||
| 61 | wdog: wdog@10002000 { | 61 | wdog: wdog@10002000 { |
| @@ -211,6 +211,15 @@ | |||
| 211 | status = "disabled"; | 211 | status = "disabled"; |
| 212 | }; | 212 | }; |
| 213 | 213 | ||
| 214 | }; | ||
| 215 | |||
| 216 | aipi@10020000 { /* AIPI2 */ | ||
| 217 | compatible = "fsl,aipi-bus", "simple-bus"; | ||
| 218 | #address-cells = <1>; | ||
| 219 | #size-cells = <1>; | ||
| 220 | reg = <0x10020000 0x20000>; | ||
| 221 | |||
