From: Aaron Lu <aaron.lu@amd.com>
To: Lin Ming <ming.m.lin@intel.com>
Cc: Alan Stern <stern@rowland.harvard.edu>,
Zhang Rui <rui.zhang@intel.com>, Jeff Garzik <jgarzik@pobox.com>,
"Rafael J. Wysocki" <rjw@sisk.pl>, Tejun Heo <tj@kernel.org>,
Kernel development list <linux-kernel@vger.kernel.org>,
linux-ide@vger.kernel.org,
SCSI development list <linux-scsi@vger.kernel.org>,
Linux-pm mailing list <linux-pm@vger.kernel.org>,
linux-acpi <linux-acpi@vger.kernel.org>
Subject: Re: [RFC PATCH v2 8/8] [SCSI] sr: check and enable Zero-power ODD support
Date: Mon, 12 Mar 2012 12:53:53 +0800 [thread overview]
Message-ID: <20120312045353.GA2798@localhost.amd.com> (raw)
In-Reply-To: <1331520598.3436.10.camel@minggr>
On Mon, Mar 12, 2012 at 10:49:58AM +0800, Lin Ming wrote:
>
> Would you like the draft incremental patch below?
> I have not tested it yet.
Yes, this patch looks good to me, feel free to add my acked-by next time
you post it, thanks.
-Aaron
>
> ---
> drivers/ata/libata-core.c | 3 +++
> drivers/ata/libata-scsi.c | 2 ++
> drivers/scsi/sr.c | 16 +++++++---------
> drivers/scsi/sr.h | 1 -
> include/linux/ata.h | 1 +
> include/linux/libata.h | 2 ++
> include/scsi/scsi_device.h | 1 +
> 7 files changed, 16 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
> index 6742cc4..2a10701 100644
> --- a/drivers/ata/libata-core.c
> +++ b/drivers/ata/libata-core.c
> @@ -2368,6 +2368,9 @@ int ata_dev_configure(struct ata_device *dev)
> dma_dir_string = ", DMADIR";
> }
>
> + if (atapi_id_has_da(dev->id))
> + dev->flags |= ATA_DFLAG_DA;
> +
> /* print device info to dmesg */
> if (ata_msg_drv(ap) && print_info)
> ata_dev_info(dev,
> diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c
> index 231c3ec..0bfbe41 100644
> --- a/drivers/ata/libata-scsi.c
> +++ b/drivers/ata/libata-scsi.c
> @@ -3445,6 +3445,8 @@ void ata_scsi_scan_host(struct ata_port *ap, int sync)
> dev->sdev = sdev;
> scsi_device_put(sdev);
> ata_acpi_bind(dev);
> + if (dev->flags & ATA_DFLAG_DA)
> + sdev->power_off = 1;
> } else {
> dev->sdev = NULL;
> }
> diff --git a/drivers/scsi/sr.c b/drivers/scsi/sr.c
> index 7cd0489..0a75613 100644
> --- a/drivers/scsi/sr.c
> +++ b/drivers/scsi/sr.c
> @@ -87,7 +87,7 @@ static int sr_suspend(struct device *dev, pm_message_t mesg)
> struct scsi_cd *cd;
>
> cd = dev_get_drvdata(dev);
> - if (cd->zpodd)
> + if (cd->device->power_off)
> dev->power.subsys_data->can_power_off = true;
>
> return 0;
> @@ -98,7 +98,7 @@ static int sr_resume(struct device *dev)
> struct scsi_cd *cd;
>
> cd = dev_get_drvdata(dev);
> - if (cd->zpodd) {
> + if (cd->device->power_off) {
> dev->power.subsys_data->can_power_off = false;
> cd->zpodd_event = 0;
> }
> @@ -245,7 +245,8 @@ static unsigned int sr_check_events(struct cdrom_device_info *cdi,
> int ret;
>
> /* Not necessary to check events if enter ZPODD state */
> - if (cd->zpodd && pm_runtime_suspended(&cd->device->sdev_gendev))
> + if (cd->device->power_off &&
> + pm_runtime_suspended(&cd->device->sdev_gendev))
> return 0;
>
> /* no changer support */
> @@ -292,7 +293,7 @@ static unsigned int sr_check_events(struct cdrom_device_info *cdi,
> cd->media_present = scsi_status_is_good(ret) ||
> (scsi_sense_valid(&sshdr) && sshdr.asc != 0x3a);
>
> - if (!cd->media_present && cd->zpodd && !cd->zpodd_event) {
> + if (!cd->media_present && cd->device->power_off && !cd->zpodd_event) {
> scsi_autopm_put_device(cd->device);
> cd->zpodd_event = 1;
> }
> @@ -753,11 +754,8 @@ static int sr_probe(struct device *dev)
> disk->flags |= GENHD_FL_REMOVABLE;
> add_disk(disk);
>
> - /* TODO: add device attention bit check for ZPODD */
> - if (device_run_wake(dev)) {
> - cd->zpodd = 1;
> + if (sdev->power_off)
> dev_pm_get_subsys_data(dev);
> - }
>
> sdev_printk(KERN_DEBUG, sdev,
> "Attached scsi CD-ROM %s\n", cd->cdi.name);
> @@ -1015,7 +1013,7 @@ static int sr_remove(struct device *dev)
> kref_put(&cd->kref, sr_kref_release);
> mutex_unlock(&sr_ref_mutex);
>
> - if (cd->zpodd)
> + if (cd->device->power_off)
> dev_pm_put_subsys_data(dev);
>
> return 0;
> diff --git a/drivers/scsi/sr.h b/drivers/scsi/sr.h
> index 39b3d8c..e81da64 100644
> --- a/drivers/scsi/sr.h
> +++ b/drivers/scsi/sr.h
> @@ -42,7 +42,6 @@ typedef struct scsi_cd {
> unsigned readcd_cdda:1; /* reading audio data using READ_CD */
> unsigned media_present:1; /* media is present */
>
> - unsigned zpodd:1; /* is ZPODD supported */
> unsigned zpodd_event:1;
>
> /* GET_EVENT spurious event handling, blk layer guarantees exclusion */
> diff --git a/include/linux/ata.h b/include/linux/ata.h
> index 32df2b6..6ee41cc 100644
> --- a/include/linux/ata.h
> +++ b/include/linux/ata.h
> @@ -578,6 +578,7 @@ static inline int ata_is_data(u8 prot)
> ((u64) (id)[(n) + 0]) )
>
> #define ata_id_cdb_intr(id) (((id)[ATA_ID_CONFIG] & 0x60) == 0x20)
> +#define atapi_id_has_da(id) ((id)[77] & (1 << 4))
>
> static inline bool ata_id_has_hipm(const u16 *id)
> {
> diff --git a/include/linux/libata.h b/include/linux/libata.h
> index 36970c6..3085bdc 100644
> --- a/include/linux/libata.h
> +++ b/include/linux/libata.h
> @@ -161,6 +161,8 @@ enum {
> ATA_DFLAG_DETACH = (1 << 24),
> ATA_DFLAG_DETACHED = (1 << 25),
>
> + ATA_DFLAG_DA = (1 << 26), /* device supports Device Attention */
> +
> ATA_DEV_UNKNOWN = 0, /* unknown device */
> ATA_DEV_ATA = 1, /* ATA device */
> ATA_DEV_ATA_UNSUP = 2, /* ATA device (unsupported) */
> diff --git a/include/scsi/scsi_device.h b/include/scsi/scsi_device.h
> index 8b6c247..4805d5a 100644
> --- a/include/scsi/scsi_device.h
> +++ b/include/scsi/scsi_device.h
> @@ -151,6 +151,7 @@ struct scsi_device {
> unsigned no_read_disc_info:1; /* Avoid READ_DISC_INFO cmds */
> unsigned no_read_capacity_16:1; /* Avoid READ_CAPACITY_16 cmds */
> unsigned is_visible:1; /* is the device visible in sysfs */
> + unsigned power_off:1; /* Device supports runtime power off */
>
> DECLARE_BITMAP(supported_events, SDEV_EVT_MAXBITS); /* supported events */
> struct list_head event_list; /* asserted events */
>
>
>
>
WARNING: multiple messages have this Message-ID (diff)
From: Aaron Lu <aaron.lu@amd.com>
To: Lin Ming <ming.m.lin@intel.com>
Cc: Alan Stern <stern@rowland.harvard.edu>,
Zhang Rui <rui.zhang@intel.com>, Jeff Garzik <jgarzik@pobox.com>,
"Rafael J. Wysocki" <rjw@sisk.pl>, Tejun Heo <tj@kernel.org>,
Kernel development list <linux-kernel@vger.kernel.org>,
<linux-ide@vger.kernel.org>,
SCSI development list <linux-scsi@vger.kernel.org>,
Linux-pm mailing list <linux-pm@vger.kernel.org>,
linux-acpi <linux-acpi@vger.kernel.org>
Subject: Re: [RFC PATCH v2 8/8] [SCSI] sr: check and enable Zero-power ODD support
Date: Mon, 12 Mar 2012 12:53:53 +0800 [thread overview]
Message-ID: <20120312045353.GA2798@localhost.amd.com> (raw)
In-Reply-To: <1331520598.3436.10.camel@minggr>
On Mon, Mar 12, 2012 at 10:49:58AM +0800, Lin Ming wrote:
>
> Would you like the draft incremental patch below?
> I have not tested it yet.
Yes, this patch looks good to me, feel free to add my acked-by next time
you post it, thanks.
-Aaron
>
> ---
> drivers/ata/libata-core.c | 3 +++
> drivers/ata/libata-scsi.c | 2 ++
> drivers/scsi/sr.c | 16 +++++++---------
> drivers/scsi/sr.h | 1 -
> include/linux/ata.h | 1 +
> include/linux/libata.h | 2 ++
> include/scsi/scsi_device.h | 1 +
> 7 files changed, 16 insertions(+), 10 deletions(-)
>
> diff --git a/drivers/ata/libata-core.c b/drivers/ata/libata-core.c
> index 6742cc4..2a10701 100644
> --- a/drivers/ata/libata-core.c
> +++ b/drivers/ata/libata-core.c
> @@ -2368,6 +2368,9 @@ int ata_dev_configure(struct ata_device *dev)
> dma_dir_string = ", DMADIR";
> }
>
> + if (atapi_id_has_da(dev->id))
> + dev->flags |= ATA_DFLAG_DA;
> +
> /* print device info to dmesg */
> if (ata_msg_drv(ap) && print_info)
> ata_dev_info(dev,
> diff --git a/drivers/ata/libata-scsi.c b/drivers/ata/libata-scsi.c
> index 231c3ec..0bfbe41 100644
> --- a/drivers/ata/libata-scsi.c
> +++ b/drivers/ata/libata-scsi.c
> @@ -3445,6 +3445,8 @@ void ata_scsi_scan_host(struct ata_port *ap, int sync)
> dev->sdev = sdev;
> scsi_device_put(sdev);
> ata_acpi_bind(dev);
> + if (dev->flags & ATA_DFLAG_DA)
> + sdev->power_off = 1;
> } else {
> dev->sdev = NULL;
> }
> diff --git a/drivers/scsi/sr.c b/drivers/scsi/sr.c
> index 7cd0489..0a75613 100644
> --- a/drivers/scsi/sr.c
> +++ b/drivers/scsi/sr.c
> @@ -87,7 +87,7 @@ static int sr_suspend(struct device *dev, pm_message_t mesg)
> struct scsi_cd *cd;
>
> cd = dev_get_drvdata(dev);
> - if (cd->zpodd)
> + if (cd->device->power_off)
> dev->power.subsys_data->can_power_off = true;
>
> return 0;
> @@ -98,7 +98,7 @@ static int sr_resume(struct device *dev)
> struct scsi_cd *cd;
>
> cd = dev_get_drvdata(dev);
> - if (cd->zpodd) {
> + if (cd->device->power_off) {
> dev->power.subsys_data->can_power_off = false;
> cd->zpodd_event = 0;
> }
> @@ -245,7 +245,8 @@ static unsigned int sr_check_events(struct cdrom_device_info *cdi,
> int ret;
>
> /* Not necessary to check events if enter ZPODD state */
> - if (cd->zpodd && pm_runtime_suspended(&cd->device->sdev_gendev))
> + if (cd->device->power_off &&
> + pm_runtime_suspended(&cd->device->sdev_gendev))
> return 0;
>
> /* no changer support */
> @@ -292,7 +293,7 @@ static unsigned int sr_check_events(struct cdrom_device_info *cdi,
> cd->media_present = scsi_status_is_good(ret) ||
> (scsi_sense_valid(&sshdr) && sshdr.asc != 0x3a);
>
> - if (!cd->media_present && cd->zpodd && !cd->zpodd_event) {
> + if (!cd->media_present && cd->device->power_off && !cd->zpodd_event) {
> scsi_autopm_put_device(cd->device);
> cd->zpodd_event = 1;
> }
> @@ -753,11 +754,8 @@ static int sr_probe(struct device *dev)
> disk->flags |= GENHD_FL_REMOVABLE;
> add_disk(disk);
>
> - /* TODO: add device attention bit check for ZPODD */
> - if (device_run_wake(dev)) {
> - cd->zpodd = 1;
> + if (sdev->power_off)
> dev_pm_get_subsys_data(dev);
> - }
>
> sdev_printk(KERN_DEBUG, sdev,
> "Attached scsi CD-ROM %s\n", cd->cdi.name);
> @@ -1015,7 +1013,7 @@ static int sr_remove(struct device *dev)
> kref_put(&cd->kref, sr_kref_release);
> mutex_unlock(&sr_ref_mutex);
>
> - if (cd->zpodd)
> + if (cd->device->power_off)
> dev_pm_put_subsys_data(dev);
>
> return 0;
> diff --git a/drivers/scsi/sr.h b/drivers/scsi/sr.h
> index 39b3d8c..e81da64 100644
> --- a/drivers/scsi/sr.h
> +++ b/drivers/scsi/sr.h
> @@ -42,7 +42,6 @@ typedef struct scsi_cd {
> unsigned readcd_cdda:1; /* reading audio data using READ_CD */
> unsigned media_present:1; /* media is present */
>
> - unsigned zpodd:1; /* is ZPODD supported */
> unsigned zpodd_event:1;
>
> /* GET_EVENT spurious event handling, blk layer guarantees exclusion */
> diff --git a/include/linux/ata.h b/include/linux/ata.h
> index 32df2b6..6ee41cc 100644
> --- a/include/linux/ata.h
> +++ b/include/linux/ata.h
> @@ -578,6 +578,7 @@ static inline int ata_is_data(u8 prot)
> ((u64) (id)[(n) + 0]) )
>
> #define ata_id_cdb_intr(id) (((id)[ATA_ID_CONFIG] & 0x60) == 0x20)
> +#define atapi_id_has_da(id) ((id)[77] & (1 << 4))
>
> static inline bool ata_id_has_hipm(const u16 *id)
> {
> diff --git a/include/linux/libata.h b/include/linux/libata.h
> index 36970c6..3085bdc 100644
> --- a/include/linux/libata.h
> +++ b/include/linux/libata.h
> @@ -161,6 +161,8 @@ enum {
> ATA_DFLAG_DETACH = (1 << 24),
> ATA_DFLAG_DETACHED = (1 << 25),
>
> + ATA_DFLAG_DA = (1 << 26), /* device supports Device Attention */
> +
> ATA_DEV_UNKNOWN = 0, /* unknown device */
> ATA_DEV_ATA = 1, /* ATA device */
> ATA_DEV_ATA_UNSUP = 2, /* ATA device (unsupported) */
> diff --git a/include/scsi/scsi_device.h b/include/scsi/scsi_device.h
> index 8b6c247..4805d5a 100644
> --- a/include/scsi/scsi_device.h
> +++ b/include/scsi/scsi_device.h
> @@ -151,6 +151,7 @@ struct scsi_device {
> unsigned no_read_disc_info:1; /* Avoid READ_DISC_INFO cmds */
> unsigned no_read_capacity_16:1; /* Avoid READ_CAPACITY_16 cmds */
> unsigned is_visible:1; /* is the device visible in sysfs */
> + unsigned power_off:1; /* Device supports runtime power off */
>
> DECLARE_BITMAP(supported_events, SDEV_EVT_MAXBITS); /* supported events */
> struct list_head event_list; /* asserted events */
>
>
>
>
next prev parent reply other threads:[~2012-03-12 4:53 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-03-01 9:02 [RFC PATCH v2 0/8] ACPI D3Cold state and SATA ZPODD support Lin Ming
2012-03-01 9:02 ` [RFC PATCH v2 1/8] ACPI: Introduce ACPI D3_COLD state support Lin Ming
2012-03-12 2:00 ` Aaron Lu
2012-03-12 2:00 ` Aaron Lu
2012-03-12 2:43 ` Lin Ming
2012-03-01 9:02 ` [RFC PATCH v2 2/8] ACPI: Add interface to register/unregister device to/from power resources Lin Ming
2012-03-19 1:32 ` Lin Ming
2012-03-01 9:02 ` [RFC PATCH v2 3/8] PCI: Move acpi_dev_run_wake to acpi core Lin Ming
2012-03-01 9:02 ` [RFC PATCH v2 4/8] libata-acpi: set acpi state for SATA port Lin Ming
2012-03-12 2:02 ` Aaron Lu
2012-03-12 2:02 ` Aaron Lu
2012-03-01 9:02 ` [RFC PATCH v2 5/8] libata-acpi: add ata port runtime D3Cold support Lin Ming
2012-03-19 3:36 ` Aaron Lu
2012-03-19 3:36 ` Aaron Lu
2012-03-19 5:27 ` Lin Ming
2012-03-19 6:35 ` Aaron Lu
2012-03-19 6:35 ` Aaron Lu
2012-03-19 7:03 ` Lin Ming
2012-03-21 4:48 ` Aaron Lu
2012-03-21 4:48 ` Aaron Lu
2012-03-01 9:02 ` [RFC PATCH v2 6/8] libata-acpi: register/unregister device to/from power resource Lin Ming
2012-03-01 9:02 ` [RFC PATCH v2 7/8] PM / Runtime: Add can_power_off flag to subsys data Lin Ming
2012-03-19 1:34 ` Lin Ming
2012-03-01 9:02 ` [RFC PATCH v2 8/8] [SCSI] sr: check and enable Zero-power ODD support Lin Ming
2012-03-01 16:02 ` Alan Stern
2012-03-01 16:02 ` Alan Stern
2012-03-02 7:02 ` Lin Ming
2012-03-02 15:08 ` Aaron Lu
2012-03-03 3:05 ` Lin Ming
2012-03-12 2:49 ` Lin Ming
2012-03-12 4:53 ` Aaron Lu [this message]
2012-03-12 4:53 ` Aaron Lu
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20120312045353.GA2798@localhost.amd.com \
--to=aaron.lu@amd.com \
--cc=jgarzik@pobox.com \
--cc=linux-acpi@vger.kernel.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=linux-scsi@vger.kernel.org \
--cc=ming.m.lin@intel.com \
--cc=rjw@sisk.pl \
--cc=rui.zhang@intel.com \
--cc=stern@rowland.harvard.edu \
--cc=tj@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.