source: rtems/c/src/lib/libbsp/powerpc/score603e/include/irq-config.h @ c00b49f8

4.104.115
Last change on this file since c00b49f8 was 42b6dd2a, checked in by Jennifer Averett <Jennifer.Averett@…>, on 05/05/09 at 16:24:04

2009-05-05 Jennifer Averett <jennifer.averett@…>

  • Makefile.am, configure.ac, preinstall.am, PCI_bus/PCI.c, PCI_bus/PCI.h, PCI_bus/flash.c, PCI_bus/universe.c, console/85c30.c, console/85c30.h, console/console.c, console/consolebsp.h, console/tbl85c30.c, include/bsp.h, include/gen2.h, include/irq-config.h, include/tm27.h, irq/FPGA.c, irq/irq.h, irq/irq_init.c, start/start.S, startup/Hwr_init.c, startup/bspstart.c, startup/linkcmds, timer/timer.c, tod/tod.c, vme/VMEConfig.h: Updated and tested with latest interrupt source. Modified with latest memory allocation, but this needs testing.
  • irq/no_pic.c: New file.
  • Property mode set to 100644
File size: 806 bytes
Line 
1/**
2 * @file
3 *
4 * @ingroup bsp_interrupt
5 *
6 * @brief BSP interrupt support configuration.
7 *
8 * $Id$
9 */
10
11/*
12 * Copyright (c) 2008
13 * Embedded Brains GmbH
14 * Obere Lagerstr. 30
15 * D-82178 Puchheim
16 * Germany
17 * rtems@embedded-brains.de
18 *
19 * The license and distribution terms for this file may be found in the file
20 * LICENSE in this distribution or at http://www.rtems.com/license/LICENSE.
21 */
22
23#ifndef LIBBSP_POWERPC_SCORE603E_IRQ_CONFIG_H
24#define LIBBSP_POWERPC_SCORE603E_IRQ_CONFIG_H
25
26#include <bsp/irq.h>
27
28/**
29 * @addtogroup bsp_interrupt
30 *
31 * @{
32 */
33
34/**
35 * @brief Minimum vector number.
36 */
37#define BSP_INTERRUPT_VECTOR_MIN BSP_LOWEST_OFFSET
38
39/**
40 * @brief Maximum vector number.
41 */
42#define BSP_INTERRUPT_VECTOR_MAX BSP_MAX_OFFSET
43
44/** @} */
45
46#endif /* LIBBSP_POWERPC_SCORE603E_IRQ_CONFIG_H */
Note: See TracBrowser for help on using the repository browser.