Forums

Skip to content

Advanced search
  • Quick links
    • Unanswered topics
    • Active topics
    • Search
  • FAQ
  • Login
  • Register
  • Board index Assistance Kernel & Hardware
  • Search

SATA DVD-RW Drive

Kernel not recognizing your hardware? Problems with power management or PCMCIA? What hardware is compatible with Gentoo? See here. (Only for kernels supported by Gentoo.)
Post Reply
Advanced search
24 posts • Page 1 of 1
Author
Message
rwescoat
n00b
n00b
User avatar
Posts: 41
Joined: Sun Sep 26, 2004 11:06 pm
Location: /dev/null

SATA DVD-RW Drive

  • Quote

Post by rwescoat » Sat Aug 13, 2005 3:53 pm

I've got a SATA DVD-RW drive from Plextor (PX-712SA) that my kernel doesn't seem to like.
According to dmesg, it's not even being seen. Windows saw it just fine when I had it installed
though, so it's not a cable error. It's on a VIA VT6420 with a VIA VT8237 southbridge.

Any ideas?

Code: Select all

libata version 1.11 loaded.
sata_via version 1.1
ACPI: PCI Interrupt Link [ALKA] BIOS reported IRQ 11, using IRQ 20
ACPI: PCI Interrupt Link [ALKA] enabled at IRQ 20
ACPI: PCI Interrupt 0000:00:0f.0[B] -> Link [ALKA] -> GSI 20 (level, low) -> IRQ 169
PCI: Via IRQ fixup for 0000:00:0f.0, from 11 to 9
sata_via(0000:00:0f.0): routed to hard irq line 9
ata1: SATA max UDMA/133 cmd 0xB800 ctl 0xBC02 bmdma 0xC800 irq 169
ata2: SATA max UDMA/133 cmd 0xC000 ctl 0xC402 bmdma 0xC808 irq 169
ata1: dev 0 cfg 49:2f00 82:7c6b 83:7b09 84:4003 85:7c69 86:3a01 87:4003 88:407f
ata1: dev 0 ATA-7, max UDMA/133, 120103200 sectors: LBA
ata1: dev 0 configured for UDMA/133
scsi0 : sata_via
ata2: dev 0 cfg 49:0f00 82:0000 83:0000 84:0000 85:0000 86:0000 87:0000 88:0407
ata2: dev 0 ATAPI, max UDMA/33
ata2: dev 0 configured for UDMA/33
scsi1 : sata_via
  Vendor: ATA       Model: Maxtor 6Y060M0    Rev: YAR5
  Type:   Direct-Access                      ANSI SCSI revision: 05
SCSI device sda: 120103200 512-byte hdwr sectors (61493 MB)
SCSI device sda: drive cache: write back
SCSI device sda: 120103200 512-byte hdwr sectors (61493 MB)
SCSI device sda: drive cache: write back
 sda: sda1 sda2
Attached scsi disk sda at scsi0, channel 0, id 0, lun 0
Attached scsi generic sg0 at scsi0, channel 0, id 0, lun 0,  type 0

Code: Select all

  Vendor: Mitsumi   Model: VT6205-DevB       Rev: 2.67
  Type:   Direct-Access                      ANSI SCSI revision: 02
Attached scsi removable disk sdb at scsi2, channel 0, id 0, lun 0
Attached scsi generic sg1 at scsi2, channel 0, id 0, lun 0,  type 0
I've only added this just in case it helps. This is my 7-in-1 card reader.
Top
s0be
Apprentice
Apprentice
User avatar
Posts: 240
Joined: Sat Nov 23, 2002 1:12 pm

  • Quote

Post by s0be » Sat Aug 13, 2005 4:10 pm

atapi support isn't in libata to any great extent yet. I believe there's something like #DEFINE LIBATA_ATAPI False in a header somewhere you can change to enable it, but it'll just break stuff.

Rather than cruft together 98 different solutions and call it libata, I believe they're taking their time and making sure to do (most) things right at the sacrifice of some functionality along the way.
Top
tweakt
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 92
Joined: Tue Sep 16, 2003 4:06 pm
Location: Boston, MA. USA

  • Quote

Post by tweakt » Mon Aug 15, 2005 8:55 pm

atapi support isn't in libata to any great extent yet. I believe there's something like #DEFINE LIBATA_ATAPI False in a header somewhere you can change to enable it, but it'll just break stuff.
Wrong!

I built an all-SATA system recently, and found it quite odd that Ubuntu liveCD would detect my drive, and even Gentoo 2005.1 would not. Well after digging, I also came up with the same fix. The code exists, is working, but is currently disabled by default (not a config option, a hardcoded compile time option as above).

I've tested it and had no problems. I was able to burn CDs with cdrecord. I'm sure there may be some rough edges, but certainly does not affect system stability. I'm sure there are valid reasons to leave support disabled by default until it's finalized, but if you need support now, it's very easy and safe to enable. I'll post a followup tomorrow with a patch you can apply to 2.6.12-gentoo-r7 (latest gentoo-sources).

Personally, I strongly felt this should've made it in as a patch to gentoo-sources and been on 2005.1, since it does not affect non ATAPI devices, only enables support for people trying to use the newer drives. (I have a PX-716SA).
Top
rwescoat
n00b
n00b
User avatar
Posts: 41
Joined: Sun Sep 26, 2004 11:06 pm
Location: /dev/null

  • Quote

Post by rwescoat » Mon Aug 15, 2005 9:18 pm

Thank you both! It would be most appreciated if you could post that patch.
Top
widan
Veteran
Veteran
User avatar
Posts: 1512
Joined: Tue Jun 07, 2005 4:26 pm
Location: Paris, France

  • Quote

Post by widan » Mon Aug 15, 2005 9:22 pm

rwescoat wrote:Thank you both! It would be most appreciated if you could post that patch.
In /usr/src/linux/include/linux/libata.h, change:

Code: Select all

#undef ATA_ENABLE_ATAPI           /* define to enable ATAPI support */
Into:

Code: Select all

#define ATA_ENABLE_ATAPI          /* define to enable ATAPI support */
Top
dsd
Developer
Developer
Posts: 2162
Joined: Sun Mar 30, 2003 10:54 am
Location: nr London

  • Quote

Post by dsd » Mon Aug 15, 2005 10:21 pm

there is a reason it isnt on by default, the code literally isnt complete, and some users will experience problems with it. i asked Jeff Garzik (the libata developer/maintainer) for advice about whether i should turn it on by default in gentoo and he said *dont* do it - the distro's that have done this are suffering greatly (boot problems, corruption problems, freezing, etc)...

while it might work for some users/drives/controllers it will bring problems for others. dont be too suprised if it doesnt work flawlessly
http://dev.gentoo.org/~dsd
Top
tweakt
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 92
Joined: Tue Sep 16, 2003 4:06 pm
Location: Boston, MA. USA

  • Quote

Post by tweakt » Tue Aug 16, 2005 2:54 am

Ok, thanks for following up on this. Like I said, I'm sure there was justification... but it ate about 4 solid hours of troubleshooting and debugging before I could find the solution. Maybe this can make it's way into a FAQ or handbook somewhere. These drives will become more common going forward, but right now there are only a handful of models.

Also glad to know it's on the radar for gentoo-sources. Not sure how bad it could be though if other distros have this in their default install and livecds. I'm curious what the adverse affects are. Possibly affecting non SATA atapi devices, or SATA hard drives when no SATA-ATAPI devices are present? Otherwise... without it... SATA optical drives do not function at all. So I'd prefer to have a flaky DVD-RW, than none at all.
Top
beltazore
Apprentice
Apprentice
User avatar
Posts: 174
Joined: Thu Oct 30, 2003 11:09 am
Location: Norway
Contact:
Contact beltazore
Website

  • Quote

Post by beltazore » Sun Oct 09, 2005 3:29 pm

Did this work? I have the exact same problem ;)
Top
tweakt
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 92
Joined: Tue Sep 16, 2003 4:06 pm
Location: Boston, MA. USA

  • Quote

Post by tweakt » Sun Oct 09, 2005 5:40 pm

Yes!
I have a Plextor PX-716SA and it's been working flawlessly now for 2 months. I've burned countless CDs and DVDs with it.
Currently running 2.6.13-gentoo-r2 with no problems, I use this patch to make things quick and easy when updating:

Code: Select all

diff -urN linux-2.6.12/include/linux/libata.h linux-2.6.12-libata/include/linux/libata.h
--- linux-2.6.12/include/linux/libata.h	2005-08-09 23:30:31.000000000 -0400
+++ linux-2.6.12-libata/include/linux/libata.h	2005-08-09 23:31:17.000000000 -0400
@@ -37,7 +37,7 @@
 #undef ATA_VERBOSE_DEBUG	/* yet more debugging output */
 #undef ATA_IRQ_TRAP		/* define to ack screaming irqs */
 #undef ATA_NDEBUG		/* define to disable quick runtime checks */
-#undef ATA_ENABLE_ATAPI		/* define to enable ATAPI support */
+#define ATA_ENABLE_ATAPI	/* define to enable ATAPI support */
 #undef ATA_ENABLE_PATA		/* define to enable PATA support in some
 				 * low-level drivers */
 #undef ATAPI_ENABLE_DMADIR	/* enables ATAPI DMADIR bridge support */
Top
beltazore
Apprentice
Apprentice
User avatar
Posts: 174
Joined: Thu Oct 30, 2003 11:09 am
Location: Norway
Contact:
Contact beltazore
Website

  • Quote

Post by beltazore » Sun Oct 09, 2005 6:21 pm

It was working flawless for me too, but I reinstalled gentoo after a disc crash, and after the reinstall it would not work at all. I have altso tried this patch.
Is there any thing else that can cause this problems?
But I will try again, with 2.6.13-r2.
Top
TheLegend81
n00b
n00b
Posts: 46
Joined: Fri Aug 26, 2005 11:42 am
Location: Charleston, S.C.

  • Quote

Post by TheLegend81 » Wed Oct 19, 2005 7:00 pm

tweakt wrote:Yes!
I have a Plextor PX-716SA and it's been working flawlessly now for 2 months. I've burned countless CDs and DVDs with it.
Currently running 2.6.13-gentoo-r2 with no problems, I use this patch to make things quick and easy when updating:

Code: Select all

diff -urN linux-2.6.12/include/linux/libata.h linux-2.6.12-libata/include/linux/libata.h
--- linux-2.6.12/include/linux/libata.h	2005-08-09 23:30:31.000000000 -0400
+++ linux-2.6.12-libata/include/linux/libata.h	2005-08-09 23:31:17.000000000 -0400
@@ -37,7 +37,7 @@
 #undef ATA_VERBOSE_DEBUG	/* yet more debugging output */
 #undef ATA_IRQ_TRAP		/* define to ack screaming irqs */
 #undef ATA_NDEBUG		/* define to disable quick runtime checks */
-#undef ATA_ENABLE_ATAPI		/* define to enable ATAPI support */
+#define ATA_ENABLE_ATAPI	/* define to enable ATAPI support */
 #undef ATA_ENABLE_PATA		/* define to enable PATA support in some
 				 * low-level drivers */
 #undef ATAPI_ENABLE_DMADIR	/* enables ATAPI DMADIR bridge support */
which patch? or is you're code actually a patch... I'm such a newb.
ASUS A8N-SLI Deluxe - AMD64 3500+
2x CorsairXMS3200XL-512MB (1024 total)
2x Seagate 80GB SATA barracuda HDs (not in raid)
1x PX-716SA (SATA DVD+/-RW)
Top
Mr_Pony
n00b
n00b
Posts: 17
Joined: Mon Oct 03, 2005 6:51 am

  • Quote

Post by Mr_Pony » Wed Oct 19, 2005 9:08 pm

Here's a guide I've found handy for my SATA issues: http://www.thinkwiki.org/wiki/Problems_ ... _and_Linux . Hope it helps!
Top
tuppe666
Guru
Guru
User avatar
Posts: 423
Joined: Tue Mar 02, 2004 10:19 pm

  • Quote

Post by tuppe666 » Fri Oct 28, 2005 3:34 pm

ATA_ENABLE_ATAPI does not exist in version 2.6.14 ???
Top
dsd
Developer
Developer
Posts: 2162
Joined: Sun Mar 30, 2003 10:54 am
Location: nr London

  • Quote

Post by dsd » Fri Oct 28, 2005 4:22 pm

it is now a module parameter
http://dev.gentoo.org/~dsd
Top
tuppe666
Guru
Guru
User avatar
Posts: 423
Joined: Tue Mar 02, 2004 10:19 pm

  • Quote

Post by tuppe666 » Tue Nov 01, 2005 8:30 pm

I'm tring to pass it as a kernel parameter, but get nothing. Am I doing something stupid

grub:

Code: Select all

title=Latest
        root (hd0,0)
        kernel /vmlinuz libata.atapi_enabled=1 ide1=noprobe root=/dev/md2 video=intelfb:1200x800-16@75,accel=1,vram=16 vmalloc=256m
[/quote]
Top
mrfree
Veteran
Veteran
User avatar
Posts: 1303
Joined: Sat Mar 15, 2003 6:31 pm
Location: Europe.Italy.Sulmona

  • Quote

Post by mrfree » Wed Nov 16, 2005 10:31 am

Code: Select all

# dmesg | grep libata
Unknown boot option 'libata.atapi_enabled=1': ignoring
Edit: I've read that this option is available since 2.6.14 I'll try it...
Please EU, pimp my country!

ICE: /etc/init.d/iptables panic
Top
sibov
Tux's lil' helper
Tux's lil' helper
User avatar
Posts: 147
Joined: Mon Feb 09, 2004 2:33 pm
Location: Germany
Contact:
Contact sibov
Website

  • Quote

Post by sibov » Thu Nov 24, 2005 1:10 pm

mrfree wrote:

Code: Select all

# dmesg | grep libata
Unknown boot option 'libata.atapi_enabled=1': ignoring
Edit: I've read that this option is available since 2.6.14 I'll try it...
Does it work for you mrfree?

:?:
Gentoo 2.6.17-gentoo-r5 with dmraid Raid0 Dualboot
AMD64 X2 3800+, 4x512MB DDR PC3200Pro Corsair Geforce EN6600GT silencer @ 256MB
4x250GB SATAII Samsung SP120, Asus A8N Premium, Plextor PX712SA DVDRW
Logitech Dinovo, SB Audigy4
Top
augury
l33t
l33t
User avatar
Posts: 722
Joined: Sat May 22, 2004 8:25 pm
Location: philadelphia

  • Quote

Post by augury » Thu Nov 24, 2005 3:52 pm

It was in mm-sources for a while but nfs is weird in 2.6.14. Should give smart access to sata drives.
Top
mrfree
Veteran
Veteran
User avatar
Posts: 1303
Joined: Sat Mar 15, 2003 6:31 pm
Location: Europe.Italy.Sulmona

  • Quote

Post by mrfree » Fri Nov 25, 2005 8:16 am

sibov wrote: Does it work for you mrfree?
Yeah! :)
(but I haven't burned any cd/dvd yet)
Please EU, pimp my country!

ICE: /etc/init.d/iptables panic
Top
hex63
n00b
n00b
User avatar
Posts: 6
Joined: Thu Oct 14, 2004 11:47 am
Location: Sweden

  • Quote

Post by hex63 » Mon Dec 26, 2005 12:48 am

tuppe666 wrote:I'm tring to pass it as a kernel parameter, but get nothing. Am I doing something stupid

grub:

Code: Select all

title=Latest
        root (hd0,0)
        kernel /vmlinuz libata.atapi_enabled=1 ide1=noprobe root=/dev/md2 video=intelfb:1200x800-16@75,accel=1,vram=16 vmalloc=256m
[/quote]

I tried this and it worked fine for me.
Gentoo-source 2.6.14-r5

Code: Select all

# dmesg | grep libata
Bootdata ok (command line is libata.atapi_enabled=1 root=/dev/sdb3 vga=0x31B video=vesafb:mtrr,ywrap)
Kernel command line: libata.atapi_enabled=1 root=/dev/sdb3 vga=0x31B video=vesafb:mtrr,ywrap
libata version 1.12 loaded.
Burning a DVD right now :)
Thanks for the info tuppe666!
Asus A8N-SLI / AMD64 4000+ / GeForce 6800 Ultra
SB Audigy 2 / Plextor PX-712SA / 2GB RAM / 300GB HD
"Everybody needs a softfilter" - Rush
Top
yokem55
Guru
Guru
Posts: 360
Joined: Thu Apr 18, 2002 7:52 pm
Location: Oregon
Contact:
Contact yokem55
Website

  • Quote

Post by yokem55 » Wed Dec 28, 2005 8:21 am

Has anyone successfully played cd's with this drive? I'm running the latest 2.6.15 rc and all I get when cdparanoia or kio_audiocd tries to read the disk is this:

Code: Select all

sg_write: data in/out 12/12 bytes for SCSI command 0x43--guessing data in;
   program kio_audiocd not setting count and/or reply_len properly
Top
remy
n00b
n00b
Posts: 1
Joined: Thu Sep 09, 2004 9:22 am
Location: Rotterdam
Contact:
Contact remy
Website

  • Quote

Post by remy » Sun Jan 08, 2006 2:42 pm

I've got a SATA DVD-RW from Plextor (PX-716SA), but I've got still no luck. My motherboard is a Asus K8V SE with a VIA K8T800 (north) and VIA VT8237 (south). I use the 2.6.15-gentoo kernel with the following boot parameters:
kernel /vmlinuz-2.6.15-gentoo init=linuxrc ramdisc=8192 real_root=/dev/hdb1 video=vesafb:ywrap,mtrr vga=0x31B splash=silent,fadein,theme:livecd-2005.1 quiet CONSOLE=/dev/tty1 udev libata.atapi_enabled=1
"dmesg | grep ata" gives the following output
libata version 1.20 loaded.
sata_via 0000:00:0f.0: version 1.1
sata_via 0000:00:0f.0: routed to hard irq line 9
ata1: SATA max UDMA/133 cmd 0xE400 ctl 0xE002 bmdma 0xD000 irq 169
ata2: SATA max UDMA/133 cmd 0xD800 ctl 0xD402 bmdma 0xD008 irq 169
ata1: dev 0 cfg 49:0f00 82:0000 83:0000 84:0000 85:0000 86:0000 87:0000 88:001f
ata1: dev 0 ATAPI, max UDMA/66
ata1(0): applying bridge limits
ata1: dev 0 configured for UDMA/66
scsi0 : sata_via
ata2: no device found (phy stat 00000000)
scsi1 : sata_via
ata1: command 0xa0 timeout, stat 0xd0 host_stat 0x1
ata1: translated ATA stat/err 0xd0/00 to SCSI SK/ASC/ASCQ 0xb/47/00
Who has got an idea?
Top
xbb
Tux's lil' helper
Tux's lil' helper
Posts: 85
Joined: Sat Nov 26, 2005 3:46 pm

  • Quote

Post by xbb » Mon Jan 09, 2006 8:23 pm

I have a PX-716SA as well and can't get it working well...
The sata harddrive is working well... I tried different kernels (2.6.14, 2.6.15) and patchsets including libata patches, here is some dmesg output (libata.atapi_enabled=1):
There is an empty CD-R inserted in the drive, without any media inserted dmesg would loop "ata6: command error, drv_stat 0x51 host_stat 0x5"

Code: Select all

Uniform CD-ROM driver Revision: 3.20
libata version 1.12 loaded.
ata_piix version 1.04
ACPI: PCI Interrupt 0000:00:1f.2[B] -> GSI 19 (level, low) -> IRQ 20
PCI: Setting latency timer of device 0000:00:1f.2 to 64
ata1: SATA max UDMA/133 cmd 0x9C00 ctl 0x9882 bmdma 0x9400 irq 20
ata2: SATA max UDMA/133 cmd 0x9800 ctl 0x9482 bmdma 0x9408 irq 20
ata1: dev 0 cfg 49:2f00 82:74eb 83:7f63 84:4003 85:74e9 86:3c43 87:4003 88:207f
ata1: dev 0 ATA-6, max UDMA/133, 145226112 sectors: LBA48
ata1(0): applying bridge limits
ata1: dev 0 configured for UDMA/100
scsi0 : ata_piix
ATA: abnormal status 0x7F on port 0x9807
ata2: disabling port
scsi1 : ata_piix
  Vendor: ATA       Model: WDC WD740GD-00FL  Rev: 21.0
  Type:   Direct-Access                      ANSI SCSI revision: 05
sata_sil version 0.9
ACPI: PCI Interrupt 0000:01:05.0[A] -> GSI 22 (level, low) -> IRQ 21
ata3: SATA max UDMA/100 cmd 0xF0806880 ctl 0xF080688A bmdma 0xF0806800 irq 21
ata4: SATA max UDMA/100 cmd 0xF08068C0 ctl 0xF08068CA bmdma 0xF0806808 irq 21
ata5: SATA max UDMA/100 cmd 0xF0806A80 ctl 0xF0806A8A bmdma 0xF0806A00 irq 21
ata6: SATA max UDMA/100 cmd 0xF0806AC0 ctl 0xF0806ACA bmdma 0xF0806A08 irq 21
ata3: no device found (phy stat 00000000)
scsi2 : sata_sil
ata4: no device found (phy stat 00000000)
scsi3 : sata_sil
ata5: no device found (phy stat 00000000)
scsi4 : sata_sil
ata6: dev 0 cfg 49:0f00 82:0000 83:0000 84:0000 85:0000 86:0000 87:0000 88:001f
ata6: dev 0 ATAPI, max UDMA/66
ata6(0): applying bridge limits
ata6: dev 0 configured for UDMA/66
scsi5 : sata_sil
  Vendor: PLEXTOR   Model: DVDR   PX-716A    Rev: 1.09
  Type:   CD-ROM                             ANSI SCSI revision: 05
SCSI device sda: 145226112 512-byte hdwr sectors (74356 MB)
SCSI device sda: drive cache: write back
SCSI device sda: 145226112 512-byte hdwr sectors (74356 MB)
SCSI device sda: drive cache: write back
 sda: sda1 sda2 sda3 < sda5 sda6 sda7 > sda4
Attached scsi disk sda at scsi0, channel 0, id 0, lun 0
sr0: scsi3-mmc drive: 40x/40x writer cd/rw xa/form2 cdda tray
Attached scsi CD-ROM sr0 at scsi5, channel 0, id 0, lun 0
Attached scsi generic sg0 at scsi0, channel 0, id 0, lun 0,  type 0
Attached scsi generic sg1 at scsi5, channel 0, id 0, lun 0,  type 5
.......
ata6: command error, drv_stat 0x51 host_stat 0x5
ata6: command error, drv_stat 0x51 host_stat 0x5
.......
cdrom: open failed.
.......
ata6: command error, drv_stat 0x51 host_stat 0x5
ata6: command error, drv_stat 0x51 host_stat 0x5
.......
cdrom: This disc doesn't have any tracks I recognize!
.......
ata6: command error, drv_stat 0x51 host_stat 0x5
ata6: command 0xa0 timeout, stat 0xd0 host_stat 0x1
ata6: translated ATA stat/err 0xa0/00 to SCSI SK/ASC/ASCQ 0xb/47/00
ATA: abnormal status 0x78 on port 0xF0806AC7
ATA: abnormal status 0x78 on port 0xF0806AC7
ATA: abnormal status 0x78 on port 0xF0806AC7
ata6 is slow to respond, please be patient
ata6 failed to respond (30 secs)
ata6: PIO error, drv_stat 0xf8
ATA: abnormal status 0xF8 on port 0xF0806AC7
ata6: translated ATA stat/err 0xa0/00 to SCSI SK/ASC/ASCQ 0xb/47/00
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ata6 is slow to respond, please be patient
ata6: command 0xa0 timeout, stat 0xf8 host_stat 0x0
ata6: translated ATA stat/err 0xa0/00 to SCSI SK/ASC/ASCQ 0xb/47/00
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ata6 failed to respond (30 secs)
ata6: PIO error, drv_stat 0xf8
ATA: abnormal status 0xF8 on port 0xF0806AC7
ata6: translated ATA stat/err 0xa0/00 to SCSI SK/ASC/ASCQ 0xb/47/00
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ata6 is slow to respond, please be patient
ata6: command 0xa0 timeout, stat 0xf8 host_stat 0x0
ata6: translated ATA stat/err 0xa0/00 to SCSI SK/ASC/ASCQ 0xb/47/00
sr0: CDROM (ioctl) error, command: <6>Test Unit Ready 00 00 00 00 00 00
sr: Current [descriptor]: sense key: Aborted Command
    Additional sense: Scsi parity error
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ata6 failed to respond (30 secs)
ata6: PIO error, drv_stat 0xf8
ATA: abnormal status 0xF8 on port 0xF0806AC7
ata6: translated ATA stat/err 0xa0/00 to SCSI SK/ASC/ASCQ 0xb/47/00
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ata6 is slow to respond, please be patient
ata6: command 0xa0 timeout, stat 0xf8 host_stat 0x0
ata6: translated ATA stat/err 0xa0/00 to SCSI SK/ASC/ASCQ 0xb/47/00
ioctl_internal_command: <5 0 0 0> return code = 8000002
   : Current [descriptor]: sense key: Aborted Command
    Additional sense: Scsi parity error
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ata6 failed to respond (30 secs)
ata6: PIO error, drv_stat 0xf8
ATA: abnormal status 0xF8 on port 0xF0806AC7
ata6: translated ATA stat/err 0xa0/00 to SCSI SK/ASC/ASCQ 0xb/47/00
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ATA: abnormal status 0xF8 on port 0xF0806AC7
ata6 is slow to respond, please be patient
Top
janosh
Tux's lil' helper
Tux's lil' helper
Posts: 80
Joined: Wed Jul 28, 2004 1:57 pm
Location: Oslo, Norway

  • Quote

Post by janosh » Sat Feb 04, 2006 4:28 pm

I have the same problem as xbb.
In kernels prior to 2.6.14.x, i coud use the old atapi-enabled patch, and it woud detect my dwd-rw.

After upgrading to kernel 2.6.14.2 and later and using the libata.atapi_enabled=1 boot option, i get this in my dmesg, and no dvd-rw

This is from kernel 2.6.15:

Code: Select all

sata_sil 0000:03:03.0: version 0.9
ACPI: PCI Interrupt 0000:03:03.0[A] -> GSI 19 (level, low) -> IRQ 17
ata3: SATA max UDMA/100 cmd 0xF8802080 ctl 0xF880208A bmdma 0xF8802000 irq 17
ata4: SATA max UDMA/100 cmd 0xF88020C0 ctl 0xF88020CA bmdma 0xF8802008 irq 17
ata3: dev 0 cfg 49:0b00 82:0000 83:0000 84:0000 85:0000 86:0000 87:0000 88:0007
ata3: dev 0 ATAPI, max UDMA/33
ata3: dev 0 configured for UDMA/33
scsi2 : sata_sil
ata4: no device found (phy stat 00000000)
scsi3 : sata_sil
ata3: command 0xa0 timeout, stat 0x78 host_stat 0x1
ATA: abnormal status 0x78 on port 0xF8802087
ATA: abnormal status 0x78 on port 0xF8802087
ATA: abnormal status 0x78 on port 0xF8802087
ATA: abnormal status 0x78 on port 0xF8802087
ata3 is slow to respond, please be patient
ata3 failed to respond (30 secs)
ATA: abnormal status 0xF8 on port 0xF8802087
ata3: translated ATA stat/err 0xf8/00 to SCSI SK/ASC/ASCQ 0xb/47/00
In kernel 2.6.14.2, the libata.atapi_enabled=1 just hangs the kernel with no error messages, an i have to reboot.

I also see that these lines:
xbb wrote:ata6: command 0xa0 timeout, stat 0xd0 host_stat 0x1
ata6: translated ATA stat/err 0xa0/00 to SCSI SK/ASC/ASCQ 0xb/47/00
ATA: abnormal status 0x78 on port 0xF0806AC7
ATA: abnormal status 0x78 on port 0xF0806AC7
ATA: abnormal status 0x78 on port 0xF0806AC7
are very simmilar to the lines from my dmesg.

Witch might indicate that our problems are simmilar.
It was delighting to see that I'm not the only one with this problem, because I've been googling around about this problem, for a couple of weeks, I even posted to the linux kernel mailing list.
http://lkml.org/lkml/2006/1/17/306

It woud be nice if someone could help.

--
Jonarne
Top
Post Reply

24 posts • Page 1 of 1

Return to “Kernel & Hardware”

Jump to
  • Assistance
  • ↳   News & Announcements
  • ↳   Frequently Asked Questions
  • ↳   Installing Gentoo
  • ↳   Multimedia
  • ↳   Desktop Environments
  • ↳   Networking & Security
  • ↳   Kernel & Hardware
  • ↳   Portage & Programming
  • ↳   Gamers & Players
  • ↳   Other Things Gentoo
  • ↳   Unsupported Software
  • Discussion & Documentation
  • ↳   Documentation, Tips & Tricks
  • ↳   Gentoo Chat
  • ↳   Gentoo Forums Feedback
  • ↳   Duplicate Threads
  • International Gentoo Users
  • ↳   中文 (Chinese)
  • ↳   Dutch
  • ↳   Finnish
  • ↳   French
  • ↳   Deutsches Forum (German)
  • ↳   Diskussionsforum
  • ↳   Deutsche Dokumentation
  • ↳   Greek
  • ↳   Forum italiano (Italian)
  • ↳   Forum di discussione italiano
  • ↳   Risorse italiane (documentazione e tools)
  • ↳   Polskie forum (Polish)
  • ↳   Instalacja i sprzęt
  • ↳   Polish OTW
  • ↳   Portuguese
  • ↳   Documentação, Ferramentas e Dicas
  • ↳   Russian
  • ↳   Scandinavian
  • ↳   Spanish
  • ↳   Other Languages
  • Architectures & Platforms
  • ↳   Gentoo on ARM
  • ↳   Gentoo on PPC
  • ↳   Gentoo on Sparc
  • ↳   Gentoo on Alternative Architectures
  • ↳   Gentoo on AMD64
  • ↳   Gentoo for Mac OS X (Portage for Mac OS X)
  • Board index
  • All times are UTC
  • Delete cookies

© 2001–2026 Gentoo Foundation, Inc.

Powered by phpBB® Forum Software © phpBB Limited

Privacy Policy

 

 

magic