1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2012 Lucas Stach
7 #include <asm/arch/clock.h>
8 #include <asm/arch/funcmux.h>
9 #include <asm/arch/pinmux.h>
10 #include <asm/arch-tegra/ap.h>
11 #include <asm/arch-tegra/board.h>
12 #include <asm/arch-tegra/tegra.h>
17 #include "../common/tdx-common.h"
19 DECLARE_GLOBAL_DATA_PTR;
21 #define PMU_I2C_ADDRESS 0x34
22 #define MAX_I2C_RETRY 3
23 #define PMU_SUPPLYENE 0x14
24 #define PMU_SUPPLYENE_SYSINEN (1<<5)
25 #define PMU_SUPPLYENE_EXITSLREQ (1<<1)
27 int arch_misc_init(void)
29 /* Disable PMIC sleep mode on low supply voltage */
34 err = i2c_get_chip_for_busnum(0, PMU_I2C_ADDRESS, 1, &dev);
36 debug("%s: Cannot find PMIC I2C chip\n", __func__);
42 err = dm_i2c_read(dev, addr, data, 1);
44 debug("failed to get PMU_SUPPLYENE\n");
48 data[0] &= ~PMU_SUPPLYENE_SYSINEN;
49 data[0] |= PMU_SUPPLYENE_EXITSLREQ;
51 err = dm_i2c_write(dev, addr, data, 1);
53 debug("failed to set PMU_SUPPLYENE\n");
57 /* make sure SODIMM pin 87 nRESET_OUT is released properly */
58 pinmux_set_func(PMUX_PINGRP_ATA, PMUX_FUNC_GMI);
60 if (readl(NV_PA_BASE_SRAM + NVBOOTINFOTABLE_BOOTTYPE) ==
62 printf("USB recovery mode\n");
69 printf("Model: Toradex Colibri T20 %dMB V%s\n",
70 (gd->ram_size == 0x10000000) ? 256 : 512,
71 (get_nand_dev_by_index(0)->erasesize >> 10 == 512) ?
72 ((gd->ram_size == 0x10000000) ? "1.1B" : "1.1C") : "1.2A");
77 #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
78 int ft_board_setup(void *blob, bd_t *bd)
80 return ft_common_board_setup(blob, bd);
84 #ifdef CONFIG_MMC_SDHCI_TEGRA
86 * Routine: pin_mux_mmc
87 * Description: setup the pin muxes/tristate values for the SDMMC(s)
89 void pin_mux_mmc(void)
91 funcmux_select(PERIPH_ID_SDMMC4, FUNCMUX_SDMMC4_ATB_GMA_4_BIT);
92 pinmux_tristate_disable(PMUX_PINGRP_GMB);
96 #ifdef CONFIG_TEGRA_NAND
97 void pin_mux_nand(void)
99 funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_NDFLASH_KBC_8_BIT);
102 * configure pingroup ATC to something unrelated to
103 * avoid ATC overriding KBC
105 pinmux_set_func(PMUX_PINGRP_ATC, PMUX_FUNC_GMI);
109 #ifdef CONFIG_USB_EHCI_TEGRA
110 void pin_mux_usb(void)
112 /* module internal USB bus to connect ethernet chipset */
113 funcmux_select(PERIPH_ID_USB2, FUNCMUX_USB2_ULPI);
115 /* ULPI reference clock output */
116 pinmux_set_func(PMUX_PINGRP_CDEV2, PMUX_FUNC_PLLP_OUT4);
117 pinmux_tristate_disable(PMUX_PINGRP_CDEV2);
120 pinmux_tristate_disable(PMUX_PINGRP_UAC);
123 pinmux_tristate_disable(PMUX_PINGRP_DTE);
125 /* Reset ASIX using LAN_RESET */
126 gpio_request(TEGRA_GPIO(V, 4), "LAN_RESET");
127 gpio_direction_output(TEGRA_GPIO(V, 4), 0);
128 pinmux_tristate_disable(PMUX_PINGRP_GPV);
130 gpio_set_value(TEGRA_GPIO(V, 4), 1);
132 /* USBH_PEN: USB 1 aka Tegra USB port 3 VBus */
133 pinmux_tristate_disable(PMUX_PINGRP_SPIG);
137 #ifdef CONFIG_VIDEO_TEGRA20
139 * Routine: pin_mux_display
140 * Description: setup the pin muxes/tristate values for the LCD interface)
142 void pin_mux_display(void)
145 * Manually untristate BL_ON (PT4 - SODIMM 71) as specified through
148 pinmux_tristate_disable(PMUX_PINGRP_DTA);
150 pinmux_set_func(PMUX_PINGRP_SDC, PMUX_FUNC_PWM);
151 pinmux_tristate_disable(PMUX_PINGRP_SDC);
155 * Backlight off before OS handover
157 void board_preboot_os(void)
159 gpio_request(TEGRA_GPIO(T, 4), "BL_ON");
160 gpio_direction_output(TEGRA_GPIO(T, 4), 0);