aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/qlge/qlge_main.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/net/qlge/qlge_main.c')
-rw-r--r--drivers/net/qlge/qlge_main.c64
1 files changed, 64 insertions, 0 deletions
diff --git a/drivers/net/qlge/qlge_main.c b/drivers/net/qlge/qlge_main.c
index b4c6fd7a7616..29334d99b430 100644
--- a/drivers/net/qlge/qlge_main.c
+++ b/drivers/net/qlge/qlge_main.c
@@ -76,6 +76,7 @@ MODULE_PARM_DESC(irq_type, "0 = MSI-X, 1 = MSI, 2 = Legacy.");
76 76
77static struct pci_device_id qlge_pci_tbl[] __devinitdata = { 77static struct pci_device_id qlge_pci_tbl[] __devinitdata = {
78 {PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, QLGE_DEVICE_ID_8012)}, 78 {PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, QLGE_DEVICE_ID_8012)},
79 {PCI_DEVICE(PCI_VENDOR_ID_QLOGIC, QLGE_DEVICE_ID_8000)},
79 /* required last entry */ 80 /* required last entry */
80 {0,} 81 {0,}
81}; 82};
@@ -669,6 +670,57 @@ exit:
669 return status; 670 return status;
670} 671}
671 672
673static int ql_get_8000_flash_params(struct ql_adapter *qdev)
674{
675 u32 i, size;
676 int status;
677 __le32 *p = (__le32 *)&qdev->flash;
678 u32 offset;
679
680 /* Get flash offset for function and adjust
681 * for dword access.
682 */
683 if (!qdev->func)
684 offset = FUNC0_FLASH_OFFSET / sizeof(u32);
685 else
686 offset = FUNC1_FLASH_OFFSET / sizeof(u32);
687
688 if (ql_sem_spinlock(qdev, SEM_FLASH_MASK))
689 return -ETIMEDOUT;
690
691 size = sizeof(struct flash_params_8000) / sizeof(u32);
692 for (i = 0; i < size; i++, p++) {
693 status = ql_read_flash_word(qdev, i+offset, p);
694 if (status) {
695 QPRINTK(qdev, IFUP, ERR, "Error reading flash.\n");
696 goto exit;
697 }
698 }
699
700 status = ql_validate_flash(qdev,
701 sizeof(struct flash_params_8000) / sizeof(u16),
702 "8000");
703 if (status) {
704 QPRINTK(qdev, IFUP, ERR, "Invalid flash.\n");
705 status = -EINVAL;
706 goto exit;
707 }
708
709 if (!is_valid_ether_addr(qdev->flash.flash_params_8000.mac_addr)) {
710 QPRINTK(qdev, IFUP, ERR, "Invalid MAC address.\n");
711 status = -EINVAL;
712 goto exit;
713 }
714
715 memcpy(qdev->ndev->dev_addr,
716 qdev->flash.flash_params_8000.mac_addr,
717 qdev->ndev->addr_len);
718
719exit:
720 ql_sem_unlock(qdev, SEM_FLASH_MASK);
721 return status;
722}
723
672static int ql_get_8012_flash_params(struct ql_adapter *qdev) 724static int ql_get_8012_flash_params(struct ql_adapter *qdev)
673{ 725{
674 int i; 726 int i;
@@ -783,6 +835,11 @@ exit:
783 return status; 835 return status;
784} 836}
785 837
838static int ql_8000_port_initialize(struct ql_adapter *qdev)
839{
840 return ql_mb_get_fw_state(qdev);
841}
842
786/* Take the MAC Core out of reset. 843/* Take the MAC Core out of reset.
787 * Enable statistics counting. 844 * Enable statistics counting.
788 * Take the transmitter/receiver out of reset. 845 * Take the transmitter/receiver out of reset.
@@ -3557,6 +3614,11 @@ static struct nic_operations qla8012_nic_ops = {
3557 .port_initialize = ql_8012_port_initialize, 3614 .port_initialize = ql_8012_port_initialize,
3558}; 3615};
3559 3616
3617static struct nic_operations qla8000_nic_ops = {
3618 .get_flash = ql_get_8000_flash_params,
3619 .port_initialize = ql_8000_port_initialize,
3620};
3621
3560 3622
3561static void ql_get_board_info(struct ql_adapter *qdev) 3623static void ql_get_board_info(struct ql_adapter *qdev)
3562{ 3624{
@@ -3579,6 +3641,8 @@ static void ql_get_board_info(struct ql_adapter *qdev)
3579 qdev->device_id = qdev->pdev->device; 3641 qdev->device_id = qdev->pdev->device;
3580 if (qdev->device_id == QLGE_DEVICE_ID_8012) 3642 if (qdev->device_id == QLGE_DEVICE_ID_8012)
3581 qdev->nic_ops = &qla8012_nic_ops; 3643 qdev->nic_ops = &qla8012_nic_ops;
3644 else if (qdev->device_id == QLGE_DEVICE_ID_8000)
3645 qdev->nic_ops = &qla8000_nic_ops;
3582} 3646}
3583 3647
3584static void ql_release_all(struct pci_dev *pdev) 3648static void ql_release_all(struct pci_dev *pdev)