blob: 574bc5f03dd6260fb363b6a7932da9948a611036 [file] [log] [blame]
Stefan Tauner1e146392011-09-15 23:52:55 +00001/*
2 * This file is part of the flashrom project.
3 *
4 * Copyright (c) 2010 Matthias Wenzel <bios at mazzoo dot de>
5 * Copyright (c) 2011 Stefan Tauner
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
20 */
21
Stefan Tauner1e146392011-09-15 23:52:55 +000022#ifndef __ICH_DESCRIPTORS_H__
23#define __ICH_DESCRIPTORS_H__ 1
24
25#include <stdint.h>
Stefan Taunera8d838d2011-11-06 23:51:09 +000026#include "programmer.h" /* for enum ich_chipset */
Stefan Tauner1e146392011-09-15 23:52:55 +000027
28/* FIXME: Replace with generic return codes */
29#define ICH_RET_OK 0
30#define ICH_RET_ERR -1
31#define ICH_RET_WARN -2
32#define ICH_RET_PARAM -3
33#define ICH_RET_OOB -4
34
35#define ICH9_REG_FDOC 0xB0 /* 32 Bits Flash Descriptor Observability Control */
Nico Huberd54e4f42017-03-23 23:45:47 +010036#define PCH100_REG_FDOC 0xB4 /* New offset from Sunrise Point on */
Stefan Tauner1e146392011-09-15 23:52:55 +000037 /* 0-1: reserved */
38#define FDOC_FDSI_OFF 2 /* 2-11: Flash Descriptor Section Index */
39#define FDOC_FDSI (0x3f << FDOC_FDSI_OFF)
40#define FDOC_FDSS_OFF 12 /* 12-14: Flash Descriptor Section Select */
41#define FDOC_FDSS (0x3 << FDOC_FDSS_OFF)
42 /* 15-31: reserved */
43
44#define ICH9_REG_FDOD 0xB4 /* 32 Bits Flash Descriptor Observability Data */
Nico Huberd54e4f42017-03-23 23:45:47 +010045#define PCH100_REG_FDOD 0xB8 /* New offset from Sunrise Point on */
Stefan Tauner1e146392011-09-15 23:52:55 +000046
47/* Field locations and semantics for LVSCC, UVSCC and related words in the flash
48 * descriptor are equal therefore they all share the same macros below. */
49#define VSCC_BES_OFF 0 /* 0-1: Block/Sector Erase Size */
50#define VSCC_BES (0x3 << VSCC_BES_OFF)
51#define VSCC_WG_OFF 2 /* 2: Write Granularity */
52#define VSCC_WG (0x1 << VSCC_WG_OFF)
53#define VSCC_WSR_OFF 3 /* 3: Write Status Required */
54#define VSCC_WSR (0x1 << VSCC_WSR_OFF)
55#define VSCC_WEWS_OFF 4 /* 4: Write Enable on Write Status */
56#define VSCC_WEWS (0x1 << VSCC_WEWS_OFF)
57 /* 5-7: reserved */
58#define VSCC_EO_OFF 8 /* 8-15: Erase Opcode */
59#define VSCC_EO (0xff << VSCC_EO_OFF)
60 /* 16-22: reserved */
61#define VSCC_VCL_OFF 23 /* 23: Vendor Component Lock */
62#define VSCC_VCL (0x1 << VSCC_VCL_OFF)
63 /* 24-31: reserved */
64
Nico Huberfa622942017-03-24 17:25:37 +010065#define ICH_FREG_BASE(flreg) (((flreg) << 12) & 0x07fff000)
66#define ICH_FREG_LIMIT(flreg) ((((flreg) >> 4) & 0x07fff000) | 0x00000fff)
Stefan Tauner1e146392011-09-15 23:52:55 +000067
Stefan Tauner2ba9f6e2014-08-20 15:39:19 +000068void prettyprint_ich_reg_vscc(uint32_t reg_val, int verbosity, bool print_vcl);
Stefan Tauner1e146392011-09-15 23:52:55 +000069
70struct ich_desc_content {
71 uint32_t FLVALSIG; /* 0x00 */
72 union { /* 0x04 */
73 uint32_t FLMAP0;
74 struct {
75 uint32_t FCBA :8, /* Flash Component Base Address */
76 NC :2, /* Number Of Components */
77 :6,
78 FRBA :8, /* Flash Region Base Address */
Nico Huberfa622942017-03-24 17:25:37 +010079 NR :3, /* Number Of Regions (reserved from Skylake on) */
Stefan Tauner1e146392011-09-15 23:52:55 +000080 :5;
81 };
82 };
83 union { /* 0x08 */
84 uint32_t FLMAP1;
85 struct {
86 uint32_t FMBA :8, /* Flash Master Base Address */
87 NM :3, /* Number Of Masters */
88 :5,
89 FISBA :8, /* Flash ICH Strap Base Address */
90 ISL :8; /* ICH Strap Length */
91 };
92 };
93 union { /* 0x0c */
94 uint32_t FLMAP2;
95 struct {
Nico Huber1dc3d422017-06-17 00:09:31 +020096 uint32_t FMSBA :8, /* Flash (G)MCH Strap Base Addr. */
97 MSL :8, /* MCH Strap Length */
98 ICCRIBA :8, /* ICC Reg. Init Base Addr. (new since Sandy Bridge) */
99 RIL :8; /* Register Init Length (new since Hawell) */
Stefan Tauner1e146392011-09-15 23:52:55 +0000100 };
101 };
102};
103
104struct ich_desc_component {
105 union { /* 0x00 */
106 uint32_t FLCOMP; /* Flash Components Register */
Stefan Tauner2ba9f6e2014-08-20 15:39:19 +0000107 /* FLCOMP encoding on various generations:
108 *
109 * Chipset/Generation max_speed dual_output density
110 * [MHz] bits max. bits
111 * ICH8: 33 N/A 5 0:2, 3:5
112 * ICH9: 33 N/A 5 0:2, 3:5
113 * ICH10: 33 N/A 5 0:2, 3:5
114 * Ibex Peak/5: 50 N/A 5 0:2, 3:5
115 * Cougar Point/6: 50 30 5 0:2, 3:5
116 * Patsburg: 50 30 5 0:2, 3:5
117 * Panther Point/7 50 30 5 0:2, 3:5
118 * Lynx Point/8: 50 30 7 0:3, 4:7
Nico Huberfa622942017-03-24 17:25:37 +0100119 * Wildcat Point/9: 50 30 (multi I/O) 7 0:3, 4:7
120 * Sunrise Point/100: 48 30 7 0:3, 4:7
Stefan Tauner2ba9f6e2014-08-20 15:39:19 +0000121 */
Stefan Tauner1e146392011-09-15 23:52:55 +0000122 struct {
Duncan Laurie823096e2014-08-20 15:39:38 +0000123 uint32_t :17,
Stefan Tauner1e146392011-09-15 23:52:55 +0000124 freq_read :3,
125 fastread :1,
126 freq_fastread :3,
127 freq_write :3,
128 freq_read_id :3,
Tai-Hong Wu60dead42015-01-05 23:00:14 +0000129 dual_output :1, /* new since Cougar Point/6 */
130 :1;
131 } modes;
Stefan Tauner2ba9f6e2014-08-20 15:39:19 +0000132 struct {
133 uint32_t comp1_density :3,
134 comp2_density :3,
Tai-Hong Wu60dead42015-01-05 23:00:14 +0000135 :26;
136 } dens_old;
Stefan Tauner2ba9f6e2014-08-20 15:39:19 +0000137 struct {
138 uint32_t comp1_density :4, /* new since Lynx Point/8 */
139 comp2_density :4,
Tai-Hong Wu60dead42015-01-05 23:00:14 +0000140 :24;
141 } dens_new;
Stefan Tauner1e146392011-09-15 23:52:55 +0000142 };
143 union { /* 0x04 */
144 uint32_t FLILL; /* Flash Invalid Instructions Register */
145 struct {
146 uint32_t invalid_instr0 :8,
147 invalid_instr1 :8,
148 invalid_instr2 :8,
149 invalid_instr3 :8;
150 };
151 };
152 union { /* 0x08 */
Nico Huberfa622942017-03-24 17:25:37 +0100153 uint32_t FLPB; /* Flash Partition Boundary Register, until Panther Point/7 */
Stefan Tauner1e146392011-09-15 23:52:55 +0000154 struct {
155 uint32_t FPBA :13, /* Flash Partition Boundary Addr */
156 :19;
157 };
Nico Huberfa622942017-03-24 17:25:37 +0100158 uint32_t FLILL1; /* Flash Invalid Instructions Register, new since Sunrise Point/100 */
Stefan Tauner1e146392011-09-15 23:52:55 +0000159 struct {
Nico Huberfa622942017-03-24 17:25:37 +0100160 uint32_t invalid_instr4 :8,
161 invalid_instr5 :8,
162 invalid_instr6 :8,
163 invalid_instr7 :8;
Stefan Tauner1e146392011-09-15 23:52:55 +0000164 };
165 };
166};
167
David Hendricks8e762302017-08-09 22:21:31 -0700168#define MAX_NUM_FLREGS 16
Nico Huberfa622942017-03-24 17:25:37 +0100169struct ich_desc_region {
170 /*
171 * Number of entries and width differ on various generations:
172 *
173 * Chipset/Generation #FLREGs width (bits)
174 * ICH8 .. Panther Point/7 5 13
175 * Lynx Point/8 .. Wildcat Point/9 7 15
176 * Sunrise Point/100 .. 10 15
David Hendricks8e762302017-08-09 22:21:31 -0700177 * Lewisburg/100 .. 16 15
Nico Huberfa622942017-03-24 17:25:37 +0100178 */
179 union {
180 uint32_t FLREGs[MAX_NUM_FLREGS]; /* Flash Descriptor Regions */
181
182 /* only used for bit-field check */
183 struct {
184 uint32_t base :13,
185 :3,
186 limit :13,
187 :3;
188 } old_reg[MAX_NUM_FLREGS];
189 };
190};
191
David Hendricks8e762302017-08-09 22:21:31 -0700192#define MAX_NUM_MASTERS 6 /* 5 prior to C620/Lewisburg PCH */
Stefan Tauner1e146392011-09-15 23:52:55 +0000193struct ich_desc_master {
194 union {
Nico Huberfa622942017-03-24 17:25:37 +0100195 uint32_t FLMSTRs[MAX_NUM_MASTERS]; /* Flash Masters */
196 /* For pre-Skylake platforms */
Stefan Tauner1e146392011-09-15 23:52:55 +0000197 struct {
198 uint32_t BIOS_req_ID :16,
199 BIOS_descr_r :1,
200 BIOS_BIOS_r :1,
201 BIOS_ME_r :1,
202 BIOS_GbE_r :1,
203 BIOS_plat_r :1,
204 :3,
205 BIOS_descr_w :1,
206 BIOS_BIOS_w :1,
207 BIOS_ME_w :1,
208 BIOS_GbE_w :1,
209 BIOS_plat_w :1,
210 :3;
Stefan Tauner1e146392011-09-15 23:52:55 +0000211 uint32_t ME_req_ID :16,
212 ME_descr_r :1,
213 ME_BIOS_r :1,
214 ME_ME_r :1,
215 ME_GbE_r :1,
216 ME_plat_r :1,
217 :3,
218 ME_descr_w :1,
219 ME_BIOS_w :1,
220 ME_ME_w :1,
221 ME_GbE_w :1,
222 ME_plat_w :1,
223 :3;
Stefan Tauner1e146392011-09-15 23:52:55 +0000224 uint32_t GbE_req_ID :16,
225 GbE_descr_r :1,
226 GbE_BIOS_r :1,
227 GbE_ME_r :1,
228 GbE_GbE_r :1,
229 GbE_plat_r :1,
230 :3,
231 GbE_descr_w :1,
232 GbE_BIOS_w :1,
233 GbE_ME_w :1,
234 GbE_GbE_w :1,
235 GbE_plat_w :1,
236 :3;
237 };
Nico Huberfa622942017-03-24 17:25:37 +0100238 /* From Skylake on */
239 struct {
240 uint32_t :8,
241 read :12,
242 write :12;
243 } mstr[MAX_NUM_MASTERS];
Stefan Tauner1e146392011-09-15 23:52:55 +0000244 };
245};
246
Stefan Taunerb3850962011-12-24 00:00:32 +0000247struct ich_desc_north_strap {
248 union {
249 uint32_t STRPs[1]; /* current maximum: ich8 */
250 struct { /* ich8 */
251 struct { /* STRP2 (in the datasheet) */
252 uint32_t MDB :1,
253 :31;
254 };
255 } ich8;
256 };
257};
258
259struct ich_desc_south_strap {
260 union {
Stefan Taunerd94d25d2012-07-28 03:17:15 +0000261 uint32_t STRPs[18]; /* current maximum: cougar point */
Stefan Taunerb3850962011-12-24 00:00:32 +0000262 struct { /* ich8 */
263 struct { /* STRP1 */
264 uint32_t ME_DISABLE :1,
265 :6,
266 TCOMODE :1,
267 ASD :7,
268 BMCMODE :1,
269 :3,
270 GLAN_PCIE_SEL :1,
271 GPIO12_SEL :2,
272 SPICS1_LANPHYPC_SEL :1,
273 MESM2SEL :1,
274 :1,
275 ASD2 :7;
276 };
277 } ich8;
278 struct { /* ibex peak */
279 struct { /* STRP0 */
280 uint32_t :1,
281 cs_ss2 :1,
282 :5,
283 SMB_EN :1,
284 SML0_EN :1,
285 SML1_EN :1,
286 SML1FRQ :2,
287 SMB0FRQ :2,
288 SML0FRQ :2,
289 :4,
290 LANPHYPC_GP12_SEL :1,
291 cs_ss1 :1,
292 :2,
293 DMI_REQID_DIS :1,
294 :4,
295 BBBS :2,
296 :1;
297 };
298 struct { /* STRP1 */
299 uint32_t cs_ss3 :4,
300 :28;
301 };
302 struct { /* STRP2 */
303 uint32_t :8,
304 MESMASDEN :1,
305 MESMASDA :7,
306 :8,
307 MESMI2CEN :1,
308 MESMI2CA :7;
309 };
310 struct { /* STRP3 */
311 uint32_t :32;
312 };
313 struct { /* STRP4 */
314 uint32_t PHYCON :2,
315 :6,
316 GBEMAC_SMBUS_ADDR_EN :1,
317 GBEMAC_SMBUS_ADDR :7,
318 :1,
319 GBEPHY_SMBUS_ADDR :7,
320 :8;
321 };
322 struct { /* STRP5 */
323 uint32_t :32;
324 };
325 struct { /* STRP6 */
326 uint32_t :32;
327 };
328 struct { /* STRP7 */
329 uint32_t MESMA2UDID_VENDOR :16,
330 MESMA2UDID_DEVICE :16;
331 };
332 struct { /* STRP8 */
333 uint32_t :32;
334 };
335 struct { /* STRP9 */
336 uint32_t PCIEPCS1 :2,
337 PCIEPCS2 :2,
338 PCIELR1 :1,
339 PCIELR2 :1,
340 DMILR :1,
341 :1,
342 PHY_PCIEPORTSEL :3,
343 PHY_PCIE_EN :1,
344 :20;
345 };
346 struct { /* STRP10 */
347 uint32_t :1,
348 ME_BOOT_FLASH :1,
349 cs_ss5 :1,
350 VE_EN :1,
351 :4,
352 MMDDE :1,
353 MMADDR :7,
354 cs_ss7 :1,
355 :1,
356 ICC_SEL :3,
357 MER_CL1 :1,
358 :10;
359 };
360 struct { /* STRP11 */
361 uint32_t SML1GPAEN :1,
362 SML1GPA :7,
363 :16,
364 SML1I2CAEN :1,
365 SML1I2CA :7;
366 };
367 struct { /* STRP12 */
368 uint32_t :32;
369 };
370 struct { /* STRP13 */
371 uint32_t :32;
372 };
373 struct { /* STRP14 */
374 uint32_t :8,
375 VE_EN2 :1,
376 :5,
377 VE_BOOT_FLASH :1,
378 :1,
379 BW_SSD :1,
380 NVMHCI_EN :1,
381 :14;
382 };
383 struct { /* STRP15 */
384 uint32_t :3,
385 cs_ss6 :2,
386 :1,
387 IWL_EN :1,
388 :1,
389 t209min :2,
390 :22;
391 };
392 } ibex;
393 struct { /* cougar point */
394 struct { /* STRP0 */
395 uint32_t :1,
396 cs_ss1 :1,
397 :5,
398 SMB_EN :1,
399 SML0_EN :1,
400 SML1_EN :1,
401 SML1FRQ :2,
402 SMB0FRQ :2,
403 SML0FRQ :2,
404 :4,
405 LANPHYPC_GP12_SEL :1,
406 LINKSEC_DIS :1,
407 :2,
408 DMI_REQID_DIS :1,
409 :4,
410 BBBS :2,
411 :1;
412 };
413 struct { /* STRP1 */
414 uint32_t cs_ss3 :4,
415 :4,
416 cs_ss2 :1,
417 :28;
418 };
419 struct { /* STRP2 */
420 uint32_t :8,
421 MESMASDEN :1,
422 MESMASDA :7,
423 MESMMCTPAEN :1,
424 MESMMCTPA :7,
425 MESMI2CEN :1,
426 MESMI2CA :7;
427 };
428 struct { /* STRP3 */
429 uint32_t :32;
430 };
431 struct { /* STRP4 */
432 uint32_t PHYCON :2,
433 :6,
434 GBEMAC_SMBUS_ADDR_EN :1,
435 GBEMAC_SMBUS_ADDR :7,
436 :1,
437 GBEPHY_SMBUS_ADDR :7,
438 :8;
439 };
440 struct { /* STRP5 */
441 uint32_t :32;
442 };
443 struct { /* STRP6 */
444 uint32_t :32;
445 };
446 struct { /* STRP7 */
447 uint32_t MESMA2UDID_VENDOR :16,
448 MESMA2UDID_DEVICE :16;
449 };
450 struct { /* STRP8 */
451 uint32_t :32;
452 };
453 struct { /* STRP9 */
454 uint32_t PCIEPCS1 :2,
455 PCIEPCS2 :2,
456 PCIELR1 :1,
457 PCIELR2 :1,
458 DMILR :1,
459 cs_ss4 :1,
460 PHY_PCIEPORTSEL :3,
461 PHY_PCIE_EN :1,
462 :2,
463 SUB_DECODE_EN :1,
464 :7,
465 PCHHOT_SML1ALERT_SEL :1,
466 :9;
467 };
468 struct { /* STRP10 */
469 uint32_t :1,
470 ME_BOOT_FLASH :1,
471 :6,
472 MDSMBE_EN :1,
473 MDSMBE_ADD :7,
474 :2,
475 ICC_SEL :3,
476 MER_CL1 :1,
477 ICC_PRO_SEL :1,
478 Deep_SX_EN :1,
479 ME_DBG_LAN :1,
480 :7;
481 };
482 struct { /* STRP11 */
483 uint32_t SML1GPAEN :1,
484 SML1GPA :7,
485 :16,
486 SML1I2CAEN :1,
487 SML1I2CA :7;
488 };
489 struct { /* STRP12 */
490 uint32_t :32;
491 };
492 struct { /* STRP13 */
493 uint32_t :32;
494 };
495 struct { /* STRP14 */
496 uint32_t :32;
497 };
498 struct { /* STRP15 */
499 uint32_t cs_ss6 :6,
500 IWL_EN :1,
501 cs_ss5 :2,
502 :4,
503 SMLINK1_THERM_SEL :1,
504 SLP_LAN_GP29_SEL :1,
505 :16;
506 };
507 struct { /* STRP16 */
508 uint32_t :32;
509 };
510 struct { /* STRP17 */
511 uint32_t ICML :1,
512 cs_ss7 :1,
513 :30;
514 };
515 } cougar;
516 };
517};
518
519struct ich_desc_upper_map {
520 union {
521 uint32_t FLUMAP1; /* Flash Upper Map 1 */
522 struct {
523 uint32_t VTBA :8, /* ME VSCC Table Base Address */
524 VTL :8, /* ME VSCC Table Length */
525 :16;
526 };
527 };
528 struct {
529 union { /* JEDEC-ID Register */
530 uint32_t JID;
531 struct {
532 uint32_t vid :8, /* Vendor ID */
533 cid0 :8, /* Component ID 0 */
534 cid1 :8, /* Component ID 1 */
535 :8;
536 };
537 };
538 union { /* Vendor Specific Component Capabilities */
539 uint32_t VSCC;
540 struct {
541 uint32_t ubes :2, /* Upper Block/Sector Erase Size */
542 uwg :1, /* Upper Write Granularity */
543 uwsr :1, /* Upper Write Status Required */
544 uwews :1, /* Upper Write Enable on Write Status */
545 :3,
546 ueo :8, /* Upper Erase Opcode */
547 lbes :2, /* Lower Block/Sector Erase Size */
548 lwg :1, /* Lower Write Granularity */
549 lwsr :1, /* Lower Write Status Required */
550 lwews :1, /* Lower Write Enable on Write Status */
551 :3,
552 leo :16; /* Lower Erase Opcode */
553 };
554 };
555 } vscc_table[128];
556};
Stefan Taunerb3850962011-12-24 00:00:32 +0000557
Stefan Tauner1e146392011-09-15 23:52:55 +0000558struct ich_descriptors {
559 struct ich_desc_content content;
560 struct ich_desc_component component;
561 struct ich_desc_region region;
562 struct ich_desc_master master;
Stefan Taunerb3850962011-12-24 00:00:32 +0000563 struct ich_desc_north_strap north;
564 struct ich_desc_south_strap south;
565 struct ich_desc_upper_map upper;
Stefan Tauner1e146392011-09-15 23:52:55 +0000566};
567
Nico Huberfa622942017-03-24 17:25:37 +0100568ssize_t ich_number_of_regions(enum ich_chipset cs, const struct ich_desc_content *content);
569ssize_t ich_number_of_masters(enum ich_chipset cs, const struct ich_desc_content *content);
570
Nico Huber67d71792017-06-17 03:10:15 +0200571void prettyprint_ich_chipset(enum ich_chipset cs);
Stefan Taunerb3850962011-12-24 00:00:32 +0000572void prettyprint_ich_descriptors(enum ich_chipset cs, const struct ich_descriptors *desc);
Stefan Tauner1e146392011-09-15 23:52:55 +0000573
Nico Huberfa622942017-03-24 17:25:37 +0100574void prettyprint_ich_descriptor_content(enum ich_chipset cs, const struct ich_desc_content *content);
Stefan Tauner2ba9f6e2014-08-20 15:39:19 +0000575void prettyprint_ich_descriptor_component(enum ich_chipset cs, const struct ich_descriptors *desc);
Nico Huberfa622942017-03-24 17:25:37 +0100576void prettyprint_ich_descriptor_region(enum ich_chipset cs, const struct ich_descriptors *desc);
577void prettyprint_ich_descriptor_master(enum ich_chipset cs, const struct ich_descriptors *desc);
Stefan Tauner1e146392011-09-15 23:52:55 +0000578
Stefan Taunerb3850962011-12-24 00:00:32 +0000579void prettyprint_ich_descriptor_upper_map(const struct ich_desc_upper_map *umap);
580void prettyprint_ich_descriptor_straps(enum ich_chipset cs, const struct ich_descriptors *desc);
Nico Huberfa622942017-03-24 17:25:37 +0100581int read_ich_descriptors_from_dump(const uint32_t *dump, size_t len, enum ich_chipset *cs, struct ich_descriptors *desc);
Stefan Taunerb3850962011-12-24 00:00:32 +0000582
Nico Huberd54e4f42017-03-23 23:45:47 +0100583int read_ich_descriptors_via_fdo(enum ich_chipset cs, void *spibar, struct ich_descriptors *desc);
Stefan Tauner2ba9f6e2014-08-20 15:39:19 +0000584int getFCBA_component_density(enum ich_chipset cs, const struct ich_descriptors *desc, uint8_t idx);
Stefan Tauner1e146392011-09-15 23:52:55 +0000585
Nico Huber305f4172013-06-14 11:55:26 +0200586int layout_from_ich_descriptors(struct ich_layout *, const void *dump, size_t len);
587
Stefan Tauner1e146392011-09-15 23:52:55 +0000588#endif /* __ICH_DESCRIPTORS_H__ */