blob: 7fb61736710689eadaba2733552a1e1bd094dc30 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Hannes Petermaierfb003662014-02-07 08:07:36 +01002/*
3 * common.c
4 *
5 * common board functions for B&R boards
6 *
Hannes Schmelzer7935f032015-05-28 15:41:12 +02007 * Copyright (C) 2013 Hannes Schmelzer <oe5hpm@oevsv.at>
Hannes Petermaierfb003662014-02-07 08:07:36 +01008 * Bernecker & Rainer Industrieelektronik GmbH - http://www.br-automation.com
9 *
Hannes Petermaierfb003662014-02-07 08:07:36 +010010 */
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Hannes Petermaier69d0d7d2015-02-03 13:22:26 +010012#include <version.h>
Simon Glass313112a2019-08-01 09:46:46 -060013#include <env.h>
Hannes Schmelzer1386d412019-04-10 14:13:11 +020014#include <fdtdec.h>
Hannes Petermaierfb003662014-02-07 08:07:36 +010015#include <i2c.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060016#include <asm/global_data.h>
Simon Glassdbd79542020-05-10 11:40:11 -060017#include <linux/delay.h>
Hannes Petermaierfb003662014-02-07 08:07:36 +010018#include "bur_common.h"
19
Hannes Petermaier69d0d7d2015-02-03 13:22:26 +010020DECLARE_GLOBAL_DATA_PTR;
21
Hannes Petermaierfb003662014-02-07 08:07:36 +010022/* --------------------------------------------------------------------------*/
Hannes Petermaier69d0d7d2015-02-03 13:22:26 +010023
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090024int ft_board_setup(void *blob, struct bd_info *bd)
Hannes Schmelzera21ed272018-07-06 15:41:20 +020025{
26 int nodeoffset;
27
28 nodeoffset = fdt_path_offset(blob, "/factory-settings");
29 if (nodeoffset < 0) {
Hannes Schmelzerde4225b2018-07-06 15:41:25 +020030 printf("%s: cannot find /factory-settings, trying /fset\n",
31 __func__);
32 nodeoffset = fdt_path_offset(blob, "/fset");
33 if (nodeoffset < 0) {
34 printf("%s: cannot find /fset.\n", __func__);
35 return 0;
36 }
Hannes Schmelzera21ed272018-07-06 15:41:20 +020037 }
Hannes Schmelzerde4225b2018-07-06 15:41:25 +020038
Hannes Schmelzera21ed272018-07-06 15:41:20 +020039 if (fdt_setprop(blob, nodeoffset, "bl-version",
40 PLAIN_VERSION, strlen(PLAIN_VERSION)) != 0) {
Hannes Schmelzerde4225b2018-07-06 15:41:25 +020041 printf("%s: no 'bl-version' prop in fdt!\n", __func__);
42 return 0;
Hannes Schmelzera21ed272018-07-06 15:41:20 +020043 }
Hannes Schmelzera21ed272018-07-06 15:41:20 +020044 return 0;
45}
46
Hannes Schmelzer6cd12ce2019-04-10 14:13:13 +020047int brdefaultip_setup(int bus, int chip)
48{
49 int rc;
50 struct udevice *i2cdev;
51 u8 u8buf = 0;
52 char defip[256] = { 0 };
53
54 rc = i2c_get_chip_for_busnum(bus, chip, 2, &i2cdev);
55 if (rc != 0) {
56 printf("WARN: cannot probe baseboard EEPROM!\n");
57 return -1;
58 }
59
60 rc = dm_i2c_read(i2cdev, 0, &u8buf, 1);
61 if (rc != 0) {
62 printf("WARN: cannot read baseboard EEPROM!\n");
63 return -1;
64 }
65
66 if (u8buf != 0xFF)
67 snprintf(defip, sizeof(defip),
68 "if test -r ${ipaddr}; then; else setenv ipaddr 192.168.60.%d; setenv serverip 192.168.60.254; setenv gatewayip 192.168.60.254; setenv netmask 255.255.255.0; fi;",
69 u8buf);
70 else
71 strncpy(defip,
72 "if test -r ${ipaddr}; then; else setenv ipaddr 192.168.60.1; setenv serverip 192.168.60.254; setenv gatewayip 192.168.60.254; setenv netmask 255.255.255.0; fi;",
73 sizeof(defip));
74
75 env_set("brdefaultip", defip);
76 env_set_hex("board_id", u8buf);
77
78 return 0;
79}
80
Hannes Schmelzer9df7d732019-04-10 14:13:12 +020081int overwrite_console(void)
82{
83 return 1;
84}
85
Simon Glass49c24a82024-09-29 19:49:47 -060086#if defined(CONFIG_XPL_BUILD) && defined(CONFIG_AM33XX)
Hannes Schmelzer1386d412019-04-10 14:13:11 +020087#include <asm/arch/hardware.h>
88#include <asm/arch/omap.h>
89#include <asm/arch/clock.h>
90#include <asm/arch/sys_proto.h>
91#include <power/tps65217.h>
Hannes Schmelzer5639eeb2018-07-06 15:41:28 +020092
93static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
94
Hannes Schmelzer717ee362019-01-31 09:24:45 +010095void pmicsetup(u32 mpupll, unsigned int bus)
Hannes Petermaierfb003662014-02-07 08:07:36 +010096{
97 int mpu_vdd;
98 int usb_cur_lim;
99
Hannes Schmelzer717ee362019-01-31 09:24:45 +0100100 if (power_tps65217_init(bus)) {
101 printf("WARN: cannot setup PMIC 0x24 @ bus #%d, not found!.\n",
102 bus);
Hannes Petermaierfb003662014-02-07 08:07:36 +0100103 return;
104 }
105
106 /* Get the frequency which is defined by device fuses */
107 dpll_mpu_opp100.m = am335x_get_efuse_mpu_max_freq(cdev);
108 printf("detected max. frequency: %d - ", dpll_mpu_opp100.m);
109
110 if (0 != mpupll) {
Hannes Schmelzer29bea942018-07-06 15:41:23 +0200111 dpll_mpu_opp100.m = mpupll;
Hannes Petermaierfb003662014-02-07 08:07:36 +0100112 printf("retuning MPU-PLL to: %d MHz.\n", dpll_mpu_opp100.m);
113 } else {
114 puts("ok.\n");
115 }
116 /*
117 * Increase USB current limit to 1300mA or 1800mA and set
118 * the MPU voltage controller as needed.
119 */
120 if (dpll_mpu_opp100.m == MPUPLL_M_1000) {
121 usb_cur_lim = TPS65217_USB_INPUT_CUR_LIMIT_1800MA;
122 mpu_vdd = TPS65217_DCDC_VOLT_SEL_1325MV;
123 } else {
124 usb_cur_lim = TPS65217_USB_INPUT_CUR_LIMIT_1300MA;
125 mpu_vdd = TPS65217_DCDC_VOLT_SEL_1275MV;
126 }
127
128 if (tps65217_reg_write(TPS65217_PROT_LEVEL_NONE, TPS65217_POWER_PATH,
129 usb_cur_lim, TPS65217_USB_INPUT_CUR_LIMIT_MASK))
130 puts("tps65217_reg_write failure\n");
131
132 /* Set DCDC3 (CORE) voltage to 1.125V */
133 if (tps65217_voltage_update(TPS65217_DEFDCDC3,
134 TPS65217_DCDC_VOLT_SEL_1125MV)) {
135 puts("tps65217_voltage_update failure\n");
136 return;
137 }
138
139 /* Set CORE Frequencies to OPP100 */
140 do_setup_dpll(&dpll_core_regs, &dpll_core_opp100);
141
142 /* Set DCDC2 (MPU) voltage */
143 if (tps65217_voltage_update(TPS65217_DEFDCDC2, mpu_vdd)) {
144 puts("tps65217_voltage_update failure\n");
145 return;
146 }
147
148 /* Set LDO3 to 1.8V */
149 if (tps65217_reg_write(TPS65217_PROT_LEVEL_2,
150 TPS65217_DEFLS1,
151 TPS65217_LDO_VOLTAGE_OUT_1_8,
152 TPS65217_LDO_MASK))
153 puts("tps65217_reg_write failure\n");
154 /* Set LDO4 to 3.3V */
155 if (tps65217_reg_write(TPS65217_PROT_LEVEL_2,
156 TPS65217_DEFLS2,
157 TPS65217_LDO_VOLTAGE_OUT_3_3,
158 TPS65217_LDO_MASK))
159 puts("tps65217_reg_write failure\n");
160
161 /* Set MPU Frequency to what we detected now that voltages are set */
162 do_setup_dpll(&dpll_mpu_regs, &dpll_mpu_opp100);
Hannes Petermaier69d0d7d2015-02-03 13:22:26 +0100163 /* Set PWR_EN bit in Status Register */
164 tps65217_reg_write(TPS65217_PROT_LEVEL_NONE,
165 TPS65217_STATUS, TPS65217_PWR_OFF, TPS65217_PWR_OFF);
Hannes Petermaierfb003662014-02-07 08:07:36 +0100166}
167
168void set_uart_mux_conf(void)
169{
170 enable_uart0_pin_mux();
171}
172
173void set_mux_conf_regs(void)
174{
175 enable_board_pin_mux();
176}
177
Simon Glass49c24a82024-09-29 19:49:47 -0600178#endif /* CONFIG_XPL_BUILD && CONFIG_AM33XX */