2015-01-30 01:10:50 +07:00
|
|
|
#include <dt-bindings/pinctrl/bcm2835.h>
|
|
|
|
#include "skeleton.dtsi"
|
2012-05-26 14:04:43 +07:00
|
|
|
|
|
|
|
/ {
|
|
|
|
compatible = "brcm,bcm2835";
|
|
|
|
model = "BCM2835";
|
ARM: bcm2835: add interrupt controller driver
The BCM2835 contains a custom interrupt controller, which supports 72
interrupt sources using a 2-level register scheme. The interrupt
controller, or the HW block containing it, is referred to occasionally
as "armctrl" in the SoC documentation, hence the symbol naming in the
code.
This patch was extracted from git://github.com/lp0/linux.git branch
rpi-split as of 2012/09/08, and modified as follows:
* s/bcm2708/bcm2835/.
* Modified device tree vendor prefix.
* Moved implementation to drivers/irchip/.
* Added devicetree documentation, and hence removed list of IRQs from
bcm2835.dtsi.
* Changed shift in MAKE_HWIRQ() and HWIRQ_BANK() from 8 to 5 to reduce
the size of the hwirq space, and pass the total size of the hwirq space
to irq_domain_add_linear(), rather than just the number of valid hwirqs;
the two are different due to the hwirq space being sparse.
* Added the interrupt controller DT node to the top-level of the DT,
rather than nesting it inside a /axi node. Hence, changed the reg value
since /axi had a ranges property. This seems simpler to me, but I'm not
sure if everyone will like this change or not.
* Don't set struct irq_domain_ops.map = irq_domain_simple_map, hence
removing the need to patch include/linux/irqdomain.h or
kernel/irq/irqdomain.c.
* Simplified armctrl_of_init() using of_iomap().
* Removed unused IS_VALID_BANK()/IS_VALID_IRQ() macros.
* Renamed armctrl_handle_irq() to prevent possible symbol clashes.
* Made armctrl_of_init() static.
* Removed comment "Each bank is registered as a separate interrupt
controller" since this is no longer true.
* Removed FSF address from license header.
* Added my name to copyright header.
Signed-off-by: Chris Boot <bootc@bootc.net>
Signed-off-by: Simon Arlott <simon@fire.lp0.eu>
Signed-off-by: Dom Cobley <popcornmix@gmail.com>
Signed-off-by: Dom Cobley <dc4@broadcom.com>
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
2012-09-13 08:57:26 +07:00
|
|
|
interrupt-parent = <&intc>;
|
2012-05-26 14:04:43 +07:00
|
|
|
|
|
|
|
chosen {
|
2012-09-11 12:29:17 +07:00
|
|
|
bootargs = "earlyprintk console=ttyAMA0";
|
2012-05-26 14:04:43 +07:00
|
|
|
};
|
|
|
|
|
|
|
|
soc {
|
|
|
|
compatible = "simple-bus";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <1>;
|
|
|
|
ranges = <0x7e000000 0x20000000 0x02000000>;
|
ARM: bcm2835: dt: Use 0x4 prefix for DMA bus addresses to SDRAM.
There exists a tiny MMU, configurable only by the VC (running the
closed firmware), which maps from the ARM's physical addresses to bus
addresses. These bus addresses determine the caching behavior in the
VC's L1/L2 (note: separate from the ARM's L1/L2) according to the top
2 bits. The bits in the bus address mean:
From the VideoCore processor:
0x0... L1 and L2 cache allocating and coherent
0x4... L1 non-allocating, but coherent. L2 allocating and coherent
0x8... L1 non-allocating, but coherent. L2 non-allocating, but coherent
0xc... SDRAM alias. Cache is bypassed. Not L1 or L2 allocating or coherent
From the GPU peripherals (note: all peripherals bypass the L1
cache. The ARM will see this view once through the VC MMU):
0x0... Do not use
0x4... L1 non-allocating, and incoherent. L2 allocating and coherent.
0x8... L1 non-allocating, and incoherent. L2 non-allocating, but coherent
0xc... SDRAM alias. Cache is bypassed. Not L1 or L2 allocating or coherent
The 2835 firmware always configures the MMU to turn ARM physical
addresses with 0x0 top bits to 0x4, meaning present in L2 but
incoherent with L1. However, any bus addresses we were generating in
the kernel to be passed to a device had 0x0 bits. That would be a
reserved (possibly totally incoherent) value if sent to a GPU
peripheral like USB, or L1 allocating if sent to the VC (like a
firmware property request). By setting dma-ranges, all of the devices
below it get a dev->dma_pfn_offset, so that dma_alloc_coherent() and
friends return addresses with 0x4 bits and avoid cache incoherency.
This matches the behavior in the downstream 2708 kernel (see
BUS_OFFSET in arch/arm/mach-bcm2708/include/mach/memory.h).
Signed-off-by: Eric Anholt <eric@anholt.net>
Tested-by: Noralf Trønnes <noralf@tronnes.org>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
2015-05-06 03:10:11 +07:00
|
|
|
dma-ranges = <0x40000000 0x00000000 0x20000000>;
|
ARM: bcm2835: add interrupt controller driver
The BCM2835 contains a custom interrupt controller, which supports 72
interrupt sources using a 2-level register scheme. The interrupt
controller, or the HW block containing it, is referred to occasionally
as "armctrl" in the SoC documentation, hence the symbol naming in the
code.
This patch was extracted from git://github.com/lp0/linux.git branch
rpi-split as of 2012/09/08, and modified as follows:
* s/bcm2708/bcm2835/.
* Modified device tree vendor prefix.
* Moved implementation to drivers/irchip/.
* Added devicetree documentation, and hence removed list of IRQs from
bcm2835.dtsi.
* Changed shift in MAKE_HWIRQ() and HWIRQ_BANK() from 8 to 5 to reduce
the size of the hwirq space, and pass the total size of the hwirq space
to irq_domain_add_linear(), rather than just the number of valid hwirqs;
the two are different due to the hwirq space being sparse.
* Added the interrupt controller DT node to the top-level of the DT,
rather than nesting it inside a /axi node. Hence, changed the reg value
since /axi had a ranges property. This seems simpler to me, but I'm not
sure if everyone will like this change or not.
* Don't set struct irq_domain_ops.map = irq_domain_simple_map, hence
removing the need to patch include/linux/irqdomain.h or
kernel/irq/irqdomain.c.
* Simplified armctrl_of_init() using of_iomap().
* Removed unused IS_VALID_BANK()/IS_VALID_IRQ() macros.
* Renamed armctrl_handle_irq() to prevent possible symbol clashes.
* Made armctrl_of_init() static.
* Removed comment "Each bank is registered as a separate interrupt
controller" since this is no longer true.
* Removed FSF address from license header.
* Added my name to copyright header.
Signed-off-by: Chris Boot <bootc@bootc.net>
Signed-off-by: Simon Arlott <simon@fire.lp0.eu>
Signed-off-by: Dom Cobley <popcornmix@gmail.com>
Signed-off-by: Dom Cobley <dc4@broadcom.com>
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
2012-09-13 08:57:26 +07:00
|
|
|
|
2014-02-12 11:48:47 +07:00
|
|
|
timer@7e003000 {
|
2012-09-11 11:38:35 +07:00
|
|
|
compatible = "brcm,bcm2835-system-timer";
|
|
|
|
reg = <0x7e003000 0x1000>;
|
|
|
|
interrupts = <1 0>, <1 1>, <1 2>, <1 3>;
|
|
|
|
clock-frequency = <1000000>;
|
|
|
|
};
|
|
|
|
|
2014-01-13 18:11:43 +07:00
|
|
|
dma: dma@7e007000 {
|
|
|
|
compatible = "brcm,bcm2835-dma";
|
|
|
|
reg = <0x7e007000 0xf00>;
|
|
|
|
interrupts = <1 16>,
|
|
|
|
<1 17>,
|
|
|
|
<1 18>,
|
|
|
|
<1 19>,
|
|
|
|
<1 20>,
|
|
|
|
<1 21>,
|
|
|
|
<1 22>,
|
|
|
|
<1 23>,
|
|
|
|
<1 24>,
|
|
|
|
<1 25>,
|
|
|
|
<1 26>,
|
|
|
|
<1 27>,
|
|
|
|
<1 28>;
|
|
|
|
|
|
|
|
#dma-cells = <1>;
|
|
|
|
brcm,dma-channel-mask = <0x7f35>;
|
|
|
|
};
|
|
|
|
|
2014-02-12 11:48:47 +07:00
|
|
|
intc: interrupt-controller@7e00b200 {
|
ARM: bcm2835: add interrupt controller driver
The BCM2835 contains a custom interrupt controller, which supports 72
interrupt sources using a 2-level register scheme. The interrupt
controller, or the HW block containing it, is referred to occasionally
as "armctrl" in the SoC documentation, hence the symbol naming in the
code.
This patch was extracted from git://github.com/lp0/linux.git branch
rpi-split as of 2012/09/08, and modified as follows:
* s/bcm2708/bcm2835/.
* Modified device tree vendor prefix.
* Moved implementation to drivers/irchip/.
* Added devicetree documentation, and hence removed list of IRQs from
bcm2835.dtsi.
* Changed shift in MAKE_HWIRQ() and HWIRQ_BANK() from 8 to 5 to reduce
the size of the hwirq space, and pass the total size of the hwirq space
to irq_domain_add_linear(), rather than just the number of valid hwirqs;
the two are different due to the hwirq space being sparse.
* Added the interrupt controller DT node to the top-level of the DT,
rather than nesting it inside a /axi node. Hence, changed the reg value
since /axi had a ranges property. This seems simpler to me, but I'm not
sure if everyone will like this change or not.
* Don't set struct irq_domain_ops.map = irq_domain_simple_map, hence
removing the need to patch include/linux/irqdomain.h or
kernel/irq/irqdomain.c.
* Simplified armctrl_of_init() using of_iomap().
* Removed unused IS_VALID_BANK()/IS_VALID_IRQ() macros.
* Renamed armctrl_handle_irq() to prevent possible symbol clashes.
* Made armctrl_of_init() static.
* Removed comment "Each bank is registered as a separate interrupt
controller" since this is no longer true.
* Removed FSF address from license header.
* Added my name to copyright header.
Signed-off-by: Chris Boot <bootc@bootc.net>
Signed-off-by: Simon Arlott <simon@fire.lp0.eu>
Signed-off-by: Dom Cobley <popcornmix@gmail.com>
Signed-off-by: Dom Cobley <dc4@broadcom.com>
Signed-off-by: Stephen Warren <swarren@wwwdotorg.org>
Acked-by: Arnd Bergmann <arnd@arndb.de>
2012-09-13 08:57:26 +07:00
|
|
|
compatible = "brcm,bcm2835-armctrl-ic";
|
|
|
|
reg = <0x7e00b200 0x200>;
|
|
|
|
interrupt-controller;
|
|
|
|
#interrupt-cells = <2>;
|
|
|
|
};
|
2012-09-11 12:29:17 +07:00
|
|
|
|
2014-02-12 11:48:47 +07:00
|
|
|
watchdog@7e100000 {
|
2012-09-16 11:18:10 +07:00
|
|
|
compatible = "brcm,bcm2835-pm-wdt";
|
|
|
|
reg = <0x7e100000 0x28>;
|
|
|
|
};
|
|
|
|
|
2014-02-12 11:48:47 +07:00
|
|
|
rng@7e104000 {
|
2013-03-28 13:12:04 +07:00
|
|
|
compatible = "brcm,bcm2835-rng";
|
|
|
|
reg = <0x7e104000 0x10>;
|
|
|
|
};
|
|
|
|
|
2015-05-06 03:27:46 +07:00
|
|
|
mailbox: mailbox@7e00b800 {
|
|
|
|
compatible = "brcm,bcm2835-mbox";
|
|
|
|
reg = <0x7e00b880 0x40>;
|
|
|
|
interrupts = <0 1>;
|
|
|
|
#mbox-cells = <0>;
|
|
|
|
};
|
|
|
|
|
2014-02-12 11:48:47 +07:00
|
|
|
gpio: gpio@7e200000 {
|
2012-09-28 10:54:21 +07:00
|
|
|
compatible = "brcm,bcm2835-gpio";
|
|
|
|
reg = <0x7e200000 0xb4>;
|
|
|
|
/*
|
|
|
|
* The GPIO IP block is designed for 3 banks of GPIOs.
|
|
|
|
* Each bank has a GPIO interrupt for itself.
|
|
|
|
* There is an overall "any bank" interrupt.
|
|
|
|
* In order, these are GIC interrupts 17, 18, 19, 20.
|
|
|
|
* Since the BCM2835 only has 2 banks, the 2nd bank
|
|
|
|
* interrupt output appears to be mirrored onto the
|
|
|
|
* 3rd bank's interrupt signal.
|
|
|
|
* So, a bank0 interrupt shows up on 17, 20, and
|
|
|
|
* a bank1 interrupt shows up on 18, 19, 20!
|
|
|
|
*/
|
|
|
|
interrupts = <2 17>, <2 18>, <2 19>, <2 20>;
|
|
|
|
|
|
|
|
gpio-controller;
|
|
|
|
#gpio-cells = <2>;
|
|
|
|
|
|
|
|
interrupt-controller;
|
|
|
|
#interrupt-cells = <2>;
|
|
|
|
};
|
2012-12-25 11:58:56 +07:00
|
|
|
|
2014-02-12 11:48:47 +07:00
|
|
|
uart@7e201000 {
|
2014-02-12 11:44:35 +07:00
|
|
|
compatible = "brcm,bcm2835-pl011", "arm,pl011", "arm,primecell";
|
|
|
|
reg = <0x7e201000 0x1000>;
|
|
|
|
interrupts = <2 25>;
|
|
|
|
clock-frequency = <3000000>;
|
|
|
|
arm,primecell-periphid = <0x00241011>;
|
|
|
|
};
|
|
|
|
|
2014-01-13 18:16:40 +07:00
|
|
|
i2s: i2s@7e203000 {
|
|
|
|
compatible = "brcm,bcm2835-i2s";
|
|
|
|
reg = <0x7e203000 0x20>,
|
|
|
|
<0x7e101098 0x02>;
|
|
|
|
|
|
|
|
dmas = <&dma 2>,
|
|
|
|
<&dma 3>;
|
|
|
|
dma-names = "tx", "rx";
|
2014-09-17 08:51:36 +07:00
|
|
|
status = "disabled";
|
2014-01-13 18:16:40 +07:00
|
|
|
};
|
|
|
|
|
2014-02-12 11:48:47 +07:00
|
|
|
spi: spi@7e204000 {
|
2013-02-20 11:39:58 +07:00
|
|
|
compatible = "brcm,bcm2835-spi";
|
|
|
|
reg = <0x7e204000 0x1000>;
|
|
|
|
interrupts = <2 22>;
|
|
|
|
clocks = <&clk_spi>;
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
|
2015-03-18 16:00:22 +07:00
|
|
|
i2c0: i2c@7e205000 {
|
2013-01-01 13:26:45 +07:00
|
|
|
compatible = "brcm,bcm2835-i2c";
|
|
|
|
reg = <0x7e205000 0x1000>;
|
|
|
|
interrupts = <2 21>;
|
|
|
|
clocks = <&clk_i2c>;
|
2013-11-26 10:35:42 +07:00
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2013-01-01 13:26:45 +07:00
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
|
2014-02-12 11:48:47 +07:00
|
|
|
sdhci: sdhci@7e300000 {
|
2014-02-12 11:44:35 +07:00
|
|
|
compatible = "brcm,bcm2835-sdhci";
|
|
|
|
reg = <0x7e300000 0x100>;
|
|
|
|
interrupts = <2 30>;
|
|
|
|
clocks = <&clk_mmc>;
|
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
|
2014-02-12 11:48:47 +07:00
|
|
|
i2c1: i2c@7e804000 {
|
2013-01-01 13:26:45 +07:00
|
|
|
compatible = "brcm,bcm2835-i2c";
|
|
|
|
reg = <0x7e804000 0x1000>;
|
|
|
|
interrupts = <2 21>;
|
|
|
|
clocks = <&clk_i2c>;
|
2013-11-26 10:35:42 +07:00
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2013-01-01 13:26:45 +07:00
|
|
|
status = "disabled";
|
|
|
|
};
|
|
|
|
|
2014-02-12 11:48:47 +07:00
|
|
|
usb@7e980000 {
|
2013-12-27 09:43:10 +07:00
|
|
|
compatible = "brcm,bcm2835-usb";
|
|
|
|
reg = <0x7e980000 0x10000>;
|
|
|
|
interrupts = <1 9>;
|
|
|
|
};
|
2014-01-01 04:54:16 +07:00
|
|
|
|
|
|
|
arm-pmu {
|
|
|
|
compatible = "arm,arm1176-pmu";
|
|
|
|
};
|
2012-12-25 11:58:56 +07:00
|
|
|
};
|
|
|
|
|
2013-01-15 11:07:20 +07:00
|
|
|
clocks {
|
|
|
|
compatible = "simple-bus";
|
|
|
|
#address-cells = <1>;
|
|
|
|
#size-cells = <0>;
|
2013-01-01 13:26:45 +07:00
|
|
|
|
2014-02-14 13:12:39 +07:00
|
|
|
clk_mmc: clock@0 {
|
2013-01-15 11:07:20 +07:00
|
|
|
compatible = "fixed-clock";
|
|
|
|
reg = <0>;
|
|
|
|
#clock-cells = <0>;
|
2014-02-14 13:12:39 +07:00
|
|
|
clock-output-names = "mmc";
|
2013-01-15 11:07:20 +07:00
|
|
|
clock-frequency = <100000000>;
|
|
|
|
};
|
|
|
|
|
2014-02-14 13:12:39 +07:00
|
|
|
clk_i2c: clock@1 {
|
2013-01-15 11:07:20 +07:00
|
|
|
compatible = "fixed-clock";
|
|
|
|
reg = <1>;
|
|
|
|
#clock-cells = <0>;
|
2014-02-14 13:12:39 +07:00
|
|
|
clock-output-names = "i2c";
|
2013-02-22 12:42:38 +07:00
|
|
|
clock-frequency = <250000000>;
|
2013-01-15 11:07:20 +07:00
|
|
|
};
|
2013-02-20 11:39:58 +07:00
|
|
|
|
2014-02-14 13:12:39 +07:00
|
|
|
clk_spi: clock@2 {
|
2013-02-20 11:39:58 +07:00
|
|
|
compatible = "fixed-clock";
|
|
|
|
reg = <2>;
|
|
|
|
#clock-cells = <0>;
|
2014-02-14 13:12:39 +07:00
|
|
|
clock-output-names = "spi";
|
2013-02-20 11:39:58 +07:00
|
|
|
clock-frequency = <250000000>;
|
|
|
|
};
|
2012-05-26 14:04:43 +07:00
|
|
|
};
|
|
|
|
};
|