Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
| 2 | /* |
Yangbo Lu | 34f39ce | 2021-06-03 10:51:19 +0800 | [diff] [blame] | 3 | * Copyright 2019-2021 NXP |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 4 | */ |
| 5 | |
| 6 | #ifndef __L1028A_COMMON_H |
| 7 | #define __L1028A_COMMON_H |
| 8 | |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 9 | #include <asm/arch/stream_id_lsch3.h> |
| 10 | #include <asm/arch/config.h> |
| 11 | #include <asm/arch/soc.h> |
| 12 | |
| 13 | /* Link Definitions */ |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 14 | |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 15 | #define CFG_SYS_DDR_SDRAM_BASE 0x80000000UL |
Tom Rini | 6cc0454 | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 16 | #define CFG_SYS_FSL_DDR_SDRAM_BASE_PHY 0 |
Tom Rini | 65cc0e2 | 2022-11-16 13:10:41 -0500 | [diff] [blame] | 17 | #define CFG_SYS_SDRAM_BASE CFG_SYS_DDR_SDRAM_BASE |
| 18 | #define CFG_SYS_DDR_BLOCK2_BASE 0x2080000000ULL |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 19 | |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 20 | /* |
| 21 | * SMP Definitinos |
| 22 | */ |
Michael Walle | 3d3fe8b | 2020-06-01 21:53:26 +0200 | [diff] [blame] | 23 | #define CPU_RELEASE_ADDR secondary_boot_addr |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 24 | |
Biwen Li | 90281f4 | 2021-02-05 19:01:57 +0800 | [diff] [blame] | 25 | /* GPIO */ |
Biwen Li | 90281f4 | 2021-02-05 19:01:57 +0800 | [diff] [blame] | 26 | |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 27 | /* I2C */ |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 28 | |
| 29 | /* Serial Port */ |
Tom Rini | 9109213 | 2022-11-16 13:10:28 -0500 | [diff] [blame] | 30 | #define CFG_SYS_NS16550_CLK (get_bus_freq(0) / 2) |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 31 | |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 32 | /* Miscellaneous configurable options */ |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 33 | |
| 34 | /* Physical Memory Map */ |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 35 | |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 36 | #define HWCONFIG_BUFFER_SIZE 128 |
| 37 | |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 38 | #define BOOT_TARGET_DEVICES(func) \ |
| 39 | func(MMC, mmc, 0) \ |
Yuantian Tang | 0de19ab | 2019-11-04 15:10:45 +0800 | [diff] [blame] | 40 | func(MMC, mmc, 1) \ |
Yuantian Tang | 81d9e55 | 2020-03-10 11:31:05 +0800 | [diff] [blame] | 41 | func(USB, usb, 0) \ |
| 42 | func(DHCP, dhcp, na) |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 43 | #include <config_distro_bootcmd.h> |
| 44 | |
Yuantian Tang | 0de19ab | 2019-11-04 15:10:45 +0800 | [diff] [blame] | 45 | #define XSPI_NOR_BOOTCOMMAND \ |
| 46 | "run xspi_hdploadcmd; run distro_bootcmd; run xspi_bootcmd; " \ |
| 47 | "env exists secureboot && esbc_halt;;" |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 48 | #define SD_BOOTCOMMAND \ |
Yuantian Tang | 0de19ab | 2019-11-04 15:10:45 +0800 | [diff] [blame] | 49 | "run sd_hdploadcmd; run distro_bootcmd;run sd_bootcmd; " \ |
| 50 | "env exists secureboot && esbc_halt;" |
| 51 | #define SD2_BOOTCOMMAND \ |
| 52 | "run emmc_hdploadcmd; run distro_bootcmd;run emmc_bootcmd; " \ |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 53 | "env exists secureboot && esbc_halt;" |
| 54 | |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 55 | #define OCRAM_NONSECURE_SIZE 0x00010000 |
Tom Rini | 6cc0454 | 2022-10-28 20:27:13 -0400 | [diff] [blame] | 56 | #define CFG_SYS_FSL_QSPI_BASE 0x20000000 |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 57 | |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 58 | /* I2C bus multiplexer */ |
| 59 | #define I2C_MUX_PCA_ADDR_PRI 0x77 /* Primary Mux*/ |
| 60 | #define I2C_MUX_CH_DEFAULT 0x8 |
| 61 | |
Wen He | f76d88b | 2019-11-18 13:26:09 +0800 | [diff] [blame] | 62 | /* DisplayPort */ |
| 63 | #define DP_PWD_EN_DEFAULT_MASK 0x8 |
| 64 | |
Udit Agarwal | 5536c3c | 2019-11-07 16:11:32 +0000 | [diff] [blame] | 65 | #ifdef CONFIG_NXP_ESBC |
Yuantian Tang | a1e126b | 2019-05-24 14:36:27 +0800 | [diff] [blame] | 66 | #include <asm/fsl_secure_boot.h> |
| 67 | #endif |
| 68 | |
Yuantian Tang | 353f36d | 2019-04-10 16:43:34 +0800 | [diff] [blame] | 69 | #endif /* __L1028A_COMMON_H */ |