lpc1850-adc.txt 567 B

1234567891011121314151617181920
  1. NXP LPC1850 ADC bindings
  2. Required properties:
  3. - compatible: Should be "nxp,lpc1850-adc"
  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. adc0: adc@400e3000 {
  11. compatible = "nxp,lpc1850-adc";
  12. reg = <0x400e3000 0x1000>;
  13. interrupts = <17>;
  14. clocks = <&ccu1 CLK_APB3_ADC0>;
  15. vref-supply = <&reg_vdda>;
  16. resets = <&rgu 40>;
  17. };