blob: e0b8a4bc73df948aa45584ac4b2cdea4c13c30c1 [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>
Julia Lawalleea21722012-12-07 00:15:23 +010016#include <linux/io.h>
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -070017#include <linux/irq.h>
18#include <linux/pm.h>
19#include <linux/platform_device.h>
Anton Vorontsovfbc357d2008-03-04 14:28:43 -080020#include <linux/err.h>
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -070021#include <linux/delay.h>
Philipp Zabela23a1752009-02-17 10:06:41 +010022#include <linux/mfd/core.h>
23#include <linux/mfd/ds1wm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -070025
26#include <asm/io.h>
27
28#include "../w1.h"
29#include "../w1_int.h"
30
31
32#define DS1WM_CMD 0x00 /* R/W 4 bits command */
33#define DS1WM_DATA 0x01 /* R/W 8 bits, transmit/receive buffer */
34#define DS1WM_INT 0x02 /* R/W interrupt status */
35#define DS1WM_INT_EN 0x03 /* R/W interrupt enable */
36#define DS1WM_CLKDIV 0x04 /* R/W 5 bits of divisor and pre-scale */
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -070037#define DS1WM_CNTRL 0x05 /* R/W master control register (not used yet) */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -070038
39#define DS1WM_CMD_1W_RESET (1 << 0) /* force reset on 1-wire bus */
40#define DS1WM_CMD_SRA (1 << 1) /* enable Search ROM accelerator mode */
41#define DS1WM_CMD_DQ_OUTPUT (1 << 2) /* write only - forces bus low */
42#define DS1WM_CMD_DQ_INPUT (1 << 3) /* read only - reflects state of bus */
43#define DS1WM_CMD_RST (1 << 5) /* software reset */
44#define DS1WM_CMD_OD (1 << 7) /* overdrive */
45
46#define DS1WM_INT_PD (1 << 0) /* presence detect */
47#define DS1WM_INT_PDR (1 << 1) /* presence detect result */
48#define DS1WM_INT_TBE (1 << 2) /* tx buffer empty */
49#define DS1WM_INT_TSRE (1 << 3) /* tx shift register empty */
50#define DS1WM_INT_RBF (1 << 4) /* rx buffer full */
51#define DS1WM_INT_RSRF (1 << 5) /* rx shift register full */
52
53#define DS1WM_INTEN_EPD (1 << 0) /* enable presence detect int */
54#define DS1WM_INTEN_IAS (1 << 1) /* INTR active state */
55#define DS1WM_INTEN_ETBE (1 << 2) /* enable tx buffer empty int */
56#define DS1WM_INTEN_ETMT (1 << 3) /* enable tx shift register empty int */
57#define DS1WM_INTEN_ERBF (1 << 4) /* enable rx buffer full int */
58#define DS1WM_INTEN_ERSRF (1 << 5) /* enable rx shift register full int */
59#define DS1WM_INTEN_DQO (1 << 6) /* enable direct bus driving ops */
60
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -070061#define DS1WM_INTEN_NOT_IAS (~DS1WM_INTEN_IAS) /* all but INTR active state */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -070062
63#define DS1WM_TIMEOUT (HZ * 5)
64
65static struct {
66 unsigned long freq;
67 unsigned long divisor;
68} freq[] = {
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -070069 { 1000000, 0x80 },
70 { 2000000, 0x84 },
71 { 3000000, 0x81 },
72 { 4000000, 0x88 },
73 { 5000000, 0x82 },
74 { 6000000, 0x85 },
75 { 7000000, 0x83 },
76 { 8000000, 0x8c },
77 { 10000000, 0x86 },
78 { 12000000, 0x89 },
79 { 14000000, 0x87 },
80 { 16000000, 0x90 },
81 { 20000000, 0x8a },
82 { 24000000, 0x8d },
83 { 28000000, 0x8b },
84 { 32000000, 0x94 },
85 { 40000000, 0x8e },
86 { 48000000, 0x91 },
87 { 56000000, 0x8f },
88 { 64000000, 0x98 },
89 { 80000000, 0x92 },
90 { 96000000, 0x95 },
91 { 112000000, 0x93 },
92 { 128000000, 0x9c },
93/* you can continue this table, consult the OPERATION - CLOCK DIVISOR
94 section of the ds1wm spec sheet. */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -070095};
96
97struct ds1wm_data {
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -070098 void __iomem *map;
99 int bus_shift; /* # of shifts to calc register offsets */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700100 struct platform_device *pdev;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700101 const struct mfd_cell *cell;
102 int irq;
103 int slave_present;
104 void *reset_complete;
105 void *read_complete;
106 void *write_complete;
107 int read_error;
108 /* last byte received */
109 u8 read_byte;
110 /* byte to write that makes all intr disabled, */
111 /* considering active_state (IAS) (optimization) */
112 u8 int_en_reg_none;
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -0700113 unsigned int reset_recover_delay; /* see ds1wm.h */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700114};
115
116static inline void ds1wm_write_register(struct ds1wm_data *ds1wm_data, u32 reg,
117 u8 val)
118{
Anton Vorontsovdaa49ff2008-03-04 14:28:44 -0800119 __raw_writeb(val, ds1wm_data->map + (reg << ds1wm_data->bus_shift));
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700120}
121
122static inline u8 ds1wm_read_register(struct ds1wm_data *ds1wm_data, u32 reg)
123{
Anton Vorontsovdaa49ff2008-03-04 14:28:44 -0800124 return __raw_readb(ds1wm_data->map + (reg << ds1wm_data->bus_shift));
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700125}
126
127
128static irqreturn_t ds1wm_isr(int isr, void *data)
129{
130 struct ds1wm_data *ds1wm_data = data;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700131 u8 intr;
132 u8 inten = ds1wm_read_register(ds1wm_data, DS1WM_INT_EN);
133 /* if no bits are set in int enable register (except the IAS)
134 than go no further, reading the regs below has side effects */
135 if (!(inten & DS1WM_INTEN_NOT_IAS))
136 return IRQ_NONE;
137
138 ds1wm_write_register(ds1wm_data,
139 DS1WM_INT_EN, ds1wm_data->int_en_reg_none);
140
141 /* this read action clears the INTR and certain flags in ds1wm */
142 intr = ds1wm_read_register(ds1wm_data, DS1WM_INT);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700143
144 ds1wm_data->slave_present = (intr & DS1WM_INT_PDR) ? 0 : 1;
145
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700146 if ((intr & DS1WM_INT_TSRE) && ds1wm_data->write_complete) {
147 inten &= ~DS1WM_INTEN_ETMT;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700148 complete(ds1wm_data->write_complete);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700149 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700150 if (intr & DS1WM_INT_RBF) {
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700151 /* this read clears the RBF flag */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700152 ds1wm_data->read_byte = ds1wm_read_register(ds1wm_data,
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700153 DS1WM_DATA);
154 inten &= ~DS1WM_INTEN_ERBF;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700155 if (ds1wm_data->read_complete)
156 complete(ds1wm_data->read_complete);
157 }
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700158 if ((intr & DS1WM_INT_PD) && ds1wm_data->reset_complete) {
159 inten &= ~DS1WM_INTEN_EPD;
160 complete(ds1wm_data->reset_complete);
161 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700162
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700163 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN, inten);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700164 return IRQ_HANDLED;
165}
166
167static int ds1wm_reset(struct ds1wm_data *ds1wm_data)
168{
169 unsigned long timeleft;
170 DECLARE_COMPLETION_ONSTACK(reset_done);
171
172 ds1wm_data->reset_complete = &reset_done;
173
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700174 /* enable Presence detect only */
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700175 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN, DS1WM_INTEN_EPD |
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700176 ds1wm_data->int_en_reg_none);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700177
178 ds1wm_write_register(ds1wm_data, DS1WM_CMD, DS1WM_CMD_1W_RESET);
179
180 timeleft = wait_for_completion_timeout(&reset_done, DS1WM_TIMEOUT);
181 ds1wm_data->reset_complete = NULL;
182 if (!timeleft) {
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700183 dev_err(&ds1wm_data->pdev->dev, "reset failed, timed out\n");
Anton Vorontsovdaa49ff2008-03-04 14:28:44 -0800184 return 1;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700185 }
186
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700187 if (!ds1wm_data->slave_present) {
Anton Vorontsovdaa49ff2008-03-04 14:28:44 -0800188 dev_dbg(&ds1wm_data->pdev->dev, "reset: no devices found\n");
189 return 1;
190 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700191
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -0700192 if (ds1wm_data->reset_recover_delay)
193 msleep(ds1wm_data->reset_recover_delay);
194
Anton Vorontsovdaa49ff2008-03-04 14:28:44 -0800195 return 0;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700196}
197
198static int ds1wm_write(struct ds1wm_data *ds1wm_data, u8 data)
199{
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700200 unsigned long timeleft;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700201 DECLARE_COMPLETION_ONSTACK(write_done);
202 ds1wm_data->write_complete = &write_done;
203
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700204 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN,
205 ds1wm_data->int_en_reg_none | DS1WM_INTEN_ETMT);
206
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700207 ds1wm_write_register(ds1wm_data, DS1WM_DATA, data);
208
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700209 timeleft = wait_for_completion_timeout(&write_done, DS1WM_TIMEOUT);
210
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700211 ds1wm_data->write_complete = NULL;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700212 if (!timeleft) {
213 dev_err(&ds1wm_data->pdev->dev, "write failed, timed out\n");
214 return -ETIMEDOUT;
215 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700216
217 return 0;
218}
219
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700220static u8 ds1wm_read(struct ds1wm_data *ds1wm_data, unsigned char write_data)
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700221{
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700222 unsigned long timeleft;
223 u8 intEnable = DS1WM_INTEN_ERBF | ds1wm_data->int_en_reg_none;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700224 DECLARE_COMPLETION_ONSTACK(read_done);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700225
226 ds1wm_read_register(ds1wm_data, DS1WM_DATA);
227
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700228 ds1wm_data->read_complete = &read_done;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700229 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN, intEnable);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700230
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700231 ds1wm_write_register(ds1wm_data, DS1WM_DATA, write_data);
232 timeleft = wait_for_completion_timeout(&read_done, DS1WM_TIMEOUT);
233
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700234 ds1wm_data->read_complete = NULL;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700235 if (!timeleft) {
236 dev_err(&ds1wm_data->pdev->dev, "read failed, timed out\n");
237 ds1wm_data->read_error = -ETIMEDOUT;
238 return 0xFF;
239 }
240 ds1wm_data->read_error = 0;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700241 return ds1wm_data->read_byte;
242}
243
244static int ds1wm_find_divisor(int gclk)
245{
246 int i;
247
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700248 for (i = ARRAY_SIZE(freq)-1; i >= 0; --i)
249 if (gclk >= freq[i].freq)
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700250 return freq[i].divisor;
251
252 return 0;
253}
254
255static void ds1wm_up(struct ds1wm_data *ds1wm_data)
256{
Philipp Zabel7d33ccb2009-02-17 10:09:19 +0100257 int divisor;
Jingoo Han75f9e932013-11-12 15:11:41 -0800258 struct device *dev = &ds1wm_data->pdev->dev;
259 struct ds1wm_driver_data *plat = dev_get_platdata(dev);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700260
Philipp Zabela23a1752009-02-17 10:06:41 +0100261 if (ds1wm_data->cell->enable)
262 ds1wm_data->cell->enable(ds1wm_data->pdev);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700263
Philipp Zabel7d33ccb2009-02-17 10:09:19 +0100264 divisor = ds1wm_find_divisor(plat->clock_rate);
Jingoo Han75f9e932013-11-12 15:11:41 -0800265 dev_dbg(dev, "found divisor 0x%x for clock %d\n",
266 divisor, plat->clock_rate);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700267 if (divisor == 0) {
Jingoo Han75f9e932013-11-12 15:11:41 -0800268 dev_err(dev, "no suitable divisor for %dHz clock\n",
Philipp Zabel7d33ccb2009-02-17 10:09:19 +0100269 plat->clock_rate);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700270 return;
271 }
272 ds1wm_write_register(ds1wm_data, DS1WM_CLKDIV, divisor);
273
274 /* Let the w1 clock stabilize. */
275 msleep(1);
276
277 ds1wm_reset(ds1wm_data);
278}
279
280static void ds1wm_down(struct ds1wm_data *ds1wm_data)
281{
282 ds1wm_reset(ds1wm_data);
283
284 /* Disable interrupts. */
285 ds1wm_write_register(ds1wm_data, DS1WM_INT_EN,
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700286 ds1wm_data->int_en_reg_none);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700287
Philipp Zabela23a1752009-02-17 10:06:41 +0100288 if (ds1wm_data->cell->disable)
289 ds1wm_data->cell->disable(ds1wm_data->pdev);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700290}
291
292/* --------------------------------------------------------------------- */
293/* w1 methods */
294
295static u8 ds1wm_read_byte(void *data)
296{
297 struct ds1wm_data *ds1wm_data = data;
298
299 return ds1wm_read(ds1wm_data, 0xff);
300}
301
302static void ds1wm_write_byte(void *data, u8 byte)
303{
304 struct ds1wm_data *ds1wm_data = data;
305
306 ds1wm_write(ds1wm_data, byte);
307}
308
309static u8 ds1wm_reset_bus(void *data)
310{
311 struct ds1wm_data *ds1wm_data = data;
312
313 ds1wm_reset(ds1wm_data);
314
315 return 0;
316}
317
David Friesc30c9b12008-10-15 22:04:38 -0700318static void ds1wm_search(void *data, struct w1_master *master_dev,
319 u8 search_type, w1_slave_found_callback slave_found)
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700320{
321 struct ds1wm_data *ds1wm_data = data;
322 int i;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700323 int ms_discrep_bit = -1;
324 u64 r = 0; /* holds the progress of the search */
325 u64 r_prime, d;
326 unsigned slaves_found = 0;
327 unsigned int pass = 0;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700328
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700329 dev_dbg(&ds1wm_data->pdev->dev, "search begin\n");
330 while (true) {
331 ++pass;
332 if (pass > 100) {
333 dev_dbg(&ds1wm_data->pdev->dev,
334 "too many attempts (100), search aborted\n");
335 return;
336 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700337
NeilBrownb02f8be2012-05-18 15:59:52 +1000338 mutex_lock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700339 if (ds1wm_reset(ds1wm_data)) {
NeilBrownb02f8be2012-05-18 15:59:52 +1000340 mutex_unlock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700341 dev_dbg(&ds1wm_data->pdev->dev,
342 "pass: %d reset error (or no slaves)\n", pass);
343 break;
344 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700345
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700346 dev_dbg(&ds1wm_data->pdev->dev,
347 "pass: %d r : %0#18llx writing SEARCH_ROM\n", pass, r);
348 ds1wm_write(ds1wm_data, search_type);
349 dev_dbg(&ds1wm_data->pdev->dev,
350 "pass: %d entering ASM\n", pass);
351 ds1wm_write_register(ds1wm_data, DS1WM_CMD, DS1WM_CMD_SRA);
352 dev_dbg(&ds1wm_data->pdev->dev,
Anatol Pomozov4907cb72012-09-01 10:31:09 -0700353 "pass: %d beginning nibble loop\n", pass);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700354
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700355 r_prime = 0;
356 d = 0;
357 /* we work one nibble at a time */
358 /* each nibble is interleaved to form a byte */
359 for (i = 0; i < 16; i++) {
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700360
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700361 unsigned char resp, _r, _r_prime, _d;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700362
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700363 _r = (r >> (4*i)) & 0xf;
364 _r = ((_r & 0x1) << 1) |
365 ((_r & 0x2) << 2) |
366 ((_r & 0x4) << 3) |
367 ((_r & 0x8) << 4);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700368
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700369 /* writes _r, then reads back: */
370 resp = ds1wm_read(ds1wm_data, _r);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700371
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700372 if (ds1wm_data->read_error) {
373 dev_err(&ds1wm_data->pdev->dev,
374 "pass: %d nibble: %d read error\n", pass, i);
375 break;
376 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700377
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700378 _r_prime = ((resp & 0x02) >> 1) |
379 ((resp & 0x08) >> 2) |
380 ((resp & 0x20) >> 3) |
381 ((resp & 0x80) >> 4);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700382
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700383 _d = ((resp & 0x01) >> 0) |
384 ((resp & 0x04) >> 1) |
385 ((resp & 0x10) >> 2) |
386 ((resp & 0x40) >> 3);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700387
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700388 r_prime |= (unsigned long long) _r_prime << (i * 4);
389 d |= (unsigned long long) _d << (i * 4);
390
391 }
392 if (ds1wm_data->read_error) {
NeilBrownb02f8be2012-05-18 15:59:52 +1000393 mutex_unlock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700394 dev_err(&ds1wm_data->pdev->dev,
395 "pass: %d read error, retrying\n", pass);
396 break;
397 }
398 dev_dbg(&ds1wm_data->pdev->dev,
399 "pass: %d r\': %0#18llx d:%0#18llx\n",
400 pass, r_prime, d);
401 dev_dbg(&ds1wm_data->pdev->dev,
402 "pass: %d nibble loop complete, exiting ASM\n", pass);
403 ds1wm_write_register(ds1wm_data, DS1WM_CMD, ~DS1WM_CMD_SRA);
404 dev_dbg(&ds1wm_data->pdev->dev,
405 "pass: %d resetting bus\n", pass);
406 ds1wm_reset(ds1wm_data);
NeilBrownb02f8be2012-05-18 15:59:52 +1000407 mutex_unlock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700408 if ((r_prime & ((u64)1 << 63)) && (d & ((u64)1 << 63))) {
409 dev_err(&ds1wm_data->pdev->dev,
410 "pass: %d bus error, retrying\n", pass);
411 continue; /* start over */
412 }
413
414
415 dev_dbg(&ds1wm_data->pdev->dev,
416 "pass: %d found %0#18llx\n", pass, r_prime);
417 slave_found(master_dev, r_prime);
418 ++slaves_found;
419 dev_dbg(&ds1wm_data->pdev->dev,
420 "pass: %d complete, preparing next pass\n", pass);
421
422 /* any discrepency found which we already choose the
423 '1' branch is now is now irrelevant we reveal the
424 next branch with this: */
425 d &= ~r;
426 /* find last bit set, i.e. the most signif. bit set */
427 ms_discrep_bit = fls64(d) - 1;
428 dev_dbg(&ds1wm_data->pdev->dev,
429 "pass: %d new d:%0#18llx MS discrep bit:%d\n",
430 pass, d, ms_discrep_bit);
431
432 /* prev_ms_discrep_bit = ms_discrep_bit;
433 prepare for next ROM search: */
434 if (ms_discrep_bit == -1)
435 break;
436
437 r = (r & ~(~0ull << (ms_discrep_bit))) | 1 << ms_discrep_bit;
438 } /* end while true */
439 dev_dbg(&ds1wm_data->pdev->dev,
440 "pass: %d total: %d search done ms d bit pos: %d\n", pass,
441 slaves_found, ms_discrep_bit);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700442}
443
444/* --------------------------------------------------------------------- */
445
446static struct w1_bus_master ds1wm_master = {
447 .read_byte = ds1wm_read_byte,
448 .write_byte = ds1wm_write_byte,
449 .reset_bus = ds1wm_reset_bus,
450 .search = ds1wm_search,
451};
452
453static int ds1wm_probe(struct platform_device *pdev)
454{
455 struct ds1wm_data *ds1wm_data;
Philipp Zabela23a1752009-02-17 10:06:41 +0100456 struct ds1wm_driver_data *plat;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700457 struct resource *res;
458 int ret;
459
460 if (!pdev)
461 return -ENODEV;
462
Julia Lawalleea21722012-12-07 00:15:23 +0100463 ds1wm_data = devm_kzalloc(&pdev->dev, sizeof(*ds1wm_data), GFP_KERNEL);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700464 if (!ds1wm_data)
465 return -ENOMEM;
466
467 platform_set_drvdata(pdev, ds1wm_data);
468
469 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Julia Lawalleea21722012-12-07 00:15:23 +0100470 if (!res)
471 return -ENXIO;
472 ds1wm_data->map = devm_ioremap(&pdev->dev, res->start,
473 resource_size(res));
474 if (!ds1wm_data->map)
475 return -ENOMEM;
Philipp Zabela23a1752009-02-17 10:06:41 +0100476
477 /* calculate bus shift from mem resource */
478 ds1wm_data->bus_shift = resource_size(res) >> 3;
479
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700480 ds1wm_data->pdev = pdev;
Andres Salomon7e5dc1f2011-03-01 13:55:07 -0800481 ds1wm_data->cell = mfd_get_cell(pdev);
Julia Lawalleea21722012-12-07 00:15:23 +0100482 if (!ds1wm_data->cell)
483 return -ENODEV;
Jingoo Han75f9e932013-11-12 15:11:41 -0800484 plat = dev_get_platdata(&pdev->dev);
Julia Lawalleea21722012-12-07 00:15:23 +0100485 if (!plat)
486 return -ENODEV;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700487
488 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
Julia Lawalleea21722012-12-07 00:15:23 +0100489 if (!res)
490 return -ENXIO;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700491 ds1wm_data->irq = res->start;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700492 ds1wm_data->int_en_reg_none = (plat->active_high ? DS1WM_INTEN_IAS : 0);
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -0700493 ds1wm_data->reset_recover_delay = plat->reset_recover_delay;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700494
Philipp Zabel4aa323b2008-02-07 00:13:22 -0800495 if (res->flags & IORESOURCE_IRQ_HIGHEDGE)
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200496 irq_set_irq_type(ds1wm_data->irq, IRQ_TYPE_EDGE_RISING);
Philipp Zabel4aa323b2008-02-07 00:13:22 -0800497 if (res->flags & IORESOURCE_IRQ_LOWEDGE)
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200498 irq_set_irq_type(ds1wm_data->irq, IRQ_TYPE_EDGE_FALLING);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700499
Julia Lawalleea21722012-12-07 00:15:23 +0100500 ret = devm_request_irq(&pdev->dev, ds1wm_data->irq, ds1wm_isr,
Michael Opdenacker813b4652013-10-13 09:23:27 +0200501 IRQF_SHARED, "ds1wm", ds1wm_data);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700502 if (ret)
Julia Lawalleea21722012-12-07 00:15:23 +0100503 return ret;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700504
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700505 ds1wm_up(ds1wm_data);
506
507 ds1wm_master.data = (void *)ds1wm_data;
508
509 ret = w1_add_master_device(&ds1wm_master);
510 if (ret)
Julia Lawalleea21722012-12-07 00:15:23 +0100511 goto err;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700512
513 return 0;
514
Julia Lawalleea21722012-12-07 00:15:23 +0100515err:
Philipp Zabel7d33ccb2009-02-17 10:09:19 +0100516 ds1wm_down(ds1wm_data);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700517
518 return ret;
519}
520
521#ifdef CONFIG_PM
522static int ds1wm_suspend(struct platform_device *pdev, pm_message_t state)
523{
524 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
525
526 ds1wm_down(ds1wm_data);
527
528 return 0;
529}
530
531static int ds1wm_resume(struct platform_device *pdev)
532{
533 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
534
535 ds1wm_up(ds1wm_data);
536
537 return 0;
538}
539#else
540#define ds1wm_suspend NULL
541#define ds1wm_resume NULL
542#endif
543
544static int ds1wm_remove(struct platform_device *pdev)
545{
546 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
547
548 w1_remove_master_device(&ds1wm_master);
549 ds1wm_down(ds1wm_data);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700550
551 return 0;
552}
553
554static struct platform_driver ds1wm_driver = {
555 .driver = {
556 .name = "ds1wm",
557 },
558 .probe = ds1wm_probe,
559 .remove = ds1wm_remove,
560 .suspend = ds1wm_suspend,
561 .resume = ds1wm_resume
562};
563
564static int __init ds1wm_init(void)
565{
Fjodor Schelichow1fda5692014-06-19 02:52:01 +0200566 pr_info("DS1WM w1 busmaster driver - (c) 2004 Szabolcs Gyurko\n");
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700567 return platform_driver_register(&ds1wm_driver);
568}
569
570static void __exit ds1wm_exit(void)
571{
572 platform_driver_unregister(&ds1wm_driver);
573}
574
575module_init(ds1wm_init);
576module_exit(ds1wm_exit);
577
578MODULE_LICENSE("GPL");
579MODULE_AUTHOR("Szabolcs Gyurko <szabolcs.gyurko@tlt.hu>, "
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700580 "Matt Reimer <mreimer@vpop.net>,"
581 "Jean-Francois Dagenais <dagenaisj@sonatest.com>");
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700582MODULE_DESCRIPTION("DS1WM w1 busmaster driver");