ARM: bcm281xx: Add DT support for SMC handler
authorChristian Daudt <csd@broadcom.com>
Wed, 13 Mar 2013 22:05:37 +0000 (15:05 -0700)
committerChristian Daudt <csd@broadcom.com>
Tue, 9 Apr 2013 16:21:59 +0000 (09:21 -0700)
- Adds devicetree binding and documentation for the smc handler

Updates from V1:
- Created this separate patch for the DT portion
- Added SoC compatible to smc binding

Signed-off-by: Christian Daudt <csd@broadcom.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Documentation/devicetree/bindings/misc/smc.txt [new file with mode: 0644]
arch/arm/boot/dts/bcm11351.dtsi

diff --git a/Documentation/devicetree/bindings/misc/smc.txt b/Documentation/devicetree/bindings/misc/smc.txt
new file mode 100644 (file)
index 0000000..02b4281
--- /dev/null
@@ -0,0 +1,14 @@
+Broadcom Secure Monitor Bounce buffer
+-----------------------------------------------------
+This binding defines the location of the bounce buffer
+used for non-secure to secure communications.
+
+Required properties:
+- compatible : "bcm,kona-smc"
+- reg : Location and size of bounce buffer
+
+Example:
+       smc@0x3404c000 {
+               compatible = "bcm,bcm11351-smc", "bcm,kona-smc";
+               reg = <0x3404c000 0x400>; //1 KiB in SRAM
+       };
index ad135885bd2a9ea8a2c208cca3c86a3a90360f8d..be2a26132376a34fd67fd9545a1947fceb4fd88b 100644 (file)
                      <0x3ff00100 0x100>;
        };
 
+       smc@0x3404c000 {
+               compatible = "bcm,bcm11351-smc", "bcm,kona-smc";
+               reg = <0x3404c000 0x400>; //1 KiB in SRAM
+       };
+
        uart@3e000000 {
                compatible = "bcm,bcm11351-dw-apb-uart", "snps,dw-apb-uart";
                status = "disabled";
This page took 0.026592 seconds and 5 git commands to generate.