diff options
| author | TracyMg_Li <[email protected]> | 2023-12-25 11:21:34 +0800 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-01-16 17:05:29 -0500 |
| commit | e6a8c6f5c02af7d7769a1ae70859e24188fd2433 (patch) | |
| tree | fd60866e237f4dbfd09944697e4b3fbcac5aa842 /include | |
| parent | ddcfb9ede8da45ebbdb1c4facf07b0f0b735373f (diff) | |
ARM add initial support for the Phytium Pe2201 Board.
Add pe2201 platform code and the device tree of pe2201 platform board.
The initial support comprises the UART and PCIe.
Signed-off-by: TracyMg_Li <[email protected]>
Changes since v1:
fix space corrupt.
Changes since v2:
switch to bootstd and text environment.
Changes since v3:
add environment variables.
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/pe2201.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/include/configs/pe2201.h b/include/configs/pe2201.h new file mode 100644 index 00000000000..80f8f17bcd4 --- /dev/null +++ b/include/configs/pe2201.h @@ -0,0 +1,16 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2023, Phytium Technology Co., Ltd. + * lixinde <[email protected]> + * weichangzheng <[email protected]> + */ + +#ifndef __PE2201_CONFIG_H +#define __PE2201_CONFIG_H + +/* SDRAM Bank #1 start address */ +#define PHYS_SDRAM_1 0x80000000 +#define PHYS_SDRAM_1_SIZE 0x74000000 +#define CFG_SYS_SDRAM_BASE PHYS_SDRAM_1 + +#endif |
