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

嵌入式Linux

开发平台:

Unix_Linux

  1. #ifndef __ALPHA_MACHVEC_H
  2. #define __ALPHA_MACHVEC_H 1
  3. #include <linux/config.h>
  4. #include <linux/types.h>
  5. /*
  6.  * This file gets pulled in by asm/io.h from user space. We don't
  7.  * want most of this escaping.
  8.  */
  9.  
  10. #ifdef __KERNEL__
  11. /* The following structure vectors all of the I/O and IRQ manipulation
  12.    from the generic kernel to the hardware specific backend.  */
  13. struct task_struct;
  14. struct mm_struct;
  15. struct pt_regs;
  16. struct vm_area_struct;
  17. struct linux_hose_info;
  18. struct pci_dev;
  19. struct pci_ops;
  20. struct pci_controller;
  21. struct alpha_machine_vector
  22. {
  23. /* This "belongs" down below with the rest of the runtime
  24.    variables, but it is convenient for entry.S if these 
  25.    two slots are at the beginning of the struct.  */
  26. unsigned long hae_cache;
  27. unsigned long *hae_register;
  28. int nr_irqs;
  29. int rtc_port;
  30. int max_asn;
  31. unsigned long max_dma_address;
  32. unsigned long irq_probe_mask;
  33. unsigned long iack_sc;
  34. unsigned long min_io_address;
  35. unsigned long min_mem_address;
  36. unsigned long pci_dac_offset;
  37. void (*mv_pci_tbi)(struct pci_controller *hose,
  38.    dma_addr_t start, dma_addr_t end);
  39. u8 (*mv_inb)(unsigned long);
  40. u16 (*mv_inw)(unsigned long);
  41. u32 (*mv_inl)(unsigned long);
  42. void (*mv_outb)(u8, unsigned long);
  43. void (*mv_outw)(u16, unsigned long);
  44. void (*mv_outl)(u32, unsigned long);
  45. u8 (*mv_readb)(unsigned long);
  46. u16 (*mv_readw)(unsigned long);
  47. u32 (*mv_readl)(unsigned long);
  48. u64 (*mv_readq)(unsigned long);
  49. void (*mv_writeb)(u8, unsigned long);
  50. void (*mv_writew)(u16, unsigned long);
  51. void (*mv_writel)(u32, unsigned long);
  52. void (*mv_writeq)(u64, unsigned long);
  53. unsigned long (*mv_ioremap)(unsigned long, unsigned long);
  54. void (*mv_iounmap)(unsigned long);
  55. int (*mv_is_ioaddr)(unsigned long);
  56. void (*mv_switch_mm)(struct mm_struct *, struct mm_struct *,
  57.      struct task_struct *, long);
  58. void (*mv_activate_mm)(struct mm_struct *, struct mm_struct *);
  59. void (*mv_flush_tlb_current)(struct mm_struct *);
  60. void (*mv_flush_tlb_current_page)(struct mm_struct * mm,
  61.   struct vm_area_struct *vma,
  62.   unsigned long addr);
  63. void (*update_irq_hw)(unsigned long, unsigned long, int);
  64. void (*ack_irq)(unsigned long);
  65. void (*device_interrupt)(unsigned long vector, struct pt_regs *regs);
  66. void (*machine_check)(u64 vector, u64 la, struct pt_regs *regs);
  67. void (*init_arch)(void);
  68. void (*init_irq)(void);
  69. void (*init_rtc)(void);
  70. void (*init_pci)(void);
  71. void (*kill_arch)(int);
  72. u8 (*pci_swizzle)(struct pci_dev *, u8 *);
  73. int (*pci_map_irq)(struct pci_dev *, u8, u8);
  74. struct pci_ops *pci_ops;
  75. const char *vector_name;
  76. /* System specific parameters.  */
  77. union {
  78.     struct {
  79. unsigned long gru_int_req_bits;
  80.     } cia;
  81.     struct {
  82. unsigned long gamma_bias;
  83.     } t2;
  84.     struct {
  85. unsigned int route_tab;
  86.     } sio;
  87. } sys;
  88. };
  89. extern struct alpha_machine_vector alpha_mv;
  90. #ifdef CONFIG_ALPHA_GENERIC
  91. extern int alpha_using_srm;
  92. #else
  93. #ifdef CONFIG_ALPHA_SRM
  94. #define alpha_using_srm 1
  95. #else
  96. #define alpha_using_srm 0
  97. #endif
  98. #endif /* GENERIC */
  99. #endif
  100. #endif /* __ALPHA_MACHVEC_H */