mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 01:31:44 +00:00
2b3b3516b6
Add support for Atmel's AT91CAP9 Customizable Microcontroller family. <http://www.atmel.com/products/AT91CAP/Default.asp> Signed-off-by: Stelian Pop <stelian@popies.net> Signed-off-by: Andrew Victor <linux@maxim.org.za> Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
15 lines
384 B
Clojure
15 lines
384 B
Clojure
# Note: the following conditions must always be true:
|
|
# ZRELADDR == virt_to_phys(TEXTADDR)
|
|
# PARAMS_PHYS must be within 4MB of ZRELADDR
|
|
# INITRD_PHYS must be in RAM
|
|
|
|
ifeq ($(CONFIG_ARCH_AT91CAP9),y)
|
|
zreladdr-y := 0x70008000
|
|
params_phys-y := 0x70000100
|
|
initrd_phys-y := 0x70410000
|
|
else
|
|
zreladdr-y := 0x20008000
|
|
params_phys-y := 0x20000100
|
|
initrd_phys-y := 0x20410000
|
|
endif
|