blob: e7db1377e210bfc4d343de1b5965d3fd8dfd642a [file] [log] [blame]
Wolfram Sang2b7a5052008-07-14 22:38:35 +02001/*
2 * at24.c - handle most I2C EEPROMs
3 *
4 * Copyright (C) 2005-2007 David Brownell
5 * Copyright (C) 2008 Wolfram Sang, Pengutronix
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms 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#include <linux/kernel.h>
13#include <linux/init.h>
14#include <linux/module.h>
15#include <linux/slab.h>
16#include <linux/delay.h>
17#include <linux/mutex.h>
Wolfram Sang2b7a5052008-07-14 22:38:35 +020018#include <linux/mod_devicetable.h>
19#include <linux/log2.h>
20#include <linux/bitops.h>
21#include <linux/jiffies.h>
Wolfram Sang9ed030d2010-11-17 13:00:48 +010022#include <linux/of.h>
Andy Shevchenko40d8edc2015-10-23 12:16:44 +030023#include <linux/acpi.h>
Wolfram Sang2b7a5052008-07-14 22:38:35 +020024#include <linux/i2c.h>
Andrew Lunn57d15552016-02-26 20:59:20 +010025#include <linux/nvmem-provider.h>
Vivien Didelot25f73ed2013-09-27 15:06:28 -040026#include <linux/platform_data/at24.h>
Wolfram Sang2b7a5052008-07-14 22:38:35 +020027
28/*
29 * I2C EEPROMs from most vendors are inexpensive and mostly interchangeable.
30 * Differences between different vendor product lines (like Atmel AT24C or
31 * MicroChip 24LC, etc) won't much matter for typical read/write access.
32 * There are also I2C RAM chips, likewise interchangeable. One example
33 * would be the PCF8570, which acts like a 24c02 EEPROM (256 bytes).
34 *
35 * However, misconfiguration can lose data. "Set 16-bit memory address"
36 * to a part with 8-bit addressing will overwrite data. Writing with too
37 * big a page size also loses data. And it's not safe to assume that the
38 * conventional addresses 0x50..0x57 only hold eeproms; a PCF8563 RTC
39 * uses 0x51, for just one example.
40 *
41 * Accordingly, explicit board-specific configuration data should be used
42 * in almost all cases. (One partial exception is an SMBus used to access
43 * "SPD" data for DRAM sticks. Those only use 24c02 EEPROMs.)
44 *
45 * So this driver uses "new style" I2C driver binding, expecting to be
46 * told what devices exist. That may be in arch/X/mach-Y/board-Z.c or
47 * similar kernel-resident tables; or, configuration data coming from
48 * a bootloader.
49 *
50 * Other than binding model, current differences from "eeprom" driver are
51 * that this one handles write access and isn't restricted to 24c02 devices.
52 * It also handles larger devices (32 kbit and up) with two-byte addresses,
53 * which won't work on pure SMBus systems.
54 */
55
56struct at24_data {
57 struct at24_platform_data chip;
Jean Delvare7aeb9662010-05-21 18:40:57 +020058 int use_smbus;
Christian Gmeinera839ce62014-10-09 11:07:58 +020059 int use_smbus_write;
Wolfram Sang2b7a5052008-07-14 22:38:35 +020060
Bartosz Golaszewski318aa9c2016-06-06 10:48:46 +020061 ssize_t (*read_func)(struct at24_data *, char *, unsigned int, size_t);
62 ssize_t (*write_func)(struct at24_data *,
63 const char *, unsigned int, size_t);
64
Wolfram Sang2b7a5052008-07-14 22:38:35 +020065 /*
66 * Lock protects against activities from other Linux tasks,
67 * but not from changes by other I2C masters.
68 */
69 struct mutex lock;
Wolfram Sang2b7a5052008-07-14 22:38:35 +020070
71 u8 *writebuf;
72 unsigned write_max;
73 unsigned num_addresses;
74
Andrew Lunn57d15552016-02-26 20:59:20 +010075 struct nvmem_config nvmem_config;
76 struct nvmem_device *nvmem;
77
Wolfram Sang2b7a5052008-07-14 22:38:35 +020078 /*
79 * Some chips tie up multiple I2C addresses; dummy devices reserve
80 * them for us, and we'll use them with SMBus calls.
81 */
82 struct i2c_client *client[];
83};
84
85/*
86 * This parameter is to help this driver avoid blocking other drivers out
87 * of I2C for potentially troublesome amounts of time. With a 100 kHz I2C
88 * clock, one 256 byte read takes about 1/43 second which is excessive;
89 * but the 1/170 second it takes at 400 kHz may be quite reasonable; and
90 * at 1 MHz (Fm+) a 1/430 second delay could easily be invisible.
91 *
92 * This value is forced to be a power of two so that writes align on pages.
93 */
94static unsigned io_limit = 128;
95module_param(io_limit, uint, 0);
96MODULE_PARM_DESC(io_limit, "Maximum bytes per I/O (default 128)");
97
98/*
99 * Specs often allow 5 msec for a page write, sometimes 20 msec;
100 * it's important to recover from write timeouts.
101 */
102static unsigned write_timeout = 25;
103module_param(write_timeout, uint, 0);
104MODULE_PARM_DESC(write_timeout, "Time (in ms) to try writes (default 25)");
105
106#define AT24_SIZE_BYTELEN 5
107#define AT24_SIZE_FLAGS 8
108
109#define AT24_BITMASK(x) (BIT(x) - 1)
110
111/* create non-zero magic value for given eeprom parameters */
112#define AT24_DEVICE_MAGIC(_len, _flags) \
113 ((1 << AT24_SIZE_FLAGS | (_flags)) \
114 << AT24_SIZE_BYTELEN | ilog2(_len))
115
Bartosz Golaszewski9344a812016-06-06 10:48:47 +0200116/*
117 * Both reads and writes fail if the previous write didn't complete yet. This
118 * macro loops a few times waiting at least long enough for one entire page
119 * write to work.
120 *
121 * It takes two parameters: a variable in which the future timeout in jiffies
122 * will be stored and a temporary variable holding the time of the last
123 * iteration of processing the request. Both should be unsigned integers
124 * holding at least 32 bits.
125 */
126#define loop_until_timeout(tout, op_time) \
127 for (tout = jiffies + msecs_to_jiffies(write_timeout), \
128 op_time = jiffies; \
129 time_before(op_time, tout); \
130 usleep_range(1000, 1500), op_time = jiffies)
131
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200132static const struct i2c_device_id at24_ids[] = {
133 /* needs 8 addresses as A0-A2 are ignored */
Bartosz Golaszewskib0b9f7b2016-06-06 10:48:43 +0200134 { "24c00", AT24_DEVICE_MAGIC(128 / 8, AT24_FLAG_TAKE8ADDR) },
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200135 /* old variants can't be handled with this generic entry! */
Bartosz Golaszewskib0b9f7b2016-06-06 10:48:43 +0200136 { "24c01", AT24_DEVICE_MAGIC(1024 / 8, 0) },
137 { "24c02", AT24_DEVICE_MAGIC(2048 / 8, 0) },
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200138 /* spd is a 24c02 in memory DIMMs */
Bartosz Golaszewskib0b9f7b2016-06-06 10:48:43 +0200139 { "spd", AT24_DEVICE_MAGIC(2048 / 8,
140 AT24_FLAG_READONLY | AT24_FLAG_IRUGO) },
141 { "24c04", AT24_DEVICE_MAGIC(4096 / 8, 0) },
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200142 /* 24rf08 quirk is handled at i2c-core */
Bartosz Golaszewskib0b9f7b2016-06-06 10:48:43 +0200143 { "24c08", AT24_DEVICE_MAGIC(8192 / 8, 0) },
144 { "24c16", AT24_DEVICE_MAGIC(16384 / 8, 0) },
145 { "24c32", AT24_DEVICE_MAGIC(32768 / 8, AT24_FLAG_ADDR16) },
146 { "24c64", AT24_DEVICE_MAGIC(65536 / 8, AT24_FLAG_ADDR16) },
147 { "24c128", AT24_DEVICE_MAGIC(131072 / 8, AT24_FLAG_ADDR16) },
148 { "24c256", AT24_DEVICE_MAGIC(262144 / 8, AT24_FLAG_ADDR16) },
149 { "24c512", AT24_DEVICE_MAGIC(524288 / 8, AT24_FLAG_ADDR16) },
150 { "24c1024", AT24_DEVICE_MAGIC(1048576 / 8, AT24_FLAG_ADDR16) },
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200151 { "at24", 0 },
152 { /* END OF LIST */ }
153};
154MODULE_DEVICE_TABLE(i2c, at24_ids);
155
Andy Shevchenko40d8edc2015-10-23 12:16:44 +0300156static const struct acpi_device_id at24_acpi_ids[] = {
157 { "INT3499", AT24_DEVICE_MAGIC(8192 / 8, 0) },
158 { }
159};
160MODULE_DEVICE_TABLE(acpi, at24_acpi_ids);
161
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200162/*-------------------------------------------------------------------------*/
163
164/*
165 * This routine supports chips which consume multiple I2C addresses. It
166 * computes the addressing information to be used for a given r/w request.
167 * Assumes that sanity checks for offset happened at sysfs-layer.
Bartosz Golaszewski9afd68662016-06-06 10:48:48 +0200168 *
169 * Slave address and byte offset derive from the offset. Always
170 * set the byte address; on a multi-master board, another master
171 * may have changed the chip's "current" address pointer.
172 *
173 * REVISIT some multi-address chips don't rollover page reads to
174 * the next slave address, so we may need to truncate the count.
175 * Those chips might need another quirk flag.
176 *
177 * If the real hardware used four adjacent 24c02 chips and that
178 * were misconfigured as one 24c08, that would be a similar effect:
179 * one "eeprom" file not four, but larger reads would fail when
180 * they crossed certain pages.
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200181 */
182static struct i2c_client *at24_translate_offset(struct at24_data *at24,
Bartosz Golaszewski2da78ac2016-06-06 10:48:45 +0200183 unsigned int *offset)
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200184{
185 unsigned i;
186
187 if (at24->chip.flags & AT24_FLAG_ADDR16) {
188 i = *offset >> 16;
189 *offset &= 0xffff;
190 } else {
191 i = *offset >> 8;
192 *offset &= 0xff;
193 }
194
195 return at24->client[i];
196}
197
Bartosz Golaszewski9afd68662016-06-06 10:48:48 +0200198static ssize_t at24_eeprom_read_smbus(struct at24_data *at24, char *buf,
199 unsigned int offset, size_t count)
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200200{
Wolfram Sang4d291962009-11-26 09:22:33 +0100201 unsigned long timeout, read_time;
Bartosz Golaszewski9afd68662016-06-06 10:48:48 +0200202 struct i2c_client *client;
203 int status;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200204
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200205 client = at24_translate_offset(at24, &offset);
206
207 if (count > io_limit)
208 count = io_limit;
209
Bartosz Golaszewski9afd68662016-06-06 10:48:48 +0200210 /* Smaller eeproms can work given some SMBus extension calls */
211 if (count > I2C_SMBUS_BLOCK_MAX)
212 count = I2C_SMBUS_BLOCK_MAX;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200213
Bartosz Golaszewski9344a812016-06-06 10:48:47 +0200214 loop_until_timeout(timeout, read_time) {
Bartosz Golaszewski9afd68662016-06-06 10:48:48 +0200215 status = i2c_smbus_read_i2c_block_data_or_emulated(client,
216 offset,
217 count, buf);
218
219 dev_dbg(&client->dev, "read %zu@%d --> %d (%ld)\n",
220 count, offset, status, jiffies);
221
222 if (status == count)
223 return count;
224 }
225
226 return -ETIMEDOUT;
227}
228
229static ssize_t at24_eeprom_read_i2c(struct at24_data *at24, char *buf,
230 unsigned int offset, size_t count)
231{
232 unsigned long timeout, read_time;
233 struct i2c_client *client;
234 struct i2c_msg msg[2];
235 int status, i;
236 u8 msgbuf[2];
237
238 memset(msg, 0, sizeof(msg));
239 client = at24_translate_offset(at24, &offset);
240
241 if (count > io_limit)
242 count = io_limit;
243
244 /*
245 * When we have a better choice than SMBus calls, use a combined I2C
246 * message. Write address; then read up to io_limit data bytes. Note
247 * that read page rollover helps us here (unlike writes). msgbuf is
248 * u8 and will cast to our needs.
249 */
250 i = 0;
251 if (at24->chip.flags & AT24_FLAG_ADDR16)
252 msgbuf[i++] = offset >> 8;
253 msgbuf[i++] = offset;
254
255 msg[0].addr = client->addr;
256 msg[0].buf = msgbuf;
257 msg[0].len = i;
258
259 msg[1].addr = client->addr;
260 msg[1].flags = I2C_M_RD;
261 msg[1].buf = buf;
262 msg[1].len = count;
263
264 loop_until_timeout(timeout, read_time) {
265 status = i2c_transfer(client->adapter, msg, 2);
266 if (status == 2)
267 status = count;
268
Wolfram Sang4d291962009-11-26 09:22:33 +0100269 dev_dbg(&client->dev, "read %zu@%d --> %d (%ld)\n",
270 count, offset, status, jiffies);
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200271
Wolfram Sang4d291962009-11-26 09:22:33 +0100272 if (status == count)
273 return count;
Bartosz Golaszewski9344a812016-06-06 10:48:47 +0200274 }
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200275
Wolfram Sang4d291962009-11-26 09:22:33 +0100276 return -ETIMEDOUT;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200277}
278
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200279/*
280 * Note that if the hardware write-protect pin is pulled high, the whole
281 * chip is normally write protected. But there are plenty of product
282 * variants here, including OTP fuses and partial chip protect.
283 *
284 * We only use page mode writes; the alternative is sloooow. This routine
285 * writes at most one page.
286 */
Geert Uytterhoeven280ca292009-04-13 14:40:06 -0700287static ssize_t at24_eeprom_write(struct at24_data *at24, const char *buf,
Bartosz Golaszewski2da78ac2016-06-06 10:48:45 +0200288 unsigned int offset, size_t count)
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200289{
290 struct i2c_client *client;
291 struct i2c_msg msg;
Christian Gmeinera839ce62014-10-09 11:07:58 +0200292 ssize_t status = 0;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200293 unsigned long timeout, write_time;
294 unsigned next_page;
295
296 /* Get corresponding I2C address and adjust offset */
297 client = at24_translate_offset(at24, &offset);
298
299 /* write_max is at most a page */
300 if (count > at24->write_max)
301 count = at24->write_max;
302
303 /* Never roll over backwards, to the start of this page */
304 next_page = roundup(offset + 1, at24->chip.page_size);
305 if (offset + count > next_page)
306 count = next_page - offset;
307
308 /* If we'll use I2C calls for I/O, set up the message */
309 if (!at24->use_smbus) {
310 int i = 0;
311
312 msg.addr = client->addr;
313 msg.flags = 0;
314
315 /* msg.buf is u8 and casts will mask the values */
316 msg.buf = at24->writebuf;
317 if (at24->chip.flags & AT24_FLAG_ADDR16)
318 msg.buf[i++] = offset >> 8;
319
320 msg.buf[i++] = offset;
321 memcpy(&msg.buf[i], buf, count);
322 msg.len = i + count;
323 }
324
Bartosz Golaszewski9344a812016-06-06 10:48:47 +0200325 loop_until_timeout(timeout, write_time) {
Christian Gmeinera839ce62014-10-09 11:07:58 +0200326 if (at24->use_smbus_write) {
327 switch (at24->use_smbus_write) {
328 case I2C_SMBUS_I2C_BLOCK_DATA:
329 status = i2c_smbus_write_i2c_block_data(client,
330 offset, count, buf);
331 break;
332 case I2C_SMBUS_BYTE_DATA:
333 status = i2c_smbus_write_byte_data(client,
334 offset, buf[0]);
335 break;
336 }
337
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200338 if (status == 0)
339 status = count;
340 } else {
341 status = i2c_transfer(client->adapter, &msg, 1);
342 if (status == 1)
343 status = count;
344 }
David Brownell2ce5b342008-08-10 22:56:16 +0200345 dev_dbg(&client->dev, "write %zu@%d --> %zd (%ld)\n",
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200346 count, offset, status, jiffies);
347
348 if (status == count)
349 return count;
Bartosz Golaszewski9344a812016-06-06 10:48:47 +0200350 }
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200351
352 return -ETIMEDOUT;
353}
354
Bartosz Golaszewskid5bc0042016-06-06 10:48:44 +0200355static int at24_read(void *priv, unsigned int off, void *val, size_t count)
356{
357 struct at24_data *at24 = priv;
358 char *buf = val;
359
360 if (unlikely(!count))
361 return count;
362
363 /*
364 * Read data from chip, protecting against concurrent updates
365 * from this host, but not from other I2C masters.
366 */
367 mutex_lock(&at24->lock);
368
369 while (count) {
370 int status;
371
Bartosz Golaszewski318aa9c2016-06-06 10:48:46 +0200372 status = at24->read_func(at24, buf, off, count);
Bartosz Golaszewskid5bc0042016-06-06 10:48:44 +0200373 if (status < 0) {
374 mutex_unlock(&at24->lock);
375 return status;
376 }
377 buf += status;
378 off += status;
379 count -= status;
380 }
381
382 mutex_unlock(&at24->lock);
383
384 return 0;
385}
386
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100387static int at24_write(void *priv, unsigned int off, void *val, size_t count)
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200388{
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100389 struct at24_data *at24 = priv;
390 char *buf = val;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200391
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200392 if (unlikely(!count))
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100393 return -EINVAL;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200394
395 /*
396 * Write data to chip, protecting against concurrent updates
397 * from this host, but not from other I2C masters.
398 */
399 mutex_lock(&at24->lock);
400
401 while (count) {
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100402 int status;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200403
Bartosz Golaszewski318aa9c2016-06-06 10:48:46 +0200404 status = at24->write_func(at24, buf, off, count);
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100405 if (status < 0) {
406 mutex_unlock(&at24->lock);
407 return status;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200408 }
409 buf += status;
410 off += status;
411 count -= status;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200412 }
413
414 mutex_unlock(&at24->lock);
415
Andrew Lunn57d15552016-02-26 20:59:20 +0100416 return 0;
417}
418
Wolfram Sang9ed030d2010-11-17 13:00:48 +0100419#ifdef CONFIG_OF
420static void at24_get_ofdata(struct i2c_client *client,
Bartosz Golaszewski2da78ac2016-06-06 10:48:45 +0200421 struct at24_platform_data *chip)
Wolfram Sang9ed030d2010-11-17 13:00:48 +0100422{
423 const __be32 *val;
424 struct device_node *node = client->dev.of_node;
425
426 if (node) {
427 if (of_get_property(node, "read-only", NULL))
428 chip->flags |= AT24_FLAG_READONLY;
429 val = of_get_property(node, "pagesize", NULL);
430 if (val)
431 chip->page_size = be32_to_cpup(val);
432 }
433}
434#else
435static void at24_get_ofdata(struct i2c_client *client,
Bartosz Golaszewski2da78ac2016-06-06 10:48:45 +0200436 struct at24_platform_data *chip)
Wolfram Sang9ed030d2010-11-17 13:00:48 +0100437{ }
438#endif /* CONFIG_OF */
439
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200440static int at24_probe(struct i2c_client *client, const struct i2c_device_id *id)
441{
442 struct at24_platform_data chip;
Andy Shevchenko40d8edc2015-10-23 12:16:44 +0300443 kernel_ulong_t magic = 0;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200444 bool writable;
Jean Delvare7aeb9662010-05-21 18:40:57 +0200445 int use_smbus = 0;
Christian Gmeinera839ce62014-10-09 11:07:58 +0200446 int use_smbus_write = 0;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200447 struct at24_data *at24;
448 int err;
449 unsigned i, num_addresses;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200450
451 if (client->dev.platform_data) {
452 chip = *(struct at24_platform_data *)client->dev.platform_data;
453 } else {
Andy Shevchenko40d8edc2015-10-23 12:16:44 +0300454 if (id) {
455 magic = id->driver_data;
456 } else {
457 const struct acpi_device_id *aid;
458
459 aid = acpi_match_device(at24_acpi_ids, &client->dev);
460 if (aid)
461 magic = aid->driver_data;
462 }
463 if (!magic)
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700464 return -ENODEV;
465
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200466 chip.byte_len = BIT(magic & AT24_BITMASK(AT24_SIZE_BYTELEN));
467 magic >>= AT24_SIZE_BYTELEN;
468 chip.flags = magic & AT24_BITMASK(AT24_SIZE_FLAGS);
469 /*
470 * This is slow, but we can't know all eeproms, so we better
471 * play safe. Specifying custom eeprom-types via platform_data
472 * is recommended anyhow.
473 */
474 chip.page_size = 1;
Kevin Hilman7274ec82009-04-02 16:56:57 -0700475
Wolfram Sang9ed030d2010-11-17 13:00:48 +0100476 /* update chipdata if OF is present */
477 at24_get_ofdata(client, &chip);
478
Kevin Hilman7274ec82009-04-02 16:56:57 -0700479 chip.setup = NULL;
480 chip.context = NULL;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200481 }
482
483 if (!is_power_of_2(chip.byte_len))
484 dev_warn(&client->dev,
485 "byte_len looks suspicious (no power of 2)!\n");
Wolfram Sang45efe842010-11-17 13:00:49 +0100486 if (!chip.page_size) {
487 dev_err(&client->dev, "page_size must not be 0!\n");
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700488 return -EINVAL;
Wolfram Sang45efe842010-11-17 13:00:49 +0100489 }
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200490 if (!is_power_of_2(chip.page_size))
491 dev_warn(&client->dev,
492 "page_size looks suspicious (no power of 2)!\n");
493
494 /* Use I2C operations unless we're stuck with SMBus extensions. */
495 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700496 if (chip.flags & AT24_FLAG_ADDR16)
497 return -EPFNOSUPPORT;
498
Jean Delvare7aeb9662010-05-21 18:40:57 +0200499 if (i2c_check_functionality(client->adapter,
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200500 I2C_FUNC_SMBUS_READ_I2C_BLOCK)) {
Jean Delvare7aeb9662010-05-21 18:40:57 +0200501 use_smbus = I2C_SMBUS_I2C_BLOCK_DATA;
502 } else if (i2c_check_functionality(client->adapter,
503 I2C_FUNC_SMBUS_READ_WORD_DATA)) {
504 use_smbus = I2C_SMBUS_WORD_DATA;
505 } else if (i2c_check_functionality(client->adapter,
506 I2C_FUNC_SMBUS_READ_BYTE_DATA)) {
507 use_smbus = I2C_SMBUS_BYTE_DATA;
508 } else {
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700509 return -EPFNOSUPPORT;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200510 }
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200511
Christian Gmeinera839ce62014-10-09 11:07:58 +0200512 if (i2c_check_functionality(client->adapter,
513 I2C_FUNC_SMBUS_WRITE_I2C_BLOCK)) {
514 use_smbus_write = I2C_SMBUS_I2C_BLOCK_DATA;
515 } else if (i2c_check_functionality(client->adapter,
516 I2C_FUNC_SMBUS_WRITE_BYTE_DATA)) {
517 use_smbus_write = I2C_SMBUS_BYTE_DATA;
518 chip.page_size = 1;
519 }
520 }
521
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200522 if (chip.flags & AT24_FLAG_TAKE8ADDR)
523 num_addresses = 8;
524 else
525 num_addresses = DIV_ROUND_UP(chip.byte_len,
526 (chip.flags & AT24_FLAG_ADDR16) ? 65536 : 256);
527
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700528 at24 = devm_kzalloc(&client->dev, sizeof(struct at24_data) +
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200529 num_addresses * sizeof(struct i2c_client *), GFP_KERNEL);
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700530 if (!at24)
531 return -ENOMEM;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200532
533 mutex_init(&at24->lock);
534 at24->use_smbus = use_smbus;
Christian Gmeinera839ce62014-10-09 11:07:58 +0200535 at24->use_smbus_write = use_smbus_write;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200536 at24->chip = chip;
537 at24->num_addresses = num_addresses;
538
Bartosz Golaszewski9afd68662016-06-06 10:48:48 +0200539 at24->read_func = at24->use_smbus ? at24_eeprom_read_smbus
540 : at24_eeprom_read_i2c;
Bartosz Golaszewski318aa9c2016-06-06 10:48:46 +0200541 at24->write_func = at24_eeprom_write;
542
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200543 writable = !(chip.flags & AT24_FLAG_READONLY);
544 if (writable) {
Christian Gmeinera839ce62014-10-09 11:07:58 +0200545 if (!use_smbus || use_smbus_write) {
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200546
547 unsigned write_max = chip.page_size;
548
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200549 if (write_max > io_limit)
550 write_max = io_limit;
551 if (use_smbus && write_max > I2C_SMBUS_BLOCK_MAX)
552 write_max = I2C_SMBUS_BLOCK_MAX;
553 at24->write_max = write_max;
554
555 /* buffer (data + address at the beginning) */
Nikolay Balandinf0ac2362013-05-28 13:00:20 -0700556 at24->writebuf = devm_kzalloc(&client->dev,
557 write_max + 2, GFP_KERNEL);
558 if (!at24->writebuf)
559 return -ENOMEM;
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200560 } else {
561 dev_warn(&client->dev,
562 "cannot write due to controller restrictions.");
563 }
564 }
565
566 at24->client[0] = client;
567
568 /* use dummy devices for multiple-address chips */
569 for (i = 1; i < num_addresses; i++) {
570 at24->client[i] = i2c_new_dummy(client->adapter,
571 client->addr + i);
572 if (!at24->client[i]) {
573 dev_err(&client->dev, "address 0x%02x unavailable\n",
574 client->addr + i);
575 err = -EADDRINUSE;
576 goto err_clients;
577 }
578 }
579
Andrew Lunn57d15552016-02-26 20:59:20 +0100580 at24->nvmem_config.name = dev_name(&client->dev);
581 at24->nvmem_config.dev = &client->dev;
582 at24->nvmem_config.read_only = !writable;
583 at24->nvmem_config.root_only = true;
584 at24->nvmem_config.owner = THIS_MODULE;
585 at24->nvmem_config.compat = true;
586 at24->nvmem_config.base_dev = &client->dev;
Srinivas Kandagatlacf0361a2016-04-24 20:28:06 +0100587 at24->nvmem_config.reg_read = at24_read;
588 at24->nvmem_config.reg_write = at24_write;
589 at24->nvmem_config.priv = at24;
590 at24->nvmem_config.stride = 4;
591 at24->nvmem_config.word_size = 1;
592 at24->nvmem_config.size = chip.byte_len;
Andrew Lunn57d15552016-02-26 20:59:20 +0100593
594 at24->nvmem = nvmem_register(&at24->nvmem_config);
595
596 if (IS_ERR(at24->nvmem)) {
597 err = PTR_ERR(at24->nvmem);
598 goto err_clients;
599 }
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200600
601 i2c_set_clientdata(client, at24);
602
Andrew Lunn57d15552016-02-26 20:59:20 +0100603 dev_info(&client->dev, "%u byte %s EEPROM, %s, %u bytes/write\n",
604 chip.byte_len, client->name,
Wolfram Sang9ed030d2010-11-17 13:00:48 +0100605 writable ? "writable" : "read-only", at24->write_max);
Jean Delvare7aeb9662010-05-21 18:40:57 +0200606 if (use_smbus == I2C_SMBUS_WORD_DATA ||
607 use_smbus == I2C_SMBUS_BYTE_DATA) {
608 dev_notice(&client->dev, "Falling back to %s reads, "
609 "performance will suffer\n", use_smbus ==
610 I2C_SMBUS_WORD_DATA ? "word" : "byte");
611 }
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200612
Kevin Hilman7274ec82009-04-02 16:56:57 -0700613 /* export data to kernel code */
614 if (chip.setup)
Andrew Lunnbec3c112016-02-26 20:59:24 +0100615 chip.setup(at24->nvmem, chip.context);
Kevin Hilman7274ec82009-04-02 16:56:57 -0700616
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200617 return 0;
618
619err_clients:
620 for (i = 1; i < num_addresses; i++)
621 if (at24->client[i])
622 i2c_unregister_device(at24->client[i]);
623
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200624 return err;
625}
626
Bill Pemberton486a5c22012-11-19 13:26:02 -0500627static int at24_remove(struct i2c_client *client)
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200628{
629 struct at24_data *at24;
630 int i;
631
632 at24 = i2c_get_clientdata(client);
Andrew Lunn57d15552016-02-26 20:59:20 +0100633
634 nvmem_unregister(at24->nvmem);
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200635
636 for (i = 1; i < at24->num_addresses; i++)
637 i2c_unregister_device(at24->client[i]);
638
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200639 return 0;
640}
641
642/*-------------------------------------------------------------------------*/
643
644static struct i2c_driver at24_driver = {
645 .driver = {
646 .name = "at24",
Andy Shevchenko40d8edc2015-10-23 12:16:44 +0300647 .acpi_match_table = ACPI_PTR(at24_acpi_ids),
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200648 },
649 .probe = at24_probe,
Bill Pemberton2d6bed92012-11-19 13:21:23 -0500650 .remove = at24_remove,
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200651 .id_table = at24_ids,
652};
653
654static int __init at24_init(void)
655{
Wolfram Sang45efe842010-11-17 13:00:49 +0100656 if (!io_limit) {
657 pr_err("at24: io_limit must not be 0!\n");
658 return -EINVAL;
659 }
660
Wolfram Sang2b7a5052008-07-14 22:38:35 +0200661 io_limit = rounddown_pow_of_two(io_limit);
662 return i2c_add_driver(&at24_driver);
663}
664module_init(at24_init);
665
666static void __exit at24_exit(void)
667{
668 i2c_del_driver(&at24_driver);
669}
670module_exit(at24_exit);
671
672MODULE_DESCRIPTION("Driver for most I2C EEPROMs");
673MODULE_AUTHOR("David Brownell and Wolfram Sang");
674MODULE_LICENSE("GPL");