Lines Matching +full:vdd +full:- +full:supply
5 - use microvolts constraint or
6 - use regulator phandle to enable/read supply's Voltage
10 - vdd-polarity-negative: positive reference Voltage has a negative polarity
11 - vss-polarity-negative: negative reference Voltage has a negative polarity
13 Chose one option, for each supply (Vdd/Vss):
15 *optional and always checked, supply Voltage constants:
16 - vdd-supply: phandle to Vdd regulator's node
17 - vss-supply: phandle to Vss regulator's node
20 - vdd-microvolts: positive reference Voltage value [uV]
21 - vss-microvolts: negative reference Voltage value [uV]
23 Example with constant 'Vdd' value:
25 compatible = "some-adc";
28 vdd-microvolts = <1800000>;
31 Example of supply phandle usage, for the ADC's VDD/VSS references as below:
36 | | (Vdd) | AIN0|-->
37 | BUCK2|-------|VDDref |
47 regulator-name = "SUPPLY_3.3V";
48 regulator-min-microvolt = <3300000>;
49 regulator-max-microvolt = <3300000>;
57 vdd-supply = <&buck2>;
58 vss-microvolts = <0>;
61 The ADC uclass code, will enable the supply before start of the conversion,