GK SDK 源码库: XMIPCLinuxV100R005C00SPC030 (kernel/tools/open_source excluded)
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
|
||||
obj-$(CONFIG_SOC_JR2) := spi.o
|
||||
obj-$(CONFIG_SOC_OCELOT) := spi.o
|
||||
@@ -0,0 +1,31 @@
|
||||
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
/*
|
||||
* Copyright (c) 2018 Microsemi Coprporation
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <asm/io.h>
|
||||
#include <spi.h>
|
||||
|
||||
void external_cs_manage(struct udevice *dev, bool enable)
|
||||
{
|
||||
u32 cs = spi_chip_select(dev);
|
||||
/* IF_SI0_OWNER, select the owner of the SI interface
|
||||
* Encoding: 0: SI Slave
|
||||
* 1: SI Boot Master
|
||||
* 2: SI Master Controller
|
||||
*/
|
||||
if (!enable) {
|
||||
writel(ICPU_SW_MODE_SW_PIN_CTRL_MODE |
|
||||
ICPU_SW_MODE_SW_SPI_CS(BIT(cs)),
|
||||
BASE_CFG + ICPU_SW_MODE);
|
||||
clrsetbits_le32(BASE_CFG + ICPU_GENERAL_CTRL,
|
||||
ICPU_GENERAL_CTRL_IF_SI_OWNER_M,
|
||||
ICPU_GENERAL_CTRL_IF_SI_OWNER(2));
|
||||
} else {
|
||||
writel(0, BASE_CFG + ICPU_SW_MODE);
|
||||
clrsetbits_le32(BASE_CFG + ICPU_GENERAL_CTRL,
|
||||
ICPU_GENERAL_CTRL_IF_SI_OWNER_M,
|
||||
ICPU_GENERAL_CTRL_IF_SI_OWNER(1));
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
|
||||
config SYS_VENDOR
|
||||
default "mscc"
|
||||
|
||||
if SOC_JR2
|
||||
|
||||
config SYS_BOARD
|
||||
default "jr2"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
default "jr2"
|
||||
|
||||
endif
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
|
||||
obj-$(CONFIG_SOC_JR2) := jr2.o
|
||||
|
||||
@@ -0,0 +1,149 @@
|
||||
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
/*
|
||||
* Copyright (c) 2018 Microsemi Corporation
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <init.h>
|
||||
#include <asm/io.h>
|
||||
#include <led.h>
|
||||
#include <miiphy.h>
|
||||
|
||||
enum {
|
||||
BOARD_TYPE_PCB110 = 0xAABBCE00,
|
||||
BOARD_TYPE_PCB111,
|
||||
BOARD_TYPE_PCB112,
|
||||
};
|
||||
|
||||
int board_early_init_r(void)
|
||||
{
|
||||
/* Prepare SPI controller to be used in master mode */
|
||||
writel(0, BASE_CFG + ICPU_SW_MODE);
|
||||
clrsetbits_le32(BASE_CFG + ICPU_GENERAL_CTRL,
|
||||
ICPU_GENERAL_CTRL_IF_SI_OWNER_M,
|
||||
ICPU_GENERAL_CTRL_IF_SI_OWNER(2));
|
||||
|
||||
/* Address of boot parameters */
|
||||
gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE;
|
||||
|
||||
/* LED setup */
|
||||
if (IS_ENABLED(CONFIG_LED))
|
||||
led_default_state();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void vcoreiii_gpio_set_alternate(int gpio, int mode)
|
||||
{
|
||||
u32 mask;
|
||||
u32 val0, val1;
|
||||
void __iomem *reg0, *reg1;
|
||||
|
||||
if (gpio < 32) {
|
||||
mask = BIT(gpio);
|
||||
reg0 = BASE_DEVCPU_GCB + GPIO_GPIO_ALT(0);
|
||||
reg1 = BASE_DEVCPU_GCB + GPIO_GPIO_ALT(1);
|
||||
} else {
|
||||
gpio -= 32;
|
||||
mask = BIT(gpio);
|
||||
reg0 = BASE_DEVCPU_GCB + GPIO_GPIO_ALT1(0);
|
||||
reg1 = BASE_DEVCPU_GCB + GPIO_GPIO_ALT1(1);
|
||||
}
|
||||
val0 = readl(reg0);
|
||||
val1 = readl(reg1);
|
||||
if (mode == 1) {
|
||||
writel(val0 | mask, reg0);
|
||||
writel(val1 & ~mask, reg1);
|
||||
} else if (mode == 2) {
|
||||
writel(val0 & ~mask, reg0);
|
||||
writel(val1 | mask, reg1);
|
||||
} else if (mode == 3) {
|
||||
writel(val0 | mask, reg0);
|
||||
writel(val1 | mask, reg1);
|
||||
} else {
|
||||
writel(val0 & ~mask, reg0);
|
||||
writel(val1 & ~mask, reg1);
|
||||
}
|
||||
}
|
||||
|
||||
int board_phy_config(struct phy_device *phydev)
|
||||
{
|
||||
if (gd->board_type == BOARD_TYPE_PCB110 ||
|
||||
gd->board_type == BOARD_TYPE_PCB112) {
|
||||
phy_write(phydev, 0, 31, 0x10);
|
||||
phy_write(phydev, 0, 18, 0x80F0);
|
||||
while (phy_read(phydev, 0, 18) & 0x8000)
|
||||
;
|
||||
phy_write(phydev, 0, 31, 0);
|
||||
}
|
||||
if (gd->board_type == BOARD_TYPE_PCB111) {
|
||||
phy_write(phydev, 0, 31, 0x10);
|
||||
phy_write(phydev, 0, 18, 0x80A0);
|
||||
while (phy_read(phydev, 0, 18) & 0x8000)
|
||||
;
|
||||
phy_write(phydev, 0, 14, 0x800);
|
||||
phy_write(phydev, 0, 31, 0);
|
||||
}
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void board_debug_uart_init(void)
|
||||
{
|
||||
/* too early for the pinctrl driver, so configure the UART pins here */
|
||||
vcoreiii_gpio_set_alternate(10, 1);
|
||||
vcoreiii_gpio_set_alternate(11, 1);
|
||||
}
|
||||
|
||||
static void do_board_detect(void)
|
||||
{
|
||||
int i;
|
||||
u16 pval;
|
||||
|
||||
/* MIIM 1 + 2 MDC/MDIO */
|
||||
for (i = 56; i < 60; i++)
|
||||
vcoreiii_gpio_set_alternate(i, 1);
|
||||
|
||||
/* small delay for settling the pins */
|
||||
mdelay(30);
|
||||
|
||||
if (mscc_phy_rd(0, 0x10, 0x3, &pval) == 0 &&
|
||||
((pval >> 4) & 0x3F) == 0x3c) {
|
||||
gd->board_type = BOARD_TYPE_PCB112; /* Serval2-NID */
|
||||
} else if (mscc_phy_rd(1, 0x0, 0x3, &pval) == 0 &&
|
||||
((pval >> 4) & 0x3F) == 0x3c) {
|
||||
gd->board_type = BOARD_TYPE_PCB110; /* Jr2-24 */
|
||||
} else {
|
||||
/* Fall-back */
|
||||
gd->board_type = BOARD_TYPE_PCB111; /* Jr2-48 */
|
||||
}
|
||||
}
|
||||
|
||||
#if defined(CONFIG_MULTI_DTB_FIT)
|
||||
int board_fit_config_name_match(const char *name)
|
||||
{
|
||||
if (gd->board_type == BOARD_TYPE_PCB110 &&
|
||||
strcmp(name, "jr2_pcb110") == 0)
|
||||
return 0;
|
||||
|
||||
if (gd->board_type == BOARD_TYPE_PCB111 &&
|
||||
strcmp(name, "jr2_pcb111") == 0)
|
||||
return 0;
|
||||
|
||||
if (gd->board_type == BOARD_TYPE_PCB112 &&
|
||||
strcmp(name, "serval2_pcb112") == 0)
|
||||
return 0;
|
||||
|
||||
return -1;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_DTB_RESELECT)
|
||||
int embedded_dtb_select(void)
|
||||
{
|
||||
do_board_detect();
|
||||
fdtdec_setup();
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,14 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
|
||||
if SOC_LUTON
|
||||
|
||||
config SYS_VENDOR
|
||||
default "mscc"
|
||||
|
||||
config SYS_BOARD
|
||||
default "luton"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
default "luton"
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,3 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
|
||||
obj-$(CONFIG_SOC_LUTON) := luton.o
|
||||
@@ -0,0 +1,82 @@
|
||||
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
/*
|
||||
* Copyright (c) 2018 Microsemi Corporation
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <init.h>
|
||||
#include <asm/io.h>
|
||||
#include <led.h>
|
||||
#include <miiphy.h>
|
||||
|
||||
enum {
|
||||
BOARD_TYPE_PCB090 = 0xAABBCD00,
|
||||
BOARD_TYPE_PCB091,
|
||||
};
|
||||
|
||||
void board_debug_uart_init(void)
|
||||
{
|
||||
/* too early for the pinctrl driver, so configure the UART pins here */
|
||||
mscc_gpio_set_alternate(30, 1);
|
||||
mscc_gpio_set_alternate(31, 1);
|
||||
}
|
||||
|
||||
int board_early_init_r(void)
|
||||
{
|
||||
/* Prepare SPI controller to be used in master mode */
|
||||
writel(0, BASE_CFG + ICPU_SW_MODE);
|
||||
|
||||
/* Address of boot parameters */
|
||||
gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE;
|
||||
|
||||
/* LED setup */
|
||||
if (IS_ENABLED(CONFIG_LED))
|
||||
led_default_state();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int board_phy_config(struct phy_device *phydev)
|
||||
{
|
||||
phy_write(phydev, 0, 31, 0x10);
|
||||
phy_write(phydev, 0, 18, 0x80A0);
|
||||
while (phy_read(phydev, 0, 18) & 0x8000)
|
||||
;
|
||||
phy_write(phydev, 0, 31, 0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void do_board_detect(void)
|
||||
{
|
||||
u32 chipid = (readl(BASE_DEVCPU_GCB + CHIP_ID) >> 12) & 0xFFFF;
|
||||
|
||||
if (chipid == 0x7428 || chipid == 0x7424)
|
||||
gd->board_type = BOARD_TYPE_PCB091; // Lu10
|
||||
else
|
||||
gd->board_type = BOARD_TYPE_PCB090; // Lu26
|
||||
}
|
||||
|
||||
#if defined(CONFIG_MULTI_DTB_FIT)
|
||||
int board_fit_config_name_match(const char *name)
|
||||
{
|
||||
if (gd->board_type == BOARD_TYPE_PCB090 &&
|
||||
strcmp(name, "luton_pcb090") == 0)
|
||||
return 0;
|
||||
|
||||
if (gd->board_type == BOARD_TYPE_PCB091 &&
|
||||
strcmp(name, "luton_pcb091") == 0)
|
||||
return 0;
|
||||
|
||||
return -1;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_DTB_RESELECT)
|
||||
int embedded_dtb_select(void)
|
||||
{
|
||||
do_board_detect();
|
||||
fdtdec_setup();
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,14 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
|
||||
config SYS_VENDOR
|
||||
default "mscc"
|
||||
|
||||
if SOC_OCELOT
|
||||
|
||||
config SYS_BOARD
|
||||
default "ocelot"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
default "ocelot"
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,4 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
|
||||
obj-$(CONFIG_SOC_OCELOT) := ocelot.o
|
||||
|
||||
@@ -0,0 +1,121 @@
|
||||
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
/*
|
||||
* Copyright (c) 2018 Microsemi Corporation
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <init.h>
|
||||
#include <asm/io.h>
|
||||
#include <asm/addrspace.h>
|
||||
#include <asm/types.h>
|
||||
#include <spi.h>
|
||||
#include <led.h>
|
||||
#include <wait_bit.h>
|
||||
#include <miiphy.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
enum {
|
||||
BOARD_TYPE_PCB120 = 0xAABBCC00,
|
||||
BOARD_TYPE_PCB123,
|
||||
};
|
||||
|
||||
void mscc_switch_reset(bool enter)
|
||||
{
|
||||
/* Nasty workaround to avoid GPIO19 (DDR!) being reset */
|
||||
mscc_gpio_set_alternate(19, 2);
|
||||
|
||||
debug("applying SwC reset\n");
|
||||
|
||||
writel(ICPU_RESET_CORE_RST_PROTECT, BASE_CFG + ICPU_RESET);
|
||||
writel(PERF_SOFT_RST_SOFT_CHIP_RST, BASE_DEVCPU_GCB + PERF_SOFT_RST);
|
||||
|
||||
if (wait_for_bit_le32(BASE_DEVCPU_GCB + PERF_SOFT_RST,
|
||||
PERF_SOFT_RST_SOFT_CHIP_RST, false, 5000, false))
|
||||
pr_err("Tiemout while waiting for switch reset\n");
|
||||
|
||||
/*
|
||||
* Reset GPIO19 mode back as regular GPIO, output, high (DDR
|
||||
* not reset) (Order is important)
|
||||
*/
|
||||
setbits_le32(BASE_DEVCPU_GCB + PERF_GPIO_OE, BIT(19));
|
||||
writel(BIT(19), BASE_DEVCPU_GCB + PERF_GPIO_OUT_SET);
|
||||
mscc_gpio_set_alternate(19, 0);
|
||||
}
|
||||
|
||||
int board_phy_config(struct phy_device *phydev)
|
||||
{
|
||||
if (gd->board_type == BOARD_TYPE_PCB123)
|
||||
return 0;
|
||||
|
||||
phy_write(phydev, 0, 31, 0x10);
|
||||
phy_write(phydev, 0, 18, 0x80F0);
|
||||
while (phy_read(phydev, 0, 18) & 0x8000)
|
||||
;
|
||||
phy_write(phydev, 0, 31, 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
void board_debug_uart_init(void)
|
||||
{
|
||||
/* too early for the pinctrl driver, so configure the UART pins here */
|
||||
mscc_gpio_set_alternate(6, 1);
|
||||
mscc_gpio_set_alternate(7, 1);
|
||||
}
|
||||
|
||||
int board_early_init_r(void)
|
||||
{
|
||||
/* Prepare SPI controller to be used in master mode */
|
||||
writel(0, BASE_CFG + ICPU_SW_MODE);
|
||||
clrsetbits_le32(BASE_CFG + ICPU_GENERAL_CTRL,
|
||||
ICPU_GENERAL_CTRL_IF_SI_OWNER_M,
|
||||
ICPU_GENERAL_CTRL_IF_SI_OWNER(2));
|
||||
|
||||
/* Address of boot parameters */
|
||||
gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE;
|
||||
|
||||
/* LED setup */
|
||||
if (IS_ENABLED(CONFIG_LED))
|
||||
led_default_state();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void do_board_detect(void)
|
||||
{
|
||||
u16 dummy = 0;
|
||||
|
||||
/* Enable MIIM */
|
||||
mscc_gpio_set_alternate(14, 1);
|
||||
mscc_gpio_set_alternate(15, 1);
|
||||
if (mscc_phy_rd(1, 0, 0, &dummy) == 0)
|
||||
gd->board_type = BOARD_TYPE_PCB120;
|
||||
else
|
||||
gd->board_type = BOARD_TYPE_PCB123;
|
||||
}
|
||||
|
||||
#if defined(CONFIG_MULTI_DTB_FIT)
|
||||
int board_fit_config_name_match(const char *name)
|
||||
{
|
||||
if (gd->board_type == BOARD_TYPE_PCB120 &&
|
||||
strcmp(name, "ocelot_pcb120") == 0)
|
||||
return 0;
|
||||
|
||||
if (gd->board_type == BOARD_TYPE_PCB123 &&
|
||||
strcmp(name, "ocelot_pcb123") == 0)
|
||||
return 0;
|
||||
|
||||
return -1;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_DTB_RESELECT)
|
||||
int embedded_dtb_select(void)
|
||||
{
|
||||
do_board_detect();
|
||||
fdtdec_setup();
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,14 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
|
||||
config SYS_VENDOR
|
||||
default "mscc"
|
||||
|
||||
if SOC_SERVAL
|
||||
|
||||
config SYS_BOARD
|
||||
default "serval"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
default "serval"
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,3 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
|
||||
obj-$(CONFIG_SOC_SERVAL) := serval.o
|
||||
@@ -0,0 +1,87 @@
|
||||
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
/*
|
||||
* Copyright (c) 2018 Microsemi Corporation
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <init.h>
|
||||
#include <asm/io.h>
|
||||
#include <led.h>
|
||||
#include <miiphy.h>
|
||||
|
||||
enum {
|
||||
BOARD_TYPE_PCB106 = 0xAABBCD00,
|
||||
BOARD_TYPE_PCB105,
|
||||
};
|
||||
|
||||
int board_early_init_r(void)
|
||||
{
|
||||
/* Prepare SPI controller to be used in master mode */
|
||||
writel(0, BASE_CFG + ICPU_SW_MODE);
|
||||
|
||||
/* Address of boot parameters */
|
||||
gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE;
|
||||
|
||||
/* LED setup */
|
||||
if (IS_ENABLED(CONFIG_LED))
|
||||
led_default_state();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
int board_phy_config(struct phy_device *phydev)
|
||||
{
|
||||
phy_write(phydev, 0, 31, 0x10);
|
||||
phy_write(phydev, 0, 18, 0x80F0);
|
||||
while (phy_read(phydev, 0, 18) & 0x8000)
|
||||
;
|
||||
phy_write(phydev, 0, 14, 0x800);
|
||||
phy_write(phydev, 0, 31, 0);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void do_board_detect(void)
|
||||
{
|
||||
u16 gpio_in_reg;
|
||||
|
||||
/* Set MDIO and MDC */
|
||||
mscc_gpio_set_alternate(9, 2);
|
||||
mscc_gpio_set_alternate(10, 2);
|
||||
|
||||
/* Set GPIO page */
|
||||
mscc_phy_wr(1, 16, 31, 0x10);
|
||||
if (!mscc_phy_rd(1, 16, 15, &gpio_in_reg)) {
|
||||
if (gpio_in_reg & 0x200)
|
||||
gd->board_type = BOARD_TYPE_PCB106;
|
||||
else
|
||||
gd->board_type = BOARD_TYPE_PCB105;
|
||||
} else {
|
||||
gd->board_type = BOARD_TYPE_PCB105;
|
||||
}
|
||||
mscc_phy_wr(1, 16, 31, 0x0);
|
||||
}
|
||||
|
||||
#if defined(CONFIG_MULTI_DTB_FIT)
|
||||
int board_fit_config_name_match(const char *name)
|
||||
{
|
||||
if (gd->board_type == BOARD_TYPE_PCB106 &&
|
||||
strcmp(name, "serval_pcb106") == 0)
|
||||
return 0;
|
||||
|
||||
if (gd->board_type == BOARD_TYPE_PCB105 &&
|
||||
strcmp(name, "serval_pcb105") == 0)
|
||||
return 0;
|
||||
|
||||
return -1;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_DTB_RESELECT)
|
||||
int embedded_dtb_select(void)
|
||||
{
|
||||
do_board_detect();
|
||||
fdtdec_setup();
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
@@ -0,0 +1,14 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
|
||||
config SYS_VENDOR
|
||||
default "mscc"
|
||||
|
||||
if SOC_SERVALT
|
||||
|
||||
config SYS_BOARD
|
||||
default "servalt"
|
||||
|
||||
config SYS_CONFIG_NAME
|
||||
default "servalt"
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,3 @@
|
||||
# SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
|
||||
obj-$(CONFIG_SOC_SERVALT) := servalt.o
|
||||
@@ -0,0 +1,53 @@
|
||||
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
||||
/*
|
||||
* Copyright (c) 2018 Microsemi Corporation
|
||||
*/
|
||||
|
||||
#include <common.h>
|
||||
#include <init.h>
|
||||
#include <asm/io.h>
|
||||
#include <led.h>
|
||||
|
||||
enum {
|
||||
BOARD_TYPE_PCB116 = 0xAABBCE00,
|
||||
};
|
||||
|
||||
int board_early_init_r(void)
|
||||
{
|
||||
/* Prepare SPI controller to be used in master mode */
|
||||
writel(0, BASE_CFG + ICPU_SW_MODE);
|
||||
|
||||
/* Address of boot parameters */
|
||||
gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE;
|
||||
|
||||
/* LED setup */
|
||||
if (IS_ENABLED(CONFIG_LED))
|
||||
led_default_state();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static void do_board_detect(void)
|
||||
{
|
||||
gd->board_type = BOARD_TYPE_PCB116; /* ServalT */
|
||||
}
|
||||
|
||||
#if defined(CONFIG_MULTI_DTB_FIT)
|
||||
int board_fit_config_name_match(const char *name)
|
||||
{
|
||||
if (gd->board_type == BOARD_TYPE_PCB116 &&
|
||||
strcmp(name, "servalt_pcb116") == 0)
|
||||
return 0;
|
||||
return -1;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_DTB_RESELECT)
|
||||
int embedded_dtb_select(void)
|
||||
{
|
||||
do_board_detect();
|
||||
fdtdec_setup();
|
||||
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user