blob: 181581926c37f5cbec3444b21c304f7186839c4b [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Nikita Kiryanov0da22192016-02-19 19:19:45 +02002/*
3 * Copyright (C) 2015 Compulab, Ltd.
Nikita Kiryanov0da22192016-02-19 19:19:45 +02004 */
5
Tom Rinidec7ea02024-05-20 13:35:03 -06006#include <config.h>
Nikita Kiryanov0da22192016-02-19 19:19:45 +02007#include <i2c.h>
8#include <miiphy.h>
9#include <cpsw.h>
Simon Glass274e0b02020-05-10 11:39:56 -060010#include <net.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060011#include <asm/global_data.h>
Nikita Kiryanov0da22192016-02-19 19:19:45 +020012#include <asm/gpio.h>
13#include <asm/arch/sys_proto.h>
14#include <asm/emif.h>
Simon Glassdbd79542020-05-10 11:40:11 -060015#include <linux/delay.h>
Nikita Kiryanov0da22192016-02-19 19:19:45 +020016#include <power/pmic.h>
17#include <power/tps65218.h>
18#include "board.h"
Faiz Abbas29836a92018-02-15 17:12:11 +053019#include <usb.h>
20#include <asm/omap_common.h>
Nikita Kiryanov0da22192016-02-19 19:19:45 +020021
22DECLARE_GLOBAL_DATA_PTR;
23
24static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
25
26/* setup board specific PMIC */
27int power_init_board(void)
28{
29 struct pmic *p;
Nikita Kiryanov648ac632016-02-19 19:19:47 +020030 uchar tps_status = 0;
Nikita Kiryanov0da22192016-02-19 19:19:45 +020031
32 power_tps65218_init(I2C_PMIC);
33 p = pmic_get("TPS65218_PMIC");
Nikita Kiryanov648ac632016-02-19 19:19:47 +020034 if (p && !pmic_probe(p)) {
Nikita Kiryanov0da22192016-02-19 19:19:45 +020035 puts("PMIC: TPS65218\n");
Nikita Kiryanov648ac632016-02-19 19:19:47 +020036 /* We don't care if fseal is locked, but we do need it set */
37 tps65218_lock_fseal();
38 tps65218_reg_read(TPS65218_STATUS, &tps_status);
39 if (!(tps_status & TPS65218_FSEAL))
40 printf("WARNING: RTC not backed by battery!\n");
41 }
Nikita Kiryanov0da22192016-02-19 19:19:45 +020042
43 return 0;
44}
45
46int board_init(void)
47{
Tom Rinibb4dd962022-11-16 13:10:37 -050048 gd->bd->bi_boot_params = CFG_SYS_SDRAM_BASE + 0x100;
Nikita Kiryanov0da22192016-02-19 19:19:45 +020049 gpmc_init();
50 set_i2c_pin_mux();
Tom Rinia7a9bc02021-08-18 23:12:29 -040051 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
Nikita Kiryanov0da22192016-02-19 19:19:45 +020052 i2c_probe(TPS65218_CHIP_PM);
53
54 return 0;
55}
56
Faiz Abbas29836a92018-02-15 17:12:11 +053057int board_usb_init(int index, enum usb_init_type init)
58{
59 enable_usb_clocks(index);
60 return 0;
61}
62
63int board_usb_cleanup(int index, enum usb_init_type init)
64{
65 disable_usb_clocks(index);
66 return 0;
67}
68
Nikita Kiryanov0da22192016-02-19 19:19:45 +020069#ifdef CONFIG_DRIVER_TI_CPSW
70
71static void cpsw_control(int enabled)
72{
73 return;
74}
75
76static struct cpsw_slave_data cpsw_slaves[] = {
77 {
78 .slave_reg_ofs = 0x208,
79 .sliver_reg_ofs = 0xd80,
80 .phy_addr = 0,
81 .phy_if = PHY_INTERFACE_MODE_RGMII,
82 },
83 {
84 .slave_reg_ofs = 0x308,
85 .sliver_reg_ofs = 0xdc0,
86 .phy_addr = 1,
87 .phy_if = PHY_INTERFACE_MODE_RGMII,
88 },
89};
90
91static struct cpsw_platform_data cpsw_data = {
92 .mdio_base = CPSW_MDIO_BASE,
93 .cpsw_base = CPSW_BASE,
94 .mdio_div = 0xff,
95 .channels = 8,
96 .cpdma_reg_ofs = 0x800,
97 .slaves = 2,
98 .slave_data = cpsw_slaves,
99 .ale_reg_ofs = 0xd00,
100 .ale_entries = 1024,
101 .host_port_reg_ofs = 0x108,
102 .hw_stats_reg_ofs = 0x900,
103 .bd_ram_ofs = 0x2000,
104 .mac_control = (1 << 5),
105 .control = cpsw_control,
106 .host_port_num = 0,
107 .version = CPSW_CTRL_VERSION_2,
108};
109
110#define GPIO_PHY1_RST 170
111#define GPIO_PHY2_RST 168
112
113int board_phy_config(struct phy_device *phydev)
114{
115 unsigned short val;
116
117 /* introduce tx clock delay */
118 phy_write(phydev, MDIO_DEVAD_NONE, 0x1d, 0x5);
119 val = phy_read(phydev, MDIO_DEVAD_NONE, 0x1e);
120 val |= 0x0100;
121 phy_write(phydev, MDIO_DEVAD_NONE, 0x1e, val);
122
123 if (phydev->drv->config)
124 return phydev->drv->config(phydev);
125
126 return 0;
127}
128
129static void board_phy_init(void)
130{
131 set_mdio_pin_mux();
132 writel(0x40003, 0x44e10a74); /* Mux pin as clkout2 */
133 writel(0x10006, 0x44df4108); /* Select EXTDEV as clock source */
134 writel(0x4, 0x44df2e60); /* Set EXTDEV as MNbypass */
135
136 /* For revision A */
137 writel(0x2000009, 0x44df2e6c);
138 writel(0x38a, 0x44df2e70);
139
140 mdelay(10);
141
142 gpio_request(GPIO_PHY1_RST, "phy1_rst");
143 gpio_request(GPIO_PHY2_RST, "phy2_rst");
144 gpio_direction_output(GPIO_PHY1_RST, 0);
145 gpio_direction_output(GPIO_PHY2_RST, 0);
146 mdelay(2);
147
148 gpio_set_value(GPIO_PHY1_RST, 1);
149 gpio_set_value(GPIO_PHY2_RST, 1);
150 mdelay(2);
151}
152
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +0900153int board_eth_init(struct bd_info *bis)
Nikita Kiryanov0da22192016-02-19 19:19:45 +0200154{
155 int rv;
156
157 set_rgmii_pin_mux();
158 writel(RGMII_MODE_ENABLE | RGMII_INT_DELAY, &cdev->miisel);
159 board_phy_init();
160
161 rv = cpsw_register(&cpsw_data);
162 if (rv < 0)
163 printf("Error %d registering CPSW switch\n", rv);
164
165 return rv;
166}
167#endif