diff options
| author | Lukasz Majewski <[email protected]> | 2025-06-06 12:38:38 +0200 |
|---|---|---|
| committer | Fabio Estevam <[email protected]> | 2025-06-16 14:40:27 -0300 |
| commit | 9d7f90782d0a768af76718e0cbc17c954d6731e5 (patch) | |
| tree | 34ae31f8bbd0d2ab4cc330bd3ddd2cdfb8ad4578 /include | |
| parent | 9de873b4c3098c0662d4adaeb1cc31be4e6d2688 (diff) | |
ARM: imx: mxs: Add support for imx287 based BTT devices
The btt[c3] devices are based on imx287 SoC.
U-Boot SPL 2025.04-01081-g07e086681d26 (Apr 16 2025 - 12:24:36 +0200)
Trying to boot from MMC1
U-Boot 2025.04-01081-g07e086681d26 (Apr 16 2025 - 12:24:36 +0200)
CPU: Freescale i.MX28 rev1.2 at 454 MHz
BOOT: SSP SPI #3, master, 3V3 NOR
Model: BTT3
Board: LWE BTT SoM HW rev 0
DRAM: 256 MiB
Core: 86 devices, 15 uclasses, devicetree: separate
MMC: MXS MMC: 0
Loading Environment from SPIFlash... SF: Detected is25lp128 with page
size 256 Bytes, erase size 64 KiB, total 16 MiB
OK
In: serial@80074000
Out: serial@80074000
Err: serial@80074000
Net: eth0: ethernet@800f0000
Hit any key to stop autoboot: 0
Signed-off-by: Lukasz Majewski <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/btt.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/configs/btt.h b/include/configs/btt.h new file mode 100644 index 00000000000..dea87fa9b77 --- /dev/null +++ b/include/configs/btt.h @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2025 DENX Software Engineering + * Lukasz Majewski, DENX Software Engineering, [email protected] + */ +#ifndef __CONFIGS_BTT_H__ +#define __CONFIGS_BTT_H__ + +#include <linux/sizes.h> +/* Memory configuration */ +#define PHYS_SDRAM_1 0x40000000 /* Base address */ +#define PHYS_SDRAM_1_SIZE SZ_256M /* Max 256 MB RAM */ +#define CFG_SYS_SDRAM_BASE PHYS_SDRAM_1 + +/* The rest of the configuration is shared */ +#include <configs/mxs.h> + +#endif /* __CONFIGS_BTT_H__ */ |
