Brett Russ napsal(a):
This is the first public release of my libata compatible low level driver for the Marvell SATA family. Currently it successfully runs in PIO mode on a 6081 chip. EDMA support is in the works and should be done shortly. Review, testing (especially on other flavors of Marvell), comments welcome.
[snip]
MODULE_DEVICE_TABLE(pci, <http://localhost/lxr/ident?i=MODULE_DEVICE_TABLE>mv_pci_tbl); here for hotplug+static struct pci_device_id mv_pci_tbl[] = { + {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5040), 0, 0, chip_504x}, + {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5041), 0, 0, chip_504x}, + {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5080), 0, 0, chip_508x}, + {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x5081), 0, 0, chip_508x}, + + {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6040), 0, 0, chip_604x}, + {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6041), 0, 0, chip_604x}, + {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6080), 0, 0, chip_608x}, + {PCI_DEVICE(PCI_VENDOR_ID_MARVELL, 0x6081), 0, 0, chip_608x}, + {} /* terminate list */ +}; <http://localhost/lxr/ident?i=MODULE_DEVICE_TABLE>
+ +static struct pci_driver mv_pci_driver = { + .name = DRV_NAME, + .id_table = mv_pci_tbl, + .probe = mv_init_one, + .remove = ata_pci_remove_one, +};
[snip] -- Jiri Slaby www.fi.muni.cz/~xslaby ~\-/~ [email protected] ~\-/~ 241B347EC88228DE51EE A49C4A73A25004CB2A10 - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
- Follow-Ups:
- Re: [RFC][PATCH 2.6.13] Marvell SATA support (PIO mode)
- From: Brett Russ <[email protected]>
- Re: [RFC][PATCH 2.6.13] Marvell SATA support (PIO mode)
- References:
- [RFC][PATCH 2.6.13] Marvell SATA support (PIO mode)
- From: Brett Russ <[email protected]>
- [RFC][PATCH 2.6.13] Marvell SATA support (PIO mode)
- Prev by Date: Re: Dynamic tick for 2.6.14 - what's the plan?
- Next by Date: Re: Dynamic tick for 2.6.14 - what's the plan?
- Previous by thread: Re: [PATCH 2.6.13] libata: Marvell SATA support (PIO mode)
- Next by thread: Re: [RFC][PATCH 2.6.13] Marvell SATA support (PIO mode)
- Index(es):