2018-05-06 21:58:06 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
2014-05-05 10:52:26 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2012 Henrik Nordstrom <henrik@henriknordstrom.net>
|
|
|
|
*
|
|
|
|
* (C) Copyright 2007-2011
|
|
|
|
* Allwinner Technology Co., Ltd. <www.allwinnertech.com>
|
|
|
|
* Tom Cubie <tangliang@allwinnertech.com>
|
|
|
|
*
|
|
|
|
* Some init for sunxi platform.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <common.h>
|
2015-05-29 14:55:42 +00:00
|
|
|
#include <mmc.h>
|
2014-06-13 20:55:49 +00:00
|
|
|
#include <i2c.h>
|
2014-05-05 10:52:26 +00:00
|
|
|
#include <serial.h>
|
|
|
|
#include <spl.h>
|
|
|
|
#include <asm/gpio.h>
|
|
|
|
#include <asm/io.h>
|
|
|
|
#include <asm/arch/clock.h>
|
|
|
|
#include <asm/arch/gpio.h>
|
2015-09-17 16:52:52 +00:00
|
|
|
#include <asm/arch/spl.h>
|
2014-05-05 10:52:26 +00:00
|
|
|
#include <asm/arch/sys_proto.h>
|
|
|
|
#include <asm/arch/timer.h>
|
2015-08-25 02:49:19 +00:00
|
|
|
#include <asm/arch/tzpc.h>
|
2015-05-29 14:55:42 +00:00
|
|
|
#include <asm/arch/mmc.h>
|
2014-05-05 10:52:26 +00:00
|
|
|
|
2014-07-06 19:03:20 +00:00
|
|
|
#include <linux/compiler.h>
|
|
|
|
|
2015-02-07 17:47:30 +00:00
|
|
|
struct fel_stash {
|
|
|
|
uint32_t sp;
|
|
|
|
uint32_t lr;
|
2015-02-16 08:23:59 +00:00
|
|
|
uint32_t cpsr;
|
|
|
|
uint32_t sctlr;
|
|
|
|
uint32_t vbar;
|
|
|
|
uint32_t cr;
|
2015-02-07 17:47:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct fel_stash fel_stash __attribute__((section(".data")));
|
|
|
|
|
2017-02-16 01:20:24 +00:00
|
|
|
#ifdef CONFIG_ARM64
|
2016-03-29 15:29:10 +00:00
|
|
|
#include <asm/armv8/mmu.h>
|
|
|
|
|
|
|
|
static struct mm_region sunxi_mem_map[] = {
|
|
|
|
{
|
|
|
|
/* SRAM, MMIO regions */
|
2016-06-24 23:46:22 +00:00
|
|
|
.virt = 0x0UL,
|
|
|
|
.phys = 0x0UL,
|
2016-03-29 15:29:10 +00:00
|
|
|
.size = 0x40000000UL,
|
|
|
|
.attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
|
|
|
|
PTE_BLOCK_NON_SHARE
|
|
|
|
}, {
|
|
|
|
/* RAM */
|
2016-06-24 23:46:22 +00:00
|
|
|
.virt = 0x40000000UL,
|
|
|
|
.phys = 0x40000000UL,
|
2018-10-25 09:23:05 +00:00
|
|
|
.size = 0xC0000000UL,
|
2016-03-29 15:29:10 +00:00
|
|
|
.attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
|
|
|
|
PTE_BLOCK_INNER_SHARE
|
|
|
|
}, {
|
|
|
|
/* List terminator */
|
|
|
|
0,
|
|
|
|
}
|
|
|
|
};
|
|
|
|
struct mm_region *mem_map = sunxi_mem_map;
|
|
|
|
#endif
|
|
|
|
|
2014-12-23 19:04:52 +00:00
|
|
|
static int gpio_init(void)
|
2014-05-05 10:52:26 +00:00
|
|
|
{
|
2014-10-22 08:47:42 +00:00
|
|
|
#if CONFIG_CONS_INDEX == 1 && defined(CONFIG_UART0_PORT_F)
|
2016-11-30 06:57:32 +00:00
|
|
|
#if defined(CONFIG_MACH_SUN4I) || \
|
|
|
|
defined(CONFIG_MACH_SUN7I) || \
|
|
|
|
defined(CONFIG_MACH_SUN8I_R40)
|
2014-10-22 08:47:42 +00:00
|
|
|
/* disable GPB22,23 as uart0 tx,rx to avoid conflict */
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(22), SUNXI_GPIO_INPUT);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(23), SUNXI_GPIO_INPUT);
|
|
|
|
#endif
|
2016-11-30 06:57:32 +00:00
|
|
|
#if defined(CONFIG_MACH_SUN8I) && !defined(CONFIG_MACH_SUN8I_R40)
|
2015-06-23 11:57:23 +00:00
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPF(2), SUN8I_GPF_UART0);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPF(4), SUN8I_GPF_UART0);
|
2015-03-22 17:12:22 +00:00
|
|
|
#else
|
2015-06-23 11:57:23 +00:00
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPF(2), SUNXI_GPF_UART0);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPF(4), SUNXI_GPF_UART0);
|
2015-03-22 17:12:22 +00:00
|
|
|
#endif
|
2014-10-22 08:47:42 +00:00
|
|
|
sunxi_gpio_set_pull(SUNXI_GPF(4), 1);
|
2016-11-30 06:57:32 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 1 && (defined(CONFIG_MACH_SUN4I) || \
|
|
|
|
defined(CONFIG_MACH_SUN7I) || \
|
|
|
|
defined(CONFIG_MACH_SUN8I_R40))
|
2015-03-22 17:12:22 +00:00
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(22), SUN4I_GPB_UART0);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(23), SUN4I_GPB_UART0);
|
2014-10-03 12:16:21 +00:00
|
|
|
sunxi_gpio_set_pull(SUNXI_GPB(23), SUNXI_GPIO_PULL_UP);
|
2014-10-24 20:20:47 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 1 && defined(CONFIG_MACH_SUN5I)
|
2015-03-22 17:12:22 +00:00
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(19), SUN5I_GPB_UART0);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(20), SUN5I_GPB_UART0);
|
2014-10-03 12:16:21 +00:00
|
|
|
sunxi_gpio_set_pull(SUNXI_GPB(20), SUNXI_GPIO_PULL_UP);
|
2014-10-24 20:20:47 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 1 && defined(CONFIG_MACH_SUN6I)
|
2015-03-22 17:12:22 +00:00
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPH(20), SUN6I_GPH_UART0);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPH(21), SUN6I_GPH_UART0);
|
2014-10-03 12:16:28 +00:00
|
|
|
sunxi_gpio_set_pull(SUNXI_GPH(21), SUNXI_GPIO_PULL_UP);
|
2015-06-23 11:57:25 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 1 && defined(CONFIG_MACH_SUN8I_A33)
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(0), SUN8I_A33_GPB_UART0);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(1), SUN8I_A33_GPB_UART0);
|
|
|
|
sunxi_gpio_set_pull(SUNXI_GPB(1), SUNXI_GPIO_PULL_UP);
|
2017-02-16 01:20:27 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 1 && defined(CONFIG_MACH_SUNXI_H3_H5)
|
2015-11-17 14:12:58 +00:00
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPA(4), SUN8I_H3_GPA_UART0);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPA(5), SUN8I_H3_GPA_UART0);
|
|
|
|
sunxi_gpio_set_pull(SUNXI_GPA(5), SUNXI_GPIO_PULL_UP);
|
2016-03-29 15:29:10 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 1 && defined(CONFIG_MACH_SUN50I)
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(8), SUN50I_GPB_UART0);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(9), SUN50I_GPB_UART0);
|
|
|
|
sunxi_gpio_set_pull(SUNXI_GPB(9), SUNXI_GPIO_PULL_UP);
|
2018-07-21 08:20:28 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 1 && defined(CONFIG_MACH_SUN50I_H6)
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPH(0), SUN50I_H6_GPH_UART0);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPH(1), SUN50I_H6_GPH_UART0);
|
|
|
|
sunxi_gpio_set_pull(SUNXI_GPH(1), SUNXI_GPIO_PULL_UP);
|
2015-11-28 17:07:20 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 1 && defined(CONFIG_MACH_SUN8I_A83T)
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(9), SUN8I_A83T_GPB_UART0);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(10), SUN8I_A83T_GPB_UART0);
|
|
|
|
sunxi_gpio_set_pull(SUNXI_GPB(10), SUNXI_GPIO_PULL_UP);
|
2017-04-08 07:30:12 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 1 && defined(CONFIG_MACH_SUN8I_V3S)
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(8), SUN8I_V3S_GPB_UART0);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(9), SUN8I_V3S_GPB_UART0);
|
|
|
|
sunxi_gpio_set_pull(SUNXI_GPB(9), SUNXI_GPIO_PULL_UP);
|
2015-01-13 18:25:06 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 1 && defined(CONFIG_MACH_SUN9I)
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPH(12), SUN9I_GPH_UART0);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPH(13), SUN9I_GPH_UART0);
|
|
|
|
sunxi_gpio_set_pull(SUNXI_GPH(13), SUNXI_GPIO_PULL_UP);
|
2014-10-24 20:20:47 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 2 && defined(CONFIG_MACH_SUN5I)
|
2015-03-22 17:12:22 +00:00
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPG(3), SUN5I_GPG_UART1);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPG(4), SUN5I_GPG_UART1);
|
2014-10-03 12:16:21 +00:00
|
|
|
sunxi_gpio_set_pull(SUNXI_GPG(4), SUNXI_GPIO_PULL_UP);
|
2015-05-06 00:02:00 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 3 && defined(CONFIG_MACH_SUN8I)
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(0), SUN8I_GPB_UART2);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPB(1), SUN8I_GPB_UART2);
|
|
|
|
sunxi_gpio_set_pull(SUNXI_GPB(1), SUNXI_GPIO_PULL_UP);
|
2014-10-24 20:20:47 +00:00
|
|
|
#elif CONFIG_CONS_INDEX == 5 && defined(CONFIG_MACH_SUN8I)
|
2015-03-22 17:12:22 +00:00
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPL(2), SUN8I_GPL_R_UART);
|
|
|
|
sunxi_gpio_set_cfgpin(SUNXI_GPL(3), SUN8I_GPL_R_UART);
|
2014-10-22 08:47:47 +00:00
|
|
|
sunxi_gpio_set_pull(SUNXI_GPL(3), SUNXI_GPIO_PULL_UP);
|
2014-06-09 09:36:58 +00:00
|
|
|
#else
|
|
|
|
#error Unsupported console port number. Please fix pin mux settings in board.c
|
|
|
|
#endif
|
2014-05-05 10:52:26 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2017-01-02 11:48:45 +00:00
|
|
|
#if defined(CONFIG_SPL_BOARD_LOAD_IMAGE) && defined(CONFIG_SPL_BUILD)
|
2016-09-25 00:20:13 +00:00
|
|
|
static int spl_board_load_image(struct spl_image_info *spl_image,
|
|
|
|
struct spl_boot_device *bootdev)
|
2015-02-07 17:47:30 +00:00
|
|
|
{
|
|
|
|
debug("Returning to FEL sp=%x, lr=%x\n", fel_stash.sp, fel_stash.lr);
|
|
|
|
return_to_fel(fel_stash.sp, fel_stash.lr);
|
2015-11-08 15:11:49 +00:00
|
|
|
|
|
|
|
return 0;
|
2015-02-07 17:47:30 +00:00
|
|
|
}
|
2016-11-30 22:30:50 +00:00
|
|
|
SPL_LOAD_IMAGE_METHOD("FEL", 0, BOOT_DEVICE_BOARD, spl_board_load_image);
|
2016-09-25 00:20:12 +00:00
|
|
|
#endif
|
2015-02-07 17:47:30 +00:00
|
|
|
|
2015-01-21 15:24:05 +00:00
|
|
|
void s_init(void)
|
2014-12-23 19:04:52 +00:00
|
|
|
{
|
2016-03-04 09:57:34 +00:00
|
|
|
/*
|
|
|
|
* Undocumented magic taken from boot0, without this DRAM
|
|
|
|
* access gets messed up (seems cache related).
|
|
|
|
* The boot0 sources describe this as: "config ema for cache sram"
|
|
|
|
*/
|
|
|
|
#if defined CONFIG_MACH_SUN6I
|
2014-12-23 19:04:52 +00:00
|
|
|
setbits_le32(SUNXI_SRAMC_BASE + 0x44, 0x1800);
|
2016-03-24 21:37:08 +00:00
|
|
|
#elif defined CONFIG_MACH_SUN8I
|
|
|
|
__maybe_unused uint version;
|
2016-03-04 09:57:34 +00:00
|
|
|
|
|
|
|
/* Unlock sram version info reg, read it, relock */
|
|
|
|
setbits_le32(SUNXI_SRAMC_BASE + 0x24, (1 << 15));
|
2016-03-24 21:37:08 +00:00
|
|
|
version = readl(SUNXI_SRAMC_BASE + 0x24) >> 16;
|
2016-03-04 09:57:34 +00:00
|
|
|
clrbits_le32(SUNXI_SRAMC_BASE + 0x24, (1 << 15));
|
|
|
|
|
2016-03-24 21:37:08 +00:00
|
|
|
/*
|
|
|
|
* Ideally this would be a switch case, but we do not know exactly
|
|
|
|
* which versions there are and which version needs which settings,
|
|
|
|
* so reproduce the per SoC code from the BSP.
|
|
|
|
*/
|
|
|
|
#if defined CONFIG_MACH_SUN8I_A23
|
|
|
|
if (version == 0x1650)
|
2016-03-04 09:57:34 +00:00
|
|
|
setbits_le32(SUNXI_SRAMC_BASE + 0x44, 0x1800);
|
|
|
|
else /* 0x1661 ? */
|
|
|
|
setbits_le32(SUNXI_SRAMC_BASE + 0x44, 0xc0);
|
2016-03-24 21:37:08 +00:00
|
|
|
#elif defined CONFIG_MACH_SUN8I_A33
|
|
|
|
if (version != 0x1667)
|
|
|
|
setbits_le32(SUNXI_SRAMC_BASE + 0x44, 0xc0);
|
|
|
|
#endif
|
|
|
|
/* A83T BSP never modifies SUNXI_SRAMC_BASE + 0x44 */
|
|
|
|
/* No H3 BSP, boot0 seems to not modify SUNXI_SRAMC_BASE + 0x44 */
|
2014-12-23 19:04:52 +00:00
|
|
|
#endif
|
2016-03-04 09:57:34 +00:00
|
|
|
|
2017-02-16 01:20:21 +00:00
|
|
|
#if !defined(CONFIG_ARM_CORTEX_CPU_IS_UP) && !defined(CONFIG_ARM64)
|
2014-12-23 19:04:52 +00:00
|
|
|
/* Enable SMP mode for CPU0, by setting bit 6 of Auxiliary Ctl reg */
|
|
|
|
asm volatile(
|
|
|
|
"mrc p15, 0, r0, c1, c0, 1\n"
|
|
|
|
"orr r0, r0, #1 << 6\n"
|
2017-02-16 01:20:18 +00:00
|
|
|
"mcr p15, 0, r0, c1, c0, 1\n"
|
|
|
|
::: "r0");
|
2014-12-23 19:04:52 +00:00
|
|
|
#endif
|
2016-01-06 07:13:06 +00:00
|
|
|
#if defined CONFIG_MACH_SUN6I || defined CONFIG_MACH_SUN8I_H3
|
|
|
|
/* Enable non-secure access to some peripherals */
|
2015-08-25 02:49:19 +00:00
|
|
|
tzpc_init();
|
|
|
|
#endif
|
2014-12-23 19:04:52 +00:00
|
|
|
|
|
|
|
clock_init();
|
|
|
|
timer_init();
|
|
|
|
gpio_init();
|
2017-04-26 22:03:36 +00:00
|
|
|
#ifndef CONFIG_DM_I2C
|
2014-12-23 19:04:52 +00:00
|
|
|
i2c_init_board();
|
2017-04-26 22:03:36 +00:00
|
|
|
#endif
|
2016-03-17 12:53:03 +00:00
|
|
|
eth_init_board();
|
2015-01-21 15:24:05 +00:00
|
|
|
}
|
2014-12-23 19:04:52 +00:00
|
|
|
|
2015-01-21 15:24:05 +00:00
|
|
|
/* The sunxi internal brom will try to loader external bootloader
|
|
|
|
* from mmc0, nand flash, mmc2.
|
|
|
|
*/
|
2017-08-23 08:06:30 +00:00
|
|
|
uint32_t sunxi_get_boot_device(void)
|
2015-01-21 15:24:05 +00:00
|
|
|
{
|
2016-07-09 13:31:47 +00:00
|
|
|
int boot_source;
|
|
|
|
|
2015-02-16 08:23:59 +00:00
|
|
|
/*
|
2015-05-29 14:55:42 +00:00
|
|
|
* When booting from the SD card or NAND memory, the "eGON.BT0"
|
|
|
|
* signature is expected to be found in memory at the address 0x0004
|
|
|
|
* (see the "mksunxiboot" tool, which generates this header).
|
2015-02-16 08:23:59 +00:00
|
|
|
*
|
|
|
|
* When booting in the FEL mode over USB, this signature is patched in
|
|
|
|
* memory and replaced with something else by the 'fel' tool. This other
|
|
|
|
* signature is selected in such a way, that it can't be present in a
|
|
|
|
* valid bootable SD card image (because the BROM would refuse to
|
|
|
|
* execute the SPL in this case).
|
|
|
|
*
|
2015-05-29 14:55:42 +00:00
|
|
|
* This checks for the signature and if it is not found returns to
|
|
|
|
* the FEL code in the BROM to wait and receive the main u-boot
|
|
|
|
* binary over USB. If it is found, it determines where SPL was
|
|
|
|
* read from.
|
2015-02-16 08:23:59 +00:00
|
|
|
*/
|
2015-09-17 16:52:52 +00:00
|
|
|
if (!is_boot0_magic(SPL_ADDR + 4)) /* eGON.BT0 */
|
2015-02-07 17:47:30 +00:00
|
|
|
return BOOT_DEVICE_BOARD;
|
2015-05-29 14:55:42 +00:00
|
|
|
|
2016-07-09 13:31:47 +00:00
|
|
|
boot_source = readb(SPL_ADDR + 0x28);
|
|
|
|
switch (boot_source) {
|
|
|
|
case SUNXI_BOOTED_FROM_MMC0:
|
2018-12-16 02:04:58 +00:00
|
|
|
case SUNXI_BOOTED_FROM_MMC0_HIGH:
|
2015-05-29 14:55:42 +00:00
|
|
|
return BOOT_DEVICE_MMC1;
|
2016-07-09 13:31:47 +00:00
|
|
|
case SUNXI_BOOTED_FROM_NAND:
|
2015-05-29 14:55:42 +00:00
|
|
|
return BOOT_DEVICE_NAND;
|
2016-07-09 13:31:47 +00:00
|
|
|
case SUNXI_BOOTED_FROM_MMC2:
|
2018-12-16 02:04:58 +00:00
|
|
|
case SUNXI_BOOTED_FROM_MMC2_HIGH:
|
2016-07-09 13:31:47 +00:00
|
|
|
return BOOT_DEVICE_MMC2;
|
|
|
|
case SUNXI_BOOTED_FROM_SPI:
|
|
|
|
return BOOT_DEVICE_SPI;
|
2015-05-29 14:55:42 +00:00
|
|
|
}
|
|
|
|
|
2016-07-09 13:31:47 +00:00
|
|
|
panic("Unknown boot source %d\n", boot_source);
|
2015-05-29 14:55:42 +00:00
|
|
|
return -1; /* Never reached */
|
2015-01-21 15:24:05 +00:00
|
|
|
}
|
|
|
|
|
2017-08-23 08:06:30 +00:00
|
|
|
#ifdef CONFIG_SPL_BUILD
|
|
|
|
u32 spl_boot_device(void)
|
|
|
|
{
|
|
|
|
return sunxi_get_boot_device();
|
|
|
|
}
|
|
|
|
|
2015-01-21 15:24:05 +00:00
|
|
|
void board_init_f(ulong dummy)
|
|
|
|
{
|
2015-09-13 10:31:24 +00:00
|
|
|
spl_init();
|
2014-12-23 19:04:52 +00:00
|
|
|
preloader_console_init();
|
|
|
|
|
|
|
|
#ifdef CONFIG_SPL_I2C_SUPPORT
|
|
|
|
/* Needed early by sunxi_board_init if PMU is enabled */
|
|
|
|
i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
|
|
|
|
#endif
|
|
|
|
sunxi_board_init();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2014-05-05 10:52:26 +00:00
|
|
|
void reset_cpu(ulong addr)
|
|
|
|
{
|
2016-11-30 08:27:14 +00:00
|
|
|
#if defined(CONFIG_SUNXI_GEN_SUN4I) || defined(CONFIG_MACH_SUN8I_R40)
|
2014-06-09 09:36:56 +00:00
|
|
|
static const struct sunxi_wdog *wdog =
|
|
|
|
&((struct sunxi_timer_reg *)SUNXI_TIMER_BASE)->wdog;
|
|
|
|
|
|
|
|
/* Set the watchdog for its shortest interval (.5s) and wait */
|
|
|
|
writel(WDT_MODE_RESET_EN | WDT_MODE_EN, &wdog->mode);
|
|
|
|
writel(WDT_CTRL_KEY | WDT_CTRL_RESTART, &wdog->ctl);
|
2014-06-13 20:55:52 +00:00
|
|
|
|
|
|
|
while (1) {
|
|
|
|
/* sun5i sometimes gets stuck without this */
|
|
|
|
writel(WDT_MODE_RESET_EN | WDT_MODE_EN, &wdog->mode);
|
|
|
|
}
|
2018-07-21 08:20:27 +00:00
|
|
|
#elif defined(CONFIG_SUNXI_GEN_SUN6I) || defined(CONFIG_MACH_SUN50I_H6)
|
2019-04-17 17:41:05 +00:00
|
|
|
#if defined(CONFIG_MACH_SUN50I_H6)
|
|
|
|
/* WDOG is broken for some H6 rev. use the R_WDOG instead */
|
2014-10-04 12:37:28 +00:00
|
|
|
static const struct sunxi_wdog *wdog =
|
2019-04-17 17:41:05 +00:00
|
|
|
(struct sunxi_wdog *)SUNXI_R_WDOG_BASE;
|
|
|
|
#else
|
|
|
|
static const struct sunxi_wdog *wdog =
|
|
|
|
((struct sunxi_timer_reg *)SUNXI_TIMER_BASE)->wdog;
|
|
|
|
#endif
|
2014-10-04 12:37:28 +00:00
|
|
|
/* Set the watchdog for its shortest interval (.5s) and wait */
|
|
|
|
writel(WDT_CFG_RESET, &wdog->cfg);
|
|
|
|
writel(WDT_MODE_EN, &wdog->mode);
|
|
|
|
writel(WDT_CTRL_KEY | WDT_CTRL_RESTART, &wdog->ctl);
|
2015-06-14 14:53:15 +00:00
|
|
|
while (1) { }
|
2014-10-04 12:37:28 +00:00
|
|
|
#endif
|
2014-05-05 10:52:26 +00:00
|
|
|
}
|
|
|
|
|
2019-05-03 13:41:00 +00:00
|
|
|
#if !CONFIG_IS_ENABLED(SYS_DCACHE_OFF) && !defined(CONFIG_ARM64)
|
2014-05-05 10:52:26 +00:00
|
|
|
void enable_caches(void)
|
|
|
|
{
|
|
|
|
/* Enable D-cache. I-cache is already enabled in start.S */
|
|
|
|
dcache_enable();
|
|
|
|
}
|
|
|
|
#endif
|