diff options
author | Tom Rini <trini@konsulko.com> | 2025-06-17 08:12:39 -0600 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2025-06-17 08:12:39 -0600 |
commit | 5d7e003248ae836cbcc2b4c254901c1d85c85537 (patch) | |
tree | 1951df78fe97848600ac26f441d0ff6a71716dd1 /include | |
parent | 62d24441e0a29c828fda6fbda3b10710ce714094 (diff) | |
parent | 9d7f90782d0a768af76718e0cbc17c954d6731e5 (diff) |
Merge tag 'u-boot-imx-next-20250617' of https://gitlab.denx.de/u-boot/custodians/u-boot-imx into next
CI: https://source.denx.de/u-boot/custodians/u-boot-imx/-/pipelines/26728
- Add support for imx28 BTT boards.
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, lukma@denx.de + */ +#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__ */ |