diff options
| author | Duje Mihanović <[email protected]> | 2025-01-24 16:47:49 +0100 |
|---|---|---|
| committer | Stefan Roese <[email protected]> | 2025-01-28 09:08:44 +0100 |
| commit | 08b27fce29eb9f07768bdab02bb9dd58e3e0ee36 (patch) | |
| tree | e70d75a3f8c4ddf8fa0fd5ec4e610ece11f24804 /include | |
| parent | 2d84e1519c5bed8ac21057531799f3f29c897f17 (diff) | |
arm: mmp: add initial support for PXA1908 SoC
Add initial support for Marvell PXA1908. The SoC has 4 Cortex-A53 cores,
a GC7000UL GPU and a variety of peripheral controllers.
Signed-off-by: Duje Mihanović <[email protected]>
Reviewed-by: Stefan Roese <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/pxa1908.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/configs/pxa1908.h b/include/configs/pxa1908.h new file mode 100644 index 00000000000..b0d6cdfeb76 --- /dev/null +++ b/include/configs/pxa1908.h @@ -0,0 +1,18 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (c) 2024 + * Duje Mihanović <[email protected]> + */ + +#ifndef __PXA1908_H +#define __PXA1908_H + +#define CFG_SYS_SDRAM_BASE 0x1000000 +#define CFG_SYS_INIT_RAM_ADDR 0x10000000 +#define CFG_SYS_INIT_RAM_SIZE 0x4000 +#define CFG_SYS_NS16550_IER 0x40 +#define CFG_SYS_BAUDRATE_TABLE { 115200, 230400, 460800, 921600 } +#define CFG_EXTRA_ENV_SETTINGS \ + "bootcmd=bootm $prevbl_initrd_start_addr\0" + +#endif |
