1 // SPDX-License-Identifier: GPL-2.0+
12 #include <asm/arch/cpu.h>
13 #include <asm-generic/gpio.h>
15 #include "../drivers/ddr/marvell/a38x/ddr3_init.h"
16 #include "../arch/arm/mach-mvebu/serdes/a38x/high_speed_env_spec.h"
18 #include "keyprogram.h"
19 #include "dt_helpers.h"
23 DECLARE_GLOBAL_DATA_PTR;
25 #define ETH_PHY_CTRL_REG 0
26 #define ETH_PHY_CTRL_POWER_DOWN_BIT 11
27 #define ETH_PHY_CTRL_POWER_DOWN_MASK (1 << ETH_PHY_CTRL_POWER_DOWN_BIT)
29 #define DB_GP_88F68XX_GPP_OUT_ENA_LOW 0x7fffffff
30 #define DB_GP_88F68XX_GPP_OUT_ENA_MID 0xffffefff
32 #define DB_GP_88F68XX_GPP_OUT_VAL_LOW 0x0
33 #define DB_GP_88F68XX_GPP_OUT_VAL_MID 0x00001000
34 #define DB_GP_88F68XX_GPP_POL_LOW 0x0
35 #define DB_GP_88F68XX_GPP_POL_MID 0x0
38 * Define the DDR layout / topology here in the board file. This will
39 * be used by the DDR3 init code in the SPL U-Boot version to configure
40 * the DDR3 controller.
42 static struct mv_ddr_topology_map ddr_topology_map = {
44 0x1, /* active interfaces */
45 /* cs_mask, mirror, dqs_swap, ck_swap X PUPs */
51 SPEED_BIN_DDR_1600K, /* speed_bin */
52 MV_DDR_DEV_WIDTH_16BIT, /* memory_width */
53 MV_DDR_DIE_CAP_4GBIT, /* mem_size */
54 DDR_FREQ_533, /* frequency */
55 0, 0, /* cas_wl cas_l */
56 MV_DDR_TEMP_LOW, /* temperature */
57 MV_DDR_TIM_DEFAULT} }, /* timing */
58 BUS_MASK_32BIT, /* Busses mask */
59 MV_DDR_CFG_DEFAULT, /* ddr configuration data source */
60 { {0} }, /* raw spd data */
61 {0} /* timing parameters */
65 static struct serdes_map serdes_topology_map[] = {
66 {SGMII0, SERDES_SPEED_1_25_GBPS, SERDES_DEFAULT_MODE, 0, 0},
67 {USB3_HOST0, SERDES_SPEED_5_GBPS, SERDES_DEFAULT_MODE, 0, 0},
68 /* SATA tx polarity is inverted */
69 {SATA1, SERDES_SPEED_3_GBPS, SERDES_DEFAULT_MODE, 0, 1},
70 {SGMII2, SERDES_SPEED_1_25_GBPS, SERDES_DEFAULT_MODE, 0, 0},
71 {DEFAULT_SERDES, SERDES_SPEED_3_GBPS, SERDES_DEFAULT_MODE, 0, 0},
72 {PEX2, SERDES_SPEED_5_GBPS, PEX_ROOT_COMPLEX_X1, 0, 0}
75 int hws_board_topology_load(struct serdes_map **serdes_map_array, u8 *count)
77 *serdes_map_array = serdes_topology_map;
78 *count = ARRAY_SIZE(serdes_topology_map);
82 void board_pex_config(void)
84 #ifdef CONFIG_SPL_BUILD
86 struct gpio_desc gpio = {};
88 if (!request_gpio_by_name(&gpio, "pca9698@22", 31, "fpga-program-gpio")) {
89 /* prepare FPGA reconfiguration */
90 dm_gpio_set_dir_flags(&gpio, GPIOD_IS_OUT);
91 dm_gpio_set_value(&gpio, 0);
93 /* give lunatic PCIe clock some time to stabilize */
96 /* start FPGA reconfiguration */
97 dm_gpio_set_dir_flags(&gpio, GPIOD_IS_IN);
100 /* wait for FPGA done */
101 if (!request_gpio_by_name(&gpio, "pca9698@22", 19, "fpga-done-gpio")) {
102 for (k = 0; k < 20; ++k) {
103 if (dm_gpio_get_value(&gpio)) {
104 printf("FPGA done after %u rounds\n", k);
111 /* disable FPGA reset */
112 if (!request_gpio_by_name(&gpio, "gpio@18100", 6, "cpu-to-fpga-reset")) {
113 dm_gpio_set_dir_flags(&gpio, GPIOD_IS_OUT);
114 dm_gpio_set_value(&gpio, 1);
117 /* wait for FPGA ready */
118 if (!request_gpio_by_name(&gpio, "pca9698@22", 27, "fpga-ready-gpio")) {
119 for (k = 0; k < 2; ++k) {
120 if (!dm_gpio_get_value(&gpio))
128 struct mv_ddr_topology_map *mv_ddr_topology_map_get(void)
130 return &ddr_topology_map;
133 int board_early_init_f(void)
135 #ifdef CONFIG_SPL_BUILD
137 writel(0x00111111, MVEBU_MPP_BASE + 0x00);
138 writel(0x40040000, MVEBU_MPP_BASE + 0x04);
139 writel(0x00466444, MVEBU_MPP_BASE + 0x08);
140 writel(0x00043300, MVEBU_MPP_BASE + 0x0c);
141 writel(0x44400000, MVEBU_MPP_BASE + 0x10);
142 writel(0x20000334, MVEBU_MPP_BASE + 0x14);
143 writel(0x40000000, MVEBU_MPP_BASE + 0x18);
144 writel(0x00004444, MVEBU_MPP_BASE + 0x1c);
146 /* Set GPP Out value */
147 writel(DB_GP_88F68XX_GPP_OUT_VAL_LOW, MVEBU_GPIO0_BASE + 0x00);
148 writel(DB_GP_88F68XX_GPP_OUT_VAL_MID, MVEBU_GPIO1_BASE + 0x00);
150 /* Set GPP Polarity */
151 writel(DB_GP_88F68XX_GPP_POL_LOW, MVEBU_GPIO0_BASE + 0x0c);
152 writel(DB_GP_88F68XX_GPP_POL_MID, MVEBU_GPIO1_BASE + 0x0c);
154 /* Set GPP Out Enable */
155 writel(DB_GP_88F68XX_GPP_OUT_ENA_LOW, MVEBU_GPIO0_BASE + 0x04);
156 writel(DB_GP_88F68XX_GPP_OUT_ENA_MID, MVEBU_GPIO1_BASE + 0x04);
164 /* Address of boot parameters */
165 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
170 #ifndef CONFIG_SPL_BUILD
171 void init_host_phys(struct mii_dev *bus)
175 for (k = 0; k < 2; ++k) {
176 struct phy_device *phydev;
178 phydev = phy_find_by_mask(bus, 1 << k,
179 PHY_INTERFACE_MODE_SGMII);
186 int ccdc_eth_init(void)
189 uint octo_phy_mask = 0;
193 /* Init SoC's phys */
194 bus = miiphy_get_dev_by_name("ethernet@34000");
199 bus = miiphy_get_dev_by_name("ethernet@70000");
205 octo_phy_mask = calculate_octo_phy_mask();
207 printf("IHS PHYS: %08x", octo_phy_mask);
209 ret = init_octo_phys(octo_phy_mask);
217 puts("fpga was NULL\n");
221 /* reset all FPGA-QSGMII instances */
222 for (k = 0; k < 80; ++k)
223 writel(1 << 31, get_fpga()->qsgmii_port_state[k]);
227 for (k = 0; k < 80; ++k)
228 writel(0, get_fpga()->qsgmii_port_state[k]);
234 int board_late_init(void)
236 #ifndef CONFIG_SPL_BUILD
242 int board_fix_fdt(void *rw_fdt_blob)
244 struct udevice *bus = NULL;
249 err = uclass_get_device_by_name(UCLASS_I2C, "i2c@11000", &bus);
252 printf("Could not get I2C bus.\n");
256 for (k = 0x21; k <= 0x26; k++) {
258 "/soc/internal-regs/i2c@11000/pca9698@%02x", k);
260 if (!dm_i2c_simple_probe(bus, k))
261 fdt_disable_by_ofname(rw_fdt_blob, name);
267 int last_stage_init(void)
269 #ifndef CONFIG_SPL_BUILD
272 if (tpm_init() || tpm_startup(TPM_ST_CLEAR) ||
273 tpm_continue_self_test()) {
280 load_and_run_keyprog();