1 CFI or JEDEC memory-mapped NOR flash, MTD-RAM (NVRAM...)
3 Flash chips (Memory Technology Devices) are often used for solid state
4 file systems on embedded devices.
6 - compatible : should contain the specific model of mtd chip(s)
7 used, if known, followed by either "cfi-flash", "jedec-flash"
9 - reg : Address range(s) of the mtd chip(s)
10 It's possible to (optionally) define multiple "reg" tuples so that
11 non-identical chips can be described in one node.
12 - bank-width : Width (in bytes) of the bank. Equal to the
13 device width times the number of interleaved chips.
14 - device-width : (optional) Width of a single mtd chip. If
15 omitted, assumed to be equal to 'bank-width'.
16 - #address-cells, #size-cells : Must be present if the device has
17 sub-nodes representing partitions (see below). In this case
18 both #address-cells and #size-cells must be equal to 1.
20 For JEDEC compatible devices, the following additional properties
23 - vendor-id : Contains the flash chip's vendor id (1 byte).
24 - device-id : Contains the flash chip's device id (1 byte).
26 The device tree may optionally contain sub-nodes describing partitions of the
27 address space. See partition.txt for more detail.
32 compatible = "amd,am29lv128ml", "cfi-flash";
33 reg = <ff000000 01000000>;
49 Here an example with multiple "reg" tuples:
54 compatible = "intel,PC48F4400P0VB", "cfi-flash";
55 reg = <0 0x00000000 0x02000000
56 0 0x02000000 0x02000000>;
64 An example using SRAM:
67 compatible = "samsung,k6f1616u6a", "mtd-ram";
68 reg = <2 0 0x00200000>;