9363c3825e
SFF functions have confusing names. Some have sff prefix, some have bmdma, some std, some pci and some none. Unify the naming by... * SFF functions which are common to both BMDMA and non-BMDMA are prefixed with ata_sff_. * SFF functions which are specific to BMDMA are prefixed with ata_bmdma_. * SFF functions which are specific to PCI but apply to both BMDMA and non-BMDMA are prefixed with ata_pci_sff_. * SFF functions which are specific to PCI and BMDMA are prefixed with ata_pci_bmdma_. * Drop generic prefixes from LLD specific routines. For example, bfin_std_dev_select -> bfin_dev_select. The following renames are noteworthy. ata_qc_issue_prot() -> ata_sff_qc_issue() ata_pci_default_filter() -> ata_bmdma_mode_filter() ata_dev_try_classify() -> ata_sff_dev_classify() This rename is in preparation of separating SFF support out of libata core layer. This patch strictly renames functions and doesn't introduce any behavior difference. Signed-off-by: Tejun Heo <htejun@gmail.com>
171 lines
3.8 KiB
C
171 lines
3.8 KiB
C
/*
|
|
* Marvell PATA driver.
|
|
*
|
|
* For the moment we drive the PATA port in legacy mode. That
|
|
* isn't making full use of the device functionality but it is
|
|
* easy to get working.
|
|
*
|
|
* (c) 2006 Red Hat <alan@redhat.com>
|
|
*/
|
|
|
|
#include <linux/kernel.h>
|
|
#include <linux/module.h>
|
|
#include <linux/pci.h>
|
|
#include <linux/init.h>
|
|
#include <linux/blkdev.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/device.h>
|
|
#include <scsi/scsi_host.h>
|
|
#include <linux/libata.h>
|
|
#include <linux/ata.h>
|
|
|
|
#define DRV_NAME "pata_marvell"
|
|
#define DRV_VERSION "0.1.4"
|
|
|
|
/**
|
|
* marvell_pre_reset - check for 40/80 pin
|
|
* @link: link
|
|
* @deadline: deadline jiffies for the operation
|
|
*
|
|
* Perform the PATA port setup we need.
|
|
*/
|
|
|
|
static int marvell_pre_reset(struct ata_link *link, unsigned long deadline)
|
|
{
|
|
struct ata_port *ap = link->ap;
|
|
struct pci_dev *pdev = to_pci_dev(ap->host->dev);
|
|
u32 devices;
|
|
void __iomem *barp;
|
|
int i;
|
|
|
|
/* Check if our port is enabled */
|
|
|
|
barp = pci_iomap(pdev, 5, 0x10);
|
|
if (barp == NULL)
|
|
return -ENOMEM;
|
|
printk("BAR5:");
|
|
for(i = 0; i <= 0x0F; i++)
|
|
printk("%02X:%02X ", i, ioread8(barp + i));
|
|
printk("\n");
|
|
|
|
devices = ioread32(barp + 0x0C);
|
|
pci_iounmap(pdev, barp);
|
|
|
|
if ((pdev->device == 0x6145) && (ap->port_no == 0) &&
|
|
(!(devices & 0x10))) /* PATA enable ? */
|
|
return -ENOENT;
|
|
|
|
return ata_sff_prereset(link, deadline);
|
|
}
|
|
|
|
static int marvell_cable_detect(struct ata_port *ap)
|
|
{
|
|
/* Cable type */
|
|
switch(ap->port_no)
|
|
{
|
|
case 0:
|
|
if (ioread8(ap->ioaddr.bmdma_addr + 1) & 1)
|
|
return ATA_CBL_PATA40;
|
|
return ATA_CBL_PATA80;
|
|
case 1: /* Legacy SATA port */
|
|
return ATA_CBL_SATA;
|
|
}
|
|
|
|
BUG();
|
|
return 0; /* Our BUG macro needs the right markup */
|
|
}
|
|
|
|
/* No PIO or DMA methods needed for this device */
|
|
|
|
static struct scsi_host_template marvell_sht = {
|
|
ATA_BMDMA_SHT(DRV_NAME),
|
|
};
|
|
|
|
static struct ata_port_operations marvell_ops = {
|
|
.inherits = &ata_bmdma_port_ops,
|
|
.cable_detect = marvell_cable_detect,
|
|
.prereset = marvell_pre_reset,
|
|
};
|
|
|
|
|
|
/**
|
|
* marvell_init_one - Register Marvell ATA PCI device with kernel services
|
|
* @pdev: PCI device to register
|
|
* @ent: Entry in marvell_pci_tbl matching with @pdev
|
|
*
|
|
* Called from kernel PCI layer.
|
|
*
|
|
* LOCKING:
|
|
* Inherited from PCI layer (may sleep).
|
|
*
|
|
* RETURNS:
|
|
* Zero on success, or -ERRNO value.
|
|
*/
|
|
|
|
static int marvell_init_one (struct pci_dev *pdev, const struct pci_device_id *id)
|
|
{
|
|
static const struct ata_port_info info = {
|
|
.flags = ATA_FLAG_SLAVE_POSS,
|
|
|
|
.pio_mask = 0x1f,
|
|
.mwdma_mask = 0x07,
|
|
.udma_mask = ATA_UDMA5,
|
|
|
|
.port_ops = &marvell_ops,
|
|
};
|
|
static const struct ata_port_info info_sata = {
|
|
/* Slave possible as its magically mapped not real */
|
|
.flags = ATA_FLAG_SLAVE_POSS,
|
|
|
|
.pio_mask = 0x1f,
|
|
.mwdma_mask = 0x07,
|
|
.udma_mask = ATA_UDMA6,
|
|
|
|
.port_ops = &marvell_ops,
|
|
};
|
|
const struct ata_port_info *ppi[] = { &info, &info_sata };
|
|
|
|
if (pdev->device == 0x6101)
|
|
ppi[1] = &ata_dummy_port_info;
|
|
|
|
return ata_pci_sff_init_one(pdev, ppi, &marvell_sht, NULL);
|
|
}
|
|
|
|
static const struct pci_device_id marvell_pci_tbl[] = {
|
|
{ PCI_DEVICE(0x11AB, 0x6101), },
|
|
{ PCI_DEVICE(0x11AB, 0x6121), },
|
|
{ PCI_DEVICE(0x11AB, 0x6123), },
|
|
{ PCI_DEVICE(0x11AB, 0x6145), },
|
|
{ } /* terminate list */
|
|
};
|
|
|
|
static struct pci_driver marvell_pci_driver = {
|
|
.name = DRV_NAME,
|
|
.id_table = marvell_pci_tbl,
|
|
.probe = marvell_init_one,
|
|
.remove = ata_pci_remove_one,
|
|
#ifdef CONFIG_PM
|
|
.suspend = ata_pci_device_suspend,
|
|
.resume = ata_pci_device_resume,
|
|
#endif
|
|
};
|
|
|
|
static int __init marvell_init(void)
|
|
{
|
|
return pci_register_driver(&marvell_pci_driver);
|
|
}
|
|
|
|
static void __exit marvell_exit(void)
|
|
{
|
|
pci_unregister_driver(&marvell_pci_driver);
|
|
}
|
|
|
|
module_init(marvell_init);
|
|
module_exit(marvell_exit);
|
|
|
|
MODULE_AUTHOR("Alan Cox");
|
|
MODULE_DESCRIPTION("SCSI low-level driver for Marvell ATA in legacy mode");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_DEVICE_TABLE(pci, marvell_pci_tbl);
|
|
MODULE_VERSION(DRV_VERSION);
|
|
|