Linux-libre 5.0.10-gnu
[librecmc/linux-libre.git] / drivers / iio / dac / ad5686.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * This file is part of AD5686 DAC driver
4  *
5  * Copyright 2018 Analog Devices Inc.
6  */
7
8 #ifndef __DRIVERS_IIO_DAC_AD5686_H__
9 #define __DRIVERS_IIO_DAC_AD5686_H__
10
11 #include <linux/types.h>
12 #include <linux/cache.h>
13 #include <linux/mutex.h>
14 #include <linux/kernel.h>
15
16 #define AD5310_CMD(x)                           ((x) << 12)
17
18 #define AD5683_DATA(x)                          ((x) << 4)
19
20 #define AD5686_ADDR(x)                          ((x) << 16)
21 #define AD5686_CMD(x)                           ((x) << 20)
22
23 #define AD5686_ADDR_DAC(chan)                   (0x1 << (chan))
24 #define AD5686_ADDR_ALL_DAC                     0xF
25
26 #define AD5686_CMD_NOOP                         0x0
27 #define AD5686_CMD_WRITE_INPUT_N                0x1
28 #define AD5686_CMD_UPDATE_DAC_N                 0x2
29 #define AD5686_CMD_WRITE_INPUT_N_UPDATE_N       0x3
30 #define AD5686_CMD_POWERDOWN_DAC                0x4
31 #define AD5686_CMD_LDAC_MASK                    0x5
32 #define AD5686_CMD_RESET                        0x6
33 #define AD5686_CMD_INTERNAL_REFER_SETUP         0x7
34 #define AD5686_CMD_DAISY_CHAIN_ENABLE           0x8
35 #define AD5686_CMD_READBACK_ENABLE              0x9
36
37 #define AD5686_LDAC_PWRDN_NONE                  0x0
38 #define AD5686_LDAC_PWRDN_1K                    0x1
39 #define AD5686_LDAC_PWRDN_100K                  0x2
40 #define AD5686_LDAC_PWRDN_3STATE                0x3
41
42 #define AD5686_CMD_CONTROL_REG                  0x4
43 #define AD5686_CMD_READBACK_ENABLE_V2           0x5
44
45 #define AD5310_REF_BIT_MSK                      BIT(8)
46 #define AD5683_REF_BIT_MSK                      BIT(12)
47 #define AD5693_REF_BIT_MSK                      BIT(12)
48
49 /**
50  * ad5686_supported_device_ids:
51  */
52 enum ad5686_supported_device_ids {
53         ID_AD5310R,
54         ID_AD5311R,
55         ID_AD5671R,
56         ID_AD5672R,
57         ID_AD5675R,
58         ID_AD5676,
59         ID_AD5676R,
60         ID_AD5681R,
61         ID_AD5682R,
62         ID_AD5683,
63         ID_AD5683R,
64         ID_AD5684,
65         ID_AD5684R,
66         ID_AD5685R,
67         ID_AD5686,
68         ID_AD5686R,
69         ID_AD5691R,
70         ID_AD5692R,
71         ID_AD5693,
72         ID_AD5693R,
73         ID_AD5694,
74         ID_AD5694R,
75         ID_AD5695R,
76         ID_AD5696,
77         ID_AD5696R,
78 };
79
80 enum ad5686_regmap_type {
81         AD5310_REGMAP,
82         AD5683_REGMAP,
83         AD5686_REGMAP,
84         AD5693_REGMAP
85 };
86
87 struct ad5686_state;
88
89 typedef int (*ad5686_write_func)(struct ad5686_state *st,
90                                  u8 cmd, u8 addr, u16 val);
91
92 typedef int (*ad5686_read_func)(struct ad5686_state *st, u8 addr);
93
94 /**
95  * struct ad5686_chip_info - chip specific information
96  * @int_vref_mv:        AD5620/40/60: the internal reference voltage
97  * @num_channels:       number of channels
98  * @channel:            channel specification
99  * @regmap_type:        register map layout variant
100  */
101
102 struct ad5686_chip_info {
103         u16                             int_vref_mv;
104         unsigned int                    num_channels;
105         struct iio_chan_spec            *channels;
106         enum ad5686_regmap_type         regmap_type;
107 };
108
109 /**
110  * struct ad5446_state - driver instance specific data
111  * @spi:                spi_device
112  * @chip_info:          chip model specific constants, available modes etc
113  * @reg:                supply regulator
114  * @vref_mv:            actual reference voltage used
115  * @pwr_down_mask:      power down mask
116  * @pwr_down_mode:      current power down mode
117  * @use_internal_vref:  set to true if the internal reference voltage is used
118  * @data:               spi transfer buffers
119  */
120
121 struct ad5686_state {
122         struct device                   *dev;
123         const struct ad5686_chip_info   *chip_info;
124         struct regulator                *reg;
125         unsigned short                  vref_mv;
126         unsigned int                    pwr_down_mask;
127         unsigned int                    pwr_down_mode;
128         ad5686_write_func               write;
129         ad5686_read_func                read;
130         bool                            use_internal_vref;
131
132         /*
133          * DMA (thus cache coherency maintenance) requires the
134          * transfer buffers to live in their own cache lines.
135          */
136
137         union {
138                 __be32 d32;
139                 __be16 d16;
140                 u8 d8[4];
141         } data[3] ____cacheline_aligned;
142 };
143
144
145 int ad5686_probe(struct device *dev,
146                  enum ad5686_supported_device_ids chip_type,
147                  const char *name, ad5686_write_func write,
148                  ad5686_read_func read);
149
150 int ad5686_remove(struct device *dev);
151
152
153 #endif /* __DRIVERS_IIO_DAC_AD5686_H__ */