1# Copyright 2023 NXP
2# SPDX-License-Identifier: Apache-2.0
3
4description: NXP GAU DAC
5
6compatible: "nxp,gau-dac"
7
8include: dac-controller.yaml
9
10properties:
11  nxp,dac-reference:
12    type: string
13    enum:
14      - "internal"
15      - "external"
16    default: "internal"
17    description: |
18      DAC reference select.
19      Default is "internal" because that is the reset value.
20
21  nxp,output-voltage-range:
22    type: string
23    enum:
24      - "small"
25      - "medium"
26      - "large"
27    default: "large"
28    description: |
29      See specific platform Reference Manual for equations describing the options.
30      Default is large because that is the reset value.
31
32  nxp,conversion-rate:
33    type: string
34    enum:
35      - "62.5K"
36      - "125K"
37      - "250K"
38      - "500K"
39    default: "62.5K"
40    description: |
41      DAC conversion rate.
42      Default is "62.5K" because that is the reset value.
43
44  "#io-channel-cells":
45    const: 0
46