blob: 7c294f4dc0ed85bcaad3f36719509b134f55d5a9 [file] [log] [blame]
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -07001/*
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>
Anton Vorontsovfbc357d2008-03-04 14:28:43 -080019#include <linux/err.h>
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -070020#include <linux/delay.h>
Philipp Zabela23a1752009-02-17 10:06:41 +010021#include <linux/mfd/core.h>
22#include <linux/mfd/ds1wm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090023#include <linux/slab.h>
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -070024
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 */
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -070036#define DS1WM_CNTRL 0x05 /* R/W master control register (not used yet) */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -070037
38#define DS1WM_CMD_1W_RESET (1 << 0) /* force reset on 1-wire bus */
39#define DS1WM_CMD_SRA (1 << 1) /* enable Search ROM accelerator mode */
40#define DS1WM_CMD_DQ_OUTPUT (1 << 2) /* write only - forces bus low */
41#define DS1WM_CMD_DQ_INPUT (1 << 3) /* read only - reflects state of bus */
42#define DS1WM_CMD_RST (1 << 5) /* software reset */
43#define DS1WM_CMD_OD (1 << 7) /* overdrive */
44
45#define DS1WM_INT_PD (1 << 0) /* presence detect */
46#define DS1WM_INT_PDR (1 << 1) /* presence detect result */
47#define DS1WM_INT_TBE (1 << 2) /* tx buffer empty */
48#define DS1WM_INT_TSRE (1 << 3) /* tx shift register empty */
49#define DS1WM_INT_RBF (1 << 4) /* rx buffer full */
50#define DS1WM_INT_RSRF (1 << 5) /* rx shift register full */
51
52#define DS1WM_INTEN_EPD (1 << 0) /* enable presence detect int */
53#define DS1WM_INTEN_IAS (1 << 1) /* INTR active state */
54#define DS1WM_INTEN_ETBE (1 << 2) /* enable tx buffer empty int */
55#define DS1WM_INTEN_ETMT (1 << 3) /* enable tx shift register empty int */
56#define DS1WM_INTEN_ERBF (1 << 4) /* enable rx buffer full int */
57#define DS1WM_INTEN_ERSRF (1 << 5) /* enable rx shift register full int */
58#define DS1WM_INTEN_DQO (1 << 6) /* enable direct bus driving ops */
59
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -070060#define DS1WM_INTEN_NOT_IAS (~DS1WM_INTEN_IAS) /* all but INTR active state */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -070061
62#define DS1WM_TIMEOUT (HZ * 5)
63
64static struct {
65 unsigned long freq;
66 unsigned long divisor;
67} freq[] = {
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -070068 { 1000000, 0x80 },
69 { 2000000, 0x84 },
70 { 3000000, 0x81 },
71 { 4000000, 0x88 },
72 { 5000000, 0x82 },
73 { 6000000, 0x85 },
74 { 7000000, 0x83 },
75 { 8000000, 0x8c },
76 { 10000000, 0x86 },
77 { 12000000, 0x89 },
78 { 14000000, 0x87 },
79 { 16000000, 0x90 },
80 { 20000000, 0x8a },
81 { 24000000, 0x8d },
82 { 28000000, 0x8b },
83 { 32000000, 0x94 },
84 { 40000000, 0x8e },
85 { 48000000, 0x91 },
86 { 56000000, 0x8f },
87 { 64000000, 0x98 },
88 { 80000000, 0x92 },
89 { 96000000, 0x95 },
90 { 112000000, 0x93 },
91 { 128000000, 0x9c },
92/* you can continue this table, consult the OPERATION - CLOCK DIVISOR
93 section of the ds1wm spec sheet. */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -070094};
95
96struct ds1wm_data {
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -070097 void __iomem *map;
98 int bus_shift; /* # of shifts to calc register offsets */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -070099 struct platform_device *pdev;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700100 const struct mfd_cell *cell;
101 int irq;
102 int slave_present;
103 void *reset_complete;
104 void *read_complete;
105 void *write_complete;
106 int read_error;
107 /* last byte received */
108 u8 read_byte;
109 /* byte to write that makes all intr disabled, */
110 /* considering active_state (IAS) (optimization) */
111 u8 int_en_reg_none;
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -0700112 unsigned int reset_recover_delay; /* see ds1wm.h */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700113};
114
115static inline void ds1wm_write_register(struct ds1wm_data *ds1wm_data, u32 reg,
116 u8 val)
117{
Anton Vorontsovdaa49ff2008-03-04 14:28:44 -0800118 __raw_writeb(val, ds1wm_data->map + (reg << ds1wm_data->bus_shift));
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700119}
120
121static inline u8 ds1wm_read_register(struct ds1wm_data *ds1wm_data, u32 reg)
122{
Anton Vorontsovdaa49ff2008-03-04 14:28:44 -0800123 return __raw_readb(ds1wm_data->map + (reg << ds1wm_data->bus_shift));
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700124}
125
126
127static irqreturn_t ds1wm_isr(int isr, void *data)
128{
129 struct ds1wm_data *ds1wm_data = data;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700130 u8 intr;
131 u8 inten = ds1wm_read_register(ds1wm_data, DS1WM_INT_EN);
132 /* if no bits are set in int enable register (except the IAS)
133 than go no further, reading the regs below has side effects */
134 if (!(inten & DS1WM_INTEN_NOT_IAS))
135 return IRQ_NONE;
136
137 ds1wm_write_register(ds1wm_data,
138 DS1WM_INT_EN, ds1wm_data->int_en_reg_none);
139
140 /* this read action clears the INTR and certain flags in ds1wm */
141 intr = ds1wm_read_register(ds1wm_data, DS1WM_INT);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700142
143 ds1wm_data->slave_present = (intr & DS1WM_INT_PDR) ? 0 : 1;
144
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700145 if ((intr & DS1WM_INT_TSRE) && ds1wm_data->write_complete) {
146 inten &= ~DS1WM_INTEN_ETMT;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700147 complete(ds1wm_data->write_complete);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700148 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700149 if (intr & DS1WM_INT_RBF) {
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700150 /* this read clears the RBF flag */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700151 ds1wm_data->read_byte = ds1wm_read_register(ds1wm_data,
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700152 DS1WM_DATA);
153 inten &= ~DS1WM_INTEN_ERBF;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700154 if (ds1wm_data->read_complete)
155 complete(ds1wm_data->read_complete);
156 }
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700157 if ((intr & DS1WM_INT_PD) && ds1wm_data->reset_complete) {
158 inten &= ~DS1WM_INTEN_EPD;
159 complete(ds1wm_data->reset_complete);
160 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700161
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700162 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN, inten);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700163 return IRQ_HANDLED;
164}
165
166static int ds1wm_reset(struct ds1wm_data *ds1wm_data)
167{
168 unsigned long timeleft;
169 DECLARE_COMPLETION_ONSTACK(reset_done);
170
171 ds1wm_data->reset_complete = &reset_done;
172
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700173 /* enable Presence detect only */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700174 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN, DS1WM_INTEN_EPD |
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700175 ds1wm_data->int_en_reg_none);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700176
177 ds1wm_write_register(ds1wm_data, DS1WM_CMD, DS1WM_CMD_1W_RESET);
178
179 timeleft = wait_for_completion_timeout(&reset_done, DS1WM_TIMEOUT);
180 ds1wm_data->reset_complete = NULL;
181 if (!timeleft) {
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700182 dev_err(&ds1wm_data->pdev->dev, "reset failed, timed out\n");
Anton Vorontsovdaa49ff2008-03-04 14:28:44 -0800183 return 1;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700184 }
185
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700186 if (!ds1wm_data->slave_present) {
Anton Vorontsovdaa49ff2008-03-04 14:28:44 -0800187 dev_dbg(&ds1wm_data->pdev->dev, "reset: no devices found\n");
188 return 1;
189 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700190
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -0700191 if (ds1wm_data->reset_recover_delay)
192 msleep(ds1wm_data->reset_recover_delay);
193
Anton Vorontsovdaa49ff2008-03-04 14:28:44 -0800194 return 0;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700195}
196
197static int ds1wm_write(struct ds1wm_data *ds1wm_data, u8 data)
198{
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700199 unsigned long timeleft;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700200 DECLARE_COMPLETION_ONSTACK(write_done);
201 ds1wm_data->write_complete = &write_done;
202
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700203 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN,
204 ds1wm_data->int_en_reg_none | DS1WM_INTEN_ETMT);
205
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700206 ds1wm_write_register(ds1wm_data, DS1WM_DATA, data);
207
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700208 timeleft = wait_for_completion_timeout(&write_done, DS1WM_TIMEOUT);
209
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700210 ds1wm_data->write_complete = NULL;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700211 if (!timeleft) {
212 dev_err(&ds1wm_data->pdev->dev, "write failed, timed out\n");
213 return -ETIMEDOUT;
214 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700215
216 return 0;
217}
218
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700219static u8 ds1wm_read(struct ds1wm_data *ds1wm_data, unsigned char write_data)
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700220{
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700221 unsigned long timeleft;
222 u8 intEnable = DS1WM_INTEN_ERBF | ds1wm_data->int_en_reg_none;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700223 DECLARE_COMPLETION_ONSTACK(read_done);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700224
225 ds1wm_read_register(ds1wm_data, DS1WM_DATA);
226
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700227 ds1wm_data->read_complete = &read_done;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700228 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN, intEnable);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700229
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700230 ds1wm_write_register(ds1wm_data, DS1WM_DATA, write_data);
231 timeleft = wait_for_completion_timeout(&read_done, DS1WM_TIMEOUT);
232
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700233 ds1wm_data->read_complete = NULL;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700234 if (!timeleft) {
235 dev_err(&ds1wm_data->pdev->dev, "read failed, timed out\n");
236 ds1wm_data->read_error = -ETIMEDOUT;
237 return 0xFF;
238 }
239 ds1wm_data->read_error = 0;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700240 return ds1wm_data->read_byte;
241}
242
243static int ds1wm_find_divisor(int gclk)
244{
245 int i;
246
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700247 for (i = ARRAY_SIZE(freq)-1; i >= 0; --i)
248 if (gclk >= freq[i].freq)
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700249 return freq[i].divisor;
250
251 return 0;
252}
253
254static void ds1wm_up(struct ds1wm_data *ds1wm_data)
255{
Philipp Zabel7d33ccb2009-02-17 10:09:19 +0100256 int divisor;
Samuel Ortiz121ea572011-04-06 11:41:03 +0200257 struct ds1wm_driver_data *plat = ds1wm_data->pdev->dev.platform_data;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700258
Philipp Zabela23a1752009-02-17 10:06:41 +0100259 if (ds1wm_data->cell->enable)
260 ds1wm_data->cell->enable(ds1wm_data->pdev);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700261
Philipp Zabel7d33ccb2009-02-17 10:09:19 +0100262 divisor = ds1wm_find_divisor(plat->clock_rate);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700263 dev_dbg(&ds1wm_data->pdev->dev,
264 "found divisor 0x%x for clock %d\n", divisor, plat->clock_rate);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700265 if (divisor == 0) {
266 dev_err(&ds1wm_data->pdev->dev,
Philipp Zabel7d33ccb2009-02-17 10:09:19 +0100267 "no suitable divisor for %dHz clock\n",
268 plat->clock_rate);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700269 return;
270 }
271 ds1wm_write_register(ds1wm_data, DS1WM_CLKDIV, divisor);
272
273 /* Let the w1 clock stabilize. */
274 msleep(1);
275
276 ds1wm_reset(ds1wm_data);
277}
278
279static void ds1wm_down(struct ds1wm_data *ds1wm_data)
280{
281 ds1wm_reset(ds1wm_data);
282
283 /* Disable interrupts. */
284 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN,
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700285 ds1wm_data->int_en_reg_none);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700286
Philipp Zabela23a1752009-02-17 10:06:41 +0100287 if (ds1wm_data->cell->disable)
288 ds1wm_data->cell->disable(ds1wm_data->pdev);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700289}
290
291/* --------------------------------------------------------------------- */
292/* w1 methods */
293
294static u8 ds1wm_read_byte(void *data)
295{
296 struct ds1wm_data *ds1wm_data = data;
297
298 return ds1wm_read(ds1wm_data, 0xff);
299}
300
301static void ds1wm_write_byte(void *data, u8 byte)
302{
303 struct ds1wm_data *ds1wm_data = data;
304
305 ds1wm_write(ds1wm_data, byte);
306}
307
308static u8 ds1wm_reset_bus(void *data)
309{
310 struct ds1wm_data *ds1wm_data = data;
311
312 ds1wm_reset(ds1wm_data);
313
314 return 0;
315}
316
David Friesc30c9b12008-10-15 22:04:38 -0700317static void ds1wm_search(void *data, struct w1_master *master_dev,
318 u8 search_type, w1_slave_found_callback slave_found)
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700319{
320 struct ds1wm_data *ds1wm_data = data;
321 int i;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700322 int ms_discrep_bit = -1;
323 u64 r = 0; /* holds the progress of the search */
324 u64 r_prime, d;
325 unsigned slaves_found = 0;
326 unsigned int pass = 0;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700327
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700328 dev_dbg(&ds1wm_data->pdev->dev, "search begin\n");
329 while (true) {
330 ++pass;
331 if (pass > 100) {
332 dev_dbg(&ds1wm_data->pdev->dev,
333 "too many attempts (100), search aborted\n");
334 return;
335 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700336
NeilBrownb02f8be2012-05-18 15:59:52 +1000337 mutex_lock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700338 if (ds1wm_reset(ds1wm_data)) {
NeilBrownb02f8be2012-05-18 15:59:52 +1000339 mutex_unlock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700340 dev_dbg(&ds1wm_data->pdev->dev,
341 "pass: %d reset error (or no slaves)\n", pass);
342 break;
343 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700344
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700345 dev_dbg(&ds1wm_data->pdev->dev,
346 "pass: %d r : %0#18llx writing SEARCH_ROM\n", pass, r);
347 ds1wm_write(ds1wm_data, search_type);
348 dev_dbg(&ds1wm_data->pdev->dev,
349 "pass: %d entering ASM\n", pass);
350 ds1wm_write_register(ds1wm_data, DS1WM_CMD, DS1WM_CMD_SRA);
351 dev_dbg(&ds1wm_data->pdev->dev,
Anatol Pomozov4907cb72012-09-01 10:31:09 -0700352 "pass: %d beginning nibble loop\n", pass);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700353
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700354 r_prime = 0;
355 d = 0;
356 /* we work one nibble at a time */
357 /* each nibble is interleaved to form a byte */
358 for (i = 0; i < 16; i++) {
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700359
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700360 unsigned char resp, _r, _r_prime, _d;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700361
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700362 _r = (r >> (4*i)) & 0xf;
363 _r = ((_r & 0x1) << 1) |
364 ((_r & 0x2) << 2) |
365 ((_r & 0x4) << 3) |
366 ((_r & 0x8) << 4);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700367
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700368 /* writes _r, then reads back: */
369 resp = ds1wm_read(ds1wm_data, _r);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700370
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700371 if (ds1wm_data->read_error) {
372 dev_err(&ds1wm_data->pdev->dev,
373 "pass: %d nibble: %d read error\n", pass, i);
374 break;
375 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700376
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700377 _r_prime = ((resp & 0x02) >> 1) |
378 ((resp & 0x08) >> 2) |
379 ((resp & 0x20) >> 3) |
380 ((resp & 0x80) >> 4);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700381
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700382 _d = ((resp & 0x01) >> 0) |
383 ((resp & 0x04) >> 1) |
384 ((resp & 0x10) >> 2) |
385 ((resp & 0x40) >> 3);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700386
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700387 r_prime |= (unsigned long long) _r_prime << (i * 4);
388 d |= (unsigned long long) _d << (i * 4);
389
390 }
391 if (ds1wm_data->read_error) {
NeilBrownb02f8be2012-05-18 15:59:52 +1000392 mutex_unlock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700393 dev_err(&ds1wm_data->pdev->dev,
394 "pass: %d read error, retrying\n", pass);
395 break;
396 }
397 dev_dbg(&ds1wm_data->pdev->dev,
398 "pass: %d r\': %0#18llx d:%0#18llx\n",
399 pass, r_prime, d);
400 dev_dbg(&ds1wm_data->pdev->dev,
401 "pass: %d nibble loop complete, exiting ASM\n", pass);
402 ds1wm_write_register(ds1wm_data, DS1WM_CMD, ~DS1WM_CMD_SRA);
403 dev_dbg(&ds1wm_data->pdev->dev,
404 "pass: %d resetting bus\n", pass);
405 ds1wm_reset(ds1wm_data);
NeilBrownb02f8be2012-05-18 15:59:52 +1000406 mutex_unlock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700407 if ((r_prime & ((u64)1 << 63)) && (d & ((u64)1 << 63))) {
408 dev_err(&ds1wm_data->pdev->dev,
409 "pass: %d bus error, retrying\n", pass);
410 continue; /* start over */
411 }
412
413
414 dev_dbg(&ds1wm_data->pdev->dev,
415 "pass: %d found %0#18llx\n", pass, r_prime);
416 slave_found(master_dev, r_prime);
417 ++slaves_found;
418 dev_dbg(&ds1wm_data->pdev->dev,
419 "pass: %d complete, preparing next pass\n", pass);
420
421 /* any discrepency found which we already choose the
422 '1' branch is now is now irrelevant we reveal the
423 next branch with this: */
424 d &= ~r;
425 /* find last bit set, i.e. the most signif. bit set */
426 ms_discrep_bit = fls64(d) - 1;
427 dev_dbg(&ds1wm_data->pdev->dev,
428 "pass: %d new d:%0#18llx MS discrep bit:%d\n",
429 pass, d, ms_discrep_bit);
430
431 /* prev_ms_discrep_bit = ms_discrep_bit;
432 prepare for next ROM search: */
433 if (ms_discrep_bit == -1)
434 break;
435
436 r = (r & ~(~0ull << (ms_discrep_bit))) | 1 << ms_discrep_bit;
437 } /* end while true */
438 dev_dbg(&ds1wm_data->pdev->dev,
439 "pass: %d total: %d search done ms d bit pos: %d\n", pass,
440 slaves_found, ms_discrep_bit);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700441}
442
443/* --------------------------------------------------------------------- */
444
445static struct w1_bus_master ds1wm_master = {
446 .read_byte = ds1wm_read_byte,
447 .write_byte = ds1wm_write_byte,
448 .reset_bus = ds1wm_reset_bus,
449 .search = ds1wm_search,
450};
451
452static int ds1wm_probe(struct platform_device *pdev)
453{
454 struct ds1wm_data *ds1wm_data;
Philipp Zabela23a1752009-02-17 10:06:41 +0100455 struct ds1wm_driver_data *plat;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700456 struct resource *res;
457 int ret;
458
459 if (!pdev)
460 return -ENODEV;
461
Anton Vorontsovdaa49ff2008-03-04 14:28:44 -0800462 ds1wm_data = kzalloc(sizeof(*ds1wm_data), GFP_KERNEL);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700463 if (!ds1wm_data)
464 return -ENOMEM;
465
466 platform_set_drvdata(pdev, ds1wm_data);
467
468 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
469 if (!res) {
470 ret = -ENXIO;
471 goto err0;
472 }
Philipp Zabela23a1752009-02-17 10:06:41 +0100473 ds1wm_data->map = ioremap(res->start, resource_size(res));
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700474 if (!ds1wm_data->map) {
475 ret = -ENOMEM;
476 goto err0;
477 }
Philipp Zabela23a1752009-02-17 10:06:41 +0100478
479 /* calculate bus shift from mem resource */
480 ds1wm_data->bus_shift = resource_size(res) >> 3;
481
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700482 ds1wm_data->pdev = pdev;
Andres Salomon7e5dc1f2011-03-01 13:55:07 -0800483 ds1wm_data->cell = mfd_get_cell(pdev);
Samuel Ortiz121ea572011-04-06 11:41:03 +0200484 if (!ds1wm_data->cell) {
485 ret = -ENODEV;
486 goto err1;
487 }
488 plat = pdev->dev.platform_data;
489 if (!plat) {
490 ret = -ENODEV;
491 goto err1;
492 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700493
494 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
495 if (!res) {
496 ret = -ENXIO;
497 goto err1;
498 }
499 ds1wm_data->irq = res->start;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700500 ds1wm_data->int_en_reg_none = (plat->active_high ? DS1WM_INTEN_IAS : 0);
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -0700501 ds1wm_data->reset_recover_delay = plat->reset_recover_delay;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700502
Philipp Zabel4aa323b2008-02-07 00:13:22 -0800503 if (res->flags & IORESOURCE_IRQ_HIGHEDGE)
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200504 irq_set_irq_type(ds1wm_data->irq, IRQ_TYPE_EDGE_RISING);
Philipp Zabel4aa323b2008-02-07 00:13:22 -0800505 if (res->flags & IORESOURCE_IRQ_LOWEDGE)
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200506 irq_set_irq_type(ds1wm_data->irq, IRQ_TYPE_EDGE_FALLING);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700507
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700508 ret = request_irq(ds1wm_data->irq, ds1wm_isr,
509 IRQF_DISABLED | IRQF_SHARED, "ds1wm", ds1wm_data);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700510 if (ret)
511 goto err1;
512
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700513 ds1wm_up(ds1wm_data);
514
515 ds1wm_master.data = (void *)ds1wm_data;
516
517 ret = w1_add_master_device(&ds1wm_master);
518 if (ret)
Philipp Zabel7d33ccb2009-02-17 10:09:19 +0100519 goto err2;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700520
521 return 0;
522
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700523err2:
Philipp Zabel7d33ccb2009-02-17 10:09:19 +0100524 ds1wm_down(ds1wm_data);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700525 free_irq(ds1wm_data->irq, ds1wm_data);
526err1:
527 iounmap(ds1wm_data->map);
528err0:
529 kfree(ds1wm_data);
530
531 return ret;
532}
533
534#ifdef CONFIG_PM
535static int ds1wm_suspend(struct platform_device *pdev, pm_message_t state)
536{
537 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
538
539 ds1wm_down(ds1wm_data);
540
541 return 0;
542}
543
544static int ds1wm_resume(struct platform_device *pdev)
545{
546 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
547
548 ds1wm_up(ds1wm_data);
549
550 return 0;
551}
552#else
553#define ds1wm_suspend NULL
554#define ds1wm_resume NULL
555#endif
556
557static int ds1wm_remove(struct platform_device *pdev)
558{
559 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
560
561 w1_remove_master_device(&ds1wm_master);
562 ds1wm_down(ds1wm_data);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700563 free_irq(ds1wm_data->irq, ds1wm_data);
564 iounmap(ds1wm_data->map);
565 kfree(ds1wm_data);
566
567 return 0;
568}
569
570static struct platform_driver ds1wm_driver = {
571 .driver = {
572 .name = "ds1wm",
573 },
574 .probe = ds1wm_probe,
575 .remove = ds1wm_remove,
576 .suspend = ds1wm_suspend,
577 .resume = ds1wm_resume
578};
579
580static int __init ds1wm_init(void)
581{
582 printk("DS1WM w1 busmaster driver - (c) 2004 Szabolcs Gyurko\n");
583 return platform_driver_register(&ds1wm_driver);
584}
585
586static void __exit ds1wm_exit(void)
587{
588 platform_driver_unregister(&ds1wm_driver);
589}
590
591module_init(ds1wm_init);
592module_exit(ds1wm_exit);
593
594MODULE_LICENSE("GPL");
595MODULE_AUTHOR("Szabolcs Gyurko <szabolcs.gyurko@tlt.hu>, "
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700596 "Matt Reimer <mreimer@vpop.net>,"
597 "Jean-Francois Dagenais <dagenaisj@sonatest.com>");
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700598MODULE_DESCRIPTION("DS1WM w1 busmaster driver");