imx7d-adc.txt 695 B

1234567891011121314151617181920212223
  1. Freescale imx7d ADC bindings
  2. The devicetree bindings are for the ADC driver written for
  3. imx7d SoC.
  4. Required properties:
  5. - compatible: Should be "fsl,imx7d-adc"
  6. - reg: Offset and length of the register set for the ADC device
  7. - interrupts: The interrupt number for the ADC device
  8. - clocks: The root clock of the ADC controller
  9. - clock-names: Must contain "adc", matching entry in the clocks property
  10. - vref-supply: The regulator supply ADC reference voltage
  11. Example:
  12. adc1: adc@30610000 {
  13. compatible = "fsl,imx7d-adc";
  14. reg = <0x30610000 0x10000>;
  15. interrupts = <GIC_SPI 98 IRQ_TYPE_LEVEL_HIGH>;
  16. clocks = <&clks IMX7D_ADC_ROOT_CLK>;
  17. clock-names = "adc";
  18. vref-supply = <&reg_vcc_3v3_mcu>;
  19. };