memoryCall.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462
  1. /*
  2. ** linux/atarihw.h -- This header defines some macros and pointers for
  3. ** the various Atari custom hardware registers.
  4. **
  5. ** Copyright 1994 by Björn Brauel
  6. **
  7. ** 5/1/94 Roman Hodek:
  8. ** Added definitions for TT specific chips.
  9. **
  10. ** 1996-09-13 lars brinkhoff <f93labr@dd.chalmers.se>:
  11. ** Finally added definitions for the matrix/codec and the DSP56001 host
  12. ** interface.
  13. **
  14. ** This file is subject to the terms and conditions of the GNU General Public
  15. ** License. See the file COPYING in the main directory of this archive
  16. ** for more details.
  17. **
  18. */
  19. #ifndef _LINUX_ATARIHW_H_
  20. #define _LINUX_ATARIHW_H_
  21. #include <linux/types.h>
  22. #include <asm/bootinfo.h>
  23. #include <asm/raw_io.h>
  24. extern u_long atari_mch_cookie;
  25. extern u_long atari_mch_type;
  26. extern u_long atari_switches;
  27. extern int atari_rtc_year_offset;
  28. extern int atari_dont_touch_floppy_select;
  29. extern int atari_SCC_reset_done;
  30. /* convenience macros for testing machine type */
  31. #define MACH_IS_ST ((atari_mch_cookie >> 16) == ATARI_MCH_ST)
  32. #define MACH_IS_STE ((atari_mch_cookie >> 16) == ATARI_MCH_STE && \
  33. (atari_mch_cookie & 0xffff) == 0)
  34. #define MACH_IS_MSTE ((atari_mch_cookie >> 16) == ATARI_MCH_STE && \
  35. (atari_mch_cookie & 0xffff) == 0x10)
  36. #define MACH_IS_TT ((atari_mch_cookie >> 16) == ATARI_MCH_TT)
  37. #define MACH_IS_FALCON ((atari_mch_cookie >> 16) == ATARI_MCH_FALCON)
  38. #define MACH_IS_MEDUSA (atari_mch_type == ATARI_MACH_MEDUSA)
  39. #define MACH_IS_AB40 (atari_mch_type == ATARI_MACH_AB40)
  40. /* values for atari_switches */
  41. #define ATARI_SWITCH_IKBD 0x01
  42. #define ATARI_SWITCH_MIDI 0x02
  43. #define ATARI_SWITCH_SND6 0x04
  44. #define ATARI_SWITCH_SND7 0x08
  45. #define ATARI_SWITCH_OVSC_SHIFT 16
  46. #define ATARI_SWITCH_OVSC_IKBD (ATARI_SWITCH_IKBD << ATARI_SWITCH_OVSC_SHIFT)
  47. #define ATARI_SWITCH_OVSC_MIDI (ATARI_SWITCH_MIDI << ATARI_SWITCH_OVSC_SHIFT)
  48. #define ATARI_SWITCH_OVSC_SND6 (ATARI_SWITCH_SND6 << ATARI_SWITCH_OVSC_SHIFT)
  49. #define ATARI_SWITCH_OVSC_SND7 (ATARI_SWITCH_SND7 << ATARI_SWITCH_OVSC_SHIFT)
  50. #define ATARI_SWITCH_OVSC_MASK 0xffff0000
  51. /*
  52. * Define several Hardware-Chips for indication so that for the ATARI we do
  53. * no longer decide whether it is a Falcon or other machine . It's just
  54. * important what hardware the machine uses
  55. */
  56. /* ++roman 08/08/95: rewritten from ORing constants to a C bitfield */
  57. #define ATARIHW_DECLARE(name) unsigned name : 1
  58. #define ATARIHW_SET(name) (atari_hw_present.name = 1)
  59. #define ATARIHW_PRESENT(name) (atari_hw_present.name)
  60. struct atari_hw_present {
  61. /* video hardware */
  62. ATARIHW_DECLARE(STND_SHIFTER); /* ST-Shifter - no base low ! */
  63. ATARIHW_DECLARE(EXTD_SHIFTER); /* STe-Shifter - 24 bit address */
  64. ATARIHW_DECLARE(TT_SHIFTER); /* TT-Shifter */
  65. ATARIHW_DECLARE(VIDEL_SHIFTER); /* Falcon-Shifter */
  66. /* sound hardware */
  67. ATARIHW_DECLARE(YM_2149); /* Yamaha YM 2149 */
  68. ATARIHW_DECLARE(PCM_8BIT); /* PCM-Sound in STe-ATARI */
  69. ATARIHW_DECLARE(CODEC); /* CODEC Sound (Falcon) */
  70. /* disk storage interfaces */
  71. ATARIHW_DECLARE(TT_SCSI); /* Directly mapped NCR5380 */
  72. ATARIHW_DECLARE(ST_SCSI); /* NCR5380 via ST-DMA (Falcon) */
  73. ATARIHW_DECLARE(ACSI); /* Standard ACSI like in STs */
  74. ATARIHW_DECLARE(IDE); /* IDE Interface */
  75. ATARIHW_DECLARE(FDCSPEED); /* 8/16 MHz switch for FDC */
  76. /* other I/O hardware */
  77. ATARIHW_DECLARE(ST_MFP); /* The ST-MFP (there should be no Atari
  78. without it... but who knows?) */
  79. ATARIHW_DECLARE(TT_MFP); /* 2nd MFP */
  80. ATARIHW_DECLARE(SCC); /* Serial Communications Contr. */
  81. ATARIHW_DECLARE(ST_ESCC); /* SCC Z83230 in an ST */
  82. ATARIHW_DECLARE(ANALOG_JOY); /* Paddle Interface for STe
  83. and Falcon */
  84. ATARIHW_DECLARE(MICROWIRE); /* Microwire Interface */
  85. /* DMA */
  86. ATARIHW_DECLARE(STND_DMA); /* 24 Bit limited ST-DMA */
  87. ATARIHW_DECLARE(EXTD_DMA); /* 32 Bit ST-DMA */
  88. ATARIHW_DECLARE(SCSI_DMA); /* DMA for the NCR5380 */
  89. ATARIHW_DECLARE(SCC_DMA); /* DMA for the SCC */
  90. /* real time clocks */
  91. ATARIHW_DECLARE(TT_CLK); /* TT compatible clock chip */
  92. ATARIHW_DECLARE(MSTE_CLK); /* Mega ST(E) clock chip */
  93. /* supporting hardware */
  94. ATARIHW_DECLARE(SCU); /* System Control Unit */
  95. ATARIHW_DECLARE(BLITTER); /* Blitter */
  96. ATARIHW_DECLARE(VME); /* VME Bus */
  97. ATARIHW_DECLARE(DSP56K); /* DSP56k processor in Falcon */
  98. };
  99. extern struct atari_hw_present atari_hw_present;
  100. /* Reading the MFP port register gives a machine independent delay, since the
  101. * MFP always has a 8 MHz clock. This avoids problems with the varying length
  102. * of nops on various machines. Somebody claimed that the tstb takes 600 ns.
  103. */
  104. #define MFPDELAY() \
  105. __asm__ __volatile__ ( "tstb %0" : : "m" (st_mfp.par_dt_reg) : "cc" );
  106. /* Do cache push/invalidate for DMA read/write. This function obeys the
  107. * snooping on some machines (Medusa) and processors: The Medusa itself can
  108. * snoop, but only the '040 can source data from its cache to DMA writes i.e.,
  109. * reads from memory). Both '040 and '060 invalidate cache entries on snooped
  110. * DMA reads (i.e., writes to memory).
  111. */
  112. #define atari_readb raw_inb
  113. #define atari_writeb raw_outb
  114. #define atari_inb_p raw_inb
  115. #define atari_outb_p raw_outb
  116. #include <linux/mm.h>
  117. #include <asm/cacheflush.h>
  118. static inline void dma_cache_maintenance( unsigned long paddr,
  119. unsigned long len,
  120. int writeflag )
  121. {
  122. if (writeflag) {
  123. if (!MACH_IS_MEDUSA || CPU_IS_060)
  124. cache_push( paddr, len );
  125. }
  126. else {
  127. if (!MACH_IS_MEDUSA)
  128. cache_clear( paddr, len );
  129. }
  130. }
  131. /*
  132. ** Shifter
  133. */
  134. #define ST_LOW 0
  135. #define ST_MID 1
  136. #define ST_HIGH 2
  137. #define TT_LOW 7
  138. #define TT_MID 4
  139. #define TT_HIGH 6
  140. #define SHF_BAS (0xffff8200)
  141. struct SHIFTER
  142. {
  143. u_char pad1;
  144. u_char bas_hi;
  145. u_char pad2;
  146. u_char bas_md;
  147. u_char pad3;
  148. u_char volatile vcounthi;
  149. u_char pad4;
  150. u_char volatile vcountmid;
  151. u_char pad5;
  152. u_char volatile vcountlow;
  153. u_char volatile syncmode;
  154. u_char pad6;
  155. u_char pad7;
  156. u_char bas_lo;
  157. };
  158. # define shifter ((*(volatile struct SHIFTER *)SHF_BAS))
  159. #define SHF_FBAS (0xffff820e)
  160. struct SHIFTER_F030
  161. {
  162. u_short off_next;
  163. u_short scn_width;
  164. };
  165. # define shifter_f030 ((*(volatile struct SHIFTER_F030 *)SHF_FBAS))
  166. #define SHF_TBAS (0xffff8200)
  167. struct SHIFTER_TT {
  168. u_char char_dummy0;
  169. u_char bas_hi; /* video mem base addr, high and mid byte */
  170. u_char char_dummy1;
  171. u_char bas_md;
  172. u_char char_dummy2;
  173. u_char vcount_hi; /* pointer to currently displayed byte */
  174. u_char char_dummy3;
  175. u_char vcount_md;
  176. u_char char_dummy4;
  177. u_char vcount_lo;
  178. u_short st_sync; /* ST compatible sync mode register, unused */
  179. u_char char_dummy5;
  180. u_char bas_lo; /* video mem addr, low byte */
  181. u_char char_dummy6[2+3*16];
  182. /* $ffff8240: */
  183. u_short color_reg[16]; /* 16 color registers */
  184. u_char st_shiftmode; /* ST compatible shift mode register, unused */
  185. u_char char_dummy7;
  186. u_short tt_shiftmode; /* TT shift mode register */
  187. };
  188. #define shifter_tt ((*(volatile struct SHIFTER_TT *)SHF_TBAS))
  189. /* values for shifter_tt->tt_shiftmode */
  190. #define TT_SHIFTER_STLOW 0x0000
  191. #define TT_SHIFTER_STMID 0x0100
  192. #define TT_SHIFTER_STHIGH 0x0200
  193. #define TT_SHIFTER_TTLOW 0x0700
  194. #define TT_SHIFTER_TTMID 0x0400
  195. #define TT_SHIFTER_TTHIGH 0x0600
  196. #define TT_SHIFTER_MODEMASK 0x0700
  197. #define TT_SHIFTER_NUMMODE 0x0008
  198. #define TT_SHIFTER_PALETTE_MASK 0x000f
  199. #define TT_SHIFTER_GRAYMODE 0x1000
  200. /* 256 TT palette registers */
  201. #define TT_PALETTE_BASE (0xffff8400)
  202. #define tt_palette ((volatile u_short *)TT_PALETTE_BASE)
  203. #define TT_PALETTE_RED_MASK 0x0f00
  204. #define TT_PALETTE_GREEN_MASK 0x00f0
  205. #define TT_PALETTE_BLUE_MASK 0x000f
  206. /*
  207. ** Falcon030 VIDEL Video Controller
  208. ** for description see File 'linux\tools\atari\hardware.txt
  209. */
  210. #define f030_col ((u_long *) 0xffff9800)
  211. #define f030_xreg ((u_short*) 0xffff8282)
  212. #define f030_yreg ((u_short*) 0xffff82a2)
  213. #define f030_creg ((u_short*) 0xffff82c0)
  214. #define f030_sreg ((u_short*) 0xffff8260)
  215. #define f030_mreg ((u_short*) 0xffff820a)
  216. #define f030_linewidth ((u_short*) 0xffff820e)
  217. #define f030_hscroll ((u_char*) 0xffff8265)
  218. #define VIDEL_BAS (0xffff8260)
  219. struct VIDEL {
  220. u_short st_shift;
  221. u_short pad1;
  222. u_char xoffset_s;
  223. u_char xoffset;
  224. u_short f_shift;
  225. u_char pad2[0x1a];
  226. u_short hht;
  227. u_short hbb;
  228. u_short hbe;
  229. u_short hdb;
  230. u_short hde;
  231. u_short hss;
  232. u_char pad3[0x14];
  233. u_short vft;
  234. u_short vbb;
  235. u_short vbe;
  236. u_short vdb;
  237. u_short vde;
  238. u_short vss;
  239. u_char pad4[0x12];
  240. u_short control;
  241. u_short mode;
  242. };
  243. #define videl ((*(volatile struct VIDEL *)VIDEL_BAS))
  244. /*
  245. ** DMA/WD1772 Disk Controller
  246. */
  247. #define FWD_BAS (0xffff8604)
  248. struct DMA_WD
  249. {
  250. u_short fdc_acces_seccount;
  251. u_short dma_mode_status;
  252. u_char dma_vhi; /* Some extended ST-DMAs can handle 32 bit addresses */
  253. u_char dma_hi;
  254. u_char char_dummy2;
  255. u_char dma_md;
  256. u_char char_dummy3;
  257. u_char dma_lo;
  258. u_short fdc_speed;
  259. };
  260. # define dma_wd ((*(volatile struct DMA_WD *)FWD_BAS))
  261. /* alias */
  262. #define st_dma dma_wd
  263. /* The two highest bytes of an extended DMA as a short; this is a must
  264. * for the Medusa.
  265. */
  266. #define st_dma_ext_dmahi (*((volatile unsigned short *)0xffff8608))
  267. /*
  268. ** YM2149 Sound Chip
  269. ** access in bytes
  270. */
  271. #define YM_BAS (0xffff8800)
  272. struct SOUND_YM
  273. {
  274. u_char rd_data_reg_sel;
  275. u_char char_dummy1;
  276. u_char wd_data;
  277. };
  278. #define sound_ym ((*(volatile struct SOUND_YM *)YM_BAS))
  279. /* TT SCSI DMA */
  280. #define TT_SCSI_DMA_BAS (0xffff8700)
  281. struct TT_DMA {
  282. u_char char_dummy0;
  283. u_char dma_addr_hi;
  284. u_char char_dummy1;
  285. u_char dma_addr_hmd;
  286. u_char char_dummy2;
  287. u_char dma_addr_lmd;
  288. u_char char_dummy3;
  289. u_char dma_addr_lo;
  290. u_char char_dummy4;
  291. u_char dma_cnt_hi;
  292. u_char char_dummy5;
  293. u_char dma_cnt_hmd;
  294. u_char char_dummy6;
  295. u_char dma_cnt_lmd;
  296. u_char char_dummy7;
  297. u_char dma_cnt_lo;
  298. u_long dma_restdata;
  299. u_short dma_ctrl;
  300. };
  301. #define tt_scsi_dma ((*(volatile struct TT_DMA *)TT_SCSI_DMA_BAS))
  302. /* TT SCSI Controller 5380 */
  303. #define TT_5380_BAS (0xffff8781)
  304. struct TT_5380 {
  305. u_char scsi_data;
  306. u_char char_dummy1;
  307. u_char scsi_icr;
  308. u_char char_dummy2;
  309. u_char scsi_mode;
  310. u_char char_dummy3;
  311. u_char scsi_tcr;
  312. u_char char_dummy4;
  313. u_char scsi_idstat;
  314. u_char char_dummy5;
  315. u_char scsi_dmastat;
  316. u_char char_dummy6;
  317. u_char scsi_targrcv;
  318. u_char char_dummy7;
  319. u_char scsi_inircv;
  320. };
  321. #define tt_scsi ((*(volatile struct TT_5380 *)TT_5380_BAS))
  322. #define tt_scsi_regp ((volatile char *)TT_5380_BAS)
  323. /*
  324. ** Falcon DMA Sound Subsystem
  325. */
  326. #define MATRIX_BASE (0xffff8930)
  327. struct MATRIX
  328. {
  329. u_short source;
  330. u_short destination;
  331. u_char external_frequency_divider;
  332. u_char internal_frequency_divider;
  333. };
  334. #define falcon_matrix (*(volatile struct MATRIX *)MATRIX_BASE)
  335. #define CODEC_BASE (0xffff8936)
  336. struct CODEC
  337. {
  338. u_char tracks;
  339. u_char input_source;
  340. #define CODEC_SOURCE_ADC 1
  341. #define CODEC_SOURCE_MATRIX 2
  342. u_char adc_source;
  343. #define ADC_SOURCE_RIGHT_PSG 1
  344. #define ADC_SOURCE_LEFT_PSG 2
  345. u_char gain;
  346. #define CODEC_GAIN_RIGHT 0x0f
  347. #define CODEC_GAIN_LEFT 0xf0
  348. u_char attenuation;
  349. #define CODEC_ATTENUATION_RIGHT 0x0f
  350. #define CODEC_ATTENUATION_LEFT 0xf0
  351. u_char unused1;
  352. u_char status;
  353. #define CODEC_OVERFLOW_RIGHT 1
  354. #define CODEC_OVERFLOW_LEFT 2
  355. u_char unused2, unused3, unused4, unused5;
  356. u_char gpio_directions;
  357. #define CODEC_GPIO_IN 0
  358. #define CODEC_GPIO_OUT 1
  359. u_char unused6;
  360. u_char gpio_data;
  361. };
  362. #define falcon_codec (*(volatile struct CODEC *)CODEC_BASE)
  363. /*
  364. ** Falcon Blitter
  365. */
  366. #define BLT_BAS (0xffff8a00)
  367. struct BLITTER
  368. {
  369. u_short halftone[16];
  370. u_short src_x_inc;
  371. u_short src_y_inc;
  372. u_long src_address;
  373. u_short endmask1;
  374. u_short endmask2;
  375. u_short endmask3;
  376. u_short dst_x_inc;
  377. u_short dst_y_inc;
  378. u_long dst_address;
  379. u_short wd_per_line;
  380. u_short ln_per_bb;
  381. u_short hlf_op_reg;
  382. u_short log_op_reg;
  383. u_short lin_nm_reg;
  384. u_short skew_reg;
  385. };
  386. # define blitter ((*(volatile struct BLITTER *)BLT_BAS))
  387. /*
  388. ** SCC Z8530
  389. */
  390. #define SCC_BAS (0xffff8c81)
  391. struct SCC
  392. {
  393. u_char cha_a_ctrl;
  394. u_char char_dummy1;
  395. u_char cha_a_data;
  396. u_char char_dummy2;
  397. u_char cha_b_ctrl;
  398. u_char char_dummy3;
  399. u_char cha_b_data;
  400. };
  401. # define atari_scc ((*(volatile struct SCC*)SCC_BAS))
  402. /* The ESCC (Z85230) in an Atari ST. The channels are reversed! */
  403. # define st_escc ((*(volatile struct SCC*)0xfffffa31))
  404. # define st_escc_dsr ((*(volatile char *)0xfffffa39))
  405. /* TT SCC DMA Controller (same chip as SCSI DMA) */
  406. #define TT_SCC_DMA_BAS (0xffff8c00)