2 * 1-wire busmaster driver for DS1WM and ASICs with embedded DS1WMs
3 * such as HP iPAQs (including h5xxx, h2200, and devices with ASIC3
6 * Copyright (c) 2004-2005, Szabolcs Gyurko <szabolcs.gyurko@tlt.hu>
7 * Copyright (c) 2004-2007, Matt Reimer <mreimer@vpop.net>
9 * Use consistent with the GNU GPL is permitted,
10 * provided that this copyright notice is
11 * preserved in its entirety in all copies and derived works.
14 #include <linux/module.h>
15 #include <linux/interrupt.h>
16 #include <linux/irq.h>
18 #include <linux/platform_device.h>
19 #include <linux/clk.h>
20 #include <linux/delay.h>
21 #include <linux/ds1wm.h>
26 #include "../w1_int.h"
29 #define DS1WM_CMD 0x00 /* R/W 4 bits command */
30 #define DS1WM_DATA 0x01 /* R/W 8 bits, transmit/receive buffer */
31 #define DS1WM_INT 0x02 /* R/W interrupt status */
32 #define DS1WM_INT_EN 0x03 /* R/W interrupt enable */
33 #define DS1WM_CLKDIV 0x04 /* R/W 5 bits of divisor and pre-scale */
35 #define DS1WM_CMD_1W_RESET (1 << 0) /* force reset on 1-wire bus */
36 #define DS1WM_CMD_SRA (1 << 1) /* enable Search ROM accelerator mode */
37 #define DS1WM_CMD_DQ_OUTPUT (1 << 2) /* write only - forces bus low */
38 #define DS1WM_CMD_DQ_INPUT (1 << 3) /* read only - reflects state of bus */
39 #define DS1WM_CMD_RST (1 << 5) /* software reset */
40 #define DS1WM_CMD_OD (1 << 7) /* overdrive */
42 #define DS1WM_INT_PD (1 << 0) /* presence detect */
43 #define DS1WM_INT_PDR (1 << 1) /* presence detect result */
44 #define DS1WM_INT_TBE (1 << 2) /* tx buffer empty */
45 #define DS1WM_INT_TSRE (1 << 3) /* tx shift register empty */
46 #define DS1WM_INT_RBF (1 << 4) /* rx buffer full */
47 #define DS1WM_INT_RSRF (1 << 5) /* rx shift register full */
49 #define DS1WM_INTEN_EPD (1 << 0) /* enable presence detect int */
50 #define DS1WM_INTEN_IAS (1 << 1) /* INTR active state */
51 #define DS1WM_INTEN_ETBE (1 << 2) /* enable tx buffer empty int */
52 #define DS1WM_INTEN_ETMT (1 << 3) /* enable tx shift register empty int */
53 #define DS1WM_INTEN_ERBF (1 << 4) /* enable rx buffer full int */
54 #define DS1WM_INTEN_ERSRF (1 << 5) /* enable rx shift register full int */
55 #define DS1WM_INTEN_DQO (1 << 6) /* enable direct bus driving ops */
58 #define DS1WM_TIMEOUT (HZ * 5)
62 unsigned long divisor;
89 int bus_shift; /* # of shifts to calc register offsets */
90 struct platform_device *pdev;
91 struct ds1wm_platform_data *pdata;
99 u8 read_byte; /* last byte received */
102 static inline void ds1wm_write_register(struct ds1wm_data *ds1wm_data, u32 reg,
105 __raw_writeb(val, ds1wm_data->map + (reg << ds1wm_data->bus_shift));
108 static inline u8 ds1wm_read_register(struct ds1wm_data *ds1wm_data, u32 reg)
110 return __raw_readb(ds1wm_data->map + (reg << ds1wm_data->bus_shift));
114 static irqreturn_t ds1wm_isr(int isr, void *data)
116 struct ds1wm_data *ds1wm_data = data;
117 u8 intr = ds1wm_read_register(ds1wm_data, DS1WM_INT);
119 ds1wm_data->slave_present = (intr & DS1WM_INT_PDR) ? 0 : 1;
121 if ((intr & DS1WM_INT_PD) && ds1wm_data->reset_complete)
122 complete(ds1wm_data->reset_complete);
124 if ((intr & DS1WM_INT_TSRE) && ds1wm_data->write_complete)
125 complete(ds1wm_data->write_complete);
127 if (intr & DS1WM_INT_RBF) {
128 ds1wm_data->read_byte = ds1wm_read_register(ds1wm_data,
130 if (ds1wm_data->read_complete)
131 complete(ds1wm_data->read_complete);
137 static int ds1wm_reset(struct ds1wm_data *ds1wm_data)
139 unsigned long timeleft;
140 DECLARE_COMPLETION_ONSTACK(reset_done);
142 ds1wm_data->reset_complete = &reset_done;
144 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN, DS1WM_INTEN_EPD |
145 (ds1wm_data->active_high ? DS1WM_INTEN_IAS : 0));
147 ds1wm_write_register(ds1wm_data, DS1WM_CMD, DS1WM_CMD_1W_RESET);
149 timeleft = wait_for_completion_timeout(&reset_done, DS1WM_TIMEOUT);
150 ds1wm_data->reset_complete = NULL;
152 dev_dbg(&ds1wm_data->pdev->dev, "reset failed\n");
156 /* Wait for the end of the reset. According to the specs, the time
157 * from when the interrupt is asserted to the end of the reset is:
158 * tRSTH - tPDH - tPDL - tPDI
159 * 625 us - 60 us - 240 us - 100 ns = 324.9 us
161 * We'll wait a bit longer just to be sure.
165 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN,
166 DS1WM_INTEN_ERBF | DS1WM_INTEN_ETMT | DS1WM_INTEN_EPD |
167 (ds1wm_data->active_high ? DS1WM_INTEN_IAS : 0));
169 if (!ds1wm_data->slave_present) {
170 dev_dbg(&ds1wm_data->pdev->dev, "reset: no devices found\n");
177 static int ds1wm_write(struct ds1wm_data *ds1wm_data, u8 data)
179 DECLARE_COMPLETION_ONSTACK(write_done);
180 ds1wm_data->write_complete = &write_done;
182 ds1wm_write_register(ds1wm_data, DS1WM_DATA, data);
184 wait_for_completion_timeout(&write_done, DS1WM_TIMEOUT);
185 ds1wm_data->write_complete = NULL;
190 static int ds1wm_read(struct ds1wm_data *ds1wm_data, unsigned char write_data)
192 DECLARE_COMPLETION_ONSTACK(read_done);
193 ds1wm_data->read_complete = &read_done;
195 ds1wm_write(ds1wm_data, write_data);
196 wait_for_completion_timeout(&read_done, DS1WM_TIMEOUT);
197 ds1wm_data->read_complete = NULL;
199 return ds1wm_data->read_byte;
202 static int ds1wm_find_divisor(int gclk)
206 for (i = 0; i < ARRAY_SIZE(freq); i++)
207 if (gclk <= freq[i].freq)
208 return freq[i].divisor;
213 static void ds1wm_up(struct ds1wm_data *ds1wm_data)
217 if (ds1wm_data->pdata->enable)
218 ds1wm_data->pdata->enable(ds1wm_data->pdev);
220 gclk = clk_get_rate(ds1wm_data->clk);
221 clk_enable(ds1wm_data->clk);
222 divisor = ds1wm_find_divisor(gclk);
224 dev_err(&ds1wm_data->pdev->dev,
225 "no suitable divisor for %dHz clock\n", gclk);
228 ds1wm_write_register(ds1wm_data, DS1WM_CLKDIV, divisor);
230 /* Let the w1 clock stabilize. */
233 ds1wm_reset(ds1wm_data);
236 static void ds1wm_down(struct ds1wm_data *ds1wm_data)
238 ds1wm_reset(ds1wm_data);
240 /* Disable interrupts. */
241 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN,
242 ds1wm_data->active_high ? DS1WM_INTEN_IAS : 0);
244 if (ds1wm_data->pdata->disable)
245 ds1wm_data->pdata->disable(ds1wm_data->pdev);
247 clk_disable(ds1wm_data->clk);
250 /* --------------------------------------------------------------------- */
253 static u8 ds1wm_read_byte(void *data)
255 struct ds1wm_data *ds1wm_data = data;
257 return ds1wm_read(ds1wm_data, 0xff);
260 static void ds1wm_write_byte(void *data, u8 byte)
262 struct ds1wm_data *ds1wm_data = data;
264 ds1wm_write(ds1wm_data, byte);
267 static u8 ds1wm_reset_bus(void *data)
269 struct ds1wm_data *ds1wm_data = data;
271 ds1wm_reset(ds1wm_data);
276 static void ds1wm_search(void *data, u8 search_type,
277 w1_slave_found_callback slave_found)
279 struct ds1wm_data *ds1wm_data = data;
281 unsigned long long rom_id;
283 /* XXX We need to iterate for multiple devices per the DS1WM docs.
284 * See http://www.maxim-ic.com/appnotes.cfm/appnote_number/120. */
285 if (ds1wm_reset(ds1wm_data))
288 ds1wm_write(ds1wm_data, search_type);
289 ds1wm_write_register(ds1wm_data, DS1WM_CMD, DS1WM_CMD_SRA);
291 for (rom_id = 0, i = 0; i < 16; i++) {
293 unsigned char resp, r, d;
295 resp = ds1wm_read(ds1wm_data, 0x00);
297 r = ((resp & 0x02) >> 1) |
298 ((resp & 0x08) >> 2) |
299 ((resp & 0x20) >> 3) |
300 ((resp & 0x80) >> 4);
302 d = ((resp & 0x01) >> 0) |
303 ((resp & 0x04) >> 1) |
304 ((resp & 0x10) >> 2) |
305 ((resp & 0x40) >> 3);
307 rom_id |= (unsigned long long) r << (i * 4);
310 dev_dbg(&ds1wm_data->pdev->dev, "found 0x%08llX", rom_id);
312 ds1wm_write_register(ds1wm_data, DS1WM_CMD, ~DS1WM_CMD_SRA);
313 ds1wm_reset(ds1wm_data);
315 slave_found(ds1wm_data, rom_id);
318 /* --------------------------------------------------------------------- */
320 static struct w1_bus_master ds1wm_master = {
321 .read_byte = ds1wm_read_byte,
322 .write_byte = ds1wm_write_byte,
323 .reset_bus = ds1wm_reset_bus,
324 .search = ds1wm_search,
327 static int ds1wm_probe(struct platform_device *pdev)
329 struct ds1wm_data *ds1wm_data;
330 struct ds1wm_platform_data *plat;
331 struct resource *res;
337 ds1wm_data = kzalloc(sizeof (*ds1wm_data), GFP_KERNEL);
341 platform_set_drvdata(pdev, ds1wm_data);
343 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
348 ds1wm_data->map = ioremap(res->start, res->end - res->start + 1);
349 if (!ds1wm_data->map) {
353 plat = pdev->dev.platform_data;
354 ds1wm_data->bus_shift = plat->bus_shift;
355 ds1wm_data->pdev = pdev;
356 ds1wm_data->pdata = plat;
358 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
363 ds1wm_data->irq = res->start;
364 ds1wm_data->active_high = (res->flags & IORESOURCE_IRQ_HIGHEDGE) ?
367 set_irq_type(ds1wm_data->irq, ds1wm_data->active_high ?
368 IRQ_TYPE_EDGE_RISING : IRQ_TYPE_EDGE_FALLING);
370 ret = request_irq(ds1wm_data->irq, ds1wm_isr, IRQF_DISABLED,
371 "ds1wm", ds1wm_data);
375 ds1wm_data->clk = clk_get(&pdev->dev, "ds1wm");
376 if (!ds1wm_data->clk) {
381 ds1wm_up(ds1wm_data);
383 ds1wm_master.data = (void *)ds1wm_data;
385 ret = w1_add_master_device(&ds1wm_master);
392 ds1wm_down(ds1wm_data);
393 clk_put(ds1wm_data->clk);
395 free_irq(ds1wm_data->irq, ds1wm_data);
397 iounmap(ds1wm_data->map);
405 static int ds1wm_suspend(struct platform_device *pdev, pm_message_t state)
407 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
409 ds1wm_down(ds1wm_data);
414 static int ds1wm_resume(struct platform_device *pdev)
416 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
418 ds1wm_up(ds1wm_data);
423 #define ds1wm_suspend NULL
424 #define ds1wm_resume NULL
427 static int ds1wm_remove(struct platform_device *pdev)
429 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
431 w1_remove_master_device(&ds1wm_master);
432 ds1wm_down(ds1wm_data);
433 clk_put(ds1wm_data->clk);
434 free_irq(ds1wm_data->irq, ds1wm_data);
435 iounmap(ds1wm_data->map);
441 static struct platform_driver ds1wm_driver = {
445 .probe = ds1wm_probe,
446 .remove = ds1wm_remove,
447 .suspend = ds1wm_suspend,
448 .resume = ds1wm_resume
451 static int __init ds1wm_init(void)
453 printk("DS1WM w1 busmaster driver - (c) 2004 Szabolcs Gyurko\n");
454 return platform_driver_register(&ds1wm_driver);
457 static void __exit ds1wm_exit(void)
459 platform_driver_unregister(&ds1wm_driver);
462 module_init(ds1wm_init);
463 module_exit(ds1wm_exit);
465 MODULE_LICENSE("GPL");
466 MODULE_AUTHOR("Szabolcs Gyurko <szabolcs.gyurko@tlt.hu>, "
467 "Matt Reimer <mreimer@vpop.net>");
468 MODULE_DESCRIPTION("DS1WM w1 busmaster driver");