blob: 47e7abedf1145cbc694aad90e49bebeb38c0f5ad [file] [log] [blame]
Tom Warrenf01b6312012-12-11 13:34:18 +00001/*
Tom Warren8ca79b22013-03-06 16:16:22 -07002 * (C) Copyright 2010-2013
Tom Warrenf01b6312012-12-11 13:34:18 +00003 * NVIDIA Corporation <www.nvidia.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Tom Warrenf01b6312012-12-11 13:34:18 +00006 */
7
8#include <common.h>
9#include <asm/arch/pinmux.h>
Tom Warren8ca79b22013-03-06 16:16:22 -070010#include <asm/arch/gp_padctrl.h>
Tom Warrenf01b6312012-12-11 13:34:18 +000011#include "pinmux-config-cardhu.h"
Tom Warren190be1f2013-02-26 12:26:55 -070012#include <i2c.h>
13
14#define PMU_I2C_ADDRESS 0x2D
15#define MAX_I2C_RETRY 3
Tom Warrenf01b6312012-12-11 13:34:18 +000016
17/*
18 * Routine: pinmux_init
19 * Description: Do individual peripheral pinmux configs
20 */
21void pinmux_init(void)
22{
23 pinmux_config_table(tegra3_pinmux_common,
24 ARRAY_SIZE(tegra3_pinmux_common));
25
26 pinmux_config_table(unused_pins_lowpower,
27 ARRAY_SIZE(unused_pins_lowpower));
Tom Warren8ca79b22013-03-06 16:16:22 -070028
29 /* Initialize any non-default pad configs (APB_MISC_GP regs) */
30 padgrp_config_table(cardhu_padctrl, ARRAY_SIZE(cardhu_padctrl));
Tom Warrenf01b6312012-12-11 13:34:18 +000031}
Tom Warren190be1f2013-02-26 12:26:55 -070032
33#if defined(CONFIG_TEGRA_MMC)
34/*
35 * Do I2C/PMU writes to bring up SD card bus power
36 *
37 */
38void board_sdmmc_voltage_init(void)
39{
40 uchar reg, data_buffer[1];
41 int i;
42
43 i2c_set_bus_num(0); /* PMU is on bus 0 */
44
45 /* TPS659110: LDO5_REG = 3.3v, ACTIVE to SDMMC1 */
46 data_buffer[0] = 0x65;
47 reg = 0x32;
48
49 for (i = 0; i < MAX_I2C_RETRY; ++i) {
50 if (i2c_write(PMU_I2C_ADDRESS, reg, 1, data_buffer, 1))
51 udelay(100);
52 }
53
54 /* TPS659110: GPIO7_REG = PDEN, output a 1 to EN_3V3_SYS */
55 data_buffer[0] = 0x09;
56 reg = 0x67;
57
58 for (i = 0; i < MAX_I2C_RETRY; ++i) {
59 if (i2c_write(PMU_I2C_ADDRESS, reg, 1, data_buffer, 1))
60 udelay(100);
61 }
62}
63
64/*
65 * Routine: pin_mux_mmc
66 * Description: setup the MMC muxes, power rails, etc.
67 */
68void pin_mux_mmc(void)
69{
70 /*
71 * NOTE: We don't do mmc-specific pin muxes here.
72 * They were done globally in pinmux_init().
73 */
74
75 /* Bring up the SDIO1 power rail */
76 board_sdmmc_voltage_init();
77}
78#endif /* MMC */