Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Ilya Ledvich | 791ca18 | 2013-11-07 07:57:33 +0200 | [diff] [blame] | 2 | /* |
| 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 Ledvich | 791ca18 | 2013-11-07 07:57:33 +0200 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <common.h> |
Simon Glass | 5e6201b | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 11 | #include <env.h> |
Ilya Ledvich | 791ca18 | 2013-11-07 07:57:33 +0200 | [diff] [blame] | 12 | #include <errno.h> |
| 13 | #include <miiphy.h> |
Simon Glass | 274e0b0 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 14 | #include <net.h> |
Simon Glass | e7872cb | 2019-11-14 12:57:11 -0700 | [diff] [blame] | 15 | #include <status_led.h> |
Ilya Ledvich | 791ca18 | 2013-11-07 07:57:33 +0200 | [diff] [blame] | 16 | #include <cpsw.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 17 | #include <asm/global_data.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 18 | #include <linux/delay.h> |
Ilya Ledvich | 791ca18 | 2013-11-07 07:57:33 +0200 | [diff] [blame] | 19 | |
| 20 | #include <asm/arch/sys_proto.h> |
| 21 | #include <asm/arch/hardware_am33xx.h> |
| 22 | #include <asm/io.h> |
| 23 | #include <asm/gpio.h> |
| 24 | |
| 25 | #include "../common/eeprom.h" |
| 26 | |
| 27 | DECLARE_GLOBAL_DATA_PTR; |
| 28 | |
| 29 | /* |
| 30 | * Basic board specific setup. Pinmux has been handled already. |
| 31 | */ |
| 32 | int board_init(void) |
| 33 | { |
| 34 | gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100; |
| 35 | |
| 36 | gpmc_init(); |
| 37 | |
Uri Mashiach | 4892d39 | 2017-01-19 10:51:45 +0200 | [diff] [blame] | 38 | #if defined(CONFIG_LED_STATUS) && defined(CONFIG_LED_STATUS_BOOT_ENABLE) |
| 39 | status_led_set(CONFIG_LED_STATUS_BOOT, CONFIG_LED_STATUS_OFF); |
Ilya Ledvich | e35d2db | 2013-11-07 07:57:34 +0200 | [diff] [blame] | 40 | #endif |
Ilya Ledvich | 791ca18 | 2013-11-07 07:57:33 +0200 | [diff] [blame] | 41 | return 0; |
| 42 | } |
| 43 | |
| 44 | #if defined (CONFIG_DRIVER_TI_CPSW) && !defined(CONFIG_SPL_BUILD) |
| 45 | static void cpsw_control(int enabled) |
| 46 | { |
| 47 | /* VTP can be added here */ |
| 48 | return; |
| 49 | } |
| 50 | |
| 51 | static struct cpsw_slave_data cpsw_slave = { |
| 52 | .slave_reg_ofs = 0x208, |
| 53 | .sliver_reg_ofs = 0xd80, |
Mugunthan V N | 4944f37 | 2014-02-18 07:31:52 -0500 | [diff] [blame] | 54 | .phy_addr = 0, |
Ilya Ledvich | 791ca18 | 2013-11-07 07:57:33 +0200 | [diff] [blame] | 55 | .phy_if = PHY_INTERFACE_MODE_RGMII, |
| 56 | }; |
| 57 | |
| 58 | static struct cpsw_platform_data cpsw_data = { |
| 59 | .mdio_base = CPSW_MDIO_BASE, |
| 60 | .cpsw_base = CPSW_BASE, |
| 61 | .mdio_div = 0xff, |
| 62 | .channels = 8, |
| 63 | .cpdma_reg_ofs = 0x800, |
| 64 | .slaves = 1, |
| 65 | .slave_data = &cpsw_slave, |
| 66 | .ale_reg_ofs = 0xd00, |
| 67 | .ale_entries = 1024, |
| 68 | .host_port_reg_ofs = 0x108, |
| 69 | .hw_stats_reg_ofs = 0x900, |
| 70 | .bd_ram_ofs = 0x2000, |
| 71 | .mac_control = (1 << 5), |
| 72 | .control = cpsw_control, |
| 73 | .host_port_num = 0, |
| 74 | .version = CPSW_CTRL_VERSION_2, |
| 75 | }; |
| 76 | |
| 77 | /* PHY reset GPIO */ |
| 78 | #define GPIO_PHY_RST GPIO_PIN(3, 7) |
| 79 | |
| 80 | static void board_phy_init(void) |
| 81 | { |
| 82 | gpio_request(GPIO_PHY_RST, "phy_rst"); |
| 83 | gpio_direction_output(GPIO_PHY_RST, 0); |
| 84 | mdelay(2); |
| 85 | gpio_set_value(GPIO_PHY_RST, 1); |
| 86 | mdelay(2); |
| 87 | } |
| 88 | |
| 89 | static void get_efuse_mac_addr(uchar *enetaddr) |
| 90 | { |
| 91 | uint32_t mac_hi, mac_lo; |
| 92 | struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE; |
| 93 | |
| 94 | mac_lo = readl(&cdev->macid0l); |
| 95 | mac_hi = readl(&cdev->macid0h); |
| 96 | enetaddr[0] = mac_hi & 0xFF; |
| 97 | enetaddr[1] = (mac_hi & 0xFF00) >> 8; |
| 98 | enetaddr[2] = (mac_hi & 0xFF0000) >> 16; |
| 99 | enetaddr[3] = (mac_hi & 0xFF000000) >> 24; |
| 100 | enetaddr[4] = mac_lo & 0xFF; |
| 101 | enetaddr[5] = (mac_lo & 0xFF00) >> 8; |
| 102 | } |
| 103 | |
| 104 | /* |
| 105 | * Routine: handle_mac_address |
| 106 | * Description: prepare MAC address for on-board Ethernet. |
| 107 | */ |
| 108 | static int handle_mac_address(void) |
| 109 | { |
| 110 | uchar enetaddr[6]; |
| 111 | int rv; |
| 112 | |
Simon Glass | 399a9ce | 2017-08-03 12:22:14 -0600 | [diff] [blame] | 113 | rv = eth_env_get_enetaddr("ethaddr", enetaddr); |
Ilya Ledvich | 791ca18 | 2013-11-07 07:57:33 +0200 | [diff] [blame] | 114 | if (rv) |
| 115 | return 0; |
| 116 | |
Nikita Kiryanov | b2c5547 | 2015-01-14 10:42:43 +0200 | [diff] [blame] | 117 | rv = cl_eeprom_read_mac_addr(enetaddr, CONFIG_SYS_I2C_EEPROM_BUS); |
Ilya Ledvich | 791ca18 | 2013-11-07 07:57:33 +0200 | [diff] [blame] | 118 | if (rv) |
| 119 | get_efuse_mac_addr(enetaddr); |
| 120 | |
Joe Hershberger | 8ecdbed | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 121 | if (!is_valid_ethaddr(enetaddr)) |
Ilya Ledvich | 791ca18 | 2013-11-07 07:57:33 +0200 | [diff] [blame] | 122 | return -1; |
| 123 | |
Simon Glass | 8551d55 | 2017-08-03 12:22:11 -0600 | [diff] [blame] | 124 | return eth_env_set_enetaddr("ethaddr", enetaddr); |
Ilya Ledvich | 791ca18 | 2013-11-07 07:57:33 +0200 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | #define AR8051_PHY_DEBUG_ADDR_REG 0x1d |
| 128 | #define AR8051_PHY_DEBUG_DATA_REG 0x1e |
| 129 | #define AR8051_DEBUG_RGMII_CLK_DLY_REG 0x5 |
| 130 | #define AR8051_RGMII_TX_CLK_DLY 0x100 |
| 131 | |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 132 | int board_eth_init(struct bd_info *bis) |
Ilya Ledvich | 791ca18 | 2013-11-07 07:57:33 +0200 | [diff] [blame] | 133 | { |
| 134 | int rv, n = 0; |
| 135 | const char *devname; |
| 136 | struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE; |
| 137 | |
| 138 | rv = handle_mac_address(); |
| 139 | if (rv) |
| 140 | printf("No MAC address found!\n"); |
| 141 | |
| 142 | writel(RGMII_MODE_ENABLE | RGMII_INT_DELAY, &cdev->miisel); |
| 143 | |
| 144 | board_phy_init(); |
| 145 | |
| 146 | rv = cpsw_register(&cpsw_data); |
| 147 | if (rv < 0) |
| 148 | printf("Error %d registering CPSW switch\n", rv); |
| 149 | else |
| 150 | n += rv; |
| 151 | |
| 152 | /* |
| 153 | * CPSW RGMII Internal Delay Mode is not supported in all PVT |
| 154 | * operating points. So we must set the TX clock delay feature |
| 155 | * in the AR8051 PHY. Since we only support a single ethernet |
| 156 | * device, we only do this for the first instance. |
| 157 | */ |
| 158 | devname = miiphy_get_current_dev(); |
| 159 | |
| 160 | miiphy_write(devname, 0x0, AR8051_PHY_DEBUG_ADDR_REG, |
| 161 | AR8051_DEBUG_RGMII_CLK_DLY_REG); |
| 162 | miiphy_write(devname, 0x0, AR8051_PHY_DEBUG_DATA_REG, |
| 163 | AR8051_RGMII_TX_CLK_DLY); |
| 164 | return n; |
| 165 | } |
| 166 | #endif /* CONFIG_DRIVER_TI_CPSW && !CONFIG_SPL_BUILD */ |