Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 1 | /* |
| 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 Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 18 | #include <linux/mod_devicetable.h> |
| 19 | #include <linux/log2.h> |
| 20 | #include <linux/bitops.h> |
| 21 | #include <linux/jiffies.h> |
Wolfram Sang | 9ed030d | 2010-11-17 13:00:48 +0100 | [diff] [blame] | 22 | #include <linux/of.h> |
Andy Shevchenko | 40d8edc | 2015-10-23 12:16:44 +0300 | [diff] [blame] | 23 | #include <linux/acpi.h> |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 24 | #include <linux/i2c.h> |
Andrew Lunn | 57d1555 | 2016-02-26 20:59:20 +0100 | [diff] [blame] | 25 | #include <linux/nvmem-provider.h> |
Vivien Didelot | 25f73ed | 2013-09-27 15:06:28 -0400 | [diff] [blame] | 26 | #include <linux/platform_data/at24.h> |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 27 | |
| 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 | |
| 56 | struct at24_data { |
| 57 | struct at24_platform_data chip; |
Jean Delvare | 7aeb966 | 2010-05-21 18:40:57 +0200 | [diff] [blame] | 58 | int use_smbus; |
Christian Gmeiner | a839ce6 | 2014-10-09 11:07:58 +0200 | [diff] [blame] | 59 | int use_smbus_write; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 60 | |
Bartosz Golaszewski | 318aa9c | 2016-06-06 10:48:46 +0200 | [diff] [blame] | 61 | 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 Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 65 | /* |
| 66 | * Lock protects against activities from other Linux tasks, |
| 67 | * but not from changes by other I2C masters. |
| 68 | */ |
| 69 | struct mutex lock; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 70 | |
| 71 | u8 *writebuf; |
| 72 | unsigned write_max; |
| 73 | unsigned num_addresses; |
| 74 | |
Andrew Lunn | 57d1555 | 2016-02-26 20:59:20 +0100 | [diff] [blame] | 75 | struct nvmem_config nvmem_config; |
| 76 | struct nvmem_device *nvmem; |
| 77 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 78 | /* |
| 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 | */ |
| 94 | static unsigned io_limit = 128; |
| 95 | module_param(io_limit, uint, 0); |
| 96 | MODULE_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 | */ |
| 102 | static unsigned write_timeout = 25; |
| 103 | module_param(write_timeout, uint, 0); |
| 104 | MODULE_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 Golaszewski | 9344a81 | 2016-06-06 10:48:47 +0200 | [diff] [blame] | 116 | /* |
| 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 Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 132 | static const struct i2c_device_id at24_ids[] = { |
| 133 | /* needs 8 addresses as A0-A2 are ignored */ |
Bartosz Golaszewski | b0b9f7b | 2016-06-06 10:48:43 +0200 | [diff] [blame] | 134 | { "24c00", AT24_DEVICE_MAGIC(128 / 8, AT24_FLAG_TAKE8ADDR) }, |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 135 | /* old variants can't be handled with this generic entry! */ |
Bartosz Golaszewski | b0b9f7b | 2016-06-06 10:48:43 +0200 | [diff] [blame] | 136 | { "24c01", AT24_DEVICE_MAGIC(1024 / 8, 0) }, |
| 137 | { "24c02", AT24_DEVICE_MAGIC(2048 / 8, 0) }, |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 138 | /* spd is a 24c02 in memory DIMMs */ |
Bartosz Golaszewski | b0b9f7b | 2016-06-06 10:48:43 +0200 | [diff] [blame] | 139 | { "spd", AT24_DEVICE_MAGIC(2048 / 8, |
| 140 | AT24_FLAG_READONLY | AT24_FLAG_IRUGO) }, |
| 141 | { "24c04", AT24_DEVICE_MAGIC(4096 / 8, 0) }, |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 142 | /* 24rf08 quirk is handled at i2c-core */ |
Bartosz Golaszewski | b0b9f7b | 2016-06-06 10:48:43 +0200 | [diff] [blame] | 143 | { "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 Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 151 | { "at24", 0 }, |
| 152 | { /* END OF LIST */ } |
| 153 | }; |
| 154 | MODULE_DEVICE_TABLE(i2c, at24_ids); |
| 155 | |
Andy Shevchenko | 40d8edc | 2015-10-23 12:16:44 +0300 | [diff] [blame] | 156 | static const struct acpi_device_id at24_acpi_ids[] = { |
| 157 | { "INT3499", AT24_DEVICE_MAGIC(8192 / 8, 0) }, |
| 158 | { } |
| 159 | }; |
| 160 | MODULE_DEVICE_TABLE(acpi, at24_acpi_ids); |
| 161 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 162 | /*-------------------------------------------------------------------------*/ |
| 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 Golaszewski | 9afd6866 | 2016-06-06 10:48:48 +0200 | [diff] [blame] | 168 | * |
| 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 Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 181 | */ |
| 182 | static struct i2c_client *at24_translate_offset(struct at24_data *at24, |
Bartosz Golaszewski | 2da78ac | 2016-06-06 10:48:45 +0200 | [diff] [blame] | 183 | unsigned int *offset) |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 184 | { |
| 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 Golaszewski | 9afd6866 | 2016-06-06 10:48:48 +0200 | [diff] [blame] | 198 | static ssize_t at24_eeprom_read_smbus(struct at24_data *at24, char *buf, |
| 199 | unsigned int offset, size_t count) |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 200 | { |
Wolfram Sang | 4d29196 | 2009-11-26 09:22:33 +0100 | [diff] [blame] | 201 | unsigned long timeout, read_time; |
Bartosz Golaszewski | 9afd6866 | 2016-06-06 10:48:48 +0200 | [diff] [blame] | 202 | struct i2c_client *client; |
| 203 | int status; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 204 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 205 | client = at24_translate_offset(at24, &offset); |
| 206 | |
| 207 | if (count > io_limit) |
| 208 | count = io_limit; |
| 209 | |
Bartosz Golaszewski | 9afd6866 | 2016-06-06 10:48:48 +0200 | [diff] [blame] | 210 | /* Smaller eeproms can work given some SMBus extension calls */ |
| 211 | if (count > I2C_SMBUS_BLOCK_MAX) |
| 212 | count = I2C_SMBUS_BLOCK_MAX; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 213 | |
Bartosz Golaszewski | 9344a81 | 2016-06-06 10:48:47 +0200 | [diff] [blame] | 214 | loop_until_timeout(timeout, read_time) { |
Bartosz Golaszewski | 9afd6866 | 2016-06-06 10:48:48 +0200 | [diff] [blame] | 215 | 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 | |
| 229 | static 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 Sang | 4d29196 | 2009-11-26 09:22:33 +0100 | [diff] [blame] | 269 | dev_dbg(&client->dev, "read %zu@%d --> %d (%ld)\n", |
| 270 | count, offset, status, jiffies); |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 271 | |
Wolfram Sang | 4d29196 | 2009-11-26 09:22:33 +0100 | [diff] [blame] | 272 | if (status == count) |
| 273 | return count; |
Bartosz Golaszewski | 9344a81 | 2016-06-06 10:48:47 +0200 | [diff] [blame] | 274 | } |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 275 | |
Wolfram Sang | 4d29196 | 2009-11-26 09:22:33 +0100 | [diff] [blame] | 276 | return -ETIMEDOUT; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 277 | } |
| 278 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 279 | /* |
| 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 | * |
Bartosz Golaszewski | cd0c861 | 2016-06-06 10:48:49 +0200 | [diff] [blame] | 284 | * We only use page mode writes; the alternative is sloooow. These routines |
| 285 | * write at most one page. |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 286 | */ |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 287 | |
Bartosz Golaszewski | cd0c861 | 2016-06-06 10:48:49 +0200 | [diff] [blame] | 288 | static size_t at24_adjust_write_count(struct at24_data *at24, |
| 289 | unsigned int offset, size_t count) |
| 290 | { |
| 291 | unsigned next_page; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 292 | |
| 293 | /* write_max is at most a page */ |
| 294 | if (count > at24->write_max) |
| 295 | count = at24->write_max; |
| 296 | |
| 297 | /* Never roll over backwards, to the start of this page */ |
| 298 | next_page = roundup(offset + 1, at24->chip.page_size); |
| 299 | if (offset + count > next_page) |
| 300 | count = next_page - offset; |
| 301 | |
Bartosz Golaszewski | cd0c861 | 2016-06-06 10:48:49 +0200 | [diff] [blame] | 302 | return count; |
| 303 | } |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 304 | |
Bartosz Golaszewski | cd0c861 | 2016-06-06 10:48:49 +0200 | [diff] [blame] | 305 | static ssize_t at24_eeprom_write_smbus_block(struct at24_data *at24, |
| 306 | const char *buf, |
| 307 | unsigned int offset, size_t count) |
| 308 | { |
| 309 | unsigned long timeout, write_time; |
| 310 | struct i2c_client *client; |
| 311 | ssize_t status = 0; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 312 | |
Bartosz Golaszewski | cd0c861 | 2016-06-06 10:48:49 +0200 | [diff] [blame] | 313 | client = at24_translate_offset(at24, &offset); |
| 314 | count = at24_adjust_write_count(at24, offset, count); |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 315 | |
Bartosz Golaszewski | 9344a81 | 2016-06-06 10:48:47 +0200 | [diff] [blame] | 316 | loop_until_timeout(timeout, write_time) { |
Bartosz Golaszewski | cd0c861 | 2016-06-06 10:48:49 +0200 | [diff] [blame] | 317 | status = i2c_smbus_write_i2c_block_data(client, |
| 318 | offset, count, buf); |
| 319 | if (status == 0) |
| 320 | status = count; |
Christian Gmeiner | a839ce6 | 2014-10-09 11:07:58 +0200 | [diff] [blame] | 321 | |
Bartosz Golaszewski | cd0c861 | 2016-06-06 10:48:49 +0200 | [diff] [blame] | 322 | dev_dbg(&client->dev, "write %zu@%d --> %zd (%ld)\n", |
| 323 | count, offset, status, jiffies); |
| 324 | |
| 325 | if (status == count) |
| 326 | return count; |
| 327 | } |
| 328 | |
| 329 | return -ETIMEDOUT; |
| 330 | } |
| 331 | |
| 332 | static ssize_t at24_eeprom_write_smbus_byte(struct at24_data *at24, |
| 333 | const char *buf, |
| 334 | unsigned int offset, size_t count) |
| 335 | { |
| 336 | unsigned long timeout, write_time; |
| 337 | struct i2c_client *client; |
| 338 | ssize_t status = 0; |
| 339 | |
| 340 | client = at24_translate_offset(at24, &offset); |
| 341 | |
| 342 | loop_until_timeout(timeout, write_time) { |
| 343 | status = i2c_smbus_write_byte_data(client, offset, buf[0]); |
| 344 | if (status == 0) |
| 345 | status = count; |
| 346 | |
| 347 | dev_dbg(&client->dev, "write %zu@%d --> %zd (%ld)\n", |
| 348 | count, offset, status, jiffies); |
| 349 | |
| 350 | if (status == count) |
| 351 | return count; |
| 352 | } |
| 353 | |
| 354 | return -ETIMEDOUT; |
| 355 | } |
| 356 | |
| 357 | static ssize_t at24_eeprom_write_i2c(struct at24_data *at24, const char *buf, |
| 358 | unsigned int offset, size_t count) |
| 359 | { |
| 360 | unsigned long timeout, write_time; |
| 361 | struct i2c_client *client; |
| 362 | struct i2c_msg msg; |
| 363 | ssize_t status = 0; |
| 364 | int i = 0; |
| 365 | |
| 366 | client = at24_translate_offset(at24, &offset); |
| 367 | count = at24_adjust_write_count(at24, offset, count); |
| 368 | |
| 369 | msg.addr = client->addr; |
| 370 | msg.flags = 0; |
| 371 | |
| 372 | /* msg.buf is u8 and casts will mask the values */ |
| 373 | msg.buf = at24->writebuf; |
| 374 | if (at24->chip.flags & AT24_FLAG_ADDR16) |
| 375 | msg.buf[i++] = offset >> 8; |
| 376 | |
| 377 | msg.buf[i++] = offset; |
| 378 | memcpy(&msg.buf[i], buf, count); |
| 379 | msg.len = i + count; |
| 380 | |
| 381 | loop_until_timeout(timeout, write_time) { |
| 382 | status = i2c_transfer(client->adapter, &msg, 1); |
| 383 | if (status == 1) |
| 384 | status = count; |
| 385 | |
David Brownell | 2ce5b34 | 2008-08-10 22:56:16 +0200 | [diff] [blame] | 386 | dev_dbg(&client->dev, "write %zu@%d --> %zd (%ld)\n", |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 387 | count, offset, status, jiffies); |
| 388 | |
| 389 | if (status == count) |
| 390 | return count; |
Bartosz Golaszewski | 9344a81 | 2016-06-06 10:48:47 +0200 | [diff] [blame] | 391 | } |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 392 | |
| 393 | return -ETIMEDOUT; |
| 394 | } |
| 395 | |
Bartosz Golaszewski | d5bc004 | 2016-06-06 10:48:44 +0200 | [diff] [blame] | 396 | static int at24_read(void *priv, unsigned int off, void *val, size_t count) |
| 397 | { |
| 398 | struct at24_data *at24 = priv; |
| 399 | char *buf = val; |
| 400 | |
| 401 | if (unlikely(!count)) |
| 402 | return count; |
| 403 | |
| 404 | /* |
| 405 | * Read data from chip, protecting against concurrent updates |
| 406 | * from this host, but not from other I2C masters. |
| 407 | */ |
| 408 | mutex_lock(&at24->lock); |
| 409 | |
| 410 | while (count) { |
| 411 | int status; |
| 412 | |
Bartosz Golaszewski | 318aa9c | 2016-06-06 10:48:46 +0200 | [diff] [blame] | 413 | status = at24->read_func(at24, buf, off, count); |
Bartosz Golaszewski | d5bc004 | 2016-06-06 10:48:44 +0200 | [diff] [blame] | 414 | if (status < 0) { |
| 415 | mutex_unlock(&at24->lock); |
| 416 | return status; |
| 417 | } |
| 418 | buf += status; |
| 419 | off += status; |
| 420 | count -= status; |
| 421 | } |
| 422 | |
| 423 | mutex_unlock(&at24->lock); |
| 424 | |
| 425 | return 0; |
| 426 | } |
| 427 | |
Srinivas Kandagatla | cf0361a | 2016-04-24 20:28:06 +0100 | [diff] [blame] | 428 | static int at24_write(void *priv, unsigned int off, void *val, size_t count) |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 429 | { |
Srinivas Kandagatla | cf0361a | 2016-04-24 20:28:06 +0100 | [diff] [blame] | 430 | struct at24_data *at24 = priv; |
| 431 | char *buf = val; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 432 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 433 | if (unlikely(!count)) |
Srinivas Kandagatla | cf0361a | 2016-04-24 20:28:06 +0100 | [diff] [blame] | 434 | return -EINVAL; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 435 | |
| 436 | /* |
| 437 | * Write data to chip, protecting against concurrent updates |
| 438 | * from this host, but not from other I2C masters. |
| 439 | */ |
| 440 | mutex_lock(&at24->lock); |
| 441 | |
| 442 | while (count) { |
Srinivas Kandagatla | cf0361a | 2016-04-24 20:28:06 +0100 | [diff] [blame] | 443 | int status; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 444 | |
Bartosz Golaszewski | 318aa9c | 2016-06-06 10:48:46 +0200 | [diff] [blame] | 445 | status = at24->write_func(at24, buf, off, count); |
Srinivas Kandagatla | cf0361a | 2016-04-24 20:28:06 +0100 | [diff] [blame] | 446 | if (status < 0) { |
| 447 | mutex_unlock(&at24->lock); |
| 448 | return status; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 449 | } |
| 450 | buf += status; |
| 451 | off += status; |
| 452 | count -= status; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 453 | } |
| 454 | |
| 455 | mutex_unlock(&at24->lock); |
| 456 | |
Andrew Lunn | 57d1555 | 2016-02-26 20:59:20 +0100 | [diff] [blame] | 457 | return 0; |
| 458 | } |
| 459 | |
Wolfram Sang | 9ed030d | 2010-11-17 13:00:48 +0100 | [diff] [blame] | 460 | #ifdef CONFIG_OF |
| 461 | static void at24_get_ofdata(struct i2c_client *client, |
Bartosz Golaszewski | 2da78ac | 2016-06-06 10:48:45 +0200 | [diff] [blame] | 462 | struct at24_platform_data *chip) |
Wolfram Sang | 9ed030d | 2010-11-17 13:00:48 +0100 | [diff] [blame] | 463 | { |
| 464 | const __be32 *val; |
| 465 | struct device_node *node = client->dev.of_node; |
| 466 | |
| 467 | if (node) { |
| 468 | if (of_get_property(node, "read-only", NULL)) |
| 469 | chip->flags |= AT24_FLAG_READONLY; |
| 470 | val = of_get_property(node, "pagesize", NULL); |
| 471 | if (val) |
| 472 | chip->page_size = be32_to_cpup(val); |
| 473 | } |
| 474 | } |
| 475 | #else |
| 476 | static void at24_get_ofdata(struct i2c_client *client, |
Bartosz Golaszewski | 2da78ac | 2016-06-06 10:48:45 +0200 | [diff] [blame] | 477 | struct at24_platform_data *chip) |
Wolfram Sang | 9ed030d | 2010-11-17 13:00:48 +0100 | [diff] [blame] | 478 | { } |
| 479 | #endif /* CONFIG_OF */ |
| 480 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 481 | static int at24_probe(struct i2c_client *client, const struct i2c_device_id *id) |
| 482 | { |
| 483 | struct at24_platform_data chip; |
Andy Shevchenko | 40d8edc | 2015-10-23 12:16:44 +0300 | [diff] [blame] | 484 | kernel_ulong_t magic = 0; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 485 | bool writable; |
Jean Delvare | 7aeb966 | 2010-05-21 18:40:57 +0200 | [diff] [blame] | 486 | int use_smbus = 0; |
Christian Gmeiner | a839ce6 | 2014-10-09 11:07:58 +0200 | [diff] [blame] | 487 | int use_smbus_write = 0; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 488 | struct at24_data *at24; |
| 489 | int err; |
| 490 | unsigned i, num_addresses; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 491 | |
| 492 | if (client->dev.platform_data) { |
| 493 | chip = *(struct at24_platform_data *)client->dev.platform_data; |
| 494 | } else { |
Andy Shevchenko | 40d8edc | 2015-10-23 12:16:44 +0300 | [diff] [blame] | 495 | if (id) { |
| 496 | magic = id->driver_data; |
| 497 | } else { |
| 498 | const struct acpi_device_id *aid; |
| 499 | |
| 500 | aid = acpi_match_device(at24_acpi_ids, &client->dev); |
| 501 | if (aid) |
| 502 | magic = aid->driver_data; |
| 503 | } |
| 504 | if (!magic) |
Nikolay Balandin | f0ac236 | 2013-05-28 13:00:20 -0700 | [diff] [blame] | 505 | return -ENODEV; |
| 506 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 507 | chip.byte_len = BIT(magic & AT24_BITMASK(AT24_SIZE_BYTELEN)); |
| 508 | magic >>= AT24_SIZE_BYTELEN; |
| 509 | chip.flags = magic & AT24_BITMASK(AT24_SIZE_FLAGS); |
| 510 | /* |
| 511 | * This is slow, but we can't know all eeproms, so we better |
| 512 | * play safe. Specifying custom eeprom-types via platform_data |
| 513 | * is recommended anyhow. |
| 514 | */ |
| 515 | chip.page_size = 1; |
Kevin Hilman | 7274ec8 | 2009-04-02 16:56:57 -0700 | [diff] [blame] | 516 | |
Wolfram Sang | 9ed030d | 2010-11-17 13:00:48 +0100 | [diff] [blame] | 517 | /* update chipdata if OF is present */ |
| 518 | at24_get_ofdata(client, &chip); |
| 519 | |
Kevin Hilman | 7274ec8 | 2009-04-02 16:56:57 -0700 | [diff] [blame] | 520 | chip.setup = NULL; |
| 521 | chip.context = NULL; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 522 | } |
| 523 | |
| 524 | if (!is_power_of_2(chip.byte_len)) |
| 525 | dev_warn(&client->dev, |
| 526 | "byte_len looks suspicious (no power of 2)!\n"); |
Wolfram Sang | 45efe84 | 2010-11-17 13:00:49 +0100 | [diff] [blame] | 527 | if (!chip.page_size) { |
| 528 | dev_err(&client->dev, "page_size must not be 0!\n"); |
Nikolay Balandin | f0ac236 | 2013-05-28 13:00:20 -0700 | [diff] [blame] | 529 | return -EINVAL; |
Wolfram Sang | 45efe84 | 2010-11-17 13:00:49 +0100 | [diff] [blame] | 530 | } |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 531 | if (!is_power_of_2(chip.page_size)) |
| 532 | dev_warn(&client->dev, |
| 533 | "page_size looks suspicious (no power of 2)!\n"); |
| 534 | |
| 535 | /* Use I2C operations unless we're stuck with SMBus extensions. */ |
| 536 | if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) { |
Nikolay Balandin | f0ac236 | 2013-05-28 13:00:20 -0700 | [diff] [blame] | 537 | if (chip.flags & AT24_FLAG_ADDR16) |
| 538 | return -EPFNOSUPPORT; |
| 539 | |
Jean Delvare | 7aeb966 | 2010-05-21 18:40:57 +0200 | [diff] [blame] | 540 | if (i2c_check_functionality(client->adapter, |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 541 | I2C_FUNC_SMBUS_READ_I2C_BLOCK)) { |
Jean Delvare | 7aeb966 | 2010-05-21 18:40:57 +0200 | [diff] [blame] | 542 | use_smbus = I2C_SMBUS_I2C_BLOCK_DATA; |
| 543 | } else if (i2c_check_functionality(client->adapter, |
| 544 | I2C_FUNC_SMBUS_READ_WORD_DATA)) { |
| 545 | use_smbus = I2C_SMBUS_WORD_DATA; |
| 546 | } else if (i2c_check_functionality(client->adapter, |
| 547 | I2C_FUNC_SMBUS_READ_BYTE_DATA)) { |
| 548 | use_smbus = I2C_SMBUS_BYTE_DATA; |
| 549 | } else { |
Nikolay Balandin | f0ac236 | 2013-05-28 13:00:20 -0700 | [diff] [blame] | 550 | return -EPFNOSUPPORT; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 551 | } |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 552 | |
Christian Gmeiner | a839ce6 | 2014-10-09 11:07:58 +0200 | [diff] [blame] | 553 | if (i2c_check_functionality(client->adapter, |
| 554 | I2C_FUNC_SMBUS_WRITE_I2C_BLOCK)) { |
| 555 | use_smbus_write = I2C_SMBUS_I2C_BLOCK_DATA; |
| 556 | } else if (i2c_check_functionality(client->adapter, |
| 557 | I2C_FUNC_SMBUS_WRITE_BYTE_DATA)) { |
| 558 | use_smbus_write = I2C_SMBUS_BYTE_DATA; |
| 559 | chip.page_size = 1; |
| 560 | } |
| 561 | } |
| 562 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 563 | if (chip.flags & AT24_FLAG_TAKE8ADDR) |
| 564 | num_addresses = 8; |
| 565 | else |
| 566 | num_addresses = DIV_ROUND_UP(chip.byte_len, |
| 567 | (chip.flags & AT24_FLAG_ADDR16) ? 65536 : 256); |
| 568 | |
Nikolay Balandin | f0ac236 | 2013-05-28 13:00:20 -0700 | [diff] [blame] | 569 | at24 = devm_kzalloc(&client->dev, sizeof(struct at24_data) + |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 570 | num_addresses * sizeof(struct i2c_client *), GFP_KERNEL); |
Nikolay Balandin | f0ac236 | 2013-05-28 13:00:20 -0700 | [diff] [blame] | 571 | if (!at24) |
| 572 | return -ENOMEM; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 573 | |
| 574 | mutex_init(&at24->lock); |
| 575 | at24->use_smbus = use_smbus; |
Christian Gmeiner | a839ce6 | 2014-10-09 11:07:58 +0200 | [diff] [blame] | 576 | at24->use_smbus_write = use_smbus_write; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 577 | at24->chip = chip; |
| 578 | at24->num_addresses = num_addresses; |
| 579 | |
Bartosz Golaszewski | 9afd6866 | 2016-06-06 10:48:48 +0200 | [diff] [blame] | 580 | at24->read_func = at24->use_smbus ? at24_eeprom_read_smbus |
| 581 | : at24_eeprom_read_i2c; |
Bartosz Golaszewski | cd0c861 | 2016-06-06 10:48:49 +0200 | [diff] [blame] | 582 | if (at24->use_smbus) { |
| 583 | if (at24->use_smbus_write == I2C_SMBUS_I2C_BLOCK_DATA) |
| 584 | at24->write_func = at24_eeprom_write_smbus_block; |
| 585 | else |
| 586 | at24->write_func = at24_eeprom_write_smbus_byte; |
| 587 | } else { |
| 588 | at24->write_func = at24_eeprom_write_i2c; |
| 589 | } |
Bartosz Golaszewski | 318aa9c | 2016-06-06 10:48:46 +0200 | [diff] [blame] | 590 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 591 | writable = !(chip.flags & AT24_FLAG_READONLY); |
| 592 | if (writable) { |
Christian Gmeiner | a839ce6 | 2014-10-09 11:07:58 +0200 | [diff] [blame] | 593 | if (!use_smbus || use_smbus_write) { |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 594 | |
| 595 | unsigned write_max = chip.page_size; |
| 596 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 597 | if (write_max > io_limit) |
| 598 | write_max = io_limit; |
| 599 | if (use_smbus && write_max > I2C_SMBUS_BLOCK_MAX) |
| 600 | write_max = I2C_SMBUS_BLOCK_MAX; |
| 601 | at24->write_max = write_max; |
| 602 | |
| 603 | /* buffer (data + address at the beginning) */ |
Nikolay Balandin | f0ac236 | 2013-05-28 13:00:20 -0700 | [diff] [blame] | 604 | at24->writebuf = devm_kzalloc(&client->dev, |
| 605 | write_max + 2, GFP_KERNEL); |
| 606 | if (!at24->writebuf) |
| 607 | return -ENOMEM; |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 608 | } else { |
| 609 | dev_warn(&client->dev, |
| 610 | "cannot write due to controller restrictions."); |
| 611 | } |
| 612 | } |
| 613 | |
| 614 | at24->client[0] = client; |
| 615 | |
| 616 | /* use dummy devices for multiple-address chips */ |
| 617 | for (i = 1; i < num_addresses; i++) { |
| 618 | at24->client[i] = i2c_new_dummy(client->adapter, |
| 619 | client->addr + i); |
| 620 | if (!at24->client[i]) { |
| 621 | dev_err(&client->dev, "address 0x%02x unavailable\n", |
| 622 | client->addr + i); |
| 623 | err = -EADDRINUSE; |
| 624 | goto err_clients; |
| 625 | } |
| 626 | } |
| 627 | |
Andrew Lunn | 57d1555 | 2016-02-26 20:59:20 +0100 | [diff] [blame] | 628 | at24->nvmem_config.name = dev_name(&client->dev); |
| 629 | at24->nvmem_config.dev = &client->dev; |
| 630 | at24->nvmem_config.read_only = !writable; |
| 631 | at24->nvmem_config.root_only = true; |
| 632 | at24->nvmem_config.owner = THIS_MODULE; |
| 633 | at24->nvmem_config.compat = true; |
| 634 | at24->nvmem_config.base_dev = &client->dev; |
Srinivas Kandagatla | cf0361a | 2016-04-24 20:28:06 +0100 | [diff] [blame] | 635 | at24->nvmem_config.reg_read = at24_read; |
| 636 | at24->nvmem_config.reg_write = at24_write; |
| 637 | at24->nvmem_config.priv = at24; |
| 638 | at24->nvmem_config.stride = 4; |
| 639 | at24->nvmem_config.word_size = 1; |
| 640 | at24->nvmem_config.size = chip.byte_len; |
Andrew Lunn | 57d1555 | 2016-02-26 20:59:20 +0100 | [diff] [blame] | 641 | |
| 642 | at24->nvmem = nvmem_register(&at24->nvmem_config); |
| 643 | |
| 644 | if (IS_ERR(at24->nvmem)) { |
| 645 | err = PTR_ERR(at24->nvmem); |
| 646 | goto err_clients; |
| 647 | } |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 648 | |
| 649 | i2c_set_clientdata(client, at24); |
| 650 | |
Andrew Lunn | 57d1555 | 2016-02-26 20:59:20 +0100 | [diff] [blame] | 651 | dev_info(&client->dev, "%u byte %s EEPROM, %s, %u bytes/write\n", |
| 652 | chip.byte_len, client->name, |
Wolfram Sang | 9ed030d | 2010-11-17 13:00:48 +0100 | [diff] [blame] | 653 | writable ? "writable" : "read-only", at24->write_max); |
Jean Delvare | 7aeb966 | 2010-05-21 18:40:57 +0200 | [diff] [blame] | 654 | if (use_smbus == I2C_SMBUS_WORD_DATA || |
| 655 | use_smbus == I2C_SMBUS_BYTE_DATA) { |
| 656 | dev_notice(&client->dev, "Falling back to %s reads, " |
| 657 | "performance will suffer\n", use_smbus == |
| 658 | I2C_SMBUS_WORD_DATA ? "word" : "byte"); |
| 659 | } |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 660 | |
Kevin Hilman | 7274ec8 | 2009-04-02 16:56:57 -0700 | [diff] [blame] | 661 | /* export data to kernel code */ |
| 662 | if (chip.setup) |
Andrew Lunn | bec3c11 | 2016-02-26 20:59:24 +0100 | [diff] [blame] | 663 | chip.setup(at24->nvmem, chip.context); |
Kevin Hilman | 7274ec8 | 2009-04-02 16:56:57 -0700 | [diff] [blame] | 664 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 665 | return 0; |
| 666 | |
| 667 | err_clients: |
| 668 | for (i = 1; i < num_addresses; i++) |
| 669 | if (at24->client[i]) |
| 670 | i2c_unregister_device(at24->client[i]); |
| 671 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 672 | return err; |
| 673 | } |
| 674 | |
Bill Pemberton | 486a5c2 | 2012-11-19 13:26:02 -0500 | [diff] [blame] | 675 | static int at24_remove(struct i2c_client *client) |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 676 | { |
| 677 | struct at24_data *at24; |
| 678 | int i; |
| 679 | |
| 680 | at24 = i2c_get_clientdata(client); |
Andrew Lunn | 57d1555 | 2016-02-26 20:59:20 +0100 | [diff] [blame] | 681 | |
| 682 | nvmem_unregister(at24->nvmem); |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 683 | |
| 684 | for (i = 1; i < at24->num_addresses; i++) |
| 685 | i2c_unregister_device(at24->client[i]); |
| 686 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 687 | return 0; |
| 688 | } |
| 689 | |
| 690 | /*-------------------------------------------------------------------------*/ |
| 691 | |
| 692 | static struct i2c_driver at24_driver = { |
| 693 | .driver = { |
| 694 | .name = "at24", |
Andy Shevchenko | 40d8edc | 2015-10-23 12:16:44 +0300 | [diff] [blame] | 695 | .acpi_match_table = ACPI_PTR(at24_acpi_ids), |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 696 | }, |
| 697 | .probe = at24_probe, |
Bill Pemberton | 2d6bed9 | 2012-11-19 13:21:23 -0500 | [diff] [blame] | 698 | .remove = at24_remove, |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 699 | .id_table = at24_ids, |
| 700 | }; |
| 701 | |
| 702 | static int __init at24_init(void) |
| 703 | { |
Wolfram Sang | 45efe84 | 2010-11-17 13:00:49 +0100 | [diff] [blame] | 704 | if (!io_limit) { |
| 705 | pr_err("at24: io_limit must not be 0!\n"); |
| 706 | return -EINVAL; |
| 707 | } |
| 708 | |
Wolfram Sang | 2b7a505 | 2008-07-14 22:38:35 +0200 | [diff] [blame] | 709 | io_limit = rounddown_pow_of_two(io_limit); |
| 710 | return i2c_add_driver(&at24_driver); |
| 711 | } |
| 712 | module_init(at24_init); |
| 713 | |
| 714 | static void __exit at24_exit(void) |
| 715 | { |
| 716 | i2c_del_driver(&at24_driver); |
| 717 | } |
| 718 | module_exit(at24_exit); |
| 719 | |
| 720 | MODULE_DESCRIPTION("Driver for most I2C EEPROMs"); |
| 721 | MODULE_AUTHOR("David Brownell and Wolfram Sang"); |
| 722 | MODULE_LICENSE("GPL"); |