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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/alpha/kernel/machvec.h
  3.  *
  4.  * Copyright (C) 1997, 1998  Richard Henderson
  5.  *
  6.  * This file has goodies to help simplify instantiation of machine vectors.
  7.  */
  8. #include <linux/config.h>
  9. #include <asm/pgalloc.h>
  10. /* Whee.  IRONGATE, POLARIS, TSUNAMI, TITAN, and WILDFIRE don't have an HAE.
  11.    Fix things up for the GENERIC kernel by defining the HAE address
  12.    to be that of the cache. Now we can read and write it as we like.  ;-)  */
  13. #define IRONGATE_HAE_ADDRESS (&alpha_mv.hae_cache)
  14. #define POLARIS_HAE_ADDRESS (&alpha_mv.hae_cache)
  15. #define TSUNAMI_HAE_ADDRESS (&alpha_mv.hae_cache)
  16. #define TITAN_HAE_ADDRESS (&alpha_mv.hae_cache)
  17. #define WILDFIRE_HAE_ADDRESS (&alpha_mv.hae_cache)
  18. #if CIA_ONE_HAE_WINDOW
  19. #define CIA_HAE_ADDRESS (&alpha_mv.hae_cache)
  20. #endif
  21. #if MCPCIA_ONE_HAE_WINDOW
  22. #define MCPCIA_HAE_ADDRESS (&alpha_mv.hae_cache)
  23. #endif
  24. /* Only a few systems don't define IACK_SC, handling all interrupts through
  25.    the SRM console.  But splitting out that one case from IO() below
  26.    seems like such a pain.  Define this to get things to compile.  */
  27. #define JENSEN_IACK_SC 1
  28. #define T2_IACK_SC 1
  29. #define WILDFIRE_IACK_SC 1 /* FIXME */
  30. /*
  31.  * Some helpful macros for filling in the blanks.
  32.  */
  33. #define CAT1(x,y)  x##y
  34. #define CAT(x,y)   CAT1(x,y)
  35. #define DO_DEFAULT_RTC rtc_port: 0x70
  36. #define DO_EV4_MMU
  37. max_asn: EV4_MAX_ASN,
  38. mv_switch_mm: ev4_switch_mm,
  39. mv_activate_mm: ev4_activate_mm,
  40. mv_flush_tlb_current: ev4_flush_tlb_current,
  41. mv_flush_tlb_current_page: ev4_flush_tlb_current_page
  42. #define DO_EV5_MMU
  43. max_asn: EV5_MAX_ASN,
  44. mv_switch_mm: ev5_switch_mm,
  45. mv_activate_mm: ev5_activate_mm,
  46. mv_flush_tlb_current: ev5_flush_tlb_current,
  47. mv_flush_tlb_current_page: ev5_flush_tlb_current_page
  48. #define DO_EV6_MMU
  49. max_asn: EV6_MAX_ASN,
  50. mv_switch_mm: ev5_switch_mm,
  51. mv_activate_mm: ev5_activate_mm,
  52. mv_flush_tlb_current: ev5_flush_tlb_current,
  53. mv_flush_tlb_current_page: ev5_flush_tlb_current_page
  54. #define IO_LITE(UP,low)
  55. hae_register: (unsigned long *) CAT(UP,_HAE_ADDRESS),
  56. iack_sc: CAT(UP,_IACK_SC),
  57. mv_inb: CAT(low,_inb),
  58. mv_inw: CAT(low,_inw),
  59. mv_inl: CAT(low,_inl),
  60. mv_outb: CAT(low,_outb),
  61. mv_outw: CAT(low,_outw),
  62. mv_outl: CAT(low,_outl),
  63. mv_readb: CAT(low,_readb),
  64. mv_readw: CAT(low,_readw),
  65. mv_readl: CAT(low,_readl),
  66. mv_readq: CAT(low,_readq),
  67. mv_writeb: CAT(low,_writeb),
  68. mv_writew: CAT(low,_writew),
  69. mv_writel: CAT(low,_writel),
  70. mv_writeq: CAT(low,_writeq),
  71. mv_ioremap: CAT(low,_ioremap),
  72. mv_iounmap: CAT(low,_iounmap)
  73. #define IO(UP,low)
  74. IO_LITE(UP,low),
  75. pci_ops: &CAT(low,_pci_ops)
  76. #define DO_APECS_IO IO(APECS,apecs)
  77. #define DO_CIA_IO IO(CIA,cia)
  78. #define DO_IRONGATE_IO IO(IRONGATE,irongate)
  79. #define DO_LCA_IO IO(LCA,lca)
  80. #define DO_MCPCIA_IO IO(MCPCIA,mcpcia)
  81. #define DO_POLARIS_IO IO(POLARIS,polaris)
  82. #define DO_T2_IO IO(T2,t2)
  83. #define DO_TSUNAMI_IO IO(TSUNAMI,tsunami)
  84. #define DO_TITAN_IO IO(TITAN,titan)
  85. #define DO_WILDFIRE_IO IO(WILDFIRE,wildfire)
  86. #define DO_PYXIS_IO IO_LITE(CIA,cia_bwx), 
  87. pci_ops: &CAT(cia,_pci_ops)
  88. #define BUS(which)
  89. mv_is_ioaddr: CAT(which,_is_ioaddr),
  90. mv_pci_tbi: CAT(which,_pci_tbi)
  91. #define DO_APECS_BUS BUS(apecs)
  92. #define DO_CIA_BUS BUS(cia)
  93. #define DO_IRONGATE_BUS BUS(irongate)
  94. #define DO_LCA_BUS BUS(lca)
  95. #define DO_MCPCIA_BUS BUS(mcpcia)
  96. #define DO_POLARIS_BUS BUS(polaris)
  97. #define DO_T2_BUS BUS(t2)
  98. #define DO_TSUNAMI_BUS BUS(tsunami)
  99. #define DO_TITAN_BUS BUS(titan)
  100. #define DO_WILDFIRE_BUS BUS(wildfire)
  101. /*
  102.  * In a GENERIC kernel, we have lots of these vectors floating about,
  103.  * all but one of which we want to go away.  In a non-GENERIC kernel,
  104.  * we want only one, ever.
  105.  *
  106.  * Accomplish this in the GENERIC kernel by putting all of the vectors
  107.  * in the .init.data section where they'll go away.  We'll copy the
  108.  * one we want to the real alpha_mv vector in setup_arch.
  109.  *
  110.  * Accomplish this in a non-GENERIC kernel by ifdef'ing out all but
  111.  * one of the vectors, which will not reside in .init.data.  We then
  112.  * alias this one vector to alpha_mv, so no copy is needed.
  113.  *
  114.  * Upshot: set __initdata to nothing for non-GENERIC kernels.
  115.  */
  116. #ifdef CONFIG_ALPHA_GENERIC
  117. #define __initmv __initdata
  118. #define ALIAS_MV(x)
  119. #else
  120. #define __initmv
  121. /* GCC actually has a syntax for defining aliases, but is under some
  122.    delusion that you shouldn't be able to declare it extern somewhere
  123.    else beforehand.  Fine.  We'll do it ourselves.  */
  124. #if 0
  125. #define ALIAS_MV(system) 
  126.   struct alpha_machine_vector alpha_mv __attribute__((alias(#system "_mv")));
  127. #else
  128. #define ALIAS_MV(system) 
  129.   asm(".global alpha_mvnalpha_mv = " #system "_mv");
  130. #endif
  131. #endif /* GENERIC */