From owner-freebsd-stable Mon Aug 6 8: 2:24 2001 Delivered-To: freebsd-stable@freebsd.org Received: from rover.village.org (rover.bsdimp.com [204.144.255.66]) by hub.freebsd.org (Postfix) with ESMTP id 4817837B403; Mon, 6 Aug 2001 08:02:03 -0700 (PDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (harmony.village.org [10.0.0.6]) by rover.village.org (8.11.3/8.11.3) with ESMTP id f76F21F16721; Mon, 6 Aug 2001 09:02:02 -0600 (MDT) (envelope-from imp@harmony.village.org) Received: from harmony.village.org (localhost.village.org [127.0.0.1]) by harmony.village.org (8.11.3/8.11.4) with ESMTP id f76F1p106658; Mon, 6 Aug 2001 09:01:56 -0600 (MDT) (envelope-from imp@harmony.village.org) Message-Id: <200108061501.f76F1p106658@harmony.village.org> To: Hajimu UMEMOTO Subject: Re: 4.4-PRERELEASE never resume from suspend Cc: stable@FreeBSD.ORG, mobile@FreeBSD.ORG In-reply-to: Your message of "Sun, 05 Aug 2001 05:55:33 +0900." <20010805.055533.59723180.ume@mahoroba.org> References: <20010805.055533.59723180.ume@mahoroba.org> <20010805.024856.94992825.ume@mahoroba.org> <200108041929.f74JTlH75815@harmony.village.org> Date: Mon, 06 Aug 2001 09:01:51 -0600 From: Warner Losh Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG 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