linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ata: Fix DVD not dectected at some platform with Wellsburg PCH
@ 2013-06-28 18:25 Youquan Song
  0 siblings, 0 replies; 5+ messages in thread
From: Youquan Song @ 2013-06-28 18:25 UTC (permalink / raw)
  To: jgarzik, linux-kernel, linux-ide
  Cc: seth.heasley, james.d.ralston, ed.ciechanowski, Youquan Song,
	Youquan Song

There is a patch b55f84e2d527182e7c611d466cd0bb6ddce201de "ata_piix: Fix DVD
 not dectected at some Haswell platforms" to fix an issue of DVD not 
recognized on Haswell Desktop platform with Lynx Point. 
Recently, it is also found the same issue at some platformas with Wellsburg PCH.

So deliver a similar patch to fix it by disables 32bit PIO in IDE mode.

Signed-off-by: Youquan Song <youquan.song@intel.com>
---
 drivers/ata/ata_piix.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c
index 9a8a674..424bcbe 100644
--- a/drivers/ata/ata_piix.c
+++ b/drivers/ata/ata_piix.c
@@ -330,7 +330,7 @@ static const struct pci_device_id piix_pci_tbl[] = {
 	/* SATA Controller IDE (Wellsburg) */
 	{ 0x8086, 0x8d00, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_snb },
 	/* SATA Controller IDE (Wellsburg) */
-	{ 0x8086, 0x8d08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
+	{ 0x8086, 0x8d08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata_snb },
 	/* SATA Controller IDE (Wellsburg) */
 	{ 0x8086, 0x8d60, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_snb },
 	/* SATA Controller IDE (Wellsburg) */
-- 
1.6.4.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] ata: Fix DVD not dectected at some platform with Wellsburg PCH
  2013-07-16 11:48 ` Tejun Heo
@ 2013-07-16 11:53   ` Tejun Heo
  0 siblings, 0 replies; 5+ messages in thread
From: Tejun Heo @ 2013-07-16 11:53 UTC (permalink / raw)
  To: Youquan Song
  Cc: jgarzik, linux-kernel, linux-ide, seth.heasley, james.d.ralston,
	ed.ciechanowski, Youquan Song, stable

On Tue, Jul 16, 2013 at 05:48:26AM -0600, Tejun Heo wrote:
> On Thu, Jul 11, 2013 at 09:15:57PM -0400, Youquan Song wrote:
> > There is a patch b55f84e2d527182e7c611d466cd0bb6ddce201de "ata_piix: Fix DVD
> >  not dectected at some Haswell platforms" to fix an issue of DVD not 
> > recognized on Haswell Desktop platform with Lynx Point. 
> > Recently, it is also found the same issue at some platformas with Wellsburg PCH.
> > 
> > So deliver a similar patch to fix it by disables 32bit PIO in IDE mode.
> > 
> > Signed-off-by: Youquan Song <youquan.song@intel.com>
> > Cc: stable@vger.kernel.org
> 
> Applied to libata/for-3.12.  Thanks!

Oops, make that libata/for-3.11-fixes.

-- 
tejun

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] ata: Fix DVD not dectected at some platform with Wellsburg PCH
  2013-07-12  1:15 Youquan Song
@ 2013-07-16 11:48 ` Tejun Heo
  2013-07-16 11:53   ` Tejun Heo
  0 siblings, 1 reply; 5+ messages in thread
From: Tejun Heo @ 2013-07-16 11:48 UTC (permalink / raw)
  To: Youquan Song
  Cc: jgarzik, linux-kernel, linux-ide, seth.heasley, james.d.ralston,
	ed.ciechanowski, Youquan Song, stable

On Thu, Jul 11, 2013 at 09:15:57PM -0400, Youquan Song wrote:
> There is a patch b55f84e2d527182e7c611d466cd0bb6ddce201de "ata_piix: Fix DVD
>  not dectected at some Haswell platforms" to fix an issue of DVD not 
> recognized on Haswell Desktop platform with Lynx Point. 
> Recently, it is also found the same issue at some platformas with Wellsburg PCH.
> 
> So deliver a similar patch to fix it by disables 32bit PIO in IDE mode.
> 
> Signed-off-by: Youquan Song <youquan.song@intel.com>
> Cc: stable@vger.kernel.org

Applied to libata/for-3.12.  Thanks!

-- 
tejun

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [PATCH] ata: Fix DVD not dectected at some platform with Wellsburg PCH
@ 2013-07-12  1:15 Youquan Song
  2013-07-16 11:48 ` Tejun Heo
  0 siblings, 1 reply; 5+ messages in thread
From: Youquan Song @ 2013-07-12  1:15 UTC (permalink / raw)
  To: tj, jgarzik, linux-kernel, linux-ide
  Cc: seth.heasley, james.d.ralston, ed.ciechanowski, Youquan Song,
	Youquan Song, stable

There is a patch b55f84e2d527182e7c611d466cd0bb6ddce201de "ata_piix: Fix DVD
 not dectected at some Haswell platforms" to fix an issue of DVD not 
recognized on Haswell Desktop platform with Lynx Point. 
Recently, it is also found the same issue at some platformas with Wellsburg PCH.

So deliver a similar patch to fix it by disables 32bit PIO in IDE mode.

Signed-off-by: Youquan Song <youquan.song@intel.com>
Cc: stable@vger.kernel.org
---
 drivers/ata/ata_piix.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c
index 9a8a674..424bcbe 100644
--- a/drivers/ata/ata_piix.c
+++ b/drivers/ata/ata_piix.c
@@ -330,7 +330,7 @@ static const struct pci_device_id piix_pci_tbl[] = {
 	/* SATA Controller IDE (Wellsburg) */
 	{ 0x8086, 0x8d00, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_snb },
 	/* SATA Controller IDE (Wellsburg) */
-	{ 0x8086, 0x8d08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
+	{ 0x8086, 0x8d08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata_snb },
 	/* SATA Controller IDE (Wellsburg) */
 	{ 0x8086, 0x8d60, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_snb },
 	/* SATA Controller IDE (Wellsburg) */
-- 
1.6.4.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH] ata: Fix DVD not dectected at some platform with Wellsburg PCH
@ 2013-07-03 14:17 Youquan Song
  0 siblings, 0 replies; 5+ messages in thread
From: Youquan Song @ 2013-07-03 14:17 UTC (permalink / raw)
  To: tj, jgarzik, linux-kernel, linux-ide
  Cc: seth.heasley, james.d.ralston, ed.ciechanowski, Youquan Song,
	Youquan Song

There is a patch b55f84e2d527182e7c611d466cd0bb6ddce201de "ata_piix: Fix DVD
 not dectected at some Haswell platforms" to fix an issue of DVD not 
recognized on Haswell Desktop platform with Lynx Point. 
Recently, it is also found the same issue at some platformas with Wellsburg PCH.

So deliver a similar patch to fix it by disables 32bit PIO in IDE mode.

Signed-off-by: Youquan Song <youquan.song@intel.com>
---
 drivers/ata/ata_piix.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/drivers/ata/ata_piix.c b/drivers/ata/ata_piix.c
index 9a8a674..424bcbe 100644
--- a/drivers/ata/ata_piix.c
+++ b/drivers/ata/ata_piix.c
@@ -330,7 +330,7 @@ static const struct pci_device_id piix_pci_tbl[] = {
 	/* SATA Controller IDE (Wellsburg) */
 	{ 0x8086, 0x8d00, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_snb },
 	/* SATA Controller IDE (Wellsburg) */
-	{ 0x8086, 0x8d08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata },
+	{ 0x8086, 0x8d08, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_2port_sata_snb },
 	/* SATA Controller IDE (Wellsburg) */
 	{ 0x8086, 0x8d60, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich8_sata_snb },
 	/* SATA Controller IDE (Wellsburg) */
-- 
1.6.4.2


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-07-16 11:53 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-06-28 18:25 [PATCH] ata: Fix DVD not dectected at some platform with Wellsburg PCH Youquan Song
2013-07-03 14:17 Youquan Song
2013-07-12  1:15 Youquan Song
2013-07-16 11:48 ` Tejun Heo
2013-07-16 11:53   ` Tejun Heo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).