blob: 5309f9b6aabceedca1fe5da89d94b00226013ac8 [file] [log] [blame]
SAN People73a59c12006-01-09 17:05:41 +00001# Note: the following conditions must always be true:
2# ZRELADDR == virt_to_phys(TEXTADDR)
3# PARAMS_PHYS must be within 4MB of ZRELADDR
4# INITRD_PHYS must be in RAM
5
Jean-Christophe PLAGNIOL-VILLARD9918cea2012-01-26 14:07:09 +01006ifeq ($(CONFIG_ARCH_AT91SAM9G45),y)
Sascha Hauer40c6d8a2011-08-17 14:24:52 +01007 zreladdr-y += 0x70008000
Nicolas Ferre789b23b2009-06-26 15:36:58 +01008params_phys-y := 0x70000100
9initrd_phys-y := 0x70410000
Andrew Victor2b3b3512008-01-24 15:10:39 +010010else
Sascha Hauer40c6d8a2011-08-17 14:24:52 +010011 zreladdr-y += 0x20008000
SAN People73a59c12006-01-09 17:05:41 +000012params_phys-y := 0x20000100
13initrd_phys-y := 0x20410000
Andrew Victor2b3b3512008-01-24 15:10:39 +010014endif