mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-18 18:59:44 +00:00
83d290c56f
When U-Boot started using SPDX tags we were among the early adopters and there weren't a lot of other examples to borrow from. So we picked the area of the file that usually had a full license text and replaced it with an appropriate SPDX-License-Identifier: entry. Since then, the Linux Kernel has adopted SPDX tags and they place it as the very first line in a file (except where shebangs are used, then it's second line) and with slightly different comment styles than us. In part due to community overlap, in part due to better tag visibility and in part for other minor reasons, switch over to that style. This commit changes all instances where we have a single declared license in the tag as both the before and after are identical in tag contents. There's also a few places where I found we did not have a tag and have introduced one. Signed-off-by: Tom Rini <trini@konsulko.com>
96 lines
2.4 KiB
C
96 lines
2.4 KiB
C
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (c) 2014 Google, Inc
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <linux/err.h>
|
|
#include <dm.h>
|
|
#include <i2c.h>
|
|
#include <i2c_eeprom.h>
|
|
|
|
int i2c_eeprom_read(struct udevice *dev, int offset, uint8_t *buf, int size)
|
|
{
|
|
const struct i2c_eeprom_ops *ops = device_get_ops(dev);
|
|
|
|
if (!ops->read)
|
|
return -ENOSYS;
|
|
|
|
return ops->read(dev, offset, buf, size);
|
|
}
|
|
|
|
int i2c_eeprom_write(struct udevice *dev, int offset, uint8_t *buf, int size)
|
|
{
|
|
const struct i2c_eeprom_ops *ops = device_get_ops(dev);
|
|
|
|
if (!ops->write)
|
|
return -ENOSYS;
|
|
|
|
return ops->write(dev, offset, buf, size);
|
|
}
|
|
|
|
static int i2c_eeprom_std_read(struct udevice *dev, int offset, uint8_t *buf,
|
|
int size)
|
|
{
|
|
return dm_i2c_read(dev, offset, buf, size);
|
|
}
|
|
|
|
static int i2c_eeprom_std_write(struct udevice *dev, int offset,
|
|
const uint8_t *buf, int size)
|
|
{
|
|
return -ENODEV;
|
|
}
|
|
|
|
static const struct i2c_eeprom_ops i2c_eeprom_std_ops = {
|
|
.read = i2c_eeprom_std_read,
|
|
.write = i2c_eeprom_std_write,
|
|
};
|
|
|
|
static int i2c_eeprom_std_ofdata_to_platdata(struct udevice *dev)
|
|
{
|
|
struct i2c_eeprom *priv = dev_get_priv(dev);
|
|
u64 data = dev_get_driver_data(dev);
|
|
|
|
/* 6 bit -> page size of up to 2^63 (should be sufficient) */
|
|
priv->pagewidth = data & 0x3F;
|
|
priv->pagesize = (1 << priv->pagewidth);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int i2c_eeprom_std_probe(struct udevice *dev)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
static const struct udevice_id i2c_eeprom_std_ids[] = {
|
|
{ .compatible = "i2c-eeprom", .data = 0 },
|
|
{ .compatible = "microchip,24aa02e48", .data = 3 },
|
|
{ .compatible = "atmel,24c01a", .data = 3 },
|
|
{ .compatible = "atmel,24c02", .data = 3 },
|
|
{ .compatible = "atmel,24c04", .data = 4 },
|
|
{ .compatible = "atmel,24c08a", .data = 4 },
|
|
{ .compatible = "atmel,24c16a", .data = 4 },
|
|
{ .compatible = "atmel,24mac402", .data = 4 },
|
|
{ .compatible = "atmel,24c32", .data = 5 },
|
|
{ .compatible = "atmel,24c64", .data = 5 },
|
|
{ .compatible = "atmel,24c128", .data = 6 },
|
|
{ .compatible = "atmel,24c256", .data = 6 },
|
|
{ .compatible = "atmel,24c512", .data = 6 },
|
|
{ }
|
|
};
|
|
|
|
U_BOOT_DRIVER(i2c_eeprom_std) = {
|
|
.name = "i2c_eeprom",
|
|
.id = UCLASS_I2C_EEPROM,
|
|
.of_match = i2c_eeprom_std_ids,
|
|
.probe = i2c_eeprom_std_probe,
|
|
.ofdata_to_platdata = i2c_eeprom_std_ofdata_to_platdata,
|
|
.priv_auto_alloc_size = sizeof(struct i2c_eeprom),
|
|
.ops = &i2c_eeprom_std_ops,
|
|
};
|
|
|
|
UCLASS_DRIVER(i2c_eeprom) = {
|
|
.id = UCLASS_I2C_EEPROM,
|
|
.name = "i2c_eeprom",
|
|
};
|