blob: 3ae0dc4ecd73cceb8cd93c4f005547a0b8a6b33a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Marek Vasutaee83122016-05-06 20:10:41 +02002/*
3 * Copyright (C) 2016 Marek Vasut <marex@denx.de>
Marek Vasutaee83122016-05-06 20:10:41 +02004 */
5
Simon Glass97589732020-05-10 11:40:02 -06006#include <init.h>
Marek Vasutaee83122016-05-06 20:10:41 +02007#include <asm/io.h>
8#include <asm/addrspace.h>
9#include <asm/types.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060010#include <linux/bitops.h>
Simon Glassdbd79542020-05-10 11:40:11 -060011#include <linux/delay.h>
Marek Vasutaee83122016-05-06 20:10:41 +020012#include <mach/ath79.h>
13#include <mach/ar71xx_regs.h>
14#include <mach/ddr.h>
15#include <debug_uart.h>
16
Tom Rini8a091622021-07-09 10:11:55 -040017#ifdef CONFIG_USB_HOST
Marek Vasutaee83122016-05-06 20:10:41 +020018static void wdr4300_usb_start(void)
19{
20 void __iomem *gpio_regs = map_physmem(AR71XX_GPIO_BASE,
21 AR71XX_GPIO_SIZE, MAP_NOCACHE);
22 if (!gpio_regs)
23 return;
24
25 /* Power up the USB HUB. */
26 clrbits_be32(gpio_regs + AR71XX_GPIO_REG_OE, BIT(21) | BIT(22));
27 writel(BIT(21) | BIT(22), gpio_regs + AR71XX_GPIO_REG_SET);
28 mdelay(1);
29
30 ath79_usb_reset();
31}
32#else
33static inline void wdr4300_usb_start(void) {}
34#endif
35
Álvaro Fernández Rojas96d27792017-04-24 19:03:33 +020036void wdr4300_pinmux_config(void)
Marek Vasutaee83122016-05-06 20:10:41 +020037{
38 void __iomem *regs;
39
40 regs = map_physmem(AR71XX_GPIO_BASE, AR71XX_GPIO_SIZE,
41 MAP_NOCACHE);
42
43 /* Assure JTAG is not disconnected. */
44 writel(0x40, regs + AR934X_GPIO_REG_FUNC);
45
46 /* Configure default GPIO input/output regs. */
47 writel(0x3031b, regs + AR71XX_GPIO_REG_OE);
48 writel(0x0f804, regs + AR71XX_GPIO_REG_OUT);
49
50 /* Configure pin multiplexing. */
51 writel(0x00000000, regs + AR934X_GPIO_REG_OUT_FUNC0);
52 writel(0x0b0a0980, regs + AR934X_GPIO_REG_OUT_FUNC1);
53 writel(0x00180000, regs + AR934X_GPIO_REG_OUT_FUNC2);
54 writel(0x00000000, regs + AR934X_GPIO_REG_OUT_FUNC3);
55 writel(0x0000004d, regs + AR934X_GPIO_REG_OUT_FUNC4);
56 writel(0x00000000, regs + AR934X_GPIO_REG_OUT_FUNC5);
Álvaro Fernández Rojas96d27792017-04-24 19:03:33 +020057}
Marek Vasutaee83122016-05-06 20:10:41 +020058
Álvaro Fernández Rojas96d27792017-04-24 19:03:33 +020059#ifdef CONFIG_DEBUG_UART_BOARD_INIT
60void board_debug_uart_init(void)
61{
62 wdr4300_pinmux_config();
63}
64#endif
65
66#ifdef CONFIG_BOARD_EARLY_INIT_F
67int board_early_init_f(void)
68{
69#ifndef CONFIG_DEBUG_UART_BOARD_INIT
70 wdr4300_pinmux_config();
Marek Vasutaee83122016-05-06 20:10:41 +020071#endif
72
Tom Rinie1e85442021-08-27 21:18:30 -040073#if !CONFIG_IS_ENABLED(SKIP_LOWLEVEL_INIT)
Marek Vasutaee83122016-05-06 20:10:41 +020074 ar934x_pll_init(560, 480, 240);
75 ar934x_ddr_init(560, 480, 240);
76#endif
77
78 wdr4300_usb_start();
79 ath79_eth_reset();
80
81 return 0;
82}
83#endif