blob: 3817d7497049b5b12a647cfb9010af6961c532c5 [file] [log] [blame]
Evan Kocfc2f942009-02-09 13:02:35 -08001/*
2 * Copyright (C) 2006 Red Hat <evan_ko@phison.com>
3 *
4 * May be copied or modified under the terms of the GNU General Public License
5 *
6 * [Modify History]
7 * #0001, Evan, 2008.10.22, V0.00, New release.
8 * #0002, Evan, 2008.11.01, V0.90, Test Work In Ubuntu Linux 8.04.
9 * #0003, Evan, 2008.01.08, V0.91, Change Name "PCIE-SSD" to "E-BOX".
10 */
11
12#include <linux/kernel.h>
13#include <linux/module.h>
14#include <linux/pci.h>
15#include <linux/init.h>
16#include <linux/blkdev.h>
17#include <linux/delay.h>
18#include <linux/device.h>
19#include <scsi/scsi_host.h>
20#include <linux/libata.h>
21#include <linux/ata.h>
22
23#define PHISON_DEBUG
24
Greg Kroah-Hartman33210202009-02-12 13:36:54 -080025#define DRV_NAME "phison_e-box" /* #0003 */
26#define DRV_VERSION "0.91" /* #0003 */
Evan Kocfc2f942009-02-09 13:02:35 -080027
Greg Kroah-Hartman33210202009-02-12 13:36:54 -080028#define PCI_VENDOR_ID_PHISON 0x1987
29#define PCI_DEVICE_ID_PS5000 0x5000
Evan Kocfc2f942009-02-09 13:02:35 -080030
Greg Kroah-Hartman33210202009-02-12 13:36:54 -080031static int phison_pre_reset(struct ata_link *link, unsigned long deadline)
Evan Kocfc2f942009-02-09 13:02:35 -080032{
33 int ret;
34 struct ata_port *ap = link->ap;
Greg Kroah-Hartman33210202009-02-12 13:36:54 -080035
Evan Kocfc2f942009-02-09 13:02:35 -080036 ap->cbl = ATA_CBL_NONE;
37 ret = ata_std_prereset(link, deadline);
Greg Kroah-Hartman33210202009-02-12 13:36:54 -080038 dev_dbg(ap->dev, "phison_pre_reset(), ret = %x\n", ret);
Evan Kocfc2f942009-02-09 13:02:35 -080039 return ret;
40}
41
Greg Kroah-Hartman33210202009-02-12 13:36:54 -080042static struct scsi_host_template phison_sht = {
Greg Kroah-Hartman76d86df2009-02-12 13:37:51 -080043 ATA_BMDMA_SHT(DRV_NAME),
Evan Kocfc2f942009-02-09 13:02:35 -080044};
45
Greg Kroah-Hartman76d86df2009-02-12 13:37:51 -080046static struct ata_port_operations phison_ops = {
47 .inherits = &ata_bmdma_port_ops,
48 .prereset = phison_pre_reset,
Evan Kocfc2f942009-02-09 13:02:35 -080049};
50
Greg Kroah-Hartman33210202009-02-12 13:36:54 -080051static int phison_init_one(struct pci_dev *pdev, const struct pci_device_id *id)
Evan Kocfc2f942009-02-09 13:02:35 -080052{
Greg Kroah-Hartman76d86df2009-02-12 13:37:51 -080053 int ret;
Evan Kocfc2f942009-02-09 13:02:35 -080054 struct ata_port_info info = {
Greg Kroah-Hartman76d86df2009-02-12 13:37:51 -080055 .flags = ATA_FLAG_NO_ATAPI,
Evan Kocfc2f942009-02-09 13:02:35 -080056
57 .pio_mask = 0x1f,
58 .mwdma_mask = 0x07,
59 .udma_mask = ATA_UDMA5,
60
61 .port_ops = &phison_ops,
62 };
Evan Kocfc2f942009-02-09 13:02:35 -080063 const struct ata_port_info *ppi[] = { &info, NULL };
64
Greg Kroah-Hartman76d86df2009-02-12 13:37:51 -080065 ret = ata_pci_sff_init_one(pdev, ppi, &phison_sht, NULL);
Evan Kocfc2f942009-02-09 13:02:35 -080066
Greg Kroah-Hartman33210202009-02-12 13:36:54 -080067 dev_dbg(&pdev->dev, "phison_init_one(), ret = %x\n", ret);
Evan Kocfc2f942009-02-09 13:02:35 -080068
69 return ret;
Evan Kocfc2f942009-02-09 13:02:35 -080070}
71
Greg Kroah-Hartman33210202009-02-12 13:36:54 -080072static struct pci_device_id phison_pci_tbl[] = {
Evan Kocfc2f942009-02-09 13:02:35 -080073 { PCI_VENDOR_ID_PHISON, PCI_DEVICE_ID_PS5000, PCI_ANY_ID, PCI_ANY_ID,
74 PCI_CLASS_STORAGE_IDE << 8, 0xffff00, 0 },
75 { 0, },
76};
Evan Kocfc2f942009-02-09 13:02:35 -080077MODULE_DEVICE_TABLE(pci, phison_pci_tbl);
78
Greg Kroah-Hartman33210202009-02-12 13:36:54 -080079static struct pci_driver phison_pci_driver = {
Evan Kocfc2f942009-02-09 13:02:35 -080080 .name = DRV_NAME,
81 .id_table = phison_pci_tbl,
82 .probe = phison_init_one,
83 .remove = ata_pci_remove_one,
Greg Kroah-Hartman33210202009-02-12 13:36:54 -080084#ifdef CONFIG_PM /* haven't tested it. */
Evan Kocfc2f942009-02-09 13:02:35 -080085 .suspend = ata_pci_device_suspend,
86 .resume = ata_pci_device_resume,
87#endif
88};
89
Peter Huewe73d3f662009-09-29 01:53:16 +020090static int __init phison_ide_init(void)
Evan Kocfc2f942009-02-09 13:02:35 -080091{
Greg Kroah-Hartman33210202009-02-12 13:36:54 -080092 return pci_register_driver(&phison_pci_driver);
Evan Kocfc2f942009-02-09 13:02:35 -080093}
94
Peter Huewe73d3f662009-09-29 01:53:16 +020095static void __exit phison_ide_exit(void)
Evan Kocfc2f942009-02-09 13:02:35 -080096{
Evan Kocfc2f942009-02-09 13:02:35 -080097 pci_unregister_driver(&phison_pci_driver);
98}
99
100module_init(phison_ide_init);
101module_exit(phison_ide_exit);
102
103MODULE_AUTHOR("Evan Ko");
Greg Kroah-Hartman33210202009-02-12 13:36:54 -0800104MODULE_DESCRIPTION("PCIE driver module for PHISON PS5000 E-BOX");
Evan Kocfc2f942009-02-09 13:02:35 -0800105MODULE_LICENSE("GPL");
106MODULE_VERSION(DRV_VERSION);