coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
i2c.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef __COREBOOT_SRC_SOC_ROCKCHIP_COMMON_INCLUDE_SOC_I2C_H
4 #define __COREBOOT_SRC_SOC_ROCKCHIP_COMMON_INCLUDE_SOC_I2C_H
5 
6 void i2c_init(unsigned int bus, unsigned int hz);
7 void software_i2c_attach(unsigned int bus);
8 void software_i2c_detach(unsigned int bus);
9 
10 #endif /* ! __COREBOOT_SRC_SOC_ROCKCHIP_COMMON_INCLUDE_SOC_I2C_H */
void i2c_init(unsigned int bus)
Definition: i2c.c:198
void software_i2c_attach(unsigned int bus)
Definition: software_i2c.c:56
void software_i2c_detach(unsigned int bus)
Definition: software_i2c.c:91
Definition: device.h:76