blob: 3e8b8b1fe39b23ccdfa24f4d04a0959858f9bc7e [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>
Simon Glass97589732020-05-10 11:40:02 -06008#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -06009#include <log.h>
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020010#include <asm/arch/gp_padctrl.h>
11#include <asm/arch/pinmux.h>
Marcel Ziswilerdd899d02015-08-06 00:47:00 +020012#include <asm/arch-tegra/ap.h>
13#include <asm/arch-tegra/tegra.h>
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020014#include <asm/gpio.h>
Marcel Ziswilerdd899d02015-08-06 00:47:00 +020015#include <asm/io.h>
Marcel Ziswiler764d4122015-08-06 00:47:10 +020016#include <dm.h>
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020017#include <i2c.h>
Marcel Ziswiler97d34492018-05-09 00:18:40 +020018#include <pci_tegra.h>
Simon Glassdbd79542020-05-10 11:40:11 -060019#include <linux/delay.h>
Stefan Agner98ffd0f2016-11-30 13:41:53 -080020#include "../common/tdx-common.h"
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020021
22#include "pinmux-config-apalis_t30.h"
23
Marcel Ziswilerd92dee52016-11-16 17:49:23 +010024DECLARE_GLOBAL_DATA_PTR;
25
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020026#define PMU_I2C_ADDRESS 0x2D
27#define MAX_I2C_RETRY 3
28
Marcel Ziswiler97d34492018-05-09 00:18:40 +020029#ifdef CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT
30#define PEX_PERST_N TEGRA_GPIO(S, 7) /* Apalis GPIO7 */
31#define RESET_MOCI_CTRL TEGRA_GPIO(I, 4)
32
33static int pci_reset_status;
34#endif /* CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT */
35
Marcel Ziswilerdd899d02015-08-06 00:47:00 +020036int arch_misc_init(void)
37{
38 if (readl(NV_PA_BASE_SRAM + NVBOOTINFOTABLE_BOOTTYPE) ==
39 NVBOOTTYPE_RECOVERY)
40 printf("USB recovery mode\n");
41
42 return 0;
43}
44
Marcel Ziswilerd92dee52016-11-16 17:49:23 +010045int checkboard(void)
46{
47 printf("Model: Toradex Apalis T30 %dGB\n",
48 (gd->ram_size == 0x40000000) ? 1 : 2);
49
50 return 0;
51}
52
Stefan Agner98ffd0f2016-11-30 13:41:53 -080053#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
54int ft_board_setup(void *blob, bd_t *bd)
55{
56 return ft_common_board_setup(blob, bd);
57}
58#endif
59
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020060/*
61 * Routine: pinmux_init
62 * Description: Do individual peripheral pinmux configs
63 */
64void pinmux_init(void)
65{
66 pinmux_config_pingrp_table(tegra3_pinmux_common,
67 ARRAY_SIZE(tegra3_pinmux_common));
68
69 pinmux_config_pingrp_table(unused_pins_lowpower,
70 ARRAY_SIZE(unused_pins_lowpower));
71
72 /* Initialize any non-default pad configs (APB_MISC_GP regs) */
73 pinmux_config_drvgrp_table(apalis_t30_padctrl,
74 ARRAY_SIZE(apalis_t30_padctrl));
75}
76
77#ifdef CONFIG_PCI_TEGRA
78int tegra_pcie_board_init(void)
79{
Simon Glass667aee92014-12-10 08:55:57 -070080 struct udevice *dev;
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020081 u8 addr, data[1];
82 int err;
83
Simon Glassa2723ae2015-01-25 08:26:55 -070084 err = i2c_get_chip_for_busnum(0, PMU_I2C_ADDRESS, 1, &dev);
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020085 if (err) {
Simon Glass667aee92014-12-10 08:55:57 -070086 debug("%s: Cannot find PMIC I2C chip\n", __func__);
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020087 return err;
88 }
Marcel Ziswiler764d4122015-08-06 00:47:10 +020089
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020090 /* TPS659110: VDD2_OP_REG = 1.05V */
91 data[0] = 0x27;
92 addr = 0x25;
93
Simon Glass7d722762015-01-12 18:02:07 -070094 err = dm_i2c_write(dev, addr, data, 1);
Marcel Ziswiler11e2a532014-09-05 10:18:38 +020095 if (err) {
96 debug("failed to set VDD supply\n");
97 return err;
98 }
99
100 /* TPS659110: VDD2_REG 7.5 mV/us, ACTIVE */
101 data[0] = 0x0D;
102 addr = 0x24;
103
Simon Glass7d722762015-01-12 18:02:07 -0700104 err = dm_i2c_write(dev, addr, data, 1);
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200105 if (err) {
106 debug("failed to enable VDD supply\n");
107 return err;
108 }
109
110 /* TPS659110: LDO6_REG = 1.1V, ACTIVE */
111 data[0] = 0x0D;
112 addr = 0x35;
113
Simon Glass7d722762015-01-12 18:02:07 -0700114 err = dm_i2c_write(dev, addr, data, 1);
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200115 if (err) {
116 debug("failed to set AVDD supply\n");
117 return err;
118 }
119
Marcel Ziswiler97d34492018-05-09 00:18:40 +0200120#ifdef CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT
121 gpio_request(PEX_PERST_N, "PEX_PERST_N");
122 gpio_request(RESET_MOCI_CTRL, "RESET_MOCI_CTRL");
123#endif /* CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT */
124
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200125 return 0;
126}
Marcel Ziswiler97d34492018-05-09 00:18:40 +0200127
128void tegra_pcie_board_port_reset(struct tegra_pcie_port *port)
129{
130 int index = tegra_pcie_port_index_of_port(port);
131
132 if (index == 2) { /* I210 Gigabit Ethernet Controller (On-module) */
133 tegra_pcie_port_reset(port);
134 }
135#ifdef CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT
136 /*
137 * Apalis PCIe aka port 1 and Apalis Type Specific 4 Lane PCIe aka port
138 * 0 share the same RESET_MOCI therefore only assert it once for both
139 * ports to avoid losing the previously brought up port again.
140 */
141 else if ((index == 1) || (index == 0)) {
142 /* only do it once per init cycle */
143 if (pci_reset_status % 2 == 0) {
144 /*
145 * Reset PLX PEX 8605 PCIe Switch plus PCIe devices on
146 * Apalis Evaluation Board
147 */
148 gpio_direction_output(PEX_PERST_N, 0);
149 gpio_direction_output(RESET_MOCI_CTRL, 0);
150
151 /*
152 * Must be asserted for 100 ms after power and clocks
153 * are stable
154 */
155 mdelay(100);
156
157 gpio_set_value(PEX_PERST_N, 1);
158 /*
159 * Err_5: PEX_REFCLK_OUTpx/nx Clock Outputs is not
160 * Guaranteed Until 900 us After PEX_PERST# De-assertion
161 */
162 mdelay(1);
163 gpio_set_value(RESET_MOCI_CTRL, 1);
164 }
165 pci_reset_status++;
166 }
167#endif /* CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT */
168}
Marcel Ziswiler11e2a532014-09-05 10:18:38 +0200169#endif /* CONFIG_PCI_TEGRA */
Gerard Salvatella108d7392018-11-19 15:54:10 +0100170
171/*
172 * Backlight off before OS handover
173 */
174void board_preboot_os(void)
175{
176 gpio_request(TEGRA_GPIO(V, 2), "BKL1_ON");
177 gpio_direction_output(TEGRA_GPIO(V, 2), 0);
178}