blob: 9e1fdecfca4d973dc86543026df2ed4457ef7483 [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>
Simon Glass3ba929a2020-10-30 21:38:53 -060011#include <asm/global_data.h>
Stefan Roese03915772014-10-22 12:13:18 +020012#include <asm/io.h>
13#include <asm/arch/cpu.h>
14#include <asm/arch/soc.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060015#include <linux/bitops.h>
Stefan Roese03915772014-10-22 12:13:18 +020016
17DECLARE_GLOBAL_DATA_PTR;
18
Stefan Roese03915772014-10-22 12:13:18 +020019#define ETH_PHY_CTRL_REG 0
20#define ETH_PHY_CTRL_POWER_DOWN_BIT 11
21#define ETH_PHY_CTRL_POWER_DOWN_MASK (1 << ETH_PHY_CTRL_POWER_DOWN_BIT)
22
23/*
24 * Those values and defines are taken from the Marvell U-Boot version
25 * "u-boot-2011.12-2014_T1.0" for the board rd78460gp aka
26 * "RD-AXP-GP rev 1.0".
27 *
28 * GPPs
29 * MPP# NAME IN/OUT
30 * ----------------------------------------------
31 * 21 SW_Reset_ OUT
32 * 25 Phy_Int# IN
33 * 28 SDI_WP IN
34 * 29 SDI_Status IN
35 * 54-61 On GPP Connector ?
36 * 62 Switch Interrupt IN
37 * 63-65 Reserved from SW Board ?
38 * 66 SW_BRD connected IN
39 */
40#define RD_78460_GP_GPP_OUT_ENA_LOW (~(BIT(21) | BIT(20)))
41#define RD_78460_GP_GPP_OUT_ENA_MID (~(BIT(26) | BIT(27)))
42#define RD_78460_GP_GPP_OUT_ENA_HIGH (~(0x0))
43
44#define RD_78460_GP_GPP_OUT_VAL_LOW (BIT(21) | BIT(20))
45#define RD_78460_GP_GPP_OUT_VAL_MID (BIT(26) | BIT(27))
46#define RD_78460_GP_GPP_OUT_VAL_HIGH 0x0
47
48int board_early_init_f(void)
49{
50 /* Configure MPP */
51 writel(0x00000000, MVEBU_MPP_BASE + 0x00);
52 writel(0x00000000, MVEBU_MPP_BASE + 0x04);
53 writel(0x33000000, MVEBU_MPP_BASE + 0x08);
54 writel(0x11000000, MVEBU_MPP_BASE + 0x0c);
55 writel(0x11111111, MVEBU_MPP_BASE + 0x10);
56 writel(0x00221100, MVEBU_MPP_BASE + 0x14);
57 writel(0x00000003, MVEBU_MPP_BASE + 0x18);
58 writel(0x00000000, MVEBU_MPP_BASE + 0x1c);
59 writel(0x00000000, MVEBU_MPP_BASE + 0x20);
60
61 /* Configure GPIO */
62 writel(RD_78460_GP_GPP_OUT_VAL_LOW, MVEBU_GPIO0_BASE + 0x00);
63 writel(RD_78460_GP_GPP_OUT_ENA_LOW, MVEBU_GPIO0_BASE + 0x04);
64 writel(RD_78460_GP_GPP_OUT_VAL_MID, MVEBU_GPIO1_BASE + 0x00);
65 writel(RD_78460_GP_GPP_OUT_ENA_MID, MVEBU_GPIO1_BASE + 0x04);
66 writel(RD_78460_GP_GPP_OUT_VAL_HIGH, MVEBU_GPIO2_BASE + 0x00);
67 writel(RD_78460_GP_GPP_OUT_ENA_HIGH, MVEBU_GPIO2_BASE + 0x04);
68
69 return 0;
70}
71
72int board_init(void)
73{
74 /* adress of boot parameters */
75 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
76
77 return 0;
78}
79
80int checkboard(void)
81{
82 puts("Board: Marvell DB-MV784MP-GP\n");
83
84 return 0;
85}
86
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090087int board_eth_init(struct bd_info *bis)
Stefan Roese7d865292015-08-11 09:36:15 +020088{
89 cpu_eth_init(bis); /* Built in controller(s) come first */
90 return pci_eth_init(bis);
91}
92
Stefan Roese05b38c12015-11-19 07:46:15 +010093int board_phy_config(struct phy_device *phydev)
Stefan Roese03915772014-10-22 12:13:18 +020094{
Stefan Roese03915772014-10-22 12:13:18 +020095 u16 reg;
96
Stefan Roese03915772014-10-22 12:13:18 +020097 /* Enable QSGMII AN */
98 /* Set page to 4 */
Stefan Roese05b38c12015-11-19 07:46:15 +010099 phy_write(phydev, MDIO_DEVAD_NONE, 0x16, 4);
Stefan Roese03915772014-10-22 12:13:18 +0200100 /* Enable AN */
Stefan Roese05b38c12015-11-19 07:46:15 +0100101 phy_write(phydev, MDIO_DEVAD_NONE, 0x0, 0x1140);
Stefan Roese03915772014-10-22 12:13:18 +0200102 /* Set page to 0 */
Stefan Roese05b38c12015-11-19 07:46:15 +0100103 phy_write(phydev, MDIO_DEVAD_NONE, 0x16, 0);
Stefan Roese03915772014-10-22 12:13:18 +0200104
105 /* Phy C_ANEG */
Stefan Roese05b38c12015-11-19 07:46:15 +0100106 reg = phy_read(phydev, MDIO_DEVAD_NONE, 0x4);
Stefan Roese03915772014-10-22 12:13:18 +0200107 reg |= 0x1E0;
Stefan Roese05b38c12015-11-19 07:46:15 +0100108 phy_write(phydev, MDIO_DEVAD_NONE, 0x4, reg);
Stefan Roese03915772014-10-22 12:13:18 +0200109
110 /* Soft-Reset */
Stefan Roese05b38c12015-11-19 07:46:15 +0100111 phy_write(phydev, MDIO_DEVAD_NONE, 22, 0x0000);
112 phy_write(phydev, MDIO_DEVAD_NONE, 0, 0x9140);
Stefan Roese03915772014-10-22 12:13:18 +0200113
114 /* Power up the phy */
Stefan Roese05b38c12015-11-19 07:46:15 +0100115 reg = phy_read(phydev, MDIO_DEVAD_NONE, ETH_PHY_CTRL_REG);
Stefan Roese03915772014-10-22 12:13:18 +0200116 reg &= ~(ETH_PHY_CTRL_POWER_DOWN_MASK);
Stefan Roese05b38c12015-11-19 07:46:15 +0100117 phy_write(phydev, MDIO_DEVAD_NONE, ETH_PHY_CTRL_REG, reg);
Stefan Roese03915772014-10-22 12:13:18 +0200118
Stefan Roese05b38c12015-11-19 07:46:15 +0100119 printf("88E1545 Initialized\n");
120 return 0;
Stefan Roese03915772014-10-22 12:13:18 +0200121}