blob: 5f203d8ffaa8fbac73f4160360fe5acdd4c70464 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stephen Warren25734282015-08-13 22:34:22 -06002/*
Tom Warren48ba1962020-03-26 16:10:11 -07003 * (C) Copyright 2013-2019
Stephen Warren25734282015-08-13 22:34:22 -06004 * NVIDIA Corporation <www.nvidia.com>
Stephen Warren25734282015-08-13 22:34:22 -06005 */
6
Simon Glass7b51b572019-08-01 09:46:52 -06007#include <env.h>
Thierry Reding595ea732019-04-15 11:32:35 +02008#include <fdtdec.h>
Stephen Warren25734282015-08-13 22:34:22 -06009#include <i2c.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060010#include <log.h>
Simon Glass90526e92020-05-10 11:39:56 -060011#include <net.h>
Thierry Redingdb8a0302021-09-03 15:16:22 +020012#include <stdlib.h>
Simon Glasscd93d622020-05-10 11:40:13 -060013#include <linux/bitops.h>
Thierry Redinga930a722019-04-15 11:32:33 +020014#include <linux/libfdt.h>
Stephen Warren25734282015-08-13 22:34:22 -060015#include <asm/arch/gpio.h>
16#include <asm/arch/pinmux.h>
Thierry Reding77409c72021-09-03 15:16:24 +020017#include <asm/arch-tegra/board.h>
Stephen Warren25734282015-08-13 22:34:22 -060018#include "../p2571/max77620_init.h"
Stephen Warren25734282015-08-13 22:34:22 -060019
20void pin_mux_mmc(void)
21{
22 struct udevice *dev;
23 uchar val;
24 int ret;
25
26 /* Turn on MAX77620 LDO2 to 3.3V for SD card power */
27 debug("%s: Set LDO2 for VDDIO_SDMMC_AP power to 3.3V\n", __func__);
28 ret = i2c_get_chip_for_busnum(0, MAX77620_I2C_ADDR_7BIT, 1, &dev);
29 if (ret) {
30 printf("%s: Cannot find MAX77620 I2C chip\n", __func__);
31 return;
32 }
33 /* 0xF2 for 3.3v, enabled: bit7:6 = 11 = enable, bit5:0 = voltage */
34 val = 0xF2;
35 ret = dm_i2c_write(dev, MAX77620_CNFG1_L2_REG, &val, 1);
36 if (ret)
37 printf("i2c_write 0 0x3c 0x27 failed: %d\n", ret);
Stephen Warrenefbb3d42016-07-18 13:02:11 -060038
39 /* Disable LDO4 discharge */
40 ret = dm_i2c_read(dev, MAX77620_CNFG2_L4_REG, &val, 1);
41 if (ret) {
42 printf("i2c_read 0 0x3c 0x2c failed: %d\n", ret);
43 } else {
44 val &= ~BIT(1); /* ADE */
45 ret = dm_i2c_write(dev, MAX77620_CNFG2_L4_REG, &val, 1);
46 if (ret)
47 printf("i2c_write 0 0x3c 0x2c failed: %d\n", ret);
48 }
49
50 /* Set MBLPD */
51 ret = dm_i2c_read(dev, MAX77620_CNFGGLBL1_REG, &val, 1);
52 if (ret) {
53 printf("i2c_write 0 0x3c 0x00 failed: %d\n", ret);
54 } else {
55 val |= BIT(6); /* MBLPD */
56 ret = dm_i2c_write(dev, MAX77620_CNFGGLBL1_REG, &val, 1);
57 if (ret)
58 printf("i2c_write 0 0x3c 0x00 failed: %d\n", ret);
59 }
Stephen Warren25734282015-08-13 22:34:22 -060060}
61
Stephen Warren019bc622015-10-05 17:02:40 -060062#ifdef CONFIG_PCI_TEGRA
63int tegra_pcie_board_init(void)
64{
65 struct udevice *dev;
66 uchar val;
67 int ret;
68
69 /* Turn on MAX77620 LDO1 to 1.05V for PEX power */
70 debug("%s: Set LDO1 for PEX power to 1.05V\n", __func__);
71 ret = i2c_get_chip_for_busnum(0, MAX77620_I2C_ADDR_7BIT, 1, &dev);
72 if (ret) {
73 printf("%s: Cannot find MAX77620 I2C chip\n", __func__);
74 return -1;
75 }
76 /* 0xCA for 1.05v, enabled: bit7:6 = 11 = enable, bit5:0 = voltage */
77 val = 0xCA;
78 ret = dm_i2c_write(dev, MAX77620_CNFG1_L1_REG, &val, 1);
79 if (ret)
80 printf("i2c_write 0 0x3c 0x25 failed: %d\n", ret);
81
82 return 0;
83}
Stephen Warren019bc622015-10-05 17:02:40 -060084#endif /* PCI */
Thierry Redinga930a722019-04-15 11:32:33 +020085
Thierry Reding77409c72021-09-03 15:16:24 +020086static const char * const nodes[] = {
87 "/host1x@50000000/dc@54200000",
88 "/host1x@50000000/dc@54240000",
89 "/external-memory-controller@7001b000",
90};
Thierry Reding595ea732019-04-15 11:32:35 +020091
Masahiro Yamadab75d8dc2020-06-26 15:13:33 +090092int ft_board_setup(void *fdt, struct bd_info *bd)
Thierry Redinga930a722019-04-15 11:32:33 +020093{
94 ft_mac_address_setup(fdt);
Thierry Reding77409c72021-09-03 15:16:24 +020095 ft_carveout_setup(fdt, nodes, ARRAY_SIZE(nodes));
Thierry Redinga930a722019-04-15 11:32:33 +020096
97 return 0;
98}