2012-10-07 11:36:06 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Lucas Stach
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2012-10-07 11:36:06 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/arch/clock.h>
|
|
|
|
#include <asm/arch/funcmux.h>
|
|
|
|
#include <asm/arch/pinmux.h>
|
2015-08-05 22:47:00 +00:00
|
|
|
#include <asm/arch-tegra/ap.h>
|
2012-10-07 11:36:06 +00:00
|
|
|
#include <asm/arch-tegra/board.h>
|
2015-08-05 22:47:00 +00:00
|
|
|
#include <asm/arch-tegra/tegra.h>
|
2015-03-26 00:31:53 +00:00
|
|
|
#include <asm/gpio.h>
|
2015-08-05 22:47:00 +00:00
|
|
|
#include <asm/io.h>
|
2015-08-05 22:47:04 +00:00
|
|
|
#include <i2c.h>
|
2016-11-16 16:49:23 +00:00
|
|
|
#include <nand.h>
|
2016-11-30 21:41:53 +00:00
|
|
|
#include "../common/tdx-common.h"
|
2016-11-16 16:49:23 +00:00
|
|
|
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
2015-08-05 22:47:04 +00:00
|
|
|
|
|
|
|
#define PMU_I2C_ADDRESS 0x34
|
|
|
|
#define MAX_I2C_RETRY 3
|
|
|
|
#define PMU_SUPPLYENE 0x14
|
|
|
|
#define PMU_SUPPLYENE_SYSINEN (1<<5)
|
|
|
|
#define PMU_SUPPLYENE_EXITSLREQ (1<<1)
|
2015-08-05 22:47:00 +00:00
|
|
|
|
|
|
|
int arch_misc_init(void)
|
|
|
|
{
|
2015-08-05 22:47:04 +00:00
|
|
|
/* Disable PMIC sleep mode on low supply voltage */
|
|
|
|
struct udevice *dev;
|
|
|
|
u8 addr, data[1];
|
|
|
|
int err;
|
|
|
|
|
|
|
|
err = i2c_get_chip_for_busnum(0, PMU_I2C_ADDRESS, 1, &dev);
|
|
|
|
if (err) {
|
|
|
|
debug("%s: Cannot find PMIC I2C chip\n", __func__);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
addr = PMU_SUPPLYENE;
|
|
|
|
|
|
|
|
err = dm_i2c_read(dev, addr, data, 1);
|
|
|
|
if (err) {
|
|
|
|
debug("failed to get PMU_SUPPLYENE\n");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
|
|
|
data[0] &= ~PMU_SUPPLYENE_SYSINEN;
|
|
|
|
data[0] |= PMU_SUPPLYENE_EXITSLREQ;
|
|
|
|
|
|
|
|
err = dm_i2c_write(dev, addr, data, 1);
|
|
|
|
if (err) {
|
|
|
|
debug("failed to set PMU_SUPPLYENE\n");
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2015-08-05 22:47:11 +00:00
|
|
|
/* make sure SODIMM pin 87 nRESET_OUT is released properly */
|
|
|
|
pinmux_set_func(PMUX_PINGRP_ATA, PMUX_FUNC_GMI);
|
|
|
|
|
2015-08-05 22:47:00 +00:00
|
|
|
if (readl(NV_PA_BASE_SRAM + NVBOOTINFOTABLE_BOOTTYPE) ==
|
|
|
|
NVBOOTTYPE_RECOVERY)
|
|
|
|
printf("USB recovery mode\n");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2012-10-07 11:36:06 +00:00
|
|
|
|
2016-11-16 16:49:23 +00:00
|
|
|
int checkboard(void)
|
|
|
|
{
|
|
|
|
printf("Model: Toradex Colibri T20 %dMB V%s\n",
|
|
|
|
(gd->ram_size == 0x10000000) ? 256 : 512,
|
2017-06-27 00:13:06 +00:00
|
|
|
(get_nand_dev_by_index(0)->erasesize >> 10 == 512) ?
|
2016-11-16 16:49:23 +00:00
|
|
|
((gd->ram_size == 0x10000000) ? "1.1B" : "1.1C") : "1.2A");
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2016-11-30 21:41:53 +00:00
|
|
|
#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
|
|
|
|
int ft_board_setup(void *blob, bd_t *bd)
|
|
|
|
{
|
|
|
|
return ft_common_board_setup(blob, bd);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-01-10 04:32:07 +00:00
|
|
|
#ifdef CONFIG_MMC_SDHCI_TEGRA
|
2013-02-21 12:31:30 +00:00
|
|
|
/*
|
|
|
|
* Routine: pin_mux_mmc
|
|
|
|
* Description: setup the pin muxes/tristate values for the SDMMC(s)
|
|
|
|
*/
|
|
|
|
void pin_mux_mmc(void)
|
2012-10-07 11:36:06 +00:00
|
|
|
{
|
|
|
|
funcmux_select(PERIPH_ID_SDMMC4, FUNCMUX_SDMMC4_ATB_GMA_4_BIT);
|
2014-03-21 18:28:58 +00:00
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_GMB);
|
2012-10-07 11:36:06 +00:00
|
|
|
}
|
|
|
|
#endif
|
2015-03-26 00:31:53 +00:00
|
|
|
|
|
|
|
#ifdef CONFIG_TEGRA_NAND
|
|
|
|
void pin_mux_nand(void)
|
|
|
|
{
|
|
|
|
funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_NDFLASH_KBC_8_BIT);
|
2015-03-27 00:31:45 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* configure pingroup ATC to something unrelated to
|
|
|
|
* avoid ATC overriding KBC
|
|
|
|
*/
|
|
|
|
pinmux_set_func(PMUX_PINGRP_ATC, PMUX_FUNC_GMI);
|
2015-03-26 00:31:53 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_USB_EHCI_TEGRA
|
|
|
|
void pin_mux_usb(void)
|
|
|
|
{
|
|
|
|
/* module internal USB bus to connect ethernet chipset */
|
|
|
|
funcmux_select(PERIPH_ID_USB2, FUNCMUX_USB2_ULPI);
|
|
|
|
|
|
|
|
/* ULPI reference clock output */
|
|
|
|
pinmux_set_func(PMUX_PINGRP_CDEV2, PMUX_FUNC_PLLP_OUT4);
|
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_CDEV2);
|
|
|
|
|
|
|
|
/* PHY reset GPIO */
|
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_UAC);
|
|
|
|
|
|
|
|
/* VBus GPIO */
|
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_DTE);
|
|
|
|
|
2015-03-26 01:17:07 +00:00
|
|
|
/* Reset ASIX using LAN_RESET */
|
2016-05-12 18:07:39 +00:00
|
|
|
gpio_request(TEGRA_GPIO(V, 4), "LAN_RESET");
|
|
|
|
gpio_direction_output(TEGRA_GPIO(V, 4), 0);
|
2015-03-26 01:17:07 +00:00
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_GPV);
|
|
|
|
udelay(5);
|
2016-05-12 18:07:39 +00:00
|
|
|
gpio_set_value(TEGRA_GPIO(V, 4), 1);
|
2015-03-26 01:17:07 +00:00
|
|
|
|
|
|
|
/* USBH_PEN: USB 1 aka Tegra USB port 3 VBus */
|
2015-03-26 00:31:53 +00:00
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_SPIG);
|
|
|
|
}
|
|
|
|
#endif
|
2015-08-05 22:47:02 +00:00
|
|
|
|
2016-01-30 23:37:51 +00:00
|
|
|
#ifdef CONFIG_VIDEO_TEGRA20
|
2015-08-05 22:47:02 +00:00
|
|
|
/*
|
|
|
|
* Routine: pin_mux_display
|
|
|
|
* Description: setup the pin muxes/tristate values for the LCD interface)
|
|
|
|
*/
|
|
|
|
void pin_mux_display(void)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Manually untristate BL_ON (PT4 - SODIMM 71) as specified through
|
|
|
|
* device-tree
|
|
|
|
*/
|
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_DTA);
|
|
|
|
|
|
|
|
pinmux_set_func(PMUX_PINGRP_SDC, PMUX_FUNC_PWM);
|
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_SDC);
|
|
|
|
}
|
|
|
|
#endif
|