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

mfd: syscon: Add Atmel SMC binding doc

The SMC registers are used to configure Atmel EBI (External Bus Interface)
to interface with standard memory devices (NAND, NOR, SRAM or specialized
devices like FPGAs).

Declare this memory region as a syscon, so that different drivers can
configure the SMC interface (mostly timing configuration) according to
their need.

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
ba991123 57d8acba

+19
+19
Documentation/devicetree/bindings/mfd/atmel-smc.txt
··· 1 + * Device tree bindings for Atmel SMC (Static Memory Controller) 2 + 3 + The SMC registers are used to configure Atmel EBI (External Bus Interface) 4 + to interface with standard memory devices (NAND, NOR, SRAM or specialized 5 + devices like FPGAs). 6 + 7 + Required properties: 8 + - compatible: Should be one of the following 9 + "atmel,at91sam9260-smc", "syscon" 10 + "atmel,sama5d3-smc", "syscon" 11 + - reg: Contains offset/length value of the SMC memory 12 + region. 13 + 14 + Example: 15 + 16 + smc: smc@ffffc000 { 17 + compatible = "atmel,sama5d3-smc", "syscon"; 18 + reg = <0xffffc000 0x1000>; 19 + };