diff -ruNb u-boot-original/include/post.h u-boot-dsppost/include/post.h --- u-boot-original/include/post.h 2004-03-30 14:37:28.758916888 +0300 +++ u-boot-dsppost/include/post.h 2004-03-30 16:01:34.283880504 +0300 @@ -89,6 +89,7 @@ #define CFG_POST_USB 0x00000200 #define CFG_POST_SPR 0x00000400 #define CFG_POST_SYSMON 0x00000800 +#define CFG_POST_DSP 0x00001000 #endif /* CONFIG_POST */ diff -ruNb u-boot-original/post/Makefile u-boot-dsppost/post/Makefile --- u-boot-original/post/Makefile 2004-03-30 14:37:28.829906096 +0300 +++ u-boot-dsppost/post/Makefile 2004-03-30 16:01:34.284880352 +0300 @@ -28,6 +28,6 @@ AOBJS = cache_8xx.o COBJS = post.o tests.o cpu.o rtc.o watchdog.o memory.o i2c.o cache.o sysmon.o -COBJS += uart.o ether.o usb.o spr.o +COBJS += uart.o ether.o usb.o spr.o dsp.o include $(TOPDIR)/post/rules.mk diff -ruNb u-boot-original/post/dsp.c u-boot-dsppost/post/dsp.c --- u-boot-original/post/dsp.c 1970-01-01 02:00:00.000000000 +0200 +++ u-boot-dsppost/post/dsp.c 2004-03-30 16:01:34.284880352 +0300 @@ -0,0 +1,49 @@ +/* + * (C) Copyright 2004 + * Pantelis Antoniou, Intracom S.A. , panto@intracom.gr + * + * See file CREDITS for list of people who contributed to this + * project. + * + * 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; either version 2 of + * the License, or (at your option) any later version. + * + * 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., 59 Temple Place, Suite 330, Boston, + * MA 02111-1307 USA + */ + +#include + +/* + * DSP test + * + * This test verifies the connection and performs a memory test + * on any connected DSP(s). The meat of the work is done + * in the board specific function. + */ + +#ifdef CONFIG_POST + +#include + +#if CONFIG_POST & CFG_POST_DSP + +extern int board_post_dsp(int flags); + +int dsp_post_test (int flags) +{ + return board_post_dsp(flags); +} + +#endif /* CONFIG_POST & CFG_POST_DSP */ +#endif /* CONFIG_POST */ + diff -ruNb u-boot-original/post/tests.c u-boot-dsppost/post/tests.c --- u-boot-original/post/tests.c 2004-03-30 14:37:28.831905792 +0300 +++ u-boot-dsppost/post/tests.c 2004-03-30 16:01:34.284880352 +0300 @@ -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);