hc
2023-02-13 e440ec23c5a540cdd3f7464e8779219be6fd3d95
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
#ifndef P54PCI_H
#define P54PCI_H
#include <linux/interrupt.h>
 
/*
 * Defines for PCI based mac80211 Prism54 driver
 *
 * Copyright (c) 2006, Michael Wu <flamingice@sourmilk.net>
 *
 * Based on the islsm (softmac prism54) driver, which is:
 * Copyright 2004-2006 Jean-Baptiste Note <jbnote@gmail.com>, et al.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */
 
/* Device Interrupt register bits */
#define ISL38XX_DEV_INT_RESET                   0x0001
#define ISL38XX_DEV_INT_UPDATE                  0x0002
#define ISL38XX_DEV_INT_WAKEUP                  0x0008
#define ISL38XX_DEV_INT_SLEEP                   0x0010
#define ISL38XX_DEV_INT_ABORT                   0x0020
/* these two only used in USB */
#define ISL38XX_DEV_INT_DATA                    0x0040
#define ISL38XX_DEV_INT_MGMT                    0x0080
 
#define ISL38XX_DEV_INT_PCIUART_CTS             0x4000
#define ISL38XX_DEV_INT_PCIUART_DR              0x8000
 
/* Interrupt Identification/Acknowledge/Enable register bits */
#define ISL38XX_INT_IDENT_UPDATE        0x0002
#define ISL38XX_INT_IDENT_INIT            0x0004
#define ISL38XX_INT_IDENT_WAKEUP        0x0008
#define ISL38XX_INT_IDENT_SLEEP            0x0010
#define ISL38XX_INT_IDENT_PCIUART_CTS        0x4000
#define ISL38XX_INT_IDENT_PCIUART_DR        0x8000
 
/* Control/Status register bits */
#define ISL38XX_CTRL_STAT_SLEEPMODE        0x00000200
#define ISL38XX_CTRL_STAT_CLKRUN        0x00800000
#define ISL38XX_CTRL_STAT_RESET            0x10000000
#define ISL38XX_CTRL_STAT_RAMBOOT        0x20000000
#define ISL38XX_CTRL_STAT_STARTHALTED        0x40000000
#define ISL38XX_CTRL_STAT_HOST_OVERRIDE        0x80000000
 
struct p54p_csr {
   __le32 dev_int;
   u8 unused_1[12];
   __le32 int_ident;
   __le32 int_ack;
   __le32 int_enable;
   u8 unused_2[4];
   union {
       __le32 ring_control_base;
       __le32 gen_purp_com[2];
   };
   u8 unused_3[8];
   __le32 direct_mem_base;
   u8 unused_4[44];
   __le32 dma_addr;
   __le32 dma_len;
   __le32 dma_ctrl;
   u8 unused_5[12];
   __le32 ctrl_stat;
   u8 unused_6[1924];
   u8 cardbus_cis[0x800];
   u8 direct_mem_win[0x1000];
} __packed;
 
/* usb backend only needs the register defines above */
#ifndef P54USB_H
struct p54p_desc {
   __le32 host_addr;
   __le32 device_addr;
   __le16 len;
   __le16 flags;
} __packed;
 
struct p54p_ring_control {
   __le32 host_idx[4];
   __le32 device_idx[4];
   struct p54p_desc rx_data[8];
   struct p54p_desc tx_data[32];
   struct p54p_desc rx_mgmt[4];
   struct p54p_desc tx_mgmt[4];
} __packed;
 
#define P54P_READ(r) (__force __le32)__raw_readl(&priv->map->r)
#define P54P_WRITE(r, val) __raw_writel((__force u32)(__le32)(val), &priv->map->r)
 
struct p54p_priv {
   struct p54_common common;
   struct pci_dev *pdev;
   struct p54p_csr __iomem *map;
   struct tasklet_struct tasklet;
   const struct firmware *firmware;
   spinlock_t lock;
   struct p54p_ring_control *ring_control;
   dma_addr_t ring_control_dma;
   u32 rx_idx_data, tx_idx_data;
   u32 rx_idx_mgmt, tx_idx_mgmt;
   struct sk_buff *rx_buf_data[8];
   struct sk_buff *rx_buf_mgmt[4];
   struct sk_buff *tx_buf_data[32];
   struct sk_buff *tx_buf_mgmt[4];
   struct completion boot_comp;
   struct completion fw_loaded;
};
 
#endif /* P54USB_H */
#endif /* P54PCI_H */