Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

mfd: syscon: Add Atmel Matrix bus DT binding documentation

The Matrix registers are provided to configure internal bus behavior on
at91 SoCs.
Some registers might be accessed by several drivers (e.g. to configure
external memory bus timings), hence we declare this register set as a
syscon device.

Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Acked-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>

authored by

Boris Brezillon and committed by
Nicolas Ferre
b2c8b976 92a8b064

+24
+24
Documentation/devicetree/bindings/mfd/atmel-matrix.txt
··· 1 + * Device tree bindings for Atmel Bus Matrix 2 + 3 + The Bus Matrix registers are used to configure Atmel SoCs internal bus 4 + behavior (master/slave priorities, undefined burst length type, ...) 5 + 6 + Required properties: 7 + - compatible: Should be one of the following 8 + "atmel,at91sam9260-matrix", "syscon" 9 + "atmel,at91sam9261-matrix", "syscon" 10 + "atmel,at91sam9263-matrix", "syscon" 11 + "atmel,at91sam9rl-matrix", "syscon" 12 + "atmel,at91sam9g45-matrix", "syscon" 13 + "atmel,at91sam9n12-matrix", "syscon" 14 + "atmel,at91sam9x5-matrix", "syscon" 15 + "atmel,sama5d3-matrix", "syscon" 16 + - reg: Contains offset/length value of the Bus Matrix 17 + memory region. 18 + 19 + Example: 20 + 21 + matrix: matrix@ffffec00 { 22 + compatible = "atmel,sama5d3-matrix", "syscon"; 23 + reg = <0xffffec00 0x200>; 24 + };