diff options
author | Olof Johansson <olof@lixom.net> | 2012-09-21 00:27:41 -0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-09-21 00:27:41 -0400 |
commit | b612a85792192b70e6497619521772c38ace758e (patch) | |
tree | 0405e78c23b600153bee5a0e19a5129ddca832f9 /arch/arm/boot | |
parent | ea832c41dacbc4a5f3888d9ef7c38213914aba2a (diff) | |
parent | 3aec092eed5d8d2b19a62b0aeed3acea9471099a (diff) |
Merge branch 'next/soc' into next/multiplatform
* next/soc: (50 commits)
ARM: OMAP: AM33xx hwmod: fixup SPI after platform_data move
MAINTAINERS: add an entry for the BCM2835 ARM sub-architecture
ARM: bcm2835: instantiate console UART
ARM: bcm2835: add stub clock driver
ARM: bcm2835: add system timer
ARM: bcm2835: add interrupt controller driver
ARM: add infra-structure for BCM2835 and Raspberry Pi
ARM: tegra20: add CPU hotplug support
ARM: tegra30: add CPU hotplug support
ARM: tegra: clean up the common assembly macros into sleep.h
ARM: tegra: replace the CPU CAR access code by tegra_cpu_car_ops
ARM: tegra: introduce tegra_cpu_car_ops structures
ARM: Tegra: Add smp_twd clock for Tegra20
ARM: AM33XX: clock: Add dcan clock aliases for device-tree
ARM: OMAP2+: dpll: Add missing soc_is_am33xx() check for common functions
ARM: OMAP: omap_device: idle devices with no driver bound
ARM: OMAP: omap_device: don't attempt late suspend if no driver bound
ARM: OMAP: omap_device: keep track of driver bound status
ARM: OMAP3+: hwmod: Add AM33XX HWMOD data
ARM: OMAP2+: hwmod: Hook-up am33xx support in omap_hwmod framework
...
Change/remove conflict in arch/arm/mach-ux500/clock.c resolved.
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r-- | arch/arm/boot/dts/bcm2835-rpi-b.dts | 12 | ||||
-rw-r--r-- | arch/arm/boot/dts/bcm2835.dtsi | 39 |
2 files changed, 51 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/bcm2835-rpi-b.dts b/arch/arm/boot/dts/bcm2835-rpi-b.dts new file mode 100644 index 00000000000..7dd860f83f9 --- /dev/null +++ b/arch/arm/boot/dts/bcm2835-rpi-b.dts | |||
@@ -0,0 +1,12 @@ | |||
1 | /dts-v1/; | ||
2 | /memreserve/ 0x0c000000 0x04000000; | ||
3 | /include/ "bcm2835.dtsi" | ||
4 | |||
5 | / { | ||
6 | compatible = "raspberrypi,model-b", "brcm,bcm2835"; | ||
7 | model = "Raspberry Pi Model B"; | ||
8 | |||
9 | memory { | ||
10 | reg = <0 0x10000000>; | ||
11 | }; | ||
12 | }; | ||
diff --git a/arch/arm/boot/dts/bcm2835.dtsi b/arch/arm/boot/dts/bcm2835.dtsi new file mode 100644 index 00000000000..0b619398532 --- /dev/null +++ b/arch/arm/boot/dts/bcm2835.dtsi | |||
@@ -0,0 +1,39 @@ | |||
1 | /include/ "skeleton.dtsi" | ||
2 | |||
3 | / { | ||
4 | compatible = "brcm,bcm2835"; | ||
5 | model = "BCM2835"; | ||
6 | interrupt-parent = <&intc>; | ||
7 | |||
8 | chosen { | ||
9 | bootargs = "earlyprintk console=ttyAMA0"; | ||
10 | }; | ||
11 | |||
12 | soc { | ||
13 | compatible = "simple-bus"; | ||
14 | #address-cells = <1>; | ||
15 | #size-cells = <1>; | ||
16 | ranges = <0x7e000000 0x20000000 0x02000000>; | ||
17 | |||
18 | timer { | ||
19 | compatible = "brcm,bcm2835-system-timer"; | ||
20 | reg = <0x7e003000 0x1000>; | ||
21 | interrupts = <1 0>, <1 1>, <1 2>, <1 3>; | ||
22 | clock-frequency = <1000000>; | ||
23 | }; | ||
24 | |||
25 | intc: interrupt-controller { | ||
26 | compatible = "brcm,bcm2835-armctrl-ic"; | ||
27 | reg = <0x7e00b200 0x200>; | ||
28 | interrupt-controller; | ||
29 | #interrupt-cells = <2>; | ||
30 | }; | ||
31 | |||
32 | uart@20201000 { | ||
33 | compatible = "brcm,bcm2835-pl011", "arm,pl011", "arm,primecell"; | ||
34 | reg = <0x7e201000 0x1000>; | ||
35 | interrupts = <2 25>; | ||
36 | clock-frequency = <3000000>; | ||
37 | }; | ||
38 | }; | ||
39 | }; | ||