entry_arch.h 892 B

1234567891011121314151617181920212223242526
  1. /* -*- mode: c; c-basic-offset: 8 -*- */
  2. /* Copyright (C) 2002
  3. *
  4. * Author: James.Bottomley@HansenPartnership.com
  5. *
  6. * linux/arch/i386/voyager/entry_arch.h
  7. *
  8. * This file builds the VIC and QIC CPI gates
  9. */
  10. /* initialise the voyager interrupt gates
  11. *
  12. * This uses the macros in irq.h to set up assembly jump gates. The
  13. * calls are then redirected to the same routine with smp_ prefixed */
  14. BUILD_INTERRUPT(vic_sys_interrupt, VIC_SYS_INT)
  15. BUILD_INTERRUPT(vic_cmn_interrupt, VIC_CMN_INT)
  16. BUILD_INTERRUPT(vic_cpi_interrupt, VIC_CPI_LEVEL0);
  17. /* do all the QIC interrupts */
  18. BUILD_INTERRUPT(qic_timer_interrupt, QIC_TIMER_CPI);
  19. BUILD_INTERRUPT(qic_invalidate_interrupt, QIC_INVALIDATE_CPI);
  20. BUILD_INTERRUPT(qic_reschedule_interrupt, QIC_RESCHEDULE_CPI);
  21. BUILD_INTERRUPT(qic_enable_irq_interrupt, QIC_ENABLE_IRQ_CPI);
  22. BUILD_INTERRUPT(qic_call_function_interrupt, QIC_CALL_FUNCTION_CPI);