1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
#ifndef __CCIF_H__
#define __CCIF_H__
// CCIF common macro definition
#define CCIF_INTR_MAX_RE_ENTER_CNT (5)
typedef struct _ccif_statistics
{
unsigned long long irq_cnt;
unsigned int re_enter_cnt;
unsigned int max_re_enter_cnt;
}ccif_statistics_t;
typedef enum {
CCIF_TOP_HALF_RUNNING=0x0,
CCIF_BOTTOM_HALF_RUNNING,
CCIF_CALL_BACK_FUNC_LOCKED,
CCIF_ISR_INFO_CALL_BACK_LOCKED,
} ccif_state_bit_t;
typedef struct
{
unsigned int data[2];
unsigned int channel;
unsigned int reserved;
} ccif_msg_t;
typedef int (*ccif_push_func_t)(ccif_msg_t*);
typedef int (*ccif_notify_funct_t)(void);
typedef struct _ccif
{
unsigned long m_reg_base;
unsigned long m_md_reg_base;
unsigned long m_status;
unsigned int m_rx_idx;
unsigned int m_tx_idx;
unsigned int m_irq_id;
unsigned int m_irq_attr;
unsigned int m_ccif_type;
ccif_statistics_t m_statistics;
spinlock_t m_lock;
void* m_logic_ctl_block;
unsigned int m_irq_dis_cnt;
unsigned int m_md_id;
int (*push_msg)(ccif_msg_t*, void*);
void (*notify_push_done)(void*);
void (*isr_notify)(int);
int (*register_call_back_func)(struct _ccif *, int (*push_func)(ccif_msg_t*, void*), void (*notify_func)(void*));
int (*register_isr_notify_func)(struct _ccif *, void (*additional)(int));
int (*ccif_init)(struct _ccif *);
int (*ccif_de_init)(struct _ccif *);
int (*ccif_register_intr)(struct _ccif *);
int (*ccif_en_intr)(struct _ccif *);
void (*ccif_dis_intr)(struct _ccif *);
int (*ccif_dump_reg)(struct _ccif *, unsigned int buf[], int len);
int (*ccif_read_phy_ch_data)(struct _ccif *, int ch, unsigned int buf[]);
int (*ccif_write_phy_ch_data)(struct _ccif *, unsigned int buf[], int retry_en);
int (*ccif_get_rx_ch)(struct _ccif *);
int (*ccif_get_busy_state)(struct _ccif *);
void (*ccif_set_busy_state)(struct _ccif *, unsigned int val);
int (*ccif_ack_phy_ch)(struct _ccif *, int ch);
int (*ccif_clear_sram)(struct _ccif *);
int (*ccif_write_runtime_data)(struct _ccif *, unsigned int buf[], int len);
int (*ccif_intr_handler)(struct _ccif *);
int (*ccif_reset)(struct _ccif *);
}ccif_t;
//ccif_t* ccif_create_instance(ccif_hw_info_t *info, void* ctl_b, int md_id);
#endif //__CCIF_H__
|