The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/iio/adc/nuvoton,npcm-adc.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 Nuvoton NPCM Analog to Digital Converter (ADC)
    2 
    3 The NPCM ADC is a 10-bit converter for eight channel inputs.
    4 
    5 Required properties:
    6 - compatible: "nuvoton,npcm750-adc" for the NPCM7XX BMC.
    7 - reg: specifies physical base address and size of the registers.
    8 - interrupts: Contain the ADC interrupt with flags for falling edge.
    9 - resets : phandle to the reset control for this device.
   10 
   11 Optional properties:
   12 - clocks: phandle of ADC reference clock, in case the clock is not
   13                   added the ADC will use the default ADC sample rate.
   14 - vref-supply: The regulator supply ADC reference voltage, in case the
   15                            vref-supply is not added the ADC will use internal voltage
   16                            reference.
   17 
   18 Example:
   19 
   20 adc: adc@f000c000 {
   21         compatible = "nuvoton,npcm750-adc";
   22         reg = <0xf000c000 0x8>;
   23         interrupts = <GIC_SPI 0 IRQ_TYPE_LEVEL_HIGH>;
   24         clocks = <&clk NPCM7XX_CLK_ADC>;
   25         resets = <&rstc NPCM7XX_RESET_IPSRST1 NPCM7XX_RESET_ADC>;
   26 };

Cache object: 18d70d770bfa434771926c941418b6ec


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.