From owner-freebsd-acpi@FreeBSD.ORG Thu Jun 8 13:36:31 2006 Return-Path: X-Original-To: freebsd-acpi@FreeBSD.org Delivered-To: freebsd-acpi@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 858E01701C3; Thu, 8 Jun 2006 11:22:04 +0000 (UTC) (envelope-from nork@FreeBSD.org) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BA0843D70; Thu, 8 Jun 2006 11:22:02 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.13.6/8.13.6/NinthNine) with ESMTP id k54B8YMv087631; Sun, 4 Jun 2006 20:08:35 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sun, 4 Jun 2006 20:08:34 +0900 From: Norikatsu Shigemura To: freebsd-mobile@FreeBSD.org, freebsd-stable@FreeBSD.org, freebsd-acpi@FreeBSD.org Message-Id: <20060604200834.8db4782c.nork@FreeBSD.org> X-Mailer: Sylpheed version 2.2.5 (GTK+ 2.8.18; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (sakura.ninth-nine.com [219.127.74.121]); Sun, 04 Jun 2006 20:08:35 +0900 (JST) Cc: Subject: FYI: Panasonic Toughbook CF-R4 can suspend/resume X-BeenThere: freebsd-acpi@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: ACPI and power management development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Jun 2006 13:36:31 -0000 I confirmed 3rd generation CF-R4 (Panasonic Toughbook/ Let's Note series, 2006 Spring Model) can suspend/resume:-) with following settings. Add to /boot/loader.conf - - - - - - - - - - - - - - - - hint.apic.0.disabled="1" hint.psm.0.flags="0x2000" - - - - - - - - - - - - - - - - And, mita-san (mita@FreeBSD.org) has CF-W4 (3rd generation). It can suspend/resume:-), too. But Ume-san (ume@) has CF-R4(1st generation), it cannot suspend/resume:-(. Takahashi-san(nyan@) has CF-R3, same too:-(. I read /usr/src/sys/i386/i386/io_apic.c, and I'm suprised following code: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - #define TODO printf("%s: not implemented!\n", __func__) static void ioapic_suspend(struct intsrc *isrc) { TODO; } static void ioapic_resume(struct intsrc *isrc) { ioapic_program_intpin((struct ioapic_intsrc *)isrc); } - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Hum....................