Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 06 Aug 2001 09:01:51 -0600
From:      Warner Losh <imp@harmony.village.org>
To:        Hajimu UMEMOTO <ume@mahoroba.org>
Cc:        stable@FreeBSD.ORG, mobile@FreeBSD.ORG
Subject:   Re: 4.4-PRERELEASE never resume from suspend 
Message-ID:  <200108061501.f76F1p106658@harmony.village.org>
In-Reply-To: Your message of "Sun, 05 Aug 2001 05:55:33 %2B0900." <20010805.055533.59723180.ume@mahoroba.org> 
References:  <20010805.055533.59723180.ume@mahoroba.org>  <20010805.024856.94992825.ume@mahoroba.org> <200108041929.f74JTlH75815@harmony.village.org> 

next in thread | previous in thread | raw e-mail | index | archive | help
In message <20010805.055533.59723180.ume@mahoroba.org> Hajimu UMEMOTO writes:
: I just did it.  When booting kernel without any pccard stuff, it works
: fine, suspend/resume is okay.  The output of dmesg is attached.

UMEMOTO-san,

First, I merged a small change to how we suspend from current in
pcic.c (version 1.89.2.17) that might impact the Chandra 2.  If you
could try upgrading that one file and updating your kernel on the
Chandra 2.

Second, are you setting machdep.pccard.pcic_resume_reset to 0 for the
Chandra 2?  If so, then please try the enclosed patch.

Warner

Index: pccard.c
===================================================================
RCS file: /cache/ncvs/src/sys/pccard/pccard.c,v
retrieving revision 1.106.2.9
diff -u -r1.106.2.9 pccard.c
--- pccard.c	2001/08/01 20:07:03	1.106.2.9
+++ pccard.c	2001/08/06 14:54:15
@@ -293,7 +293,8 @@
 	/*
 	 *	Now start resetting the card.
 	 */
-	slt->ctrl->reset(slt);
+	if (pcic_resume_reset)
+		slt->ctrl->reset(slt);
 }
 
 /*


To Unsubscribe: send mail to majordomo@FreeBSD.org
with "unsubscribe freebsd-stable" in the body of the message




Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200108061501.f76F1p106658>