2011-04-14 12:09:41 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2010,2011
|
|
|
|
* NVIDIA Corporation <www.nvidia.com>
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2011-04-14 12:09:41 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2013-06-18 15:46:51 +00:00
|
|
|
#include <lcd.h>
|
2011-04-14 12:09:41 +00:00
|
|
|
#include <asm/io.h>
|
2012-01-11 12:42:27 +00:00
|
|
|
#include <asm/arch/clock.h>
|
|
|
|
#include <asm/arch/funcmux.h>
|
2011-10-31 06:51:35 +00:00
|
|
|
#include <asm/arch/pinmux.h>
|
2012-09-19 22:50:56 +00:00
|
|
|
#include <asm/arch/tegra.h>
|
2011-10-31 06:51:36 +00:00
|
|
|
#include <asm/gpio.h>
|
2011-09-21 12:40:07 +00:00
|
|
|
|
2017-01-10 04:32:07 +00:00
|
|
|
#ifdef CONFIG_MMC_SDHCI_TEGRA
|
2011-10-31 06:51:35 +00:00
|
|
|
/*
|
|
|
|
* Routine: pin_mux_mmc
|
|
|
|
* Description: setup the pin muxes/tristate values for the SDMMC(s)
|
|
|
|
*/
|
2013-02-21 12:31:30 +00:00
|
|
|
void pin_mux_mmc(void)
|
2011-10-31 06:51:35 +00:00
|
|
|
{
|
2012-01-11 12:42:27 +00:00
|
|
|
funcmux_select(PERIPH_ID_SDMMC4, FUNCMUX_SDMMC4_ATB_GMA_GME_8_BIT);
|
|
|
|
funcmux_select(PERIPH_ID_SDMMC2, FUNCMUX_SDMMC2_DTA_DTD_8BIT);
|
2011-10-31 06:51:35 +00:00
|
|
|
|
|
|
|
/* For power GPIO PI6 */
|
2014-03-21 18:28:58 +00:00
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_ATA);
|
2011-10-31 06:51:35 +00:00
|
|
|
/* For CD GPIO PH2 */
|
2014-03-21 18:28:58 +00:00
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_ATD);
|
2011-10-31 06:51:35 +00:00
|
|
|
|
|
|
|
/* For power GPIO PT3 */
|
2014-03-21 18:28:58 +00:00
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_DTB);
|
2011-10-31 06:51:35 +00:00
|
|
|
/* For CD GPIO PI5 */
|
2014-03-21 18:28:58 +00:00
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_ATC);
|
2011-10-31 06:51:35 +00:00
|
|
|
}
|
2011-09-21 12:40:07 +00:00
|
|
|
#endif
|
2012-10-12 09:45:48 +00:00
|
|
|
|
|
|
|
void pin_mux_usb(void)
|
|
|
|
{
|
|
|
|
funcmux_select(PERIPH_ID_USB2, FUNCMUX_USB2_ULPI);
|
2014-03-21 18:28:58 +00:00
|
|
|
pinmux_set_func(PMUX_PINGRP_CDEV2, PMUX_FUNC_PLLP_OUT4);
|
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_CDEV2);
|
2012-10-12 09:45:48 +00:00
|
|
|
/* USB2 PHY reset GPIO */
|
2014-03-21 18:28:58 +00:00
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_UAC);
|
2012-10-12 09:45:48 +00:00
|
|
|
}
|
2013-06-18 15:46:51 +00:00
|
|
|
|
|
|
|
void pin_mux_display(void)
|
|
|
|
{
|
2014-03-21 18:28:58 +00:00
|
|
|
pinmux_set_func(PMUX_PINGRP_SDC, PMUX_FUNC_PWM);
|
|
|
|
pinmux_tristate_disable(PMUX_PINGRP_SDC);
|
2013-06-18 15:46:51 +00:00
|
|
|
}
|