blob: ce2cad44d8d4f8b5c44fe910fe072ef25907dcf2 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass6ca4ba02014-12-10 08:55:54 -07002/*
3 * Copyright (c) 2014 Google, Inc
Simon Glass6ca4ba02014-12-10 08:55:54 -07004 */
5
6#include <common.h>
Masahiro Yamadaf9d52cc2014-12-18 20:00:26 +09007#include <linux/err.h>
Simon Glass6ca4ba02014-12-10 08:55:54 -07008#include <dm.h>
9#include <i2c.h>
10#include <i2c_eeprom.h>
11
Jonas Karlman8427a242017-04-22 08:57:41 +000012int i2c_eeprom_read(struct udevice *dev, int offset, uint8_t *buf, int size)
13{
14 const struct i2c_eeprom_ops *ops = device_get_ops(dev);
15
16 if (!ops->read)
17 return -ENOSYS;
18
19 return ops->read(dev, offset, buf, size);
20}
21
22int i2c_eeprom_write(struct udevice *dev, int offset, uint8_t *buf, int size)
23{
24 const struct i2c_eeprom_ops *ops = device_get_ops(dev);
25
26 if (!ops->write)
27 return -ENOSYS;
28
29 return ops->write(dev, offset, buf, size);
30}
31
32static int i2c_eeprom_std_read(struct udevice *dev, int offset, uint8_t *buf,
33 int size)
Simon Glass6ca4ba02014-12-10 08:55:54 -070034{
mario.six@gdsys.cc7559ac42016-06-22 15:14:16 +020035 return dm_i2c_read(dev, offset, buf, size);
Simon Glass6ca4ba02014-12-10 08:55:54 -070036}
37
Jonas Karlman8427a242017-04-22 08:57:41 +000038static int i2c_eeprom_std_write(struct udevice *dev, int offset,
39 const uint8_t *buf, int size)
Simon Glass6ca4ba02014-12-10 08:55:54 -070040{
41 return -ENODEV;
42}
43
Masahiro Yamadaa7cc93e82017-06-22 16:51:22 +090044static const struct i2c_eeprom_ops i2c_eeprom_std_ops = {
Jonas Karlman8427a242017-04-22 08:57:41 +000045 .read = i2c_eeprom_std_read,
46 .write = i2c_eeprom_std_write,
Simon Glass6ca4ba02014-12-10 08:55:54 -070047};
48
mario.six@gdsys.cc7559ac42016-06-22 15:14:16 +020049static int i2c_eeprom_std_ofdata_to_platdata(struct udevice *dev)
50{
51 struct i2c_eeprom *priv = dev_get_priv(dev);
52 u64 data = dev_get_driver_data(dev);
Baruch Siach263b5b02019-04-07 12:38:48 +030053 u32 pagesize;
54
55 if (dev_read_u32(dev, "pagesize", &pagesize) == 0) {
56 priv->pagesize = pagesize;
57 return 0;
58 }
mario.six@gdsys.cc7559ac42016-06-22 15:14:16 +020059
60 /* 6 bit -> page size of up to 2^63 (should be sufficient) */
61 priv->pagewidth = data & 0x3F;
62 priv->pagesize = (1 << priv->pagewidth);
63
64 return 0;
65}
66
Masahiro Yamadaa7cc93e82017-06-22 16:51:22 +090067static int i2c_eeprom_std_probe(struct udevice *dev)
Simon Glass6ca4ba02014-12-10 08:55:54 -070068{
69 return 0;
70}
71
72static const struct udevice_id i2c_eeprom_std_ids[] = {
mario.six@gdsys.cc7559ac42016-06-22 15:14:16 +020073 { .compatible = "i2c-eeprom", .data = 0 },
Wenyou Yang6db50422017-07-31 11:25:30 +080074 { .compatible = "microchip,24aa02e48", .data = 3 },
mario.six@gdsys.cc7559ac42016-06-22 15:14:16 +020075 { .compatible = "atmel,24c01a", .data = 3 },
76 { .compatible = "atmel,24c02", .data = 3 },
77 { .compatible = "atmel,24c04", .data = 4 },
Michal Simek191d02e2019-01-21 13:54:57 +010078 { .compatible = "atmel,24c08", .data = 4 },
mario.six@gdsys.cc7559ac42016-06-22 15:14:16 +020079 { .compatible = "atmel,24c08a", .data = 4 },
80 { .compatible = "atmel,24c16a", .data = 4 },
Wenyou Yang911a6102017-07-31 11:25:31 +080081 { .compatible = "atmel,24mac402", .data = 4 },
mario.six@gdsys.cc7559ac42016-06-22 15:14:16 +020082 { .compatible = "atmel,24c32", .data = 5 },
83 { .compatible = "atmel,24c64", .data = 5 },
84 { .compatible = "atmel,24c128", .data = 6 },
85 { .compatible = "atmel,24c256", .data = 6 },
86 { .compatible = "atmel,24c512", .data = 6 },
Simon Glass6ca4ba02014-12-10 08:55:54 -070087 { }
88};
89
90U_BOOT_DRIVER(i2c_eeprom_std) = {
mario.six@gdsys.cc7559ac42016-06-22 15:14:16 +020091 .name = "i2c_eeprom",
92 .id = UCLASS_I2C_EEPROM,
93 .of_match = i2c_eeprom_std_ids,
94 .probe = i2c_eeprom_std_probe,
95 .ofdata_to_platdata = i2c_eeprom_std_ofdata_to_platdata,
96 .priv_auto_alloc_size = sizeof(struct i2c_eeprom),
97 .ops = &i2c_eeprom_std_ops,
Simon Glass6ca4ba02014-12-10 08:55:54 -070098};
99
100UCLASS_DRIVER(i2c_eeprom) = {
101 .id = UCLASS_I2C_EEPROM,
102 .name = "i2c_eeprom",
103};