Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Stefan Agner | 60bae8c | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 2 | /* |
Marcel Ziswiler | d92dee5 | 2016-11-16 17:49:23 +0100 | [diff] [blame] | 3 | * (C) Copyright 2014-2016 |
Stefan Agner | 60bae8c | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 4 | * Stefan Agner <stefan@agner.ch> |
Stefan Agner | 60bae8c | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 5 | */ |
| 6 | |
Marcel Ziswiler | 61c99fe | 2022-05-21 12:42:46 +0200 | [diff] [blame] | 7 | #include <env.h> |
Simon Glass | 9758973 | 2020-05-10 11:40:02 -0600 | [diff] [blame] | 8 | #include <init.h> |
Stefan Agner | 60bae8c | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 9 | #include <asm/arch/gp_padctrl.h> |
Marcel Ziswiler | 764d412 | 2015-08-06 00:47:10 +0200 | [diff] [blame] | 10 | #include <asm/arch/pinmux.h> |
Marcel Ziswiler | dd899d0 | 2015-08-06 00:47:00 +0200 | [diff] [blame] | 11 | #include <asm/arch-tegra/ap.h> |
| 12 | #include <asm/arch-tegra/tegra.h> |
Marcel Ziswiler | 764d412 | 2015-08-06 00:47:10 +0200 | [diff] [blame] | 13 | #include <asm/gpio.h> |
Marcel Ziswiler | dd899d0 | 2015-08-06 00:47:00 +0200 | [diff] [blame] | 14 | #include <asm/io.h> |
Marcel Ziswiler | 61c99fe | 2022-05-21 12:42:46 +0200 | [diff] [blame] | 15 | #include <fdt_support.h> |
Stefan Agner | 60bae8c | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 16 | #include <i2c.h> |
Simon Glass | dbd7954 | 2020-05-10 11:40:11 -0600 | [diff] [blame] | 17 | #include <linux/delay.h> |
Marcel Ziswiler | 764d412 | 2015-08-06 00:47:10 +0200 | [diff] [blame] | 18 | #include "pinmux-config-colibri_t30.h" |
Stefan Agner | 98ffd0f | 2016-11-30 13:41:53 -0800 | [diff] [blame] | 19 | #include "../common/tdx-common.h" |
Stefan Agner | 60bae8c | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 20 | |
Marcel Ziswiler | dd899d0 | 2015-08-06 00:47:00 +0200 | [diff] [blame] | 21 | int arch_misc_init(void) |
| 22 | { |
| 23 | if (readl(NV_PA_BASE_SRAM + NVBOOTINFOTABLE_BOOTTYPE) == |
| 24 | NVBOOTTYPE_RECOVERY) |
| 25 | printf("USB recovery mode\n"); |
| 26 | |
| 27 | return 0; |
| 28 | } |
| 29 | |
Stefan Agner | 98ffd0f | 2016-11-30 13:41:53 -0800 | [diff] [blame] | 30 | #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP) |
Masahiro Yamada | f7ed78b | 2020-06-26 15:13:33 +0900 | [diff] [blame] | 31 | int ft_board_setup(void *blob, struct bd_info *bd) |
Stefan Agner | 98ffd0f | 2016-11-30 13:41:53 -0800 | [diff] [blame] | 32 | { |
Marcel Ziswiler | 61c99fe | 2022-05-21 12:42:46 +0200 | [diff] [blame] | 33 | u8 enetaddr[6]; |
| 34 | |
| 35 | /* MAC addr */ |
| 36 | if (eth_env_get_enetaddr("ethaddr", enetaddr)) { |
| 37 | int err = fdt_find_and_setprop(blob, |
| 38 | "/usb@7d004000/ethernet@1", |
| 39 | "local-mac-address", enetaddr, 6, 0); |
| 40 | |
| 41 | /* Older device trees might have used a different node name */ |
| 42 | if (err < 0) |
| 43 | err = fdt_find_and_setprop(blob, |
| 44 | "/usb@7d004000/asix@1", |
| 45 | "local-mac-address", enetaddr, 6, 0); |
| 46 | |
| 47 | if (err >= 0) |
| 48 | puts(" MAC address updated...\n"); |
| 49 | } |
| 50 | |
Stefan Agner | 98ffd0f | 2016-11-30 13:41:53 -0800 | [diff] [blame] | 51 | return ft_common_board_setup(blob, bd); |
| 52 | } |
| 53 | #endif |
| 54 | |
Stefan Agner | 60bae8c | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 55 | /* |
| 56 | * Routine: pinmux_init |
| 57 | * Description: Do individual peripheral pinmux configs |
| 58 | */ |
| 59 | void pinmux_init(void) |
| 60 | { |
| 61 | pinmux_config_pingrp_table(tegra3_pinmux_common, |
| 62 | ARRAY_SIZE(tegra3_pinmux_common)); |
| 63 | |
| 64 | pinmux_config_pingrp_table(unused_pins_lowpower, |
| 65 | ARRAY_SIZE(unused_pins_lowpower)); |
| 66 | |
| 67 | /* Initialize any non-default pad configs (APB_MISC_GP regs) */ |
| 68 | pinmux_config_drvgrp_table(colibri_t30_padctrl, |
| 69 | ARRAY_SIZE(colibri_t30_padctrl)); |
| 70 | } |
| 71 | |
| 72 | /* |
Marcel Ziswiler | 7d44295 | 2019-09-12 11:12:56 +0200 | [diff] [blame] | 73 | * Disable RS232 serial transceiver ForceOFF# pins on Iris |
| 74 | */ |
| 75 | void gpio_early_init_uart(void) |
| 76 | { |
| 77 | gpio_request(TEGRA_GPIO(X, 6), "Force OFF# X13"); |
| 78 | gpio_direction_output(TEGRA_GPIO(X, 6), 1); |
| 79 | gpio_request(TEGRA_GPIO(X, 7), "Force OFF# X14"); |
| 80 | gpio_direction_output(TEGRA_GPIO(X, 7), 1); |
| 81 | } |
| 82 | |
| 83 | /* |
Stefan Agner | 60bae8c | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 84 | * Enable AX88772B USB to LAN controller |
| 85 | */ |
| 86 | void pin_mux_usb(void) |
| 87 | { |
| 88 | /* Reset ASIX using LAN_RESET */ |
Stephen Warren | 7f20bb2 | 2016-05-12 12:07:39 -0600 | [diff] [blame] | 89 | gpio_request(TEGRA_GPIO(DD, 0), "LAN_RESET"); |
| 90 | gpio_direction_output(TEGRA_GPIO(DD, 0), 0); |
Stefan Agner | 60bae8c | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 91 | udelay(5); |
Stephen Warren | 7f20bb2 | 2016-05-12 12:07:39 -0600 | [diff] [blame] | 92 | gpio_set_value(TEGRA_GPIO(DD, 0), 1); |
Stefan Agner | 60bae8c | 2014-08-05 23:27:30 +0200 | [diff] [blame] | 93 | } |
Gerard Salvatella | 108d739 | 2018-11-19 15:54:10 +0100 | [diff] [blame] | 94 | |
| 95 | /* |
| 96 | * Backlight off before OS handover |
| 97 | */ |
| 98 | void board_preboot_os(void) |
| 99 | { |
| 100 | gpio_request(TEGRA_GPIO(V, 2), "BL_ON"); |
| 101 | gpio_direction_output(TEGRA_GPIO(V, 2), 0); |
| 102 | } |