source: branches/reconfiguration/modules/dspin_router/include/soclib/dspin_router_config.h @ 886

Last change on this file since 886 was 886, checked in by cfuguet, 9 years ago

reconf: introduce a dspin_router_config.h interface file

  • This file contains the possible configuration values for the p_blackhole_pos port. It is meant to b used by software to configure, through the reconf:vci_xicu, the NoC routers.
File size: 1.4 KB
Line 
1/*
2 * SOCLIB_LGPL_HEADER_BEGIN
3 *
4 * This file is part of SoCLib, GNU LGPLv2.1.
5 *
6 * SoCLib is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published
8 * by the Free Software Foundation; version 2.1 of the License.
9 *
10 * SoCLib is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with SoCLib; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
18 * 02110-1301 USA
19 *
20 * SOCLIB_LGPL_HEADER_END
21 *
22 * Copyright (c) UPMC, Lip6
23 *         Cesar Fuguet <cesar.fuguet-tortolero@lip6.fr>, 2014
24 */
25
26#ifndef DSPIN_ROUTER_CONFIG_H
27#define DSPIN_ROUTER_CONFIG_H
28
29// Black-Hole position
30enum
31{
32    BH_NONE = 0,
33    BH_N = 1,
34    BH_NE = 2,
35    BH_E = 3,
36    BH_SE = 4,
37    BH_S = 5,
38    BH_SW = 6,
39    BH_W = 7,
40    BH_NW = 8
41};
42
43#endif                                 /* DSPIN_ROUTER_CONFIG_H */
44
45// Local Variables:
46// tab-width: 4
47// c-basic-offset: 4
48// c-file-offsets:((innamespace . 0)(inline-open . 0))
49// indent-tabs-mode: nil
50// End:
51
52// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
53
Note: See TracBrowser for help on using the repository browser.