blob: 8345cd7acfcec80b10953b760593028e00a530d8 [file] [log] [blame]
Yuantian Tang353f36d2019-04-10 16:43:34 +08001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
Priyanka Singh160e2b82020-02-21 05:57:03 +05303 * Copyright 2019-2020 NXP
Yuantian Tang353f36d2019-04-10 16:43:34 +08004 */
5
6#ifndef __L1028A_COMMON_H
7#define __L1028A_COMMON_H
8
9#define CONFIG_REMAKE_ELF
Yuantian Tang353f36d2019-04-10 16:43:34 +080010#define CONFIG_MP
11
12#include <asm/arch/stream_id_lsch3.h>
13#include <asm/arch/config.h>
14#include <asm/arch/soc.h>
15
16/* Link Definitions */
17#define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE
18
19#define CONFIG_SKIP_LOWLEVEL_INIT
20
21#define CONFIG_VERY_BIG_RAM
22#define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000UL
23#define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 0
24#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
25#define CONFIG_SYS_DDR_BLOCK2_BASE 0x2080000000ULL
26#define CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS 1
27
Yuantian Tang353f36d2019-04-10 16:43:34 +080028/*
29 * SMP Definitinos
30 */
Michael Walle3d3fe8b2020-06-01 21:53:26 +020031#define CPU_RELEASE_ADDR secondary_boot_addr
Yuantian Tang353f36d2019-04-10 16:43:34 +080032
33/* Generic Timer Definitions */
34#define COUNTER_FREQUENCY 25000000 /* 25MHz */
35
36/* Size of malloc() pool */
37#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2048 * 1024)
38
39/* I2C */
Chuanhua Han954cd782019-07-10 21:16:49 +080040#ifndef CONFIG_DM_I2C
Yuantian Tang353f36d2019-04-10 16:43:34 +080041#define CONFIG_SYS_I2C
Chuanhua Han954cd782019-07-10 21:16:49 +080042#endif
Yuantian Tang353f36d2019-04-10 16:43:34 +080043
44/* Serial Port */
Yuantian Tang353f36d2019-04-10 16:43:34 +080045#define CONFIG_SYS_NS16550_SERIAL
46#define CONFIG_SYS_NS16550_REG_SIZE 1
47#define CONFIG_SYS_NS16550_CLK (get_bus_freq(0) / 2)
48
Yuantian Tang353f36d2019-04-10 16:43:34 +080049#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
50
51/* Miscellaneous configurable options */
52#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000)
53
54/* Physical Memory Map */
55#define CONFIG_CHIP_SELECTS_PER_CTRL 4
56
57#define CONFIG_HWCONFIG
58#define HWCONFIG_BUFFER_SIZE 128
59
Yuantian Tang353f36d2019-04-10 16:43:34 +080060#define BOOT_TARGET_DEVICES(func) \
61 func(MMC, mmc, 0) \
Yuantian Tang0de19ab2019-11-04 15:10:45 +080062 func(MMC, mmc, 1) \
Yuantian Tang81d9e552020-03-10 11:31:05 +080063 func(USB, usb, 0) \
64 func(DHCP, dhcp, na)
Yuantian Tang353f36d2019-04-10 16:43:34 +080065#include <config_distro_bootcmd.h>
66
Yuantian Tang353f36d2019-04-10 16:43:34 +080067#undef CONFIG_BOOTCOMMAND
68
Yuantian Tang0de19ab2019-11-04 15:10:45 +080069#define XSPI_NOR_BOOTCOMMAND \
70 "run xspi_hdploadcmd; run distro_bootcmd; run xspi_bootcmd; " \
71 "env exists secureboot && esbc_halt;;"
Yuantian Tang353f36d2019-04-10 16:43:34 +080072#define SD_BOOTCOMMAND \
Yuantian Tang0de19ab2019-11-04 15:10:45 +080073 "run sd_hdploadcmd; run distro_bootcmd;run sd_bootcmd; " \
74 "env exists secureboot && esbc_halt;"
75#define SD2_BOOTCOMMAND \
76 "run emmc_hdploadcmd; run distro_bootcmd;run emmc_bootcmd; " \
Yuantian Tang353f36d2019-04-10 16:43:34 +080077 "env exists secureboot && esbc_halt;"
78
79/* Monitor Command Prompt */
80#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
81#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
82 sizeof(CONFIG_SYS_PROMPT) + 16)
83#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot args buffer */
84
Yuantian Tang353f36d2019-04-10 16:43:34 +080085#define CONFIG_SYS_MAXARGS 64 /* max command args */
86
87#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
88
89/* MMC */
90#ifdef CONFIG_MMC
Yuantian Tang353f36d2019-04-10 16:43:34 +080091#define CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33
92#endif
93
Yuantian Tang353f36d2019-04-10 16:43:34 +080094#define OCRAM_NONSECURE_SIZE 0x00010000
Yuantian Tang353f36d2019-04-10 16:43:34 +080095#define CONFIG_SYS_FSL_QSPI_BASE 0x20000000
Yuantian Tang353f36d2019-04-10 16:43:34 +080096
97#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
98
Yuantian Tang353f36d2019-04-10 16:43:34 +080099/* I2C bus multiplexer */
100#define I2C_MUX_PCA_ADDR_PRI 0x77 /* Primary Mux*/
101#define I2C_MUX_CH_DEFAULT 0x8
102
103/* EEPROM */
104#define CONFIG_ID_EEPROM
105#define CONFIG_SYS_I2C_EEPROM_NXID
106#define CONFIG_SYS_EEPROM_BUS_NUM 0
107#define CONFIG_SYS_I2C_EEPROM_ADDR 0x57
108#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
109#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3
110#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5
111
Wen Hef76d88b2019-11-18 13:26:09 +0800112/* DisplayPort */
113#define DP_PWD_EN_DEFAULT_MASK 0x8
114
Udit Agarwal5536c3c2019-11-07 16:11:32 +0000115#ifdef CONFIG_NXP_ESBC
Yuantian Tanga1e126b2019-05-24 14:36:27 +0800116#include <asm/fsl_secure_boot.h>
117#endif
118
Alex Margineanff6c6b22019-07-03 12:11:39 +0300119/* Ethernet */
120/* smallest ENETC BD ring has 8 entries */
121#define CONFIG_SYS_RX_ETH_BUFFER 8
122
Yuantian Tang353f36d2019-04-10 16:43:34 +0800123#endif /* __L1028A_COMMON_H */