Merge from vendor branch OPENSSH:
[dragonfly.git] / sys / dev / netif / nv / if_nvreg.h
1 /*
2  * Copyright (c) 2003 by Quinton Dolan <q@onthenet.com.au>.
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  * 1. Redistributions of source code must retain the above copyright
9  *    notice, this list of conditions and the following disclaimer.
10  * 2. Redistributions in binary form must reproduce the above copyright
11  *    notice, this list of conditions and the following disclaimer in the
12  *    documentation and/or other materials provided with the distribution.
13  *
14  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS `AS IS'' AND
15  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 
18  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 
20  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 
21  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 
23  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 
24  * SUCH DAMAGE.
25  *
26  * $Id: if_nvreg.h,v 1.6 2004/08/12 14:00:05 q Exp $
27  * $DragonFly: src/sys/dev/netif/nv/Attic/if_nvreg.h,v 1.7 2005/06/13 19:21:19 joerg Exp $
28  */
29  
30 #ifndef _IF_NVREG_H_
31 #define _IF_NVREG_H_
32
33 /* Include NVIDIA Linux driver header files */
34
35 #define linux
36
37 #include "basetype.h"
38 #include "os.h"
39 #include "drvinfo.h"
40 #include "adapter.h"
41
42 #undef linux
43
44 #ifndef NVIDIA_VENDORID
45 #define NVIDIA_VENDORID 0x10DE
46 #endif
47
48 #define NFORCE_MCPNET1_DEVICEID 0x01C3
49 #define NFORCE_MCPNET2_DEVICEID 0x0066
50 #define NFORCE_MCPNET3_DEVICEID 0x00D6
51 #define NFORCE_MCPNET4_DEVICEID 0x0086
52 #define NFORCE_MCPNET5_DEVICEID 0x008C
53 #define NFORCE_MCPNET6_DEVICEID 0x00E6
54 #define NFORCE_MCPNET7_DEVICEID 0x00DF
55
56 #define NV_RID          0x10
57
58 #define TX_RING_SIZE 64
59 #define RX_RING_SIZE 64
60
61 #define NV_MAX_FRAGS 63
62 #define FCS_LEN 4
63
64 #define NV_DEBUG_INIT           0x0001
65 #define NV_DEBUG_RUNNING        0x0002
66 #define NV_DEBUG_DEINIT         0x0004
67 #define NV_DEBUG_IOCTL          0x0008
68 #define NV_DEBUG_INTERRUPT      0x0010
69 #define NV_DEBUG_API            0x0020
70 #define NV_DEBUG_LOCK           0x0040
71 #define NV_DEBUG_BROKEN         0x0080
72 #define NV_DEBUG_MII            0x0100
73 #define NV_DEBUG_ALL            0xFFFF
74
75 #define NV_DEBUG                0x0000
76
77 #if NV_DEBUG
78 #define DEBUGOUT(level, fmt, args...) if (NV_DEBUG & level) \
79     printf(fmt, ## args)
80 #else
81 #define DEBUGOUT(level, fmt, args...)
82 #endif
83
84 typedef unsigned long   ulong;
85
86 struct nv_map_buffer {
87         struct mbuf *mbuf;              /* mbuf receiving packet */
88         bus_dmamap_t map;               /* DMA map */   
89 };
90
91 struct nv_dma_info {
92         bus_dma_tag_t tag;
93         struct nv_map_buffer buf;
94         u_int16_t buflength;
95         caddr_t vaddr;                  /* Virtual memory address */
96         bus_addr_t paddr;               /* DMA physical address */
97 };
98
99 struct nv_rx_desc {
100         struct nv_rx_desc *next;
101         struct nv_map_buffer buf;
102         u_int16_t buflength;
103         caddr_t vaddr;
104         bus_addr_t paddr;
105 };
106
107 struct nv_tx_desc {
108         /* Don't add anything above this structure */
109         TX_INFO_ADAP TxInfoAdap;
110         struct nv_tx_desc *next;
111         struct nv_map_buffer buf;
112         u_int16_t buflength;
113         u_int32_t numfrags;
114         bus_dma_segment_t frags[NV_MAX_FRAGS + 1];
115 };
116
117 struct nv_softc {
118         struct arpcom arpcom;         /* interface info */
119         struct resource *res;
120         struct resource *irq;
121
122         ADAPTER_API *hwapi;
123         OS_API osapi;
124                 
125         device_t miibus;
126         device_t dev;
127         struct callout  nv_stat_timer;
128
129         void *sc_ih;
130         bus_space_tag_t sc_st;
131         bus_space_handle_t sc_sh;
132         bus_dma_tag_t mtag;
133         bus_dma_tag_t rtag;
134         bus_dmamap_t rmap;
135         bus_dma_tag_t ttag;
136         bus_dmamap_t tmap;
137         
138         struct nv_rx_desc *rx_desc;
139         struct nv_tx_desc *tx_desc;
140         bus_addr_t rx_addr;
141         bus_addr_t tx_addr;
142         u_int16_t rx_ring_full;
143         u_int16_t tx_ring_full;
144         u_int32_t cur_rx;
145         u_int32_t cur_tx;
146         u_int32_t pending_rxs;
147         u_int32_t pending_txs;
148         
149         u_int32_t flags;
150         u_int32_t miicfg;
151         int spl;
152                 
153         /* Stuff for dealing with the NVIDIA OS API */
154         struct callout ostimer;
155         PTIMER_FUNC ostimer_func;
156         void *ostimer_params;
157         int linkup;
158         ulong tx_errors;
159         NV_UINT32 hwmode;
160         NV_UINT32 max_frame_size;
161         NV_UINT32 phyaddr;
162         NV_UINT32 media;
163         CMNDATA_OS_ADAPTER adapterdata;
164         unsigned char original_mac_addr[6];
165 };
166
167 struct nv_type {
168         u_int16_t               vid_id;
169         u_int16_t               dev_id;
170         char                    *name;
171 };
172
173 #define sc_if arpcom.ac_if
174 #define sc_macaddr arpcom.ac_enaddr
175
176 #define NV_LOCK(_sc)            crit_enter()
177 #define NV_UNLOCK(_sc)          crit_exit()
178 #define NV_OSLOCK(_sc)          crit_enter()
179 #define NV_OSUNLOCK(_sc)        crit_exit()
180
181 extern int ADAPTER_ReadPhy (PVOID pContext, ULONG ulPhyAddr, ULONG ulReg, ULONG *pulVal);
182 extern int ADAPTER_WritePhy (PVOID pContext, ULONG ulPhyAddr, ULONG ulReg, ULONG ulVal);
183 extern int ADAPTER_Init (PVOID pContext, USHORT usForcedSpeed, UCHAR ucForceDpx, UCHAR ucForceMode, UINT *puiLinkState);
184 #endif