]>
Commit | Line | Data |
---|---|---|
83d290c5 | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
20142019 SG |
2 | /* |
3 | * Copyright (c) 2014 Google, Inc | |
20142019 SG |
4 | */ |
5 | ||
6 | #ifndef __I2C_EEPROM | |
7 | #define __I2C_EEPROM | |
8 | ||
9 | struct i2c_eeprom_ops { | |
10 | int (*read)(struct udevice *dev, int offset, uint8_t *buf, int size); | |
11 | int (*write)(struct udevice *dev, int offset, const uint8_t *buf, | |
12 | int size); | |
033e18b4 | 13 | int (*size)(struct udevice *dev); |
20142019 SG |
14 | }; |
15 | ||
16 | struct i2c_eeprom { | |
d7e28918 | 17 | /* The EEPROM's page size in byte */ |
18 | unsigned long pagesize; | |
033e18b4 RB |
19 | /* The EEPROM's capacity in bytes */ |
20 | unsigned long size; | |
20142019 SG |
21 | }; |
22 | ||
8880efbd JK |
23 | /* |
24 | * i2c_eeprom_read() - read bytes from an I2C EEPROM chip | |
25 | * | |
26 | * @dev: Chip to read from | |
27 | * @offset: Offset within chip to start reading | |
28 | * @buf: Place to put data | |
29 | * @size: Number of bytes to read | |
30 | * | |
185f812c | 31 | * Return: 0 on success, -ve on failure |
8880efbd JK |
32 | */ |
33 | int i2c_eeprom_read(struct udevice *dev, int offset, uint8_t *buf, int size); | |
34 | ||
35 | /* | |
36 | * i2c_eeprom_write() - write bytes to an I2C EEPROM chip | |
37 | * | |
38 | * @dev: Chip to write to | |
39 | * @offset: Offset within chip to start writing | |
40 | * @buf: Buffer containing data to write | |
41 | * @size: Number of bytes to write | |
42 | * | |
185f812c | 43 | * Return: 0 on success, -ve on failure |
8880efbd JK |
44 | */ |
45 | int i2c_eeprom_write(struct udevice *dev, int offset, uint8_t *buf, int size); | |
46 | ||
033e18b4 RB |
47 | /* |
48 | * i2c_eeprom_size() - get size of I2C EEPROM chip | |
49 | * | |
50 | * @dev: Chip to query | |
51 | * | |
185f812c | 52 | * Return: +ve size in bytes on success, -ve on failure |
033e18b4 RB |
53 | */ |
54 | int i2c_eeprom_size(struct udevice *dev); | |
55 | ||
20142019 | 56 | #endif |