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

嵌入式Linux

开发平台:

Unix_Linux

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