From mboxrd@z Thu Jan 1 00:00:00 1970 From: Aaron Lu Subject: Re: [RFC PATCH v2 5/8] libata-acpi: add ata port runtime D3Cold support Date: Wed, 21 Mar 2012 12:48:06 +0800 Message-ID: <20120321044806.GA6910@localhost.amd.com> References: <1330592577-16546-1-git-send-email-ming.m.lin@intel.com> <1330592577-16546-6-git-send-email-ming.m.lin@intel.com> <20120319033616.GA32695@localhost.amd.com> <1332134820.17875.17.camel@minggr> <20120319063544.GA2707@localhost.amd.com> <1332140620.17875.35.camel@minggr> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Return-path: Content-Disposition: inline In-Reply-To: <1332140620.17875.35.camel@minggr> Sender: linux-ide-owner@vger.kernel.org To: Lin Ming Cc: Zhang Rui , Jeff Garzik , Alan Stern , "Rafael J. Wysocki" , Tejun Heo , linux-kernel@vger.kernel.org, linux-ide@vger.kernel.org, linux-scsi@vger.kernel.org, linux-pm@vger.kernel.org, linux-acpi List-Id: linux-acpi@vger.kernel.org On Mon, Mar 19, 2012 at 03:03:40PM +0800, Lin Ming wrote: > > > > Sorry I didn't make it clear. > > The problem here is, we are going to set the device power state to D3 > > cold, and current OSPM has no support for it. > > > > Another patch of yours solved this problem by defining: > > 1 Device supports D3 cold if it has _PR3; > > 2 For a device to be put to D3 cold, power off all the power resources > > referenced in its _PR3. > > > > Since this can't work for AMD's platform(there is no _PR3 for the sata > > acpi device), I would like to change this a little bit: > > 1 Device supports D3 cold if it has _PR3 or _PS3; > > _PS3 may only mean D3Hot support for other device. > > You mentioned that AMD platform defined a special device, named ODDZ. > > How about device supports D3 cold if > > _PR3 or (is ODDZ and ODDZ._PS3)? Sounds good, I'll do this, thanks. > > > 2 For a device to be put to D3 cold, execute _PS3 first if available and > > then deal with _PR3 as above. > > __acpi_bus_set_power(...) has done this. > Actually not, current implementation of __acpi_bus_set_power will call _PS4 ;-) I'll need to think of a way to handle the D3 cold case. -Aaron