* Patches by Pantelis Antoniou, 30 Mar 2004:
- add support for the Epson 156x series of graphical displays
(These displays are serial and not suitable for using a normal
framebuffer console on them)
- add infrastructure needed in order to POST any DSPs in a board
diff --git a/post/tests.c b/post/tests.c
index 02506c0..bce5330 100644
--- a/post/tests.c
+++ b/post/tests.c
@@ -43,6 +43,7 @@
extern int usb_post_test (int flags);
extern int spr_post_test (int flags);
extern int sysmon_post_test (int flags);
+extern int dsp_post_test (int flags);
extern int sysmon_init_f (void);
@@ -196,6 +197,18 @@
CFG_POST_SYSMON
},
#endif
+#if CONFIG_POST & CFG_POST_DSP
+ {
+ "DSP test",
+ "dsp",
+ "This test checks any connected DSP(s).",
+ POST_RAM | POST_MANUAL,
+ &dsp_post_test,
+ NULL,
+ NULL,
+ CFG_POST_DSP
+ },
+#endif
};
unsigned int post_list_size = sizeof (post_list) / sizeof (struct post_test);