Ignore:
Timestamp:
Mar 10, 2015, 3:01:43 PM (10 years ago)
Author:
alain
Message:

Introducing support for hardware coprocessors
using the vci_mwmr_dma components.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_kernel/irq_handler.c

    r494 r519  
    2727#endif
    2828
    29 ////////////////////////////////////////////
    30 //     ISR_TYPE names for display
    31 ///////////////////////////////////////////
     29/////////////////////////////////////////////////////////////////////////
     30// These ISR_TYPE names for display must be consistent with values in
     31// irq_handler.h / mapping.py / xml_driver.c
     32/////////////////////////////////////////////////////////////////////////
    3233__attribute__((section(".kdata")))
    3334char* _isr_type_name[] = { "DEFAULT",
     
    4344                           "MMC"    ,
    4445                           "DMA"    ,
    45                            "SPI"    };
     46                           "SPI"    ,
     47                           "MWR"    };
    4648/////////////////
    4749void _irq_demux()
     
    113115        else if ( isr_type == ISR_DMA    ) _dma_isr    ( irq_type, irq_id, channel );
    114116        else if ( isr_type == ISR_SPI    ) _spi_isr    ( irq_type, irq_id, channel );
     117        else if ( isr_type == ISR_MWR    ) _mwr_isr    ( irq_type, irq_id, channel );
    115118        else
    116119        {
Note: See TracChangeset for help on using the changeset viewer.