blob: e614058d10f9e178142183d3fcaa6e0330bcb5e3 [file] [log] [blame]
Gregory CLEMENTdc253e22018-12-14 16:16:50 +01001// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
2/*
3 * Copyright (c) 2018 Microsemi Corporation
4 */
5
6#include <common.h>
Simon Glassa7b51302019-11-14 12:57:46 -07007#include <init.h>
Gregory CLEMENTdc253e22018-12-14 16:16:50 +01008#include <asm/io.h>
Lars Povlsene6ce78c2019-01-02 09:52:24 +01009#include <led.h>
Horatiu Vulturfad0dd82019-05-01 13:16:59 +020010#include <miiphy.h>
Gregory CLEMENTdc253e22018-12-14 16:16:50 +010011
Lars Povlsen90392822018-12-20 09:56:05 +010012enum {
13 BOARD_TYPE_PCB090 = 0xAABBCD00,
14 BOARD_TYPE_PCB091,
15};
16
Gregory CLEMENTdc253e22018-12-14 16:16:50 +010017void board_debug_uart_init(void)
18{
19 /* too early for the pinctrl driver, so configure the UART pins here */
Lars Povlsen90392822018-12-20 09:56:05 +010020 mscc_gpio_set_alternate(30, 1);
21 mscc_gpio_set_alternate(31, 1);
Gregory CLEMENTdc253e22018-12-14 16:16:50 +010022}
23
24int board_early_init_r(void)
25{
26 /* Prepare SPI controller to be used in master mode */
27 writel(0, BASE_CFG + ICPU_SW_MODE);
28
29 /* Address of boot parameters */
30 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE;
Lars Povlsene6ce78c2019-01-02 09:52:24 +010031
32 /* LED setup */
33 if (IS_ENABLED(CONFIG_LED))
34 led_default_state();
35
Horatiu Vulturfad0dd82019-05-01 13:16:59 +020036 return 0;
37}
38
39int board_phy_config(struct phy_device *phydev)
40{
41 phy_write(phydev, 0, 31, 0x10);
42 phy_write(phydev, 0, 18, 0x80A0);
43 while (phy_read(phydev, 0, 18) & 0x8000)
44 ;
45 phy_write(phydev, 0, 31, 0);
Gregory CLEMENTdc253e22018-12-14 16:16:50 +010046 return 0;
47}
Lars Povlsen90392822018-12-20 09:56:05 +010048
49static void do_board_detect(void)
50{
51 u32 chipid = (readl(BASE_DEVCPU_GCB + CHIP_ID) >> 12) & 0xFFFF;
52
53 if (chipid == 0x7428 || chipid == 0x7424)
54 gd->board_type = BOARD_TYPE_PCB091; // Lu10
55 else
56 gd->board_type = BOARD_TYPE_PCB090; // Lu26
57}
58
59#if defined(CONFIG_MULTI_DTB_FIT)
60int board_fit_config_name_match(const char *name)
61{
62 if (gd->board_type == BOARD_TYPE_PCB090 &&
63 strcmp(name, "luton_pcb090") == 0)
64 return 0;
65
66 if (gd->board_type == BOARD_TYPE_PCB091 &&
67 strcmp(name, "luton_pcb091") == 0)
68 return 0;
69
70 return -1;
71}
72#endif
73
74#if defined(CONFIG_DTB_RESELECT)
75int embedded_dtb_select(void)
76{
77 do_board_detect();
78 fdtdec_setup();
79
80 return 0;
81}
82#endif