blob: a9ba2b7e00238b72b12e3114fc90911f24679f3e [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Ilya Ledvich791ca182013-11-07 07:57:33 +02002/*
3 * Board functions for Compulab CM-T335 board
4 *
5 * Copyright (C) 2013, Compulab Ltd - http://compulab.co.il/
6 *
7 * Author: Ilya Ledvich <ilya@compulab.co.il>
Ilya Ledvich791ca182013-11-07 07:57:33 +02008 */
9
10#include <common.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060011#include <env.h>
Ilya Ledvich791ca182013-11-07 07:57:33 +020012#include <errno.h>
13#include <miiphy.h>
Simon Glass274e0b02020-05-10 11:39:56 -060014#include <net.h>
Simon Glasse7872cb2019-11-14 12:57:11 -070015#include <status_led.h>
Ilya Ledvich791ca182013-11-07 07:57:33 +020016#include <cpsw.h>
Simon Glassdbd79542020-05-10 11:40:11 -060017#include <linux/delay.h>
Ilya Ledvich791ca182013-11-07 07:57:33 +020018
19#include <asm/arch/sys_proto.h>
20#include <asm/arch/hardware_am33xx.h>
21#include <asm/io.h>
22#include <asm/gpio.h>
23
24#include "../common/eeprom.h"
25
26DECLARE_GLOBAL_DATA_PTR;
27
28/*
29 * Basic board specific setup. Pinmux has been handled already.
30 */
31int board_init(void)
32{
33 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
34
35 gpmc_init();
36
Uri Mashiach4892d392017-01-19 10:51:45 +020037#if defined(CONFIG_LED_STATUS) && defined(CONFIG_LED_STATUS_BOOT_ENABLE)
38 status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_OFF);
Ilya Ledviche35d2db2013-11-07 07:57:34 +020039#endif
Ilya Ledvich791ca182013-11-07 07:57:33 +020040 return 0;
41}
42
43#if defined (CONFIG_DRIVER_TI_CPSW) && !defined(CONFIG_SPL_BUILD)
44static void cpsw_control(int enabled)
45{
46 /* VTP can be added here */
47 return;
48}
49
50static struct cpsw_slave_data cpsw_slave = {
51 .slave_reg_ofs = 0x208,
52 .sliver_reg_ofs = 0xd80,
Mugunthan V N4944f372014-02-18 07:31:52 -050053 .phy_addr = 0,
Ilya Ledvich791ca182013-11-07 07:57:33 +020054 .phy_if = PHY_INTERFACE_MODE_RGMII,
55};
56
57static struct cpsw_platform_data cpsw_data = {
58 .mdio_base = CPSW_MDIO_BASE,
59 .cpsw_base = CPSW_BASE,
60 .mdio_div = 0xff,
61 .channels = 8,
62 .cpdma_reg_ofs = 0x800,
63 .slaves = 1,
64 .slave_data = &cpsw_slave,
65 .ale_reg_ofs = 0xd00,
66 .ale_entries = 1024,
67 .host_port_reg_ofs = 0x108,
68 .hw_stats_reg_ofs = 0x900,
69 .bd_ram_ofs = 0x2000,
70 .mac_control = (1 << 5),
71 .control = cpsw_control,
72 .host_port_num = 0,
73 .version = CPSW_CTRL_VERSION_2,
74};
75
76/* PHY reset GPIO */
77#define GPIO_PHY_RST GPIO_PIN(3, 7)
78
79static void board_phy_init(void)
80{
81 gpio_request(GPIO_PHY_RST, "phy_rst");
82 gpio_direction_output(GPIO_PHY_RST, 0);
83 mdelay(2);
84 gpio_set_value(GPIO_PHY_RST, 1);
85 mdelay(2);
86}
87
88static void get_efuse_mac_addr(uchar *enetaddr)
89{
90 uint32_t mac_hi, mac_lo;
91 struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
92
93 mac_lo = readl(&cdev->macid0l);
94 mac_hi = readl(&cdev->macid0h);
95 enetaddr[0] = mac_hi & 0xFF;
96 enetaddr[1] = (mac_hi & 0xFF00) >> 8;
97 enetaddr[2] = (mac_hi & 0xFF0000) >> 16;
98 enetaddr[3] = (mac_hi & 0xFF000000) >> 24;
99 enetaddr[4] = mac_lo & 0xFF;
100 enetaddr[5] = (mac_lo & 0xFF00) >> 8;
101}
102
103/*
104 * Routine: handle_mac_address
105 * Description: prepare MAC address for on-board Ethernet.
106 */
107static int handle_mac_address(void)
108{
109 uchar enetaddr[6];
110 int rv;
111
Simon Glass399a9ce2017-08-03 12:22:14 -0600112 rv = eth_env_get_enetaddr("ethaddr", enetaddr);
Ilya Ledvich791ca182013-11-07 07:57:33 +0200113 if (rv)
114 return 0;
115
Nikita Kiryanovb2c55472015-01-14 10:42:43 +0200116 rv = cl_eeprom_read_mac_addr(enetaddr, CONFIG_SYS_I2C_EEPROM_BUS);
Ilya Ledvich791ca182013-11-07 07:57:33 +0200117 if (rv)
118 get_efuse_mac_addr(enetaddr);
119
Joe Hershberger8ecdbed2015-04-08 01:41:04 -0500120 if (!is_valid_ethaddr(enetaddr))
Ilya Ledvich791ca182013-11-07 07:57:33 +0200121 return -1;
122
Simon Glass8551d552017-08-03 12:22:11 -0600123 return eth_env_set_enetaddr("ethaddr", enetaddr);
Ilya Ledvich791ca182013-11-07 07:57:33 +0200124}
125
126#define AR8051_PHY_DEBUG_ADDR_REG 0x1d
127#define AR8051_PHY_DEBUG_DATA_REG 0x1e
128#define AR8051_DEBUG_RGMII_CLK_DLY_REG 0x5
129#define AR8051_RGMII_TX_CLK_DLY 0x100
130
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900131int board_eth_init(struct bd_info *bis)
Ilya Ledvich791ca182013-11-07 07:57:33 +0200132{
133 int rv, n = 0;
134 const char *devname;
135 struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
136
137 rv = handle_mac_address();
138 if (rv)
139 printf("No MAC address found!\n");
140
141 writel(RGMII_MODE_ENABLE | RGMII_INT_DELAY, &cdev->miisel);
142
143 board_phy_init();
144
145 rv = cpsw_register(&cpsw_data);
146 if (rv < 0)
147 printf("Error %d registering CPSW switch\n", rv);
148 else
149 n += rv;
150
151 /*
152 * CPSW RGMII Internal Delay Mode is not supported in all PVT
153 * operating points. So we must set the TX clock delay feature
154 * in the AR8051 PHY. Since we only support a single ethernet
155 * device, we only do this for the first instance.
156 */
157 devname = miiphy_get_current_dev();
158
159 miiphy_write(devname, 0x0, AR8051_PHY_DEBUG_ADDR_REG,
160 AR8051_DEBUG_RGMII_CLK_DLY_REG);
161 miiphy_write(devname, 0x0, AR8051_PHY_DEBUG_DATA_REG,
162 AR8051_RGMII_TX_CLK_DLY);
163 return n;
164}
165#endif /* CONFIG_DRIVER_TI_CPSW && !CONFIG_SPL_BUILD */