blob: e1a640cab7ae4a07016ec207c560de0a12eac563 [file] [log] [blame]
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +00001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Alexandru Gagniuc <mr.nuke.me@gmail.com>
5 *
6 * This program is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation, either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000015 */
16
17/**
18 * @file post_codes.h
Martin Roth25078202015-01-06 21:05:23 -070019 */
20
21/*
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000022 * This aims to be a central point for POST codes used throughout coreboot.
23 * All POST codes should be declared here as macros, and post_code() should
24 * be used with the macros instead of hardcoded values. This allows us to
Martin Roth0cb07e32013-07-09 21:46:01 -060025 * quickly reference POST codes when nothing is working
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070026 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000027 * The format for a POST code macro is
28 * #define POST_WHAT_WE_COMMUNICATE_IS_HAPPENING_WHEN_THIS_CODE_IS_POSTED
29 * Lets's keep it at POST_* instead of POST_CODE_*
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070030 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000031 * This file is also included by early assembly files. Only use #define s;
32 * no function prototypes allowed here
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070033 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000034 * DOCUMENTATION:
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070035 * Please document any and all post codes using Doxygen style comments. We
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000036 * want to be able to generate a verbose enough documentation that is useful
37 * during debugging. Failure to do so will result in your patch being rejected
38 * without any explanation or effort on part of the maintainers.
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070039 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000040 */
Martin Roth25078202015-01-06 21:05:23 -070041
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000042#ifndef POST_CODES_H
43#define POST_CODES_H
44
45/**
46 * \brief Entry into 'crt0.s'. reset code jumps to here
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070047 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000048 * First instruction that gets executed after the reset vector jumps.
49 * This indicates that the reset vector points to the correct code segment.
50 */
51#define POST_RESET_VECTOR_CORRECT 0x01
52
53/**
54 * \brief Entry into protected mode
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070055 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000056 * Preparing to enter protected mode. This is POSTed right before changing to
57 * protected mode.
58 */
59#define POST_ENTER_PROTECTED_MODE 0x10
60
61/**
62 * \brief Start copying coreboot to RAM with decompression if compressed
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070063 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000064 * POSTed before ramstage is about to be loaded into memory
65 */
Lee Leahy84d20d02017-03-07 15:00:18 -080066#define POST_PREPARE_RAMSTAGE 0x11
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000067
68/**
69 * \brief Copy/decompression finished; jumping to RAM
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070070 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000071 * This is called after ramstage is loaded in memory, and before
72 * the code jumps there. This represents the end of romstage.
73 */
74#define POST_RAMSTAGE_IS_PREPARED 0x12
75
76
77/**
78 * \brief Entry into c_start
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070079 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000080 * c_start.S is the first code executing in ramstage.
81 */
82#define POST_ENTRY_C_START 0x13
83
84/**
Elyes HAOUAS918535a2016-07-28 21:25:21 +020085 * \brief Pre call to RAM stage main()
Duncan Laurie04c5bae2012-08-13 09:37:42 -070086 *
Elyes HAOUAS918535a2016-07-28 21:25:21 +020087 * POSTed right before RAM stage main() is called from c_start.S
Duncan Laurie04c5bae2012-08-13 09:37:42 -070088 */
89#define POST_PRE_HARDWAREMAIN 0x79
90
91/**
Elyes HAOUAS918535a2016-07-28 21:25:21 +020092 * \brief Entry into coreboot in RAM stage main()
Stefan Reinauer5ff7c132011-10-31 12:56:45 -070093 *
Martin Roth0cb07e32013-07-09 21:46:01 -060094 * This is the first call in hardwaremain.c. If this code is POSTed, then
95 * ramstage has successfully loaded and started executing.
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +000096 */
97#define POST_ENTRY_RAMSTAGE 0x80
98
99/**
100 * \brief Console is initialized
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700101 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000102 * The console is initialized and is ready for usage
103 */
104#define POST_CONSOLE_READY 0x39
105
106/**
107 * \brief Console boot message succeeded
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700108 *
Martin Roth0cb07e32013-07-09 21:46:01 -0600109 * First console message has been successfully sent through the console backend
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000110 * driver.
111 */
112#define POST_CONSOLE_BOOT_MSG 0x40
113
114/**
Vikram Narayanan0713ca32012-01-23 01:44:44 +0530115 * \brief Before enabling the cache
116 *
117 * Going to enable the cache
118 */
119#define POST_ENABLING_CACHE 0x60
120
121/**
Duncan Lauriecb73a842013-06-10 10:41:04 -0700122 * \brief Before Device Probe
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700123 *
Duncan Lauriecb73a842013-06-10 10:41:04 -0700124 * Boot State Machine: bs_pre_device()
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000125 */
Duncan Lauriecb73a842013-06-10 10:41:04 -0700126#define POST_BS_PRE_DEVICE 0x70
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000127
128/**
Duncan Lauriecb73a842013-06-10 10:41:04 -0700129 * \brief Initializing Chips
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700130 *
Duncan Lauriecb73a842013-06-10 10:41:04 -0700131 * Boot State Machine: bs_dev_init_chips()
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000132 */
Duncan Lauriecb73a842013-06-10 10:41:04 -0700133#define POST_BS_DEV_INIT_CHIPS 0x71
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000134
135/**
Duncan Lauriecb73a842013-06-10 10:41:04 -0700136 * \brief Starting Device Enumeration
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700137 *
Duncan Lauriecb73a842013-06-10 10:41:04 -0700138 * Boot State Machine: bs_dev_enumerate()
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000139 */
Duncan Lauriecb73a842013-06-10 10:41:04 -0700140#define POST_BS_DEV_ENUMERATE 0x72
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000141
142/**
Duncan Lauriecb73a842013-06-10 10:41:04 -0700143 * \brief Device Resource Allocatio
Stefan Reinauer52095f52012-08-07 13:14:20 -0700144 *
Duncan Lauriecb73a842013-06-10 10:41:04 -0700145 * Boot State Machine: bs_dev_resources()
Stefan Reinauer52095f52012-08-07 13:14:20 -0700146 */
Duncan Lauriecb73a842013-06-10 10:41:04 -0700147#define POST_BS_DEV_RESOURCES 0x73
148
149/**
150 * \brief Device Enable
151 *
152 * Boot State Machine: bs_dev_enable()
153 */
154#define POST_BS_DEV_ENABLE 0x74
155
156/**
157 * \brief Device Initialization
158 *
159 * Boot State Machine: bs_dev_init()
160 */
161#define POST_BS_DEV_INIT 0x75
162
163/**
164 * \brief After Device Probe
165 *
166 * Boot State Machine: bs_post_device()
167 */
168#define POST_BS_POST_DEVICE 0x76
169
170/**
171 * \brief OS Resume Check
172 *
173 * Boot State Machine: bs_os_resume_check()
174 */
175#define POST_BS_OS_RESUME_CHECK 0x77
176
177/**
178 * \brief OS Resume
179 *
180 * Boot State Machine: bs_os_resume()
181 */
182#define POST_BS_OS_RESUME 0x78
183
184/**
185 * \brief Write Tables
186 *
187 * Boot State Machine: bs_write_tables()
188 */
189#define POST_BS_WRITE_TABLES 0x79
190
191/**
192 * \brief Load Payload
193 *
194 * Boot State Machine: bs_payload_load()
195 */
196#define POST_BS_PAYLOAD_LOAD 0x7a
197
198/**
199 * \brief Boot Payload
200 *
201 * Boot State Machine: bs_payload_boot()
202 */
203#define POST_BS_PAYLOAD_BOOT 0x7b
Stefan Reinauer52095f52012-08-07 13:14:20 -0700204
205/**
Aaron Durbin96b3c6f2016-11-10 21:09:25 -0600206 * \brief Before calling FSP Notify before End of Firmware
207 *
208 * Going to call into FSP binary for Notify phase
209 */
210#define POST_FSP_NOTIFY_BEFORE_END_OF_FIRMWARE 0x88
211
212/**
213 * \brief Before calling FSP Notify after End of Firmware
214 *
215 * Going to call into FSP binary for Notify phase
216 */
217#define POST_FSP_NOTIFY_AFTER_END_OF_FIRMWARE 0x89
218
219/**
Duncan Lauriefb509832015-11-22 14:53:57 -0800220 * \brief Before calling FSP TempRamInit
221 *
222 * Going to call into FSP binary for TempRamInit phase
223 */
224#define POST_FSP_TEMP_RAM_INIT 0x90
225
226/**
227 * \brief Before calling FSP TempRamExit
228 *
229 * Going to call into FSP binary for TempRamExit phase
230 */
231#define POST_FSP_TEMP_RAM_EXIT 0x91
232
233/**
234 * \brief Before calling FSP MemoryInit
235 *
236 * Going to call into FSP binary for MemoryInit phase
237 */
238#define POST_FSP_MEMORY_INIT 0x92
239
240/**
241 * \brief Before calling FSP SiliconInit
242 *
243 * Going to call into FSP binary for SiliconInit phase
244 */
245#define POST_FSP_SILICON_INIT 0x93
246
247/**
248 * \brief Before calling FSP Notify before resource allocation
249 *
250 * Going to call into FSP binary for Notify phase
251 */
252#define POST_FSP_NOTIFY_BEFORE_ENUMERATE 0x94
253
254/**
255 * \brief Before calling FSP Notify before finalize
256 *
257 * Going to call into FSP binary for Notify phase
258 */
259#define POST_FSP_NOTIFY_BEFORE_FINALIZE 0x95
260
261/**
Hannah Williams4cff1d52016-06-08 14:29:47 -0700262 * \brief Indicate OS _PTS entry
263 *
264 * Called from _PTS asl method
265 */
266#define POST_OS_ENTER_PTS 0x96
267
268/**
269 * \brief Indicate OS _WAK entry
270 *
271 * Called from within _WAK method
272 */
273#define POST_OS_ENTER_WAKE 0x97
274
275/**
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000276 * \brief Entry into elf boot
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700277 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000278 * This POST code is called right before invoking jmp_to_elf_entry()
279 * jmp_to_elf_entry() invokes the payload, and should never return
280 */
281#define POST_ENTER_ELF_BOOT 0xf8
282
283/**
284 * \brief Jumping to payload
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700285 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000286 * Called right before jumping to a payload. If the boot sequence stops with
287 * this code, chances are the payload freezes.
288 */
289#define POST_JUMPING_TO_PAYLOAD 0xf3
290
291/**
Duncan Laurie4397aa12014-05-12 10:22:01 -0700292 * \brief TPM failure
293 *
294 * An error with the TPM, either unexepcted state or communications failure.
295 */
296#define POST_TPM_FAILURE 0xed
297
298/**
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000299 * \brief Not supposed to get here
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700300 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000301 * A function that should not have returned, returned
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700302 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000303 * Check the console output for details.
304 */
305#define POST_DEAD_CODE 0xee
306
307/**
Duncan Laurie727b5452013-08-08 16:28:41 -0700308 * \brief Resume from suspend failed
309 *
310 * This post code is sent when the firmware is expected to resume it is
311 * unable to do so.
312 */
313#define POST_RESUME_FAILURE 0xef
314
315/**
Duncan Laurie04c5bae2012-08-13 09:37:42 -0700316 * \brief Final code before OS resumes
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700317 *
Duncan Laurie04c5bae2012-08-13 09:37:42 -0700318 * Called right before jumping to the OS resume vector.
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000319 */
Duncan Laurie04c5bae2012-08-13 09:37:42 -0700320#define POST_OS_RESUME 0xfd
321
322/**
323 * \brief Final code before OS boots
324 *
325 * This may not be called depending on the payload used.
326 */
327#define POST_OS_BOOT 0xfe
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000328
329/**
330 * \brief Elfload fail or die() called
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700331 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000332 * Coreboot was not able to load the payload, no payload was detected
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700333 * or die() was called.
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000334 * \n
335 * If this code appears before entering ramstage, then most likely
336 * ramstage is corrupted, and reflashing of the ROM chip is needed.
337 * \n
338 * If this code appears after ramstage, there is a problem with the payload
339 * If the payload was built out-of-tree, check that it was compiled as
340 * a coreboot payload
341 * \n
Martin Roth2ed0aa22016-01-05 20:58:58 -0700342 * Check the console output to see exactly where the failure occurred.
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000343 */
Lee Leahy84d20d02017-03-07 15:00:18 -0800344#define POST_DIE 0xff
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000345
346
347/*
348 * The following POST codes are taken from src/include/cpu/amd/geode_post_code.h
349 * They overlap with previous codes, and most are not even used
Martin Roth0cb07e32013-07-09 21:46:01 -0600350 * Some mainboards still require them, but they are deprecated. We want to consolidate
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000351 * our own POST code structure with the codes above.
Stefan Reinauer5ff7c132011-10-31 12:56:45 -0700352 *
Alexandru Gagniuc5005bb062011-04-11 20:17:22 +0000353 * standard AMD post definitions for the AMD Geode
354 */
355#define POST_Output_Port (0x080) /* port to write post codes to*/
356
357#define POST_preSioInit (0x000)
358#define POST_clockInit (0x001)
359#define POST_CPURegInit (0x002)
360#define POST_UNREAL (0x003)
361#define POST_CPUMemRegInit (0x004)
362#define POST_CPUTest (0x005)
363#define POST_memSetup (0x006)
364#define POST_memSetUpStack (0x007)
365#define POST_memTest (0x008)
366#define POST_shadowRom (0x009)
367#define POST_memRAMoptimize (0x00A)
368#define POST_cacheInit (0x00B)
369#define POST_northBridgeInit (0x00C)
370#define POST_chipsetInit (0x00D)
371#define POST_sioTest (0x00E)
372#define POST_pcATjunk (0x00F)
373
374#define POST_intTable (0x010)
375#define POST_memInfo (0x011)
376#define POST_romCopy (0x012)
377#define POST_PLLCheck (0x013)
378#define POST_keyboardInit (0x014)
379#define POST_cpuCacheOff (0x015)
380#define POST_BDAInit (0x016)
381#define POST_pciScan (0x017)
382#define POST_optionRomInit (0x018)
383#define POST_ResetLimits (0x019)
384#define POST_summary_screen (0x01A)
385#define POST_Boot (0x01B)
386#define POST_SystemPreInit (0x01C)
387#define POST_ClearRebootFlag (0x01D)
388#define POST_GLIUInit (0x01E)
389#define POST_BootFailed (0x01F)
390
391#define POST_CPU_ID (0x020)
392#define POST_COUNTERBROKEN (0x021)
393#define POST_DIFF_DIMMS (0x022)
394#define POST_WIGGLE_MEM_LINES (0x023)
395#define POST_NO_GLIU_DESC (0x024)
396#define POST_CPU_LCD_CHECK (0x025)
397#define POST_CPU_LCD_PASS (0x026)
398#define POST_CPU_LCD_FAIL (0x027)
399#define POST_CPU_STEPPING (0x028)
400#define POST_CPU_DM_BIST_FAILURE (0x029)
401#define POST_CPU_FLAGS (0x02A)
402#define POST_CHIPSET_ID (0x02B)
403#define POST_CHIPSET_ID_PASS (0x02C)
404#define POST_CHIPSET_ID_FAIL (0x02D)
405#define POST_CPU_ID_GOOD (0x02E)
406#define POST_CPU_ID_FAIL (0x02F)
407
408/* PCI config*/
409#define P80_PCICFG (0x030)
410
411/* PCI io*/
412#define P80_PCIIO (0x040)
413
414/* PCI memory*/
415#define P80_PCIMEM (0x050)
416
417/* SIO*/
418#define P80_SIO (0x060)
419
420/* Memory Setp*/
421#define P80_MEM_SETUP (0x070)
422#define POST_MEM_SETUP (0x070)
423#define ERROR_32BIT_DIMMS (0x071)
424#define POST_MEM_SETUP2 (0x072)
425#define POST_MEM_SETUP3 (0x073)
426#define POST_MEM_SETUP4 (0x074)
427#define POST_MEM_SETUP5 (0x075)
428#define POST_MEM_ENABLE (0x076)
429#define ERROR_NO_DIMMS (0x077)
430#define ERROR_DIFF_DIMMS (0x078)
431#define ERROR_BAD_LATENCY (0x079)
432#define ERROR_SET_PAGE (0x07A)
433#define ERROR_DENSITY_DIMM (0x07B)
434#define ERROR_UNSUPPORTED_DIMM (0x07C)
435#define ERROR_BANK_SET (0x07D)
436#define POST_MEM_SETUP_GOOD (0x07E)
437#define POST_MEM_SETUP_FAIL (0x07F)
438
439#define POST_UserPreInit (0x080)
440#define POST_UserPostInit (0x081)
441#define POST_Equipment_check (0x082)
442#define POST_InitNVRAMBX (0x083)
443#define POST_NoPIRTable (0x084)
444#define POST_ChipsetFingerPrintPass (0x085)
445#define POST_ChipsetFingerPrintFail (0x086)
446#define POST_CPU_IM_TAG_BIST_FAILURE (0x087)
447#define POST_CPU_IM_DATA_BIST_FAILURE (0x088)
448#define POST_CPU_FPU_BIST_FAILURE (0x089)
449#define POST_CPU_BTB_BIST_FAILURE (0x08A)
450#define POST_CPU_EX_BIST_FAILURE (0x08B)
451#define POST_Chipset_PI_Test_Fail (0x08C)
452#define POST_Chipset_SMBus_SDA_Test_Fail (0x08D)
453#define POST_BIT_CLK_Fail (0x08E)
454
455#define POST_STACK_SETUP (0x090)
456#define POST_CPU_PF_BIST_FAILURE (0x091)
457#define POST_CPU_L2_BIST_FAILURE (0x092)
458#define POST_CPU_GLCP_BIST_FAILURE (0x093)
459#define POST_CPU_DF_BIST_FAILURE (0x094)
460#define POST_CPU_VG_BIST_FAILURE (0x095)
461#define POST_CPU_VIP_BIST_FAILURE (0x096)
462#define POST_STACK_SETUP_PASS (0x09E)
463#define POST_STACK_SETUP_FAIL (0x09F)
464
465#define POST_PLL_INIT (0x0A0)
466#define POST_PLL_MANUAL (0x0A1)
467#define POST_PLL_STRAP (0x0A2)
468#define POST_PLL_RESET_FAIL (0x0A3)
469#define POST_PLL_PCI_FAIL (0x0A4)
470#define POST_PLL_MEM_FAIL (0x0A5)
471#define POST_PLL_CPU_VER_FAIL (0x0A6)
472
473#define POST_MEM_TESTMEM (0x0B0)
474#define POST_MEM_TESTMEM1 (0x0B1)
475#define POST_MEM_TESTMEM2 (0x0B2)
476#define POST_MEM_TESTMEM3 (0x0B3)
477#define POST_MEM_TESTMEM4 (0x0B4)
478#define POST_MEM_TESTMEM_PASS (0x0BE)
479#define POST_MEM_TESTMEM_FAIL (0x0BF)
480
481#define POST_SECUROM_SECBOOT_START (0x0C0)
482#define POST_SECUROM_BOOTSRCSETUP (0x0C1)
483#define POST_SECUROM_REMAP_FAIL (0x0C2)
484#define POST_SECUROM_BOOTSRCSETUP_FAIL (0x0C3)
485#define POST_SECUROM_DCACHESETUP (0x0C4)
486#define POST_SECUROM_DCACHESETUP_FAIL (0x0C5)
487#define POST_SECUROM_ICACHESETUP (0x0C6)
488#define POST_SECUROM_DESCRIPTORSETUP (0x0C7)
489#define POST_SECUROM_DCACHESETUPBIOS (0x0C8)
490#define POST_SECUROM_PLATFORMSETUP (0x0C9)
491#define POST_SECUROM_SIGCHECKBIOS (0x0CA)
492#define POST_SECUROM_ICACHESETUPBIOS (0x0CB)
493#define POST_SECUROM_PASS (0x0CC)
494#define POST_SECUROM_FAIL (0x0CD)
495
496#define POST_RCONFInitError (0x0CE)
497#define POST_CacheInitError (0x0CF)
498
499#define POST_ROM_PREUNCOMPRESS (0x0D0)
500#define POST_ROM_UNCOMPRESS (0x0D1)
501#define POST_ROM_SMM_INIT (0x0D2)
502#define POST_ROM_VID_BIOS (0x0D3)
503#define POST_ROM_LCDINIT (0x0D4)
504#define POST_ROM_SPLASH (0x0D5)
505#define POST_ROM_HDDINIT (0x0D6)
506#define POST_ROM_SYS_INIT (0x0D7)
507#define POST_ROM_DMM_INIT (0x0D8)
508#define POST_ROM_TVINIT (0x0D9)
509#define POST_ROM_POSTUNCOMPRESS (0x0DE)
510
511#define P80_CHIPSET_INIT (0x0E0)
512#define POST_PreChipsetInit (0x0E1)
513#define POST_LateChipsetInit (0x0E2)
514#define POST_NORTHB_INIT (0x0E8)
515
516#define POST_INTR_SEG_JUMP (0x0F0)
517
Martin Rothfd277d82016-01-11 12:47:30 -0700518#endif /* POST_CODES_H */