blob: 93052841170eb77b99e2f3646d8769d9741f8ca1 [file] [log] [blame]
Stefan Roesedd580802014-10-22 12:13:18 +02001/*
2 * Copyright (C) 2014 Stefan Roese <sr@denx.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <miiphy.h>
Stefan Roese41e705a2015-08-11 09:36:15 +02009#include <netdev.h>
Stefan Roesedd580802014-10-22 12:13:18 +020010#include <asm/io.h>
11#include <asm/arch/cpu.h>
12#include <asm/arch/soc.h>
13
14DECLARE_GLOBAL_DATA_PTR;
15
Stefan Roesedd580802014-10-22 12:13:18 +020016#define ETH_PHY_CTRL_REG 0
17#define ETH_PHY_CTRL_POWER_DOWN_BIT 11
18#define ETH_PHY_CTRL_POWER_DOWN_MASK (1 << ETH_PHY_CTRL_POWER_DOWN_BIT)
19
20/*
21 * Those values and defines are taken from the Marvell U-Boot version
22 * "u-boot-2011.12-2014_T1.0" for the board rd78460gp aka
23 * "RD-AXP-GP rev 1.0".
24 *
25 * GPPs
26 * MPP# NAME IN/OUT
27 * ----------------------------------------------
28 * 21 SW_Reset_ OUT
29 * 25 Phy_Int# IN
30 * 28 SDI_WP IN
31 * 29 SDI_Status IN
32 * 54-61 On GPP Connector ?
33 * 62 Switch Interrupt IN
34 * 63-65 Reserved from SW Board ?
35 * 66 SW_BRD connected IN
36 */
37#define RD_78460_GP_GPP_OUT_ENA_LOW (~(BIT(21) | BIT(20)))
38#define RD_78460_GP_GPP_OUT_ENA_MID (~(BIT(26) | BIT(27)))
39#define RD_78460_GP_GPP_OUT_ENA_HIGH (~(0x0))
40
41#define RD_78460_GP_GPP_OUT_VAL_LOW (BIT(21) | BIT(20))
42#define RD_78460_GP_GPP_OUT_VAL_MID (BIT(26) | BIT(27))
43#define RD_78460_GP_GPP_OUT_VAL_HIGH 0x0
44
45int board_early_init_f(void)
46{
47 /* Configure MPP */
48 writel(0x00000000, MVEBU_MPP_BASE + 0x00);
49 writel(0x00000000, MVEBU_MPP_BASE + 0x04);
50 writel(0x33000000, MVEBU_MPP_BASE + 0x08);
51 writel(0x11000000, MVEBU_MPP_BASE + 0x0c);
52 writel(0x11111111, MVEBU_MPP_BASE + 0x10);
53 writel(0x00221100, MVEBU_MPP_BASE + 0x14);
54 writel(0x00000003, MVEBU_MPP_BASE + 0x18);
55 writel(0x00000000, MVEBU_MPP_BASE + 0x1c);
56 writel(0x00000000, MVEBU_MPP_BASE + 0x20);
57
58 /* Configure GPIO */
59 writel(RD_78460_GP_GPP_OUT_VAL_LOW, MVEBU_GPIO0_BASE + 0x00);
60 writel(RD_78460_GP_GPP_OUT_ENA_LOW, MVEBU_GPIO0_BASE + 0x04);
61 writel(RD_78460_GP_GPP_OUT_VAL_MID, MVEBU_GPIO1_BASE + 0x00);
62 writel(RD_78460_GP_GPP_OUT_ENA_MID, MVEBU_GPIO1_BASE + 0x04);
63 writel(RD_78460_GP_GPP_OUT_VAL_HIGH, MVEBU_GPIO2_BASE + 0x00);
64 writel(RD_78460_GP_GPP_OUT_ENA_HIGH, MVEBU_GPIO2_BASE + 0x04);
65
66 return 0;
67}
68
69int board_init(void)
70{
71 /* adress of boot parameters */
72 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
73
74 return 0;
75}
76
77int checkboard(void)
78{
79 puts("Board: Marvell DB-MV784MP-GP\n");
80
81 return 0;
82}
83
Stefan Roese41e705a2015-08-11 09:36:15 +020084int board_eth_init(bd_t *bis)
85{
86 cpu_eth_init(bis); /* Built in controller(s) come first */
87 return pci_eth_init(bis);
88}
89
Stefan Roesee3b9c982015-11-19 07:46:15 +010090int board_phy_config(struct phy_device *phydev)
Stefan Roesedd580802014-10-22 12:13:18 +020091{
Stefan Roesedd580802014-10-22 12:13:18 +020092 u16 reg;
93
Stefan Roesedd580802014-10-22 12:13:18 +020094 /* Enable QSGMII AN */
95 /* Set page to 4 */
Stefan Roesee3b9c982015-11-19 07:46:15 +010096 phy_write(phydev, MDIO_DEVAD_NONE, 0x16, 4);
Stefan Roesedd580802014-10-22 12:13:18 +020097 /* Enable AN */
Stefan Roesee3b9c982015-11-19 07:46:15 +010098 phy_write(phydev, MDIO_DEVAD_NONE, 0x0, 0x1140);
Stefan Roesedd580802014-10-22 12:13:18 +020099 /* Set page to 0 */
Stefan Roesee3b9c982015-11-19 07:46:15 +0100100 phy_write(phydev, MDIO_DEVAD_NONE, 0x16, 0);
Stefan Roesedd580802014-10-22 12:13:18 +0200101
102 /* Phy C_ANEG */
Stefan Roesee3b9c982015-11-19 07:46:15 +0100103 reg = phy_read(phydev, MDIO_DEVAD_NONE, 0x4);
Stefan Roesedd580802014-10-22 12:13:18 +0200104 reg |= 0x1E0;
Stefan Roesee3b9c982015-11-19 07:46:15 +0100105 phy_write(phydev, MDIO_DEVAD_NONE, 0x4, reg);
Stefan Roesedd580802014-10-22 12:13:18 +0200106
107 /* Soft-Reset */
Stefan Roesee3b9c982015-11-19 07:46:15 +0100108 phy_write(phydev, MDIO_DEVAD_NONE, 22, 0x0000);
109 phy_write(phydev, MDIO_DEVAD_NONE, 0, 0x9140);
Stefan Roesedd580802014-10-22 12:13:18 +0200110
111 /* Power up the phy */
Stefan Roesee3b9c982015-11-19 07:46:15 +0100112 reg = phy_read(phydev, MDIO_DEVAD_NONE, ETH_PHY_CTRL_REG);
Stefan Roesedd580802014-10-22 12:13:18 +0200113 reg &= ~(ETH_PHY_CTRL_POWER_DOWN_MASK);
Stefan Roesee3b9c982015-11-19 07:46:15 +0100114 phy_write(phydev, MDIO_DEVAD_NONE, ETH_PHY_CTRL_REG, reg);
Stefan Roesedd580802014-10-22 12:13:18 +0200115
Stefan Roesee3b9c982015-11-19 07:46:15 +0100116 printf("88E1545 Initialized\n");
117 return 0;
Stefan Roesedd580802014-10-22 12:13:18 +0200118}