VServer 1.9.2 (patch-2.6.8.1-vs1.9.2.diff)
[linux-2.6.git] / drivers / scsi / sata_sis.c
1 /*
2  *  sata_sis.c - Silicon Integrated Systems SATA
3  *
4  *  Maintained by:  Uwe Koziolek
5  *                  Please ALWAYS copy linux-ide@vger.kernel.org
6  *                  on emails.
7  *
8  *  Copyright 2004 Uwe Koziolek
9  *
10  *  The contents of this file are subject to the Open
11  *  Software License version 1.1 that can be found at
12  *  http://www.opensource.org/licenses/osl-1.1.txt and is included herein
13  *  by reference.
14  *
15  *  Alternatively, the contents of this file may be used under the terms
16  *  of the GNU General Public License version 2 (the "GPL") as distributed
17  *  in the kernel source COPYING file, in which case the provisions of
18  *  the GPL are applicable instead of the above.  If you wish to allow
19  *  the use of your version of this file only under the terms of the
20  *  GPL and not to allow others to use your version of this file under
21  *  the OSL, indicate your decision by deleting the provisions above and
22  *  replace them with the notice and other provisions required by the GPL.
23  *  If you do not delete the provisions above, a recipient may use your
24  *  version of this file under either the OSL or the GPL.
25  *
26  */
27
28 #include <linux/config.h>
29 #include <linux/kernel.h>
30 #include <linux/module.h>
31 #include <linux/pci.h>
32 #include <linux/init.h>
33 #include <linux/blkdev.h>
34 #include <linux/delay.h>
35 #include <linux/interrupt.h>
36 #include "scsi.h"
37 #include <scsi/scsi_host.h>
38 #include <linux/libata.h>
39
40 #define DRV_NAME        "sata_sis"
41 #define DRV_VERSION     "0.10"
42
43 enum {
44         sis_180                 = 0,
45         SIS_SCR_PCI_BAR         = 5,
46
47         /* PCI configuration registers */
48         SIS_GENCTL              = 0x54, /* IDE General Control register */
49         SIS_SCR_BASE            = 0xc0, /* sata0 phy SCR registers */
50         SIS_SATA1_OFS           = 0x10, /* offset from sata0->sata1 phy regs */
51
52         /* random bits */
53         SIS_FLAG_CFGSCR         = (1 << 30), /* host flag: SCRs via PCI cfg */
54
55         GENCTL_IOMAPPED_SCR     = (1 << 26), /* if set, SCRs are in IO space */
56 };
57
58 static int sis_init_one (struct pci_dev *pdev, const struct pci_device_id *ent);
59 static u32 sis_scr_read (struct ata_port *ap, unsigned int sc_reg);
60 static void sis_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val);
61
62 static struct pci_device_id sis_pci_tbl[] = {
63         { PCI_VENDOR_ID_SI, 0x180, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sis_180 },
64         { PCI_VENDOR_ID_SI, 0x181, PCI_ANY_ID, PCI_ANY_ID, 0, 0, sis_180 },
65         { }     /* terminate list */
66 };
67
68
69 static struct pci_driver sis_pci_driver = {
70         .name                   = DRV_NAME,
71         .id_table               = sis_pci_tbl,
72         .probe                  = sis_init_one,
73         .remove                 = ata_pci_remove_one,
74 };
75
76 static Scsi_Host_Template sis_sht = {
77         .module                 = THIS_MODULE,
78         .name                   = DRV_NAME,
79         .queuecommand           = ata_scsi_queuecmd,
80         .eh_strategy_handler    = ata_scsi_error,
81         .can_queue              = ATA_DEF_QUEUE,
82         .this_id                = ATA_SHT_THIS_ID,
83         .sg_tablesize           = ATA_MAX_PRD,
84         .max_sectors            = ATA_MAX_SECTORS,
85         .cmd_per_lun            = ATA_SHT_CMD_PER_LUN,
86         .emulated               = ATA_SHT_EMULATED,
87         .use_clustering         = ATA_SHT_USE_CLUSTERING,
88         .proc_name              = DRV_NAME,
89         .dma_boundary           = ATA_DMA_BOUNDARY,
90         .slave_configure        = ata_scsi_slave_config,
91         .bios_param             = ata_std_bios_param,
92 };
93
94 static struct ata_port_operations sis_ops = {
95         .port_disable           = ata_port_disable,
96         .tf_load                = ata_tf_load_pio,
97         .tf_read                = ata_tf_read_pio,
98         .check_status           = ata_check_status_pio,
99         .exec_command           = ata_exec_command_pio,
100         .phy_reset              = sata_phy_reset,
101         .bmdma_setup            = ata_bmdma_setup_pio,
102         .bmdma_start            = ata_bmdma_start_pio,
103         .qc_prep                = ata_qc_prep,
104         .qc_issue               = ata_qc_issue_prot,
105         .eng_timeout            = ata_eng_timeout,
106         .irq_handler            = ata_interrupt,
107         .irq_clear              = ata_bmdma_irq_clear,
108         .scr_read               = sis_scr_read,
109         .scr_write              = sis_scr_write,
110         .port_start             = ata_port_start,
111         .port_stop              = ata_port_stop,
112 };
113
114
115 MODULE_AUTHOR("Uwe Koziolek");
116 MODULE_DESCRIPTION("low-level driver for Silicon Integratad Systems SATA controller");
117 MODULE_LICENSE("GPL");
118 MODULE_DEVICE_TABLE(pci, sis_pci_tbl);
119
120 static unsigned int get_scr_cfg_addr(unsigned int port_no, unsigned int sc_reg)
121 {
122         unsigned int addr = SIS_SCR_BASE + (4 * sc_reg);
123
124         if (port_no)
125                 addr += SIS_SATA1_OFS;
126         return addr;
127 }
128
129 static u32 sis_scr_cfg_read (struct ata_port *ap, unsigned int sc_reg)
130 {
131         unsigned int cfg_addr = get_scr_cfg_addr(ap->port_no, sc_reg);
132         u32 val;
133
134         if (sc_reg == SCR_ERROR) /* doesn't exist in PCI cfg space */
135                 return 0xffffffff;
136         pci_read_config_dword(ap->host_set->pdev, cfg_addr, &val);
137         return val;
138 }
139
140 static void sis_scr_cfg_write (struct ata_port *ap, unsigned int scr, u32 val)
141 {
142         unsigned int cfg_addr = get_scr_cfg_addr(ap->port_no, scr);
143
144         if (scr == SCR_ERROR) /* doesn't exist in PCI cfg space */
145                 return;
146         pci_write_config_dword(ap->host_set->pdev, cfg_addr, val);
147 }
148
149 static u32 sis_scr_read (struct ata_port *ap, unsigned int sc_reg)
150 {
151         if (sc_reg > SCR_CONTROL)
152                 return 0xffffffffU;
153
154         if (ap->flags & SIS_FLAG_CFGSCR)
155                 return sis_scr_cfg_read(ap, sc_reg);
156         return inl(ap->ioaddr.scr_addr + (sc_reg * 4));
157 }
158
159 static void sis_scr_write (struct ata_port *ap, unsigned int sc_reg, u32 val)
160 {
161         if (sc_reg > SCR_CONTROL)
162                 return;
163
164         if (ap->flags & SIS_FLAG_CFGSCR)
165                 sis_scr_cfg_write(ap, sc_reg, val);
166         else
167                 outl(val, ap->ioaddr.scr_addr + (sc_reg * 4));
168 }
169
170 /* move to PCI layer, integrate w/ MSI stuff */
171 static void pci_enable_intx(struct pci_dev *pdev)
172 {
173         u16 pci_command;
174
175         pci_read_config_word(pdev, PCI_COMMAND, &pci_command);
176         if (pci_command & PCI_COMMAND_INTX_DISABLE) {
177                 pci_command &= ~PCI_COMMAND_INTX_DISABLE;
178                 pci_write_config_word(pdev, PCI_COMMAND, pci_command);
179         }
180 }
181
182 static int sis_init_one (struct pci_dev *pdev, const struct pci_device_id *ent)
183 {
184         struct ata_probe_ent *probe_ent = NULL;
185         int rc;
186         u32 genctl;
187
188         rc = pci_enable_device(pdev);
189         if (rc)
190                 return rc;
191
192         rc = pci_request_regions(pdev, DRV_NAME);
193         if (rc)
194                 goto err_out;
195
196         rc = pci_set_dma_mask(pdev, ATA_DMA_MASK);
197         if (rc)
198                 goto err_out_regions;
199         rc = pci_set_consistent_dma_mask(pdev, ATA_DMA_MASK);
200         if (rc)
201                 goto err_out_regions;
202
203         probe_ent = kmalloc(sizeof(*probe_ent), GFP_KERNEL);
204         if (!probe_ent) {
205                 rc = -ENOMEM;
206                 goto err_out_regions;
207         }
208
209         memset(probe_ent, 0, sizeof(*probe_ent));
210         probe_ent->pdev = pdev;
211         INIT_LIST_HEAD(&probe_ent->node);
212
213         probe_ent->sht = &sis_sht;
214         probe_ent->host_flags = ATA_FLAG_SATA | ATA_FLAG_SATA_RESET |
215                                 ATA_FLAG_NO_LEGACY;
216
217         /* check and see if the SCRs are in IO space or PCI cfg space */
218         pci_read_config_dword(pdev, SIS_GENCTL, &genctl);
219         if ((genctl & GENCTL_IOMAPPED_SCR) == 0)
220                 probe_ent->host_flags |= SIS_FLAG_CFGSCR;
221         
222         /* if hardware thinks SCRs are in IO space, but there are
223          * no IO resources assigned, change to PCI cfg space.
224          */
225         if ((!(probe_ent->host_flags & SIS_FLAG_CFGSCR)) &&
226             ((pci_resource_start(pdev, SIS_SCR_PCI_BAR) == 0) ||
227              (pci_resource_len(pdev, SIS_SCR_PCI_BAR) < 128))) {
228                 genctl &= ~GENCTL_IOMAPPED_SCR;
229                 pci_write_config_dword(pdev, SIS_GENCTL, genctl);
230                 probe_ent->host_flags |= SIS_FLAG_CFGSCR;
231         }
232
233         probe_ent->pio_mask = 0x03;
234         probe_ent->udma_mask = 0x7f;
235         probe_ent->port_ops = &sis_ops;
236
237         probe_ent->port[0].cmd_addr = pci_resource_start(pdev, 0);
238         ata_std_ports(&probe_ent->port[0]);
239         probe_ent->port[0].ctl_addr =
240                 pci_resource_start(pdev, 1) | ATA_PCI_CTL_OFS;
241         probe_ent->port[0].bmdma_addr = pci_resource_start(pdev, 4);
242         if (!(probe_ent->host_flags & SIS_FLAG_CFGSCR))
243                 probe_ent->port[0].scr_addr =
244                         pci_resource_start(pdev, SIS_SCR_PCI_BAR);
245
246         probe_ent->port[1].cmd_addr = pci_resource_start(pdev, 2);
247         ata_std_ports(&probe_ent->port[1]);
248         probe_ent->port[1].ctl_addr =
249                 pci_resource_start(pdev, 3) | ATA_PCI_CTL_OFS;
250         probe_ent->port[1].bmdma_addr = pci_resource_start(pdev, 4) + 8;
251         if (!(probe_ent->host_flags & SIS_FLAG_CFGSCR))
252                 probe_ent->port[1].scr_addr =
253                         pci_resource_start(pdev, SIS_SCR_PCI_BAR) + 64;
254
255         probe_ent->n_ports = 2;
256         probe_ent->irq = pdev->irq;
257         probe_ent->irq_flags = SA_SHIRQ;
258
259         pci_set_master(pdev);
260         pci_enable_intx(pdev);
261
262         /* FIXME: check ata_device_add return value */
263         ata_device_add(probe_ent);
264         kfree(probe_ent);
265
266         return 0;
267
268 err_out_regions:
269         pci_release_regions(pdev);
270
271 err_out:
272         pci_disable_device(pdev);
273         return rc;
274
275 }
276
277 static int __init sis_init(void)
278 {
279         return pci_module_init(&sis_pci_driver);
280 }
281
282 static void __exit sis_exit(void)
283 {
284         pci_unregister_driver(&sis_pci_driver);
285 }
286
287
288 module_init(sis_init);
289 module_exit(sis_exit);