diff options
author | Lubomir Rintel <lkundrak@v3.sk> | 2016-01-25 21:40:06 +0100 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2016-02-03 03:01:26 +0100 |
commit | 7a1298e339249f25f4ef97fed332c70e1d1507e4 (patch) | |
tree | 8158aa007e9163cc0ac0502aac2c2e4a5e1f0235 /arch/arm/boot/dts/bcm2835-rpi-a.dts | |
parent | ARM: bcm2835: follow dt uart node-naming convention (diff) | |
download | linux-7a1298e339249f25f4ef97fed332c70e1d1507e4.tar.xz linux-7a1298e339249f25f4ef97fed332c70e1d1507e4.zip |
ARM: bcm2835: dt: Add Raspberry Pi Model A
This one is essentially the same as revision 2 B board (with the I2S on
P5 header).
Signed-off-by: Lubomir Rintel <lkundrak@v3.sk>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
[anholt: Rebased on bcm2835.dtsi -> bcm283x.dtsi change]
Signed-off-by: Eric Anholt <eric@anholt.net>
Diffstat (limited to 'arch/arm/boot/dts/bcm2835-rpi-a.dts')
-rw-r--r-- | arch/arm/boot/dts/bcm2835-rpi-a.dts | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/bcm2835-rpi-a.dts b/arch/arm/boot/dts/bcm2835-rpi-a.dts new file mode 100644 index 000000000000..ddbbbbd42dda --- /dev/null +++ b/arch/arm/boot/dts/bcm2835-rpi-a.dts @@ -0,0 +1,24 @@ +/dts-v1/; +#include "bcm2835.dtsi" +#include "bcm2835-rpi.dtsi" + +/ { + compatible = "raspberrypi,model-a", "brcm,bcm2835"; + model = "Raspberry Pi Model A"; + + leds { + act { + gpios = <&gpio 16 1>; + }; + }; +}; + +&gpio { + pinctrl-0 = <&gpioout &alt0 &i2s_alt2 &alt3>; + + /* I2S interface */ + i2s_alt2: i2s_alt2 { + brcm,pins = <28 29 30 31>; + brcm,function = <BCM2835_FSEL_ALT2>; + }; +}; |