diff options
Diffstat (limited to 'arch/arm/mach-s3c2440/mach-rx1950.c')
-rw-r--r-- | arch/arm/mach-s3c2440/mach-rx1950.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-s3c2440/mach-rx1950.c b/arch/arm/mach-s3c2440/mach-rx1950.c index 8603b577a24b..142d1f921176 100644 --- a/arch/arm/mach-s3c2440/mach-rx1950.c +++ b/arch/arm/mach-s3c2440/mach-rx1950.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/types.h> | 15 | #include <linux/types.h> |
16 | #include <linux/interrupt.h> | 16 | #include <linux/interrupt.h> |
17 | #include <linux/list.h> | 17 | #include <linux/list.h> |
18 | #include <linux/memblock.h> | ||
18 | #include <linux/delay.h> | 19 | #include <linux/delay.h> |
19 | #include <linux/timer.h> | 20 | #include <linux/timer.h> |
20 | #include <linux/init.h> | 21 | #include <linux/init.h> |
@@ -570,12 +571,20 @@ static void __init rx1950_init_machine(void) | |||
570 | platform_add_devices(rx1950_devices, ARRAY_SIZE(rx1950_devices)); | 571 | platform_add_devices(rx1950_devices, ARRAY_SIZE(rx1950_devices)); |
571 | } | 572 | } |
572 | 573 | ||
574 | /* H1940 and RX3715 need to reserve this for suspend */ | ||
575 | static void __init rx1950_reserve(void) | ||
576 | { | ||
577 | memblock_reserve(0x30003000, 0x1000); | ||
578 | memblock_reserve(0x30081000, 0x1000); | ||
579 | } | ||
580 | |||
573 | MACHINE_START(RX1950, "HP iPAQ RX1950") | 581 | MACHINE_START(RX1950, "HP iPAQ RX1950") |
574 | /* Maintainers: Vasily Khoruzhick */ | 582 | /* Maintainers: Vasily Khoruzhick */ |
575 | .phys_io = S3C2410_PA_UART, | 583 | .phys_io = S3C2410_PA_UART, |
576 | .io_pg_offst = (((u32) S3C24XX_VA_UART) >> 18) & 0xfffc, | 584 | .io_pg_offst = (((u32) S3C24XX_VA_UART) >> 18) & 0xfffc, |
577 | .boot_params = S3C2410_SDRAM_PA + 0x100, | 585 | .boot_params = S3C2410_SDRAM_PA + 0x100, |
578 | .map_io = rx1950_map_io, | 586 | .map_io = rx1950_map_io, |
587 | .reserve = rx1950_reserve, | ||
579 | .init_irq = s3c24xx_init_irq, | 588 | .init_irq = s3c24xx_init_irq, |
580 | .init_machine = rx1950_init_machine, | 589 | .init_machine = rx1950_init_machine, |
581 | .timer = &s3c24xx_timer, | 590 | .timer = &s3c24xx_timer, |