Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/sys/contrib/device-tree/Bindings/iio/dac/lpc1850-dac.txt
48525 views
1
NXP LPC1850 DAC bindings
2
3
Required properties:
4
- compatible: Should be "nxp,lpc1850-dac"
5
- reg: Offset and length of the register set for the ADC device
6
- interrupts: The interrupt number for the ADC device
7
- clocks: The root clock of the ADC controller
8
- vref-supply: The regulator supply ADC reference voltage
9
- resets: phandle to reset controller and line specifier
10
11
Example:
12
dac: dac@400e1000 {
13
compatible = "nxp,lpc1850-dac";
14
reg = <0x400e1000 0x1000>;
15
interrupts = <0>;
16
clocks = <&ccu1 CLK_APB3_DAC>;
17
vref-supply = <&reg_vdda>;
18
resets = <&rgu 42>;
19
};
20
21