rcvbundl.h revision 139749
1235288Sadrian/*-
2235288SadrianCopyright (c) 1999-2001, Intel Corporation
3235288Sadrian
4235288SadrianAll rights reserved.
5235288Sadrian
6235288SadrianRedistribution and use in source and binary forms, with or without
7235288Sadrianmodification, are permitted provided that the following conditions are met:
8235288Sadrian
9235288Sadrian 1. Redistributions of source code must retain the above copyright notice,
10235288Sadrian    this list of conditions and the following disclaimer.
11235288Sadrian
12235288Sadrian 2. Redistributions in binary form must reproduce the above copyright notice,
13235288Sadrian    this list of conditions and the following disclaimer in the documentation
14235288Sadrian    and/or other materials provided with the distribution.
15235288Sadrian
16235288Sadrian 3. Neither the name of Intel Corporation nor the names of its contributors
17235288Sadrian    may be used to endorse or promote products derived from this software
18235288Sadrian    without specific prior written permission.
19235288Sadrian
20235288SadrianTHIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS ``AS IS''
21235288SadrianAND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
22235288SadrianIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23235288SadrianDISCLAIMED. IN NO EVENT SHALL CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
24235288SadrianINCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
25235288SadrianLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26235288SadrianPROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27235288SadrianLIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28235288SadrianNEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
29235288SadrianEVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30235288Sadrian*/
31235288Sadrian/*
32235367Sadrian * $FreeBSD: head/sys/dev/fxp/rcvbundl.h 139749 2005-01-06 01:43:34Z imp $
33235367Sadrian */
34235367Sadrian/*
35235367Sadrianrcvbundl.h
36235367Sadrian
37235367SadrianAuthor:  Patrick J Luhmann (PJL)
38235367SadrianDate:    05/30/2000
39235367SadrianVersion: 3.28
40235367Sadrian
41235288SadrianThis file contains the loadable micro code arrays to implement receive bundling on the
42235288SadrianD101 A-step, D101 B-step, D101M (B-step only), D101S, D102 B-step,
43235288SadrianD102 B-step with TCO work around and D012 C-step.
44235288Sadrian
45235288SadrianEach controller has its own specific micro code array.  The array for one controller
46235288Sadrianis totally incompatible with any other controller, and if used will most likely
47235288Sadriancause the controller to lock up and stop responding to the driver.  Each micro
48235288Sadriancode array has its own parameter offsets (described below), and they each have
49235288Sadriantheir own version number (which should not be confused with the version of the
50235288Sadrianrcvbundl.h file given above).
51235288Sadrian
52235288Sadrian*/
53235288Sadrian
54235288Sadrian/*  Size of loadable micro code image for each supported chip.  */
55235288Sadrian#ifndef D100_NUM_MICROCODE_DWORDS
56235288Sadrian#define     D100_NUM_MICROCODE_DWORDS    66
57235288Sadrian#endif
58235288Sadrian#ifndef D101_NUM_MICROCODE_DWORDS
59235288Sadrian#define     D101_NUM_MICROCODE_DWORDS    102
60235288Sadrian#endif
61235288Sadrian#ifndef D101M_NUM_MICROCODE_DWORDS
62235288Sadrian#define     D101M_NUM_MICROCODE_DWORDS   134
63235288Sadrian#endif
64235288Sadrian#ifndef D101S_NUM_MICROCODE_DWORDS
65235288Sadrian#define     D101S_NUM_MICROCODE_DWORDS   134
66235288Sadrian#endif
67235288Sadrian#ifndef D102_NUM_MICROCODE_DWORDS
68235288Sadrian#define     D102_NUM_MICROCODE_DWORDS    134
69235288Sadrian#endif
70235288Sadrian#ifndef D102_NUM_TCO_MICROCODE_DWORDS
71235288Sadrian#define     D102_NUM_TCO_MICROCODE_DWORDS    134
72235288Sadrian#endif
73235288Sadrian
74235288Sadrian
75235288Sadrian/*************************************************************************
76235288Sadrian*  CPUSaver parameters
77235288Sadrian*
78235288Sadrian*  All CPUSaver parameters are 16-bit literals that are part of a
79235288Sadrian*  "move immediate value" instruction.  By changing the value of
80235288Sadrian*  the literal in the instruction before the code is loaded, the
81235288Sadrian*  driver can change algorithm.
82235288Sadrian*
83235288Sadrian*  CPUSAVER_DWORD - This is the location of the instruction that loads
84235288Sadrian*    the dead-man timer with its inital value.  By writing a 16-bit
85235288Sadrian*    value to the low word of this instruction, the driver can change
86235288Sadrian*    the timer value.  The current default is either x600 or x800;
87235288Sadrian*    experiments show that the value probably should stay within the
88235288Sadrian*    range of x200 - x1000.
89235367Sadrian*
90235288Sadrian*  CPUSAVER_BUNDLE_MAX_DWORD - This is the location of the instruction
91235367Sadrian*    that sets the maximum number of frames that will be bundled.  In
92235288Sadrian*    some situations, such as the TCP windowing algorithm, it may be
93235367Sadrian*    better to limit the growth of the bundle size than let it go as
94235367Sadrian*    high as it can, because that could cause too much added latency.
95235367Sadrian*    The default is six, because this is the number of packets in the
96235288Sadrian*    default TCP window size.  A value of 1 would make CPUSaver indicate
97235288Sadrian*    an interrupt for every frame received.  If you do not want to put
98235288Sadrian*    a limit on the bundle size, set this value to xFFFF.
99235288Sadrian*
100235288Sadrian*  CPUSAVER_MIN_SIZE_DWORD - This is the location of the instruction
101235288Sadrian*    that contains a bit-mask describing the minimum size frame that
102235288Sadrian*    will be bundled.  The default masks the lower 7 bits, which means
103235288Sadrian*    that any frame less than 128 bytes in length will not be bundled,
104235288Sadrian*    but will instead immediately generate an interrupt.  This does
105235288Sadrian*    not affect the current bundle in any way.  Any frame that is 128
106235288Sadrian*    bytes or large will be bundled normally.  This feature is meant
107235288Sadrian*    to provide immediate indication of ACK frames in a TCP environment.
108235288Sadrian*    Customers were seeing poor performance when a machine with CPUSaver
109235288Sadrian*    enabled was sending but not receiving.  The delay introduced when
110235288Sadrian*    the ACKs were received was enough to reduce total throughput, because
111235288Sadrian*    the sender would sit idle until the ACK was finally seen.
112235288Sadrian*
113235288Sadrian*    The current default is 0xFF80, which masks out the lower 7 bits.
114235288Sadrian*    This means that any frame which is x7F (127) bytes or smaller
115235288Sadrian*    will cause an immediate interrupt.  Because this value must be a
116235288Sadrian*    bit mask, there are only a few valid values that can be used.  To
117253572Sloos*    turn this feature off, the driver can write the value xFFFF to the
118235288Sadrian*    lower word of this instruction (in the same way that the other
119235288Sadrian*    parameters are used).  Likewise, a value of 0xF800 (2047) would
120235288Sadrian*    cause an interrupt to be generated for every frame, because all
121235288Sadrian*    standard Ethernet frames are <= 2047 bytes in length.
122235288Sadrian*************************************************************************/
123235288Sadrian
124235288Sadrian
125235288Sadrian
126235288Sadrian/********************************************************/
127235288Sadrian/*  CPUSaver micro code for the D101A                   */
128235288Sadrian/********************************************************/
129235288Sadrian
130235288Sadrian/*  Version 2.0  */
131235288Sadrian
132235288Sadrian/*  This value is the same for both A and B step of 558.  */
133235288Sadrian#define D101_CPUSAVER_DWORD         72
134235288Sadrian
135235288Sadrian
136235288Sadrian#define     D101_A_RCVBUNDLE_UCODE \
137235288Sadrian{\
138235288Sadrian0x03B301BB, \
139235325Sadrian0x0046FFFF, \
140235325Sadrian0xFFFFFFFF, \
141235325Sadrian0x051DFFFF, \
142235288Sadrian0xFFFFFFFF, \
143235288Sadrian0xFFFFFFFF, \
144235288Sadrian0x000C0001, \
145235288Sadrian0x00101212, \
146235288Sadrian0x000C0008, \
147235288Sadrian0x003801BC, \
148235288Sadrian0x00000000, \
149235288Sadrian0x00124818, \
150235288Sadrian0x000C1000, \
151235288Sadrian0x00220809, \
152235288Sadrian0x00010200, \
153235288Sadrian0x00124818, \
154235288Sadrian0x000CFFFC, \
155235288Sadrian0x003803B5, \
156235288Sadrian0x00000000, \
157235288Sadrian0x00000000, \
158235288Sadrian0x00000000, \
159235288Sadrian0x00000000, \
160235288Sadrian0x0010009C, \
161235288Sadrian0x0024B81D, \
162235288Sadrian0x00130836, \
163235288Sadrian0x000C0001, \
164235288Sadrian0x0026081C, \
165235288Sadrian0x0020C81B, \
166235288Sadrian0x00130824, \
167235288Sadrian0x00222819, \
168235288Sadrian0x00101213, \
169235288Sadrian0x00041000, \
170235288Sadrian0x003A03B3, \
171235288Sadrian0x00010200, \
172235288Sadrian0x00101B13, \
173235288Sadrian0x00238081, \
174235288Sadrian0x00213049, \
175235288Sadrian0x0038003B, \
176235288Sadrian0x00000000, \
177235288Sadrian0x00000000, \
178235288Sadrian0x00000000, \
179235288Sadrian0x00000000, \
180235288Sadrian0x00000000, \
181235288Sadrian0x00000000, \
182235288Sadrian0x00000000, \
183235288Sadrian0x00000000, \
184235288Sadrian0x00000000, \
185235288Sadrian0x00000000, \
186235288Sadrian0x00000000, \
187235288Sadrian0x00000000, \
188235288Sadrian0x00000000, \
189235288Sadrian0x00000000, \
190235288Sadrian0x00000000, \
191235288Sadrian0x00000000, \
192235288Sadrian0x0010009C, \
193235288Sadrian0x0024B83E, \
194235288Sadrian0x00130826, \
195235288Sadrian0x000C0001, \
196235288Sadrian0x0026083B, \
197235288Sadrian0x00010200, \
198235288Sadrian0x00134824, \
199235288Sadrian0x000C0001, \
200235288Sadrian0x00101213, \
201235288Sadrian0x00041000, \
202235288Sadrian0x0038051E, \
203235288Sadrian0x00101313, \
204235288Sadrian0x00010400, \
205235288Sadrian0x00380521, \
206235288Sadrian0x00050600, \
207235288Sadrian0x00100824, \
208235288Sadrian0x00101310, \
209235288Sadrian0x00041000, \
210235288Sadrian0x00080600, \
211235288Sadrian0x00101B10, \
212235288Sadrian0x0038051E, \
213235288Sadrian0x00000000, \
214235288Sadrian0x00000000, \
215235288Sadrian0x00000000, \
216235288Sadrian0x00000000, \
217235288Sadrian0x00000000, \
218235288Sadrian0x00000000, \
219235288Sadrian0x00000000, \
220235288Sadrian0x00000000, \
221235288Sadrian0x00000000, \
222235288Sadrian0x00000000, \
223235288Sadrian0x00000000, \
224235288Sadrian0x00000000, \
225235288Sadrian0x00000000, \
226235288Sadrian0x00000000, \
227235288Sadrian0x00000000, \
228235288Sadrian0x00000000, \
229235288Sadrian0x00000000, \
230235288Sadrian0x00000000, \
231235288Sadrian0x00000000, \
232235288Sadrian0x00000000, \
233235288Sadrian0x00000000, \
234235288Sadrian0x00000000, \
235235288Sadrian0x00000000, \
236235288Sadrian0x00000000, \
237235288Sadrian0x00000000, \
238235288Sadrian0x00000000, \
239235288Sadrian0x00000000, \
240235288Sadrian}
241235288Sadrian
242235288Sadrian
243235288Sadrian/********************************************************/
244235288Sadrian/*  CPUSaver micro code for the D101B                   */
245235288Sadrian/********************************************************/
246235288Sadrian
247235288Sadrian/*  Version 2.0  */
248235288Sadrian
249235288Sadrian#define     D101_B0_RCVBUNDLE_UCODE \
250235288Sadrian{\
251235288Sadrian0x03B401BC, \
252235288Sadrian0x0047FFFF, \
253235288Sadrian0xFFFFFFFF, \
254235288Sadrian0x051EFFFF, \
255235288Sadrian0xFFFFFFFF, \
256235288Sadrian0xFFFFFFFF, \
257235288Sadrian0x000C0001, \
258235288Sadrian0x00101B92, \
259235288Sadrian0x000C0008, \
260235288Sadrian0x003801BD, \
261235288Sadrian0x00000000, \
262235288Sadrian0x00124818, \
263235288Sadrian0x000C1000, \
264235288Sadrian0x00220809, \
265235288Sadrian0x00010200, \
266235288Sadrian0x00124818, \
267235288Sadrian0x000CFFFC, \
268235288Sadrian0x003803B6, \
269235288Sadrian0x00000000, \
270235288Sadrian0x00000000, \
271235288Sadrian0x00000000, \
272235288Sadrian0x00000000, \
273235288Sadrian0x0010009C, \
274235288Sadrian0x0024B81D, \
275235288Sadrian0x0013082F, \
276235288Sadrian0x000C0001, \
277235288Sadrian0x0026081C, \
278235288Sadrian0x0020C81B, \
279235288Sadrian0x00130837, \
280235288Sadrian0x00222819, \
281235288Sadrian0x00101B93, \
282235288Sadrian0x00041000, \
283235288Sadrian0x003A03B4, \
284235288Sadrian0x00010200, \
285235288Sadrian0x00101793, \
286235288Sadrian0x00238082, \
287235288Sadrian0x0021304A, \
288235288Sadrian0x0038003C, \
289235288Sadrian0x00000000, \
290235288Sadrian0x00000000, \
291235288Sadrian0x00000000, \
2920x00000000, \
2930x00000000, \
2940x00000000, \
2950x00000000, \
2960x00000000, \
2970x00000000, \
2980x00000000, \
2990x00000000, \
3000x00000000, \
3010x00000000, \
3020x00000000, \
3030x00000000, \
3040x00000000, \
3050x0010009C, \
3060x0024B83E, \
3070x00130826, \
3080x000C0001, \
3090x0026083B, \
3100x00010200, \
3110x00134837, \
3120x000C0001, \
3130x00101B93, \
3140x00041000, \
3150x0038051F, \
3160x00101313, \
3170x00010400, \
3180x00380522, \
3190x00050600, \
3200x00100837, \
3210x00101310, \
3220x00041000, \
3230x00080600, \
3240x00101790, \
3250x0038051F, \
3260x00000000, \
3270x00000000, \
3280x00000000, \
3290x00000000, \
3300x00000000, \
3310x00000000, \
3320x00000000, \
3330x00000000, \
3340x00000000, \
3350x00000000, \
3360x00000000, \
3370x00000000, \
3380x00000000, \
3390x00000000, \
3400x00000000, \
3410x00000000, \
3420x00000000, \
3430x00000000, \
3440x00000000, \
3450x00000000, \
3460x00000000, \
3470x00000000, \
3480x00000000, \
3490x00000000, \
3500x00000000, \
3510x00000000, \
3520x00000000, \
353}
354
355
356/********************************************************/
357/*  CPUSaver micro code for the D101M (B-step only)     */
358/********************************************************/
359
360/*  Version 2.10  */
361
362/*  Parameter values for the D101M B-step  */
363#define D101M_CPUSAVER_DWORD                78
364#define D101M_CPUSAVER_BUNDLE_MAX_DWORD     65
365#define D101M_CPUSAVER_MIN_SIZE_DWORD       126
366
367
368#define D101M_B_RCVBUNDLE_UCODE \
369{\
3700x00550215, \
3710xFFFF0437, \
3720xFFFFFFFF, \
3730x06A70789, \
3740xFFFFFFFF, \
3750x0558FFFF, \
3760x000C0001, \
3770x00101312, \
3780x000C0008, \
3790x00380216, \
3800x0010009C, \
3810x00204056, \
3820x002380CC, \
3830x00380056, \
3840x0010009C, \
3850x00244C0B, \
3860x00000800, \
3870x00124818, \
3880x00380438, \
3890x00000000, \
3900x00140000, \
3910x00380555, \
3920x00308000, \
3930x00100662, \
3940x00100561, \
3950x000E0408, \
3960x00134861, \
3970x000C0002, \
3980x00103093, \
3990x00308000, \
4000x00100624, \
4010x00100561, \
4020x000E0408, \
4030x00100861, \
4040x000C007E, \
4050x00222C21, \
4060x000C0002, \
4070x00103093, \
4080x00380C7A, \
4090x00080000, \
4100x00103090, \
4110x00380C7A, \
4120x00000000, \
4130x00000000, \
4140x00000000, \
4150x00000000, \
4160x0010009C, \
4170x00244C2D, \
4180x00010004, \
4190x00041000, \
4200x003A0437, \
4210x00044010, \
4220x0038078A, \
4230x00000000, \
4240x00100099, \
4250x00206C7A, \
4260x0010009C, \
4270x00244C48, \
4280x00130824, \
4290x000C0001, \
4300x00101213, \
4310x00260C75, \
4320x00041000, \
4330x00010004, \
4340x00130826, \
4350x000C0006, \
4360x002206A8, \
4370x0013C926, \
4380x00101313, \
4390x003806A8, \
4400x00000000, \
4410x00000000, \
4420x00000000, \
4430x00000000, \
4440x00000000, \
4450x00000000, \
4460x00000000, \
4470x00000000, \
4480x00080600, \
4490x00101B10, \
4500x00050004, \
4510x00100826, \
4520x00101210, \
4530x00380C34, \
4540x00000000, \
4550x00000000, \
4560x0021155B, \
4570x00100099, \
4580x00206559, \
4590x0010009C, \
4600x00244559, \
4610x00130836, \
4620x000C0000, \
4630x00220C62, \
4640x000C0001, \
4650x00101B13, \
4660x00229C0E, \
4670x00210C0E, \
4680x00226C0E, \
4690x00216C0E, \
4700x0022FC0E, \
4710x00215C0E, \
4720x00214C0E, \
4730x00380555, \
4740x00010004, \
4750x00041000, \
4760x00278C67, \
4770x00040800, \
4780x00018100, \
4790x003A0437, \
4800x00130826, \
4810x000C0001, \
4820x00220559, \
4830x00101313, \
4840x00380559, \
4850x00000000, \
4860x00000000, \
4870x00000000, \
4880x00000000, \
4890x00000000, \
4900x00000000, \
4910x00000000, \
4920x00000000, \
4930x00130831, \
4940x0010090B, \
4950x00124813, \
4960x000CFF80, \
4970x002606AB, \
4980x00041000, \
4990x003806A8, \
5000x00000000, \
5010x00000000, \
5020x00000000, \
5030x00000000, \
504}
505
506
507/********************************************************/
508/*  CPUSaver micro code for the D101S                   */
509/********************************************************/
510
511/*  Version 1.20  */
512
513/*  Parameter values for the D101S  */
514#define D101S_CPUSAVER_DWORD                78
515#define D101S_CPUSAVER_BUNDLE_MAX_DWORD     67
516#define D101S_CPUSAVER_MIN_SIZE_DWORD       129
517
518
519#define D101S_RCVBUNDLE_UCODE \
520{\
5210x00550242, \
5220xFFFF047E, \
5230xFFFFFFFF, \
5240x06FF0818, \
5250xFFFFFFFF, \
5260x05A6FFFF, \
5270x000C0001, \
5280x00101312, \
5290x000C0008, \
5300x00380243, \
5310x0010009C, \
5320x00204056, \
5330x002380D0, \
5340x00380056, \
5350x0010009C, \
5360x00244F8B, \
5370x00000800, \
5380x00124818, \
5390x0038047F, \
5400x00000000, \
5410x00140000, \
5420x003805A3, \
5430x00308000, \
5440x00100610, \
5450x00100561, \
5460x000E0408, \
5470x00134861, \
5480x000C0002, \
5490x00103093, \
5500x00308000, \
5510x00100624, \
5520x00100561, \
5530x000E0408, \
5540x00100861, \
5550x000C007E, \
5560x00222FA1, \
5570x000C0002, \
5580x00103093, \
5590x00380F90, \
5600x00080000, \
5610x00103090, \
5620x00380F90, \
5630x00000000, \
5640x00000000, \
5650x00000000, \
5660x00000000, \
5670x0010009C, \
5680x00244FAD, \
5690x00010004, \
5700x00041000, \
5710x003A047E, \
5720x00044010, \
5730x00380819, \
5740x00000000, \
5750x00100099, \
5760x00206FFD, \
5770x0010009A, \
5780x0020AFFD, \
5790x0010009C, \
5800x00244FC8, \
5810x00130824, \
5820x000C0001, \
5830x00101213, \
5840x00260FF8, \
5850x00041000, \
5860x00010004, \
5870x00130826, \
5880x000C0006, \
5890x00220700, \
5900x0013C926, \
5910x00101313, \
5920x00380700, \
5930x00000000, \
5940x00000000, \
5950x00000000, \
5960x00000000, \
5970x00000000, \
5980x00000000, \
5990x00080600, \
6000x00101B10, \
6010x00050004, \
6020x00100826, \
6030x00101210, \
6040x00380FB6, \
6050x00000000, \
6060x00000000, \
6070x002115A9, \
6080x00100099, \
6090x002065A7, \
6100x0010009A, \
6110x0020A5A7, \
6120x0010009C, \
6130x002445A7, \
6140x00130836, \
6150x000C0000, \
6160x00220FE4, \
6170x000C0001, \
6180x00101B13, \
6190x00229F8E, \
6200x00210F8E, \
6210x00226F8E, \
6220x00216F8E, \
6230x0022FF8E, \
6240x00215F8E, \
6250x00214F8E, \
6260x003805A3, \
6270x00010004, \
6280x00041000, \
6290x00278FE9, \
6300x00040800, \
6310x00018100, \
6320x003A047E, \
6330x00130826, \
6340x000C0001, \
6350x002205A7, \
6360x00101313, \
6370x003805A7, \
6380x00000000, \
6390x00000000, \
6400x00000000, \
6410x00000000, \
6420x00000000, \
6430x00000000, \
6440x00000000, \
6450x00000000, \
6460x00000000, \
6470x00130831, \
6480x0010090B, \
6490x00124813, \
6500x000CFF80, \
6510x00260703, \
6520x00041000, \
6530x00380700, \
6540x00000000, \
655}
656
657
658/********************************************************/
659/*  CPUSaver micro code for the D102 B-step             */
660/********************************************************/
661
662/*  Version 2.0  */
663
664/*
665    This version of CPUSaver is different from all others in
666    a different way.  It combines the CPUSaver algorithm with
667    fixes for bugs in the B-step hardware (specifically, bugs
668    with Inline Receive).
669    Thus, when CPUSaver is disabled, this micro code image will
670    still need to be loaded.  Before this happens, the hit addresses
671    for the CPUSaver algorithm must be set to 0x1FFFF.  The hit
672    addresses for CPUSaver are (starting with 0, and remember that
673
674*/
675
676/*  Parameter values for the D102 B-step  */
677#define D102_B_CPUSAVER_DWORD                91
678#define D102_B_CPUSAVER_BUNDLE_MAX_DWORD     115
679#define D102_B_CPUSAVER_MIN_SIZE_DWORD       70
680
681
682#define     D102_B_RCVBUNDLE_UCODE \
683{\
6840x006F0276, \
6850x02BF0E93, \
6860x1FFF0ED9, \
6870x0D2508FA, \
6880x04D21FFF, \
6890x0EA10892, \
6900x00300001, \
6910x0140D871, \
6920x00300008, \
6930x00E00277, \
6940x01406C57, \
6950x00816073, \
6960x008700FA, \
6970x00E00070, \
6980x00E00E94, \
6990x00200004, \
7000x01410000, \
7010x014B6F6F, \
7020x0030FFFF, \
7030x01486F72, \
7040x00E81F9B, \
7050x00E00EA3, \
7060x003C0040, \
7070x00380920, \
7080x00C02000, \
7090x0150ED38, \
7100x0150EE39, \
7110x0150EF3A, \
7120x003C0040, \
7130x01506F0D, \
7140x01600E72, \
7150x00380AE0, \
7160x00E002C0, \
7170x00300001, \
7180x014C0000, \
7190x008404DC, \
7200x014C6F72, \
7210x00E01F9D, \
7220x01406C51, \
7230x0080DFC2, \
7240x01406C52, \
7250x00815FC2, \
7260x01406C57, \
7270x00917FD5, \
7280x00E01FE6, \
7290x00000000, \
7300x01406C57, \
7310x00919FAD, \
7320x00038800, \
7330x00300000, \
7340x00E81FF2, \
7350x014D6FC4, \
7360x00E008FB, \
7370x00000000, \
7380x00822D30, \
7390x01406C51, \
7400x0080CD26, \
7410x01406C52, \
7420x00814D26, \
7430x01406C57, \
7440x00916D26, \
7450x014C6FD7, \
7460x00300000, \
7470x00841FDB, \
7480x00300001, \
7490x0140D772, \
7500x00E012B3, \
7510x014C6F91, \
7520x0150710B, \
7530x01496F72, \
7540x0030FF80, \
7550x00940EDD, \
7560x00102000, \
7570x00E00EDA, \
7580x01406C57, \
7590x00917FFD, \
7600x00001000, \
7610x00E01FFD, \
7620x00138800, \
7630x00300001, \
7640x00E81FF2, \
7650x00202500, \
7660x00E81F9B, \
7670x01600EC5, \
7680x00E00893, \
7690x00000000, \
7700x01406CD5, \
7710x0091EEA3, \
7720x00904EA3, \
7730x00901F89, \
7740x00E00EA3, \
7750x00200600, \
7760x0140D76F, \
7770x00138400, \
7780x01406FD8, \
7790x0140D96F, \
7800x00E01FE6, \
7810x00038400, \
7820x00102000, \
7830x00971FE0, \
7840x00101000, \
7850x00050200, \
7860x00E804D2, \
7870x014C6FD8, \
7880x00300001, \
7890x00840D26, \
7900x0140D872, \
7910x00E00D26, \
7920x014C6FD9, \
7930x00300001, \
7940x0140D972, \
7950x00941FBD, \
7960x00102000, \
7970x00038400, \
7980x014C6FD8, \
7990x00300006, \
8000x00840EDA, \
8010x014F71D8, \
8020x0140D872, \
8030x00E00EDA, \
8040x00340020, \
8050x014C6FED, \
8060x01603472, \
8070x016035EE, \
8080x016036EF, \
8090x00300004, \
8100x01611C71, \
8110x00300014, \
8120x00200A00, \
8130x00E810B9, \
8140x00600000, \
8150x01496F50, \
8160x00E004D3, \
8170x00000000, \
818}
819
820
821
822
823/********************************************************/
824/*  TCO micro code for the D102 B-step             */
825/********************************************************/
826
827/*  Version 2.0  */
828
829/*
830    This version is a fix to TCO bug. This version can be loaded instead
831    the CPUSaver version by modifing the registry key "LoadTcoUCodeInsteadOfCpuSaver"
832
833*/
834
835
836#define     D102_B_TCO_UCODE \
837{\
8380x1FFF0ED3, \
8390x02BF0E93, \
8400x1FFF1FFF, \
8410x1FFF08FA, \
8420x1FFF1FFF, \
8430x0EA10892, \
8440x00906ED8, \
8450x01406C55, \
8460x00E00ED4, \
8470x00000000, \
8480x00000000, \
8490x00000000, \
8500x00000000, \
8510x00000000, \
8520x00E00E94, \
8530x00200004, \
8540x01410000, \
8550x014B6F6F, \
8560x0030FFFF, \
8570x01486F72, \
8580x00E81F9B, \
8590x00E00EA3, \
8600x003C0040, \
8610x00380920, \
8620x00C02000, \
8630x0150ED38, \
8640x0150EE39, \
8650x0150EF3A, \
8660x003C0040, \
8670x01506F0D, \
8680x01600E72, \
8690x00380AE0, \
8700x00E002C0, \
8710x00300001, \
8720x014C0000, \
8730x008404DC, \
8740x014C6F72, \
8750x00E01F9D, \
8760x00000000, \
8770x00000000, \
8780x00000000, \
8790x00000000, \
8800x00000000, \
8810x00000000, \
8820x00000000, \
8830x00000000, \
8840x01406C57, \
8850x00919FAD, \
8860x00038800, \
8870x00300000, \
8880x00E81FD5, \
8890x014D6FC4, \
8900x00E008FB, \
8910x00000000, \
8920x00000000, \
8930x00000000, \
8940x00000000, \
8950x00000000, \
8960x00000000, \
8970x00000000, \
8980x00000000, \
8990x00000000, \
9000x00000000, \
9010x00000000, \
9020x00000000, \
9030x00000000, \
9040x00000000, \
9050x00000000, \
9060x00000000, \
9070x00000000, \
9080x00000000, \
9090x00000000, \
9100x00000000, \
9110x00000000, \
9120x00000000, \
9130x00000000, \
9140x00000000, \
9150x00000000, \
9160x00138800, \
9170x00300001, \
9180x00E81FD5, \
9190x00202500, \
9200x00E81F9B, \
9210x01600EC5, \
9220x00E00893, \
9230x00000000, \
9240x01406CD5, \
9250x0091EEA3, \
9260x00904EA3, \
9270x00901F89, \
9280x00E00EA3, \
9290x00340020, \
9300x014C6FED, \
9310x01603472, \
9320x016035EE, \
9330x016036EF, \
9340x00300004, \
9350x01611C71, \
9360x00300014, \
9370x00200A00, \
9380x00E810B9, \
9390x00600000, \
9400x00000000, \
9410x00000000, \
9420x00000000, \
9430x00000000, \
9440x00000000, \
9450x00000000, \
9460x00000000, \
9470x00000000, \
9480x00000000, \
9490x00000000, \
9500x00000000, \
9510x00000000, \
9520x00000000, \
9530x00000000, \
9540x00000000, \
9550x00000000, \
9560x00000000, \
9570x00000000, \
9580x00000000, \
9590x00000000, \
9600x00000000, \
9610x00000000, \
9620x00000000, \
9630x00000000, \
9640x00000000, \
9650x00000000, \
9660x00000000, \
9670x00000000, \
9680x00000000, \
9690x00000000, \
9700x00000000, \
9710x00000000, \
972}
973
974
975
976/********************************************************/
977/*  Micro code for the D102 C-step                      */
978/********************************************************/
979
980/*  Parameter values for the D102 C-step  */
981#define D102_C_CPUSAVER_DWORD                46
982#define D102_C_CPUSAVER_BUNDLE_MAX_DWORD     54
983#define D102_C_CPUSAVER_MIN_SIZE_DWORD      133 /* not implemented */
984
985
986
987
988
989#if 0
990// this uCode include the CPU Saver and the TCO work around
991//for IP fregments.
992#endif
993#define     D102_C_RCVBUNDLE_UCODE \
994{ \
9950x00700279, \
9960x0E6104E2, \
9970x02BF0CAE, \
9980x1519150C, \
9990x1FFF0E5B, \
10000x1FFF1FFF, \
10010x00E014D8, \
10020x00000000, \
10030x00000000, \
10040x00000000, \
10050x00E014DC, \
10060x00000000, \
10070x00000000, \
10080x00000000, \
10090x00E014F4, \
10100x00000000, \
10110x00000000, \
10120x00000000, \
10130x00000000, \
10140x00000000, \
10150x00000000, \
10160x00000000, \
10170x00E014E0, \
10180x00000000, \
10190x00000000, \
10200x00000000, \
10210x00000000, \
10220x00000000, \
10230x00000000, \
10240x00000000, \
10250x00000000, \
10260x00000000, \
10270x00000000, \
10280x00000000, \
10290x00000000, \
10300x00000000, \
10310x00000000, \
10320x00000000, \
10330x00E014E7, \
10340x00000000, \
10350x00000000, \
10360x00000000, \
10370x00141000, \
10380x015D6F0D, \
10390x00E002C0, \
10400x00000000, \
10410x00200600, \
10420x00E0150D, \
10430x00000000, \
10440x00000000, \
10450x00000000, \
10460x00000000, \
10470x00000000, \
10480x00000000, \
10490x00300006, \
10500x00E0151A, \
10510x00000000, \
10520x00000000, \
10530x00000000, \
10540x00000000, \
10550x00000000, \
10560x00000000, \
10570x00000000, \
10580x00000000, \
10590x00000000, \
10600x00000000, \
10610x00000000, \
10620x00000000, \
10630x00000000, \
10640x00000000, \
10650x00906E65, \
10660x00800E60, \
10670x00E00E5D, \
10680x00000000, \
10690x00000000, \
10700x00000000, \
10710x00000000, \
10720x00000000, \
10730x00000000, \
10740x00000000, \
10750x00000000, \
10760x00000000, \
10770x00000000, \
10780x00000000, \
10790x00000000, \
10800x00000000, \
10810x00000000, \
10820x00000000, \
10830x00000000, \
10840x00000000, \
10850x00000000, \
10860x00000000, \
10870x00000000, \
10880x00000000, \
10890x00000000, \
10900x00000000, \
10910x00000000, \
10920x00000000, \
10930x00000000, \
10940x00000000, \
10950x00000000, \
10960x00000000, \
10970x00000000, \
10980x00000000, \
10990x00000000, \
11000x00000000, \
11010x00000000, \
11020x00000000, \
11030x00000000, \
11040x00000000, \
11050x00000000, \
11060x00000000, \
11070x00000000, \
11080x00000000, \
11090x00000000, \
11100x00000000, \
11110x00000000, \
11120x00000000, \
11130x00000000, \
11140x00000000, \
11150x00000000, \
11160x00000000, \
11170x00000000, \
11180x00000000, \
11190x00000000, \
11200x00000000, \
11210x00000000, \
11220x00000000, \
11230x00000000, \
11240x00000000, \
11250x00000000, \
11260x00000000, \
11270x00000000, \
11280x00000000, \
1129}
1130