Adding support for MOXA ART SoC. Testing port of linux-2.6.32.60-moxart.
[linux-3.6.7-moxart.git] / Documentation / devicetree / bindings / misc / at25.txt
blobab3c327929dd26c09f19272219a4c8c26b7d3dd3
1 Atmel AT25 eeprom
3 Required properties:
4 - compatible : "atmel,at25".
5 - reg : chip select number
6 - spi-max-frequency : max spi frequency to use
8 - at25,byte-len : total eeprom size in bytes
9 - at25,addr-mode : addr-mode flags, as defined in include/linux/spi/eeprom.h
10 - at25,page-size : size of the eeprom page
12 Examples:
13 at25@0 {
14         compatible = "atmel,at25";
15         reg = <0>
16         spi-max-frequency = <5000000>;
18         at25,byte-len = <0x8000>;
19         at25,addr-mode = <2>;
20         at25,page-size = <64>;