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 | |
| 6 | #include <common.h> |
Peng Fan | e5f2b22 | 2019-10-22 03:30:04 +0000 | [diff] [blame] | 7 | #include <miiphy.h> |
| 8 | #include <netdev.h> |
| 9 | |
| 10 | #include <asm/arch/clock.h> |
Alifer Moraes | c1a2a1f | 2020-01-14 11:22:57 -0300 | [diff] [blame] | 11 | #include <asm/arch/sys_proto.h> |
Peng Fan | e5f2b22 | 2019-10-22 03:30:04 +0000 | [diff] [blame] | 12 | #include <asm/io.h> |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 13 | |
| 14 | DECLARE_GLOBAL_DATA_PTR; |
| 15 | |
| 16 | int dram_init(void) |
| 17 | { |
| 18 | gd->ram_size = PHYS_SDRAM_SIZE; |
| 19 | |
| 20 | return 0; |
| 21 | } |
| 22 | |
Peng Fan | e5f2b22 | 2019-10-22 03:30:04 +0000 | [diff] [blame] | 23 | #if IS_ENABLED(CONFIG_FEC_MXC) |
| 24 | static int setup_fec(void) |
| 25 | { |
| 26 | struct iomuxc_gpr_base_regs *gpr = |
| 27 | (struct iomuxc_gpr_base_regs *)IOMUXC_GPR_BASE_ADDR; |
| 28 | |
| 29 | /* Use 125M anatop REF_CLK1 for ENET1, not from external */ |
| 30 | clrsetbits_le32(&gpr->gpr[1], 0x2000, 0); |
| 31 | |
| 32 | return 0; |
| 33 | } |
| 34 | |
| 35 | int board_phy_config(struct phy_device *phydev) |
| 36 | { |
| 37 | /* enable rgmii rxc skew and phy mode select to RGMII copper */ |
| 38 | phy_write(phydev, MDIO_DEVAD_NONE, 0x1d, 0x1f); |
| 39 | phy_write(phydev, MDIO_DEVAD_NONE, 0x1e, 0x8); |
| 40 | |
| 41 | phy_write(phydev, MDIO_DEVAD_NONE, 0x1d, 0x00); |
| 42 | phy_write(phydev, MDIO_DEVAD_NONE, 0x1e, 0x82ee); |
| 43 | phy_write(phydev, MDIO_DEVAD_NONE, 0x1d, 0x05); |
| 44 | phy_write(phydev, MDIO_DEVAD_NONE, 0x1e, 0x100); |
| 45 | |
| 46 | if (phydev->drv->config) |
| 47 | phydev->drv->config(phydev); |
| 48 | return 0; |
| 49 | } |
| 50 | #endif |
| 51 | |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 52 | int board_init(void) |
| 53 | { |
Peng Fan | e5f2b22 | 2019-10-22 03:30:04 +0000 | [diff] [blame] | 54 | if (IS_ENABLED(CONFIG_FEC_MXC)) |
| 55 | setup_fec(); |
| 56 | |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 57 | return 0; |
| 58 | } |
| 59 | |
Peng Fan | 3a7e340 | 2019-10-09 03:08:17 +0000 | [diff] [blame] | 60 | int board_mmc_get_env_dev(int devno) |
| 61 | { |
| 62 | return devno; |
| 63 | } |
| 64 | |
Peng Fan | f922017 | 2019-08-27 06:26:08 +0000 | [diff] [blame] | 65 | int board_late_init(void) |
| 66 | { |
| 67 | #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG |
| 68 | env_set("board_name", "EVK"); |
| 69 | env_set("board_rev", "iMX8MM"); |
| 70 | #endif |
| 71 | return 0; |
| 72 | } |