blob: 8237b7d7767f60ce1985e2cf36963b4013ecc13e [file] [log] [blame]
Martin Roth1a3de8e2022-10-06 15:57:21 -06001/* SPDX-License-Identifier: GPL-2.0-only */
2
Martin Roth1a3de8e2022-10-06 15:57:21 -06003#include <amdblocks/i2c.h>
4#include <console/console.h>
5#include <soc/i2c.h>
6#include <soc/southbridge.h>
7#include "chip.h"
8
Fred Reitberger13831222022-10-17 11:49:55 -04009/* Table to switch SCL pins to outputs to initially reset the I2C peripherals */
10static const struct soc_i2c_scl_pin i2c_scl_pins[] = {
11 I2C_RESET_SCL_PIN(I2C0_SCL_PIN, GPIO_I2C0_SCL),
12 I2C_RESET_SCL_PIN(I2C1_SCL_PIN, GPIO_I2C1_SCL),
13 I2C_RESET_SCL_PIN(I2C2_SCL_PIN, GPIO_I2C2_SCL),
14 I2C_RESET_SCL_PIN(I2C3_SCL_PIN, GPIO_I2C3_SCL),
15};
16
Martin Roth1a3de8e2022-10-06 15:57:21 -060017#if ENV_X86
18static const struct soc_i2c_ctrlr_info i2c_ctrlr[I2C_CTRLR_COUNT] = {
19 { I2C_MASTER_MODE, APU_I2C0_BASE, "I2C0" },
20 { I2C_MASTER_MODE, APU_I2C1_BASE, "I2C1" },
21 { I2C_MASTER_MODE, APU_I2C2_BASE, "I2C2" },
22 { I2C_MASTER_MODE, APU_I2C3_BASE, "I2C3" }
23};
24#else
25static struct soc_i2c_ctrlr_info i2c_ctrlr[I2C_CTRLR_COUNT] = {
26 { I2C_MASTER_MODE, 0, "" },
27 { I2C_MASTER_MODE, 0, "" },
28 { I2C_MASTER_MODE, 0, "" },
29 { I2C_MASTER_MODE, 0, "" }
30};
31
32void i2c_set_bar(unsigned int bus, uintptr_t bar)
33{
34 if (bus >= ARRAY_SIZE(i2c_ctrlr)) {
Elyes Haouasaba1c942022-11-09 15:05:23 +010035 printk(BIOS_ERR, "i2c index out of bounds: %u.", bus);
Martin Roth1a3de8e2022-10-06 15:57:21 -060036 return;
37 }
38
39 i2c_ctrlr[bus].bar = bar;
40}
41#endif
42
Fred Reitberger13831222022-10-17 11:49:55 -040043void reset_i2c_peripherals(void)
44{
Martin Roth20646cd2023-01-04 21:27:06 -070045 const struct soc_amd_phoenix_config *cfg = config_of_soc();
Fred Reitberger13831222022-10-17 11:49:55 -040046 struct soc_i2c_peripheral_reset_info reset_info;
47
48 reset_info.i2c_scl_reset_mask = cfg->i2c_scl_reset & GPIO_I2C_MASK;
49 reset_info.i2c_scl = i2c_scl_pins;
50 reset_info.num_pins = ARRAY_SIZE(i2c_scl_pins);
51 sb_reset_i2c_peripherals(&reset_info);
52}
53
Martin Roth1a3de8e2022-10-06 15:57:21 -060054void soc_i2c_misc_init(unsigned int bus, const struct dw_i2c_bus_config *cfg)
55{
Martin Roth20646cd2023-01-04 21:27:06 -070056 const struct soc_amd_phoenix_config *config = config_of_soc();
Martin Roth1a3de8e2022-10-06 15:57:21 -060057
58 if (bus >= ARRAY_SIZE(config->i2c_pad))
59 return;
60
61 fch_i23c_pad_init(bus, cfg->speed, &config->i2c_pad[bus]);
62}
63
64const struct soc_i2c_ctrlr_info *soc_get_i2c_ctrlr_info(size_t *num_ctrlrs)
65{
66 *num_ctrlrs = ARRAY_SIZE(i2c_ctrlr);
67 return i2c_ctrlr;
68}
69
70const struct dw_i2c_bus_config *soc_get_i2c_bus_config(size_t *num_buses)
71{
Martin Roth20646cd2023-01-04 21:27:06 -070072 const struct soc_amd_phoenix_config *config = config_of_soc();
Martin Roth1a3de8e2022-10-06 15:57:21 -060073
74 *num_buses = ARRAY_SIZE(config->i2c);
75 return config->i2c;
76}