This patch adds a new smbus console driver and Kconfig options to enable the driver. Change-Id: Ife77fb2c3e1cc77678a4972701317d50624ceb95 Signed-off-by: Husni Faiz <ahamedhusni73@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/67339 Reviewed-by: Raul Rangel <rrangel@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
29 lines
663 B
C
29 lines
663 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#ifndef CONSOLE_I2C_SMBUS_H
|
|
#define CONSOLE_I2C_SMBUS_H
|
|
|
|
#include <stdint.h>
|
|
|
|
void i2c_smbus_console_init(void);
|
|
void i2c_smbus_console_tx_byte(unsigned char c);
|
|
|
|
#define __CONSOLE_SMBUS_ENABLE__ CONFIG(CONSOLE_I2C_SMBUS)
|
|
|
|
#if __CONSOLE_SMBUS_ENABLE__
|
|
static inline void __i2c_smbus_console_init(void)
|
|
{
|
|
i2c_smbus_console_init();
|
|
}
|
|
|
|
static inline void __i2c_smbus_console_tx_byte(u8 data)
|
|
{
|
|
i2c_smbus_console_tx_byte(data);
|
|
}
|
|
#else
|
|
static inline void __i2c_smbus_console_init(void) {}
|
|
static inline void __i2c_smbus_console_tx_byte(u8 data) {}
|
|
#endif /* __CONSOLE_SMBUS_ENABLE__ */
|
|
|
|
#endif /* CONSOLE_I2C_SMBUS_H */
|