2019-05-31 16:00:20 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
|
|
/*
|
2021-10-09 20:41:11 +00:00
|
|
|
* Copyright 2019-2021 Toradex
|
2019-05-31 16:00:20 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __APALIS_IMX8_H
|
|
|
|
#define __APALIS_IMX8_H
|
|
|
|
|
|
|
|
#include <asm/arch/imx-regs.h>
|
|
|
|
#include <linux/sizes.h>
|
|
|
|
|
|
|
|
/* Networking */
|
|
|
|
|
|
|
|
#define MEM_LAYOUT_ENV_SETTINGS \
|
2023-01-16 19:05:09 +00:00
|
|
|
"fdt_addr_r=0x9d400000\0" \
|
|
|
|
"kernel_addr_r=" __stringify(CONFIG_SYS_LOAD_ADDR) "\0" \
|
|
|
|
"kernel_comp_addr_r=0xf0000000\0" \
|
|
|
|
"kernel_comp_size=0x08000000\0" \
|
|
|
|
"ramdisk_addr_r=0x9d500000\0" \
|
|
|
|
"scriptaddr=0x9d480000\0"
|
2019-05-31 16:00:20 +00:00
|
|
|
|
2023-01-16 19:05:05 +00:00
|
|
|
/* Enable Distro Boot */
|
2019-05-31 16:00:20 +00:00
|
|
|
#define BOOT_TARGET_DEVICES(func) \
|
|
|
|
func(MMC, mmc, 1) \
|
|
|
|
func(MMC, mmc, 2) \
|
|
|
|
func(MMC, mmc, 0) \
|
|
|
|
func(DHCP, dhcp, na)
|
|
|
|
#include <config_distro_bootcmd.h>
|
|
|
|
|
|
|
|
/* Initial environment variables */
|
2022-12-04 15:03:50 +00:00
|
|
|
#define CFG_EXTRA_ENV_SETTINGS \
|
2019-05-31 16:00:20 +00:00
|
|
|
BOOTENV \
|
|
|
|
MEM_LAYOUT_ENV_SETTINGS \
|
2022-04-13 09:33:27 +00:00
|
|
|
"boot_script_dhcp=boot.scr\0" \
|
2023-01-16 19:05:06 +00:00
|
|
|
"console=ttyLP1\0" \
|
2023-01-16 19:04:56 +00:00
|
|
|
"fdt_board=eval\0" \
|
2019-05-31 16:00:20 +00:00
|
|
|
"initrd_addr=0x83800000\0" \
|
|
|
|
"initrd_high=0xffffffffffffffff\0" \
|
2023-01-16 19:05:06 +00:00
|
|
|
"setup=setenv setupargs console=tty1 console=${console},${baudrate} " \
|
|
|
|
"consoleblank=0 earlycon\0" \
|
2023-01-16 19:05:08 +00:00
|
|
|
"update_uboot=askenv confirm Did you load flash.bin resp. u-boot-dtb.imx (y/N)?; " \
|
2019-05-31 16:00:20 +00:00
|
|
|
"if test \"$confirm\" = \"y\"; then " \
|
|
|
|
"setexpr blkcnt ${filesize} + 0x1ff && setexpr blkcnt " \
|
|
|
|
"${blkcnt} / 0x200; mmc dev 0 1; mmc write ${loadaddr} 0x0 " \
|
|
|
|
"${blkcnt}; fi\0"
|
|
|
|
|
2022-11-16 18:10:37 +00:00
|
|
|
#define CFG_SYS_SDRAM_BASE 0x80000000
|
2019-05-31 16:00:20 +00:00
|
|
|
#define PHYS_SDRAM_1 0x80000000
|
|
|
|
#define PHYS_SDRAM_2 0x880000000
|
|
|
|
#define PHYS_SDRAM_1_SIZE SZ_2G /* 2 GB */
|
|
|
|
#define PHYS_SDRAM_2_SIZE SZ_2G /* 2 GB */
|
|
|
|
|
|
|
|
#endif /* __APALIS_IMX8_H */
|