iwlwifi: Name fix for MPDU density for TX aggregation
[firewire-audio.git] / drivers / w1 / slaves / w1_ds2433.c
blob1394471488228d2f747475256a3236103a7973f4
1 /*
2 * w1_ds2433.c - w1 family 23 (DS2433) driver
4 * Copyright (c) 2005 Ben Gardner <bgardner@wabtec.com>
6 * This source code is licensed under the GNU General Public License,
7 * Version 2. See the file COPYING for more details.
8 */
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_SLAVE_DS2433_CRC
17 #include <linux/crc16.h>
19 #define CRC16_INIT 0
20 #define CRC16_VALID 0xb001
22 #endif
24 #include "../w1.h"
25 #include "../w1_int.h"
26 #include "../w1_family.h"
28 MODULE_LICENSE("GPL");
29 MODULE_AUTHOR("Ben Gardner <bgardner@wabtec.com>");
30 MODULE_DESCRIPTION("w1 family 23 driver for DS2433, 4kb EEPROM");
32 #define W1_EEPROM_SIZE 512
33 #define W1_PAGE_COUNT 16
34 #define W1_PAGE_SIZE 32
35 #define W1_PAGE_BITS 5
36 #define W1_PAGE_MASK 0x1F
38 #define W1_F23_TIME 300
40 #define W1_F23_READ_EEPROM 0xF0
41 #define W1_F23_WRITE_SCRATCH 0x0F
42 #define W1_F23_READ_SCRATCH 0xAA
43 #define W1_F23_COPY_SCRATCH 0x55
45 struct w1_f23_data {
46 u8 memory[W1_EEPROM_SIZE];
47 u32 validcrc;
50 /**
51 * Check the file size bounds and adjusts count as needed.
52 * This would not be needed if the file size didn't reset to 0 after a write.
54 static inline size_t w1_f23_fix_count(loff_t off, size_t count, size_t size)
56 if (off > size)
57 return 0;
59 if ((off + count) > size)
60 return (size - off);
62 return count;
65 #ifdef CONFIG_W1_SLAVE_DS2433_CRC
66 static int w1_f23_refresh_block(struct w1_slave *sl, struct w1_f23_data *data,
67 int block)
69 u8 wrbuf[3];
70 int off = block * W1_PAGE_SIZE;
72 if (data->validcrc & (1 << block))
73 return 0;
75 if (w1_reset_select_slave(sl)) {
76 data->validcrc = 0;
77 return -EIO;
80 wrbuf[0] = W1_F23_READ_EEPROM;
81 wrbuf[1] = off & 0xff;
82 wrbuf[2] = off >> 8;
83 w1_write_block(sl->master, wrbuf, 3);
84 w1_read_block(sl->master, &data->memory[off], W1_PAGE_SIZE);
86 /* cache the block if the CRC is valid */
87 if (crc16(CRC16_INIT, &data->memory[off], W1_PAGE_SIZE) == CRC16_VALID)
88 data->validcrc |= (1 << block);
90 return 0;
92 #endif /* CONFIG_W1_SLAVE_DS2433_CRC */
94 static ssize_t w1_f23_read_bin(struct kobject *kobj,
95 struct bin_attribute *bin_attr,
96 char *buf, loff_t off, size_t count)
98 struct w1_slave *sl = kobj_to_w1_slave(kobj);
99 #ifdef CONFIG_W1_SLAVE_DS2433_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
106 if ((count = w1_f23_fix_count(off, count, W1_EEPROM_SIZE)) == 0)
107 return 0;
109 mutex_lock(&sl->master->mutex);
111 #ifdef CONFIG_W1_SLAVE_DS2433_CRC
113 min_page = (off >> W1_PAGE_BITS);
114 max_page = (off + count - 1) >> W1_PAGE_BITS;
115 for (i = min_page; i <= max_page; i++) {
116 if (w1_f23_refresh_block(sl, data, i)) {
117 count = -EIO;
118 goto out_up;
121 memcpy(buf, &data->memory[off], count);
123 #else /* CONFIG_W1_SLAVE_DS2433_CRC */
125 /* read directly from the EEPROM */
126 if (w1_reset_select_slave(sl)) {
127 count = -EIO;
128 goto out_up;
131 wrbuf[0] = W1_F23_READ_EEPROM;
132 wrbuf[1] = off & 0xff;
133 wrbuf[2] = off >> 8;
134 w1_write_block(sl->master, wrbuf, 3);
135 w1_read_block(sl->master, buf, count);
137 #endif /* CONFIG_W1_SLAVE_DS2433_CRC */
139 out_up:
140 mutex_unlock(&sl->master->mutex);
142 return count;
146 * Writes to the scratchpad and reads it back for verification.
147 * Then copies the scratchpad to EEPROM.
148 * The data must be on one page.
149 * The master must be locked.
151 * @param sl The slave structure
152 * @param addr Address for the write
153 * @param len length must be <= (W1_PAGE_SIZE - (addr & W1_PAGE_MASK))
154 * @param data The data to write
155 * @return 0=Success -1=failure
157 static int w1_f23_write(struct w1_slave *sl, int addr, int len, const u8 *data)
159 #ifdef CONFIG_W1_SLAVE_DS2433_CRC
160 struct w1_f23_data *f23 = sl->family_data;
161 #endif
162 u8 wrbuf[4];
163 u8 rdbuf[W1_PAGE_SIZE + 3];
164 u8 es = (addr + len - 1) & 0x1f;
166 /* Write the data to the scratchpad */
167 if (w1_reset_select_slave(sl))
168 return -1;
170 wrbuf[0] = W1_F23_WRITE_SCRATCH;
171 wrbuf[1] = addr & 0xff;
172 wrbuf[2] = addr >> 8;
174 w1_write_block(sl->master, wrbuf, 3);
175 w1_write_block(sl->master, data, len);
177 /* Read the scratchpad and verify */
178 if (w1_reset_select_slave(sl))
179 return -1;
181 w1_write_8(sl->master, W1_F23_READ_SCRATCH);
182 w1_read_block(sl->master, rdbuf, len + 3);
184 /* Compare what was read against the data written */
185 if ((rdbuf[0] != wrbuf[1]) || (rdbuf[1] != wrbuf[2]) ||
186 (rdbuf[2] != es) || (memcmp(data, &rdbuf[3], len) != 0))
187 return -1;
189 /* Copy the scratchpad to EEPROM */
190 if (w1_reset_select_slave(sl))
191 return -1;
193 wrbuf[0] = W1_F23_COPY_SCRATCH;
194 wrbuf[3] = es;
195 w1_write_block(sl->master, wrbuf, 4);
197 /* Sleep for 5 ms to wait for the write to complete */
198 msleep(5);
200 /* Reset the bus to wake up the EEPROM (this may not be needed) */
201 w1_reset_bus(sl->master);
202 #ifdef CONFIG_W1_SLAVE_DS2433_CRC
203 f23->validcrc &= ~(1 << (addr >> W1_PAGE_BITS));
204 #endif
205 return 0;
208 static ssize_t w1_f23_write_bin(struct kobject *kobj,
209 struct bin_attribute *bin_attr,
210 char *buf, loff_t off, size_t count)
212 struct w1_slave *sl = kobj_to_w1_slave(kobj);
213 int addr, len, idx;
215 if ((count = w1_f23_fix_count(off, count, W1_EEPROM_SIZE)) == 0)
216 return 0;
218 #ifdef CONFIG_W1_SLAVE_DS2433_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;
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;
233 #endif /* CONFIG_W1_SLAVE_DS2433_CRC */
235 mutex_lock(&sl->master->mutex);
237 /* Can only write data to one page at a time */
238 idx = 0;
239 while (idx < count) {
240 addr = off + idx;
241 len = W1_PAGE_SIZE - (addr & W1_PAGE_MASK);
242 if (len > (count - idx))
243 len = count - idx;
245 if (w1_f23_write(sl, addr, len, &buf[idx]) < 0) {
246 count = -EIO;
247 goto out_up;
249 idx += len;
252 out_up:
253 mutex_unlock(&sl->master->mutex);
255 return count;
258 static struct bin_attribute w1_f23_bin_attr = {
259 .attr = {
260 .name = "eeprom",
261 .mode = S_IRUGO | S_IWUSR,
263 .size = W1_EEPROM_SIZE,
264 .read = w1_f23_read_bin,
265 .write = w1_f23_write_bin,
268 static int w1_f23_add_slave(struct w1_slave *sl)
270 int err;
271 #ifdef CONFIG_W1_SLAVE_DS2433_CRC
272 struct w1_f23_data *data;
274 data = kzalloc(sizeof(struct w1_f23_data), GFP_KERNEL);
275 if (!data)
276 return -ENOMEM;
277 sl->family_data = data;
279 #endif /* CONFIG_W1_SLAVE_DS2433_CRC */
281 err = sysfs_create_bin_file(&sl->dev.kobj, &w1_f23_bin_attr);
283 #ifdef CONFIG_W1_SLAVE_DS2433_CRC
284 if (err)
285 kfree(data);
286 #endif /* CONFIG_W1_SLAVE_DS2433_CRC */
288 return err;
291 static void w1_f23_remove_slave(struct w1_slave *sl)
293 #ifdef CONFIG_W1_SLAVE_DS2433_CRC
294 kfree(sl->family_data);
295 sl->family_data = NULL;
296 #endif /* CONFIG_W1_SLAVE_DS2433_CRC */
297 sysfs_remove_bin_file(&sl->dev.kobj, &w1_f23_bin_attr);
300 static struct w1_family_ops w1_f23_fops = {
301 .add_slave = w1_f23_add_slave,
302 .remove_slave = w1_f23_remove_slave,
305 static struct w1_family w1_family_23 = {
306 .fid = W1_EEPROM_DS2433,
307 .fops = &w1_f23_fops,
310 static int __init w1_f23_init(void)
312 return w1_register_family(&w1_family_23);
315 static void __exit w1_f23_fini(void)
317 w1_unregister_family(&w1_family_23);
320 module_init(w1_f23_init);
321 module_exit(w1_f23_fini);