Re: 2.6.30 kernel for Zaurus

From: Pavel Machek
Date: Wed Jun 24 2009 - 14:32:43 EST


On Wed 2009-06-24 20:13:24, Pavel Machek wrote:
>
> On Wed 2009-06-24 17:19:19, Vitaly Minko wrote:
> > Hi Pavel,
> >
> > I want to upgrade my kernel on Zaurus C1000 to the latest stable version.
> > Do I need any additional patches besides your suspend-related one that
> > you posted here:
> > http://patchwork.kernel.org/patch/26927/
>
> Well, you'll also need to disable offline charging, and I only tested
> it on spitz.

Try this...

diff -ur arm.ofic/common/sharpsl_pm.c arm/common/sharpsl_pm.c
--- arm.ofic/common/sharpsl_pm.c 2009-05-29 01:10:31.000000000 +0200
+++ arm/common/sharpsl_pm.c 2009-06-01 12:01:35.000000000 +0200
@@ -12,7 +12,7 @@
*
*/

-#undef DEBUG
+#define DEBUG

#include <linux/module.h>
#include <linux/timer.h>
@@ -546,6 +546,9 @@

static int corgi_enter_suspend(unsigned long alarm_time, unsigned int alarm_enable, suspend_state_t state)
{
+
+ return 0;
+
if (!sharpsl_pm.machinfo->should_wakeup(!(sharpsl_pm.flags & SHARPSL_ALARM_ACTIVE) && alarm_enable) )
{
if (!(sharpsl_pm.flags & SHARPSL_ALARM_ACTIVE)) {
diff -ur arm.ofic/mach-pxa/spitz_pm.c arm/mach-pxa/spitz_pm.c
--- arm.ofic/mach-pxa/spitz_pm.c 2009-05-29 01:11:02.000000000 +0200
+++ arm/mach-pxa/spitz_pm.c 2009-05-28 23:28:30.000000000 +0200
@@ -124,6 +124,7 @@
int is_resume = 0;
int acin = sharpsl_pm.machinfo->read_devdata(SHARPSL_STATUS_ACIN);

+#if 0
if (spitz_last_ac_status != acin) {
if (acin) {
/* charge on */
@@ -141,6 +142,8 @@
return 0;
}

+#endif
+
if (PEDR & GPIO_bit(SPITZ_GPIO_KEY_INT))
is_resume |= GPIO_bit(SPITZ_GPIO_KEY_INT);



--
(english) http://www.livejournal.com/~pavelmachek
(cesky, pictures) http://atrey.karlin.mff.cuni.cz/~pavel/picture/horses/blog.html
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/