build: version release v4.1.4

support u-boot-spl
[feat](PQbin) add config json param option
[panel] add st7785m config in uboot
adjust opensbi mem from 512KB to 256KB.
[sensor]add sensor byd_bf2253l
[sensor]add sensor sc1336_1l
[sensor]add sensor gc2083
[build] add cv1813h_wevb_0007a_emmc build config
delete property of ion node, ion size can be freely set by env
[board] sync huashanpi emmc board configurations to nand and nor

Change-Id: I705a04fd2f60b4cbe9919196770a396d72c1dcee
This commit is contained in:
forum_service
2023-10-12 11:42:58 +08:00
committed by carbon
parent fab8a3952e
commit 446ba0b5f8
42 changed files with 2146 additions and 31 deletions

View File

@ -6,7 +6,9 @@ SIZE_1K = 1024
class MemoryMap:
# No prefix "CVIMMAP_" for the items in _no_prefix[]
_no_prefix = [
"CONFIG_SYS_TEXT_BASE" # u-boot's CONFIG_SYS_TEXT_BASE is used without CPP.
"CONFIG_SYS_TEXT_BASE", # u-boot's CONFIG_SYS_TEXT_BASE is used without CPP.
"CONFIG_SPL_SIZE_LIMIT",
"CONFIG_SPL_TEXT_BASE",
]
DRAM_BASE = 0x80000000
@ -83,3 +85,7 @@ class MemoryMap:
CONFIG_SYS_TEXT_BASE = DRAM_BASE + 2 * SIZE_1M
# u-boot's init stack point is only used before board_init_f()
CONFIG_SYS_INIT_SP_ADDR = UIMAG_ADDR + UIMAG_SIZE
# uboot-spl
CONFIG_SPL_SIZE_LIMIT = SIZE_1M
CONFIG_SPL_TEXT_BASE = BOOTLOGO_ADDR - CONFIG_SPL_SIZE_LIMIT