diff options
author | rpaulo <rpaulo@FreeBSD.org> | 2013-07-31 06:23:10 +0000 |
---|---|---|
committer | rpaulo <rpaulo@FreeBSD.org> | 2013-07-31 06:23:10 +0000 |
commit | 4c91eadf3ebae2c3ec2c806e5db307fbda276d79 (patch) | |
tree | 7298d90285b0c44013a53345089c5ae6a3b54f67 /sys | |
parent | ff87088d16c5dbd932c4c0da73845b43357adb07 (diff) | |
download | FreeBSD-src-4c91eadf3ebae2c3ec2c806e5db307fbda276d79.zip FreeBSD-src-4c91eadf3ebae2c3ec2c806e5db307fbda276d79.tar.gz |
Add definitions for the Mailbox, Spinlock and PRU-ICSS devices.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/boot/fdt/dts/am335x.dtsi | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/sys/boot/fdt/dts/am335x.dtsi b/sys/boot/fdt/dts/am335x.dtsi index 1ab047f..90fb741 100644 --- a/sys/boot/fdt/dts/am335x.dtsi +++ b/sys/boot/fdt/dts/am335x.dtsi @@ -219,5 +219,24 @@ /* 1 - Host Mode, 0 - Device Mode */ modemask = <2>; }; + + mbox0@480C8000 { + compatible = "am335x,system-mbox"; + reg = < 0x480C8000 0x1000 >; + interrupts = <77>; + interrupt-parent = <&AINTC>; + }; + + spinlock0@480CA000 { + compatible = "am335x,spinlock"; + reg = < 0x480CA000 0x1000 >; + }; + + pruss@4A300000 { + compatible = "ti,pruss-v2"; + reg = <0x4A300000 0x80000>; + interrupt-parent = <&AINTC>; + interrupts = <20 21 22 23 24 25 26 27>; + }; }; }; |