blob: dea87fa9b776989be3606ef2df32945897b27ac4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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__ */
|