2 * Driver for the Analog Devices digital potentiometers (SPI bus)
4 * Copyright (C) 2010 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 static const struct ad_dpot_id ad_dpot_spi_devlist
[] = {
15 {.name
= "ad5160", .devid
= AD5160_ID
},
16 {.name
= "ad5161", .devid
= AD5161_ID
},
17 {.name
= "ad5162", .devid
= AD5162_ID
},
18 {.name
= "ad5165", .devid
= AD5165_ID
},
19 {.name
= "ad5200", .devid
= AD5200_ID
},
20 {.name
= "ad5201", .devid
= AD5201_ID
},
21 {.name
= "ad5203", .devid
= AD5203_ID
},
22 {.name
= "ad5204", .devid
= AD5204_ID
},
23 {.name
= "ad5206", .devid
= AD5206_ID
},
24 {.name
= "ad5207", .devid
= AD5207_ID
},
25 {.name
= "ad5231", .devid
= AD5231_ID
},
26 {.name
= "ad5232", .devid
= AD5232_ID
},
27 {.name
= "ad5233", .devid
= AD5233_ID
},
28 {.name
= "ad5235", .devid
= AD5235_ID
},
29 {.name
= "ad5260", .devid
= AD5260_ID
},
30 {.name
= "ad5262", .devid
= AD5262_ID
},
31 {.name
= "ad5263", .devid
= AD5263_ID
},
32 {.name
= "ad5290", .devid
= AD5290_ID
},
33 {.name
= "ad5291", .devid
= AD5291_ID
},
34 {.name
= "ad5292", .devid
= AD5292_ID
},
35 {.name
= "ad5293", .devid
= AD5293_ID
},
36 {.name
= "ad7376", .devid
= AD7376_ID
},
37 {.name
= "ad8400", .devid
= AD8400_ID
},
38 {.name
= "ad8402", .devid
= AD8402_ID
},
39 {.name
= "ad8403", .devid
= AD8403_ID
},
40 {.name
= "adn2850", .devid
= ADN2850_ID
},
41 {.name
= "ad5270", .devid
= AD5270_ID
},
42 {.name
= "ad5271", .devid
= AD5271_ID
},
46 /* ------------------------------------------------------------------------- */
48 /* SPI bus functions */
49 static int write8(void *client
, u8 val
)
52 return spi_write(client
, &data
, 1);
55 static int write16(void *client
, u8 reg
, u8 val
)
57 u8 data
[2] = {reg
, val
};
58 return spi_write(client
, data
, 2);
61 static int write24(void *client
, u8 reg
, u16 val
)
63 u8 data
[3] = {reg
, val
>> 8, val
};
64 return spi_write(client
, data
, 3);
67 static int read8(void *client
)
71 ret
= spi_read(client
, &data
, 1);
78 static int read16(void *client
, u8 reg
)
83 write16(client
, reg
, 0);
84 ret
= spi_read(client
, buf_rx
, 2);
88 return (buf_rx
[0] << 8) | buf_rx
[1];
91 static int read24(void *client
, u8 reg
)
96 write24(client
, reg
, 0);
97 ret
= spi_read(client
, buf_rx
, 3);
101 return (buf_rx
[1] << 8) | buf_rx
[2];
104 static const struct ad_dpot_bus_ops bops
= {
107 .read_r8d16
= read24
,
109 .write_r8d8
= write16
,
110 .write_r8d16
= write24
,
113 static const struct ad_dpot_id
*dpot_match_id(const struct ad_dpot_id
*id
,
116 while (id
->name
&& id
->name
[0]) {
117 if (strcmp(name
, id
->name
) == 0)
124 static int __devinit
ad_dpot_spi_probe(struct spi_device
*spi
)
126 char *name
= spi
->dev
.platform_data
;
127 const struct ad_dpot_id
*dpot_id
;
129 struct ad_dpot_bus_data bdata
= {
134 dpot_id
= dpot_match_id(ad_dpot_spi_devlist
, name
);
136 if (dpot_id
== NULL
) {
137 dev_err(&spi
->dev
, "%s not in supported device list", name
);
141 return ad_dpot_probe(&spi
->dev
, &bdata
, dpot_id
);
144 static int __devexit
ad_dpot_spi_remove(struct spi_device
*spi
)
146 return ad_dpot_remove(&spi
->dev
);
149 static struct spi_driver ad_dpot_spi_driver
= {
152 .bus
= &spi_bus_type
,
153 .owner
= THIS_MODULE
,
155 .probe
= ad_dpot_spi_probe
,
156 .remove
= __devexit_p(ad_dpot_spi_remove
),
159 static int __init
ad_dpot_spi_init(void)
161 return spi_register_driver(&ad_dpot_spi_driver
);
163 module_init(ad_dpot_spi_init
);
165 static void __exit
ad_dpot_spi_exit(void)
167 spi_unregister_driver(&ad_dpot_spi_driver
);
169 module_exit(ad_dpot_spi_exit
);
171 MODULE_AUTHOR("Michael Hennerich <hennerich@blackfin.uclinux.org>");
172 MODULE_DESCRIPTION("digital potentiometer SPI bus driver");
173 MODULE_LICENSE("GPL");
174 MODULE_ALIAS("spi:ad_dpot");