9
0
Fork 0

tegra: jetson-tk1: enable 1.05V_RUN

Needed for the PCIe PLL amongst other things.

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Lucas Stach 2014-11-02 21:13:50 +01:00 committed by Sascha Hauer
parent 7cf0a3ea2b
commit a546e66838
3 changed files with 53 additions and 1 deletions

View File

@ -3,5 +3,5 @@ CFLAGS_pbl-entry.o := \
-fno-tree-switch-conversion -fno-jump-tables
soc := tegra124
lwl-y += entry.o
#obj-y += board.o
obj-y += board.o
extra-y += jetson-tk1-2gb-emmc.bct

View File

@ -0,0 +1,50 @@
/*
* Copyright (C) 2014 Lucas Stach <l.stach@pengutronix.de>
*
* This program is free software; you can redistribute it and/or modify it
* under the terms and conditions of the GNU General Public License,
* version 2, as published by the Free Software Foundation.
*
* This program is distributed in the hope 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, see <http://www.gnu.org/licenses/>.
*/
#include <common.h>
#include <dt-bindings/gpio/tegra-gpio.h>
#include <gpio.h>
#include <i2c/i2c.h>
#include <init.h>
#define AS3722_SD_VOLTAGE(n) (0x00 + (n))
#define AS3722_GPIO_CONTROL(n) (0x08 + (n))
#define AS3722_GPIO_CONTROL_MODE_OUTPUT_VDDH (1 << 0)
#define AS3722_GPIO_SIGNAL_OUT 0x20
#define AS3722_SD_CONTROL 0x4d
static int nvidia_jetson_tk1_devices_init(void)
{
struct i2c_client client;
u8 data;
if (!of_machine_is_compatible("nvidia,jetson-tk1"))
return 0;
client.adapter = i2c_get_adapter(4);
client.addr = 0x40;
/* AS3722: enable SD4 and set voltage to 1.05v */
i2c_read_reg(&client, AS3722_SD_CONTROL, &data, 1);
data |= 1 << 4;
i2c_write_reg(&client, AS3722_SD_CONTROL, &data, 1);
data = 0x24;
i2c_write_reg(&client, AS3722_SD_VOLTAGE(4), &data, 1);
return 0;
}
fs_initcall(nvidia_jetson_tk1_devices_init);

View File

@ -70,6 +70,8 @@ config MACH_NVIDIA_BEAVER
config MACH_NVIDIA_JETSON
bool "NVIDIA Jetson TK1"
select ARCH_TEGRA_124_SOC
select I2C
select I2C_TEGRA
endmenu