include cleanup: Update gfp.h and slab.h includes to prepare for breaking implicit...
[linux-2.6-block.git] / drivers / w1 / masters / ds1wm.c
CommitLineData
f19b121e 1/*
2 * 1-wire busmaster driver for DS1WM and ASICs with embedded DS1WMs
3 * such as HP iPAQs (including h5xxx, h2200, and devices with ASIC3
4 * like hx4700).
5 *
6 * Copyright (c) 2004-2005, Szabolcs Gyurko <szabolcs.gyurko@tlt.hu>
7 * Copyright (c) 2004-2007, Matt Reimer <mreimer@vpop.net>
8 *
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.
12 */
13
14#include <linux/module.h>
15#include <linux/interrupt.h>
16#include <linux/irq.h>
17#include <linux/pm.h>
18#include <linux/platform_device.h>
fbc357df 19#include <linux/err.h>
f19b121e 20#include <linux/delay.h>
a23a1757
PZ
21#include <linux/mfd/core.h>
22#include <linux/mfd/ds1wm.h>
5a0e3ad6 23#include <linux/slab.h>
f19b121e 24
25#include <asm/io.h>
26
27#include "../w1.h"
28#include "../w1_int.h"
29
30
31#define DS1WM_CMD 0x00 /* R/W 4 bits command */
32#define DS1WM_DATA 0x01 /* R/W 8 bits, transmit/receive buffer */
33#define DS1WM_INT 0x02 /* R/W interrupt status */
34#define DS1WM_INT_EN 0x03 /* R/W interrupt enable */
35#define DS1WM_CLKDIV 0x04 /* R/W 5 bits of divisor and pre-scale */
36
37#define DS1WM_CMD_1W_RESET (1 << 0) /* force reset on 1-wire bus */
38#define DS1WM_CMD_SRA (1 << 1) /* enable Search ROM accelerator mode */
39#define DS1WM_CMD_DQ_OUTPUT (1 << 2) /* write only - forces bus low */
40#define DS1WM_CMD_DQ_INPUT (1 << 3) /* read only - reflects state of bus */
41#define DS1WM_CMD_RST (1 << 5) /* software reset */
42#define DS1WM_CMD_OD (1 << 7) /* overdrive */
43
44#define DS1WM_INT_PD (1 << 0) /* presence detect */
45#define DS1WM_INT_PDR (1 << 1) /* presence detect result */
46#define DS1WM_INT_TBE (1 << 2) /* tx buffer empty */
47#define DS1WM_INT_TSRE (1 << 3) /* tx shift register empty */
48#define DS1WM_INT_RBF (1 << 4) /* rx buffer full */
49#define DS1WM_INT_RSRF (1 << 5) /* rx shift register full */
50
51#define DS1WM_INTEN_EPD (1 << 0) /* enable presence detect int */
52#define DS1WM_INTEN_IAS (1 << 1) /* INTR active state */
53#define DS1WM_INTEN_ETBE (1 << 2) /* enable tx buffer empty int */
54#define DS1WM_INTEN_ETMT (1 << 3) /* enable tx shift register empty int */
55#define DS1WM_INTEN_ERBF (1 << 4) /* enable rx buffer full int */
56#define DS1WM_INTEN_ERSRF (1 << 5) /* enable rx shift register full int */
57#define DS1WM_INTEN_DQO (1 << 6) /* enable direct bus driving ops */
58
59
60#define DS1WM_TIMEOUT (HZ * 5)
61
62static struct {
63 unsigned long freq;
64 unsigned long divisor;
65} freq[] = {
66 { 4000000, 0x8 },
67 { 5000000, 0x2 },
68 { 6000000, 0x5 },
69 { 7000000, 0x3 },
70 { 8000000, 0xc },
71 { 10000000, 0x6 },
72 { 12000000, 0x9 },
73 { 14000000, 0x7 },
74 { 16000000, 0x10 },
75 { 20000000, 0xa },
76 { 24000000, 0xd },
77 { 28000000, 0xb },
78 { 32000000, 0x14 },
79 { 40000000, 0xe },
80 { 48000000, 0x11 },
81 { 56000000, 0xf },
82 { 64000000, 0x18 },
83 { 80000000, 0x12 },
84 { 96000000, 0x15 },
85 { 112000000, 0x13 },
86 { 128000000, 0x1c },
87};
88
89struct ds1wm_data {
0bd8496b 90 void __iomem *map;
f19b121e 91 int bus_shift; /* # of shifts to calc register offsets */
92 struct platform_device *pdev;
a23a1757 93 struct mfd_cell *cell;
f19b121e 94 int irq;
95 int active_high;
f19b121e 96 int slave_present;
97 void *reset_complete;
98 void *read_complete;
99 void *write_complete;
100 u8 read_byte; /* last byte received */
101};
102
103static inline void ds1wm_write_register(struct ds1wm_data *ds1wm_data, u32 reg,
104 u8 val)
105{
daa49ff5 106 __raw_writeb(val, ds1wm_data->map + (reg << ds1wm_data->bus_shift));
f19b121e 107}
108
109static inline u8 ds1wm_read_register(struct ds1wm_data *ds1wm_data, u32 reg)
110{
daa49ff5 111 return __raw_readb(ds1wm_data->map + (reg << ds1wm_data->bus_shift));
f19b121e 112}
113
114
115static irqreturn_t ds1wm_isr(int isr, void *data)
116{
117 struct ds1wm_data *ds1wm_data = data;
118 u8 intr = ds1wm_read_register(ds1wm_data, DS1WM_INT);
119
120 ds1wm_data->slave_present = (intr & DS1WM_INT_PDR) ? 0 : 1;
121
122 if ((intr & DS1WM_INT_PD) && ds1wm_data->reset_complete)
123 complete(ds1wm_data->reset_complete);
124
125 if ((intr & DS1WM_INT_TSRE) && ds1wm_data->write_complete)
126 complete(ds1wm_data->write_complete);
127
128 if (intr & DS1WM_INT_RBF) {
129 ds1wm_data->read_byte = ds1wm_read_register(ds1wm_data,
130 DS1WM_DATA);
131 if (ds1wm_data->read_complete)
132 complete(ds1wm_data->read_complete);
133 }
134
135 return IRQ_HANDLED;
136}
137
138static int ds1wm_reset(struct ds1wm_data *ds1wm_data)
139{
140 unsigned long timeleft;
141 DECLARE_COMPLETION_ONSTACK(reset_done);
142
143 ds1wm_data->reset_complete = &reset_done;
144
145 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN, DS1WM_INTEN_EPD |
146 (ds1wm_data->active_high ? DS1WM_INTEN_IAS : 0));
147
148 ds1wm_write_register(ds1wm_data, DS1WM_CMD, DS1WM_CMD_1W_RESET);
149
150 timeleft = wait_for_completion_timeout(&reset_done, DS1WM_TIMEOUT);
151 ds1wm_data->reset_complete = NULL;
152 if (!timeleft) {
daa49ff5
AV
153 dev_err(&ds1wm_data->pdev->dev, "reset failed\n");
154 return 1;
f19b121e 155 }
156
157 /* Wait for the end of the reset. According to the specs, the time
158 * from when the interrupt is asserted to the end of the reset is:
159 * tRSTH - tPDH - tPDL - tPDI
160 * 625 us - 60 us - 240 us - 100 ns = 324.9 us
161 *
162 * We'll wait a bit longer just to be sure.
cadd486c
DF
163 * Was udelay(500), but if it is going to busywait the cpu that long,
164 * might as well come back later.
f19b121e 165 */
cadd486c 166 msleep(1);
f19b121e 167
168 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN,
169 DS1WM_INTEN_ERBF | DS1WM_INTEN_ETMT | DS1WM_INTEN_EPD |
170 (ds1wm_data->active_high ? DS1WM_INTEN_IAS : 0));
171
172 if (!ds1wm_data->slave_present) {
daa49ff5
AV
173 dev_dbg(&ds1wm_data->pdev->dev, "reset: no devices found\n");
174 return 1;
175 }
f19b121e 176
daa49ff5 177 return 0;
f19b121e 178}
179
180static int ds1wm_write(struct ds1wm_data *ds1wm_data, u8 data)
181{
182 DECLARE_COMPLETION_ONSTACK(write_done);
183 ds1wm_data->write_complete = &write_done;
184
185 ds1wm_write_register(ds1wm_data, DS1WM_DATA, data);
186
187 wait_for_completion_timeout(&write_done, DS1WM_TIMEOUT);
188 ds1wm_data->write_complete = NULL;
189
190 return 0;
191}
192
193static int ds1wm_read(struct ds1wm_data *ds1wm_data, unsigned char write_data)
194{
195 DECLARE_COMPLETION_ONSTACK(read_done);
196 ds1wm_data->read_complete = &read_done;
197
198 ds1wm_write(ds1wm_data, write_data);
199 wait_for_completion_timeout(&read_done, DS1WM_TIMEOUT);
200 ds1wm_data->read_complete = NULL;
201
202 return ds1wm_data->read_byte;
203}
204
205static int ds1wm_find_divisor(int gclk)
206{
207 int i;
208
209 for (i = 0; i < ARRAY_SIZE(freq); i++)
210 if (gclk <= freq[i].freq)
211 return freq[i].divisor;
212
213 return 0;
214}
215
216static void ds1wm_up(struct ds1wm_data *ds1wm_data)
217{
7d33ccbe
PZ
218 int divisor;
219 struct ds1wm_driver_data *plat = ds1wm_data->cell->driver_data;
f19b121e 220
a23a1757
PZ
221 if (ds1wm_data->cell->enable)
222 ds1wm_data->cell->enable(ds1wm_data->pdev);
f19b121e 223
7d33ccbe 224 divisor = ds1wm_find_divisor(plat->clock_rate);
f19b121e 225 if (divisor == 0) {
226 dev_err(&ds1wm_data->pdev->dev,
7d33ccbe
PZ
227 "no suitable divisor for %dHz clock\n",
228 plat->clock_rate);
f19b121e 229 return;
230 }
231 ds1wm_write_register(ds1wm_data, DS1WM_CLKDIV, divisor);
232
233 /* Let the w1 clock stabilize. */
234 msleep(1);
235
236 ds1wm_reset(ds1wm_data);
237}
238
239static void ds1wm_down(struct ds1wm_data *ds1wm_data)
240{
241 ds1wm_reset(ds1wm_data);
242
243 /* Disable interrupts. */
244 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN,
245 ds1wm_data->active_high ? DS1WM_INTEN_IAS : 0);
246
a23a1757
PZ
247 if (ds1wm_data->cell->disable)
248 ds1wm_data->cell->disable(ds1wm_data->pdev);
f19b121e 249}
250
251/* --------------------------------------------------------------------- */
252/* w1 methods */
253
254static u8 ds1wm_read_byte(void *data)
255{
256 struct ds1wm_data *ds1wm_data = data;
257
258 return ds1wm_read(ds1wm_data, 0xff);
259}
260
261static void ds1wm_write_byte(void *data, u8 byte)
262{
263 struct ds1wm_data *ds1wm_data = data;
264
265 ds1wm_write(ds1wm_data, byte);
266}
267
268static u8 ds1wm_reset_bus(void *data)
269{
270 struct ds1wm_data *ds1wm_data = data;
271
272 ds1wm_reset(ds1wm_data);
273
274 return 0;
275}
276
c30c9b15
DF
277static void ds1wm_search(void *data, struct w1_master *master_dev,
278 u8 search_type, w1_slave_found_callback slave_found)
f19b121e 279{
280 struct ds1wm_data *ds1wm_data = data;
281 int i;
282 unsigned long long rom_id;
283
284 /* XXX We need to iterate for multiple devices per the DS1WM docs.
285 * See http://www.maxim-ic.com/appnotes.cfm/appnote_number/120. */
286 if (ds1wm_reset(ds1wm_data))
287 return;
288
289 ds1wm_write(ds1wm_data, search_type);
290 ds1wm_write_register(ds1wm_data, DS1WM_CMD, DS1WM_CMD_SRA);
291
292 for (rom_id = 0, i = 0; i < 16; i++) {
293
294 unsigned char resp, r, d;
295
296 resp = ds1wm_read(ds1wm_data, 0x00);
297
298 r = ((resp & 0x02) >> 1) |
299 ((resp & 0x08) >> 2) |
300 ((resp & 0x20) >> 3) |
301 ((resp & 0x80) >> 4);
302
303 d = ((resp & 0x01) >> 0) |
304 ((resp & 0x04) >> 1) |
305 ((resp & 0x10) >> 2) |
306 ((resp & 0x40) >> 3);
307
308 rom_id |= (unsigned long long) r << (i * 4);
309
310 }
898eb71c 311 dev_dbg(&ds1wm_data->pdev->dev, "found 0x%08llX\n", rom_id);
f19b121e 312
313 ds1wm_write_register(ds1wm_data, DS1WM_CMD, ~DS1WM_CMD_SRA);
314 ds1wm_reset(ds1wm_data);
315
c30c9b15 316 slave_found(master_dev, rom_id);
f19b121e 317}
318
319/* --------------------------------------------------------------------- */
320
321static struct w1_bus_master ds1wm_master = {
322 .read_byte = ds1wm_read_byte,
323 .write_byte = ds1wm_write_byte,
324 .reset_bus = ds1wm_reset_bus,
325 .search = ds1wm_search,
326};
327
328static int ds1wm_probe(struct platform_device *pdev)
329{
330 struct ds1wm_data *ds1wm_data;
a23a1757 331 struct ds1wm_driver_data *plat;
f19b121e 332 struct resource *res;
a23a1757 333 struct mfd_cell *cell;
f19b121e 334 int ret;
335
336 if (!pdev)
337 return -ENODEV;
338
a23a1757
PZ
339 cell = pdev->dev.platform_data;
340 if (!cell)
341 return -ENODEV;
342
daa49ff5 343 ds1wm_data = kzalloc(sizeof(*ds1wm_data), GFP_KERNEL);
f19b121e 344 if (!ds1wm_data)
345 return -ENOMEM;
346
347 platform_set_drvdata(pdev, ds1wm_data);
348
349 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
350 if (!res) {
351 ret = -ENXIO;
352 goto err0;
353 }
a23a1757 354 ds1wm_data->map = ioremap(res->start, resource_size(res));
f19b121e 355 if (!ds1wm_data->map) {
356 ret = -ENOMEM;
357 goto err0;
358 }
a23a1757
PZ
359 plat = cell->driver_data;
360
361 /* calculate bus shift from mem resource */
362 ds1wm_data->bus_shift = resource_size(res) >> 3;
363
f19b121e 364 ds1wm_data->pdev = pdev;
a23a1757 365 ds1wm_data->cell = cell;
f19b121e 366
367 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
368 if (!res) {
369 ret = -ENXIO;
370 goto err1;
371 }
372 ds1wm_data->irq = res->start;
4aa323bd 373 ds1wm_data->active_high = plat->active_high;
f19b121e 374
4aa323bd
PZ
375 if (res->flags & IORESOURCE_IRQ_HIGHEDGE)
376 set_irq_type(ds1wm_data->irq, IRQ_TYPE_EDGE_RISING);
377 if (res->flags & IORESOURCE_IRQ_LOWEDGE)
378 set_irq_type(ds1wm_data->irq, IRQ_TYPE_EDGE_FALLING);
f19b121e 379
380 ret = request_irq(ds1wm_data->irq, ds1wm_isr, IRQF_DISABLED,
381 "ds1wm", ds1wm_data);
382 if (ret)
383 goto err1;
384
f19b121e 385 ds1wm_up(ds1wm_data);
386
387 ds1wm_master.data = (void *)ds1wm_data;
388
389 ret = w1_add_master_device(&ds1wm_master);
390 if (ret)
7d33ccbe 391 goto err2;
f19b121e 392
393 return 0;
394
f19b121e 395err2:
7d33ccbe 396 ds1wm_down(ds1wm_data);
f19b121e 397 free_irq(ds1wm_data->irq, ds1wm_data);
398err1:
399 iounmap(ds1wm_data->map);
400err0:
401 kfree(ds1wm_data);
402
403 return ret;
404}
405
406#ifdef CONFIG_PM
407static int ds1wm_suspend(struct platform_device *pdev, pm_message_t state)
408{
409 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
410
411 ds1wm_down(ds1wm_data);
412
413 return 0;
414}
415
416static int ds1wm_resume(struct platform_device *pdev)
417{
418 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
419
420 ds1wm_up(ds1wm_data);
421
422 return 0;
423}
424#else
425#define ds1wm_suspend NULL
426#define ds1wm_resume NULL
427#endif
428
429static int ds1wm_remove(struct platform_device *pdev)
430{
431 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
432
433 w1_remove_master_device(&ds1wm_master);
434 ds1wm_down(ds1wm_data);
f19b121e 435 free_irq(ds1wm_data->irq, ds1wm_data);
436 iounmap(ds1wm_data->map);
437 kfree(ds1wm_data);
438
439 return 0;
440}
441
442static struct platform_driver ds1wm_driver = {
443 .driver = {
444 .name = "ds1wm",
445 },
446 .probe = ds1wm_probe,
447 .remove = ds1wm_remove,
448 .suspend = ds1wm_suspend,
449 .resume = ds1wm_resume
450};
451
452static int __init ds1wm_init(void)
453{
454 printk("DS1WM w1 busmaster driver - (c) 2004 Szabolcs Gyurko\n");
455 return platform_driver_register(&ds1wm_driver);
456}
457
458static void __exit ds1wm_exit(void)
459{
460 platform_driver_unregister(&ds1wm_driver);
461}
462
463module_init(ds1wm_init);
464module_exit(ds1wm_exit);
465
466MODULE_LICENSE("GPL");
467MODULE_AUTHOR("Szabolcs Gyurko <szabolcs.gyurko@tlt.hu>, "
468 "Matt Reimer <mreimer@vpop.net>");
469MODULE_DESCRIPTION("DS1WM w1 busmaster driver");