4 #define MAX1363_SETUP_BYTE(a) ((a) | 0x80)
6 /* There is a fair bit more defined here than currently
7 * used, but the intention is to support everything these
8 * chips do in the long run */
11 /* max1363 and max1236, max1237, max1238, max1239 */
12 #define MAX1363_SETUP_AIN3_IS_AIN3_REF_IS_VDD 0x00
13 #define MAX1363_SETUP_AIN3_IS_REF_EXT_TO_REF 0x20
14 #define MAX1363_SETUP_AIN3_IS_AIN3_REF_IS_INT 0x40
15 #define MAX1363_SETUP_AIN3_IS_REF_REF_IS_INT 0x60
16 #define MAX1363_SETUP_POWER_UP_INT_REF 0x10
17 #define MAX1363_SETUP_POWER_DOWN_INT_REF 0x00
19 /* think about includeing max11600 etc - more settings */
20 #define MAX1363_SETUP_EXT_CLOCK 0x08
21 #define MAX1363_SETUP_INT_CLOCK 0x00
22 #define MAX1363_SETUP_UNIPOLAR 0x00
23 #define MAX1363_SETUP_BIPOLAR 0x04
24 #define MAX1363_SETUP_RESET 0x00
25 #define MAX1363_SETUP_NORESET 0x02
26 /* max1363 only - though don't care on others.
27 * For now monitor modes are not implemented as the relevant
28 * line is not connected on my test board.
29 * The definitions are here as I intend to add this soon.
31 #define MAX1363_SETUP_MONITOR_SETUP 0x01
33 /* Specific to the max1363 */
34 #define MAX1363_MON_RESET_CHAN(a) (1 << ((a) + 4))
35 #define MAX1363_MON_INT_ENABLE 0x01
37 /* defined for readability reasons */
39 #define MAX1363_CONFIG_BYTE(a) ((a))
41 #define MAX1363_CONFIG_SE 0x01
42 #define MAX1363_CONFIG_DE 0x00
43 #define MAX1363_CONFIG_SCAN_TO_CS 0x00
44 #define MAX1363_CONFIG_SCAN_SINGLE_8 0x20
45 #define MAX1363_CONFIG_SCAN_MONITOR_MODE 0x40
46 #define MAX1363_CONFIG_SCAN_SINGLE_1 0x60
47 /* max123{6-9} only */
48 #define MAX1236_SCAN_MID_TO_CHANNEL 0x40
50 /* max1363 only - merely part of channel selects or don't care for others*/
51 #define MAX1363_CONFIG_EN_MON_MODE_READ 0x18
53 #define MAX1363_CHANNEL_SEL(a) ((a) << 1)
55 /* max1363 strictly 0x06 - but doesn't matter */
56 #define MAX1363_CHANNEL_SEL_MASK 0x1E
57 #define MAX1363_SCAN_MASK 0x60
58 #define MAX1363_SE_DE_MASK 0x01
61 * struct max1363_mode - scan mode information
62 * @conf: The corresponding value of the configuration register
63 * @modemask: Bit mask corresponding to channels enabled in this mode
70 /* This must be maintained along side the max1363_mode_table in max1363_core */
72 /* Single read of a single channel */
73 _s0
, _s1
, _s2
, _s3
, _s4
, _s5
, _s6
, _s7
, _s8
, _s9
, _s10
, _s11
,
74 /* Differential single read */
75 d0m1
, d2m3
, d4m5
, d6m7
, d8m9
, d10m11
,
76 d1m0
, d3m2
, d5m4
, d7m6
, d9m8
, d11m10
,
77 /* Scan to channel and mid to channel where overlapping */
78 s0to1
, s0to2
, s2to3
, s0to3
, s0to4
, s0to5
, s0to6
,
79 s6to7
, s0to7
, s6to8
, s0to8
, s6to9
,
80 s0to9
, s6to10
, s0to10
, s6to11
, s0to11
,
81 /* Differential scan to channel and mid to channel where overlapping */
82 d0m1to2m3
, d0m1to4m5
, d0m1to6m7
, d6m7to8m9
,
83 d0m1to8m9
, d6m7to10m11
, d0m1to10m11
, d1m0to3m2
,
84 d1m0to5m4
, d1m0to7m6
, d7m6to9m8
, d1m0to9m8
,
85 d7m6to11m10
, d1m0to11m10
,
89 * struct max1363_chip_info - chip specifc information
90 * @name: indentification string for chip
91 * @bits: accuracy of the adc in bits
92 * @int_vref_mv: the internal reference voltage
93 * @info: iio core function callbacks structure
94 * @mode_list: array of available scan modes
95 * @num_modes: the number of scan modes available
96 * @default_mode: the scan mode in which the chip starts up
97 * @channel: channel specification
98 * @num_channels: number of channels
100 struct max1363_chip_info
{
101 const struct iio_info
*info
;
102 struct iio_chan_spec
*channels
;
104 const enum max1363_modes
*mode_list
;
105 enum max1363_modes default_mode
;
112 * struct max1363_state - driver instance specific data
113 * @client: i2c_client
114 * @setupbyte: cache of current device setup byte
115 * @configbyte: cache of current device config byte
116 * @chip_info: chip model specific constants, available modes etc
117 * @current_mode: the scan mode of this chip
118 * @requestedmask: a valid requested set of channels
119 * @reg: supply regulator
120 * @monitor_on: whether monitor mode is enabled
121 * @monitor_speed: parameter corresponding to device monitor speed setting
122 * @mask_high: bitmask for enabled high thresholds
123 * @mask_low: bitmask for enabled low thresholds
124 * @thresh_high: high threshold values
125 * @thresh_low: low threshold values
127 struct max1363_state
{
128 struct i2c_client
*client
;
131 const struct max1363_chip_info
*chip_info
;
132 const struct max1363_mode
*current_mode
;
134 struct regulator
*reg
;
136 /* Using monitor modes and buffer at the same time is
137 currently not supported */
139 unsigned int monitor_speed
:3;
142 /* 4x unipolar first then the fours bipolar ones */
147 const struct max1363_mode
148 *max1363_match_mode(u32 mask
, const struct max1363_chip_info
*ci
);
150 int max1363_set_scan_mode(struct max1363_state
*st
);
152 #ifdef CONFIG_MAX1363_RING_BUFFER
154 int max1363_single_channel_from_ring(long mask
, struct max1363_state
*st
);
155 int max1363_register_ring_funcs_and_init(struct iio_dev
*indio_dev
);
156 void max1363_ring_cleanup(struct iio_dev
*indio_dev
);
158 #else /* CONFIG_MAX1363_RING_BUFFER */
160 int max1363_single_channel_from_ring(long mask
, struct max1363_state
*st
)
166 max1363_register_ring_funcs_and_init(struct iio_dev
*indio_dev
)
171 static inline void max1363_ring_cleanup(struct iio_dev
*indio_dev
)
174 #endif /* CONFIG_MAX1363_RING_BUFFER */
175 #endif /* _MAX1363_H_ */