533 lines
24 KiB
C
533 lines
24 KiB
C
//------------------------------------------------------------------------------
|
|
// ISC License (ISC)
|
|
//
|
|
// Copyright (c) 2004-2010, The Linux Foundation
|
|
// All rights reserved.
|
|
// Software was previously licensed under ISC license by Qualcomm Atheros, Inc.
|
|
//
|
|
//
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
// copyright notice and this permission notice appear in all copies.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
// WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
// MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
// ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
// WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
// ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
// OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
//
|
|
//
|
|
//------------------------------------------------------------------------------
|
|
//==============================================================================
|
|
// HIF specific declarations and prototypes
|
|
//
|
|
// Author(s): ="Atheros"
|
|
//==============================================================================
|
|
#ifndef _HIF_H_
|
|
#define _HIF_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif /* __cplusplus */
|
|
|
|
/* Header files */
|
|
#include "a_config.h"
|
|
#include "athdefs.h"
|
|
#include "a_types.h"
|
|
#include "a_osapi.h"
|
|
#include "dl_list.h"
|
|
|
|
|
|
typedef struct htc_callbacks HTC_CALLBACKS;
|
|
typedef struct hif_device HIF_DEVICE;
|
|
|
|
#define HIF_TYPE_AR6002 2
|
|
#define HIF_TYPE_AR6003 3
|
|
#define HIF_TYPE_MCKINLEY 5
|
|
|
|
/*
|
|
* Thread Priority - AR6K Driver Thread Priority
|
|
* Priority must be > 154, since critical modules like SMD holds the thread priorities
|
|
* upto 154
|
|
*/
|
|
#define HIF_THREAD_PRIORITY 155
|
|
#define AP_THREAD_PRIORITY 200
|
|
|
|
|
|
|
|
|
|
/*
|
|
* direction - Direction of transfer (HIF_READ/HIF_WRITE).
|
|
*/
|
|
#define HIF_READ 0x00000001
|
|
#define HIF_WRITE 0x00000002
|
|
#define HIF_DIR_MASK (HIF_READ | HIF_WRITE)
|
|
|
|
/*
|
|
* type - An interface may support different kind of read/write commands.
|
|
* For example: SDIO supports CMD52/CMD53s. In case of MSIO it
|
|
* translates to using different kinds of TPCs. The command type
|
|
* is thus divided into a basic and an extended command and can
|
|
* be specified using HIF_BASIC_IO/HIF_EXTENDED_IO.
|
|
*/
|
|
#define HIF_BASIC_IO 0x00000004
|
|
#define HIF_EXTENDED_IO 0x00000008
|
|
#define HIF_TYPE_MASK (HIF_BASIC_IO | HIF_EXTENDED_IO)
|
|
|
|
/*
|
|
* emode - This indicates the whether the command is to be executed in a
|
|
* blocking or non-blocking fashion (HIF_SYNCHRONOUS/
|
|
* HIF_ASYNCHRONOUS). The read/write data paths in HTC have been
|
|
* implemented using the asynchronous mode allowing the the bus
|
|
* driver to indicate the completion of operation through the
|
|
* registered callback routine. The requirement primarily comes
|
|
* from the contexts these operations get called from (a driver's
|
|
* transmit context or the ISR context in case of receive).
|
|
* Support for both of these modes is essential.
|
|
*/
|
|
#define HIF_SYNCHRONOUS 0x00000010
|
|
#define HIF_ASYNCHRONOUS 0x00000020
|
|
#define HIF_EMODE_MASK (HIF_SYNCHRONOUS | HIF_ASYNCHRONOUS)
|
|
|
|
/*
|
|
* dmode - An interface may support different kinds of commands based on
|
|
* the tradeoff between the amount of data it can carry and the
|
|
* setup time. Byte and Block modes are supported (HIF_BYTE_BASIS/
|
|
* HIF_BLOCK_BASIS). In case of latter, the data is rounded off
|
|
* to the nearest block size by padding. The size of the block is
|
|
* configurable at compile time using the HIF_BLOCK_SIZE and is
|
|
* negotiated with the target during initialization after the
|
|
* AR6000 interrupts are enabled.
|
|
*/
|
|
#define HIF_BYTE_BASIS 0x00000040
|
|
#define HIF_BLOCK_BASIS 0x00000080
|
|
#define HIF_DMODE_MASK (HIF_BYTE_BASIS | HIF_BLOCK_BASIS)
|
|
|
|
/*
|
|
* amode - This indicates if the address has to be incremented on AR6000
|
|
* after every read/write operation (HIF?FIXED_ADDRESS/
|
|
* HIF_INCREMENTAL_ADDRESS).
|
|
*/
|
|
#define HIF_FIXED_ADDRESS 0x00000100
|
|
#define HIF_INCREMENTAL_ADDRESS 0x00000200
|
|
#define HIF_AMODE_MASK (HIF_FIXED_ADDRESS | HIF_INCREMENTAL_ADDRESS)
|
|
|
|
#define HIF_WR_ASYNC_BYTE_FIX \
|
|
(HIF_WRITE | HIF_ASYNCHRONOUS | HIF_EXTENDED_IO | HIF_BYTE_BASIS | HIF_FIXED_ADDRESS)
|
|
#define HIF_WR_ASYNC_BYTE_INC \
|
|
(HIF_WRITE | HIF_ASYNCHRONOUS | HIF_EXTENDED_IO | HIF_BYTE_BASIS | HIF_INCREMENTAL_ADDRESS)
|
|
#define HIF_WR_ASYNC_BLOCK_INC \
|
|
(HIF_WRITE | HIF_ASYNCHRONOUS | HIF_EXTENDED_IO | HIF_BLOCK_BASIS | HIF_INCREMENTAL_ADDRESS)
|
|
#define HIF_WR_SYNC_BYTE_FIX \
|
|
(HIF_WRITE | HIF_SYNCHRONOUS | HIF_EXTENDED_IO | HIF_BYTE_BASIS | HIF_FIXED_ADDRESS)
|
|
#define HIF_WR_SYNC_BYTE_INC \
|
|
(HIF_WRITE | HIF_SYNCHRONOUS | HIF_EXTENDED_IO | HIF_BYTE_BASIS | HIF_INCREMENTAL_ADDRESS)
|
|
#define HIF_WR_SYNC_BLOCK_INC \
|
|
(HIF_WRITE | HIF_SYNCHRONOUS | HIF_EXTENDED_IO | HIF_BLOCK_BASIS | HIF_INCREMENTAL_ADDRESS)
|
|
#define HIF_WR_ASYNC_BLOCK_FIX \
|
|
(HIF_WRITE | HIF_ASYNCHRONOUS | HIF_EXTENDED_IO | HIF_BLOCK_BASIS | HIF_FIXED_ADDRESS)
|
|
#define HIF_WR_SYNC_BLOCK_FIX \
|
|
(HIF_WRITE | HIF_SYNCHRONOUS | HIF_EXTENDED_IO | HIF_BLOCK_BASIS | HIF_FIXED_ADDRESS)
|
|
#define HIF_RD_SYNC_BYTE_INC \
|
|
(HIF_READ | HIF_SYNCHRONOUS | HIF_EXTENDED_IO | HIF_BYTE_BASIS | HIF_INCREMENTAL_ADDRESS)
|
|
#define HIF_RD_SYNC_BYTE_FIX \
|
|
(HIF_READ | HIF_SYNCHRONOUS | HIF_EXTENDED_IO | HIF_BYTE_BASIS | HIF_FIXED_ADDRESS)
|
|
#define HIF_RD_ASYNC_BYTE_FIX \
|
|
(HIF_READ | HIF_ASYNCHRONOUS | HIF_EXTENDED_IO | HIF_BYTE_BASIS | HIF_FIXED_ADDRESS)
|
|
#define HIF_RD_ASYNC_BLOCK_FIX \
|
|
(HIF_READ | HIF_ASYNCHRONOUS | HIF_EXTENDED_IO | HIF_BLOCK_BASIS | HIF_FIXED_ADDRESS)
|
|
#define HIF_RD_ASYNC_BYTE_INC \
|
|
(HIF_READ | HIF_ASYNCHRONOUS | HIF_EXTENDED_IO | HIF_BYTE_BASIS | HIF_INCREMENTAL_ADDRESS)
|
|
#define HIF_RD_ASYNC_BLOCK_INC \
|
|
(HIF_READ | HIF_ASYNCHRONOUS | HIF_EXTENDED_IO | HIF_BLOCK_BASIS | HIF_INCREMENTAL_ADDRESS)
|
|
#define HIF_RD_SYNC_BLOCK_INC \
|
|
(HIF_READ | HIF_SYNCHRONOUS | HIF_EXTENDED_IO | HIF_BLOCK_BASIS | HIF_INCREMENTAL_ADDRESS)
|
|
#define HIF_RD_SYNC_BLOCK_FIX \
|
|
(HIF_READ | HIF_SYNCHRONOUS | HIF_EXTENDED_IO | HIF_BLOCK_BASIS | HIF_FIXED_ADDRESS)
|
|
|
|
typedef enum {
|
|
HIF_DEVICE_POWER_STATE = 0,
|
|
HIF_DEVICE_GET_MBOX_BLOCK_SIZE,
|
|
HIF_DEVICE_GET_MBOX_ADDR,
|
|
HIF_DEVICE_GET_PENDING_EVENTS_FUNC,
|
|
HIF_DEVICE_GET_IRQ_PROC_MODE,
|
|
HIF_DEVICE_GET_RECV_EVENT_MASK_UNMASK_FUNC,
|
|
HIF_DEVICE_POWER_STATE_CHANGE,
|
|
HIF_DEVICE_GET_IRQ_YIELD_PARAMS,
|
|
HIF_CONFIGURE_QUERY_SCATTER_REQUEST_SUPPORT,
|
|
HIF_DEVICE_GET_OS_DEVICE,
|
|
HIF_DEVICE_DEBUG_BUS_STATE,
|
|
} HIF_DEVICE_CONFIG_OPCODE;
|
|
|
|
/*
|
|
* HIF CONFIGURE definitions:
|
|
*
|
|
* HIF_DEVICE_GET_MBOX_BLOCK_SIZE
|
|
* input : none
|
|
* output : array of 4 A_UINT32s
|
|
* notes: block size is returned for each mailbox (4)
|
|
*
|
|
* HIF_DEVICE_GET_MBOX_ADDR
|
|
* input : none
|
|
* output : HIF_DEVICE_MBOX_INFO
|
|
* notes:
|
|
*
|
|
* HIF_DEVICE_GET_PENDING_EVENTS_FUNC
|
|
* input : none
|
|
* output: HIF_PENDING_EVENTS_FUNC function pointer
|
|
* notes: this is optional for the HIF layer, if the request is
|
|
* not handled then it indicates that the upper layer can use
|
|
* the standard device methods to get pending events (IRQs, mailbox messages etc..)
|
|
* otherwise it can call the function pointer to check pending events.
|
|
*
|
|
* HIF_DEVICE_GET_IRQ_PROC_MODE
|
|
* input : none
|
|
* output : HIF_DEVICE_IRQ_PROCESSING_MODE (interrupt processing mode)
|
|
* note: the hif layer interfaces with the underlying OS-specific bus driver. The HIF
|
|
* layer can report whether IRQ processing is requires synchronous behavior or
|
|
* can be processed using asynchronous bus requests (typically faster).
|
|
*
|
|
* HIF_DEVICE_GET_RECV_EVENT_MASK_UNMASK_FUNC
|
|
* input :
|
|
* output : HIF_MASK_UNMASK_RECV_EVENT function pointer
|
|
* notes: this is optional for the HIF layer. The HIF layer may require a special mechanism
|
|
* to mask receive message events. The upper layer can call this pointer when it needs
|
|
* to mask/unmask receive events (in case it runs out of buffers).
|
|
*
|
|
* HIF_DEVICE_POWER_STATE_CHANGE
|
|
*
|
|
* input : HIF_DEVICE_POWER_CHANGE_TYPE
|
|
* output : none
|
|
* note: this is optional for the HIF layer. The HIF layer can handle power on/off state change
|
|
* requests in an interconnect specific way. This is highly OS and bus driver dependent.
|
|
* The caller must guarantee that no HIF read/write requests will be made after the device
|
|
* is powered down.
|
|
*
|
|
* HIF_DEVICE_GET_IRQ_YIELD_PARAMS
|
|
*
|
|
* input : none
|
|
* output : HIF_DEVICE_IRQ_YIELD_PARAMS
|
|
* note: This query checks if the HIF layer wishes to impose a processing yield count for the DSR handler.
|
|
* The DSR callback handler will exit after a fixed number of RX packets or events are processed.
|
|
* This query is only made if the device reports an IRQ processing mode of HIF_DEVICE_IRQ_SYNC_ONLY.
|
|
* The HIF implementation can ignore this command if it does not desire the DSR callback to yield.
|
|
* The HIF layer can indicate the maximum number of IRQ processing units (RX packets) before the
|
|
* DSR handler callback must yield and return control back to the HIF layer. When a yield limit is
|
|
* used the DSR callback will not call HIFAckInterrupts() as it would normally do before returning.
|
|
* The HIF implementation that requires a yield count must call HIFAckInterrupt() when it is prepared
|
|
* to process interrupts again.
|
|
*
|
|
* HIF_CONFIGURE_QUERY_SCATTER_REQUEST_SUPPORT
|
|
* input : none
|
|
* output : HIF_DEVICE_SCATTER_SUPPORT_INFO
|
|
* note: This query checks if the HIF layer implements the SCATTER request interface. Scatter requests
|
|
* allows upper layers to submit mailbox I/O operations using a list of buffers. This is useful for
|
|
* multi-message transfers that can better utilize the bus interconnect.
|
|
*
|
|
*
|
|
* HIF_DEVICE_GET_OS_DEVICE
|
|
* intput : none
|
|
* output : HIF_DEVICE_OS_DEVICE_INFO;
|
|
* note: On some operating systems, the HIF layer has a parent device object for the bus. This object
|
|
* may be required to register certain types of logical devices.
|
|
*
|
|
* HIF_DEVICE_DEBUG_BUS_STATE
|
|
* input : none
|
|
* output : none
|
|
* note: This configure option triggers the HIF interface to dump as much bus interface state. This
|
|
* configuration request is optional (No-OP on some HIF implementations)
|
|
*
|
|
*/
|
|
|
|
typedef struct {
|
|
A_UINT32 ExtendedAddress; /* extended address for larger writes */
|
|
A_UINT32 ExtendedSize;
|
|
} HIF_MBOX_PROPERTIES;
|
|
|
|
#define HIF_MBOX_FLAG_NO_BUNDLING (1 << 0) /* do not allow bundling over the mailbox */
|
|
|
|
typedef struct {
|
|
A_UINT32 MboxAddresses[4]; /* must be first element for legacy HIFs that return the address in
|
|
and ARRAY of 32-bit words */
|
|
|
|
/* the following describe extended mailbox properties */
|
|
HIF_MBOX_PROPERTIES MboxProp[4];
|
|
/* if the HIF supports the GMbox extended address region it can report it
|
|
* here, some interfaces cannot support the GMBOX address range and not set this */
|
|
A_UINT32 GMboxAddress;
|
|
A_UINT32 GMboxSize;
|
|
A_UINT32 Flags; /* flags to describe mbox behavior or usage */
|
|
} HIF_DEVICE_MBOX_INFO;
|
|
|
|
typedef enum {
|
|
HIF_DEVICE_IRQ_SYNC_ONLY, /* for HIF implementations that require the DSR to process all
|
|
interrupts before returning */
|
|
HIF_DEVICE_IRQ_ASYNC_SYNC, /* for HIF implementations that allow DSR to process interrupts
|
|
using ASYNC I/O (that is HIFAckInterrupt can be called at a
|
|
later time */
|
|
} HIF_DEVICE_IRQ_PROCESSING_MODE;
|
|
|
|
typedef enum {
|
|
HIF_DEVICE_POWER_UP, /* HIF layer should power up interface and/or module */
|
|
HIF_DEVICE_POWER_DOWN, /* HIF layer should initiate bus-specific measures to minimize power */
|
|
HIF_DEVICE_POWER_CUT /* HIF layer should initiate bus-specific AND/OR platform-specific measures
|
|
to completely power-off the module and associated hardware (i.e. cut power supplies)
|
|
*/
|
|
} HIF_DEVICE_POWER_CHANGE_TYPE;
|
|
|
|
typedef struct {
|
|
int RecvPacketYieldCount; /* max number of packets to force DSR to return */
|
|
} HIF_DEVICE_IRQ_YIELD_PARAMS;
|
|
|
|
|
|
typedef struct _HIF_SCATTER_ITEM {
|
|
A_UINT8 *pBuffer; /* CPU accessible address of buffer */
|
|
int Length; /* length of transfer to/from this buffer */
|
|
void *pCallerContexts[2]; /* space for caller to insert a context associated with this item */
|
|
} HIF_SCATTER_ITEM;
|
|
|
|
struct _HIF_SCATTER_REQ;
|
|
|
|
typedef void ( *HIF_SCATTER_COMP_CB)(struct _HIF_SCATTER_REQ *);
|
|
|
|
typedef enum _HIF_SCATTER_METHOD {
|
|
HIF_SCATTER_NONE = 0,
|
|
HIF_SCATTER_DMA_REAL, /* Real SG support no restrictions */
|
|
HIF_SCATTER_DMA_BOUNCE, /* Uses SG DMA but HIF layer uses an internal bounce buffer */
|
|
} HIF_SCATTER_METHOD;
|
|
|
|
typedef struct _HIF_SCATTER_REQ {
|
|
DL_LIST ListLink; /* link management */
|
|
A_UINT32 Address; /* address for the read/write operation */
|
|
A_UINT32 Request; /* request flags */
|
|
A_UINT32 TotalLength; /* total length of entire transfer */
|
|
A_UINT32 CallerFlags; /* caller specific flags can be stored here */
|
|
HIF_SCATTER_COMP_CB CompletionRoutine; /* completion routine set by caller */
|
|
A_STATUS CompletionStatus; /* status of completion */
|
|
void *Context; /* caller context for this request */
|
|
int ValidScatterEntries; /* number of valid entries set by caller */
|
|
HIF_SCATTER_METHOD ScatterMethod; /* scatter method handled by HIF */
|
|
void *HIFPrivate[4]; /* HIF private area */
|
|
A_UINT8 *pScatterBounceBuffer; /* bounce buffer for upper layers to copy to/from */
|
|
HIF_SCATTER_ITEM ScatterList[1]; /* start of scatter list */
|
|
} HIF_SCATTER_REQ;
|
|
|
|
typedef HIF_SCATTER_REQ * ( *HIF_ALLOCATE_SCATTER_REQUEST)(HIF_DEVICE *device);
|
|
typedef void ( *HIF_FREE_SCATTER_REQUEST)(HIF_DEVICE *device, HIF_SCATTER_REQ *request);
|
|
typedef A_STATUS ( *HIF_READWRITE_SCATTER)(HIF_DEVICE *device, HIF_SCATTER_REQ *request);
|
|
|
|
typedef struct _HIF_DEVICE_SCATTER_SUPPORT_INFO {
|
|
/* information returned from HIF layer */
|
|
HIF_ALLOCATE_SCATTER_REQUEST pAllocateReqFunc;
|
|
HIF_FREE_SCATTER_REQUEST pFreeReqFunc;
|
|
HIF_READWRITE_SCATTER pReadWriteScatterFunc;
|
|
int MaxScatterEntries;
|
|
int MaxTransferSizePerScatterReq;
|
|
} HIF_DEVICE_SCATTER_SUPPORT_INFO;
|
|
|
|
typedef struct {
|
|
void *pOSDevice;
|
|
} HIF_DEVICE_OS_DEVICE_INFO;
|
|
|
|
#define HIF_MAX_DEVICES 1
|
|
|
|
struct htc_callbacks {
|
|
void *context; /* context to pass to the dsrhandler
|
|
note : rwCompletionHandler is provided the context passed to HIFReadWrite */
|
|
A_STATUS (* rwCompletionHandler)(void *rwContext, A_STATUS status);
|
|
A_STATUS (* dsrHandler)(void *context);
|
|
};
|
|
|
|
typedef struct osdrv_callbacks {
|
|
void *context; /* context to pass for all callbacks except deviceRemovedHandler
|
|
the deviceRemovedHandler is only called if the device is claimed */
|
|
A_STATUS (* deviceInsertedHandler)(void *context, void *hif_handle);
|
|
A_STATUS (* deviceRemovedHandler)(void *claimedContext, void *hif_handle);
|
|
A_STATUS (* deviceSuspendHandler)(void *context);
|
|
A_STATUS (* deviceResumeHandler)(void *context);
|
|
A_STATUS (* deviceWakeupHandler)(void *context);
|
|
A_STATUS (* devicePowerChangeHandler)(void *context, HIF_DEVICE_POWER_CHANGE_TYPE config);
|
|
} OSDRV_CALLBACKS;
|
|
|
|
#define HIF_OTHER_EVENTS (1 << 0) /* other interrupts (non-Recv) are pending, host
|
|
needs to read the register table to figure out what */
|
|
#define HIF_RECV_MSG_AVAIL (1 << 1) /* pending recv packet */
|
|
|
|
typedef struct _HIF_PENDING_EVENTS_INFO {
|
|
A_UINT32 Events;
|
|
A_UINT32 LookAhead;
|
|
A_UINT32 AvailableRecvBytes;
|
|
} HIF_PENDING_EVENTS_INFO;
|
|
|
|
/* function to get pending events , some HIF modules use special mechanisms
|
|
* to detect packet available and other interrupts */
|
|
typedef A_STATUS ( *HIF_PENDING_EVENTS_FUNC)(HIF_DEVICE *device,
|
|
HIF_PENDING_EVENTS_INFO *pEvents,
|
|
void *AsyncContext);
|
|
|
|
#define HIF_MASK_RECV TRUE
|
|
#define HIF_UNMASK_RECV FALSE
|
|
/* function to mask recv events */
|
|
typedef A_STATUS ( *HIF_MASK_UNMASK_RECV_EVENT)(HIF_DEVICE *device,
|
|
A_BOOL Mask,
|
|
void *AsyncContext);
|
|
|
|
|
|
/*
|
|
* This API is used to perform any global initialization of the HIF layer
|
|
* and to set OS driver callbacks (i.e. insertion/removal) to the HIF layer
|
|
*
|
|
*/
|
|
A_STATUS HIFInit(OSDRV_CALLBACKS *callbacks);
|
|
|
|
/* This API claims the HIF device and provides a context for handling removal.
|
|
* The device removal callback is only called when the OSDRV layer claims
|
|
* a device. The claimed context must be non-NULL */
|
|
void HIFClaimDevice(HIF_DEVICE *device, void *claimedContext);
|
|
/* release the claimed device */
|
|
void HIFReleaseDevice(HIF_DEVICE *device);
|
|
|
|
/* This API allows the HTC layer to attach to the HIF device */
|
|
A_STATUS HIFAttachHTC(HIF_DEVICE *device, HTC_CALLBACKS *callbacks);
|
|
/* This API detaches the HTC layer from the HIF device */
|
|
void HIFDetachHTC(HIF_DEVICE *device);
|
|
|
|
/*
|
|
* This API is used to provide the read/write interface over the specific bus
|
|
* interface.
|
|
* address - Starting address in the AR6000's address space. For mailbox
|
|
* writes, it refers to the start of the mbox boundary. It should
|
|
* be ensured that the last byte falls on the mailbox's EOM. For
|
|
* mailbox reads, it refers to the end of the mbox boundary.
|
|
* buffer - Pointer to the buffer containg the data to be transmitted or
|
|
* received.
|
|
* length - Amount of data to be transmitted or received.
|
|
* request - Characterizes the attributes of the command.
|
|
*/
|
|
A_STATUS
|
|
HIFReadWrite(HIF_DEVICE *device,
|
|
A_UINT32 address,
|
|
A_UCHAR *buffer,
|
|
A_UINT32 length,
|
|
A_UINT32 request,
|
|
void *context);
|
|
|
|
/*
|
|
* This can be initiated from the unload driver context when the OSDRV layer has no more use for
|
|
* the device.
|
|
*/
|
|
void HIFShutDownDevice(HIF_DEVICE *device);
|
|
|
|
/*
|
|
* This should translate to an acknowledgment to the bus driver indicating that
|
|
* the previous interrupt request has been serviced and the all the relevant
|
|
* sources have been cleared. HTC is ready to process more interrupts.
|
|
* This should prevent the bus driver from raising an interrupt unless the
|
|
* previous one has been serviced and acknowledged using the previous API.
|
|
*/
|
|
void HIFAckInterrupt(HIF_DEVICE *device);
|
|
|
|
void HIFMaskInterrupt(HIF_DEVICE *device);
|
|
|
|
void HIFUnMaskInterrupt(HIF_DEVICE *device);
|
|
|
|
A_STATUS
|
|
HIFConfigureDevice(HIF_DEVICE *device, HIF_DEVICE_CONFIG_OPCODE opcode,
|
|
void *config, A_UINT32 configLen);
|
|
|
|
/*
|
|
* This API wait for the remaining MBOX messages to be drained
|
|
* This should be moved to HTC AR6K layer
|
|
*/
|
|
A_STATUS hifWaitForPendingRecv(HIF_DEVICE *device);
|
|
|
|
/****************************************************************/
|
|
/* message based HIF interfaces */
|
|
/****************************************************************/
|
|
|
|
#define HIF_BMI_EXCHANGE_NO_TIMEOUT ((A_UINT32)(0))
|
|
|
|
struct _HIF_MSG_OBJ;
|
|
|
|
typedef void (* HIF_MSG_RECV_CALLBACK)(void *, struct _HIF_MSG_OBJ *);
|
|
typedef void (* HIF_MSG_REQ_COMPLETION)(void *,struct _HIF_MSG_OBJ *);
|
|
|
|
typedef enum {
|
|
HIF_MSG_SIMPLE_BUFFER = 0, /* a simple buffer ptr and length */
|
|
HIF_MSG_NET_BUFFER = 1 /* advanced OS-specific network buffer */
|
|
} HIF_MSG_BUFFER_TYPE;
|
|
|
|
/* object to pass HIF message requests from upper layers */
|
|
typedef struct _HIF_MSG_OBJ {
|
|
DL_LIST ListLink; /* for list management */
|
|
A_INT32 PipeId; /* pipe number to send on or recv'd from*/
|
|
HIF_MSG_BUFFER_TYPE BufferType;
|
|
union {
|
|
struct HIF_MSG_NET_BUFFER {
|
|
void *pAppNetBuf; /* OS-specific net buf */
|
|
} AsNetBuffer;
|
|
struct HIF_MSG_SIMPLE_BUFFER {
|
|
void *pBuffer; /* for future use.... */
|
|
A_UINT32 Length;
|
|
} AsSimpleBuffer;
|
|
} BufferInfo;
|
|
void *pContext; /* caller context of message */
|
|
HIF_MSG_REQ_COMPLETION CompletionRoutine; /* completion routine */
|
|
A_STATUS Status; /* completion status */
|
|
A_UINT32 Flags; /* request flags */
|
|
void *HIFPriv[4]; /* private contexts for HIF layer to use */
|
|
|
|
} HIF_MSG_OBJ;
|
|
|
|
/* API to handle HIF-specific BMI message exchanges, this API is synchronous
|
|
* and only allowed to be called from a context that can block (sleep) */
|
|
A_STATUS HIFExchangeBMIMsg(HIF_DEVICE *device,
|
|
A_UINT8 *pSendMessage,
|
|
A_UINT32 Length,
|
|
A_UINT8 *pResponseMessage,
|
|
A_UINT32 *pResponseLength,
|
|
A_UINT32 TimeoutMS);
|
|
|
|
/* API to handle HIF specific diagnostic window read accesses, this API is synchronous
|
|
* and only allowed to be called from a context that can block (sleep) */
|
|
A_STATUS HIFDiagReadAccess(HIF_DEVICE *hifDevice, A_UINT32 address, A_UINT32 *data);
|
|
|
|
/* API to handle HIF specific diagnostic window write accesses, this API is synchronous
|
|
* and only allowed to be called from a context that can block (sleep) */
|
|
A_STATUS HIFDiagWriteAccess(HIF_DEVICE *hifDevice, A_UINT32 address, A_UINT32 data);
|
|
|
|
/* get the Pipe ID associated with the service ID */
|
|
A_STATUS HIFGetPipeId(HIF_DEVICE *hifDevice, A_UINT16 ServiceId, A_INT32 *pId);
|
|
|
|
/* API to let HIF layer know that pipe communications should be enabled
|
|
* caller will start to exchange messages on service pipes */
|
|
A_STATUS HIFEnablePipes(HIF_DEVICE *hifDevice);
|
|
|
|
/* set the message recv handler for all incomming messages */
|
|
void HIFSetMsgRecvHandler(HIF_DEVICE *hifDevice,
|
|
HIF_MSG_RECV_CALLBACK Callback,
|
|
void *pContext);
|
|
|
|
/* upper layers should return the HIF_MSG_OBJ back to HIF as it may be associated
|
|
* with some recv resource. The objects could be returned in a chain (batch mode)
|
|
* Note, upper layers can take ownership of the buffer (free it) if it is of the type
|
|
* HIF_MSG_NET_BUFFER, in this case upper layers will set
|
|
* BufferInfo.AsNetBuffer.pAppNetBuf to NULL */
|
|
void HIFReturnRecvMsgObjects(HIF_DEVICE *hifDevice, HIF_MSG_OBJ *pMessageObj);
|
|
|
|
/* API for upper layers to send one or more messages. Note, HIF may
|
|
* take ownership of the buffer (it will free it) if it is of the type
|
|
* HIF_MSG_NET_BUFFER, in this case the HIF layer will set
|
|
* BufferInfo.AsNetBuffer.pAppNetBuf to NULL */
|
|
A_STATUS HIFSendMessages(HIF_DEVICE *hifDevice, HIF_MSG_OBJ *pMessages);
|
|
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _HIF_H_ */
|
|
|