source: rtems/tools/cpu/nios2/devices.h @ 037e1639

4.104.114.84.95
Last change on this file since 037e1639 was 037e1639, checked in by Joel Sherrill <joel.sherrill@…>, on 08/09/06 at 21:05:32

2006-08-09 Kolja Waschk <waschk@…>

  • configure.ac: New port to Altera NIOS II.
  • nios2/.cvsignore, nios2/Makefile.am, nios2/README, nios2/bridges.c, nios2/bridges.h, nios2/clocks.c, nios2/clocks.h, nios2/configure.ac, nios2/devices.c, nios2/devices.h, nios2/nios2gen.c, nios2/output.c, nios2/output.h, nios2/ptf.c, nios2/ptf.h: New files.
  • Property mode set to 100644
File size: 578 bytes
Line 
1/*
2 *  Copyright (c) 2006 Kolja Waschk rtemsdev/ixo.de
3 *
4 *  The license and distribution terms for this file may be
5 *  found in the file LICENSE in this distribution or at
6 *  http://www.rtems.com/license/LICENSE.
7 *
8 *  $Id$
9 */
10
11#ifndef __NIOS2GEN_DEVICES_H
12#define __NIOS2GEN_DEVICES_H 1
13
14#include "ptf.h"
15#include "bridges.h"
16
17typedef struct dev_descr
18{
19  int slaves;
20  char *cfgname;
21  struct ptf *ptf;
22  struct dev_descr *next;
23}
24device_desc;
25
26device_desc *find_devices(
27  struct ptf *ptf,
28  struct ptf *cfg,
29  struct ptf *cpu,
30  bus_bridge_pair *bridges);
31
32#endif
Note: See TracBrowser for help on using the repository browser.