blob: 0935eaedacb6d19788fc7df2229584d457c66b14 [file] [log] [blame]
Holger Brunck468ba8d2020-02-19 19:55:14 +01001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
Holger Brunck5d57dfa2020-10-08 12:27:22 +02003 * Copyright (C) 2017-2020 Hitachi Power Grids
Holger Brunck468ba8d2020-02-19 19:55:14 +01004 *
5 */
6#ifndef __CONFIG_SOCFPGA_SECU1_H__
7#define __CONFIG_SOCFPGA_SECU1_H__
8
9#include <asm/arch/base_addr_ac5.h>
Simon Glass1af3c7f2020-05-10 11:40:09 -060010#include <linux/stringify.h>
Holger Brunck468ba8d2020-02-19 19:55:14 +010011
Holger Brunck468ba8d2020-02-19 19:55:14 +010012#define CONFIG_HUSH_INIT_VAR
13/* Eternal oscillator */
14#define CONFIG_SYS_TIMER_RATE 40000000
15
16/* Memory configurations */
17#define PHYS_SDRAM_1_SIZE 0x20000000 /* 512MiB on SECU1 */
18
19/*
20 * We use bootcounter in i2c nvram of the RTC (0x68)
21 * The offset fopr the bootcounter is 0x9e, which are
22 * the last two bytes of the 128 bytes large NVRAM in the
23 * RTC which begin at address 0x20
24 */
25#define CONFIG_SYS_I2C_RTC_ADDR 0x68
26
27/* Booting Linux */
Holger Brunck468ba8d2020-02-19 19:55:14 +010028#define CONFIG_BOOTFILE "zImage"
Holger Brunck468ba8d2020-02-19 19:55:14 +010029
Holger Brunck468ba8d2020-02-19 19:55:14 +010030#define CONFIG_SYS_BOOTM_LEN (64 << 20)
31
32/* Environment settings */
Holger Brunck468ba8d2020-02-19 19:55:14 +010033
34/*
35 * Autoboot
36 *
37 * After 45s of inactivity in the prompt, the board will reset.
38 * Set 'bootretry' in the environment to -1 to disable this behavior
39 */
40#define CONFIG_BOOT_RETRY_TIME 45
41#define CONFIG_RESET_TO_RETRY
42
Holger Brunck468ba8d2020-02-19 19:55:14 +010043/*
44 * FPGA Remote Update related environment
45 *
46 * Note that since those commands access the FPGA, the HPS-to-FPGA
47 * bridges MUST have been previously enabled (for example
48 * with 'bridge enable').
49 */
50#define FPGA_RMTU_ENV \
51 "rmtu_page=0xFF29000C\0" \
52 "rmtu_reconfig=0xFF290018\0" \
53 "fpga_safebase=0x0\0" \
54 "fpga_userbase=0x2000000\0" \
55 "_fpga_loaduser=echo Loading FPGA USER image..." \
56 " && mw ${rmtu_page} ${fpga_userbase} && mw ${rmtu_reconfig} 1\0" \
57 "_fpga_loadsafe=echo Loading FPGA SAFE image..." \
58 " && mw ${rmtu_page} ${fpga_safebase} && mw ${rmtu_reconfig} 1\0" \
59
60#define CONFIG_KM_NEW_ENV \
61 "newenv=" \
62 "nand erase 0x100000 0x40000\0"
63
64#define CONFIG_KM_DEF_ENV_BOOTTARGETS \
65 "release=" \
66 "run newenv; reset\0" \
67 "develop=" \
68 "tftp 0x200000 scripts/develop-secu.txt && env import -t 0x200000 ${filesize} && saveenv && reset\0"
69
70#define CONFIG_EXTRA_ENV_SETTINGS \
71 FPGA_RMTU_ENV \
72 CONFIG_KM_DEF_ENV_BOOTTARGETS \
73 CONFIG_KM_NEW_ENV \
74 "socfpga_legacy_reset_compat=1\0" \
75 "altbootcmd=run bootcmd;\0" \
76 "bootlimit=6\0" \
77 "bootnum=1\0" \
78 "bootretry=" __stringify(CONFIG_BOOT_RETRY_TIME) "\0" \
79 "fdt_addr=" __stringify(CONFIG_KM_FDT_ADDR) "\0" \
80 "load=tftpboot ${loadaddr} u-boot-with-nand-spl.sfp\0" \
81 "loadaddr=" __stringify(CONFIG_KM_KERNEL_ADDR) "\0" \
82 "mtdids=" CONFIG_MTDIDS_DEFAULT "\0" \
83 "mtdparts=" CONFIG_MTDPARTS_DEFAULT "\0" \
84 "update=nand erase 0x0 0x00100000 && nand write ${loadaddr} 0x0 ${filesize}\0" \
85 "userload=ubi part nand.ubi &&" \
86 "ubi check rootfs$bootnum &&" \
87 "ubi read $fdt_addr dtb$bootnum &&" \
88 "ubi read $loadaddr kernel$bootnum\0" \
89 "userboot=setenv bootargs " CONFIG_BOOTARGS \
90 " ubi.mtd=1 ubi.block=0,rootfs$bootnum root=/dev/ubiblock0_$ubivolid" \
91 " ro rootfstype=squashfs init=sbin/preinit;" \
92 "bootz ${loadaddr} - ${fdt_addr}\0" \
93 "verify=y\0"
94
95/* The rest of the configuration is shared */
96#include <configs/socfpga_common.h>
97
Holger Brunck468ba8d2020-02-19 19:55:14 +010098#endif /* __CONFIG_SOCFPGA_SECU1_H__ */