summaryrefslogtreecommitdiffstats
path: root/board/nvidia/cardhu/cardhu.c.mmc
blob: 9e83b6fc00630054dac48c691b0605932b10f42e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
/*
 *  (C) Copyright 2010-2012
 *  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>
#include <asm/arch/pinmux.h>
#include "pinmux-config-cardhu.h"

#include <asm/arch/clock.h>
#include <asm/arch/gp_padctrl.h>
#include <asm/arch/pmu.h>
#include <asm/arch/sdmmc.h>
#include <asm/arch-tegra/mmc.h>
#include <asm/arch-tegra/tegra_mmc.h>
#include <mmc.h>
#include <i2c.h>

/*
 * Routine: pinmux_init
 * Description: Do individual peripheral pinmux configs
 */
void pinmux_init(void)
{
	pinmux_config_table(tegra3_pinmux_common,
		ARRAY_SIZE(tegra3_pinmux_common));

	pinmux_config_table(unused_pins_lowpower,
		ARRAY_SIZE(unused_pins_lowpower));
}

#if defined(CONFIG_MMC)
/*
 * Routine: pin_mux_mmc
 * Description: setup the pin muxes/tristate values for the SDMMC(s)
 */
static void pin_mux_mmc(void)
{
}

/* Do I2C/PMU writes to bring up SD card bus power */
static void board_sdmmc_voltage_init(void)
{
        uchar reg, data_buffer[1];
        int i;

        i2c_set_bus_num(0);             /* PMU is on bus 0 */

        data_buffer[0] = 0x65;
        reg = 0x32;

        for (i = 0; i < MAX_I2C_RETRY; ++i) {
                if (i2c_write(PMU_I2C_ADDRESS, reg, 1, data_buffer, 1))
                        udelay(100);
        }

        data_buffer[0] = 0x09;
        reg = 0x67;

        for (i = 0; i < MAX_I2C_RETRY; ++i) {
                if (i2c_write(PMU_I2C_ADDRESS, reg, 1, data_buffer, 1))
                        udelay(100);
        }
}

static void pad_init_mmc(struct tegra_mmc *reg)
{
        struct apb_misc_gp_ctlr *const gpc =
                (struct apb_misc_gp_ctlr *)NV_PA_APB_MISC_GP_BASE;
        struct sdmmc_ctlr *const sdmmc = (struct sdmmc_ctlr *)reg;
        u32 val, offset = (unsigned int)reg;
        u32 padcfg, padmask;

        debug("%s: sdmmc address = %08x\n", __func__, (unsigned int)sdmmc);

        /* Set the pad drive strength for SDMMC1 or 3 only */
        if (offset != TEGRA_SDMMC1_BASE && offset != TEGRA_SDMMC3_BASE) {
                debug("%s: settings are only valid for SDMMC1/SDMMC3!\n",
                        __func__);
                return;
        }

        /* Set pads as per T30 TRM, section 24.6.1.2 */
        padcfg = (GP_SDIOCFG_DRVUP_SLWF | GP_SDIOCFG_DRVDN_SLWR | \
                GP_SDIOCFG_DRVUP | GP_SDIOCFG_DRVDN);
        padmask = 0x00000FFF;
        if (offset == TEGRA_SDMMC1_BASE) {
                val = readl(&gpc->sdio1cfg);
                val &= padmask;
                val |= padcfg;
                writel(val, &gpc->sdio1cfg);
        } else {                                /* SDMMC3 */
                val = readl(&gpc->sdio3cfg);
                val &= padmask;
                val |= padcfg;
                writel(val, &gpc->sdio3cfg);
        }

        val = readl(&sdmmc->sdmmc_sdmemcomp_pad_ctrl);
        val &= 0xFFFFFFF0;
        val |= MEMCOMP_PADCTRL_VREF;
        writel(val, &sdmmc->sdmmc_sdmemcomp_pad_ctrl);

        val = readl(&sdmmc->sdmmc_auto_cal_config);
        val &= 0xFFFF0000;
        val |= AUTO_CAL_PU_OFFSET | AUTO_CAL_PD_OFFSET | AUTO_CAL_ENABLED;
        writel(val, &sdmmc->sdmmc_auto_cal_config);
}

/* this is a weak define that we are overriding */
int board_mmc_init(bd_t *bd)
{
	debug("board_mmc_init called\n");

	/* Turn on SD-card bus power */
	board_sdmmc_voltage_init();

	/* Set up the SDMMC pads as per the TRM */
	pad_init_mmc((struct tegra_mmc *)TEGRA_SDMMC1_BASE);

	/* Enable muxes, etc. for SDMMC controllers */
	pin_mux_mmc();

	/* init dev 0 (SDMMC4), ("HSMMC") with 8-bit bus */
	tegra_mmc_init(0, 8, -1, -1);

	/* init dev 1 (SDMMC0), ("SDIO") with 8-bit bus */
	tegra_mmc_init(1, 8, -1, -1);

	return 0;
}
#endif	/* MMC */
OpenPOWER on IntegriCloud