SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 1 | # 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 | |
Andrew Victor | 2b3b351 | 2008-01-24 15:10:39 +0100 | [diff] [blame] | 6 | ifeq ($(CONFIG_ARCH_AT91CAP9),y) |
| 7 | zreladdr-y := 0x70008000 |
| 8 | params_phys-y := 0x70000100 |
| 9 | initrd_phys-y := 0x70410000 |
Nicolas Ferre | 789b23b | 2009-06-26 15:36:58 +0100 | [diff] [blame] | 10 | else ifeq ($(CONFIG_ARCH_AT91SAM9G45),y) |
| 11 | zreladdr-y := 0x70008000 |
| 12 | params_phys-y := 0x70000100 |
| 13 | initrd_phys-y := 0x70410000 |
Andrew Victor | 2b3b351 | 2008-01-24 15:10:39 +0100 | [diff] [blame] | 14 | else |
SAN People | 73a59c1 | 2006-01-09 17:05:41 +0000 | [diff] [blame] | 15 | zreladdr-y := 0x20008000 |
| 16 | params_phys-y := 0x20000100 |
| 17 | initrd_phys-y := 0x20410000 |
Andrew Victor | 2b3b351 | 2008-01-24 15:10:39 +0100 | [diff] [blame] | 18 | endif |