blob: 0c828a200542d023d6db2cf92fec4ad82874a75a [file] [log] [blame]
Stephen Warren10a03382016-05-12 13:32:56 -06001/*
2 * Copyright (c) 2016, NVIDIA CORPORATION
3 *
4 * SPDX-License-Identifier: GPL-2.0
5 */
6
7#include <common.h>
Stephen Warren45d85f02016-07-29 13:15:05 -06008#include <i2c.h>
9#include "../p2571/max77620_init.h"
10
11int tegra_board_init(void)
12{
13 struct udevice *dev;
14 uchar val;
15 int ret;
16
17 /* Turn on MAX77620 LDO3 to 3.3V for SD card power */
18 debug("%s: Set LDO3 for VDDIO_SDMMC_AP power to 3.3V\n", __func__);
19 ret = i2c_get_chip_for_busnum(0, MAX77620_I2C_ADDR_7BIT, 1, &dev);
20 if (ret) {
21 printf("%s: Cannot find MAX77620 I2C chip\n", __func__);
22 return ret;
23 }
24 /* 0xF2 for 3.3v, enabled: bit7:6 = 11 = enable, bit5:0 = voltage */
25 val = 0xF2;
26 ret = dm_i2c_write(dev, MAX77620_CNFG1_L3_REG, &val, 1);
27 if (ret) {
28 printf("i2c_write 0 0x3c 0x27 failed: %d\n", ret);
29 return ret;
30 }
31
32 return 0;
33}