aboutsummaryrefslogtreecommitdiff
path: root/src/cpu
diff options
context:
space:
mode:
authorAndrew Wu <arw@dmp.com.tw>2013-10-25 16:22:57 +0800
committerAlexandru Gagniuc <mr.nuke.me@gmail.com>2013-11-24 05:36:36 +0100
commit33b09567d291d3e07429c94e38ec6210435c42c1 (patch)
treeb56de4af909023ab57805357b363b5e8ab52536e /src/cpu
parent099b914dcd63cb8c177fa1e981046cd25f4565f7 (diff)
dmp/vortex86ex: Move DMP specific POST code defines into one file
Move into src/cpu/dmp/dmp_post_code.h Change-Id: If9f4d842f352eb41618e71f49a226d3cc4ad0b46 Signed-off-by: Andrew Wu <arw@dmp.com.tw> Reviewed-on: http://review.coreboot.org/3989 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Diffstat (limited to 'src/cpu')
-rw-r--r--src/cpu/dmp/dmp_post_code.h33
1 files changed, 33 insertions, 0 deletions
diff --git a/src/cpu/dmp/dmp_post_code.h b/src/cpu/dmp/dmp_post_code.h
new file mode 100644
index 0000000000..6658ce8b02
--- /dev/null
+++ b/src/cpu/dmp/dmp_post_code.h
@@ -0,0 +1,33 @@
+/*
+ * This file is part of the coreboot project.
+ *
+ * Copyright (C) 2013 DMP Electronics Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; version 2 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ */
+
+#ifndef DMP_POST_CODE_H
+#define DMP_POST_CODE_H
+
+/* DMP Vortex86EX specific POST codes */
+
+#define POST_DMP_KBD_FW_UPLOAD 0x06
+#define POST_DMP_KBD_CHK_READY 0x07
+#define POST_DMP_KBD_IS_READY 0x08
+#define POST_DMP_KBD_FW_VERIFY_ERR 0x82
+#define POST_DMP_ID_ERR 0x85
+#define POST_DMP_DRAM_TEST_ERR 0x86
+#define POST_DMP_DRAM_SIZING_ERR 0x77
+
+#endif /* DMP_POST_CODE_H*/