Merge branch 'for-next' of git://neil.brown.name/md
[deliverable/linux.git] / Documentation / devicetree / bindings / misc / at25.txt
1 Atmel AT25 eeprom
2
3 Required properties:
4 - compatible : "atmel,at25".
5 - reg : chip select number
6 - spi-max-frequency : max spi frequency to use
7
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
11
12 Examples:
13 at25@0 {
14 compatible = "atmel,at25";
15 reg = <0>
16 spi-max-frequency = <5000000>;
17
18 at25,byte-len = <0x8000>;
19 at25,addr-mode = <2>;
20 at25,page-size = <64>;
21 };
This page took 0.032974 seconds and 6 git commands to generate.