coreboot/src/include/device/smbus.h
Martin Roth 239b5df268 include: Add SPDX-License-Identifiers to files missing them
This adds SPDX-License-Identifiers to all of the files in src/include
that are missing them or have unrecognized identifiers.

Files that were written specifically for coreboot and don't have license
information are licensed GPL-2.0-only, which is the license for the
overall coreboot project.

Files that were sourced from Linux are similarly GPL-2.0-only.

The cpu/power files were committed with source that was licensed as
GPL-2.0-or-later, so presumably that's the license for that entire
commit.

The final file, vbe.h gives a pointer to the BSD-2-Clause license
at opensource.org.

Change-Id: I3f8fd7848ce11c1a0060e05903fb17a7583b4725
Signed-off-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/66284
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Reviewed-by: Felix Singer <felixsinger@posteo.net>
2022-08-01 13:59:11 +00:00

59 lines
1.5 KiB
C

/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef DEVICE_SMBUS_H
#define DEVICE_SMBUS_H
#include <stdint.h>
#include <device/device.h>
#include <device/i2c_bus.h>
/* Common SMBus bus operations */
struct smbus_bus_operations {
int (*recv_byte)(struct device *dev);
int (*send_byte)(struct device *dev, u8 value);
int (*read_byte)(struct device *dev, u8 addr);
int (*write_byte)(struct device *dev, u8 addr, u8 value);
int (*block_read)(struct device *dev, u8 cmd, u8 bytes, u8 *buffer);
int (*block_write)(struct device *dev, u8 cmd, u8 bytes,
const u8 *buffer);
};
static inline const struct smbus_bus_operations *ops_smbus_bus(struct bus *bus)
{
const struct smbus_bus_operations *bops;
bops = 0;
if (bus && bus->dev && bus->dev->ops)
bops = bus->dev->ops->ops_smbus_bus;
return bops;
}
struct bus *get_pbus_smbus(struct device *dev);
#if !DEVTREE_EARLY
static inline int smbus_recv_byte(struct device *const dev)
{
return i2c_dev_readb(dev);
}
static inline int smbus_send_byte(struct device *const dev, u8 byte)
{
return i2c_dev_writeb(dev, byte);
}
static inline int smbus_read_byte(struct device *const dev, u8 addr)
{
return i2c_dev_readb_at(dev, addr);
}
static inline int smbus_write_byte(struct device *const dev, u8 addr, u8 val)
{
return i2c_dev_writeb_at(dev, addr, val);
}
int smbus_block_read(struct device *dev, u8 cmd, u8 bytes, u8 *buffer);
int smbus_block_write(struct device *dev, u8 cmd, u8 bytes, const u8 *buffer);
#endif
#endif /* DEVICE_SMBUS_H */