Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: d8dfad3876e4386666b759da3c833d62fb8b2267 authored by Linus Torvalds on 26 August 2013, 00:43:22 UTC
Linux 3.11-rc7
Tip revision: d8dfad3
pxa3xx-nand.txt
PXA3xx NAND DT bindings

Required properties:

 - compatible:		Should be "marvell,pxa3xx-nand"
 - reg: 		The register base for the controller
 - interrupts:		The interrupt to map
 - #address-cells:	Set to <1> if the node includes partitions

Optional properties:

 - marvell,nand-enable-arbiter:	Set to enable the bus arbiter
 - marvell,nand-keep-config:	Set to keep the NAND controller config as set
				by the bootloader
 - num-cs:			Number of chipselect lines to usw

Example:

	nand0: nand@43100000 {
		compatible = "marvell,pxa3xx-nand";
		reg = <0x43100000 90>;
		interrupts = <45>;
		#address-cells = <1>;

		marvell,nand-enable-arbiter;
		marvell,nand-keep-config;
		num-cs = <1>;

		/* partitions (optional) */
	};

back to top