diff options
Diffstat (limited to 'Documentation/devicetree/bindings/arm/atmel-at91.txt')
-rw-r--r-- | Documentation/devicetree/bindings/arm/atmel-at91.txt | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/arm/atmel-at91.txt b/Documentation/devicetree/bindings/arm/atmel-at91.txt index 562cda9d86d9..571fc76c6edb 100644 --- a/Documentation/devicetree/bindings/arm/atmel-at91.txt +++ b/Documentation/devicetree/bindings/arm/atmel-at91.txt | |||
@@ -136,3 +136,19 @@ Example: | |||
136 | compatible = "atmel,at91sam9260-rstc"; | 136 | compatible = "atmel,at91sam9260-rstc"; |
137 | reg = <0xfffffd00 0x10>; | 137 | reg = <0xfffffd00 0x10>; |
138 | }; | 138 | }; |
139 | |||
140 | Special Function Registers (SFR) | ||
141 | |||
142 | Special Function Registers (SFR) manage specific aspects of the integrated | ||
143 | memory, bridge implementations, processor and other functionality not controlled | ||
144 | elsewhere. | ||
145 | |||
146 | required properties: | ||
147 | - compatible: Should be "atmel,<chip>-sfr", "syscon". | ||
148 | <chip> can be "sama5d3" or "sama5d4". | ||
149 | - reg: Should contain registers location and length | ||
150 | |||
151 | sfr@f0038000 { | ||
152 | compatible = "atmel,sama5d3-sfr", "syscon"; | ||
153 | reg = <0xf0038000 0x60>; | ||
154 | }; | ||