Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Stephen Warren | 2573428 | 2015-08-13 22:34:22 -0600 | [diff] [blame] | 2 | /* |
Tom Warren | 48ba196 | 2020-03-26 16:10:11 -0700 | [diff] [blame] | 3 | * (C) Copyright 2013-2019 |
Stephen Warren | 2573428 | 2015-08-13 22:34:22 -0600 | [diff] [blame] | 4 | * NVIDIA Corporation <www.nvidia.com> |
Stephen Warren | 2573428 | 2015-08-13 22:34:22 -0600 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
Simon Glass | 7b51b57 | 2019-08-01 09:46:52 -0600 | [diff] [blame] | 8 | #include <env.h> |
Thierry Reding | 595ea73 | 2019-04-15 11:32:35 +0200 | [diff] [blame] | 9 | #include <fdtdec.h> |
Stephen Warren | 2573428 | 2015-08-13 22:34:22 -0600 | [diff] [blame] | 10 | #include <i2c.h> |
Simon Glass | f7ae49f | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 11 | #include <log.h> |
Simon Glass | 90526e9 | 2020-05-10 11:39:56 -0600 | [diff] [blame] | 12 | #include <net.h> |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 13 | #include <linux/bitops.h> |
Thierry Reding | a930a72 | 2019-04-15 11:32:33 +0200 | [diff] [blame] | 14 | #include <linux/libfdt.h> |
Stephen Warren | 2573428 | 2015-08-13 22:34:22 -0600 | [diff] [blame] | 15 | #include <asm/arch/gpio.h> |
| 16 | #include <asm/arch/pinmux.h> |
Thierry Reding | a930a72 | 2019-04-15 11:32:33 +0200 | [diff] [blame] | 17 | #include <asm/arch-tegra/cboot.h> |
Stephen Warren | 2573428 | 2015-08-13 22:34:22 -0600 | [diff] [blame] | 18 | #include "../p2571/max77620_init.h" |
Stephen Warren | 2573428 | 2015-08-13 22:34:22 -0600 | [diff] [blame] | 19 | |
| 20 | void 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 Warren | efbb3d4 | 2016-07-18 13:02:11 -0600 | [diff] [blame] | 38 | |
| 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 Warren | 2573428 | 2015-08-13 22:34:22 -0600 | [diff] [blame] | 60 | } |
| 61 | |
Stephen Warren | 019bc62 | 2015-10-05 17:02:40 -0600 | [diff] [blame] | 62 | #ifdef CONFIG_PCI_TEGRA |
| 63 | int 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 Warren | 019bc62 | 2015-10-05 17:02:40 -0600 | [diff] [blame] | 84 | #endif /* PCI */ |
Thierry Reding | a930a72 | 2019-04-15 11:32:33 +0200 | [diff] [blame] | 85 | |
| 86 | static 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 Reding | 595ea73 | 2019-04-15 11:32:35 +0200 | [diff] [blame] | 126 | static int ft_copy_carveout(void *dst, const void *src, const char *node) |
| 127 | { |
| 128 | struct fdt_memory fb; |
| 129 | int err; |
| 130 | |
Thierry Reding | 46cb067 | 2021-09-03 15:16:19 +0200 | [diff] [blame] | 131 | err = fdtdec_get_carveout(src, node, "memory-region", 0, &fb, NULL, |
| 132 | NULL, NULL); |
Thierry Reding | 595ea73 | 2019-04-15 11:32:35 +0200 | [diff] [blame] | 133 | if (err < 0) { |
| 134 | if (err != -FDT_ERR_NOTFOUND) |
| 135 | printf("failed to get carveout for %s: %d\n", node, |
| 136 | err); |
| 137 | |
| 138 | return err; |
| 139 | } |
| 140 | |
Thierry Reding | 9019487 | 2021-09-03 15:16:20 +0200 | [diff] [blame^] | 141 | err = fdtdec_set_carveout(dst, node, "memory-region", 0, &fb, |
| 142 | "framebuffer", NULL, 0); |
Thierry Reding | 595ea73 | 2019-04-15 11:32:35 +0200 | [diff] [blame] | 143 | if (err < 0) { |
| 144 | printf("failed to set carveout for %s: %d\n", node, err); |
| 145 | return err; |
| 146 | } |
| 147 | |
| 148 | return 0; |
| 149 | } |
| 150 | |
| 151 | static void ft_carveout_setup(void *fdt) |
| 152 | { |
| 153 | const void *cboot_fdt = (const void *)cboot_boot_x0; |
| 154 | static const char * const nodes[] = { |
| 155 | "/host1x@50000000/dc@54200000", |
| 156 | "/host1x@50000000/dc@54240000", |
| 157 | }; |
| 158 | unsigned int i; |
| 159 | int err; |
| 160 | |
| 161 | for (i = 0; i < ARRAY_SIZE(nodes); i++) { |
| 162 | err = ft_copy_carveout(fdt, cboot_fdt, nodes[i]); |
| 163 | if (err < 0) { |
| 164 | if (err != -FDT_ERR_NOTFOUND) |
| 165 | printf("failed to copy carveout for %s: %d\n", |
| 166 | nodes[i], err); |
| 167 | continue; |
| 168 | } |
| 169 | } |
| 170 | } |
| 171 | |
Masahiro Yamada | b75d8dc | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 172 | int ft_board_setup(void *fdt, struct bd_info *bd) |
Thierry Reding | a930a72 | 2019-04-15 11:32:33 +0200 | [diff] [blame] | 173 | { |
| 174 | ft_mac_address_setup(fdt); |
Thierry Reding | 595ea73 | 2019-04-15 11:32:35 +0200 | [diff] [blame] | 175 | ft_carveout_setup(fdt); |
Thierry Reding | a930a72 | 2019-04-15 11:32:33 +0200 | [diff] [blame] | 176 | |
| 177 | return 0; |
| 178 | } |