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 AMD_CEZANNE_I2C_H
4 #define AMD_CEZANNE_I2C_H
5 
6 #include <soc/gpio.h>
7 #include <types.h>
8 
9 #define GPIO_I2C0_SCL BIT(0)
10 #define GPIO_I2C1_SCL BIT(1)
11 #define GPIO_I2C2_SCL BIT(2)
12 #define GPIO_I2C3_SCL BIT(3)
13 #define GPIO_I2C_MASK (BIT(0) | BIT(1) | BIT(2) | BIT(3))
14 
15 
16 #define I2C0_SCL_PIN GPIO_145
17 #define I2C1_SCL_PIN GPIO_147
18 #define I2C2_SCL_PIN GPIO_113
19 #define I2C3_SCL_PIN GPIO_19
20 
21 #define I2C0_SCL_PIN_IOMUX_GPIOxx GPIO_145_IOMUX_GPIOxx
22 #define I2C1_SCL_PIN_IOMUX_GPIOxx GPIO_147_IOMUX_GPIOxx
23 #define I2C2_SCL_PIN_IOMUX_GPIOxx GPIO_113_IOMUX_GPIOxx
24 #define I2C3_SCL_PIN_IOMUX_GPIOxx GPIO_19_IOMUX_GPIOxx
25 
26 void i2c_set_bar(unsigned int bus, uintptr_t bar);
27 
28 #endif /* AMD_CEZANNE_I2C_H */
void i2c_set_bar(unsigned int bus, uintptr_t bar)
Definition: i2c.c:24
unsigned long uintptr_t
Definition: stdint.h:21
Definition: device.h:76