2020-12-05 11:42:54 +00:00
|
|
|
/** @file moal_pcie.h
|
|
|
|
*
|
|
|
|
* @brief This file contains definitions for PCIE interface.
|
|
|
|
* driver.
|
|
|
|
*
|
|
|
|
*
|
2022-08-31 02:00:56 +00:00
|
|
|
* Copyright 2014-2021 NXP
|
2020-12-05 11:42:54 +00:00
|
|
|
*
|
2022-08-31 02:00:56 +00:00
|
|
|
* This software file (the File) is distributed by NXP
|
|
|
|
* under the terms of the GNU General Public License Version 2, June 1991
|
|
|
|
* (the License). You may use, redistribute and/or modify the File in
|
|
|
|
* accordance with the terms and conditions of the License, a copy of which
|
|
|
|
* is available by writing to the Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA or on the
|
|
|
|
* worldwide web at http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt.
|
2020-12-05 11:42:54 +00:00
|
|
|
*
|
2022-08-31 02:00:56 +00:00
|
|
|
* THE FILE IS DISTRIBUTED AS-IS, WITHOUT WARRANTY OF ANY KIND, AND THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE EXPRESSLY DISCLAIMED. The License provides additional details about
|
|
|
|
* this warranty disclaimer.
|
2020-12-05 11:42:54 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
/********************************************************
|
|
|
|
Change log:
|
|
|
|
02/01/2012: initial version
|
|
|
|
********************************************************/
|
|
|
|
|
|
|
|
#ifndef _MOAL_PCIE_H_
|
|
|
|
#define _MOAL_PCIE_H_
|
|
|
|
|
2022-04-19 06:46:37 +00:00
|
|
|
#define PCIE_VENDOR_ID_MRVL (0x11ab)
|
|
|
|
#define PCIE_VENDOR_ID_V2_MRVL (0x1b4b)
|
|
|
|
#define PCIE_VENDOR_ID_NXP (0x1131)
|
|
|
|
|
2020-12-05 11:42:54 +00:00
|
|
|
#ifdef PCIE8997
|
|
|
|
/** PCIE device ID for 8997 card */
|
2022-04-19 06:46:37 +00:00
|
|
|
#define PCIE_DEVICE_ID_88W8997P (0x2b42)
|
2020-12-05 11:42:54 +00:00
|
|
|
#endif
|
|
|
|
#ifdef PCIE8897
|
|
|
|
/** PCIE device ID for 8897 card */
|
2022-04-19 06:46:37 +00:00
|
|
|
#define PCIE_DEVICE_ID_88W8897P (0x2b38)
|
2020-12-05 11:42:54 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef PCIE9097
|
|
|
|
/** PCIE device ID for 9097 card */
|
2022-04-19 06:46:37 +00:00
|
|
|
#define PCIE_DEVICE_ID_88W9097 (0x2b56)
|
2020-12-05 11:42:54 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/** PCIE device ID for 9098 card FN0 */
|
2022-04-19 06:46:37 +00:00
|
|
|
#define PCIE_DEVICE_ID_88W9098P_FN0 (0x2b43)
|
2020-12-05 11:42:54 +00:00
|
|
|
/** PCIE device ID for 9098 card FN1 */
|
2022-04-19 06:46:37 +00:00
|
|
|
#define PCIE_DEVICE_ID_88W9098P_FN1 (0x2b44)
|
|
|
|
|
2023-04-18 04:54:05 +00:00
|
|
|
#ifdef PCIEIW62X
|
|
|
|
/** PCIE device ID for IW62X card FN0 */
|
|
|
|
#define PCIE_DEVICE_ID_88WIW62X (0x3000)
|
2020-12-05 11:42:54 +00:00
|
|
|
#endif
|
|
|
|
|
2023-04-18 04:54:05 +00:00
|
|
|
/** PCIE device ID for AW693 card FN0 */
|
|
|
|
#define PCIE_DEVICE_ID_88WAW693_FN0 (0x3003)
|
|
|
|
/** PCIE device ID for AW693 card FN1 */
|
|
|
|
#define PCIE_DEVICE_ID_88WAW693_FN1 (0x3004)
|
|
|
|
|
2020-12-05 11:42:54 +00:00
|
|
|
#include <linux/version.h>
|
|
|
|
#include <linux/pci.h>
|
|
|
|
#if LINUX_VERSION_CODE < KERNEL_VERSION(4, 17, 0)
|
|
|
|
#include <linux/pcieport_if.h>
|
|
|
|
#endif
|
|
|
|
#include <linux/interrupt.h>
|
|
|
|
|
|
|
|
#include "moal_main.h"
|
|
|
|
|
|
|
|
/** Default firmware name */
|
|
|
|
#ifdef PCIE8997
|
|
|
|
#define PCIE8997_DEFAULT_COMBO_FW_NAME "nxp/pcieusb8997_combo_v4.bin"
|
|
|
|
#define PCIEUART8997_DEFAULT_COMBO_FW_NAME "nxp/pcieuart8997_combo_v4.bin"
|
|
|
|
#define PCIEUSB8997_DEFAULT_COMBO_FW_NAME "nxp/pcieusb8997_combo_v4.bin"
|
|
|
|
#define PCIE8997_DEFAULT_WLAN_FW_NAME "nxp/pcie8997_wlan_v4.bin"
|
|
|
|
/** PCIE8997 chip revision ID */
|
|
|
|
#define PCIE8997_A0 0x10
|
|
|
|
#define PCIE8997_A1 0x11
|
|
|
|
#endif /* PCIE8997 */
|
|
|
|
|
|
|
|
#ifdef PCIE8897
|
|
|
|
#define PCIE8897_DEFAULT_COMBO_FW_NAME "nxp/pcie8897_uapsta.bin"
|
|
|
|
#define PCIE8897_DEFAULT_WLAN_FW_NAME "nxp/pcie8897_wlan.bin"
|
|
|
|
#endif /* PCIE8897*/
|
|
|
|
|
2023-04-18 04:54:05 +00:00
|
|
|
#define PCIEUARTAW693_DEFAULT_COMBO_FW_NAME "nxp/pcieuartAW693_combo.bin"
|
|
|
|
#define PCIEAW693_DEFAULT_COMBO_FW_NAME "nxp/pcieAW693_wlan.bin"
|
|
|
|
#define PCIEAW693_DEFAULT_WLAN_FW_NAME "nxp/pcieAW693_wlan.bin"
|
|
|
|
|
2020-12-05 11:42:54 +00:00
|
|
|
#ifdef PCIE9098
|
|
|
|
#define PCIE9098_Z1Z2 0x00
|
|
|
|
#define PCIE9098_A0 0x01
|
|
|
|
#define PCIE9098_A1 0x02
|
|
|
|
#define PCIE9098_A2 0x03
|
|
|
|
#define PCIE9098_DEFAULT_COMBO_FW_NAME "nxp/pcieusb9098_combo.bin"
|
|
|
|
#define PCIEUART9098_DEFAULT_COMBO_FW_NAME "nxp/pcieuart9098_combo.bin"
|
|
|
|
#define PCIEUSB9098_DEFAULT_COMBO_FW_NAME "nxp/pcieusb9098_combo.bin"
|
|
|
|
#define PCIEPCIE9098_DEFAULT_COMBO_FW_NAME "nxp/pciepcie9098_combo.bin"
|
|
|
|
#define PCIEUART9098_COMBO_V1_FW_NAME "nxp/pcieuart9098_combo_v1.bin"
|
|
|
|
#define PCIEUSB9098_COMBO_V1_FW_NAME "nxp/pcieusb9098_combo_v1.bin"
|
|
|
|
#define PCIEPCIE9098_COMBO_V1_FW_NAME "nxp/pciepcie9098_combo_v1.bin"
|
|
|
|
#define PCIE9098_DEFAULT_WLAN_FW_NAME "nxp/pcie9098_wlan.bin"
|
|
|
|
#define PCIE9098_WLAN_V1_FW_NAME "nxp/pcie9098_wlan_v1.bin"
|
|
|
|
#endif /* PCIE9098 */
|
|
|
|
|
|
|
|
#ifdef PCIE9097
|
|
|
|
#define PCIE9097_A0 0x00
|
|
|
|
#define PCIE9097_B0 0x01
|
|
|
|
#define PCIE9097_B1 0x02
|
2021-07-18 09:43:16 +00:00
|
|
|
#define PCIE9097_DEFAULT_COMBO_FW_NAME "nxp/pcieusbiw620_combo.bin"
|
|
|
|
#define PCIEUART9097_DEFAULT_COMBO_FW_NAME "nxp/pcieuartiw620_combo.bin"
|
|
|
|
#define PCIEUSB9097_DEFAULT_COMBO_FW_NAME "nxp/pcieusbiw620_combo.bin"
|
|
|
|
#define PCIEUART9097_COMBO_V1_FW_NAME "nxp/pcieuartiw620_combo_v1.bin"
|
|
|
|
#define PCIEUSB9097_COMBO_V1_FW_NAME "nxp/pcieusbiw620_combo_v1.bin"
|
|
|
|
#define PCIE9097_DEFAULT_WLAN_FW_NAME "nxp/pcieiw620_wlan.bin"
|
|
|
|
#define PCIE9097_WLAN_V1_FW_NAME "nxp/pcieiw620_wlan_v1.bin"
|
2020-12-05 11:42:54 +00:00
|
|
|
#endif /* PCIE9097 */
|
|
|
|
|
2023-04-18 04:54:05 +00:00
|
|
|
#ifdef PCIEIW62X
|
|
|
|
#define PCIEIW62X_DEFAULT_COMBO_FW_NAME "nxp/pcieusbiw62x_combo.bin"
|
|
|
|
#define PCIEUARTIW62X_DEFAULT_COMBO_FW_NAME "nxp/pcieuartiw62x_combo.bin"
|
|
|
|
#define PCIEUSBIW62X_DEFAULT_COMBO_FW_NAME "nxp/pcieusbiw62x_combo.bin"
|
|
|
|
#define PCIEIW62X_DEFAULT_WLAN_FW_NAME "nxp/pcieiw62x_wlan.bin"
|
|
|
|
#endif /* PCIEIW62X */
|
2022-04-19 06:46:37 +00:00
|
|
|
|
2020-12-05 11:42:54 +00:00
|
|
|
#define PCIE_NUM_MSIX_VECTORS 32
|
|
|
|
|
|
|
|
typedef struct _msix_context {
|
|
|
|
/** pci_dev structure pointer */
|
|
|
|
struct pci_dev *dev;
|
|
|
|
/** message id related to msix vector */
|
|
|
|
t_u16 msg_id;
|
|
|
|
} msix_context;
|
|
|
|
|
|
|
|
/** Structure: PCIE service card */
|
|
|
|
typedef struct _pcie_service_card {
|
|
|
|
/** pci_dev structure pointer */
|
|
|
|
struct pci_dev *dev;
|
|
|
|
/** moal_handle structure pointer */
|
|
|
|
moal_handle *handle;
|
|
|
|
/** I/O memory regions pointer to the bus */
|
|
|
|
void __iomem *pci_mmap;
|
|
|
|
/** I/O memory regions pointer to the bus */
|
|
|
|
void __iomem *pci_mmap1;
|
|
|
|
#if defined(PCIE)
|
|
|
|
struct msix_entry msix_entries[PCIE_NUM_MSIX_VECTORS];
|
|
|
|
msix_context msix_contexts[PCIE_NUM_MSIX_VECTORS];
|
|
|
|
#endif
|
|
|
|
} pcie_service_card, *ppcie_service_card;
|
|
|
|
|
|
|
|
/** Register to bus driver function */
|
|
|
|
mlan_status woal_pcie_bus_register(void);
|
|
|
|
/** Unregister from bus driver function */
|
|
|
|
void woal_pcie_bus_unregister(void);
|
2021-04-01 03:15:14 +00:00
|
|
|
|
2020-12-05 11:42:54 +00:00
|
|
|
#endif /* _MOAL_PCIE_H_ */
|