blob: c88a22c0d93ade82416d0bb66c8a48d1f2897fe2 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Andrew Vasquezfa90c542005-10-27 11:10:08 -07002 * QLogic Fibre Channel HBA Driver
3 * Copyright (c) 2003-2005 QLogic Corporation
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
Andrew Vasquezfa90c542005-10-27 11:10:08 -07005 * See LICENSE.qla2xxx for copyright and licensing details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007#include <linux/init.h>
8#include <linux/module.h>
9#include <linux/pci.h>
10
11#include "qla_def.h"
12
13static char qla_driver_name[] = "qla2322";
14
15extern unsigned char fw2322ipx_version[];
16extern unsigned char fw2322ipx_version_str[];
17extern unsigned short fw2322ipx_addr01;
18extern unsigned short fw2322ipx_code01[];
19extern unsigned short fw2322ipx_length01;
20extern unsigned long rseqipx_code_addr01;
21extern unsigned short rseqipx_code01[];
22extern unsigned short rseqipx_code_length01;
23extern unsigned long xseqipx_code_addr01;
24extern unsigned short xseqipx_code01[];
25extern unsigned short xseqipx_code_length01;
26
27static struct qla_fw_info qla_fw_tbl[] = {
28 {
29 .addressing = FW_INFO_ADDR_NORMAL,
30 .fwcode = &fw2322ipx_code01[0],
31 .fwlen = &fw2322ipx_length01,
32 .fwstart = &fw2322ipx_addr01,
33 },
34 {
35 .addressing = FW_INFO_ADDR_EXTENDED,
36 .fwcode = &rseqipx_code01[0],
37 .fwlen = &rseqipx_code_length01,
38 .lfwstart = &rseqipx_code_addr01,
39 },
40 {
41 .addressing = FW_INFO_ADDR_EXTENDED,
42 .fwcode = &xseqipx_code01[0],
43 .fwlen = &xseqipx_code_length01,
44 .lfwstart = &xseqipx_code_addr01,
45 },
46 { FW_INFO_ADDR_NOMORE, },
47};
48
49static struct qla_board_info qla_board_tbl[] = {
50 {
51 .drv_name = qla_driver_name,
52 .isp_name = "ISP2322",
53 .fw_info = qla_fw_tbl,
54 },
55};
56
57static struct pci_device_id qla2322_pci_tbl[] = {
58 {
59 .vendor = PCI_VENDOR_ID_QLOGIC,
60 .device = PCI_DEVICE_ID_QLOGIC_ISP2322,
61 .subvendor = PCI_ANY_ID,
62 .subdevice = PCI_ANY_ID,
63 .driver_data = (unsigned long)&qla_board_tbl[0],
64 },
65 {0, 0},
66};
67MODULE_DEVICE_TABLE(pci, qla2322_pci_tbl);
68
69static int __devinit
70qla2322_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
71{
72 return qla2x00_probe_one(pdev,
73 (struct qla_board_info *)id->driver_data);
74}
75
76static void __devexit
77qla2322_remove_one(struct pci_dev *pdev)
78{
79 qla2x00_remove_one(pdev);
80}
81
82static struct pci_driver qla2322_pci_driver = {
83 .name = "qla2322",
84 .id_table = qla2322_pci_tbl,
85 .probe = qla2322_probe_one,
86 .remove = __devexit_p(qla2322_remove_one),
87};
88
89static int __init
90qla2322_init(void)
91{
92 return pci_module_init(&qla2322_pci_driver);
93}
94
95static void __exit
96qla2322_exit(void)
97{
98 pci_unregister_driver(&qla2322_pci_driver);
99}
100
101module_init(qla2322_init);
102module_exit(qla2322_exit);
103
104MODULE_AUTHOR("QLogic Corporation");
105MODULE_DESCRIPTION("QLogic ISP2322 FC-SCSI Host Bus Adapter driver");
106MODULE_LICENSE("GPL");
107MODULE_VERSION(QLA2XXX_VERSION);