2011-04-14 12:09:41 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2010,2011
|
|
|
|
* NVIDIA Corporation <www.nvidia.com>
|
|
|
|
*
|
|
|
|
* See file CREDITS for list of people who contributed to this
|
|
|
|
* project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston,
|
|
|
|
* MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
|
|
|
#include <asm/io.h>
|
2012-09-19 22:50:56 +00:00
|
|
|
#include <asm/arch/tegra.h>
|
2012-01-11 12:42:28 +00:00
|
|
|
#include <asm/arch/clock.h>
|
|
|
|
#include <asm/arch/funcmux.h>
|
2012-10-22 06:19:36 +00:00
|
|
|
#include <asm/arch/gpio.h>
|
2011-10-31 06:51:35 +00:00
|
|
|
#include <asm/arch/pinmux.h>
|
2011-09-21 12:40:07 +00:00
|
|
|
#include <asm/gpio.h>
|
2011-04-14 12:09:41 +00:00
|
|
|
|
2011-11-05 04:46:51 +00:00
|
|
|
/* TODO: Remove this code when the SPI switch is working */
|
2013-03-16 18:58:02 +00:00
|
|
|
#if (CONFIG_MACH_TYPE != MACH_TYPE_VENTANA)
|
2012-10-22 06:19:36 +00:00
|
|
|
void gpio_early_init_uart(void)
|
2011-04-14 12:09:41 +00:00
|
|
|
{
|
|
|
|
/* Enable UART via GPIO_PI3 (port 8, bit 3) so serial console works */
|
2012-10-22 06:19:36 +00:00
|
|
|
#ifndef CONFIG_SPL_BUILD
|
2011-10-06 12:52:22 +00:00
|
|
|
gpio_request(GPIO_PI3, NULL);
|
2012-10-22 06:19:36 +00:00
|
|
|
#endif
|
2011-10-06 12:52:22 +00:00
|
|
|
gpio_direction_output(GPIO_PI3, 0);
|
2011-04-14 12:09:41 +00:00
|
|
|
}
|
2011-11-05 04:46:51 +00:00
|
|
|
#endif
|
2011-10-31 06:51:37 +00:00
|
|
|
|
2012-05-22 11:44:48 +00:00
|
|
|
#ifdef CONFIG_TEGRA_MMC
|
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:28 +00:00
|
|
|
funcmux_select(PERIPH_ID_SDMMC4, FUNCMUX_SDMMC4_ATB_GMA_GME_8_BIT);
|
|
|
|
funcmux_select(PERIPH_ID_SDMMC3, FUNCMUX_SDMMC3_SDB_4BIT);
|
2011-10-31 06:51:35 +00:00
|
|
|
|
|
|
|
/* For power GPIO PI6 */
|
|
|
|
pinmux_tristate_disable(PINGRP_ATA);
|
|
|
|
/* For CD GPIO PI5 */
|
|
|
|
pinmux_tristate_disable(PINGRP_ATC);
|
|
|
|
}
|
2011-09-21 12:40:07 +00:00
|
|
|
#endif
|
2012-02-27 10:52:50 +00:00
|
|
|
|
|
|
|
void pin_mux_usb(void)
|
|
|
|
{
|
|
|
|
/* For USB's GPIO PD0. For now, since we have no pinmux in fdt */
|
|
|
|
pinmux_tristate_disable(PINGRP_SLXK);
|
|
|
|
}
|