blob: d184673a71b52dd59051eda48737e3a74d851a00 [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
10#define CONFIG_FSL_LAYERSCAPE
11#define CONFIG_MP
12
13#include <asm/arch/stream_id_lsch3.h>
14#include <asm/arch/config.h>
15#include <asm/arch/soc.h>
16
17/* Link Definitions */
18#define CONFIG_SYS_INIT_SP_ADDR CONFIG_SYS_TEXT_BASE
19
20#define CONFIG_SKIP_LOWLEVEL_INIT
21
22#define CONFIG_VERY_BIG_RAM
23#define CONFIG_SYS_DDR_SDRAM_BASE 0x80000000UL
24#define CONFIG_SYS_FSL_DDR_SDRAM_BASE_PHY 0
25#define CONFIG_SYS_SDRAM_BASE CONFIG_SYS_DDR_SDRAM_BASE
26#define CONFIG_SYS_DDR_BLOCK2_BASE 0x2080000000ULL
27#define CONFIG_SYS_FSL_DDR_MAIN_NUM_CTRLS 1
28
Yuantian Tang353f36d2019-04-10 16:43:34 +080029/*
30 * SMP Definitinos
31 */
32#define CPU_RELEASE_ADDR secondary_boot_func
33
34/* Generic Timer Definitions */
35#define COUNTER_FREQUENCY 25000000 /* 25MHz */
36
37/* Size of malloc() pool */
38#define CONFIG_SYS_MALLOC_LEN (CONFIG_ENV_SIZE + 2048 * 1024)
39
40/* I2C */
Chuanhua Han954cd782019-07-10 21:16:49 +080041#ifndef CONFIG_DM_I2C
Yuantian Tang353f36d2019-04-10 16:43:34 +080042#define CONFIG_SYS_I2C
Chuanhua Han954cd782019-07-10 21:16:49 +080043#endif
Yuantian Tang353f36d2019-04-10 16:43:34 +080044
45/* Serial Port */
Yuantian Tang353f36d2019-04-10 16:43:34 +080046#define CONFIG_SYS_NS16550_SERIAL
47#define CONFIG_SYS_NS16550_REG_SIZE 1
48#define CONFIG_SYS_NS16550_CLK (get_bus_freq(0) / 2)
49
Yuantian Tang353f36d2019-04-10 16:43:34 +080050#define CONFIG_SYS_BAUDRATE_TABLE { 9600, 19200, 38400, 57600, 115200 }
51
52/* Miscellaneous configurable options */
53#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_DDR_SDRAM_BASE + 0x10000000)
54
55/* Physical Memory Map */
56#define CONFIG_CHIP_SELECTS_PER_CTRL 4
57
58#define CONFIG_HWCONFIG
59#define HWCONFIG_BUFFER_SIZE 128
60
61/* Allow to overwrite serial and ethaddr */
62#define CONFIG_ENV_OVERWRITE
63
64#define BOOT_TARGET_DEVICES(func) \
65 func(MMC, mmc, 0) \
Yuantian Tang0de19ab2019-11-04 15:10:45 +080066 func(MMC, mmc, 1) \
Yuantian Tang81d9e552020-03-10 11:31:05 +080067 func(USB, usb, 0) \
68 func(DHCP, dhcp, na)
Yuantian Tang353f36d2019-04-10 16:43:34 +080069#include <config_distro_bootcmd.h>
70
Yuantian Tang353f36d2019-04-10 16:43:34 +080071#undef CONFIG_BOOTCOMMAND
72
Yuantian Tang0de19ab2019-11-04 15:10:45 +080073#define XSPI_NOR_BOOTCOMMAND \
74 "run xspi_hdploadcmd; run distro_bootcmd; run xspi_bootcmd; " \
75 "env exists secureboot && esbc_halt;;"
Yuantian Tang353f36d2019-04-10 16:43:34 +080076#define SD_BOOTCOMMAND \
Yuantian Tang0de19ab2019-11-04 15:10:45 +080077 "run sd_hdploadcmd; run distro_bootcmd;run sd_bootcmd; " \
78 "env exists secureboot && esbc_halt;"
79#define SD2_BOOTCOMMAND \
80 "run emmc_hdploadcmd; run distro_bootcmd;run emmc_bootcmd; " \
Yuantian Tang353f36d2019-04-10 16:43:34 +080081 "env exists secureboot && esbc_halt;"
82
83/* Monitor Command Prompt */
84#define CONFIG_SYS_CBSIZE 512 /* Console I/O Buffer Size */
85#define CONFIG_SYS_PBSIZE (CONFIG_SYS_CBSIZE + \
86 sizeof(CONFIG_SYS_PROMPT) + 16)
87#define CONFIG_SYS_BARGSIZE CONFIG_SYS_CBSIZE /* Boot args buffer */
88
Yuantian Tang353f36d2019-04-10 16:43:34 +080089#define CONFIG_SYS_MAXARGS 64 /* max command args */
90
91#define CONFIG_SYS_BOOTM_LEN (64 << 20) /* Increase max gunzip size */
92
93/* MMC */
94#ifdef CONFIG_MMC
Yuantian Tang353f36d2019-04-10 16:43:34 +080095#define CONFIG_SYS_FSL_MMC_HAS_CAPBLT_VS33
96#endif
97
98#define CONFIG_SYS_MMC_ENV_DEV 0
99#define OCRAM_NONSECURE_SIZE 0x00010000
Yuantian Tang353f36d2019-04-10 16:43:34 +0800100#define CONFIG_SYS_FSL_QSPI_BASE 0x20000000
Yuantian Tang353f36d2019-04-10 16:43:34 +0800101
102#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_TEXT_BASE
103
Yuantian Tang353f36d2019-04-10 16:43:34 +0800104/* I2C bus multiplexer */
105#define I2C_MUX_PCA_ADDR_PRI 0x77 /* Primary Mux*/
106#define I2C_MUX_CH_DEFAULT 0x8
107
108/* EEPROM */
109#define CONFIG_ID_EEPROM
110#define CONFIG_SYS_I2C_EEPROM_NXID
111#define CONFIG_SYS_EEPROM_BUS_NUM 0
112#define CONFIG_SYS_I2C_EEPROM_ADDR 0x57
113#define CONFIG_SYS_I2C_EEPROM_ADDR_LEN 1
114#define CONFIG_SYS_EEPROM_PAGE_WRITE_BITS 3
115#define CONFIG_SYS_EEPROM_PAGE_WRITE_DELAY_MS 5
116
Wen Hef76d88b2019-11-18 13:26:09 +0800117/* DisplayPort */
118#define DP_PWD_EN_DEFAULT_MASK 0x8
119
Udit Agarwal5536c3c2019-11-07 16:11:32 +0000120#ifdef CONFIG_NXP_ESBC
Yuantian Tanga1e126b2019-05-24 14:36:27 +0800121#include <asm/fsl_secure_boot.h>
122#endif
123
Alex Margineanff6c6b22019-07-03 12:11:39 +0300124/* Ethernet */
125/* smallest ENETC BD ring has 8 entries */
126#define CONFIG_SYS_RX_ETH_BUFFER 8
127
Yuantian Tang353f36d2019-04-10 16:43:34 +0800128#endif /* __L1028A_COMMON_H */