atmel-at91_cf.txt 534 B

12345678910111213141516171819
  1. Atmel AT91RM9200 CompactFlash
  2. Required properties:
  3. - compatible : "atmel,at91rm9200-cf".
  4. - reg : should specify localbus address and size used.
  5. - gpios : specifies the gpio pins to control the CF device. Detect
  6. and reset gpio's are mandatory while irq and vcc gpio's are
  7. optional and may be set to 0 if not present.
  8. Example:
  9. compact-flash@50000000 {
  10. compatible = "atmel,at91rm9200-cf";
  11. reg = <0x50000000 0x30000000>;
  12. gpios = <&pioC 13 0 /* irq */
  13. &pioC 15 0 /* detect */
  14. 0 /* vcc */
  15. &pioC 5 0 /* reset */
  16. >;
  17. };