blob: 1447f47605b326cf51765c3c55c21c791b83b0f9 [file] [log] [blame]
Stephen Warrenf5dc27a2012-01-06 12:14:42 +00001/*
2 * Copyright (c) 2010-2012, NVIDIA CORPORATION. All rights reserved.
3 *
4 * See file CREDITS for list of people who contributed to this
5 * project.
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms and conditions of the GNU General Public License,
9 * version 2, as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 */
16
17#include <common.h>
18#include <asm/io.h>
Tom Warrenab371962012-09-19 15:50:56 -070019#include <asm/arch/tegra.h>
Stephen Warrenf5dc27a2012-01-06 12:14:42 +000020#include <asm/arch/pinmux.h>
Tom Warrenab371962012-09-19 15:50:56 -070021#include <asm/arch-tegra/mmc.h>
Stephen Warrenf5dc27a2012-01-06 12:14:42 +000022#include <asm/gpio.h>
Tom Warren2967d482012-06-01 08:22:14 +000023#ifdef CONFIG_TEGRA_MMC
Stephen Warrenf5dc27a2012-01-06 12:14:42 +000024#include <mmc.h>
25#endif
26
Stephen Warrenf5dc27a2012-01-06 12:14:42 +000027
Tom Warren2967d482012-06-01 08:22:14 +000028#ifdef CONFIG_TEGRA_MMC
Stephen Warrenf5dc27a2012-01-06 12:14:42 +000029/*
30 * Routine: pin_mux_mmc
31 * Description: setup the pin muxes/tristate values for the SDMMC(s)
32 */
33static void pin_mux_mmc(void)
34{
35 /* SDMMC4: config 3, x8 on 2nd set of pins */
36 pinmux_set_func(PINGRP_ATB, PMUX_FUNC_SDIO4);
37 pinmux_set_func(PINGRP_GMA, PMUX_FUNC_SDIO4);
38 pinmux_set_func(PINGRP_GME, PMUX_FUNC_SDIO4);
39
40 pinmux_tristate_disable(PINGRP_ATB);
41 pinmux_tristate_disable(PINGRP_GMA);
42 pinmux_tristate_disable(PINGRP_GME);
43
Lucas Stach2249fb62012-05-16 08:21:01 +000044 /* SDIO1: SDIO1_CLK, SDIO1_CMD, SDIO1_DAT[3:0] */
45 pinmux_set_func(PINGRP_SDIO1, PMUX_FUNC_SDIO1);
Stephen Warrenf5dc27a2012-01-06 12:14:42 +000046
Lucas Stach2249fb62012-05-16 08:21:01 +000047 pinmux_tristate_disable(PINGRP_SDIO1);
Stephen Warrenf5dc27a2012-01-06 12:14:42 +000048
49 /* For power GPIO PV1 */
50 pinmux_tristate_disable(PINGRP_UAC);
Stephen Warren07dde1e2012-05-15 11:58:11 +000051 /* For CD GPIO PV5 */
52 pinmux_tristate_disable(PINGRP_GPV);
Stephen Warrenf5dc27a2012-01-06 12:14:42 +000053}
54
55/* this is a weak define that we are overriding */
56int board_mmc_init(bd_t *bd)
57{
58 debug("board_mmc_init called\n");
59
60 /* Enable muxes, etc. for SDMMC controllers */
61 pin_mux_mmc();
62
63 debug("board_mmc_init: init eMMC\n");
Stephen Warren7a0ae5c2012-11-02 06:56:13 +000064 /* init dev 0, eMMC chip, with 8-bit bus */
65 tegra_mmc_init(0, 8, -1, -1);
Stephen Warrenf5dc27a2012-01-06 12:14:42 +000066
67 debug("board_mmc_init: init SD slot\n");
68 /* init dev 3, SD slot, with 4-bit bus */
Tom Warren22562a42012-09-04 17:00:24 -070069 tegra_mmc_init(3, 4, GPIO_PV1, GPIO_PV5);
Stephen Warrenf5dc27a2012-01-06 12:14:42 +000070
71 return 0;
72}
73#endif
Marc Dietrichb81dfe12012-11-25 11:26:12 +000074
75#ifdef CONFIG_LCD
76/* this is a weak define that we are overriding */
77void pin_mux_display(void)
78{
79 debug("init display pinmux\n");
80
81 /* EN_VDD_PANEL GPIO A4 */
82 pinmux_tristate_disable(PINGRP_DAP2);
83}
84#endif