1 /* SPDX-License-Identifier: BSD-3-Clause */
7 #define GPIO_FUNC_I2C 0x1
9 int gsbi_init_board(gsbi_id_t gsbi_id
)
13 gpio_tlmm_config_set(8, GPIO_FUNC_I2C
,
14 GPIO_NO_PULL
, GPIO_2MA
, 1);
15 gpio_tlmm_config_set(9, GPIO_FUNC_I2C
,
16 GPIO_NO_PULL
, GPIO_2MA
, 1);
19 /* Configure GPIOs 13 - SCL, 12 - SDA, 2mA gpio_en */
20 gpio_tlmm_config_set(12, GPIO_FUNC_I2C
,
21 GPIO_NO_PULL
, GPIO_2MA
, 1);
22 gpio_tlmm_config_set(13, GPIO_FUNC_I2C
,
23 GPIO_NO_PULL
, GPIO_2MA
, 1);
26 /* Configure GPIOs 54 - SCL, 53 - SDA, 2mA gpio_en */
27 gpio_tlmm_config_set(54, GPIO_FUNC_I2C
,
28 GPIO_NO_PULL
, GPIO_2MA
, 1);
29 gpio_tlmm_config_set(53, GPIO_FUNC_I2C
,
30 GPIO_NO_PULL
, GPIO_2MA
, 1);