]> Git Repo - J-u-boot.git/blame - include/i2c_eeprom.h
Merge branch 'master' of git://git.denx.de/u-boot-usb
[J-u-boot.git] / include / i2c_eeprom.h
CommitLineData
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
9struct 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
16struct i2c_eeprom {
d7e28918 17 /* The EEPROM's page size in byte */
18 unsigned long pagesize;
19 /* The EEPROM's page width in bits (pagesize = 2^pagewidth) */
20 unsigned pagewidth;
033e18b4
RB
21 /* The EEPROM's capacity in bytes */
22 unsigned long size;
20142019
SG
23};
24
8880efbd
JK
25/*
26 * i2c_eeprom_read() - read bytes from an I2C EEPROM chip
27 *
28 * @dev: Chip to read from
29 * @offset: Offset within chip to start reading
30 * @buf: Place to put data
31 * @size: Number of bytes to read
32 *
33 * @return 0 on success, -ve on failure
34 */
35int i2c_eeprom_read(struct udevice *dev, int offset, uint8_t *buf, int size);
36
37/*
38 * i2c_eeprom_write() - write bytes to an I2C EEPROM chip
39 *
40 * @dev: Chip to write to
41 * @offset: Offset within chip to start writing
42 * @buf: Buffer containing data to write
43 * @size: Number of bytes to write
44 *
45 * @return 0 on success, -ve on failure
46 */
47int i2c_eeprom_write(struct udevice *dev, int offset, uint8_t *buf, int size);
48
033e18b4
RB
49/*
50 * i2c_eeprom_size() - get size of I2C EEPROM chip
51 *
52 * @dev: Chip to query
53 *
54 * @return +ve size in bytes on success, -ve on failure
55 */
56int i2c_eeprom_size(struct udevice *dev);
57
20142019 58#endif
This page took 0.390847 seconds and 4 git commands to generate.