blob: 8ae9ccf538488dfc2a16570bee81654b2304cb96 [file] [log] [blame]
Lucas Stach85990a92012-10-07 11:36:06 +00001/*
2 * Copyright (C) 2012 Lucas Stach
3 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Lucas Stach85990a92012-10-07 11:36:06 +00005 */
6
7#include <common.h>
Lucas Stach85990a92012-10-07 11:36:06 +00008#include <asm/arch/clock.h>
9#include <asm/arch/funcmux.h>
10#include <asm/arch/pinmux.h>
11#include <asm/arch-tegra/board.h>
Marcel Ziswileraf722622015-03-26 01:31:53 +010012#include <asm/gpio.h>
Lucas Stach85990a92012-10-07 11:36:06 +000013
14#ifdef CONFIG_TEGRA_MMC
Tom Warren9745cf82013-02-21 12:31:30 +000015/*
16 * Routine: pin_mux_mmc
17 * Description: setup the pin muxes/tristate values for the SDMMC(s)
18 */
19void pin_mux_mmc(void)
Lucas Stach85990a92012-10-07 11:36:06 +000020{
21 funcmux_select(PERIPH_ID_SDMMC4, FUNCMUX_SDMMC4_ATB_GMA_4_BIT);
Stephen Warrenf27f4e82014-03-21 12:28:58 -060022 pinmux_tristate_disable(PMUX_PINGRP_GMB);
Lucas Stach85990a92012-10-07 11:36:06 +000023}
24#endif
Marcel Ziswileraf722622015-03-26 01:31:53 +010025
26#ifdef CONFIG_TEGRA_NAND
27void pin_mux_nand(void)
28{
29 funcmux_select(PERIPH_ID_NDFLASH, FUNCMUX_NDFLASH_KBC_8_BIT);
Marcel Ziswilerbdddbab2015-03-27 01:31:45 +010030
31 /*
32 * configure pingroup ATC to something unrelated to
33 * avoid ATC overriding KBC
34 */
35 pinmux_set_func(PMUX_PINGRP_ATC, PMUX_FUNC_GMI);
Marcel Ziswileraf722622015-03-26 01:31:53 +010036}
37#endif
38
39#ifdef CONFIG_USB_EHCI_TEGRA
40void pin_mux_usb(void)
41{
42 /* module internal USB bus to connect ethernet chipset */
43 funcmux_select(PERIPH_ID_USB2, FUNCMUX_USB2_ULPI);
44
45 /* ULPI reference clock output */
46 pinmux_set_func(PMUX_PINGRP_CDEV2, PMUX_FUNC_PLLP_OUT4);
47 pinmux_tristate_disable(PMUX_PINGRP_CDEV2);
48
49 /* PHY reset GPIO */
50 pinmux_tristate_disable(PMUX_PINGRP_UAC);
51
52 /* VBus GPIO */
53 pinmux_tristate_disable(PMUX_PINGRP_DTE);
54
Marcel Ziswilerc33dd262015-03-26 02:17:07 +010055 /* Reset ASIX using LAN_RESET */
56 gpio_request(GPIO_PV4, "LAN_RESET");
57 gpio_direction_output(GPIO_PV4, 0);
58 pinmux_tristate_disable(PMUX_PINGRP_GPV);
59 udelay(5);
60 gpio_set_value(GPIO_PV4, 1);
61
62 /* USBH_PEN: USB 1 aka Tegra USB port 3 VBus */
Marcel Ziswileraf722622015-03-26 01:31:53 +010063 pinmux_tristate_disable(PMUX_PINGRP_SPIG);
64}
65#endif