2 * Driver for the Diolan u2c-12 USB-I2C adapter
4 * Copyright (c) 2010-2011 Ericsson AB
8 * Copyright (C) 2006-2007 Till Harbaum (Till@Harbaum.org)
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation, version 2.
15 #include <linux/kernel.h>
16 #include <linux/errno.h>
17 #include <linux/module.h>
18 #include <linux/types.h>
19 #include <linux/slab.h>
20 #include <linux/usb.h>
21 #include <linux/i2c.h>
23 #define DRIVER_NAME "i2c-diolan-u2c"
25 #define USB_VENDOR_ID_DIOLAN 0x0abf
26 #define USB_DEVICE_ID_DIOLAN_U2C 0x3370
29 /* commands via USB, must match command ids in the firmware */
30 #define CMD_I2C_READ 0x01
31 #define CMD_I2C_WRITE 0x02
32 #define CMD_I2C_SCAN 0x03 /* Returns list of detected devices */
33 #define CMD_I2C_RELEASE_SDA 0x04
34 #define CMD_I2C_RELEASE_SCL 0x05
35 #define CMD_I2C_DROP_SDA 0x06
36 #define CMD_I2C_DROP_SCL 0x07
37 #define CMD_I2C_READ_SDA 0x08
38 #define CMD_I2C_READ_SCL 0x09
39 #define CMD_GET_FW_VERSION 0x0a
40 #define CMD_GET_SERIAL 0x0b
41 #define CMD_I2C_START 0x0c
42 #define CMD_I2C_STOP 0x0d
43 #define CMD_I2C_REPEATED_START 0x0e
44 #define CMD_I2C_PUT_BYTE 0x0f
45 #define CMD_I2C_GET_BYTE 0x10
46 #define CMD_I2C_PUT_ACK 0x11
47 #define CMD_I2C_GET_ACK 0x12
48 #define CMD_I2C_PUT_BYTE_ACK 0x13
49 #define CMD_I2C_GET_BYTE_ACK 0x14
50 #define CMD_I2C_SET_SPEED 0x1b
51 #define CMD_I2C_GET_SPEED 0x1c
52 #define CMD_I2C_SET_CLK_SYNC 0x24
53 #define CMD_I2C_GET_CLK_SYNC 0x25
54 #define CMD_I2C_SET_CLK_SYNC_TO 0x26
55 #define CMD_I2C_GET_CLK_SYNC_TO 0x27
58 #define RESP_FAILED 0x01
59 #define RESP_BAD_MEMADDR 0x04
60 #define RESP_DATA_ERR 0x05
61 #define RESP_NOT_IMPLEMENTED 0x06
62 #define RESP_NACK 0x07
63 #define RESP_TIMEOUT 0x09
65 #define U2C_I2C_SPEED_FAST 0 /* 400 kHz */
66 #define U2C_I2C_SPEED_STD 1 /* 100 kHz */
67 #define U2C_I2C_SPEED_2KHZ 242 /* 2 kHz, minimum speed */
68 #define U2C_I2C_SPEED(f) ((DIV_ROUND_UP(1000000, (f)) - 10) / 2 + 1)
70 #define U2C_I2C_FREQ_FAST 400000
71 #define U2C_I2C_FREQ_STD 100000
72 #define U2C_I2C_FREQ(s) (1000000 / (2 * (s - 1) + 10))
74 #define DIOLAN_USB_TIMEOUT 100 /* in ms */
75 #define DIOLAN_SYNC_TIMEOUT 20 /* in ms */
77 #define DIOLAN_OUTBUF_LEN 128
78 #define DIOLAN_FLUSH_LEN (DIOLAN_OUTBUF_LEN - 4)
79 #define DIOLAN_INBUF_LEN 256 /* Maximum supported receive length */
81 /* Structure to hold all of our device specific stuff */
82 struct i2c_diolan_u2c
{
83 u8 obuffer
[DIOLAN_OUTBUF_LEN
]; /* output buffer */
84 u8 ibuffer
[DIOLAN_INBUF_LEN
]; /* input buffer */
85 int ep_in
, ep_out
; /* Endpoints */
86 struct usb_device
*usb_dev
; /* the usb device for this device */
87 struct usb_interface
*interface
;/* the interface for this device */
88 struct i2c_adapter adapter
; /* i2c related things */
89 int olen
; /* Output buffer length */
90 int ocount
; /* Number of enqueued messages */
93 static uint frequency
= U2C_I2C_FREQ_STD
; /* I2C clock frequency in Hz */
95 module_param(frequency
, uint
, S_IRUGO
| S_IWUSR
);
96 MODULE_PARM_DESC(frequency
, "I2C clock frequency in hertz");
100 /* Send command to device, and get response. */
101 static int diolan_usb_transfer(struct i2c_diolan_u2c
*dev
)
107 if (!dev
->olen
|| !dev
->ocount
)
110 ret
= usb_bulk_msg(dev
->usb_dev
,
111 usb_sndbulkpipe(dev
->usb_dev
, dev
->ep_out
),
112 dev
->obuffer
, dev
->olen
, &actual
,
115 for (i
= 0; i
< dev
->ocount
; i
++) {
118 tmpret
= usb_bulk_msg(dev
->usb_dev
,
119 usb_rcvbulkpipe(dev
->usb_dev
,
122 sizeof(dev
->ibuffer
), &actual
,
125 * Stop command processing if a previous command
127 * Note that we still need to retrieve all messages.
132 if (ret
== 0 && actual
> 0) {
133 switch (dev
->ibuffer
[actual
- 1]) {
136 * Return ENXIO if NACK was received as
137 * response to the address phase,
140 ret
= i
== 1 ? -ENXIO
: -EIO
;
146 /* strip off return code */
161 static int diolan_write_cmd(struct i2c_diolan_u2c
*dev
, bool flush
)
163 if (flush
|| dev
->olen
>= DIOLAN_FLUSH_LEN
)
164 return diolan_usb_transfer(dev
);
168 /* Send command (no data) */
169 static int diolan_usb_cmd(struct i2c_diolan_u2c
*dev
, u8 command
, bool flush
)
171 dev
->obuffer
[dev
->olen
++] = command
;
173 return diolan_write_cmd(dev
, flush
);
176 /* Send command with one byte of data */
177 static int diolan_usb_cmd_data(struct i2c_diolan_u2c
*dev
, u8 command
, u8 data
,
180 dev
->obuffer
[dev
->olen
++] = command
;
181 dev
->obuffer
[dev
->olen
++] = data
;
183 return diolan_write_cmd(dev
, flush
);
186 /* Send command with two bytes of data */
187 static int diolan_usb_cmd_data2(struct i2c_diolan_u2c
*dev
, u8 command
, u8 d1
,
190 dev
->obuffer
[dev
->olen
++] = command
;
191 dev
->obuffer
[dev
->olen
++] = d1
;
192 dev
->obuffer
[dev
->olen
++] = d2
;
194 return diolan_write_cmd(dev
, flush
);
199 * If we don't do this at startup and the controller has queued up
200 * messages which were not retrieved, it will stop responding
203 static void diolan_flush_input(struct i2c_diolan_u2c
*dev
)
207 for (i
= 0; i
< 10; i
++) {
211 ret
= usb_bulk_msg(dev
->usb_dev
,
212 usb_rcvbulkpipe(dev
->usb_dev
, dev
->ep_in
),
213 dev
->ibuffer
, sizeof(dev
->ibuffer
), &actual
,
215 if (ret
< 0 || actual
== 0)
219 dev_err(&dev
->interface
->dev
, "Failed to flush input buffer\n");
222 static int diolan_i2c_start(struct i2c_diolan_u2c
*dev
)
224 return diolan_usb_cmd(dev
, CMD_I2C_START
, false);
227 static int diolan_i2c_repeated_start(struct i2c_diolan_u2c
*dev
)
229 return diolan_usb_cmd(dev
, CMD_I2C_REPEATED_START
, false);
232 static int diolan_i2c_stop(struct i2c_diolan_u2c
*dev
)
234 return diolan_usb_cmd(dev
, CMD_I2C_STOP
, true);
237 static int diolan_i2c_get_byte_ack(struct i2c_diolan_u2c
*dev
, bool ack
,
242 ret
= diolan_usb_cmd_data(dev
, CMD_I2C_GET_BYTE_ACK
, ack
, true);
244 *byte
= dev
->ibuffer
[0];
251 static int diolan_i2c_put_byte_ack(struct i2c_diolan_u2c
*dev
, u8 byte
)
253 return diolan_usb_cmd_data(dev
, CMD_I2C_PUT_BYTE_ACK
, byte
, false);
256 static int diolan_set_speed(struct i2c_diolan_u2c
*dev
, u8 speed
)
258 return diolan_usb_cmd_data(dev
, CMD_I2C_SET_SPEED
, speed
, true);
261 /* Enable or disable clock synchronization (stretching) */
262 static int diolan_set_clock_synch(struct i2c_diolan_u2c
*dev
, bool enable
)
264 return diolan_usb_cmd_data(dev
, CMD_I2C_SET_CLK_SYNC
, enable
, true);
267 /* Set clock synchronization timeout in ms */
268 static int diolan_set_clock_synch_timeout(struct i2c_diolan_u2c
*dev
, int ms
)
270 int to_val
= ms
* 10;
272 return diolan_usb_cmd_data2(dev
, CMD_I2C_SET_CLK_SYNC_TO
,
273 to_val
& 0xff, (to_val
>> 8) & 0xff, true);
276 static void diolan_fw_version(struct i2c_diolan_u2c
*dev
)
280 ret
= diolan_usb_cmd(dev
, CMD_GET_FW_VERSION
, true);
282 dev_info(&dev
->interface
->dev
,
283 "Diolan U2C firmware version %u.%u\n",
284 (unsigned int)dev
->ibuffer
[0],
285 (unsigned int)dev
->ibuffer
[1]);
288 static void diolan_get_serial(struct i2c_diolan_u2c
*dev
)
293 ret
= diolan_usb_cmd(dev
, CMD_GET_SERIAL
, true);
295 serial
= le32_to_cpu(*(u32
*)dev
->ibuffer
);
296 dev_info(&dev
->interface
->dev
,
297 "Diolan U2C serial number %u\n", serial
);
301 static int diolan_init(struct i2c_diolan_u2c
*dev
)
305 if (frequency
>= 200000) {
306 speed
= U2C_I2C_SPEED_FAST
;
307 frequency
= U2C_I2C_FREQ_FAST
;
308 } else if (frequency
>= 100000 || frequency
== 0) {
309 speed
= U2C_I2C_SPEED_STD
;
310 frequency
= U2C_I2C_FREQ_STD
;
312 speed
= U2C_I2C_SPEED(frequency
);
313 if (speed
> U2C_I2C_SPEED_2KHZ
)
314 speed
= U2C_I2C_SPEED_2KHZ
;
315 frequency
= U2C_I2C_FREQ(speed
);
318 dev_info(&dev
->interface
->dev
,
319 "Diolan U2C at USB bus %03d address %03d speed %d Hz\n",
320 dev
->usb_dev
->bus
->busnum
, dev
->usb_dev
->devnum
, frequency
);
322 diolan_flush_input(dev
);
323 diolan_fw_version(dev
);
324 diolan_get_serial(dev
);
327 ret
= diolan_set_speed(dev
, speed
);
331 /* Configure I2C clock synchronization */
332 ret
= diolan_set_clock_synch(dev
, speed
!= U2C_I2C_SPEED_FAST
);
336 if (speed
!= U2C_I2C_SPEED_FAST
)
337 ret
= diolan_set_clock_synch_timeout(dev
, DIOLAN_SYNC_TIMEOUT
);
344 static int diolan_usb_xfer(struct i2c_adapter
*adapter
, struct i2c_msg
*msgs
,
347 struct i2c_diolan_u2c
*dev
= i2c_get_adapdata(adapter
);
348 struct i2c_msg
*pmsg
;
352 ret
= diolan_i2c_start(dev
);
356 for (i
= 0; i
< num
; i
++) {
359 ret
= diolan_i2c_repeated_start(dev
);
363 ret
= diolan_i2c_put_byte_ack(dev
,
364 i2c_8bit_addr_from_msg(pmsg
));
367 if (pmsg
->flags
& I2C_M_RD
) {
368 for (j
= 0; j
< pmsg
->len
; j
++) {
370 bool ack
= j
< pmsg
->len
- 1;
373 * Don't send NACK if this is the first byte
374 * of a SMBUS_BLOCK message.
376 if (j
== 0 && (pmsg
->flags
& I2C_M_RECV_LEN
))
379 ret
= diolan_i2c_get_byte_ack(dev
, ack
, &byte
);
383 * Adjust count if first received byte is length
385 if (j
== 0 && (pmsg
->flags
& I2C_M_RECV_LEN
)) {
387 || byte
> I2C_SMBUS_BLOCK_MAX
) {
396 for (j
= 0; j
< pmsg
->len
; j
++) {
397 ret
= diolan_i2c_put_byte_ack(dev
,
406 sret
= diolan_i2c_stop(dev
);
407 if (sret
< 0 && ret
>= 0)
413 * Return list of supported functionality.
415 static u32
diolan_usb_func(struct i2c_adapter
*a
)
417 return I2C_FUNC_I2C
| I2C_FUNC_SMBUS_EMUL
|
418 I2C_FUNC_SMBUS_READ_BLOCK_DATA
| I2C_FUNC_SMBUS_BLOCK_PROC_CALL
;
421 static const struct i2c_algorithm diolan_usb_algorithm
= {
422 .master_xfer
= diolan_usb_xfer
,
423 .functionality
= diolan_usb_func
,
428 static const struct usb_device_id diolan_u2c_table
[] = {
429 { USB_DEVICE(USB_VENDOR_ID_DIOLAN
, USB_DEVICE_ID_DIOLAN_U2C
) },
433 MODULE_DEVICE_TABLE(usb
, diolan_u2c_table
);
435 static void diolan_u2c_free(struct i2c_diolan_u2c
*dev
)
437 usb_put_dev(dev
->usb_dev
);
441 static int diolan_u2c_probe(struct usb_interface
*interface
,
442 const struct usb_device_id
*id
)
444 struct usb_host_interface
*hostif
= interface
->cur_altsetting
;
445 struct i2c_diolan_u2c
*dev
;
448 if (hostif
->desc
.bInterfaceNumber
!= 0
449 || hostif
->desc
.bNumEndpoints
< 2)
452 /* allocate memory for our device state and initialize it */
453 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
458 dev
->ep_out
= hostif
->endpoint
[0].desc
.bEndpointAddress
;
459 dev
->ep_in
= hostif
->endpoint
[1].desc
.bEndpointAddress
;
461 dev
->usb_dev
= usb_get_dev(interface_to_usbdev(interface
));
462 dev
->interface
= interface
;
464 /* save our data pointer in this interface device */
465 usb_set_intfdata(interface
, dev
);
467 /* setup i2c adapter description */
468 dev
->adapter
.owner
= THIS_MODULE
;
469 dev
->adapter
.class = I2C_CLASS_HWMON
;
470 dev
->adapter
.algo
= &diolan_usb_algorithm
;
471 i2c_set_adapdata(&dev
->adapter
, dev
);
472 snprintf(dev
->adapter
.name
, sizeof(dev
->adapter
.name
),
473 DRIVER_NAME
" at bus %03d device %03d",
474 dev
->usb_dev
->bus
->busnum
, dev
->usb_dev
->devnum
);
476 dev
->adapter
.dev
.parent
= &dev
->interface
->dev
;
478 /* initialize diolan i2c interface */
479 ret
= diolan_init(dev
);
481 dev_err(&interface
->dev
, "failed to initialize adapter\n");
485 /* and finally attach to i2c layer */
486 ret
= i2c_add_adapter(&dev
->adapter
);
490 dev_dbg(&interface
->dev
, "connected " DRIVER_NAME
"\n");
495 usb_set_intfdata(interface
, NULL
);
496 diolan_u2c_free(dev
);
501 static void diolan_u2c_disconnect(struct usb_interface
*interface
)
503 struct i2c_diolan_u2c
*dev
= usb_get_intfdata(interface
);
505 i2c_del_adapter(&dev
->adapter
);
506 usb_set_intfdata(interface
, NULL
);
507 diolan_u2c_free(dev
);
509 dev_dbg(&interface
->dev
, "disconnected\n");
512 static struct usb_driver diolan_u2c_driver
= {
514 .probe
= diolan_u2c_probe
,
515 .disconnect
= diolan_u2c_disconnect
,
516 .id_table
= diolan_u2c_table
,
519 module_usb_driver(diolan_u2c_driver
);
521 MODULE_AUTHOR("Guenter Roeck <linux@roeck-us.net>");
522 MODULE_DESCRIPTION(DRIVER_NAME
" driver");
523 MODULE_LICENSE("GPL");