blob: 6af71006966c3a817cc0550a001a51a15b576ed4 [file] [log] [blame]
Peng Fanf9220172019-08-27 06:26:08 +00001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright 2018 NXP
4 */
5
6#include <common.h>
Simon Glassed38aef2020-05-10 11:40:03 -06007#include <env.h>
Simon Glass97589732020-05-10 11:40:02 -06008#include <init.h>
Peng Fane5f2b222019-10-22 03:30:04 +00009#include <miiphy.h>
10#include <netdev.h>
11
12#include <asm/arch/clock.h>
Alifer Moraesc1a2a1f2020-01-14 11:22:57 -030013#include <asm/arch/sys_proto.h>
Peng Fane5f2b222019-10-22 03:30:04 +000014#include <asm/io.h>
Peng Fanf9220172019-08-27 06:26:08 +000015
16DECLARE_GLOBAL_DATA_PTR;
17
Peng Fane5f2b222019-10-22 03:30:04 +000018#if IS_ENABLED(CONFIG_FEC_MXC)
19static int setup_fec(void)
20{
21 struct iomuxc_gpr_base_regs *gpr =
22 (struct iomuxc_gpr_base_regs *)IOMUXC_GPR_BASE_ADDR;
23
24 /* Use 125M anatop REF_CLK1 for ENET1, not from external */
25 clrsetbits_le32(&gpr->gpr[1], 0x2000, 0);
26
27 return 0;
28}
29
30int board_phy_config(struct phy_device *phydev)
31{
32 /* enable rgmii rxc skew and phy mode select to RGMII copper */
33 phy_write(phydev, MDIO_DEVAD_NONE, 0x1d, 0x1f);
34 phy_write(phydev, MDIO_DEVAD_NONE, 0x1e, 0x8);
35
36 phy_write(phydev, MDIO_DEVAD_NONE, 0x1d, 0x00);
37 phy_write(phydev, MDIO_DEVAD_NONE, 0x1e, 0x82ee);
38 phy_write(phydev, MDIO_DEVAD_NONE, 0x1d, 0x05);
39 phy_write(phydev, MDIO_DEVAD_NONE, 0x1e, 0x100);
40
41 if (phydev->drv->config)
42 phydev->drv->config(phydev);
43 return 0;
44}
45#endif
46
Peng Fanf9220172019-08-27 06:26:08 +000047int board_init(void)
48{
Peng Fane5f2b222019-10-22 03:30:04 +000049 if (IS_ENABLED(CONFIG_FEC_MXC))
50 setup_fec();
51
Peng Fanf9220172019-08-27 06:26:08 +000052 return 0;
53}
54
Peng Fan3a7e3402019-10-09 03:08:17 +000055int board_mmc_get_env_dev(int devno)
56{
57 return devno;
58}
59
Peng Fanf9220172019-08-27 06:26:08 +000060int board_late_init(void)
61{
62#ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
63 env_set("board_name", "EVK");
64 env_set("board_rev", "iMX8MM");
65#endif
66 return 0;
67}