2 * Driver for the Analog Devices digital potentiometers (SPI bus)
4 * Copyright (C) 2010-2011 Michael Hennerich, Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
9 #include <linux/spi/spi.h>
10 #include <linux/module.h>
12 #include "ad525x_dpot.h"
14 /* SPI bus functions */
15 static int write8(void *client
, u8 val
)
19 return spi_write(client
, &data
, 1);
22 static int write16(void *client
, u8 reg
, u8 val
)
24 u8 data
[2] = {reg
, val
};
26 return spi_write(client
, data
, 2);
29 static int write24(void *client
, u8 reg
, u16 val
)
31 u8 data
[3] = {reg
, val
>> 8, val
};
33 return spi_write(client
, data
, 3);
36 static int read8(void *client
)
41 ret
= spi_read(client
, &data
, 1);
48 static int read16(void *client
, u8 reg
)
53 write16(client
, reg
, 0);
54 ret
= spi_read(client
, buf_rx
, 2);
58 return (buf_rx
[0] << 8) | buf_rx
[1];
61 static int read24(void *client
, u8 reg
)
66 write24(client
, reg
, 0);
67 ret
= spi_read(client
, buf_rx
, 3);
71 return (buf_rx
[1] << 8) | buf_rx
[2];
74 static const struct ad_dpot_bus_ops bops
= {
79 .write_r8d8
= write16
,
80 .write_r8d16
= write24
,
82 static int ad_dpot_spi_probe(struct spi_device
*spi
)
84 struct ad_dpot_bus_data bdata
= {
89 return ad_dpot_probe(&spi
->dev
, &bdata
,
90 spi_get_device_id(spi
)->driver_data
,
91 spi_get_device_id(spi
)->name
);
94 static int ad_dpot_spi_remove(struct spi_device
*spi
)
96 return ad_dpot_remove(&spi
->dev
);
99 static const struct spi_device_id ad_dpot_spi_id
[] = {
100 {"ad5160", AD5160_ID
},
101 {"ad5161", AD5161_ID
},
102 {"ad5162", AD5162_ID
},
103 {"ad5165", AD5165_ID
},
104 {"ad5200", AD5200_ID
},
105 {"ad5201", AD5201_ID
},
106 {"ad5203", AD5203_ID
},
107 {"ad5204", AD5204_ID
},
108 {"ad5206", AD5206_ID
},
109 {"ad5207", AD5207_ID
},
110 {"ad5231", AD5231_ID
},
111 {"ad5232", AD5232_ID
},
112 {"ad5233", AD5233_ID
},
113 {"ad5235", AD5235_ID
},
114 {"ad5260", AD5260_ID
},
115 {"ad5262", AD5262_ID
},
116 {"ad5263", AD5263_ID
},
117 {"ad5290", AD5290_ID
},
118 {"ad5291", AD5291_ID
},
119 {"ad5292", AD5292_ID
},
120 {"ad5293", AD5293_ID
},
121 {"ad7376", AD7376_ID
},
122 {"ad8400", AD8400_ID
},
123 {"ad8402", AD8402_ID
},
124 {"ad8403", AD8403_ID
},
125 {"adn2850", ADN2850_ID
},
126 {"ad5270", AD5270_ID
},
127 {"ad5271", AD5271_ID
},
130 MODULE_DEVICE_TABLE(spi
, ad_dpot_spi_id
);
132 static struct spi_driver ad_dpot_spi_driver
= {
135 .owner
= THIS_MODULE
,
137 .probe
= ad_dpot_spi_probe
,
138 .remove
= ad_dpot_spi_remove
,
139 .id_table
= ad_dpot_spi_id
,
142 module_spi_driver(ad_dpot_spi_driver
);
144 MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
145 MODULE_DESCRIPTION("digital potentiometer SPI bus driver");
146 MODULE_LICENSE("GPL");
147 MODULE_ALIAS("spi:ad_dpot");