diff options
Diffstat (limited to 'drivers/scsi/ata_piix.c')
-rw-r--r-- | drivers/scsi/ata_piix.c | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/drivers/scsi/ata_piix.c b/drivers/scsi/ata_piix.c index ce19728aa8a4..3867f91ef8c7 100644 --- a/drivers/scsi/ata_piix.c +++ b/drivers/scsi/ata_piix.c | |||
@@ -61,6 +61,7 @@ enum { | |||
61 | ich6_sata = 3, | 61 | ich6_sata = 3, |
62 | ich6_sata_rm = 4, | 62 | ich6_sata_rm = 4, |
63 | ich7_sata = 5, | 63 | ich7_sata = 5, |
64 | esb2_sata = 6, | ||
64 | }; | 65 | }; |
65 | 66 | ||
66 | static int piix_init_one (struct pci_dev *pdev, | 67 | static int piix_init_one (struct pci_dev *pdev, |
@@ -93,6 +94,7 @@ static struct pci_device_id piix_pci_tbl[] = { | |||
93 | { 0x8086, 0x2653, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata_rm }, | 94 | { 0x8086, 0x2653, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich6_sata_rm }, |
94 | { 0x8086, 0x27c0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich7_sata }, | 95 | { 0x8086, 0x27c0, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich7_sata }, |
95 | { 0x8086, 0x27c4, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich7_sata }, | 96 | { 0x8086, 0x27c4, PCI_ANY_ID, PCI_ANY_ID, 0, 0, ich7_sata }, |
97 | { 0x8086, 0x2680, PCI_ANY_ID, PCI_ANY_ID, 0, 0, esb2_sata }, | ||
96 | 98 | ||
97 | { } /* terminate list */ | 99 | { } /* terminate list */ |
98 | }; | 100 | }; |
@@ -256,6 +258,18 @@ static struct ata_port_info piix_port_info[] = { | |||
256 | .udma_mask = 0x7f, /* udma0-6 */ | 258 | .udma_mask = 0x7f, /* udma0-6 */ |
257 | .port_ops = &piix_sata_ops, | 259 | .port_ops = &piix_sata_ops, |
258 | }, | 260 | }, |
261 | |||
262 | /* esb2_sata */ | ||
263 | { | ||
264 | .sht = &piix_sht, | ||
265 | .host_flags = ATA_FLAG_SATA | ATA_FLAG_SRST | | ||
266 | PIIX_FLAG_COMBINED | PIIX_FLAG_CHECKINTR | | ||
267 | ATA_FLAG_SLAVE_POSS | PIIX_FLAG_AHCI, | ||
268 | .pio_mask = 0x1f, /* pio0-4 */ | ||
269 | .mwdma_mask = 0x07, /* mwdma0-2 */ | ||
270 | .udma_mask = 0x7f, /* udma0-6 */ | ||
271 | .port_ops = &piix_sata_ops, | ||
272 | }, | ||
259 | }; | 273 | }; |
260 | 274 | ||
261 | static struct pci_bits piix_enable_bits[] = { | 275 | static struct pci_bits piix_enable_bits[] = { |