blob: 4aeec473b16e9579d49b73e337d017ec4032f29a [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
7#include <common.h>
Simon Glass7b51b572019-08-01 09:46:52 -06008#include <env.h>
Thierry Reding595ea732019-04-15 11:32:35 +02009#include <fdtdec.h>
Stephen Warren25734282015-08-13 22:34:22 -060010#include <i2c.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060011#include <log.h>
Simon Glass90526e92020-05-10 11:39:56 -060012#include <net.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 Redinga930a722019-04-15 11:32:33 +020017#include <asm/arch-tegra/cboot.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
86static void ft_mac_address_setup(void *fdt)
87{
88 const void *cboot_fdt = (const void *)cboot_boot_x0;
89 uint8_t mac[ETH_ALEN], local_mac[ETH_ALEN];
90 const char *path;
91 int offset, err;
92
93 err = cboot_get_ethaddr(cboot_fdt, local_mac);
94 if (err < 0)
95 memset(local_mac, 0, ETH_ALEN);
96
97 path = fdt_get_alias(fdt, "ethernet");
98 if (!path)
99 return;
100
101 debug("ethernet alias found: %s\n", path);
102
103 offset = fdt_path_offset(fdt, path);
104 if (offset < 0) {
105 printf("ethernet alias points to absent node %s\n", path);
106 return;
107 }
108
109 if (is_valid_ethaddr(local_mac)) {
110 err = fdt_setprop(fdt, offset, "local-mac-address", local_mac,
111 ETH_ALEN);
112 if (!err)
113 debug("Local MAC address set: %pM\n", local_mac);
114 }
115
116 if (eth_env_get_enetaddr("ethaddr", mac)) {
117 if (memcmp(local_mac, mac, ETH_ALEN) != 0) {
118 err = fdt_setprop(fdt, offset, "mac-address", mac,
119 ETH_ALEN);
120 if (!err)
121 debug("MAC address set: %pM\n", mac);
122 }
123 }
124}
125
Thierry Reding595ea732019-04-15 11:32:35 +0200126static int ft_copy_carveout(void *dst, const void *src, const char *node)
127{
128 struct fdt_memory fb;
129 int err;
130
131 err = fdtdec_get_carveout(src, node, "memory-region", 0, &fb);
132 if (err < 0) {
133 if (err != -FDT_ERR_NOTFOUND)
134 printf("failed to get carveout for %s: %d\n", node,
135 err);
136
137 return err;
138 }
139
140 err = fdtdec_set_carveout(dst, node, "memory-region", 0, "framebuffer",
141 &fb);
142 if (err < 0) {
143 printf("failed to set carveout for %s: %d\n", node, err);
144 return err;
145 }
146
147 return 0;
148}
149
150static void ft_carveout_setup(void *fdt)
151{
152 const void *cboot_fdt = (const void *)cboot_boot_x0;
153 static const char * const nodes[] = {
154 "/host1x@50000000/dc@54200000",
155 "/host1x@50000000/dc@54240000",
156 };
157 unsigned int i;
158 int err;
159
160 for (i = 0; i < ARRAY_SIZE(nodes); i++) {
161 err = ft_copy_carveout(fdt, cboot_fdt, nodes[i]);
162 if (err < 0) {
163 if (err != -FDT_ERR_NOTFOUND)
164 printf("failed to copy carveout for %s: %d\n",
165 nodes[i], err);
166 continue;
167 }
168 }
169}
170
Thierry Redinga930a722019-04-15 11:32:33 +0200171int ft_board_setup(void *fdt, bd_t *bd)
172{
173 ft_mac_address_setup(fdt);
Thierry Reding595ea732019-04-15 11:32:35 +0200174 ft_carveout_setup(fdt);
Thierry Redinga930a722019-04-15 11:32:33 +0200175
176 return 0;
177}