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

嵌入式Linux

开发平台:

Unix_Linux

  1. #include <linux/config.h>
  2. #ifndef __I386_COBALT_H
  3. #define __I386_COBALT_H
  4. /*
  5.  * Cobalt is the system ASIC on the SGI 320 and 540 Visual Workstations
  6.  */ 
  7. #define CO_CPU_PHYS 0xc2000000
  8. #define CO_APIC_PHYS 0xc4000000
  9. /* see set_fixmap() and asm/fixmap.h */
  10. #define CO_CPU_VADDR (fix_to_virt(FIX_CO_CPU))
  11. #define CO_APIC_VADDR (fix_to_virt(FIX_CO_APIC))
  12. /* Cobalt CPU registers -- relative to CO_CPU_VADDR, use co_cpu_*() */
  13. #define CO_CPU_REV 0x08
  14. #define CO_CPU_CTRL 0x10
  15. #define CO_CPU_STAT 0x20
  16. #define CO_CPU_TIMEVAL 0x30
  17. /* CO_CPU_CTRL bits */
  18. #define CO_CTRL_TIMERUN 0x04 /* 0 == disabled */
  19. #define CO_CTRL_TIMEMASK 0x08 /* 0 == unmasked */
  20. /* CO_CPU_STATUS bits */
  21. #define CO_STAT_TIMEINTR 0x02 /* (r) 1 == int pend, (w) 0 == clear */
  22. /* CO_CPU_TIMEVAL value */
  23. #define CO_TIME_HZ 100000000 /* Cobalt core rate */
  24. /* Cobalt APIC registers -- relative to CO_APIC_VADDR, use co_apic_*() */
  25. #define CO_APIC_HI(n) (((n) * 0x10) + 4)
  26. #define CO_APIC_LO(n) ((n) * 0x10)
  27. #define CO_APIC_ID 0x0ffc
  28. /* CO_APIC_ID bits */
  29. #define CO_APIC_ENABLE 0x00000100
  30. /* CO_APIC_LO bits */
  31. #define CO_APIC_LEVEL 0x08000 /* 0 = edge */
  32. /*
  33.  * Where things are physically wired to Cobalt
  34.  * #defines with no board _<type>_<rev>_ are common to all (thus far)
  35.  */
  36. #define CO_APIC_0_5_IDE0 5
  37. #define CO_APIC_0_5_SERIAL 13  /* XXX not really...h/w bug! */
  38. #define CO_APIC_0_5_PARLL 4
  39. #define CO_APIC_0_5_FLOPPY 6
  40. #define CO_APIC_0_6_IDE0 4
  41. #define CO_APIC_0_6_USB 7 /* PIIX4 USB */
  42. #define CO_APIC_1_2_IDE0 4
  43. #define CO_APIC_0_5_IDE1 2
  44. #define CO_APIC_0_6_IDE1 2
  45. /* XXX */
  46. #define CO_APIC_IDE0 CO_APIC_0_5_IDE0
  47. #define CO_APIC_IDE1 CO_APIC_0_5_IDE1
  48. #define CO_APIC_SERIAL CO_APIC_0_5_SERIAL
  49. /* XXX */
  50. #define CO_APIC_ENET 3 /* Lithium PCI Bridge A, Device 3 */
  51. #define CO_APIC_8259 12 /* serial, floppy, par-l-l, audio */
  52. #define CO_APIC_VIDOUT0 16
  53. #define CO_APIC_VIDOUT1 17
  54. #define CO_APIC_VIDIN0 18
  55. #define CO_APIC_VIDIN1 19
  56. #define CO_APIC_CPU 28 /* Timer and Cache interrupt */
  57. /*
  58.  * This is the "irq" arg to request_irq(), just a unique cookie.
  59.  */
  60. #define CO_IRQ_TIMER 0
  61. #define CO_IRQ_ENET 3
  62. #define CO_IRQ_SERIAL 4
  63. #define CO_IRQ_FLOPPY 6 /* Same as drivers/block/floppy.c:FLOPPY_IRQ */
  64. #define CO_IRQ_PARLL 7
  65. #define CO_IRQ_POWER 9
  66. #define CO_IRQ_IDE 14
  67. #define CO_IRQ_8259 12
  68. #ifdef CONFIG_X86_VISWS_APIC
  69. static __inline void co_cpu_write(unsigned long reg, unsigned long v)
  70. {
  71. *((volatile unsigned long *)(CO_CPU_VADDR+reg))=v;
  72. }
  73. static __inline unsigned long co_cpu_read(unsigned long reg)
  74. {
  75. return *((volatile unsigned long *)(CO_CPU_VADDR+reg));
  76. }            
  77.              
  78. static __inline void co_apic_write(unsigned long reg, unsigned long v)
  79. {
  80. *((volatile unsigned long *)(CO_APIC_VADDR+reg))=v;
  81. }            
  82.              
  83. static __inline unsigned long co_apic_read(unsigned long reg)
  84. {
  85. return *((volatile unsigned long *)(CO_APIC_VADDR+reg));
  86. }
  87. #endif
  88. extern char visws_board_type;
  89. #define VISWS_320 0
  90. #define VISWS_540 1
  91. extern char visws_board_rev;
  92. #endif