Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 2 | /* |
Marcel Ziswiler | 97d3449 | 2018-05-09 00:18:40 +0200 | [diff] [blame] | 3 | * (C) Copyright 2014-2018 |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 4 | * Marcel Ziswiler <marcel@ziswiler.com> |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 8 | #include <asm/arch/gp_padctrl.h> |
| 9 | #include <asm/arch/pinmux.h> |
Marcel Ziswiler | dd899d0 | 2015-08-06 00:47:00 +0200 | [diff] [blame] | 10 | #include <asm/arch-tegra/ap.h> |
| 11 | #include <asm/arch-tegra/tegra.h> |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 12 | #include <asm/gpio.h> |
Marcel Ziswiler | dd899d0 | 2015-08-06 00:47:00 +0200 | [diff] [blame] | 13 | #include <asm/io.h> |
Marcel Ziswiler | 764d412 | 2015-08-06 00:47:10 +0200 | [diff] [blame] | 14 | #include <dm.h> |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 15 | #include <i2c.h> |
Marcel Ziswiler | 97d3449 | 2018-05-09 00:18:40 +0200 | [diff] [blame] | 16 | #include <pci_tegra.h> |
Stefan Agner | 98ffd0f | 2016-11-30 13:41:53 -0800 | [diff] [blame] | 17 | #include "../common/tdx-common.h" |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 18 | |
| 19 | #include "pinmux-config-apalis_t30.h" |
| 20 | |
Marcel Ziswiler | d92dee5 | 2016-11-16 17:49:23 +0100 | [diff] [blame] | 21 | DECLARE_GLOBAL_DATA_PTR; |
| 22 | |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 23 | #define PMU_I2C_ADDRESS 0x2D |
| 24 | #define MAX_I2C_RETRY 3 |
| 25 | |
Marcel Ziswiler | 97d3449 | 2018-05-09 00:18:40 +0200 | [diff] [blame] | 26 | #ifdef CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT |
| 27 | #define PEX_PERST_N TEGRA_GPIO(S, 7) /* Apalis GPIO7 */ |
| 28 | #define RESET_MOCI_CTRL TEGRA_GPIO(I, 4) |
| 29 | |
| 30 | static int pci_reset_status; |
| 31 | #endif /* CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT */ |
| 32 | |
Marcel Ziswiler | dd899d0 | 2015-08-06 00:47:00 +0200 | [diff] [blame] | 33 | int arch_misc_init(void) |
| 34 | { |
| 35 | if (readl(NV_PA_BASE_SRAM + NVBOOTINFOTABLE_BOOTTYPE) == |
| 36 | NVBOOTTYPE_RECOVERY) |
| 37 | printf("USB recovery mode\n"); |
| 38 | |
| 39 | return 0; |
| 40 | } |
| 41 | |
Marcel Ziswiler | d92dee5 | 2016-11-16 17:49:23 +0100 | [diff] [blame] | 42 | int checkboard(void) |
| 43 | { |
| 44 | printf("Model: Toradex Apalis T30 %dGB\n", |
| 45 | (gd->ram_size == 0x40000000) ? 1 : 2); |
| 46 | |
| 47 | return 0; |
| 48 | } |
| 49 | |
Stefan Agner | 98ffd0f | 2016-11-30 13:41:53 -0800 | [diff] [blame] | 50 | #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) |
| 51 | int ft_board_setup(void *blob, bd_t *bd) |
| 52 | { |
| 53 | return ft_common_board_setup(blob, bd); |
| 54 | } |
| 55 | #endif |
| 56 | |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 57 | /* |
| 58 | * Routine: pinmux_init |
| 59 | * Description: Do individual peripheral pinmux configs |
| 60 | */ |
| 61 | void pinmux_init(void) |
| 62 | { |
| 63 | pinmux_config_pingrp_table(tegra3_pinmux_common, |
| 64 | ARRAY_SIZE(tegra3_pinmux_common)); |
| 65 | |
| 66 | pinmux_config_pingrp_table(unused_pins_lowpower, |
| 67 | ARRAY_SIZE(unused_pins_lowpower)); |
| 68 | |
| 69 | /* Initialize any non-default pad configs (APB_MISC_GP regs) */ |
| 70 | pinmux_config_drvgrp_table(apalis_t30_padctrl, |
| 71 | ARRAY_SIZE(apalis_t30_padctrl)); |
| 72 | } |
| 73 | |
| 74 | #ifdef CONFIG_PCI_TEGRA |
| 75 | int tegra_pcie_board_init(void) |
| 76 | { |
Simon Glass | 667aee9 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 77 | struct udevice *dev; |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 78 | u8 addr, data[1]; |
| 79 | int err; |
| 80 | |
Simon Glass | a2723ae | 2015-01-25 08:26:55 -0700 | [diff] [blame] | 81 | err = i2c_get_chip_for_busnum(0, PMU_I2C_ADDRESS, 1, &dev); |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 82 | if (err) { |
Simon Glass | 667aee9 | 2014-12-10 08:55:57 -0700 | [diff] [blame] | 83 | debug("%s: Cannot find PMIC I2C chip\n", __func__); |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 84 | return err; |
| 85 | } |
Marcel Ziswiler | 764d412 | 2015-08-06 00:47:10 +0200 | [diff] [blame] | 86 | |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 87 | /* TPS659110: VDD2_OP_REG = 1.05V */ |
| 88 | data[0] = 0x27; |
| 89 | addr = 0x25; |
| 90 | |
Simon Glass | 7d72276 | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 91 | err = dm_i2c_write(dev, addr, data, 1); |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 92 | if (err) { |
| 93 | debug("failed to set VDD supply\n"); |
| 94 | return err; |
| 95 | } |
| 96 | |
| 97 | /* TPS659110: VDD2_REG 7.5 mV/us, ACTIVE */ |
| 98 | data[0] = 0x0D; |
| 99 | addr = 0x24; |
| 100 | |
Simon Glass | 7d72276 | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 101 | err = dm_i2c_write(dev, addr, data, 1); |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 102 | if (err) { |
| 103 | debug("failed to enable VDD supply\n"); |
| 104 | return err; |
| 105 | } |
| 106 | |
| 107 | /* TPS659110: LDO6_REG = 1.1V, ACTIVE */ |
| 108 | data[0] = 0x0D; |
| 109 | addr = 0x35; |
| 110 | |
Simon Glass | 7d72276 | 2015-01-12 18:02:07 -0700 | [diff] [blame] | 111 | err = dm_i2c_write(dev, addr, data, 1); |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 112 | if (err) { |
| 113 | debug("failed to set AVDD supply\n"); |
| 114 | return err; |
| 115 | } |
| 116 | |
Marcel Ziswiler | 97d3449 | 2018-05-09 00:18:40 +0200 | [diff] [blame] | 117 | #ifdef CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT |
| 118 | gpio_request(PEX_PERST_N, "PEX_PERST_N"); |
| 119 | gpio_request(RESET_MOCI_CTRL, "RESET_MOCI_CTRL"); |
| 120 | #endif /* CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT */ |
| 121 | |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 122 | return 0; |
| 123 | } |
Marcel Ziswiler | 97d3449 | 2018-05-09 00:18:40 +0200 | [diff] [blame] | 124 | |
| 125 | void tegra_pcie_board_port_reset(struct tegra_pcie_port *port) |
| 126 | { |
| 127 | int index = tegra_pcie_port_index_of_port(port); |
| 128 | |
| 129 | if (index == 2) { /* I210 Gigabit Ethernet Controller (On-module) */ |
| 130 | tegra_pcie_port_reset(port); |
| 131 | } |
| 132 | #ifdef CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT |
| 133 | /* |
| 134 | * Apalis PCIe aka port 1 and Apalis Type Specific 4 Lane PCIe aka port |
| 135 | * 0 share the same RESET_MOCI therefore only assert it once for both |
| 136 | * ports to avoid losing the previously brought up port again. |
| 137 | */ |
| 138 | else if ((index == 1) || (index == 0)) { |
| 139 | /* only do it once per init cycle */ |
| 140 | if (pci_reset_status % 2 == 0) { |
| 141 | /* |
| 142 | * Reset PLX PEX 8605 PCIe Switch plus PCIe devices on |
| 143 | * Apalis Evaluation Board |
| 144 | */ |
| 145 | gpio_direction_output(PEX_PERST_N, 0); |
| 146 | gpio_direction_output(RESET_MOCI_CTRL, 0); |
| 147 | |
| 148 | /* |
| 149 | * Must be asserted for 100 ms after power and clocks |
| 150 | * are stable |
| 151 | */ |
| 152 | mdelay(100); |
| 153 | |
| 154 | gpio_set_value(PEX_PERST_N, 1); |
| 155 | /* |
| 156 | * Err_5: PEX_REFCLK_OUTpx/nx Clock Outputs is not |
| 157 | * Guaranteed Until 900 us After PEX_PERST# De-assertion |
| 158 | */ |
| 159 | mdelay(1); |
| 160 | gpio_set_value(RESET_MOCI_CTRL, 1); |
| 161 | } |
| 162 | pci_reset_status++; |
| 163 | } |
| 164 | #endif /* CONFIG_APALIS_T30_PCIE_EVALBOARD_INIT */ |
| 165 | } |
Marcel Ziswiler | 11e2a53 | 2014-09-05 10:18:38 +0200 | [diff] [blame] | 166 | #endif /* CONFIG_PCI_TEGRA */ |
Gerard Salvatella | 108d739 | 2018-11-19 15:54:10 +0100 | [diff] [blame] | 167 | |
| 168 | /* |
| 169 | * Backlight off before OS handover |
| 170 | */ |
| 171 | void board_preboot_os(void) |
| 172 | { |
| 173 | gpio_request(TEGRA_GPIO(V, 2), "BKL1_ON"); |
| 174 | gpio_direction_output(TEGRA_GPIO(V, 2), 0); |
| 175 | } |