-
Notifications
You must be signed in to change notification settings - Fork 54
/
pci.h
38 lines (31 loc) · 934 Bytes
/
pci.h
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
#pragma once
#include <linux/pci.h>
#include <linux/spinlock.h>
#include "mailbox.h"
#include "queue.h"
#include "vhci/vhci.h"
#define BC_PROTOCOL_VERSION 0x20001
#define BCE_MAX_QUEUE_COUNT 0x100
#define BCE_QUEUE_USER_MIN 2
#define BCE_QUEUE_USER_MAX (BCE_MAX_QUEUE_COUNT - 1)
struct bce_device {
struct pci_dev *pci, *pci0;
dev_t devt;
struct device *dev;
void __iomem *reg_mem_mb;
void __iomem *reg_mem_dma;
struct bce_mailbox mbox;
struct bce_timestamp timestamp;
struct bce_queue *queues[BCE_MAX_QUEUE_COUNT];
struct spinlock queues_lock;
struct ida queue_ida;
struct bce_queue_cq *cmd_cq;
struct bce_queue_cmdq *cmd_cmdq;
struct bce_queue_sq *int_sq_list[BCE_MAX_QUEUE_COUNT];
bool is_being_removed;
dma_addr_t saved_data_dma_addr;
void *saved_data_dma_ptr;
size_t saved_data_dma_size;
struct bce_vhci vhci;
};
extern struct bce_device *global_bce;