* [PATCH 4/5] Add suspend/resume support for rx1950
@ 2009-09-23 7:47 Vasily Khoruzhick
0 siblings, 0 replies; 2+ messages in thread
From: Vasily Khoruzhick @ 2009-09-23 7:47 UTC (permalink / raw)
To: linux-arm-kernel
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0004-Add-suspend-resume-support-for-rx1950.patch
Type: text/x-patch
Size: 2781 bytes
Desc: not available
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20090923/469d53b4/attachment.bin>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 198 bytes
Desc: This is a digitally signed message part.
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20090923/469d53b4/attachment.sig>
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 0/5] HP iPAQ RX1950 patch series
@ 2010-05-10 20:43 Vasily Khoruzhick
2010-05-10 20:43 ` [PATCH 4/5] Add suspend/resume support for RX1950 Vasily Khoruzhick
0 siblings, 1 reply; 2+ messages in thread
From: Vasily Khoruzhick @ 2010-05-10 20:43 UTC (permalink / raw)
To: linux-arm-kernel
Following patch series add suport for iPAQ RX1950 PDA - another s3c2442-based
machine. Almost all drivers for this machine are included in mainline kernel,
and port only lacks battery, LED, WiFi and sound support, they will be added
later.
Ben, if you don't like 5th patch - just drop it, but I think that simplier
solution is almost always the best :)
^ permalink raw reply [flat|nested] 2+ messages in thread
* [PATCH 4/5] Add suspend/resume support for RX1950
2010-05-10 20:43 [PATCH 0/5] HP iPAQ RX1950 patch series Vasily Khoruzhick
@ 2010-05-10 20:43 ` Vasily Khoruzhick
0 siblings, 0 replies; 2+ messages in thread
From: Vasily Khoruzhick @ 2010-05-10 20:43 UTC (permalink / raw)
To: linux-arm-kernel
Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
---
arch/arm/mach-s3c2410/pm.c | 4 ++--
arch/arm/mm/mmu.c | 5 +++--
2 files changed, 5 insertions(+), 4 deletions(-)
diff --git a/arch/arm/mach-s3c2410/pm.c b/arch/arm/mach-s3c2410/pm.c
index 966119c..6a61486 100644
--- a/arch/arm/mach-s3c2410/pm.c
+++ b/arch/arm/mach-s3c2410/pm.c
@@ -60,10 +60,10 @@ static void s3c2410_pm_prepare(void)
__raw_writel(calc, phys_to_virt(H1940_SUSPEND_CHECKSUM));
}
- /* the RX3715 uses similar code and the same H1940 and the
+ /* RX3715 and RX1950 use similar to H1940 code and the
* same offsets for resume and checksum pointers */
- if (machine_is_rx3715()) {
+ if (machine_is_rx3715() || machine_is_rx1950()) {
void *base = phys_to_virt(H1940_SUSPEND_CHECK);
unsigned long ptr;
unsigned long calc = 0;
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/mmu.c
index 241c24a..45a1bc2 100644
--- a/arch/arm/mm/mmu.c
+++ b/arch/arm/mm/mmu.c
@@ -869,9 +869,10 @@ void __init reserve_node_zero(pg_data_t *pgdat)
if (machine_is_p720t())
res_size = 0x00014000;
- /* H1940 and RX3715 need to reserve this for suspend */
+ /* H1940, RX3715 and RX1950 need to reserve this for suspend */
- if (machine_is_h1940() || machine_is_rx3715()) {
+ if (machine_is_h1940() || machine_is_rx3715()
+ || machine_is_rx1950()) {
reserve_bootmem_node(pgdat, 0x30003000, 0x1000,
BOOTMEM_DEFAULT);
reserve_bootmem_node(pgdat, 0x30081000, 0x1000,
--
1.7.0.4
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2010-05-10 20:43 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-23 7:47 [PATCH 4/5] Add suspend/resume support for rx1950 Vasily Khoruzhick
-- strict thread matches above, loose matches on Subject: below --
2010-05-10 20:43 [PATCH 0/5] HP iPAQ RX1950 patch series Vasily Khoruzhick
2010-05-10 20:43 ` [PATCH 4/5] Add suspend/resume support for RX1950 Vasily Khoruzhick
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).