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

嵌入式Linux

开发平台:

Unix_Linux

  1. /* apollohw.h : some structures to access apollo HW */
  2. #ifndef _ASMm68k_APOLLOHW_H_
  3. #define _ASMm68k_APOLLOHW_H_
  4. /*
  5.    apollo models 
  6. */
  7. extern u_long apollo_model;
  8. #define APOLLO_UNKNOWN (0)
  9. #define APOLLO_DN3000 (1)
  10. #define APOLLO_DN3010 (2)
  11. #define APOLLO_DN3500 (3)
  12. #define APOLLO_DN4000 (4)
  13. #define APOLLO_DN4500 (5)
  14. /* 
  15.    see scn2681 data sheet for more info. 
  16.    member names are read_write.
  17. */
  18. #define DECLARE_2681_FIELD(x) unsigned char x; unsigned char dummy##x
  19. struct SCN2681 {
  20. DECLARE_2681_FIELD(mra);
  21. DECLARE_2681_FIELD(sra_csra);
  22. DECLARE_2681_FIELD(BRGtest_cra);
  23. DECLARE_2681_FIELD(rhra_thra);
  24. DECLARE_2681_FIELD(ipcr_acr);
  25. DECLARE_2681_FIELD(isr_imr);
  26. DECLARE_2681_FIELD(ctu_ctur);
  27. DECLARE_2681_FIELD(ctl_ctlr);
  28. DECLARE_2681_FIELD(mrb);
  29. DECLARE_2681_FIELD(srb_csrb);
  30. DECLARE_2681_FIELD(tst_crb);
  31. DECLARE_2681_FIELD(rhrb_thrb);
  32. DECLARE_2681_FIELD(reserved);
  33. DECLARE_2681_FIELD(ip_opcr);
  34. DECLARE_2681_FIELD(startCnt_setOutBit);
  35. DECLARE_2681_FIELD(stopCnt_resetOutBit);
  36. };
  37. #if 0
  38. struct mc146818 {
  39. unsigned int second1:4, second2:4, alarm_second1:4, alarm_second2:4,
  40.      minute1:4, minute2:4, alarm_minute1:4, alarm_minute2:4;
  41. unsigned int hours1:4, hours2:4, alarm_hours1:4, alarm_hours2:4,
  42.      day_of_week1:4, day_of_week2:4, day_of_month1:4, day_of_month2:4;
  43. unsigned int month1:4, month2:4, year1:4, year2:4, :16;
  44. };
  45. #endif
  46. struct mc146818 {
  47.         unsigned char second, alarm_second;
  48.         unsigned char minute, alarm_minute;
  49.         unsigned char hours, alarm_hours;
  50.         unsigned char day_of_week, day_of_month;
  51.         unsigned char month, year;
  52. };
  53. #define IO_BASE 0x80000000
  54. extern u_long sio01_physaddr;
  55. extern u_long sio23_physaddr;
  56. extern u_long rtc_physaddr;
  57. extern u_long pica_physaddr;
  58. extern u_long picb_physaddr;
  59. extern u_long cpuctrl_physaddr;
  60. extern u_long timer_physaddr;
  61. #define SAU7_SIO01_PHYSADDR 0x10400
  62. #define SAU7_SIO23_PHYSADDR 0x10500
  63. #define SAU7_RTC_PHYSADDR 0x10900
  64. #define SAU7_PICA 0x11000
  65. #define SAU7_PICB 0x11100
  66. #define SAU7_CPUCTRL 0x10100
  67. #define SAU7_TIMER 0x010800
  68. #define SAU8_SIO01_PHYSADDR 0x8400
  69. #define SAU8_RTC_PHYSADDR 0x8900
  70. #define SAU8_PICA 0x9400
  71. #define SAU8_PICB 0x9500
  72. #define SAU8_CPUCTRL 0x8100
  73. #define SAU8_TIMER 0x8800
  74. #define sio01 ((*(volatile struct SCN2681 *)(IO_BASE + sio01_physaddr)))
  75. #define sio23 ((*(volatile struct SCN2681 *)(IO_BASE + sio23_physaddr)))
  76. #define rtc (((volatile struct mc146818 *)(IO_BASE + rtc_physaddr)))
  77. #define cpuctrl (*(volatile unsigned int *)(IO_BASE + cpuctrl_physaddr))
  78. #define pica (IO_BASE + pica_physaddr)
  79. #define picb (IO_BASE + picb_physaddr)
  80. #define timer (IO_BASE + timer_physaddr)
  81. #define addr_xlat_map ((unsigned short *)(IO_BASE + 0x17000))
  82. #define isaIO2mem(x) (((((x) & 0x3f8)  << 7) | (((x) & 0xfc00) >> 6) | ((x) & 0x7)) + 0x40000 + IO_BASE)
  83. #define inb(addr) (*((volatile unsigned char *)(addr)))
  84. #define outb(val,addr) (*((volatile unsigned char *)(addr)) = (val))
  85. #define inw(addr) (*((volatile unsigned short *)(addr)))
  86. #define outw(val,addr) (*((volatile unsigned short *)(addr)) = (val))
  87. #endif