Adaptec 1737100 Programmer Manual - Page 174

Program the Current Network Address into the first Receive Address filter

Page 174 highlights

AIC-6915 Ethernet LAN Controller Programmer's Manual 8-14 // If single queue, use the first queue only // Initialize RxDescQueue1LowAddress // Allocate memory for RxDescQueue1 AIC6915_ALLOC_MEMORY(&Status, &RxDescQ, 4 * 2048); // 4 byte descriptor, //2K fixed size queue RxDescQueue1LowAddressvalue.Reserved = 0; // assign the buffer address RxDescQueue1LowAddrValue.RxDescQ1LowAddress = NdisGetPhysicalAddressLow(RxDescQ); // Write the value to AIC-6915 AIC6915_WRITE_REG(RxDescQueue1LowAddress, RxDescQLowAddrValue); // Use default value for RxDescQueue2LowAddress // Initialize RxDescQueueHighAddr // set up the high 32 bits of address - it's 0 since we're not using // 64 bit addresses AIC6915_WRITE_REG(RxDescQueueHighAddr, 0); // Initialize RxDescQueue1Ptrs. This initializes the Receive Buffer Descriptor // Producer and Consumer indices to 0. // NOTE: we're using polling model on the receive side. AIC6915_WRITE_REG(RxDescQueue1Ptrs, 0); // Use default value for RxDescQueue2Ptrs // Initialize RxAddressFilteringCtrl // read current value AIC6915_READ_REG(Adapter->RegisterBaseVa->RxAddressFilteringCtrl, &RxAddressFilteringCtrlValue); // we're using Perfect Address Mode RxAddressFilteringCtrlValue.PerfectFilteringMode = 1; AIC6915_WRITE_REG(Adapter->RegisterbaseVa->RxAddressFilteringCtrl, RxAddressFilteringCtrlValue); // Program the Current Network Address into the first Receive Address filter // register Address = CurrentNetworkAddress[4]

  • 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
  • 113
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 130
  • 131
  • 132
  • 133
  • 134
  • 135
  • 136
  • 137
  • 138
  • 139
  • 140
  • 141
  • 142
  • 143
  • 144
  • 145
  • 146
  • 147
  • 148
  • 149
  • 150
  • 151
  • 152
  • 153
  • 154
  • 155
  • 156
  • 157
  • 158
  • 159
  • 160
  • 161
  • 162
  • 163
  • 164
  • 165
  • 166
  • 167
  • 168
  • 169
  • 170
  • 171
  • 172
  • 173
  • 174
  • 175
  • 176
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190

8-14
AIC-6915 Ethernet LAN Controller Programmer’s Manual
// If single queue, use the first queue only
// Initialize RxDescQueue1LowAddress
// Allocate memory for RxDescQueue1
AIC6915_ALLOC_MEMORY(&Status, &RxDescQ, 4 * 2048);
// 4 byte descriptor,
//2K fixed size queue
RxDescQueue1LowAddressvalue.Reserved = 0;
// assign the buffer address
RxDescQueue1LowAddrValue.RxDescQ1LowAddress =
NdisGetPhysicalAddressLow(RxDescQ);
// Write the value to AIC-6915
AIC6915_WRITE_REG(RxDescQueue1LowAddress, RxDescQLowAddrValue);
// Use default value for RxDescQueue2LowAddress
// Initialize RxDescQueueHighAddr
// set up the high 32 bits of address - it's 0 since we're not using
// 64 bit addresses
AIC6915_WRITE_REG(RxDescQueueHighAddr, 0);
// Initialize RxDescQueue1Ptrs. This initializes the Receive Buffer Descriptor
// Producer and Consumer indices to 0.
// NOTE: we're using polling model on the receive side.
AIC6915_WRITE_REG(RxDescQueue1Ptrs, 0);
// Use default value for RxDescQueue2Ptrs
// Initialize RxAddressFilteringCtrl
// read current value
AIC6915_READ_REG(Adapter->RegisterBaseVa->RxAddressFilteringCtrl,
&RxAddressFilteringCtrlValue);
// we’re using Perfect Address Mode
RxAddressFilteringCtrlValue.PerfectFilteringMode = 1;
AIC6915_WRITE_REG(Adapter->RegisterbaseVa->RxAddressFilteringCtrl,
RxAddressFilteringCtrlValue);
// Program the Current Network Address into the first Receive Address filter
// register
Address = CurrentNetworkAddress[4]<<8 | CurrentNetworkAddress[5];
AIC6915_WRITE_REG(PerfectAddressTable[0][0], Address);
Address = CurrentNetworkAddress[2]<<8 | CurrentNetworkAddress[3];
AIC6915_WRITE_REG(PerfectAddressTable[0][1], Address);
Address = CurrentNetworkAddress[0]<<8 | CurrentNetworkAddress[1];
AIC6915_WRITE_REG(PerfectAddressTable[0][2], Address);
AIC6915_WRITE_REG(PerfectAddressTable[0][3], 0);
// Receive is now initialized!