blob: d6b0d678c81c9f639c122666cfebac1671ccbd71 [file] [log] [blame]
Hank Janssenfceaf242009-07-13 15:34:54 -07001/*
2 *
3 * Copyright (c) 2009, Microsoft Corporation.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16 * Place - Suite 330, Boston, MA 02111-1307 USA.
17 *
18 * Authors:
19 * Hank Janssen <hjanssen@microsoft.com>
20 *
21 */
22
23
24#ifndef _NETVSC_H_
25#define _NETVSC_H_
26
Greg Kroah-Hartmanc86f3e22009-07-14 10:59:56 -070027#include "include/VmbusPacketFormat.h"
28#include "include/nvspprotocol.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070029
Greg Kroah-Hartmanc86f3e22009-07-14 10:59:56 -070030#include "include/List.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070031
Greg Kroah-Hartmanc86f3e22009-07-14 10:59:56 -070032#include "include/NetVscApi.h"
Hank Janssenfceaf242009-07-13 15:34:54 -070033//
34// #defines
35//
36//#define NVSC_MIN_PROTOCOL_VERSION 1
37//#define NVSC_MAX_PROTOCOL_VERSION 1
38
39#define NETVSC_SEND_BUFFER_SIZE 64*1024 // 64K
40#define NETVSC_SEND_BUFFER_ID 0xface
41
42
43#define NETVSC_RECEIVE_BUFFER_SIZE 1024*1024 // 1MB
44
45#define NETVSC_RECEIVE_BUFFER_ID 0xcafe
46
47#define NETVSC_RECEIVE_SG_COUNT 1
48
49// Preallocated receive packets
50#define NETVSC_RECEIVE_PACKETLIST_COUNT 256
51
52//
53// Data types
54//
55
56// Per netvsc channel-specific
57typedef struct _NETVSC_DEVICE {
58 DEVICE_OBJECT *Device;
59
60 int RefCount;
61
62 int NumOutstandingSends;
63 // List of free preallocated NETVSC_PACKET to represent receive packet
64 LIST_ENTRY ReceivePacketList;
Greg Kroah-Hartman64368732009-07-15 14:56:15 -070065 spinlock_t receive_packet_list_lock;
Hank Janssenfceaf242009-07-13 15:34:54 -070066
67 // Send buffer allocated by us but manages by NetVSP
Greg Kroah-Hartman8282c402009-07-14 15:06:28 -070068 void * SendBuffer;
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -070069 u32 SendBufferSize;
70 u32 SendBufferGpadlHandle;
71 u32 SendSectionSize;
Hank Janssenfceaf242009-07-13 15:34:54 -070072
73 // Receive buffer allocated by us but manages by NetVSP
Greg Kroah-Hartman8282c402009-07-14 15:06:28 -070074 void * ReceiveBuffer;
Greg Kroah-Hartman4d643112009-07-14 15:09:36 -070075 u32 ReceiveBufferSize;
76 u32 ReceiveBufferGpadlHandle;
77 u32 ReceiveSectionCount;
Hank Janssenfceaf242009-07-13 15:34:54 -070078 PNVSP_1_RECEIVE_BUFFER_SECTION ReceiveSections;
79
80 // Used for NetVSP initialization protocol
81 HANDLE ChannelInitEvent;
82 NVSP_MESSAGE ChannelInitPacket;
83
84 NVSP_MESSAGE RevokePacket;
Greg Kroah-Hartman59471432009-07-14 15:10:26 -070085 //unsigned char HwMacAddr[HW_MACADDR_LEN];
Hank Janssenfceaf242009-07-13 15:34:54 -070086
87 // Holds rndis device info
88 void *Extension;
89} NETVSC_DEVICE;
90
91#endif // _NETVSC_H_