blob: ef71270d9f2da4d74c97a5fd04ad823c146b7c69 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marcel Ziswiler11e2a532014-09-05 10:18:38 +02002/*
Marcel Ziswiler97d34492018-05-09 00:18:40 +02003 * (C) Copyright 2014-2018
Marcel Ziswiler11e2a532014-09-05 10:18:38 +02004 * Marcel Ziswiler <marcel@ziswiler.com>
Marcel Ziswiler11e2a532014-09-05 10:18:38 +02005 */
6
7#include <common.h>
Marcel Ziswiler61c99fe2022-05-21 12:42:46 +02008#include <env.h>
Simon Glass97589732020-05-10 11:40:02 -06009#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060010#include <log.h>
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020011#include <asm/arch/gp_padctrl.h>
12#include <asm/arch/pinmux.h>
Marcel Ziswilerdd899d02015-08-06 00:47:00 +020013#include <asm/arch-tegra/ap.h>
14#include <asm/arch-tegra/tegra.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060015#include <asm/global_data.h>
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020016#include <asm/gpio.h>
Marcel Ziswilerdd899d02015-08-06 00:47:00 +020017#include <asm/io.h>
Marcel Ziswiler764d4122015-08-06 00:47:10 +020018#include <dm.h>
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020019#include <i2c.h>
Marcel Ziswiler61c99fe2022-05-21 12:42:46 +020020#include <fdt_support.h>
Marcel Ziswiler97d34492018-05-09 00:18:40 +020021#include <pci_tegra.h>
Simon Glassdbd79542020-05-10 11:40:11 -060022#include <linux/delay.h>
Stefan Agner98ffd0f2016-11-30 13:41:53 -080023#include "../common/tdx-common.h"
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020024
25#include "pinmux-config-apalis_t30.h"
26
Marcel Ziswilerd92dee52016-11-16 17:49:23 +010027DECLARE_GLOBAL_DATA_PTR;
28
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020029#define PMU_I2C_ADDRESS 0x2D
30#define MAX_I2C_RETRY 3
31
Marcel Ziswiler97d34492018-05-09 00:18:40 +020032#ifdef CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT
33#define PEX_PERST_N TEGRA_GPIO(S, 7) /* Apalis GPIO7 */
34#define RESET_MOCI_CTRL TEGRA_GPIO(I, 4)
35
36static int pci_reset_status;
37#endif /* CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT */
38
Marcel Ziswilerdd899d02015-08-06 00:47:00 +020039int arch_misc_init(void)
40{
41 if (readl(NV_PA_BASE_SRAM + NVBOOTINFOTABLE_BOOTTYPE) ==
42 NVBOOTTYPE_RECOVERY)
43 printf("USB recovery mode\n");
44
45 return 0;
46}
47
Marcel Ziswilerd92dee52016-11-16 17:49:23 +010048int checkboard(void)
49{
50 printf("Model: Toradex Apalis T30 %dGB\n",
51 (gd->ram_size == 0x40000000) ? 1 : 2);
52
53 return 0;
54}
55
Stefan Agner98ffd0f2016-11-30 13:41:53 -080056#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090057int ft_board_setup(void *blob, struct bd_info *bd)
Stefan Agner98ffd0f2016-11-30 13:41:53 -080058{
Marcel Ziswiler61c99fe2022-05-21 12:42:46 +020059 u8 enetaddr[6];
60
61 /* MAC addr */
62 if (eth_env_get_enetaddr("ethaddr", enetaddr)) {
63 int err = fdt_find_and_setprop(blob,
64 "/pcie@3000/pci@3,0/ethernet@0,0",
65 "local-mac-address", enetaddr, 6, 0);
66
67 /* Older device trees might have used a different node name */
68 if (err < 0)
69 err = fdt_find_and_setprop(blob,
70 "/pcie@3000/pci@3,0/pcie@0",
71 "local-mac-address", enetaddr, 6, 0);
72
73 if (err >= 0)
74 puts(" MAC address updated...\n");
75 }
76
Stefan Agner98ffd0f2016-11-30 13:41:53 -080077 return ft_common_board_setup(blob, bd);
78}
79#endif
80
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020081/*
82 * Routine: pinmux_init
83 * Description: Do individual peripheral pinmux configs
84 */
85void pinmux_init(void)
86{
87 pinmux_config_pingrp_table(tegra3_pinmux_common,
88 ARRAY_SIZE(tegra3_pinmux_common));
89
90 pinmux_config_pingrp_table(unused_pins_lowpower,
91 ARRAY_SIZE(unused_pins_lowpower));
92
93 /* Initialize any non-default pad configs (APB_MISC_GP regs) */
94 pinmux_config_drvgrp_table(apalis_t30_padctrl,
95 ARRAY_SIZE(apalis_t30_padctrl));
96}
97
98#ifdef CONFIG_PCI_TEGRA
99int tegra_pcie_board_init(void)
100{
Simon Glass667aee92014-12-10 08:55:57 -0700101 struct udevice *dev;
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200102 u8 addr, data[1];
103 int err;
104
Simon Glassa2723ae2015-01-25 08:26:55 -0700105 err = i2c_get_chip_for_busnum(0, PMU_I2C_ADDRESS, 1, &dev);
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200106 if (err) {
Simon Glass667aee92014-12-10 08:55:57 -0700107 debug("%s: Cannot find PMIC I2C chip\n", __func__);
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200108 return err;
109 }
Marcel Ziswiler764d4122015-08-06 00:47:10 +0200110
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200111 /* TPS659110: VDD2_OP_REG = 1.05V */
112 data[0] = 0x27;
113 addr = 0x25;
114
Simon Glass7d722762015-01-12 18:02:07 -0700115 err = dm_i2c_write(dev, addr, data, 1);
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200116 if (err) {
117 debug("failed to set VDD supply\n");
118 return err;
119 }
120
121 /* TPS659110: VDD2_REG 7.5 mV/us, ACTIVE */
122 data[0] = 0x0D;
123 addr = 0x24;
124
Simon Glass7d722762015-01-12 18:02:07 -0700125 err = dm_i2c_write(dev, addr, data, 1);
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200126 if (err) {
127 debug("failed to enable VDD supply\n");
128 return err;
129 }
130
131 /* TPS659110: LDO6_REG = 1.1V, ACTIVE */
132 data[0] = 0x0D;
133 addr = 0x35;
134
Simon Glass7d722762015-01-12 18:02:07 -0700135 err = dm_i2c_write(dev, addr, data, 1);
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200136 if (err) {
137 debug("failed to set AVDD supply\n");
138 return err;
139 }
140
Marcel Ziswiler97d34492018-05-09 00:18:40 +0200141#ifdef CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT
142 gpio_request(PEX_PERST_N, "PEX_PERST_N");
143 gpio_request(RESET_MOCI_CTRL, "RESET_MOCI_CTRL");
144#endif /* CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT */
145
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200146 return 0;
147}
Marcel Ziswiler97d34492018-05-09 00:18:40 +0200148
149void tegra_pcie_board_port_reset(struct tegra_pcie_port *port)
150{
151 int index = tegra_pcie_port_index_of_port(port);
152
153 if (index == 2) { /* I210 Gigabit Ethernet Controller (On-module) */
154 tegra_pcie_port_reset(port);
155 }
156#ifdef CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT
157 /*
158 * Apalis PCIe aka port 1 and Apalis Type Specific 4 Lane PCIe aka port
159 * 0 share the same RESET_MOCI therefore only assert it once for both
160 * ports to avoid losing the previously brought up port again.
161 */
162 else if ((index == 1) || (index == 0)) {
163 /* only do it once per init cycle */
164 if (pci_reset_status % 2 == 0) {
165 /*
166 * Reset PLX PEX 8605 PCIe Switch plus PCIe devices on
167 * Apalis Evaluation Board
168 */
169 gpio_direction_output(PEX_PERST_N, 0);
170 gpio_direction_output(RESET_MOCI_CTRL, 0);
171
172 /*
173 * Must be asserted for 100 ms after power and clocks
174 * are stable
175 */
176 mdelay(100);
177
178 gpio_set_value(PEX_PERST_N, 1);
179 /*
180 * Err_5: PEX_REFCLK_OUTpx/nx Clock Outputs is not
181 * Guaranteed Until 900 us After PEX_PERST# De-assertion
182 */
183 mdelay(1);
184 gpio_set_value(RESET_MOCI_CTRL, 1);
185 }
186 pci_reset_status++;
187 }
188#endif /* CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT */
189}
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200190#endif /* CONFIG_PCI_TEGRA */
Gerard Salvatella108d7392018-11-19 15:54:10 +0100191
192/*
193 * Backlight off before OS handover
194 */
195void board_preboot_os(void)
196{
197 gpio_request(TEGRA_GPIO(V, 2), "BKL1_ON");
198 gpio_direction_output(TEGRA_GPIO(V, 2), 0);
199}