atmel_ac97c.txt 657 B

1234567891011121314151617181920
  1. * Atmel AC97 controller
  2. Required properties:
  3. - compatible: "atmel,at91sam9263-ac97c"
  4. - reg: Address and length of the register set for the device
  5. - interrupts: Should contain AC97 interrupt
  6. - ac97-gpios: Please refer to soc-ac97link.txt, only ac97-reset is used
  7. Optional properties:
  8. - pinctrl-names, pinctrl-0: Please refer to pinctrl-bindings.txt
  9. Example:
  10. sound@fffa0000 {
  11. compatible = "atmel,at91sam9263-ac97c";
  12. pinctrl-names = "default";
  13. pinctrl-0 = <&pinctrl_ac97>;
  14. reg = <0xfffa0000 0x4000>;
  15. interrupts = <18 IRQ_TYPE_LEVEL_HIGH 5>;
  16. ac97-gpios = <&pioB 0 0 &pioB 2 0 &pioC 29 GPIO_ACTIVE_LOW>;
  17. };