* irq/irq_init.c, motorola/motorola.c: Support for MTX603e.
This commit is contained in:
Joel Sherrill
2002-11-18 03:22:09 +00:00
parent 3ae9de1a0e
commit 5d740bbb0b
3 changed files with 12 additions and 2 deletions

View File

@@ -249,9 +249,15 @@ void BSP_rtems_irq_mng_init(unsigned cpuId)
/* nothing to do for W83C553 bridge */
known_cpi_isa_bridge = 1;
}
if ( currentBoard == MTX_WO_PP || currentBoard == MTX_W_PP ) {
/* W83C554, don't to anything at the moment. gregm 11/6/2002 */
known_cpi_isa_bridge = 1;
}
if (!known_cpi_isa_bridge) {
printk("Please add code for PCI/ISA bridge init to libbsp/shared/irq/irq_init.c\n");
printk("Please add code for PCI/ISA bridge init to libbsp/powerpc/shared/irq/irq_init.c\n");
printk("If your card works correctly please add a test and set known_cpi_isa_bridge to true\n");
printk("currentBoard = %i\n", currentBoard);
}
#ifdef TRACE_IRQ_INIT
printk("Going to initialize the ISA PC legacy IRQ management hardware\n");