File : a-intnam-xi-leon3.ads


   1 ------------------------------------------------------------------------------
   2 --                                                                          --
   3 --                  GNAT RUN-TIME LIBRARY (GNARL) COMPONENTS                --
   4 --                                                                          --
   5 --                   A D A . I N T E R R U P T S . N A M E S                --
   6 --                                                                          --
   7 --                                  S p e c                                 --
   8 --                                                                          --
   9 --          Copyright (C) 1991-2011, Free Software Foundation, Inc.         --
  10 --                                                                          --
  11 -- GNAT is free software;  you can  redistribute it  and/or modify it under --
  12 -- terms of the  GNU General Public License as published  by the Free Soft- --
  13 -- ware  Foundation;  either version 3,  or (at your option) any later ver- --
  14 -- sion.  GNAT is distributed in the hope that it will be useful, but WITH- --
  15 -- OUT ANY WARRANTY;  without even the  implied warranty of MERCHANTABILITY --
  16 -- or FITNESS FOR A PARTICULAR PURPOSE.                                     --
  17 --                                                                          --
  18 --                                                                          --
  19 --                                                                          --
  20 --                                                                          --
  21 --                                                                          --
  22 -- You should have received a copy of the GNU General Public License and    --
  23 -- a copy of the GCC Runtime Library Exception along with this program;     --
  24 -- see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see    --
  25 -- <http://www.gnu.org/licenses/>.                                          --
  26 --                                                                          --
  27 -- GNARL was developed by the GNARL team at Florida State University.       --
  28 -- Extensive contributions were provided by Ada Core Technologies, Inc.     --
  29 --                                                                          --
  30 ------------------------------------------------------------------------------
  31 
  32 --  This is the version for LEON3 UT699 targets
  33 
  34 package Ada.Interrupts.Names is
  35 
  36    --  All identifiers in this unit are implementation defined
  37 
  38    pragma Implementation_Defined;
  39 
  40    Internal_Bus_Error_Interrupt      : constant Interrupt_ID :=  1;
  41    UART_RX_TX_Interrupt              : constant Interrupt_ID :=  2;
  42    PCI_Interrupt                     : constant Interrupt_ID :=  3;
  43    CAN_1_Interrupt                   : constant Interrupt_ID :=  4;
  44    CAN_2_Interrupt                   : constant Interrupt_ID :=  5;
  45    General_Purpose_Timer_1_Interrupt : constant Interrupt_ID :=  6;
  46    General_Purpose_Timer_2_Interrupt : constant Interrupt_ID :=  7;
  47    General_Purpose_Timer_3_Interrupt : constant Interrupt_ID :=  8;
  48    General_Purpose_Timer_4_Interrupt : constant Interrupt_ID :=  9;
  49    SPW_1_RX_TX_Interrupt             : constant Interrupt_ID := 10;
  50    SPW_2_RX_TX_Interrupt             : constant Interrupt_ID := 11;
  51    SPW_3_RX_TX_Interrupt             : constant Interrupt_ID := 12;
  52    SPW_4_RX_TX_Interrupt             : constant Interrupt_ID := 13;
  53    ETH_RX_TX_Interrupt               : constant Interrupt_ID := 14;
  54 
  55    General_Purpose_IO_1_Interrupt    : constant Interrupt_ID :=  1;
  56    General_Purpose_IO_2_Interrupt    : constant Interrupt_ID :=  2;
  57    General_Purpose_IO_3_Interrupt    : constant Interrupt_ID :=  3;
  58    General_Purpose_IO_4_Interrupt    : constant Interrupt_ID :=  4;
  59    General_Purpose_IO_5_Interrupt    : constant Interrupt_ID :=  5;
  60    General_Purpose_IO_6_Interrupt    : constant Interrupt_ID :=  6;
  61    General_Purpose_IO_7_Interrupt    : constant Interrupt_ID :=  7;
  62    General_Purpose_IO_8_Interrupt    : constant Interrupt_ID :=  8;
  63    General_Purpose_IO_9_Interrupt    : constant Interrupt_ID :=  9;
  64    General_Purpose_IO_10_Interrupt   : constant Interrupt_ID := 10;
  65    General_Purpose_IO_11_Interrupt   : constant Interrupt_ID := 11;
  66    General_Purpose_IO_12_Interrupt   : constant Interrupt_ID := 12;
  67    General_Purpose_IO_13_Interrupt   : constant Interrupt_ID := 13;
  68    General_Purpose_IO_14_Interrupt   : constant Interrupt_ID := 14;
  69    General_Purpose_IO_15_Interrupt   : constant Interrupt_ID := 15;
  70 
  71 end Ada.Interrupts.Names;