diff options
author | SAN People <andrew@sanpeople.com> | 2006-01-09 17:05:41 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-01-09 17:05:41 +0000 |
commit | 73a59c1c4af06c675a168d698d3ebfbb3270ddbe (patch) | |
tree | fa1708e19cf89a6bd13c8f7725a9cc67cc4ae6fd /arch/arm/mach-at91rm9200/Makefile.boot | |
parent | 50365c57860cd931c2d806057e0987634797e9af (diff) | |
download | linux-stable-73a59c1c4af06c675a168d698d3ebfbb3270ddbe.tar.gz linux-stable-73a59c1c4af06c675a168d698d3ebfbb3270ddbe.tar.bz2 linux-stable-73a59c1c4af06c675a168d698d3ebfbb3270ddbe.zip |
[ARM] 3240/2: AT91RM9200 support for 2.6 (Core)
Patch from SAN People
Following changes were made to clock.c:
1) Replaced <asm/hardware/clock.h> with <linux/clk.h>
2) Removed old unused clk_enable & clk_disable.
3) Replaced clk_use/clk_unuse with clk_enable/clk_disable.
Otherwise it's the same as the previous patch.
Signed-off-by: Andrew Victor <andrew@sanpeople.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-at91rm9200/Makefile.boot')
-rw-r--r-- | arch/arm/mach-at91rm9200/Makefile.boot | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-at91rm9200/Makefile.boot b/arch/arm/mach-at91rm9200/Makefile.boot new file mode 100644 index 000000000000..e667dcc7cd34 --- /dev/null +++ b/arch/arm/mach-at91rm9200/Makefile.boot @@ -0,0 +1,9 @@ +# 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 + + zreladdr-y := 0x20008000 +params_phys-y := 0x20000100 +initrd_phys-y := 0x20410000 + |