Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input
[linux-2.6-microblaze.git] / 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                         "atmel,sama5d2-smc", "syscon"
12                         "microchip,sam9x60-smc", "syscon"
13 - reg:                  Contains offset/length value of the SMC memory
14                         region.
15
16 Example:
17
18 smc: smc@ffffc000 {
19         compatible = "atmel,sama5d3-smc", "syscon";
20         reg = <0xffffc000 0x1000>;
21 };