blob: 8b15ab5e1450a30b1f74b67a4761c2022af0fa9b [file] [log] [blame]
Greg Kroah-Hartman5fd54ac2017-11-03 11:28:30 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* -*- linux-c -*-
3 * Cypress USB Thermometer driver
4 *
5 * Copyright (c) 2004 Erik Rigtorp <erkki@linux.nu> <erik@rigtorp.com>
6 *
7 * This driver works with Elektor magazine USB Interface as published in
8 * issue #291. It should also work with the original starter kit/demo board
9 * from Cypress.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 */
11
12
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/kernel.h>
14#include <linux/errno.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090015#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/module.h>
17#include <linux/usb.h>
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#define DRIVER_AUTHOR "Erik Rigtorp"
20#define DRIVER_DESC "Cypress USB Thermometer driver"
21
22#define USB_SKEL_VENDOR_ID 0x04b4
23#define USB_SKEL_PRODUCT_ID 0x0002
24
Németh Márton33b9e162010-01-10 15:34:45 +010025static const struct usb_device_id id_table[] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 { USB_DEVICE(USB_SKEL_VENDOR_ID, USB_SKEL_PRODUCT_ID) },
27 { }
28};
29MODULE_DEVICE_TABLE (usb, id_table);
30
31/* Structure to hold all of our device specific stuff */
32struct usb_cytherm {
33 struct usb_device *udev; /* save off the usb device pointer */
34 struct usb_interface *interface; /* the interface for this device */
35 int brightness;
36};
37
38
39/* local function prototypes */
40static int cytherm_probe(struct usb_interface *interface,
41 const struct usb_device_id *id);
42static void cytherm_disconnect(struct usb_interface *interface);
43
44
45/* usb specific object needed to register this driver with the usb subsystem */
46static struct usb_driver cytherm_driver = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070047 .name = "cytherm",
48 .probe = cytherm_probe,
49 .disconnect = cytherm_disconnect,
50 .id_table = id_table,
51};
52
53/* Vendor requests */
54/* They all operate on one byte at a time */
55#define PING 0x00
56#define READ_ROM 0x01 /* Reads form ROM, value = address */
57#define READ_RAM 0x02 /* Reads form RAM, value = address */
58#define WRITE_RAM 0x03 /* Write to RAM, value = address, index = data */
59#define READ_PORT 0x04 /* Reads from port, value = address */
60#define WRITE_PORT 0x05 /* Write to port, value = address, index = data */
61
62
63/* Send a vendor command to device */
64static int vendor_command(struct usb_device *dev, unsigned char request,
65 unsigned char value, unsigned char index,
66 void *buf, int size)
67{
68 return usb_control_msg(dev, usb_rcvctrlpipe(dev, 0),
69 request,
70 USB_DIR_IN | USB_TYPE_VENDOR | USB_RECIP_OTHER,
71 value,
72 index, buf, size,
73 USB_CTRL_GET_TIMEOUT);
74}
75
76
77
78#define BRIGHTNESS 0x2c /* RAM location for brightness value */
79#define BRIGHTNESS_SEM 0x2b /* RAM location for brightness semaphore */
80
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +010081static ssize_t brightness_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -070082{
83 struct usb_interface *intf = to_usb_interface(dev);
84 struct usb_cytherm *cytherm = usb_get_intfdata(intf);
85
86 return sprintf(buf, "%i", cytherm->brightness);
87}
88
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +010089static ssize_t brightness_store(struct device *dev, struct device_attribute *attr, const char *buf,
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 size_t count)
91{
92 struct usb_interface *intf = to_usb_interface(dev);
93 struct usb_cytherm *cytherm = usb_get_intfdata(intf);
94
95 unsigned char *buffer;
96 int retval;
97
98 buffer = kmalloc(8, GFP_KERNEL);
Wolfram Sang29a99df2016-08-25 19:39:14 +020099 if (!buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
102 cytherm->brightness = simple_strtoul(buf, NULL, 10);
103
104 if (cytherm->brightness > 0xFF)
105 cytherm->brightness = 0xFF;
106 else if (cytherm->brightness < 0)
107 cytherm->brightness = 0;
108
109 /* Set brightness */
110 retval = vendor_command(cytherm->udev, WRITE_RAM, BRIGHTNESS,
111 cytherm->brightness, buffer, 8);
112 if (retval)
113 dev_dbg(&cytherm->udev->dev, "retval = %d\n", retval);
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200114 /* Inform µC that we have changed the brightness setting */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115 retval = vendor_command(cytherm->udev, WRITE_RAM, BRIGHTNESS_SEM,
116 0x01, buffer, 8);
117 if (retval)
118 dev_dbg(&cytherm->udev->dev, "retval = %d\n", retval);
119
120 kfree(buffer);
121
122 return count;
123}
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +0100124static DEVICE_ATTR_RW(brightness);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
126
127#define TEMP 0x33 /* RAM location for temperature */
128#define SIGN 0x34 /* RAM location for temperature sign */
129
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +0100130static ssize_t temp_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131{
132
133 struct usb_interface *intf = to_usb_interface(dev);
134 struct usb_cytherm *cytherm = usb_get_intfdata(intf);
135
136 int retval;
137 unsigned char *buffer;
138
139 int temp, sign;
140
141 buffer = kmalloc(8, GFP_KERNEL);
Wolfram Sang29a99df2016-08-25 19:39:14 +0200142 if (!buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
145 /* read temperature */
146 retval = vendor_command(cytherm->udev, READ_RAM, TEMP, 0, buffer, 8);
147 if (retval)
148 dev_dbg(&cytherm->udev->dev, "retval = %d\n", retval);
149 temp = buffer[1];
150
151 /* read sign */
152 retval = vendor_command(cytherm->udev, READ_RAM, SIGN, 0, buffer, 8);
153 if (retval)
154 dev_dbg(&cytherm->udev->dev, "retval = %d\n", retval);
155 sign = buffer[1];
156
157 kfree(buffer);
158
159 return sprintf(buf, "%c%i.%i", sign ? '-' : '+', temp >> 1,
160 5*(temp - ((temp >> 1) << 1)));
161}
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +0100162static DEVICE_ATTR_RO(temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163
164
165#define BUTTON 0x7a
166
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +0100167static ssize_t button_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
169
170 struct usb_interface *intf = to_usb_interface(dev);
171 struct usb_cytherm *cytherm = usb_get_intfdata(intf);
172
173 int retval;
174 unsigned char *buffer;
175
176 buffer = kmalloc(8, GFP_KERNEL);
Wolfram Sang29a99df2016-08-25 19:39:14 +0200177 if (!buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180 /* check button */
181 retval = vendor_command(cytherm->udev, READ_RAM, BUTTON, 0, buffer, 8);
182 if (retval)
183 dev_dbg(&cytherm->udev->dev, "retval = %d\n", retval);
184
185 retval = buffer[1];
186
187 kfree(buffer);
188
189 if (retval)
190 return sprintf(buf, "1");
191 else
192 return sprintf(buf, "0");
193}
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +0100194static DEVICE_ATTR_RO(button);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
196
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +0100197static ssize_t port0_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198{
199 struct usb_interface *intf = to_usb_interface(dev);
200 struct usb_cytherm *cytherm = usb_get_intfdata(intf);
201
202 int retval;
203 unsigned char *buffer;
204
205 buffer = kmalloc(8, GFP_KERNEL);
Wolfram Sang29a99df2016-08-25 19:39:14 +0200206 if (!buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209 retval = vendor_command(cytherm->udev, READ_PORT, 0, 0, buffer, 8);
210 if (retval)
211 dev_dbg(&cytherm->udev->dev, "retval = %d\n", retval);
212
213 retval = buffer[1];
214
215 kfree(buffer);
216
217 return sprintf(buf, "%d", retval);
218}
219
220
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +0100221static ssize_t port0_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222{
223 struct usb_interface *intf = to_usb_interface(dev);
224 struct usb_cytherm *cytherm = usb_get_intfdata(intf);
225
226 unsigned char *buffer;
227 int retval;
228 int tmp;
229
230 buffer = kmalloc(8, GFP_KERNEL);
Wolfram Sang29a99df2016-08-25 19:39:14 +0200231 if (!buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 tmp = simple_strtoul(buf, NULL, 10);
235
236 if (tmp > 0xFF)
237 tmp = 0xFF;
238 else if (tmp < 0)
239 tmp = 0;
240
241 retval = vendor_command(cytherm->udev, WRITE_PORT, 0,
242 tmp, buffer, 8);
243 if (retval)
244 dev_dbg(&cytherm->udev->dev, "retval = %d\n", retval);
245
246 kfree(buffer);
247
248 return count;
249}
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +0100250static DEVICE_ATTR_RW(port0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +0100252static ssize_t port1_show(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253{
254 struct usb_interface *intf = to_usb_interface(dev);
255 struct usb_cytherm *cytherm = usb_get_intfdata(intf);
256
257 int retval;
258 unsigned char *buffer;
259
260 buffer = kmalloc(8, GFP_KERNEL);
Wolfram Sang29a99df2016-08-25 19:39:14 +0200261 if (!buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 retval = vendor_command(cytherm->udev, READ_PORT, 1, 0, buffer, 8);
265 if (retval)
266 dev_dbg(&cytherm->udev->dev, "retval = %d\n", retval);
267
268 retval = buffer[1];
269
270 kfree(buffer);
271
272 return sprintf(buf, "%d", retval);
273}
274
275
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +0100276static ssize_t port1_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277{
278 struct usb_interface *intf = to_usb_interface(dev);
279 struct usb_cytherm *cytherm = usb_get_intfdata(intf);
280
281 unsigned char *buffer;
282 int retval;
283 int tmp;
284
285 buffer = kmalloc(8, GFP_KERNEL);
Wolfram Sang29a99df2016-08-25 19:39:14 +0200286 if (!buffer)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
289 tmp = simple_strtoul(buf, NULL, 10);
290
291 if (tmp > 0xFF)
292 tmp = 0xFF;
293 else if (tmp < 0)
294 tmp = 0;
295
296 retval = vendor_command(cytherm->udev, WRITE_PORT, 1,
297 tmp, buffer, 8);
298 if (retval)
299 dev_dbg(&cytherm->udev->dev, "retval = %d\n", retval);
300
301 kfree(buffer);
302
303 return count;
304}
Greg Kroah-Hartmana86856d2018-01-23 11:24:10 +0100305static DEVICE_ATTR_RW(port1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
307
308static int cytherm_probe(struct usb_interface *interface,
309 const struct usb_device_id *id)
310{
311 struct usb_device *udev = interface_to_usbdev(interface);
312 struct usb_cytherm *dev = NULL;
313 int retval = -ENOMEM;
314
Oliver Neukum5f748132006-01-06 22:24:56 +0100315 dev = kzalloc (sizeof(struct usb_cytherm), GFP_KERNEL);
Wolfram Sang29a99df2016-08-25 19:39:14 +0200316 if (!dev)
Greg Kroah-Hartman4d42e1b2006-08-28 11:43:25 -0700317 goto error_mem;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318
319 dev->udev = usb_get_dev(udev);
320
321 usb_set_intfdata (interface, dev);
322
323 dev->brightness = 0xFF;
324
Greg Kroah-Hartman4d42e1b2006-08-28 11:43:25 -0700325 retval = device_create_file(&interface->dev, &dev_attr_brightness);
326 if (retval)
327 goto error;
328 retval = device_create_file(&interface->dev, &dev_attr_temp);
329 if (retval)
330 goto error;
331 retval = device_create_file(&interface->dev, &dev_attr_button);
332 if (retval)
333 goto error;
334 retval = device_create_file(&interface->dev, &dev_attr_port0);
335 if (retval)
336 goto error;
337 retval = device_create_file(&interface->dev, &dev_attr_port1);
338 if (retval)
339 goto error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Greg Kroah-Hartman4d42e1b2006-08-28 11:43:25 -0700341 dev_info (&interface->dev,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 "Cypress thermometer device now attached\n");
343 return 0;
Greg Kroah-Hartman4d42e1b2006-08-28 11:43:25 -0700344error:
345 device_remove_file(&interface->dev, &dev_attr_brightness);
346 device_remove_file(&interface->dev, &dev_attr_temp);
347 device_remove_file(&interface->dev, &dev_attr_button);
348 device_remove_file(&interface->dev, &dev_attr_port0);
349 device_remove_file(&interface->dev, &dev_attr_port1);
350 usb_set_intfdata (interface, NULL);
351 usb_put_dev(dev->udev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 kfree(dev);
Greg Kroah-Hartman4d42e1b2006-08-28 11:43:25 -0700353error_mem:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 return retval;
355}
356
357static void cytherm_disconnect(struct usb_interface *interface)
358{
359 struct usb_cytherm *dev;
360
361 dev = usb_get_intfdata (interface);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
363 device_remove_file(&interface->dev, &dev_attr_brightness);
364 device_remove_file(&interface->dev, &dev_attr_temp);
365 device_remove_file(&interface->dev, &dev_attr_button);
366 device_remove_file(&interface->dev, &dev_attr_port0);
367 device_remove_file(&interface->dev, &dev_attr_port1);
368
Oliver Neukumd718d2b2007-10-23 12:26:41 +0200369 /* first remove the files, then NULL the pointer */
370 usb_set_intfdata (interface, NULL);
371
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 usb_put_dev(dev->udev);
373
374 kfree(dev);
375
376 dev_info(&interface->dev, "Cypress thermometer now disconnected\n");
377}
378
Greg Kroah-Hartman65db4302011-11-18 09:34:02 -0800379module_usb_driver(cytherm_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381MODULE_AUTHOR(DRIVER_AUTHOR);
382MODULE_DESCRIPTION(DRIVER_DESC);
383MODULE_LICENSE("GPL");