lpc1850-dac.txt 585 B

123456789101112131415161718192021
  1. NXP LPC1850 DAC bindings
  2. Required properties:
  3. - compatible: Should be "nxp,lpc1850-dac"
  4. - reg: Offset and length of the register set for the ADC device
  5. - interrupts: The interrupt number for the ADC device
  6. - clocks: The root clock of the ADC controller
  7. - vref-supply: The regulator supply ADC reference voltage
  8. - resets: phandle to reset controller and line specifier
  9. Example:
  10. dac: dac@400e1000 {
  11. compatible = "nxp,lpc1850-dac";
  12. reg = <0x400e1000 0x1000>;
  13. interrupts = <0>;
  14. clocks = <&ccu1 CLK_APB3_DAC>;
  15. vref-supply = <&reg_vdda>;
  16. resets = <&rgu 42>;
  17. status = "disabled";
  18. };