Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
ds2482.c
Go to the documentation of this file.
1 
16 #include <linux/module.h>
17 #include <linux/init.h>
18 #include <linux/slab.h>
19 #include <linux/i2c.h>
20 #include <linux/delay.h>
21 #include <asm/delay.h>
22 
23 #include "../w1.h"
24 #include "../w1_int.h"
25 
32 #define DS2482_CMD_RESET 0xF0 /* No param */
33 #define DS2482_CMD_SET_READ_PTR 0xE1 /* Param: DS2482_PTR_CODE_xxx */
34 #define DS2482_CMD_CHANNEL_SELECT 0xC3 /* Param: Channel byte - DS2482-800 only */
35 #define DS2482_CMD_WRITE_CONFIG 0xD2 /* Param: Config byte */
36 #define DS2482_CMD_1WIRE_RESET 0xB4 /* Param: None */
37 #define DS2482_CMD_1WIRE_SINGLE_BIT 0x87 /* Param: Bit byte (bit7) */
38 #define DS2482_CMD_1WIRE_WRITE_BYTE 0xA5 /* Param: Data byte */
39 #define DS2482_CMD_1WIRE_READ_BYTE 0x96 /* Param: None */
40 /* Note to read the byte, Set the ReadPtr to Data then read (any addr) */
41 #define DS2482_CMD_1WIRE_TRIPLET 0x78 /* Param: Dir byte (bit7) */
42 
43 /* Values for DS2482_CMD_SET_READ_PTR */
44 #define DS2482_PTR_CODE_STATUS 0xF0
45 #define DS2482_PTR_CODE_DATA 0xE1
46 #define DS2482_PTR_CODE_CHANNEL 0xD2 /* DS2482-800 only */
47 #define DS2482_PTR_CODE_CONFIG 0xC3
48 
54 #define DS2482_REG_CFG_1WS 0x08
55 #define DS2482_REG_CFG_SPU 0x04
56 #define DS2482_REG_CFG_PPM 0x02
57 #define DS2482_REG_CFG_APU 0x01
58 
59 
65 static const u8 ds2482_chan_wr[8] =
66  { 0xF0, 0xE1, 0xD2, 0xC3, 0xB4, 0xA5, 0x96, 0x87 };
67 static const u8 ds2482_chan_rd[8] =
68  { 0xB8, 0xB1, 0xAA, 0xA3, 0x9C, 0x95, 0x8E, 0x87 };
69 
70 
74 #define DS2482_REG_STS_DIR 0x80
75 #define DS2482_REG_STS_TSB 0x40
76 #define DS2482_REG_STS_SBR 0x20
77 #define DS2482_REG_STS_RST 0x10
78 #define DS2482_REG_STS_LL 0x08
79 #define DS2482_REG_STS_SD 0x04
80 #define DS2482_REG_STS_PPD 0x02
81 #define DS2482_REG_STS_1WB 0x01
82 
83 
84 static int ds2482_probe(struct i2c_client *client,
85  const struct i2c_device_id *id);
86 static int ds2482_remove(struct i2c_client *client);
87 
88 
92 static const struct i2c_device_id ds2482_id[] = {
93  { "ds2482", 0 },
94  { }
95 };
96 
97 static struct i2c_driver ds2482_driver = {
98  .driver = {
99  .owner = THIS_MODULE,
100  .name = "ds2482",
101  },
102  .probe = ds2482_probe,
103  .remove = ds2482_remove,
104  .id_table = ds2482_id,
105 };
106 
107 /*
108  * Client data (each client gets its own)
109  */
110 
111 struct ds2482_data;
112 
114  struct ds2482_data *pdev;
116  struct w1_bus_master w1_bm;
117 };
118 
119 struct ds2482_data {
122 
123  /* 1-wire interface(s) */
124  int w1_count; /* 1 or 8 */
126 
127  /* per-device values */
129  u8 read_prt; /* see DS2482_PTR_CODE_xxx */
131 };
132 
133 
140 static inline int ds2482_select_register(struct ds2482_data *pdev, u8 read_ptr)
141 {
142  if (pdev->read_prt != read_ptr) {
145  read_ptr) < 0)
146  return -1;
147 
148  pdev->read_prt = read_ptr;
149  }
150  return 0;
151 }
152 
161 static inline int ds2482_send_cmd(struct ds2482_data *pdev, u8 cmd)
162 {
163  if (i2c_smbus_write_byte(pdev->client, cmd) < 0)
164  return -1;
165 
167  return 0;
168 }
169 
180 static inline int ds2482_send_cmd_data(struct ds2482_data *pdev,
181  u8 cmd, u8 byte)
182 {
183  if (i2c_smbus_write_byte_data(pdev->client, cmd, byte) < 0)
184  return -1;
185 
186  /* all cmds leave in STATUS, except CONFIG */
187  pdev->read_prt = (cmd != DS2482_CMD_WRITE_CONFIG) ?
189  return 0;
190 }
191 
192 
193 /*
194  * 1-Wire interface code
195  */
196 
197 #define DS2482_WAIT_IDLE_TIMEOUT 100
198 
205 static int ds2482_wait_1wire_idle(struct ds2482_data *pdev)
206 {
207  int temp = -1;
208  int retries = 0;
209 
210  if (!ds2482_select_register(pdev, DS2482_PTR_CODE_STATUS)) {
211  do {
212  temp = i2c_smbus_read_byte(pdev->client);
213  } while ((temp >= 0) && (temp & DS2482_REG_STS_1WB) &&
214  (++retries < DS2482_WAIT_IDLE_TIMEOUT));
215  }
216 
217  if (retries >= DS2482_WAIT_IDLE_TIMEOUT)
218  printk(KERN_ERR "%s: timeout on channel %d\n",
219  __func__, pdev->channel);
220 
221  return temp;
222 }
223 
232 static int ds2482_set_channel(struct ds2482_data *pdev, u8 channel)
233 {
235  ds2482_chan_wr[channel]) < 0)
236  return -1;
237 
239  pdev->channel = -1;
240  if (i2c_smbus_read_byte(pdev->client) == ds2482_chan_rd[channel]) {
241  pdev->channel = channel;
242  return 0;
243  }
244  return -1;
245 }
246 
247 
255 static u8 ds2482_w1_touch_bit(void *data, u8 bit)
256 {
257  struct ds2482_w1_chan *pchan = data;
258  struct ds2482_data *pdev = pchan->pdev;
259  int status = -1;
260 
261  mutex_lock(&pdev->access_lock);
262 
263  /* Select the channel */
264  ds2482_wait_1wire_idle(pdev);
265  if (pdev->w1_count > 1)
266  ds2482_set_channel(pdev, pchan->channel);
267 
268  /* Send the touch command, wait until 1WB == 0, return the status */
269  if (!ds2482_send_cmd_data(pdev, DS2482_CMD_1WIRE_SINGLE_BIT,
270  bit ? 0xFF : 0))
271  status = ds2482_wait_1wire_idle(pdev);
272 
273  mutex_unlock(&pdev->access_lock);
274 
275  return (status & DS2482_REG_STS_SBR) ? 1 : 0;
276 }
277 
287 static u8 ds2482_w1_triplet(void *data, u8 dbit)
288 {
289  struct ds2482_w1_chan *pchan = data;
290  struct ds2482_data *pdev = pchan->pdev;
291  int status = (3 << 5);
292 
293  mutex_lock(&pdev->access_lock);
294 
295  /* Select the channel */
296  ds2482_wait_1wire_idle(pdev);
297  if (pdev->w1_count > 1)
298  ds2482_set_channel(pdev, pchan->channel);
299 
300  /* Send the triplet command, wait until 1WB == 0, return the status */
301  if (!ds2482_send_cmd_data(pdev, DS2482_CMD_1WIRE_TRIPLET,
302  dbit ? 0xFF : 0))
303  status = ds2482_wait_1wire_idle(pdev);
304 
305  mutex_unlock(&pdev->access_lock);
306 
307  /* Decode the status */
308  return (status >> 5);
309 }
310 
317 static void ds2482_w1_write_byte(void *data, u8 byte)
318 {
319  struct ds2482_w1_chan *pchan = data;
320  struct ds2482_data *pdev = pchan->pdev;
321 
322  mutex_lock(&pdev->access_lock);
323 
324  /* Select the channel */
325  ds2482_wait_1wire_idle(pdev);
326  if (pdev->w1_count > 1)
327  ds2482_set_channel(pdev, pchan->channel);
328 
329  /* Send the write byte command */
330  ds2482_send_cmd_data(pdev, DS2482_CMD_1WIRE_WRITE_BYTE, byte);
331 
332  mutex_unlock(&pdev->access_lock);
333 }
334 
341 static u8 ds2482_w1_read_byte(void *data)
342 {
343  struct ds2482_w1_chan *pchan = data;
344  struct ds2482_data *pdev = pchan->pdev;
345  int result;
346 
347  mutex_lock(&pdev->access_lock);
348 
349  /* Select the channel */
350  ds2482_wait_1wire_idle(pdev);
351  if (pdev->w1_count > 1)
352  ds2482_set_channel(pdev, pchan->channel);
353 
354  /* Send the read byte command */
355  ds2482_send_cmd(pdev, DS2482_CMD_1WIRE_READ_BYTE);
356 
357  /* Wait until 1WB == 0 */
358  ds2482_wait_1wire_idle(pdev);
359 
360  /* Select the data register */
361  ds2482_select_register(pdev, DS2482_PTR_CODE_DATA);
362 
363  /* Read the data byte */
364  result = i2c_smbus_read_byte(pdev->client);
365 
366  mutex_unlock(&pdev->access_lock);
367 
368  return result;
369 }
370 
371 
378 static u8 ds2482_w1_reset_bus(void *data)
379 {
380  struct ds2482_w1_chan *pchan = data;
381  struct ds2482_data *pdev = pchan->pdev;
382  int err;
383  u8 retval = 1;
384 
385  mutex_lock(&pdev->access_lock);
386 
387  /* Select the channel */
388  ds2482_wait_1wire_idle(pdev);
389  if (pdev->w1_count > 1)
390  ds2482_set_channel(pdev, pchan->channel);
391 
392  /* Send the reset command */
393  err = ds2482_send_cmd(pdev, DS2482_CMD_1WIRE_RESET);
394  if (err >= 0) {
395  /* Wait until the reset is complete */
396  err = ds2482_wait_1wire_idle(pdev);
397  retval = !(err & DS2482_REG_STS_PPD);
398 
399  /* If the chip did reset since detect, re-config it */
400  if (err & DS2482_REG_STS_RST)
401  ds2482_send_cmd_data(pdev, DS2482_CMD_WRITE_CONFIG,
402  0xF0);
403  }
404 
405  mutex_unlock(&pdev->access_lock);
406 
407  return retval;
408 }
409 
410 
411 static int ds2482_probe(struct i2c_client *client,
412  const struct i2c_device_id *id)
413 {
414  struct ds2482_data *data;
415  int err = -ENODEV;
416  int temp1;
417  int idx;
418 
419  if (!i2c_check_functionality(client->adapter,
422  return -ENODEV;
423 
424  if (!(data = kzalloc(sizeof(struct ds2482_data), GFP_KERNEL))) {
425  err = -ENOMEM;
426  goto exit;
427  }
428 
429  data->client = client;
430  i2c_set_clientdata(client, data);
431 
432  /* Reset the device (sets the read_ptr to status) */
433  if (ds2482_send_cmd(data, DS2482_CMD_RESET) < 0) {
434  dev_warn(&client->dev, "DS2482 reset failed.\n");
435  goto exit_free;
436  }
437 
438  /* Sleep at least 525ns to allow the reset to complete */
439  ndelay(525);
440 
441  /* Read the status byte - only reset bit and line should be set */
442  temp1 = i2c_smbus_read_byte(client);
443  if (temp1 != (DS2482_REG_STS_LL | DS2482_REG_STS_RST)) {
444  dev_warn(&client->dev, "DS2482 reset status "
445  "0x%02X - not a DS2482\n", temp1);
446  goto exit_free;
447  }
448 
449  /* Detect the 8-port version */
450  data->w1_count = 1;
451  if (ds2482_set_channel(data, 7) == 0)
452  data->w1_count = 8;
453 
454  /* Set all config items to 0 (off) */
455  ds2482_send_cmd_data(data, DS2482_CMD_WRITE_CONFIG, 0xF0);
456 
457  mutex_init(&data->access_lock);
458 
459  /* Register 1-wire interface(s) */
460  for (idx = 0; idx < data->w1_count; idx++) {
461  data->w1_ch[idx].pdev = data;
462  data->w1_ch[idx].channel = idx;
463 
464  /* Populate all the w1 bus master stuff */
465  data->w1_ch[idx].w1_bm.data = &data->w1_ch[idx];
466  data->w1_ch[idx].w1_bm.read_byte = ds2482_w1_read_byte;
467  data->w1_ch[idx].w1_bm.write_byte = ds2482_w1_write_byte;
468  data->w1_ch[idx].w1_bm.touch_bit = ds2482_w1_touch_bit;
469  data->w1_ch[idx].w1_bm.triplet = ds2482_w1_triplet;
470  data->w1_ch[idx].w1_bm.reset_bus = ds2482_w1_reset_bus;
471 
472  err = w1_add_master_device(&data->w1_ch[idx].w1_bm);
473  if (err) {
474  data->w1_ch[idx].pdev = NULL;
475  goto exit_w1_remove;
476  }
477  }
478 
479  return 0;
480 
481 exit_w1_remove:
482  for (idx = 0; idx < data->w1_count; idx++) {
483  if (data->w1_ch[idx].pdev != NULL)
484  w1_remove_master_device(&data->w1_ch[idx].w1_bm);
485  }
486 exit_free:
487  kfree(data);
488 exit:
489  return err;
490 }
491 
492 static int ds2482_remove(struct i2c_client *client)
493 {
494  struct ds2482_data *data = i2c_get_clientdata(client);
495  int idx;
496 
497  /* Unregister the 1-wire bridge(s) */
498  for (idx = 0; idx < data->w1_count; idx++) {
499  if (data->w1_ch[idx].pdev != NULL)
500  w1_remove_master_device(&data->w1_ch[idx].w1_bm);
501  }
502 
503  /* Free the memory */
504  kfree(data);
505  return 0;
506 }
507 
508 static int __init sensors_ds2482_init(void)
509 {
510  return i2c_add_driver(&ds2482_driver);
511 }
512 
513 static void __exit sensors_ds2482_exit(void)
514 {
515  i2c_del_driver(&ds2482_driver);
516 }
517 
518 MODULE_AUTHOR("Ben Gardner <[email protected]>");
519 MODULE_DESCRIPTION("DS2482 driver");
520 MODULE_LICENSE("GPL");
521 
522 module_init(sensors_ds2482_init);
523 module_exit(sensors_ds2482_exit);