diff options
| author | Hiago De Franco <[email protected]> | 2026-07-23 11:44:35 -0300 |
|---|---|---|
| committer | Leo Yu-Chi Liang <[email protected]> | 2026-08-05 11:13:19 -0700 |
| commit | 98b59e181daa6c26d49f870fd58df8996b1cd7f1 (patch) | |
| tree | 4a1a1505e887c436dd51fe0903af78c76968ebb8 /include | |
| parent | bacb61a06fd36661959ee8109e50f7e6eda76be1 (diff) | |
board: sophgo: add support for Milk-V Duo 256M
Add U-Boot support for Milk-V Duo 256M.
This board has a different SoC compared to the Milk-V Duo 64M, it uses
the Sophgo SG2002 instead of the Sophgo CV1800B. Both SoCs share many
common IP blocks, so this board reuses the existing cv1800b CPU support.
The board shares the same 'board.c' with Milk-V Duo 64MB (CV1800B), so
use the same file for now.
Link: https://milkv.io/docs/duo/getting-started/duo256m
Signed-off-by: Hiago De Franco <[email protected]>
Acked-by: Leo Yu-Chi Liang <[email protected]>
Diffstat (limited to 'include')
| -rw-r--r-- | include/configs/milkv_duo_256m.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/configs/milkv_duo_256m.h b/include/configs/milkv_duo_256m.h new file mode 100644 index 00000000000..4d6678b9c84 --- /dev/null +++ b/include/configs/milkv_duo_256m.h @@ -0,0 +1,12 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (c) 2026, Hiago De Franco <[email protected]> + * + */ + +#ifndef __CONFIG_H +#define __CONFIG_H + +#define CFG_SYS_SDRAM_BASE 0x80000000 + +#endif /* __CONFIG_H */ |
