mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 02:05:20 +07:00
6dace67f9b
This is sufficient to allow boot of the Lager board with a console without boards-lager.c compiled into the kernel. This is an example of a minimal but still useful initialisation of the board using DT as much as possible. As such it is the same as the boot of Lager that can be achieved without a board file. The intention of adding this file is to facilitate further work to allow board specific devices to be initialised via DT. Acked-by: Magnus Damm <damm@opensource.se> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
27 lines
1.0 KiB
Clojure
27 lines
1.0 KiB
Clojure
# per-board load address for uImage
|
|
loadaddr-y :=
|
|
loadaddr-$(CONFIG_MACH_AG5EVM) += 0x40008000
|
|
loadaddr-$(CONFIG_MACH_APE6EVM) += 0x40008000
|
|
loadaddr-$(CONFIG_MACH_APE6EVM_REFERENCE) += 0x40008000
|
|
loadaddr-$(CONFIG_MACH_ARMADILLO800EVA) += 0x40008000
|
|
loadaddr-$(CONFIG_MACH_ARMADILLO800EVA_REFERENCE) += 0x40008000
|
|
loadaddr-$(CONFIG_MACH_BOCKW) += 0x60008000
|
|
loadaddr-$(CONFIG_MACH_KOTA2) += 0x41008000
|
|
loadaddr-$(CONFIG_MACH_KZM9D) += 0x40008000
|
|
loadaddr-$(CONFIG_MACH_KZM9D_REFERENCE) += 0x40008000
|
|
loadaddr-$(CONFIG_MACH_KZM9G) += 0x41008000
|
|
loadaddr-$(CONFIG_MACH_KZM9G_REFERENCE) += 0x41008000
|
|
loadaddr-$(CONFIG_MACH_LAGER) += 0x40008000
|
|
loadaddr-$(CONFIG_MACH_LAGER_REFERENCE) += 0x40008000
|
|
loadaddr-$(CONFIG_MACH_MACKEREL) += 0x40008000
|
|
loadaddr-$(CONFIG_MACH_MARZEN) += 0x60008000
|
|
loadaddr-$(CONFIG_MACH_MARZEN_REFERENCE) += 0x60008000
|
|
|
|
__ZRELADDR := $(sort $(loadaddr-y))
|
|
zreladdr-y += $(__ZRELADDR)
|
|
|
|
# Unsupported legacy stuff
|
|
#
|
|
#params_phys-y (Instead: Pass atags pointer in r2)
|
|
#initrd_phys-y (Instead: Use compiled-in initramfs)
|