blob: 342673ac506ca781f51ecc44c468afccdf486a74 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefan Agner60bae8c2014-08-05 23:27:30 +02002/*
Marcel Ziswilerd92dee52016-11-16 17:49:23 +01003 * (C) Copyright 2014-2016
Stefan Agner60bae8c2014-08-05 23:27:30 +02004 * Stefan Agner <stefan@agner.ch>
Stefan Agner60bae8c2014-08-05 23:27:30 +02005 */
6
Marcel Ziswiler61c99fe2022-05-21 12:42:46 +02007#include <env.h>
Simon Glass97589732020-05-10 11:40:02 -06008#include <init.h>
Stefan Agner60bae8c2014-08-05 23:27:30 +02009#include <asm/arch/gp_padctrl.h>
Marcel Ziswiler764d4122015-08-06 00:47:10 +020010#include <asm/arch/pinmux.h>
Marcel Ziswilerdd899d02015-08-06 00:47:00 +020011#include <asm/arch-tegra/ap.h>
12#include <asm/arch-tegra/tegra.h>
Marcel Ziswiler764d4122015-08-06 00:47:10 +020013#include <asm/gpio.h>
Marcel Ziswilerdd899d02015-08-06 00:47:00 +020014#include <asm/io.h>
Marcel Ziswiler61c99fe2022-05-21 12:42:46 +020015#include <fdt_support.h>
Stefan Agner60bae8c2014-08-05 23:27:30 +020016#include <i2c.h>
Simon Glassdbd79542020-05-10 11:40:11 -060017#include <linux/delay.h>
Marcel Ziswiler764d4122015-08-06 00:47:10 +020018#include "pinmux-config-colibri_t30.h"
Stefan Agner98ffd0f2016-11-30 13:41:53 -080019#include "../common/tdx-common.h"
Stefan Agner60bae8c2014-08-05 23:27:30 +020020
Marcel Ziswilerdd899d02015-08-06 00:47:00 +020021int 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 Agner98ffd0f2016-11-30 13:41:53 -080030#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_OF_BOARD_SETUP)
Masahiro Yamadaf7ed78b2020-06-26 15:13:33 +090031int ft_board_setup(void *blob, struct bd_info *bd)
Stefan Agner98ffd0f2016-11-30 13:41:53 -080032{
Marcel Ziswiler61c99fe2022-05-21 12:42:46 +020033 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 Agner98ffd0f2016-11-30 13:41:53 -080051 return ft_common_board_setup(blob, bd);
52}
53#endif
54
Stefan Agner60bae8c2014-08-05 23:27:30 +020055/*
56 * Routine: pinmux_init
57 * Description: Do individual peripheral pinmux configs
58 */
59void 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 Ziswiler7d442952019-09-12 11:12:56 +020073 * Disable RS232 serial transceiver ForceOFF# pins on Iris
74 */
75void 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 Agner60bae8c2014-08-05 23:27:30 +020084 * Enable AX88772B USB to LAN controller
85 */
86void pin_mux_usb(void)
87{
88 /* Reset ASIX using LAN_RESET */
Stephen Warren7f20bb22016-05-12 12:07:39 -060089 gpio_request(TEGRA_GPIO(DD, 0), "LAN_RESET");
90 gpio_direction_output(TEGRA_GPIO(DD, 0), 0);
Stefan Agner60bae8c2014-08-05 23:27:30 +020091 udelay(5);
Stephen Warren7f20bb22016-05-12 12:07:39 -060092 gpio_set_value(TEGRA_GPIO(DD, 0), 1);
Stefan Agner60bae8c2014-08-05 23:27:30 +020093}
Gerard Salvatella108d7392018-11-19 15:54:10 +010094
95/*
96 * Backlight off before OS handover
97 */
98void board_preboot_os(void)
99{
100 gpio_request(TEGRA_GPIO(V, 2), "BL_ON");
101 gpio_direction_output(TEGRA_GPIO(V, 2), 0);
102}