blob: 10278de3c7d05f5fe6dbb1d6a252f950fb8ba900 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Alban Bedel8f380382013-11-14 10:58:30 +01002/*
3 * (C) Copyright 2013
4 * Avionic Design GmbH <www.avionic-design.de>
Alban Bedel8f380382013-11-14 10:58:30 +01005 */
6
7#include <common.h>
Simon Glassb0e6ef42014-12-10 08:55:57 -07008#include <dm.h>
Alban Bedel8f380382013-11-14 10:58:30 +01009#include <asm/arch/pinmux.h>
10#include <asm/arch/gp_padctrl.h>
11#include <asm/arch/gpio.h>
12#include <asm/gpio.h>
13#include "pinmux-config-tamonten-ng.h"
14#include <i2c.h>
15
16#define PMU_I2C_ADDRESS 0x2D
17
18#define PMU_REG_LDO5 0x32
19
20#define PMU_REG_LDO_HIGH_POWER 1
21
22/* Voltage selection for the LDOs with 100mV resolution */
23#define PMU_REG_LDO_SEL_100(mV) ((((mV - 1000) / 100) + 2) << 2)
24
25#define PMU_REG_LDO_100(st, mV) (PMU_REG_LDO_##st | PMU_REG_LDO_SEL_100(mV))
26
27#define PMU_LDO5(st, mV) PMU_REG_LDO_100(st, mV)
28
29void pinmux_init(void)
30{
Stephen Warrendfb42fc2014-03-21 12:28:56 -060031 pinmux_config_pingrp_table(tamonten_ng_pinmux_common,
32 ARRAY_SIZE(tamonten_ng_pinmux_common));
33 pinmux_config_pingrp_table(unused_pins_lowpower,
34 ARRAY_SIZE(unused_pins_lowpower));
Alban Bedel8f380382013-11-14 10:58:30 +010035
36 /* Initialize any non-default pad configs (APB_MISC_GP regs) */
Stephen Warrendfb42fc2014-03-21 12:28:56 -060037 pinmux_config_drvgrp_table(tamonten_ng_padctrl,
38 ARRAY_SIZE(tamonten_ng_padctrl));
Alban Bedel8f380382013-11-14 10:58:30 +010039}
40
41void gpio_early_init(void)
42{
43 /* Turn on the alive signal */
Stephen Warren01a97a12016-05-12 12:07:39 -060044 gpio_request(TEGRA_GPIO(V, 2), "ALIVE");
45 gpio_direction_output(TEGRA_GPIO(V, 2), 1);
Alban Bedel8f380382013-11-14 10:58:30 +010046
47 /* Remove the reset on the external periph */
Stephen Warren01a97a12016-05-12 12:07:39 -060048 gpio_request(TEGRA_GPIO(I, 4), "nRST_PERIPH");
49 gpio_direction_output(TEGRA_GPIO(I, 4), 1);
Alban Bedel8f380382013-11-14 10:58:30 +010050}
51
52void pmu_write(uchar reg, uchar data)
53{
Simon Glassb0e6ef42014-12-10 08:55:57 -070054 struct udevice *dev;
55 int ret;
56
Simon Glass25ab4b02015-01-25 08:26:55 -070057 ret = i2c_get_chip_for_busnum(4, PMU_I2C_ADDRESS, 1, &dev);
Simon Glassb0e6ef42014-12-10 08:55:57 -070058 if (ret) {
59 debug("%s: Cannot find PMIC I2C chip\n", __func__);
60 return;
61 }
Simon Glassf9a4c2d2015-01-12 18:02:07 -070062 dm_i2c_write(dev, reg, &data, 1);
Alban Bedel8f380382013-11-14 10:58:30 +010063}
64
65/*
66 * Do I2C/PMU writes to bring up SD card bus power
67 *
68 */
69void board_sdmmc_voltage_init(void)
70{
71 /* Enable LDO5 with 3.3v for SDMMC3 */
72 pmu_write(PMU_REG_LDO5, PMU_LDO5(HIGH_POWER, 3300));
73
74 /* Switch the power on */
Stephen Warren01a97a12016-05-12 12:07:39 -060075 gpio_request(TEGRA_GPIO(J, 2), "EN_3V3_EMMC");
76 gpio_direction_output(TEGRA_GPIO(J, 2), 1);
Alban Bedel8f380382013-11-14 10:58:30 +010077}
78
79/*
80 * Routine: pin_mux_mmc
81 * Description: setup the MMC muxes, power rails, etc.
82 */
83void pin_mux_mmc(void)
84{
85 /*
86 * NOTE: We don't do mmc-specific pin muxes here.
87 * They were done globally in pinmux_init().
88 */
89
90 /* Bring up the SDIO1 power rail */
91 board_sdmmc_voltage_init();
92}