open_pic.h
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.open_pic.h 1.14 10/11/01 12:09:12 trini
  3.  */
  4. /*
  5.  *  arch/ppc/kernel/open_pic.h -- OpenPIC Interrupt Handling
  6.  *
  7.  *  Copyright (C) 1997 Geert Uytterhoeven
  8.  *
  9.  *  This file is subject to the terms and conditions of the GNU General Public
  10.  *  License.  See the file COPYING in the main directory of this archive
  11.  *  for more details.
  12.  *  
  13.  */
  14. #ifndef _PPC_KERNEL_OPEN_PIC_H
  15. #define _PPC_KERNEL_OPEN_PIC_H
  16. #include <linux/config.h>
  17. #define OPENPIC_SIZE 0x40000
  18. /*
  19.  *  Non-offset'ed vector numbers
  20.  */
  21. #define OPENPIC_VEC_TIMER 64 /* and up */
  22. #define OPENPIC_VEC_IPI 72 /* and up */
  23. #define OPENPIC_VEC_SPURIOUS 127
  24. /* OpenPIC IRQ controller structure */
  25. extern struct hw_interrupt_type open_pic;
  26. /* OpenPIC IPI controller structure */
  27. #ifdef CONFIG_SMP
  28. extern struct hw_interrupt_type open_pic_ipi;
  29. #endif /* CONFIG_SMP */
  30. extern u_int OpenPIC_NumInitSenses;
  31. extern u_char *OpenPIC_InitSenses;
  32. extern void* OpenPIC_Addr;
  33. /* Exported functions */
  34. extern void openpic_init(int, int, unsigned char *, int);
  35. extern u_int openpic_irq(void);
  36. extern void openpic_eoi(void);
  37. extern void openpic_request_IPIs(void);
  38. extern void do_openpic_setup_cpu(void);
  39. extern int openpic_get_irq(struct pt_regs *regs);
  40. extern void openpic_reset_processor_phys(u_int cpumask);
  41. extern void openpic_setup_ISU(int isu_num, unsigned long addr);
  42. extern void openpic_cause_IPI(u_int ipi, u_int cpumask);
  43. extern void smp_openpic_message_pass(int target, int msg, unsigned long data,
  44.      int wait);
  45. extern inline int openpic_to_irq(int irq)
  46. {
  47. /* IRQ 0 usually means 'disabled'.. don't mess with it 
  48.  * exceptions to this (sandpoint maybe?) 
  49.  * shouldn't use openpic_to_irq 
  50.  */
  51. if (irq != 0){
  52. return irq += NUM_8259_INTERRUPTS;
  53. } else {
  54. return 0;
  55. }
  56. }
  57. /*extern int open_pic_irq_offset;*/
  58. #endif /* _PPC_KERNEL_OPEN_PIC_H */