jazz.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:9k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * This file is subject to the terms and conditions of the GNU General Public
  3.  * License.  See the file "COPYING" in the main directory of this archive
  4.  * for more details.
  5.  *
  6.  * Copyright (C) 1995 - 1998 by Andreas Busse and Ralf Baechle
  7.  */
  8. #ifndef __ASM_JAZZ_H 
  9. #define __ASM_JAZZ_H 
  10. /*
  11.  * The addresses below are virtual address. The mappings are
  12.  * created on startup via wired entries in the tlb. The Mips
  13.  * Magnum R3000 and R4000 machines are similar in many aspects,
  14.  * but many hardware register are accessible at 0xb9000000 in
  15.  * instead of 0xe0000000.
  16.  */
  17. #define JAZZ_LOCAL_IO_SPACE     0xe0000000
  18. /*
  19.  * Revision numbers in PICA_ASIC_REVISION
  20.  *
  21.  * 0xf0000000 - Rev1
  22.  * 0xf0000001 - Rev2
  23.  * 0xf0000002 - Rev3
  24.  */
  25. #define PICA_ASIC_REVISION      0xe0000008
  26. /*
  27.  * The segments of the seven segment LED are mapped
  28.  * to the control bits as follows:
  29.  *
  30.  *         (7)
  31.  *      ---------
  32.  *      |       |
  33.  *  (2) |       | (6)
  34.  *      |  (1)  |
  35.  *      ---------
  36.  *      |       |
  37.  *  (3) |       | (5)
  38.  *      |  (4)  |
  39.  *      --------- . (0)
  40.  */
  41. #define PICA_LED                0xe000f000
  42. /*
  43.  * Some characters for the LED control registers
  44.  * The original Mips machines seem to have a LED display
  45.  * with integrated decoder while the Acer machines can
  46.  * control each of the seven segments and the dot independently.
  47.  * It's only a toy, anyway...
  48.  */
  49. #define LED_DOT                 0x01
  50. #define LED_SPACE               0x00
  51. #define LED_0                   0xfc
  52. #define LED_1                   0x60
  53. #define LED_2                   0xda
  54. #define LED_3                   0xf2
  55. #define LED_4                   0x66
  56. #define LED_5                   0xb6
  57. #define LED_6                   0xbe
  58. #define LED_7                   0xe0
  59. #define LED_8                   0xfe
  60. #define LED_9                   0xf6
  61. #define LED_A                   0xee
  62. #define LED_b                   0x3e
  63. #define LED_C                   0x9c
  64. #define LED_d                   0x7a
  65. #define LED_E                   0x9e
  66. #define LED_F                   0x8e
  67. #ifndef __ASSEMBLY__
  68. extern __inline__ void pica_set_led(unsigned int bits)
  69. {
  70. volatile unsigned int *led_register = (unsigned int *) PICA_LED;
  71. *led_register = bits;
  72. }
  73. #endif /* !__ASSEMBLY__ */
  74. /*
  75.  * Base address of the Sonic Ethernet adapter in Jazz machines.
  76.  */
  77. #define JAZZ_ETHERNET_BASE  0xe0001000
  78. /*
  79.  * Base address of the 53C94 SCSI hostadapter in Jazz machines.
  80.  */
  81. #define JAZZ_SCSI_BASE 0xe0002000
  82. /*
  83.  * i8042 keyboard controller for JAZZ and PICA chipsets.
  84.  * This address is just a guess and seems to differ from
  85.  * other mips machines such as RC3xxx...
  86.  */
  87. #define JAZZ_KEYBOARD_ADDRESS   0xe0005000
  88. #define JAZZ_KEYBOARD_DATA      0xe0005000
  89. #define JAZZ_KEYBOARD_COMMAND   0xe0005001
  90. #ifndef __ASSEMBLY__
  91. typedef struct {
  92. unsigned char data;
  93. unsigned char command;
  94. } jazz_keyboard_hardware;
  95. typedef struct {
  96. unsigned char pad0[3];
  97. unsigned char data;
  98. unsigned char pad1[3];
  99. unsigned char command;
  100. } mips_keyboard_hardware;
  101. /*
  102.  * For now. Needs to be changed for RC3xxx support. See below.
  103.  */
  104. #define keyboard_hardware       jazz_keyboard_hardware
  105. #endif /* !__ASSEMBLY__ */
  106. /*
  107.  * i8042 keyboard controller for most other Mips machines.
  108.  */
  109. #define MIPS_KEYBOARD_ADDRESS   0xb9005000
  110. #define MIPS_KEYBOARD_DATA      0xb9005003
  111. #define MIPS_KEYBOARD_COMMAND   0xb9005007
  112. /*
  113.  * Serial and parallel ports (WD 16C552) on the Mips JAZZ
  114.  */
  115. #define JAZZ_SERIAL1_BASE       (unsigned int)0xe0006000
  116. #define JAZZ_SERIAL2_BASE       (unsigned int)0xe0007000
  117. #define JAZZ_PARALLEL_BASE      (unsigned int)0xe0008000
  118. /*
  119.  * Dummy Device Address. Used in jazzdma.c
  120.  */
  121. #define JAZZ_DUMMY_DEVICE       0xe000d000
  122.      
  123. /*
  124.  * JAZZ timer registers and interrupt no.
  125.  * Note that the hardware timer interrupt is actually on
  126.  * cpu level 6, but to keep compatibility with PC stuff
  127.  * it is remapped to vector 0. See arch/mips/kernel/entry.S.
  128.  */
  129. #define JAZZ_TIMER_INTERVAL     0xe0000228
  130. #define JAZZ_TIMER_REGISTER     0xe0000230
  131. /*
  132.  * DRAM configuration register
  133.  */
  134. #ifndef __ASSEMBLY__
  135. #ifdef __MIPSEL__
  136. typedef struct {
  137. unsigned int bank2 : 3;
  138. unsigned int bank1 : 3;
  139. unsigned int mem_bus_width : 1;
  140. unsigned int reserved2 : 1;
  141. unsigned int page_mode : 1;
  142. unsigned int reserved1 : 23;
  143. } dram_configuration;
  144. #else /* defined (__MIPSEB__) */
  145. typedef struct {
  146. unsigned int reserved1 : 23;
  147. unsigned int page_mode : 1;
  148. unsigned int reserved2 : 1;
  149. unsigned int mem_bus_width : 1;
  150. unsigned int bank1 : 3;
  151. unsigned int bank2 : 3;
  152. } dram_configuration;
  153. #endif
  154. #endif /* !__ASSEMBLY__ */
  155. #define PICA_DRAM_CONFIG        0xe00fffe0
  156. /*
  157.  * JAZZ interrupt control registers
  158.  */
  159. #define JAZZ_IO_IRQ_SOURCE      0xe0010000
  160. #define JAZZ_IO_IRQ_ENABLE      0xe0010002
  161. /*
  162.  * JAZZ interrupt enable bits
  163.  */
  164. #define JAZZ_IE_PARALLEL            (1 << 0)
  165. #define JAZZ_IE_FLOPPY              (1 << 1)
  166. #define JAZZ_IE_SOUND               (1 << 2)
  167. #define JAZZ_IE_VIDEO               (1 << 3)
  168. #define JAZZ_IE_ETHERNET            (1 << 4)
  169. #define JAZZ_IE_SCSI                (1 << 5)
  170. #define JAZZ_IE_KEYBOARD            (1 << 6)
  171. #define JAZZ_IE_MOUSE               (1 << 7)
  172. #define JAZZ_IE_SERIAL1             (1 << 8)
  173. #define JAZZ_IE_SERIAL2             (1 << 9)
  174. /*
  175.  * JAZZ Interrupt Level definitions
  176.  *
  177.  * This is somewhat broken.  For reasons which nobody can remember anymore
  178.  * we remap the Jazz interrupts to the usual ISA style interrupt numbers.
  179.  */
  180. #define JAZZ_PARALLEL_IRQ       16
  181. #define JAZZ_FLOPPY_IRQ          6 /* needs to be consistent with floppy driver! */
  182. #define JAZZ_SOUND_IRQ          18
  183. #define JAZZ_VIDEO_IRQ          19
  184. #define JAZZ_ETHERNET_IRQ       20
  185. #define JAZZ_SCSI_IRQ           21
  186. #define JAZZ_KEYBOARD_IRQ       22
  187. #define JAZZ_MOUSE_IRQ          23
  188. #define JAZZ_SERIAL1_IRQ        24
  189. #define JAZZ_SERIAL2_IRQ        25
  190. #define JAZZ_TIMER_IRQ          31
  191. /*
  192.  * JAZZ DMA Channels
  193.  * Note: Channels 4...7 are not used with respect to the Acer PICA-61
  194.  * chipset which does not provide these DMA channels.
  195.  */
  196. #define JAZZ_SCSI_DMA           0              /* SCSI */
  197. #define JAZZ_FLOPPY_DMA         1              /* FLOPPY */
  198. #define JAZZ_AUDIOL_DMA         2              /* AUDIO L */
  199. #define JAZZ_AUDIOR_DMA         3              /* AUDIO R */
  200. /*
  201.  * JAZZ R4030 MCT_ADR chip (DMA controller)
  202.  * Note: Virtual Addresses !
  203.  */
  204. #define JAZZ_R4030_CONFIG 0xE0000000 /* R4030 config register */
  205. #define JAZZ_R4030_REVISION     0xE0000008 /* same as PICA_ASIC_REVISION */
  206. #define JAZZ_R4030_INV_ADDR 0xE0000010 /* Invalid Address register */
  207. #define JAZZ_R4030_TRSTBL_BASE  0xE0000018 /* Translation Table Base */
  208. #define JAZZ_R4030_TRSTBL_LIM   0xE0000020 /* Translation Table Limit */
  209. #define JAZZ_R4030_TRSTBL_INV   0xE0000028 /* Translation Table Invalidate */
  210. #define JAZZ_R4030_CACHE_MTNC   0xE0000030 /* Cache Maintenance */
  211. #define JAZZ_R4030_R_FAIL_ADDR  0xE0000038 /* Remote Failed Address */
  212. #define JAZZ_R4030_M_FAIL_ADDR  0xE0000040 /* Memory Failed Address */
  213. #define JAZZ_R4030_CACHE_PTAG   0xE0000048 /* I/O Cache Physical Tag */
  214. #define JAZZ_R4030_CACHE_LTAG   0xE0000050 /* I/O Cache Logical Tag */
  215. #define JAZZ_R4030_CACHE_BMASK  0xE0000058 /* I/O Cache Byte Mask */
  216. #define JAZZ_R4030_CACHE_BWIN   0xE0000060 /* I/O Cache Buffer Window */
  217. /*
  218.  * Remote Speed Registers. 
  219.  *
  220.  *  0: free,      1: Ethernet,  2: SCSI,      3: Floppy,
  221.  *  4: RTC,       5: Kb./Mouse  6: serial 1,  7: serial 2,
  222.  *  8: parallel,  9: NVRAM,    10: CPU,      11: PROM,
  223.  * 12: reserved, 13: free,     14: 7seg LED, 15: ???
  224.  */
  225. #define JAZZ_R4030_REM_SPEED 0xE0000070 /* 16 Remote Speed Registers */
  226. /* 0xE0000070,78,80... 0xE00000E8 */
  227. #define JAZZ_R4030_IRQ_ENABLE   0xE00000E8 /* Internal Interrupt Enable */
  228. #define JAZZ_R4030_INVAL_ADDR   0xE0000010 /* Invalid address Register */
  229. #define JAZZ_R4030_IRQ_SOURCE   0xE0000200 /* Interrupt Source Register */
  230. #define JAZZ_R4030_I386_ERROR   0xE0000208 /* i386/EISA Bus Error */
  231. /*
  232.  * Virtual (E)ISA controller address
  233.  */
  234. #define JAZZ_EISA_IRQ_ACK 0xE0000238 /* EISA interrupt acknowledge */
  235. /*
  236.  * Access the R4030 DMA and I/O Controller
  237.  */
  238. #ifndef __ASSEMBLY__
  239. static inline void r4030_delay(void)
  240. {
  241. __asm__ __volatile__(
  242. ".settnoreordernt"
  243. "nopnt"
  244. "nopnt"
  245. "nopnt"
  246. "nopnt"
  247. ".settreorder");
  248. }
  249. static inline unsigned short r4030_read_reg16(unsigned addr)
  250. {
  251. unsigned short ret = *((volatile unsigned short *)addr);
  252. r4030_delay();
  253. return ret;
  254. }
  255. static inline unsigned int r4030_read_reg32(unsigned addr)
  256. {
  257. unsigned int ret = *((volatile unsigned int *)addr);
  258. r4030_delay();
  259. return ret;
  260. }
  261. static inline void r4030_write_reg16(unsigned addr, unsigned val)
  262. {
  263. *((volatile unsigned short *)addr) = val;
  264. r4030_delay();
  265. }
  266. static inline void r4030_write_reg32(unsigned addr, unsigned val)
  267. {
  268. *((volatile unsigned int *)addr) = val;
  269. r4030_delay();
  270. }
  271. #endif /* !__ASSEMBLY__ */
  272. #define JAZZ_FDC_BASE 0xe0003000
  273. #define JAZZ_RTC_BASE 0xe0004000
  274. #define JAZZ_PORT_BASE 0xe2000000
  275. #define JAZZ_EISA_BASE 0xe3000000
  276. #endif /* __ASM_JAZZ_H */