blob: d887f0201f7b050a0815e4e8dd64997c3ace13dd [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00002/*
Ley Foon Tanb149f2b2017-04-26 02:44:36 +08003 * Copyright (C) 2012-2017 Altera Corporation <www.altera.com>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +00004 */
5
6#include <common.h>
7#include <asm/io.h>
Dinh Nguyen8ed66612015-08-01 03:42:10 +02008#include <errno.h>
Marek Vasutf3f8fe22015-07-25 19:33:56 +02009#include <fdtdec.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090010#include <linux/libfdt.h>
Pavel Machekc7213802014-09-08 14:08:45 +020011#include <altera.h>
Pavel Machekce340e92014-07-14 14:14:17 +020012#include <miiphy.h>
13#include <netdev.h>
Stefan Roese3bfb5912014-12-19 13:49:10 +010014#include <watchdog.h>
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080015#include <asm/arch/misc.h>
Pavel Machek56a00ab2014-09-09 14:03:28 +020016#include <asm/arch/reset_manager.h>
Dinh Nguyen8ed66612015-08-01 03:42:10 +020017#include <asm/arch/scan_manager.h>
Pavel Machek57d75eb2014-09-08 14:08:45 +020018#include <asm/arch/system_manager.h>
Marek Vasut56916e42014-09-15 03:58:22 +020019#include <asm/arch/nic301.h>
Pavel Macheke918e332014-09-08 14:08:45 +020020#include <asm/arch/scu.h>
Marek Vasut56916e42014-09-15 03:58:22 +020021#include <asm/pl310.h>
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000022
23DECLARE_GLOBAL_DATA_PTR;
24
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080025#ifdef CONFIG_SYS_L2_PL310
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080026static const struct pl310_regs *const pl310 =
Marek Vasut56916e42014-09-15 03:58:22 +020027 (struct pl310_regs *)CONFIG_SYS_PL310_BASE;
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080028#endif
Ley Foon Tanb149f2b2017-04-26 02:44:36 +080029
30struct bsel bsel_str[] = {
31 { "rsvd", "Reserved", },
32 { "fpga", "FPGA (HPS2FPGA Bridge)", },
33 { "nand", "NAND Flash (1.8V)", },
34 { "nand", "NAND Flash (3.0V)", },
35 { "sd", "SD/MMC External Transceiver (1.8V)", },
36 { "sd", "SD/MMC Internal Transceiver (3.0V)", },
37 { "qspi", "QSPI Flash (1.8V)", },
38 { "qspi", "QSPI Flash (3.0V)", },
39};
Pavel Machek57d75eb2014-09-08 14:08:45 +020040
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000041int dram_init(void)
42{
Siva Durga Prasad Paladugub3d55ea2018-07-16 15:56:11 +053043 if (fdtdec_setup_mem_size_base() != 0)
Marek Vasut15303172018-05-28 17:09:45 +020044 return -EINVAL;
45
Dinh Nguyenad51f7c2012-10-04 06:46:02 +000046 return 0;
47}
Pavel Machek57d75eb2014-09-08 14:08:45 +020048
Marek Vasutd5157942014-09-21 13:57:40 +020049void enable_caches(void)
50{
51#ifndef CONFIG_SYS_ICACHE_OFF
52 icache_enable();
53#endif
54#ifndef CONFIG_SYS_DCACHE_OFF
55 dcache_enable();
56#endif
57}
58
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080059#ifdef CONFIG_SYS_L2_PL310
Dinh Nguyene89ff702015-10-15 10:13:36 -050060void v7_outer_cache_enable(void)
61{
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050062 struct udevice *dev;
Marek Vasut9f7b30d2015-12-20 04:00:09 +010063
Dinh Nguyen86fbf9d2019-04-23 16:55:05 -050064 if (uclass_get_device(UCLASS_CACHE, 0, &dev))
65 pr_err("cache controller driver NOT found!\n");
Marek Vasut9f7b30d2015-12-20 04:00:09 +010066}
67
68void v7_outer_cache_disable(void)
69{
70 /* Disable the L2 cache */
71 clrbits_le32(&pl310->pl310_ctrl, L2X0_CTRL_EN);
Dinh Nguyene89ff702015-10-15 10:13:36 -050072}
Ley Foon Tan6fa091d2018-05-18 22:05:25 +080073#endif
Dinh Nguyene89ff702015-10-15 10:13:36 -050074
Chin Liang Seebff262c2014-06-10 02:23:45 -050075#if defined(CONFIG_SYS_CONSOLE_IS_IN_ENV) && \
76defined(CONFIG_SYS_CONSOLE_OVERWRITE_ROUTINE)
77int overwrite_console(void)
78{
79 return 0;
80}
81#endif
82
Pavel Machekc7213802014-09-08 14:08:45 +020083#ifdef CONFIG_FPGA
Pavel Machekc7213802014-09-08 14:08:45 +020084/* add device descriptor to FPGA device table */
Ang, Chee Hongff14f162018-12-19 18:35:15 -080085void socfpga_fpga_add(void *fpga_desc)
Pavel Machekc7213802014-09-08 14:08:45 +020086{
Pavel Machekc7213802014-09-08 14:08:45 +020087 fpga_init();
Ang, Chee Hongff14f162018-12-19 18:35:15 -080088 fpga_add(fpga_altera, fpga_desc);
Pavel Machekc7213802014-09-08 14:08:45 +020089}
Pavel Machekc7213802014-09-08 14:08:45 +020090#endif
91
Pavel Machek56a00ab2014-09-09 14:03:28 +020092int arch_cpu_init(void)
93{
Stefan Roese3bfb5912014-12-19 13:49:10 +010094#ifdef CONFIG_HW_WATCHDOG
95 /*
96 * In case the watchdog is enabled, make sure to (re-)configure it
97 * so that the defined timeout is valid. Otherwise the SPL (Perloader)
98 * timeout value is still active which might too short for Linux
99 * booting.
100 */
101 hw_watchdog_init();
102#else
Pavel Machek56a00ab2014-09-09 14:03:28 +0200103 /*
104 * If the HW watchdog is NOT enabled, make sure it is not running,
105 * for example because it was enabled in the preloader. This might
106 * trigger a watchdog-triggered reboot of Linux kernel later.
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200107 * Toggle watchdog reset, so watchdog in not running state.
Pavel Machek56a00ab2014-09-09 14:03:28 +0200108 */
Marek Vasut75f6b5c2015-07-09 02:51:56 +0200109 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 1);
110 socfpga_per_reset(SOCFPGA_RESET(L4WD0), 0);
Pavel Machek56a00ab2014-09-09 14:03:28 +0200111#endif
Stefan Roese3bfb5912014-12-19 13:49:10 +0100112
Pavel Machek56a00ab2014-09-09 14:03:28 +0200113 return 0;
114}
Marek Vasut3386c852018-04-23 22:49:31 +0200115
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800116#ifndef CONFIG_SPL_BUILD
117static int do_bridge(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
118{
Marek Vasut713a8a22019-04-16 22:28:08 +0200119 unsigned int mask = ~0;
120
121 if (argc < 2 || argc > 3)
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800122 return CMD_RET_USAGE;
123
124 argv++;
125
Marek Vasut713a8a22019-04-16 22:28:08 +0200126 if (argc == 3)
127 mask = simple_strtoul(argv[1], NULL, 16);
128
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800129 switch (*argv[0]) {
130 case 'e': /* Enable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200131 do_bridge_reset(1, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800132 break;
133 case 'd': /* Disable */
Marek Vasut713a8a22019-04-16 22:28:08 +0200134 do_bridge_reset(0, mask);
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800135 break;
136 default:
137 return CMD_RET_USAGE;
138 }
139
140 return 0;
141}
142
Marek Vasut713a8a22019-04-16 22:28:08 +0200143U_BOOT_CMD(bridge, 3, 1, do_bridge,
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800144 "SoCFPGA HPS FPGA bridge control",
Marek Vasut713a8a22019-04-16 22:28:08 +0200145 "enable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
146 "bridge disable [mask] - Enable HPS-to-FPGA, FPGA-to-HPS, LWHPS-to-FPGA bridges\n"
Ley Foon Tanf9c7f792018-05-24 00:17:30 +0800147 ""
Ley Foon Tan4cc6b582018-05-24 00:17:23 +0800148);
149
150#endif