blob: b077b8b427589aa98f0365e4c1c6ae09a579bb74 [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
David Friesd3a8a9d2014-01-15 22:29:26 -0600329 mutex_lock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700330 dev_dbg(&ds1wm_data->pdev->dev, "search begin\n");
331 while (true) {
332 ++pass;
333 if (pass > 100) {
334 dev_dbg(&ds1wm_data->pdev->dev,
335 "too many attempts (100), search aborted\n");
David Friesd3a8a9d2014-01-15 22:29:26 -0600336 break;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700337 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700338
NeilBrownb02f8be2012-05-18 15:59:52 +1000339 mutex_lock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700340 if (ds1wm_reset(ds1wm_data)) {
NeilBrownb02f8be2012-05-18 15:59:52 +1000341 mutex_unlock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700342 dev_dbg(&ds1wm_data->pdev->dev,
343 "pass: %d reset error (or no slaves)\n", pass);
344 break;
345 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700346
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700347 dev_dbg(&ds1wm_data->pdev->dev,
348 "pass: %d r : %0#18llx writing SEARCH_ROM\n", pass, r);
349 ds1wm_write(ds1wm_data, search_type);
350 dev_dbg(&ds1wm_data->pdev->dev,
351 "pass: %d entering ASM\n", pass);
352 ds1wm_write_register(ds1wm_data, DS1WM_CMD, DS1WM_CMD_SRA);
353 dev_dbg(&ds1wm_data->pdev->dev,
Anatol Pomozov4907cb72012-09-01 10:31:09 -0700354 "pass: %d beginning nibble loop\n", pass);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700355
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700356 r_prime = 0;
357 d = 0;
358 /* we work one nibble at a time */
359 /* each nibble is interleaved to form a byte */
360 for (i = 0; i < 16; i++) {
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700361
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700362 unsigned char resp, _r, _r_prime, _d;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700363
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700364 _r = (r >> (4*i)) & 0xf;
365 _r = ((_r & 0x1) << 1) |
366 ((_r & 0x2) << 2) |
367 ((_r & 0x4) << 3) |
368 ((_r & 0x8) << 4);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700369
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700370 /* writes _r, then reads back: */
371 resp = ds1wm_read(ds1wm_data, _r);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700372
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700373 if (ds1wm_data->read_error) {
374 dev_err(&ds1wm_data->pdev->dev,
375 "pass: %d nibble: %d read error\n", pass, i);
376 break;
377 }
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700378
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700379 _r_prime = ((resp & 0x02) >> 1) |
380 ((resp & 0x08) >> 2) |
381 ((resp & 0x20) >> 3) |
382 ((resp & 0x80) >> 4);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700383
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700384 _d = ((resp & 0x01) >> 0) |
385 ((resp & 0x04) >> 1) |
386 ((resp & 0x10) >> 2) |
387 ((resp & 0x40) >> 3);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700388
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700389 r_prime |= (unsigned long long) _r_prime << (i * 4);
390 d |= (unsigned long long) _d << (i * 4);
391
392 }
393 if (ds1wm_data->read_error) {
NeilBrownb02f8be2012-05-18 15:59:52 +1000394 mutex_unlock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700395 dev_err(&ds1wm_data->pdev->dev,
396 "pass: %d read error, retrying\n", pass);
397 break;
398 }
399 dev_dbg(&ds1wm_data->pdev->dev,
400 "pass: %d r\': %0#18llx d:%0#18llx\n",
401 pass, r_prime, d);
402 dev_dbg(&ds1wm_data->pdev->dev,
403 "pass: %d nibble loop complete, exiting ASM\n", pass);
404 ds1wm_write_register(ds1wm_data, DS1WM_CMD, ~DS1WM_CMD_SRA);
405 dev_dbg(&ds1wm_data->pdev->dev,
406 "pass: %d resetting bus\n", pass);
407 ds1wm_reset(ds1wm_data);
NeilBrownb02f8be2012-05-18 15:59:52 +1000408 mutex_unlock(&master_dev->bus_mutex);
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700409 if ((r_prime & ((u64)1 << 63)) && (d & ((u64)1 << 63))) {
410 dev_err(&ds1wm_data->pdev->dev,
411 "pass: %d bus error, retrying\n", pass);
412 continue; /* start over */
413 }
414
415
416 dev_dbg(&ds1wm_data->pdev->dev,
417 "pass: %d found %0#18llx\n", pass, r_prime);
418 slave_found(master_dev, r_prime);
419 ++slaves_found;
420 dev_dbg(&ds1wm_data->pdev->dev,
421 "pass: %d complete, preparing next pass\n", pass);
422
423 /* any discrepency found which we already choose the
424 '1' branch is now is now irrelevant we reveal the
425 next branch with this: */
426 d &= ~r;
427 /* find last bit set, i.e. the most signif. bit set */
428 ms_discrep_bit = fls64(d) - 1;
429 dev_dbg(&ds1wm_data->pdev->dev,
430 "pass: %d new d:%0#18llx MS discrep bit:%d\n",
431 pass, d, ms_discrep_bit);
432
433 /* prev_ms_discrep_bit = ms_discrep_bit;
434 prepare for next ROM search: */
435 if (ms_discrep_bit == -1)
436 break;
437
438 r = (r & ~(~0ull << (ms_discrep_bit))) | 1 << ms_discrep_bit;
439 } /* end while true */
440 dev_dbg(&ds1wm_data->pdev->dev,
441 "pass: %d total: %d search done ms d bit pos: %d\n", pass,
442 slaves_found, ms_discrep_bit);
David Friesd3a8a9d2014-01-15 22:29:26 -0600443 mutex_unlock(&master_dev->bus_mutex);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700444}
445
446/* --------------------------------------------------------------------- */
447
448static struct w1_bus_master ds1wm_master = {
449 .read_byte = ds1wm_read_byte,
450 .write_byte = ds1wm_write_byte,
451 .reset_bus = ds1wm_reset_bus,
452 .search = ds1wm_search,
453};
454
455static int ds1wm_probe(struct platform_device *pdev)
456{
457 struct ds1wm_data *ds1wm_data;
Philipp Zabela23a1752009-02-17 10:06:41 +0100458 struct ds1wm_driver_data *plat;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700459 struct resource *res;
460 int ret;
461
462 if (!pdev)
463 return -ENODEV;
464
Julia Lawalleea21722012-12-07 00:15:23 +0100465 ds1wm_data = devm_kzalloc(&pdev->dev, sizeof(*ds1wm_data), GFP_KERNEL);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700466 if (!ds1wm_data)
467 return -ENOMEM;
468
469 platform_set_drvdata(pdev, ds1wm_data);
470
471 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Julia Lawalleea21722012-12-07 00:15:23 +0100472 if (!res)
473 return -ENXIO;
474 ds1wm_data->map = devm_ioremap(&pdev->dev, res->start,
475 resource_size(res));
476 if (!ds1wm_data->map)
477 return -ENOMEM;
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);
Julia Lawalleea21722012-12-07 00:15:23 +0100484 if (!ds1wm_data->cell)
485 return -ENODEV;
Jingoo Han75f9e932013-11-12 15:11:41 -0800486 plat = dev_get_platdata(&pdev->dev);
Julia Lawalleea21722012-12-07 00:15:23 +0100487 if (!plat)
488 return -ENODEV;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700489
490 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
Julia Lawalleea21722012-12-07 00:15:23 +0100491 if (!res)
492 return -ENXIO;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700493 ds1wm_data->irq = res->start;
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700494 ds1wm_data->int_en_reg_none = (plat->active_high ? DS1WM_INTEN_IAS : 0);
Jean-François Dagenaisf607e7f2011-07-08 15:39:44 -0700495 ds1wm_data->reset_recover_delay = plat->reset_recover_delay;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700496
Philipp Zabel4aa323b2008-02-07 00:13:22 -0800497 if (res->flags & IORESOURCE_IRQ_HIGHEDGE)
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200498 irq_set_irq_type(ds1wm_data->irq, IRQ_TYPE_EDGE_RISING);
Philipp Zabel4aa323b2008-02-07 00:13:22 -0800499 if (res->flags & IORESOURCE_IRQ_LOWEDGE)
Thomas Gleixnerdced35a2011-03-28 17:49:12 +0200500 irq_set_irq_type(ds1wm_data->irq, IRQ_TYPE_EDGE_FALLING);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700501
Julia Lawalleea21722012-12-07 00:15:23 +0100502 ret = devm_request_irq(&pdev->dev, ds1wm_data->irq, ds1wm_isr,
Michael Opdenacker813b4652013-10-13 09:23:27 +0200503 IRQF_SHARED, "ds1wm", ds1wm_data);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700504 if (ret)
Julia Lawalleea21722012-12-07 00:15:23 +0100505 return ret;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700506
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700507 ds1wm_up(ds1wm_data);
508
509 ds1wm_master.data = (void *)ds1wm_data;
510
511 ret = w1_add_master_device(&ds1wm_master);
512 if (ret)
Julia Lawalleea21722012-12-07 00:15:23 +0100513 goto err;
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700514
515 return 0;
516
Julia Lawalleea21722012-12-07 00:15:23 +0100517err:
Philipp Zabel7d33ccb2009-02-17 10:09:19 +0100518 ds1wm_down(ds1wm_data);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700519
520 return ret;
521}
522
523#ifdef CONFIG_PM
524static int ds1wm_suspend(struct platform_device *pdev, pm_message_t state)
525{
526 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
527
528 ds1wm_down(ds1wm_data);
529
530 return 0;
531}
532
533static int ds1wm_resume(struct platform_device *pdev)
534{
535 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
536
537 ds1wm_up(ds1wm_data);
538
539 return 0;
540}
541#else
542#define ds1wm_suspend NULL
543#define ds1wm_resume NULL
544#endif
545
546static int ds1wm_remove(struct platform_device *pdev)
547{
548 struct ds1wm_data *ds1wm_data = platform_get_drvdata(pdev);
549
550 w1_remove_master_device(&ds1wm_master);
551 ds1wm_down(ds1wm_data);
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700552
553 return 0;
554}
555
556static struct platform_driver ds1wm_driver = {
557 .driver = {
558 .name = "ds1wm",
559 },
560 .probe = ds1wm_probe,
561 .remove = ds1wm_remove,
562 .suspend = ds1wm_suspend,
563 .resume = ds1wm_resume
564};
565
566static int __init ds1wm_init(void)
567{
568 printk("DS1WM w1 busmaster driver - (c) 2004 Szabolcs Gyurko\n");
569 return platform_driver_register(&ds1wm_driver);
570}
571
572static void __exit ds1wm_exit(void)
573{
574 platform_driver_unregister(&ds1wm_driver);
575}
576
577module_init(ds1wm_init);
578module_exit(ds1wm_exit);
579
580MODULE_LICENSE("GPL");
581MODULE_AUTHOR("Szabolcs Gyurko <szabolcs.gyurko@tlt.hu>, "
Jean-François Dagenais26a6afb2011-05-26 16:26:02 -0700582 "Matt Reimer <mreimer@vpop.net>,"
583 "Jean-Francois Dagenais <dagenaisj@sonatest.com>");
akpm@linux-foundation.orgf19b1212007-05-08 00:31:22 -0700584MODULE_DESCRIPTION("DS1WM w1 busmaster driver");