Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright 2018 NXP |
| 4 | */ |
| 5 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 6 | #include <env.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 7 | #include <init.h> |
Peng Fan | e5f2b22 | 2019-10-22 03:30:04 +0000 | [diff] [blame] | 8 | #include <miiphy.h> |
| 9 | #include <netdev.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 10 | #include <asm/global_data.h> |
Peng Fan | e5f2b22 | 2019-10-22 03:30:04 +0000 | [diff] [blame] | 11 | |
| 12 | #include <asm/arch/clock.h> |
Alifer Moraes | c1a2a1f | 2020-01-14 11:22:57 -0300 | [diff] [blame] | 13 | #include <asm/arch/sys_proto.h> |
Peng Fan | e5f2b22 | 2019-10-22 03:30:04 +0000 | [diff] [blame] | 14 | #include <asm/io.h> |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 15 | |
| 16 | DECLARE_GLOBAL_DATA_PTR; |
| 17 | |
Peng Fan | e5f2b22 | 2019-10-22 03:30:04 +0000 | [diff] [blame] | 18 | #if IS_ENABLED(CONFIG_FEC_MXC) |
| 19 | static 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 | |
| 30 | int 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 Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 47 | int board_init(void) |
| 48 | { |
Peng Fan | e5f2b22 | 2019-10-22 03:30:04 +0000 | [diff] [blame] | 49 | if (IS_ENABLED(CONFIG_FEC_MXC)) |
| 50 | setup_fec(); |
| 51 | |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 52 | return 0; |
| 53 | } |
| 54 | |
Peng Fan | 3a7e340 | 2019-10-09 03:08:17 +0000 | [diff] [blame] | 55 | int board_mmc_get_env_dev(int devno) |
| 56 | { |
| 57 | return devno; |
| 58 | } |
| 59 | |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 60 | int board_late_init(void) |
| 61 | { |
Tommaso Merciai | 1549d6b | 2021-12-26 18:23:11 +0100 | [diff] [blame] | 62 | if (IS_ENABLED(CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG)) { |
| 63 | env_set("board_name", "EVK"); |
| 64 | env_set("board_rev", "iMX8MM"); |
| 65 | } |
| 66 | |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 67 | return 0; |
| 68 | } |