Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 202291 Details for
Bug 247768
[PATCH] libata pata_sis speed negotiation issue
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
patch to fix this problem
linux-2.6-libata-pata_sis-dma-add-missing-entry.patch (text/plain), 1.04 KB, created by
Chuck Ebbert
on 2007-09-21 14:53:31 UTC
(
hide
)
Description:
patch to fix this problem
Filename:
MIME Type:
Creator:
Chuck Ebbert
Created:
2007-09-21 14:53:31 UTC
Size:
1.04 KB
patch
obsolete
>sis_66_set_dmamode() also handles early UDMA100 (SIS630 ET) but is >missing udma timing value for UDMA100. According to sis5513, this >should be 0x8000. This caused UDMA100 device to fail on pata_sis till >it downgrades to UDMA66 while it works fine on sis5513 at UDMA100. > >Reported by Adam Blech. > >Signed-off-by: Tejun Heo <htejun@gmail.com> >Cc: Adam Blech <desaster.area@addcom.de> >--- > drivers/ata/pata_sis.c | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > >diff --git a/drivers/ata/pata_sis.c b/drivers/ata/pata_sis.c >index da3f720..3b5be77 100644 >--- a/drivers/ata/pata_sis.c >+++ b/drivers/ata/pata_sis.c >@@ -376,8 +376,9 @@ static void sis_66_set_dmamode (struct ata_port *ap, struct ata_device *adev) > int drive_pci = sis_old_port_base(adev); > u16 timing; > >+ /* MWDMA 0-2 and UDMA 0-5 */ > const u16 mwdma_bits[] = { 0x008, 0x302, 0x301 }; >- const u16 udma_bits[] = { 0xF000, 0xD000, 0xB000, 0xA000, 0x9000}; >+ const u16 udma_bits[] = { 0xF000, 0xD000, 0xB000, 0xA000, 0x9000, 0x8000 }; > > pci_read_config_word(pdev, drive_pci, &timing); >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 247768
:
201381
|
201391
|
201451
| 202291