blob: 8e7dbb3f3f60a55d076e428fd7a4495c760aaf24 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Siddarth Gore16b76702010-03-18 20:25:40 +05302/*
3 * (C) Copyright 2009
4 * Marvell Semiconductor <www.marvell.com>
5 * Written-by: Siddarth Gore <gores@marvell.com>
Siddarth Gore16b76702010-03-18 20:25:40 +05306 */
7
8#include <common.h>
Simon Glass691d7192020-05-10 11:40:02 -06009#include <init.h>
Siddarth Gore16b76702010-03-18 20:25:40 +053010#include <miiphy.h>
Simon Glass5e6267a2019-12-28 10:44:48 -070011#include <net.h>
Simon Glass401d1c42020-10-30 21:38:53 -060012#include <asm/global_data.h>
Simon Glassc62db352017-05-31 19:47:48 -060013#include <asm/mach-types.h>
Lei Wena7efd712011-10-18 20:11:42 +053014#include <asm/arch/cpu.h>
Stefan Roese3dc23f72014-10-22 12:13:06 +020015#include <asm/arch/soc.h>
Siddarth Gore16b76702010-03-18 20:25:40 +053016#include <asm/arch/mpp.h>
17#include "guruplug.h"
18
19DECLARE_GLOBAL_DATA_PTR;
20
Prafulla Wadaskar754ae3f2010-10-20 20:12:27 +053021int board_early_init_f(void)
Siddarth Gore16b76702010-03-18 20:25:40 +053022{
23 /*
24 * default gpio configuration
25 * There are maximum 64 gpios controlled through 2 sets of registers
26 * the below configuration configures mainly initial LED status
27 */
Stefan Roesed5c51322014-10-22 12:13:11 +020028 mvebu_config_gpio(GURUPLUG_OE_VAL_LOW,
29 GURUPLUG_OE_VAL_HIGH,
30 GURUPLUG_OE_LOW, GURUPLUG_OE_HIGH);
Siddarth Gore16b76702010-03-18 20:25:40 +053031
32 /* Multi-Purpose Pins Functionality configuration */
Albert ARIBAUD9d86f0c2012-11-26 11:27:36 +000033 static const u32 kwmpp_config[] = {
Siddarth Gore16b76702010-03-18 20:25:40 +053034 MPP0_NF_IO2,
35 MPP1_NF_IO3,
36 MPP2_NF_IO4,
37 MPP3_NF_IO5,
38 MPP4_NF_IO6,
39 MPP5_NF_IO7,
40 MPP6_SYSRST_OUTn,
41 MPP7_GPO, /* GPIO_RST */
42 MPP8_TW_SDA,
43 MPP9_TW_SCK,
44 MPP10_UART0_TXD,
45 MPP11_UART0_RXD,
46 MPP12_SD_CLK,
47 MPP13_SD_CMD,
48 MPP14_SD_D0,
49 MPP15_SD_D1,
50 MPP16_SD_D2,
51 MPP17_SD_D3,
52 MPP18_NF_IO0,
53 MPP19_NF_IO1,
54 MPP20_GE1_0,
55 MPP21_GE1_1,
56 MPP22_GE1_2,
57 MPP23_GE1_3,
58 MPP24_GE1_4,
59 MPP25_GE1_5,
60 MPP26_GE1_6,
61 MPP27_GE1_7,
62 MPP28_GE1_8,
63 MPP29_GE1_9,
64 MPP30_GE1_10,
65 MPP31_GE1_11,
66 MPP32_GE1_12,
67 MPP33_GE1_13,
68 MPP34_GE1_14,
69 MPP35_GE1_15,
70 MPP36_GPIO,
71 MPP37_GPIO,
72 MPP38_GPIO,
73 MPP39_GPIO,
74 MPP40_TDM_SPI_SCK,
75 MPP41_TDM_SPI_MISO,
76 MPP42_TDM_SPI_MOSI,
77 MPP43_GPIO,
78 MPP44_GPIO,
79 MPP45_GPIO,
80 MPP46_GPIO, /* M_RLED */
81 MPP47_GPIO, /* M_GLED */
82 MPP48_GPIO, /* B_RLED */
83 MPP49_GPIO, /* B_GLED */
84 0
85 };
Valentin Longchamp84683632012-06-01 01:31:00 +000086 kirkwood_mpp_conf(kwmpp_config, NULL);
Prafulla Wadaskar754ae3f2010-10-20 20:12:27 +053087 return 0;
88}
Siddarth Gore16b76702010-03-18 20:25:40 +053089
Prafulla Wadaskar754ae3f2010-10-20 20:12:27 +053090int board_init(void)
91{
Siddarth Gore16b76702010-03-18 20:25:40 +053092 /*
93 * arch number of board
94 */
95 gd->bd->bi_arch_number = MACH_TYPE_GURUPLUG;
96
97 /* adress of boot parameters */
Stefan Roese96c5f082014-10-22 12:13:13 +020098 gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
Siddarth Gore16b76702010-03-18 20:25:40 +053099
100 return 0;
101}
102
Siddarth Gore16b76702010-03-18 20:25:40 +0530103#ifdef CONFIG_RESET_PHY_R
104void mv_phy_88e1121_init(char *name)
105{
106 u16 reg;
107 u16 devadr;
108
109 if (miiphy_set_current_dev(name))
110 return;
111
112 /* command to read PHY dev address */
113 if (miiphy_read(name, 0xEE, 0xEE, (u16 *) &devadr)) {
114 printf("Err..%s could not read PHY dev address\n",
115 __FUNCTION__);
116 return;
117 }
118
119 /*
120 * Enable RGMII delay on Tx and Rx for CPU port
121 * Ref: sec 4.7.2 of chip datasheet
122 */
123 miiphy_write(name, devadr, MV88E1121_PGADR_REG, 2);
124 miiphy_read(name, devadr, MV88E1121_MAC_CTRL2_REG, &reg);
125 reg |= (MV88E1121_RGMII_RXTM_CTRL | MV88E1121_RGMII_TXTM_CTRL);
126 miiphy_write(name, devadr, MV88E1121_MAC_CTRL2_REG, reg);
127 miiphy_write(name, devadr, MV88E1121_PGADR_REG, 0);
128
129 /* reset the phy */
Mahavir Jain3f786bb2010-05-21 14:37:48 +0530130 miiphy_reset(name, devadr);
Siddarth Gore16b76702010-03-18 20:25:40 +0530131
132 printf("88E1121 Initialized on %s\n", name);
133}
134
135void reset_phy(void)
136{
137 /* configure and initialize both PHY's */
138 mv_phy_88e1121_init("egiga0");
139 mv_phy_88e1121_init("egiga1");
140}
141#endif /* CONFIG_RESET_PHY_R */