2005-04-17 00:20:36 +02:00
|
|
|
/*
|
|
|
|
* IDE tuning and bus mastering support for the CS5510/CS5520
|
|
|
|
* chipsets
|
|
|
|
*
|
|
|
|
* The CS5510/CS5520 are slightly unusual devices. Unlike the
|
|
|
|
* typical IDE controllers they do bus mastering with the drive in
|
|
|
|
* PIO mode and smarter silicon.
|
|
|
|
*
|
|
|
|
* The practical upshot of this is that we must always tune the
|
|
|
|
* drive for the right PIO mode. We must also ignore all the blacklists
|
|
|
|
* and the drive bus mastering DMA information.
|
|
|
|
*
|
|
|
|
* *** This driver is strictly experimental ***
|
|
|
|
*
|
|
|
|
* (c) Copyright Red Hat Inc 2002
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2, or (at your option) any
|
|
|
|
* later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* General Public License for more details.
|
|
|
|
*
|
|
|
|
* For the avoidance of doubt the "preferred form" of this code is one which
|
|
|
|
* is in an open non patent encumbered format. Where cryptographic key signing
|
|
|
|
* forms part of the process of creating an executable the information
|
|
|
|
* including keys needed to generate an equivalently functional executable
|
|
|
|
* are deemed to be part of the source code.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/pci.h>
|
|
|
|
#include <linux/ide.h>
|
|
|
|
#include <linux/dma-mapping.h>
|
|
|
|
|
2008-07-24 22:53:32 +02:00
|
|
|
#define DRV_NAME "cs5520"
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
struct pio_clocks
|
|
|
|
{
|
|
|
|
int address;
|
|
|
|
int assert;
|
|
|
|
int recovery;
|
|
|
|
};
|
|
|
|
|
|
|
|
static struct pio_clocks cs5520_pio_clocks[]={
|
|
|
|
{3, 6, 11},
|
|
|
|
{2, 5, 6},
|
|
|
|
{1, 4, 3},
|
|
|
|
{1, 3, 2},
|
|
|
|
{1, 2, 1}
|
|
|
|
};
|
|
|
|
|
2010-01-19 10:44:41 +01:00
|
|
|
static void cs5520_set_pio_mode(ide_hwif_t *hwif, ide_drive_t *drive)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-02-01 23:09:31 +01:00
|
|
|
struct pci_dev *pdev = to_pci_dev(hwif->dev);
|
2005-04-17 00:20:36 +02:00
|
|
|
int controller = drive->dn > 1 ? 1 : 0;
|
2010-01-19 10:44:41 +01:00
|
|
|
const u8 pio = drive->pio_mode - XFER_PIO_0;
|
2007-10-11 23:53:59 +02:00
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
/* 8bit CAT/CRT - 8bit command timing for channel */
|
|
|
|
pci_write_config_byte(pdev, 0x62 + controller,
|
|
|
|
(cs5520_pio_clocks[pio].recovery << 4) |
|
|
|
|
(cs5520_pio_clocks[pio].assert));
|
|
|
|
|
|
|
|
/* 0x64 - 16bit Primary, 0x68 - 16bit Secondary */
|
|
|
|
|
|
|
|
/* FIXME: should these use address ? */
|
|
|
|
/* Data read timing */
|
|
|
|
pci_write_config_byte(pdev, 0x64 + 4*controller + (drive->dn&1),
|
|
|
|
(cs5520_pio_clocks[pio].recovery << 4) |
|
|
|
|
(cs5520_pio_clocks[pio].assert));
|
|
|
|
/* Write command timing */
|
|
|
|
pci_write_config_byte(pdev, 0x66 + 4*controller + (drive->dn&1),
|
|
|
|
(cs5520_pio_clocks[pio].recovery << 4) |
|
|
|
|
(cs5520_pio_clocks[pio].assert));
|
2007-10-11 23:54:01 +02:00
|
|
|
}
|
2007-10-11 23:54:00 +02:00
|
|
|
|
2010-01-19 10:45:29 +01:00
|
|
|
static void cs5520_set_dma_mode(ide_hwif_t *hwif, ide_drive_t *drive)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2007-10-11 23:54:02 +02:00
|
|
|
printk(KERN_ERR "cs55x0: bad ide timing.\n");
|
|
|
|
|
2010-01-19 10:44:41 +01:00
|
|
|
drive->pio_mode = XFER_PIO_0 + 0;
|
2010-01-19 10:45:29 +01:00
|
|
|
cs5520_set_pio_mode(hwif, drive);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2008-04-26 22:25:14 +02:00
|
|
|
static const struct ide_port_ops cs5520_port_ops = {
|
|
|
|
.set_pio_mode = cs5520_set_pio_mode,
|
|
|
|
.set_dma_mode = cs5520_set_dma_mode,
|
|
|
|
};
|
|
|
|
|
2012-12-21 22:21:03 +01:00
|
|
|
static const struct ide_port_info cyrix_chipset = {
|
2008-07-24 22:53:32 +02:00
|
|
|
.name = DRV_NAME,
|
2008-08-05 18:17:03 +02:00
|
|
|
.enablebits = { { 0x60, 0x01, 0x01 }, { 0x60, 0x02, 0x02 } },
|
2008-07-24 22:53:32 +02:00
|
|
|
.port_ops = &cs5520_port_ops,
|
|
|
|
.host_flags = IDE_HFLAG_ISA_PORTS | IDE_HFLAG_CS5520,
|
|
|
|
.pio_mask = ATA_PIO4,
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The 5510/5520 are a bit weird. They don't quite set up the way
|
|
|
|
* the PCI helper layer expects so we must do much of the set up
|
|
|
|
* work longhand.
|
|
|
|
*/
|
|
|
|
|
2012-12-21 22:21:03 +01:00
|
|
|
static int cs5520_init_one(struct pci_dev *dev, const struct pci_device_id *id)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-07-24 22:53:32 +02:00
|
|
|
const struct ide_port_info *d = &cyrix_chipset;
|
2009-05-17 19:12:25 +02:00
|
|
|
struct ide_hw hw[2], *hws[] = { NULL, NULL };
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
ide_setup_pci_noise(dev, d);
|
|
|
|
|
|
|
|
/* We must not grab the entire device, it has 'ISA' space in its
|
2007-12-20 05:28:09 +01:00
|
|
|
* BARS too and we will freak out other bits of the kernel
|
|
|
|
*/
|
|
|
|
if (pci_enable_device_io(dev)) {
|
2005-04-17 00:20:36 +02:00
|
|
|
printk(KERN_WARNING "%s: Unable to enable 55x0.\n", d->name);
|
2005-11-18 23:03:19 +01:00
|
|
|
return -ENODEV;
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
pci_set_master(dev);
|
ide: remove deprecated use of pci api
Replace occurences of the pci api by appropriate call to the dma api.
A simplified version of the semantic patch that finds this problem is as
follows: (http://coccinelle.lip6.fr)
@deprecated@
idexpression id;
position p;
@@
(
pci_dma_supported@p ( id, ...)
|
pci_alloc_consistent@p ( id, ...)
)
@bad1@
idexpression id;
position deprecated.p;
@@
...when != &id->dev
when != pci_get_drvdata ( id )
when != pci_enable_device ( id )
(
pci_dma_supported@p ( id, ...)
|
pci_alloc_consistent@p ( id, ...)
)
@depends on !bad1@
idexpression id;
expression direction;
position deprecated.p;
@@
(
- pci_dma_supported@p ( id,
+ dma_supported ( &id->dev,
...
+ , GFP_ATOMIC
)
|
- pci_alloc_consistent@p ( id,
+ dma_alloc_coherent ( &id->dev,
...
+ , GFP_ATOMIC
)
)
Signed-off-by: Quentin Lambert <lambert.quentin@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
2015-04-13 10:26:53 +02:00
|
|
|
if (dma_set_mask(&dev->dev, DMA_BIT_MASK(32))) {
|
2008-07-24 22:53:32 +02:00
|
|
|
printk(KERN_WARNING "%s: No suitable DMA available.\n",
|
|
|
|
d->name);
|
2005-04-17 00:20:36 +02:00
|
|
|
return -ENODEV;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Now the chipset is configured we can let the core
|
|
|
|
* do all the device setup for us
|
|
|
|
*/
|
|
|
|
|
2009-03-24 23:22:53 +01:00
|
|
|
ide_pci_setup_ports(dev, d, &hw[0], &hws[0]);
|
|
|
|
hw[0].irq = 14;
|
2009-06-24 11:36:17 +02:00
|
|
|
hw[1].irq = 15;
|
2007-05-10 00:01:11 +02:00
|
|
|
|
2009-05-17 19:12:24 +02:00
|
|
|
return ide_host_add(d, hws, 2, NULL);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
2007-10-16 22:29:56 +02:00
|
|
|
static const struct pci_device_id cs5520_pci_tbl[] = {
|
|
|
|
{ PCI_VDEVICE(CYRIX, PCI_DEVICE_ID_CYRIX_5510), 0 },
|
|
|
|
{ PCI_VDEVICE(CYRIX, PCI_DEVICE_ID_CYRIX_5520), 1 },
|
2005-04-17 00:20:36 +02:00
|
|
|
{ 0, },
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(pci, cs5520_pci_tbl);
|
|
|
|
|
2008-10-13 21:39:41 +02:00
|
|
|
static struct pci_driver cs5520_pci_driver = {
|
2005-04-17 00:20:36 +02:00
|
|
|
.name = "Cyrix_IDE",
|
|
|
|
.id_table = cs5520_pci_tbl,
|
|
|
|
.probe = cs5520_init_one,
|
2008-10-10 22:39:32 +02:00
|
|
|
.suspend = ide_pci_suspend,
|
|
|
|
.resume = ide_pci_resume,
|
2005-04-17 00:20:36 +02:00
|
|
|
};
|
|
|
|
|
2007-01-27 13:46:56 +01:00
|
|
|
static int __init cs5520_ide_init(void)
|
2005-04-17 00:20:36 +02:00
|
|
|
{
|
2008-10-13 21:39:41 +02:00
|
|
|
return ide_pci_register_driver(&cs5520_pci_driver);
|
2005-04-17 00:20:36 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
module_init(cs5520_ide_init);
|
|
|
|
|
|
|
|
MODULE_AUTHOR("Alan Cox");
|
|
|
|
MODULE_DESCRIPTION("PCI driver module for Cyrix 5510/5520 IDE");
|
|
|
|
MODULE_LICENSE("GPL");
|