blob: 8d1dbebdb7a6be95b78599183adb3b163170ff23 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Roese03915772014-10-22 12:13:18 +02002/*
3 * Copyright (C) 2014 Stefan Roese <sr@denx.de>
Stefan Roese03915772014-10-22 12:13:18 +02004 */
5
6#include <common.h>
Simon Glass97589732020-05-10 11:40:02 -06007#include <init.h>
Stefan Roese03915772014-10-22 12:13:18 +02008#include <miiphy.h>
Simon Glass274e0b02020-05-10 11:39:56 -06009#include <net.h>
Stefan Roese7d865292015-08-11 09:36:15 +020010#include <netdev.h>
Stefan Roese03915772014-10-22 12:13:18 +020011#include <asm/io.h>
12#include <asm/arch/cpu.h>
13#include <asm/arch/soc.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060014#include <linux/bitops.h>
Stefan Roese03915772014-10-22 12:13:18 +020015
16DECLARE_GLOBAL_DATA_PTR;
17
Stefan Roese03915772014-10-22 12:13:18 +020018#define ETH_PHY_CTRL_REG 0
19#define ETH_PHY_CTRL_POWER_DOWN_BIT 11
20#define ETH_PHY_CTRL_POWER_DOWN_MASK (1 << ETH_PHY_CTRL_POWER_DOWN_BIT)
21
22/*
23 * Those values and defines are taken from the Marvell U-Boot version
24 * "u-boot-2011.12-2014_T1.0" for the board rd78460gp aka
25 * "RD-AXP-GP rev 1.0".
26 *
27 * GPPs
28 * MPP# NAME IN/OUT
29 * ----------------------------------------------
30 * 21 SW_Reset_ OUT
31 * 25 Phy_Int# IN
32 * 28 SDI_WP IN
33 * 29 SDI_Status IN
34 * 54-61 On GPP Connector ?
35 * 62 Switch Interrupt IN
36 * 63-65 Reserved from SW Board ?
37 * 66 SW_BRD connected IN
38 */
39#define RD_78460_GP_GPP_OUT_ENA_LOW (~(BIT(21) | BIT(20)))
40#define RD_78460_GP_GPP_OUT_ENA_MID (~(BIT(26) | BIT(27)))
41#define RD_78460_GP_GPP_OUT_ENA_HIGH (~(0x0))
42
43#define RD_78460_GP_GPP_OUT_VAL_LOW (BIT(21) | BIT(20))
44#define RD_78460_GP_GPP_OUT_VAL_MID (BIT(26) | BIT(27))
45#define RD_78460_GP_GPP_OUT_VAL_HIGH 0x0
46
47int board_early_init_f(void)
48{
49 /* Configure MPP */
50 writel(0x00000000, MVEBU_MPP_BASE + 0x00);
51 writel(0x00000000, MVEBU_MPP_BASE + 0x04);
52 writel(0x33000000, MVEBU_MPP_BASE + 0x08);
53 writel(0x11000000, MVEBU_MPP_BASE + 0x0c);
54 writel(0x11111111, MVEBU_MPP_BASE + 0x10);
55 writel(0x00221100, MVEBU_MPP_BASE + 0x14);
56 writel(0x00000003, MVEBU_MPP_BASE + 0x18);
57 writel(0x00000000, MVEBU_MPP_BASE + 0x1c);
58 writel(0x00000000, MVEBU_MPP_BASE + 0x20);
59
60 /* Configure GPIO */
61 writel(RD_78460_GP_GPP_OUT_VAL_LOW, MVEBU_GPIO0_BASE + 0x00);
62 writel(RD_78460_GP_GPP_OUT_ENA_LOW, MVEBU_GPIO0_BASE + 0x04);
63 writel(RD_78460_GP_GPP_OUT_VAL_MID, MVEBU_GPIO1_BASE + 0x00);
64 writel(RD_78460_GP_GPP_OUT_ENA_MID, MVEBU_GPIO1_BASE + 0x04);
65 writel(RD_78460_GP_GPP_OUT_VAL_HIGH, MVEBU_GPIO2_BASE + 0x00);
66 writel(RD_78460_GP_GPP_OUT_ENA_HIGH, MVEBU_GPIO2_BASE + 0x04);
67
68 return 0;
69}
70
71int board_init(void)
72{
73 /* adress of boot parameters */
74 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
75
76 return 0;
77}
78
79int checkboard(void)
80{
81 puts("Board: Marvell DB-MV784MP-GP\n");
82
83 return 0;
84}
85
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090086int board_eth_init(struct bd_info *bis)
Stefan Roese7d865292015-08-11 09:36:15 +020087{
88 cpu_eth_init(bis); /* Built in controller(s) come first */
89 return pci_eth_init(bis);
90}
91
Stefan Roese05b38c12015-11-19 07:46:15 +010092int board_phy_config(struct phy_device *phydev)
Stefan Roese03915772014-10-22 12:13:18 +020093{
Stefan Roese03915772014-10-22 12:13:18 +020094 u16 reg;
95
Stefan Roese03915772014-10-22 12:13:18 +020096 /* Enable QSGMII AN */
97 /* Set page to 4 */
Stefan Roese05b38c12015-11-19 07:46:15 +010098 phy_write(phydev, MDIO_DEVAD_NONE, 0x16, 4);
Stefan Roese03915772014-10-22 12:13:18 +020099 /* Enable AN */
Stefan Roese05b38c12015-11-19 07:46:15 +0100100 phy_write(phydev, MDIO_DEVAD_NONE, 0x0, 0x1140);
Stefan Roese03915772014-10-22 12:13:18 +0200101 /* Set page to 0 */
Stefan Roese05b38c12015-11-19 07:46:15 +0100102 phy_write(phydev, MDIO_DEVAD_NONE, 0x16, 0);
Stefan Roese03915772014-10-22 12:13:18 +0200103
104 /* Phy C_ANEG */
Stefan Roese05b38c12015-11-19 07:46:15 +0100105 reg = phy_read(phydev, MDIO_DEVAD_NONE, 0x4);
Stefan Roese03915772014-10-22 12:13:18 +0200106 reg |= 0x1E0;
Stefan Roese05b38c12015-11-19 07:46:15 +0100107 phy_write(phydev, MDIO_DEVAD_NONE, 0x4, reg);
Stefan Roese03915772014-10-22 12:13:18 +0200108
109 /* Soft-Reset */
Stefan Roese05b38c12015-11-19 07:46:15 +0100110 phy_write(phydev, MDIO_DEVAD_NONE, 22, 0x0000);
111 phy_write(phydev, MDIO_DEVAD_NONE, 0, 0x9140);
Stefan Roese03915772014-10-22 12:13:18 +0200112
113 /* Power up the phy */
Stefan Roese05b38c12015-11-19 07:46:15 +0100114 reg = phy_read(phydev, MDIO_DEVAD_NONE, ETH_PHY_CTRL_REG);
Stefan Roese03915772014-10-22 12:13:18 +0200115 reg &= ~(ETH_PHY_CTRL_POWER_DOWN_MASK);
Stefan Roese05b38c12015-11-19 07:46:15 +0100116 phy_write(phydev, MDIO_DEVAD_NONE, ETH_PHY_CTRL_REG, reg);
Stefan Roese03915772014-10-22 12:13:18 +0200117
Stefan Roese05b38c12015-11-19 07:46:15 +0100118 printf("88E1545 Initialized\n");
119 return 0;
Stefan Roese03915772014-10-22 12:13:18 +0200120}