mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
003b657edc
Add support for Apple's M1 SoC that is used in "Apple Silicon" Macs. This builds a basic U-Boot that can be used as a payload for the m1n1 boot loader being developed by the Asahi Linux project. Signed-off-by: Mark Kettenis <kettenis@openbsd.org> Reviewed-by: Simon Glass <sjg@chromium.org> [trini: Add MAINTAINERS entry]
18 lines
217 B
Text
18 lines
217 B
Text
if ARCH_APPLE
|
|
|
|
config SYS_TEXT_BASE
|
|
default 0x00000000
|
|
|
|
config SYS_CONFIG_NAME
|
|
default "apple"
|
|
|
|
config SYS_SOC
|
|
default "m1"
|
|
|
|
config SYS_MALLOC_LEN
|
|
default 0x4000000
|
|
|
|
config SYS_MALLOC_F_LEN
|
|
default 0x4000
|
|
|
|
endif
|