aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/w1/slaves
diff options
context:
space:
mode:
authorEvgeniy Polyakov <johnpol@2ka.mipt.ru>2005-12-06 05:38:28 -0500
committerGreg Kroah-Hartman <gregkh@suse.de>2006-03-23 20:28:11 -0500
commitbd529cfb40c427d5b5aae0d315afb9f0a1da5e76 (patch)
tree54de1d9860defa3c4938fd96246caffe089b9f3a /drivers/w1/slaves
parentccd6994000fb6d08ee1be8a7fa20c8d602a2267d (diff)
[PATCH] W1: Move w1 bus master code into 'w1/masters' and move w1 slave code into 'w1/slaves'
Signed-off-by: Ben Gardner <bgardner@wabtec.com> Signed-off-by: Evgeniy Polyakov <johnpol@2ka.mipt.ru> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/w1/slaves')
-rw-r--r--drivers/w1/slaves/Kconfig38
-rw-r--r--drivers/w1/slaves/Makefile12
-rw-r--r--drivers/w1/slaves/w1_ds2433.c329
-rw-r--r--drivers/w1/slaves/w1_smem.c71
-rw-r--r--drivers/w1/slaves/w1_therm.c268
5 files changed, 718 insertions, 0 deletions
diff --git a/drivers/w1/slaves/Kconfig b/drivers/w1/slaves/Kconfig
new file mode 100644
index 000000000000..f9d4c91fc533
--- /dev/null
+++ b/drivers/w1/slaves/Kconfig
@@ -0,0 +1,38 @@
1#
2# 1-wire slaves configuration
3#
4
5menu "1-wire Slaves"
6 depends on W1
7
8config W1_SLAVE_THERM
9 tristate "Thermal family implementation"
10 depends on W1
11 help
12 Say Y here if you want to connect 1-wire thermal sensors to you
13 wire.
14
15config W1_SLAVE_SMEM
16 tristate "Simple 64bit memory family implementation"
17 depends on W1
18 help
19 Say Y here if you want to connect 1-wire
20 simple 64bit memory rom(ds2401/ds2411/ds1990*) to you wire.
21
22config W1_SLAVE_DS2433
23 tristate "4kb EEPROM family support (DS2433)"
24 depends on W1
25 help
26 Say Y here if you want to use a 1-wire
27 4kb EEPROM family device (DS2433).
28
29config W1_SLAVE_DS2433_CRC
30 bool "Protect DS2433 data with a CRC16"
31 depends on W1_DS2433
32 select CRC16
33 help
34 Say Y here to protect DS2433 data with a CRC16.
35 Each block has 30 bytes of data and a two byte CRC16.
36 Full block writes are only allowed if the CRC is valid.
37
38endmenu
diff --git a/drivers/w1/slaves/Makefile b/drivers/w1/slaves/Makefile
new file mode 100644
index 000000000000..70e21e2d70c3
--- /dev/null
+++ b/drivers/w1/slaves/Makefile
@@ -0,0 +1,12 @@
1#
2# Makefile for the Dallas's 1-wire slaves.
3#
4
5ifeq ($(CONFIG_W1_SLAVE_DS2433_CRC), y)
6EXTRA_CFLAGS += -DCONFIG_W1_F23_CRC
7endif
8
9obj-$(CONFIG_W1_SLAVE_THERM) += w1_therm.o
10obj-$(CONFIG_W1_SLAVE_SMEM) += w1_smem.o
11obj-$(CONFIG_W1_SLAVE_DS2433) += w1_ds2433.o
12
diff --git a/drivers/w1/slaves/w1_ds2433.c b/drivers/w1/slaves/w1_ds2433.c
new file mode 100644
index 000000000000..fb118be789ea
--- /dev/null
+++ b/drivers/w1/slaves/w1_ds2433.c
@@ -0,0 +1,329 @@
1/*
2 * w1_ds2433.c - w1 family 23 (DS2433) driver
3 *
4 * Copyright (c) 2005 Ben Gardner <bgardner@wabtec.com>
5 *
6 * This source code is licensed under the GNU General Public License,
7 * Version 2. See the file COPYING for more details.
8 */
9
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/moduleparam.h>
13#include <linux/device.h>
14#include <linux/types.h>
15#include <linux/delay.h>
16#ifdef CONFIG_W1_F23_CRC
17#include <linux/crc16.h>
18
19#define CRC16_INIT 0
20#define CRC16_VALID 0xb001
21
22#endif
23
24#include "../w1.h"
25#include "../w1_io.h"
26#include "../w1_int.h"
27#include "../w1_family.h"
28
29MODULE_LICENSE("GPL");
30MODULE_AUTHOR("Ben Gardner <bgardner@wabtec.com>");
31MODULE_DESCRIPTION("w1 family 23 driver for DS2433, 4kb EEPROM");
32
33#define W1_EEPROM_SIZE 512
34#define W1_PAGE_COUNT 16
35#define W1_PAGE_SIZE 32
36#define W1_PAGE_BITS 5
37#define W1_PAGE_MASK 0x1F
38
39#define W1_F23_TIME 300
40
41#define W1_F23_READ_EEPROM 0xF0
42#define W1_F23_WRITE_SCRATCH 0x0F
43#define W1_F23_READ_SCRATCH 0xAA
44#define W1_F23_COPY_SCRATCH 0x55
45
46struct w1_f23_data {
47 u8 memory[W1_EEPROM_SIZE];
48 u32 validcrc;
49};
50
51/**
52 * Check the file size bounds and adjusts count as needed.
53 * This would not be needed if the file size didn't reset to 0 after a write.
54 */
55static inline size_t w1_f23_fix_count(loff_t off, size_t count, size_t size)
56{
57 if (off > size)
58 return 0;
59
60 if ((off + count) > size)
61 return (size - off);
62
63 return count;
64}
65
66#ifdef CONFIG_W1_F23_CRC
67static int w1_f23_refresh_block(struct w1_slave *sl, struct w1_f23_data *data,
68 int block)
69{
70 u8 wrbuf[3];
71 int off = block * W1_PAGE_SIZE;
72
73 if (data->validcrc & (1 << block))
74 return 0;
75
76 if (w1_reset_select_slave(sl)) {
77 data->validcrc = 0;
78 return -EIO;
79 }
80
81 wrbuf[0] = W1_F23_READ_EEPROM;
82 wrbuf[1] = off & 0xff;
83 wrbuf[2] = off >> 8;
84 w1_write_block(sl->master, wrbuf, 3);
85 w1_read_block(sl->master, &data->memory[off], W1_PAGE_SIZE);
86
87 /* cache the block if the CRC is valid */
88 if (crc16(CRC16_INIT, &data->memory[off], W1_PAGE_SIZE) == CRC16_VALID)
89 data->validcrc |= (1 << block);
90
91 return 0;
92}
93#endif /* CONFIG_W1_F23_CRC */
94
95static ssize_t w1_f23_read_bin(struct kobject *kobj, char *buf, loff_t off,
96 size_t count)
97{
98 struct w1_slave *sl = kobj_to_w1_slave(kobj);
99#ifdef CONFIG_W1_F23_CRC
100 struct w1_f23_data *data = sl->family_data;
101 int i, min_page, max_page;
102#else
103 u8 wrbuf[3];
104#endif
105
106 if ((count = w1_f23_fix_count(off, count, W1_EEPROM_SIZE)) == 0)
107 return 0;
108
109 atomic_inc(&sl->refcnt);
110 if (down_interruptible(&sl->master->mutex)) {
111 count = 0;
112 goto out_dec;
113 }
114
115#ifdef CONFIG_W1_F23_CRC
116
117 min_page = (off >> W1_PAGE_BITS);
118 max_page = (off + count - 1) >> W1_PAGE_BITS;
119 for (i = min_page; i <= max_page; i++) {
120 if (w1_f23_refresh_block(sl, data, i)) {
121 count = -EIO;
122 goto out_up;
123 }
124 }
125 memcpy(buf, &data->memory[off], count);
126
127#else /* CONFIG_W1_F23_CRC */
128
129 /* read directly from the EEPROM */
130 if (w1_reset_select_slave(sl)) {
131 count = -EIO;
132 goto out_up;
133 }
134
135 wrbuf[0] = W1_F23_READ_EEPROM;
136 wrbuf[1] = off & 0xff;
137 wrbuf[2] = off >> 8;
138 w1_write_block(sl->master, wrbuf, 3);
139 w1_read_block(sl->master, buf, count);
140
141#endif /* CONFIG_W1_F23_CRC */
142
143out_up:
144 up(&sl->master->mutex);
145out_dec:
146 atomic_dec(&sl->refcnt);
147
148 return count;
149}
150
151/**
152 * Writes to the scratchpad and reads it back for verification.
153 * Then copies the scratchpad to EEPROM.
154 * The data must be on one page.
155 * The master must be locked.
156 *
157 * @param sl The slave structure
158 * @param addr Address for the write
159 * @param len length must be <= (W1_PAGE_SIZE - (addr & W1_PAGE_MASK))
160 * @param data The data to write
161 * @return 0=Success -1=failure
162 */
163static int w1_f23_write(struct w1_slave *sl, int addr, int len, const u8 *data)
164{
165 u8 wrbuf[4];
166 u8 rdbuf[W1_PAGE_SIZE + 3];
167 u8 es = (addr + len - 1) & 0x1f;
168
169 /* Write the data to the scratchpad */
170 if (w1_reset_select_slave(sl))
171 return -1;
172
173 wrbuf[0] = W1_F23_WRITE_SCRATCH;
174 wrbuf[1] = addr & 0xff;
175 wrbuf[2] = addr >> 8;
176
177 w1_write_block(sl->master, wrbuf, 3);
178 w1_write_block(sl->master, data, len);
179
180 /* Read the scratchpad and verify */
181 if (w1_reset_select_slave(sl))
182 return -1;
183
184 w1_write_8(sl->master, W1_F23_READ_SCRATCH);
185 w1_read_block(sl->master, rdbuf, len + 3);
186
187 /* Compare what was read against the data written */
188 if ((rdbuf[0] != wrbuf[1]) || (rdbuf[1] != wrbuf[2]) ||
189 (rdbuf[2] != es) || (memcmp(data, &rdbuf[3], len) != 0))
190 return -1;
191
192 /* Copy the scratchpad to EEPROM */
193 if (w1_reset_select_slave(sl))
194 return -1;
195
196 wrbuf[0] = W1_F23_COPY_SCRATCH;
197 wrbuf[3] = es;
198 w1_write_block(sl->master, wrbuf, 4);
199
200 /* Sleep for 5 ms to wait for the write to complete */
201 msleep(5);
202
203 /* Reset the bus to wake up the EEPROM (this may not be needed) */
204 w1_reset_bus(sl->master);
205
206 return 0;
207}
208
209static ssize_t w1_f23_write_bin(struct kobject *kobj, char *buf, loff_t off,
210 size_t count)
211{
212 struct w1_slave *sl = kobj_to_w1_slave(kobj);
213 int addr, len, idx;
214
215 if ((count = w1_f23_fix_count(off, count, W1_EEPROM_SIZE)) == 0)
216 return 0;
217
218#ifdef CONFIG_W1_F23_CRC
219 /* can only write full blocks in cached mode */
220 if ((off & W1_PAGE_MASK) || (count & W1_PAGE_MASK)) {
221 dev_err(&sl->dev, "invalid offset/count off=%d cnt=%zd\n",
222 (int)off, count);
223 return -EINVAL;
224 }
225
226 /* make sure the block CRCs are valid */
227 for (idx = 0; idx < count; idx += W1_PAGE_SIZE) {
228 if (crc16(CRC16_INIT, &buf[idx], W1_PAGE_SIZE) != CRC16_VALID) {
229 dev_err(&sl->dev, "bad CRC at offset %d\n", (int)off);
230 return -EINVAL;
231 }
232 }
233#endif /* CONFIG_W1_F23_CRC */
234
235 atomic_inc(&sl->refcnt);
236 if (down_interruptible(&sl->master->mutex)) {
237 count = 0;
238 goto out_dec;
239 }
240
241 /* Can only write data to one page at a time */
242 idx = 0;
243 while (idx < count) {
244 addr = off + idx;
245 len = W1_PAGE_SIZE - (addr & W1_PAGE_MASK);
246 if (len > (count - idx))
247 len = count - idx;
248
249 if (w1_f23_write(sl, addr, len, &buf[idx]) < 0) {
250 count = -EIO;
251 goto out_up;
252 }
253 idx += len;
254 }
255
256out_up:
257 up(&sl->master->mutex);
258out_dec:
259 atomic_dec(&sl->refcnt);
260
261 return count;
262}
263
264static struct bin_attribute w1_f23_bin_attr = {
265 .attr = {
266 .name = "eeprom",
267 .mode = S_IRUGO | S_IWUSR,
268 .owner = THIS_MODULE,
269 },
270 .size = W1_EEPROM_SIZE,
271 .read = w1_f23_read_bin,
272 .write = w1_f23_write_bin,
273};
274
275static int w1_f23_add_slave(struct w1_slave *sl)
276{
277 int err;
278#ifdef CONFIG_W1_F23_CRC
279 struct w1_f23_data *data;
280
281 data = kmalloc(sizeof(struct w1_f23_data), GFP_KERNEL);
282 if (!data)
283 return -ENOMEM;
284 memset(data, 0, sizeof(struct w1_f23_data));
285 sl->family_data = data;
286
287#endif /* CONFIG_W1_F23_CRC */
288
289 err = sysfs_create_bin_file(&sl->dev.kobj, &w1_f23_bin_attr);
290
291#ifdef CONFIG_W1_F23_CRC
292 if (err)
293 kfree(data);
294#endif /* CONFIG_W1_F23_CRC */
295
296 return err;
297}
298
299static void w1_f23_remove_slave(struct w1_slave *sl)
300{
301#ifdef CONFIG_W1_F23_CRC
302 kfree(sl->family_data);
303 sl->family_data = NULL;
304#endif /* CONFIG_W1_F23_CRC */
305 sysfs_remove_bin_file(&sl->dev.kobj, &w1_f23_bin_attr);
306}
307
308static struct w1_family_ops w1_f23_fops = {
309 .add_slave = w1_f23_add_slave,
310 .remove_slave = w1_f23_remove_slave,
311};
312
313static struct w1_family w1_family_23 = {
314 .fid = W1_EEPROM_DS2433,
315 .fops = &w1_f23_fops,
316};
317
318static int __init w1_f23_init(void)
319{
320 return w1_register_family(&w1_family_23);
321}
322
323static void __exit w1_f23_fini(void)
324{
325 w1_unregister_family(&w1_family_23);
326}
327
328module_init(w1_f23_init);
329module_exit(w1_f23_fini);
diff --git a/drivers/w1/slaves/w1_smem.c b/drivers/w1/slaves/w1_smem.c
new file mode 100644
index 000000000000..c6d3be54f94c
--- /dev/null
+++ b/drivers/w1/slaves/w1_smem.c
@@ -0,0 +1,71 @@
1/*
2 * w1_smem.c
3 *
4 * Copyright (c) 2004 Evgeniy Polyakov <johnpol@2ka.mipt.ru>
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the smems of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#include <asm/types.h>
23
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/device.h>
28#include <linux/types.h>
29
30#include "../w1.h"
31#include "../w1_io.h"
32#include "../w1_int.h"
33#include "../w1_family.h"
34
35MODULE_LICENSE("GPL");
36MODULE_AUTHOR("Evgeniy Polyakov <johnpol@2ka.mipt.ru>");
37MODULE_DESCRIPTION("Driver for 1-wire Dallas network protocol, 64bit memory family.");
38
39static struct w1_family w1_smem_family_01 = {
40 .fid = W1_FAMILY_SMEM_01,
41};
42
43static struct w1_family w1_smem_family_81 = {
44 .fid = W1_FAMILY_SMEM_81,
45};
46
47static int __init w1_smem_init(void)
48{
49 int err;
50
51 err = w1_register_family(&w1_smem_family_01);
52 if (err)
53 return err;
54
55 err = w1_register_family(&w1_smem_family_81);
56 if (err) {
57 w1_unregister_family(&w1_smem_family_01);
58 return err;
59 }
60
61 return 0;
62}
63
64static void __exit w1_smem_fini(void)
65{
66 w1_unregister_family(&w1_smem_family_01);
67 w1_unregister_family(&w1_smem_family_81);
68}
69
70module_init(w1_smem_init);
71module_exit(w1_smem_fini);
diff --git a/drivers/w1/slaves/w1_therm.c b/drivers/w1/slaves/w1_therm.c
new file mode 100644
index 000000000000..536d16d78de7
--- /dev/null
+++ b/drivers/w1/slaves/w1_therm.c
@@ -0,0 +1,268 @@
1/*
2 * w1_therm.c
3 *
4 * Copyright (c) 2004 Evgeniy Polyakov <johnpol@2ka.mipt.ru>
5 *
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the therms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 */
21
22#include <asm/types.h>
23
24#include <linux/kernel.h>
25#include <linux/module.h>
26#include <linux/moduleparam.h>
27#include <linux/device.h>
28#include <linux/types.h>
29#include <linux/delay.h>
30
31#include "../w1.h"
32#include "../w1_io.h"
33#include "../w1_int.h"
34#include "../w1_family.h"
35
36MODULE_LICENSE("GPL");
37MODULE_AUTHOR("Evgeniy Polyakov <johnpol@2ka.mipt.ru>");
38MODULE_DESCRIPTION("Driver for 1-wire Dallas network protocol, temperature family.");
39
40static u8 bad_roms[][9] = {
41 {0xaa, 0x00, 0x4b, 0x46, 0xff, 0xff, 0x0c, 0x10, 0x87},
42 {}
43 };
44
45static ssize_t w1_therm_read_bin(struct kobject *, char *, loff_t, size_t);
46
47static struct bin_attribute w1_therm_bin_attr = {
48 .attr = {
49 .name = "w1_slave",
50 .mode = S_IRUGO,
51 .owner = THIS_MODULE,
52 },
53 .size = W1_SLAVE_DATA_SIZE,
54 .read = w1_therm_read_bin,
55};
56
57static int w1_therm_add_slave(struct w1_slave *sl)
58{
59 return sysfs_create_bin_file(&sl->dev.kobj, &w1_therm_bin_attr);
60}
61
62static void w1_therm_remove_slave(struct w1_slave *sl)
63{
64 sysfs_remove_bin_file(&sl->dev.kobj, &w1_therm_bin_attr);
65}
66
67static struct w1_family_ops w1_therm_fops = {
68 .add_slave = w1_therm_add_slave,
69 .remove_slave = w1_therm_remove_slave,
70};
71
72static struct w1_family w1_therm_family_DS18S20 = {
73 .fid = W1_THERM_DS18S20,
74 .fops = &w1_therm_fops,
75};
76
77static struct w1_family w1_therm_family_DS18B20 = {
78 .fid = W1_THERM_DS18B20,
79 .fops = &w1_therm_fops,
80};
81
82static struct w1_family w1_therm_family_DS1822 = {
83 .fid = W1_THERM_DS1822,
84 .fops = &w1_therm_fops,
85};
86
87struct w1_therm_family_converter
88{
89 u8 broken;
90 u16 reserved;
91 struct w1_family *f;
92 int (*convert)(u8 rom[9]);
93};
94
95static inline int w1_DS18B20_convert_temp(u8 rom[9]);
96static inline int w1_DS18S20_convert_temp(u8 rom[9]);
97
98static struct w1_therm_family_converter w1_therm_families[] = {
99 {
100 .f = &w1_therm_family_DS18S20,
101 .convert = w1_DS18S20_convert_temp
102 },
103 {
104 .f = &w1_therm_family_DS1822,
105 .convert = w1_DS18B20_convert_temp
106 },
107 {
108 .f = &w1_therm_family_DS18B20,
109 .convert = w1_DS18B20_convert_temp
110 },
111};
112
113static inline int w1_DS18B20_convert_temp(u8 rom[9])
114{
115 int t = (rom[1] << 8) | rom[0];
116 t /= 16;
117 return t;
118}
119
120static inline int w1_DS18S20_convert_temp(u8 rom[9])
121{
122 int t, h;
123
124 if (!rom[7])
125 return 0;
126
127 if (rom[1] == 0)
128 t = ((s32)rom[0] >> 1)*1000;
129 else
130 t = 1000*(-1*(s32)(0x100-rom[0]) >> 1);
131
132 t -= 250;
133 h = 1000*((s32)rom[7] - (s32)rom[6]);
134 h /= (s32)rom[7];
135 t += h;
136
137 return t;
138}
139
140static inline int w1_convert_temp(u8 rom[9], u8 fid)
141{
142 int i;
143
144 for (i=0; i<sizeof(w1_therm_families)/sizeof(w1_therm_families[0]); ++i)
145 if (w1_therm_families[i].f->fid == fid)
146 return w1_therm_families[i].convert(rom);
147
148 return 0;
149}
150
151static int w1_therm_check_rom(u8 rom[9])
152{
153 int i;
154
155 for (i=0; i<sizeof(bad_roms)/9; ++i)
156 if (!memcmp(bad_roms[i], rom, 9))
157 return 1;
158
159 return 0;
160}
161
162static ssize_t w1_therm_read_bin(struct kobject *kobj, char *buf, loff_t off, size_t count)
163{
164 struct w1_slave *sl = kobj_to_w1_slave(kobj);
165 struct w1_master *dev = sl->master;
166 u8 rom[9], crc, verdict;
167 int i, max_trying = 10;
168
169 atomic_inc(&sl->refcnt);
170 smp_mb__after_atomic_inc();
171 if (down_interruptible(&sl->master->mutex)) {
172 count = 0;
173 goto out_dec;
174 }
175
176 if (off > W1_SLAVE_DATA_SIZE) {
177 count = 0;
178 goto out;
179 }
180 if (off + count > W1_SLAVE_DATA_SIZE) {
181 count = 0;
182 goto out;
183 }
184
185 memset(buf, 0, count);
186 memset(rom, 0, sizeof(rom));
187
188 count = 0;
189 verdict = 0;
190 crc = 0;
191
192 while (max_trying--) {
193 if (!w1_reset_select_slave(sl)) {
194 int count = 0;
195 unsigned int tm = 750;
196
197 w1_write_8(dev, W1_CONVERT_TEMP);
198
199 while (tm) {
200 tm = msleep_interruptible(tm);
201 if (signal_pending(current))
202 flush_signals(current);
203 }
204
205 if (!w1_reset_select_slave(sl)) {
206
207 w1_write_8(dev, W1_READ_SCRATCHPAD);
208 if ((count = w1_read_block(dev, rom, 9)) != 9) {
209 dev_warn(&dev->dev, "w1_read_block() returned %d instead of 9.\n", count);
210 }
211
212 crc = w1_calc_crc8(rom, 8);
213
214 if (rom[8] == crc && rom[0])
215 verdict = 1;
216 }
217 }
218
219 if (!w1_therm_check_rom(rom))
220 break;
221 }
222
223 for (i = 0; i < 9; ++i)
224 count += sprintf(buf + count, "%02x ", rom[i]);
225 count += sprintf(buf + count, ": crc=%02x %s\n",
226 crc, (verdict) ? "YES" : "NO");
227 if (verdict)
228 memcpy(sl->rom, rom, sizeof(sl->rom));
229 else
230 dev_warn(&dev->dev, "18S20 doesn't respond to CONVERT_TEMP.\n");
231
232 for (i = 0; i < 9; ++i)
233 count += sprintf(buf + count, "%02x ", sl->rom[i]);
234
235 count += sprintf(buf + count, "t=%d\n", w1_convert_temp(rom, sl->family->fid));
236out:
237 up(&dev->mutex);
238out_dec:
239 smp_mb__before_atomic_inc();
240 atomic_dec(&sl->refcnt);
241
242 return count;
243}
244
245static int __init w1_therm_init(void)
246{
247 int err, i;
248
249 for (i=0; i<sizeof(w1_therm_families)/sizeof(w1_therm_families[0]); ++i) {
250 err = w1_register_family(w1_therm_families[i].f);
251 if (err)
252 w1_therm_families[i].broken = 1;
253 }
254
255 return 0;
256}
257
258static void __exit w1_therm_fini(void)
259{
260 int i;
261
262 for (i=0; i<sizeof(w1_therm_families)/sizeof(w1_therm_families[0]); ++i)
263 if (!w1_therm_families[i].broken)
264 w1_unregister_family(w1_therm_families[i].f);
265}
266
267module_init(w1_therm_init);
268module_exit(w1_therm_fini);