3 * Copyright (c) 2004-2007 Atheros Communications Inc.
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation;
11 * Software distributed under the License is distributed on an "AS
12 * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
13 * implied. See the License for the specific language governing
14 * rights and limitations under the License.
25 #include "htc_packet.h"
29 /* structure that is the state information for the default credit distribution callback
30 * drivers should instantiate (zero-init as well) this structure in their driver instance
31 * and pass it as a context to the HTC credit distribution functions */
32 typedef struct _COMMON_CREDIT_STATE_INFO
{
33 int TotalAvailableCredits
; /* total credits in the system at startup */
34 int CurrentFreeCredits
; /* credits available in the pool that have not been
35 given out to endpoints */
36 HTC_ENDPOINT_CREDIT_DIST
*pLowestPriEpDist
; /* pointer to the lowest priority endpoint dist struct */
37 } COMMON_CREDIT_STATE_INFO
;
40 /* HTC TX packet tagging definitions */
41 #define AR6K_CONTROL_PKT_TAG HTC_TX_PACKET_TAG_USER_DEFINED
42 #define AR6K_DATA_PKT_TAG (AR6K_CONTROL_PKT_TAG + 1)
48 /* OS-independent APIs */
49 A_STATUS
ar6000_setup_credit_dist(HTC_HANDLE HTCHandle
, COMMON_CREDIT_STATE_INFO
*pCredInfo
);
50 A_STATUS
ar6000_ReadRegDiag(HIF_DEVICE
*hifDevice
, A_UINT32
*address
, A_UINT32
*data
);
51 A_STATUS
ar6000_WriteRegDiag(HIF_DEVICE
*hifDevice
, A_UINT32
*address
, A_UINT32
*data
);
52 A_STATUS
ar6000_ReadDataDiag(HIF_DEVICE
*hifDevice
, A_UINT32 address
, A_UCHAR
*data
, A_UINT32 length
);
53 A_STATUS
ar6000_reset_device(HIF_DEVICE
*hifDevice
, A_UINT32 TargetType
);
54 void ar6000_dump_target_assert_info(HIF_DEVICE
*hifDevice
, A_UINT32 TargetType
);
55 A_STATUS
ar6000_reset_device_skipflash(HIF_DEVICE
*hifDevice
);
61 #endif /*COMMON_DRV_H_*/