blob: d69db04de664fd31b8594eed609053e34c9dde60 [file] [log] [blame]
Gregory CLEMENT6787c1e2018-12-14 16:16:49 +01001// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2/*
3 * Copyright (c) 2018 Microsemi Corporation
4 */
5
6#include <common.h>
Simon Glass4d72caa2020-05-10 11:40:01 -06007#include <image.h>
Simon Glass52559322019-11-14 12:57:46 -07008#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -06009#include <log.h>
Simon Glass401d1c42020-10-30 21:38:53 -060010#include <asm/global_data.h>
Gregory CLEMENT6787c1e2018-12-14 16:16:49 +010011#include <asm/io.h>
12#include <asm/addrspace.h>
13#include <asm/types.h>
Gregory CLEMENT6787c1e2018-12-14 16:16:49 +010014#include <spi.h>
Lars Povlsen4deb0962019-01-02 09:52:26 +010015#include <led.h>
Gregory CLEMENT2f8d0672019-01-17 17:07:14 +010016#include <wait_bit.h>
Horatiu Vultur06d270c2019-04-24 11:27:58 +020017#include <miiphy.h>
Simon Glasscd93d622020-05-10 11:40:13 -060018#include <linux/bitops.h>
Simon Glass1e94b462023-09-14 18:21:46 -060019#include <linux/printk.h>
Gregory CLEMENT6787c1e2018-12-14 16:16:49 +010020
21DECLARE_GLOBAL_DATA_PTR;
22
Lars Povlsene9f14922018-12-20 09:56:05 +010023enum {
24 BOARD_TYPE_PCB120 = 0xAABBCC00,
25 BOARD_TYPE_PCB123,
26};
Gregory CLEMENT6787c1e2018-12-14 16:16:49 +010027
Gregory CLEMENT2f8d0672019-01-17 17:07:14 +010028void mscc_switch_reset(bool enter)
29{
30 /* Nasty workaround to avoid GPIO19 (DDR!) being reset */
31 mscc_gpio_set_alternate(19, 2);
32
33 debug("applying SwC reset\n");
34
35 writel(ICPU_RESET_CORE_RST_PROTECT, BASE_CFG + ICPU_RESET);
36 writel(PERF_SOFT_RST_SOFT_CHIP_RST, BASE_DEVCPU_GCB + PERF_SOFT_RST);
37
38 if (wait_for_bit_le32(BASE_DEVCPU_GCB + PERF_SOFT_RST,
39 PERF_SOFT_RST_SOFT_CHIP_RST, false, 5000, false))
40 pr_err("Tiemout while waiting for switch reset\n");
41
42 /*
43 * Reset GPIO19 mode back as regular GPIO, output, high (DDR
44 * not reset) (Order is important)
45 */
46 setbits_le32(BASE_DEVCPU_GCB + PERF_GPIO_OE, BIT(19));
47 writel(BIT(19), BASE_DEVCPU_GCB + PERF_GPIO_OUT_SET);
48 mscc_gpio_set_alternate(19, 0);
49}
50
Horatiu Vultur06d270c2019-04-24 11:27:58 +020051int board_phy_config(struct phy_device *phydev)
52{
53 if (gd->board_type == BOARD_TYPE_PCB123)
54 return 0;
55
56 phy_write(phydev, 0, 31, 0x10);
57 phy_write(phydev, 0, 18, 0x80F0);
58 while (phy_read(phydev, 0, 18) & 0x8000)
59 ;
60 phy_write(phydev, 0, 31, 0);
61
62 return 0;
63}
64
Gregory CLEMENT6787c1e2018-12-14 16:16:49 +010065void board_debug_uart_init(void)
66{
67 /* too early for the pinctrl driver, so configure the UART pins here */
Lars Povlsene9f14922018-12-20 09:56:05 +010068 mscc_gpio_set_alternate(6, 1);
69 mscc_gpio_set_alternate(7, 1);
Gregory CLEMENT6787c1e2018-12-14 16:16:49 +010070}
71
72int board_early_init_r(void)
73{
74 /* Prepare SPI controller to be used in master mode */
75 writel(0, BASE_CFG + ICPU_SW_MODE);
76 clrsetbits_le32(BASE_CFG + ICPU_GENERAL_CTRL,
77 ICPU_GENERAL_CTRL_IF_SI_OWNER_M,
78 ICPU_GENERAL_CTRL_IF_SI_OWNER(2));
79
80 /* Address of boot parameters */
Tom Riniaa6e94d2022-11-16 13:10:37 -050081 gd->bd->bi_boot_params = CFG_SYS_SDRAM_BASE;
Lars Povlsen4deb0962019-01-02 09:52:26 +010082
Gregory CLEMENT6787c1e2018-12-14 16:16:49 +010083 return 0;
84}
Lars Povlsene9f14922018-12-20 09:56:05 +010085
86static void do_board_detect(void)
87{
88 u16 dummy = 0;
89
90 /* Enable MIIM */
91 mscc_gpio_set_alternate(14, 1);
92 mscc_gpio_set_alternate(15, 1);
93 if (mscc_phy_rd(1, 0, 0, &dummy) == 0)
94 gd->board_type = BOARD_TYPE_PCB120;
95 else
96 gd->board_type = BOARD_TYPE_PCB123;
97}
98
99#if defined(CONFIG_MULTI_DTB_FIT)
100int board_fit_config_name_match(const char *name)
101{
102 if (gd->board_type == BOARD_TYPE_PCB120 &&
103 strcmp(name, "ocelot_pcb120") == 0)
104 return 0;
105
106 if (gd->board_type == BOARD_TYPE_PCB123 &&
107 strcmp(name, "ocelot_pcb123") == 0)
108 return 0;
109
110 return -1;
111}
112#endif
113
114#if defined(CONFIG_DTB_RESELECT)
115int embedded_dtb_select(void)
116{
117 do_board_detect();
118 fdtdec_setup();
119
120 return 0;
121}
122#endif