blob: 5be99df7de44c40141ecc2635327c6e2549f00f1 [file] [log] [blame]
/******************************************************************************
*
* Copyright (C) 2010-2012 Broadcom Corporation
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at:
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
******************************************************************************/
/******************************************************************************
*
* This is the private interface file for the NFA system manager.
*
******************************************************************************/
#ifndef NFA_SYS_INT_H
#define NFA_SYS_INT_H
#include "nfa_sys_ptim.h"
/*****************************************************************************
** Constants and data types
*****************************************************************************/
/* nfa_sys flags */
#define NFA_SYS_FL_INITIALIZED 0x00000001 /* nfa_sys initialized */
/*****************************************************************************
** state table
*****************************************************************************/
/* system manager control block */
typedef struct
{
UINT32 flags; /* nfa_sys flags (must be first element of structure) */
tNFA_SYS_REG *reg[NFA_ID_MAX]; /* registration structures */
BOOLEAN is_reg[NFA_ID_MAX]; /* registration structures */
tPTIM_CB ptim_cb; /* protocol timer list */
tNFA_SYS_ENABLE_CBACK *p_enable_cback;
UINT16 enable_cplt_flags;
UINT16 enable_cplt_mask;
tNFA_SYS_PROC_NFCC_PWR_MODE_CMPL *p_proc_nfcc_pwr_mode_cmpl_cback;
UINT16 proc_nfcc_pwr_mode_cplt_flags;
UINT16 proc_nfcc_pwr_mode_cplt_mask;
BOOLEAN graceful_disable; /* TRUE if NFA_Disable () is called with TRUE */
BOOLEAN timers_disabled; /* TRUE if sys timers disabled */
UINT8 trace_level; /* Trace level */
} tNFA_SYS_CB;
/*****************************************************************************
** Global variables
*****************************************************************************/
/* system manager control block */
#if NFA_DYNAMIC_MEMORY == FALSE
extern tNFA_SYS_CB nfa_sys_cb;
#else
extern tNFA_SYS_CB *nfa_sys_cb_ptr;
#define nfa_sys_cb (*nfa_sys_cb_ptr)
#endif
/* system manager configuration structure */
extern tNFA_SYS_CFG *p_nfa_sys_cfg;
BOOLEAN nfa_sys_sm_execute (BT_HDR *p_msg);
#endif /* NFA_SYS_INT_H */