diff options
author | Olof Johansson <olof@lixom.net> | 2013-04-11 12:48:51 +0400 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2013-04-11 12:50:34 +0400 |
commit | 5724c52fbef16f17af3b92c6cae4fda391beb84c (patch) | |
tree | 44c00196160575958a93cf35a59f228d53387415 /Documentation/devicetree | |
parent | a1faef961b2073e82900166031b77a400ac513fb (diff) | |
parent | 7f6c62e2695bcb1547afdeb4ad3bcdf8c610be2c (diff) | |
download | linux-5724c52fbef16f17af3b92c6cae4fda391beb84c.tar.xz |
Merge tag 'fw-for-3.10' of git://github.com/broadcom/bcm11351 into next/firmware
From Christian Daudt:
l2cache driver for bcm281xx SoC
* tag 'fw-for-3.10' of git://github.com/broadcom/bcm11351:
ARM: bcm281xx: Add DT support for SMC handler
ARM: bcm281xx: Add L2 cache enable code
Signed-off-by: Olof Johansson <olof@lixom.net>
Diffstat (limited to 'Documentation/devicetree')
-rw-r--r-- | Documentation/devicetree/bindings/misc/smc.txt | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/misc/smc.txt b/Documentation/devicetree/bindings/misc/smc.txt new file mode 100644 index 000000000000..02b428136177 --- /dev/null +++ b/Documentation/devicetree/bindings/misc/smc.txt @@ -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 + }; |