blob: f88c379a69e1af47f637a4772648ac0744dc92b1 [file] [log] [blame]
Wolfgang Denkad5bb452007-03-06 18:08:43 +01001/*
2 * (C) Copyright 2004
3 * Pantelis Antoniou, Intracom S.A. , panto@intracom.gr
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Wolfgang Denkad5bb452007-03-06 18:08:43 +01006 */
7
8#include <common.h>
9
10/*
11 * DSP test
12 *
13 * This test verifies the connection and performs a memory test
14 * on any connected DSP(s). The meat of the work is done
15 * in the board specific function.
16 */
17
Wolfgang Denkad5bb452007-03-06 18:08:43 +010018#include <post.h>
19
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020020#if CONFIG_POST & CONFIG_SYS_POST_DSP
Wolfgang Denkad5bb452007-03-06 18:08:43 +010021
22extern int board_post_dsp(int flags);
23
24int dsp_post_test (int flags)
25{
26 return board_post_dsp(flags);
27}
28
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020029#endif /* CONFIG_POST & CONFIG_SYS_POST_DSP */