blob: 5ec01f6165c48f8f1cacc14efa2e50fa13238d52 [file] [log] [blame]
Andrew Wu33b09562013-10-25 16:22:57 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 DMP Electronics Inc.
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; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010017 * Foundation, Inc.
Andrew Wu33b09562013-10-25 16:22:57 +080018 */
19
20#ifndef DMP_POST_CODE_H
21#define DMP_POST_CODE_H
22
23/* DMP Vortex86EX specific POST codes */
24
25#define POST_DMP_KBD_FW_UPLOAD 0x06
26#define POST_DMP_KBD_CHK_READY 0x07
27#define POST_DMP_KBD_IS_READY 0x08
Andrew Wu1fefa842013-10-24 20:37:48 +080028#define POST_DMP_KBD_IS_BAD 0x09
Andrew Wu33b09562013-10-25 16:22:57 +080029#define POST_DMP_KBD_FW_VERIFY_ERR 0x82
30#define POST_DMP_ID_ERR 0x85
31#define POST_DMP_DRAM_TEST_ERR 0x86
32#define POST_DMP_DRAM_SIZING_ERR 0x77
33
34#endif /* DMP_POST_CODE_H*/