atarihw.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807
  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-atari.h>
  23. #include <asm/kmap.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. #include <linux/mm.h>
  113. #include <asm/cacheflush.h>
  114. static inline void dma_cache_maintenance( unsigned long paddr,
  115. unsigned long len,
  116. int writeflag )
  117. {
  118. if (writeflag) {
  119. if (!MACH_IS_MEDUSA || CPU_IS_060)
  120. cache_push( paddr, len );
  121. }
  122. else {
  123. if (!MACH_IS_MEDUSA)
  124. cache_clear( paddr, len );
  125. }
  126. }
  127. /*
  128. ** Shifter
  129. */
  130. #define ST_LOW 0
  131. #define ST_MID 1
  132. #define ST_HIGH 2
  133. #define TT_LOW 7
  134. #define TT_MID 4
  135. #define TT_HIGH 6
  136. #define SHF_BAS (0xffff8200)
  137. struct SHIFTER
  138. {
  139. u_char pad1;
  140. u_char bas_hi;
  141. u_char pad2;
  142. u_char bas_md;
  143. u_char pad3;
  144. u_char volatile vcounthi;
  145. u_char pad4;
  146. u_char volatile vcountmid;
  147. u_char pad5;
  148. u_char volatile vcountlow;
  149. u_char volatile syncmode;
  150. u_char pad6;
  151. u_char pad7;
  152. u_char bas_lo;
  153. };
  154. # define shifter ((*(volatile struct SHIFTER *)SHF_BAS))
  155. #define SHF_FBAS (0xffff820e)
  156. struct SHIFTER_F030
  157. {
  158. u_short off_next;
  159. u_short scn_width;
  160. };
  161. # define shifter_f030 ((*(volatile struct SHIFTER_F030 *)SHF_FBAS))
  162. #define SHF_TBAS (0xffff8200)
  163. struct SHIFTER_TT {
  164. u_char char_dummy0;
  165. u_char bas_hi; /* video mem base addr, high and mid byte */
  166. u_char char_dummy1;
  167. u_char bas_md;
  168. u_char char_dummy2;
  169. u_char vcount_hi; /* pointer to currently displayed byte */
  170. u_char char_dummy3;
  171. u_char vcount_md;
  172. u_char char_dummy4;
  173. u_char vcount_lo;
  174. u_short st_sync; /* ST compatible sync mode register, unused */
  175. u_char char_dummy5;
  176. u_char bas_lo; /* video mem addr, low byte */
  177. u_char char_dummy6[2+3*16];
  178. /* $ffff8240: */
  179. u_short color_reg[16]; /* 16 color registers */
  180. u_char st_shiftmode; /* ST compatible shift mode register, unused */
  181. u_char char_dummy7;
  182. u_short tt_shiftmode; /* TT shift mode register */
  183. };
  184. #define shifter_tt ((*(volatile struct SHIFTER_TT *)SHF_TBAS))
  185. /* values for shifter_tt->tt_shiftmode */
  186. #define TT_SHIFTER_STLOW 0x0000
  187. #define TT_SHIFTER_STMID 0x0100
  188. #define TT_SHIFTER_STHIGH 0x0200
  189. #define TT_SHIFTER_TTLOW 0x0700
  190. #define TT_SHIFTER_TTMID 0x0400
  191. #define TT_SHIFTER_TTHIGH 0x0600
  192. #define TT_SHIFTER_MODEMASK 0x0700
  193. #define TT_SHIFTER_NUMMODE 0x0008
  194. #define TT_SHIFTER_PALETTE_MASK 0x000f
  195. #define TT_SHIFTER_GRAYMODE 0x1000
  196. /* 256 TT palette registers */
  197. #define TT_PALETTE_BASE (0xffff8400)
  198. #define tt_palette ((volatile u_short *)TT_PALETTE_BASE)
  199. #define TT_PALETTE_RED_MASK 0x0f00
  200. #define TT_PALETTE_GREEN_MASK 0x00f0
  201. #define TT_PALETTE_BLUE_MASK 0x000f
  202. /*
  203. ** Falcon030 VIDEL Video Controller
  204. ** for description see File 'linux\tools\atari\hardware.txt
  205. */
  206. #define f030_col ((u_long *) 0xffff9800)
  207. #define f030_xreg ((u_short*) 0xffff8282)
  208. #define f030_yreg ((u_short*) 0xffff82a2)
  209. #define f030_creg ((u_short*) 0xffff82c0)
  210. #define f030_sreg ((u_short*) 0xffff8260)
  211. #define f030_mreg ((u_short*) 0xffff820a)
  212. #define f030_linewidth ((u_short*) 0xffff820e)
  213. #define f030_hscroll ((u_char*) 0xffff8265)
  214. #define VIDEL_BAS (0xffff8260)
  215. struct VIDEL {
  216. u_short st_shift;
  217. u_short pad1;
  218. u_char xoffset_s;
  219. u_char xoffset;
  220. u_short f_shift;
  221. u_char pad2[0x1a];
  222. u_short hht;
  223. u_short hbb;
  224. u_short hbe;
  225. u_short hdb;
  226. u_short hde;
  227. u_short hss;
  228. u_char pad3[0x14];
  229. u_short vft;
  230. u_short vbb;
  231. u_short vbe;
  232. u_short vdb;
  233. u_short vde;
  234. u_short vss;
  235. u_char pad4[0x12];
  236. u_short control;
  237. u_short mode;
  238. };
  239. #define videl ((*(volatile struct VIDEL *)VIDEL_BAS))
  240. /*
  241. ** DMA/WD1772 Disk Controller
  242. */
  243. #define FWD_BAS (0xffff8604)
  244. struct DMA_WD
  245. {
  246. u_short fdc_acces_seccount;
  247. u_short dma_mode_status;
  248. u_char dma_vhi; /* Some extended ST-DMAs can handle 32 bit addresses */
  249. u_char dma_hi;
  250. u_char char_dummy2;
  251. u_char dma_md;
  252. u_char char_dummy3;
  253. u_char dma_lo;
  254. u_short fdc_speed;
  255. };
  256. # define dma_wd ((*(volatile struct DMA_WD *)FWD_BAS))
  257. /* alias */
  258. #define st_dma dma_wd
  259. /* The two highest bytes of an extended DMA as a short; this is a must
  260. * for the Medusa.
  261. */
  262. #define st_dma_ext_dmahi (*((volatile unsigned short *)0xffff8608))
  263. /*
  264. ** YM2149 Sound Chip
  265. ** access in bytes
  266. */
  267. #define YM_BAS (0xffff8800)
  268. struct SOUND_YM
  269. {
  270. u_char rd_data_reg_sel;
  271. u_char char_dummy1;
  272. u_char wd_data;
  273. };
  274. #define sound_ym ((*(volatile struct SOUND_YM *)YM_BAS))
  275. /* TT SCSI DMA */
  276. #define TT_SCSI_DMA_BAS (0xffff8700)
  277. struct TT_DMA {
  278. u_char char_dummy0;
  279. u_char dma_addr_hi;
  280. u_char char_dummy1;
  281. u_char dma_addr_hmd;
  282. u_char char_dummy2;
  283. u_char dma_addr_lmd;
  284. u_char char_dummy3;
  285. u_char dma_addr_lo;
  286. u_char char_dummy4;
  287. u_char dma_cnt_hi;
  288. u_char char_dummy5;
  289. u_char dma_cnt_hmd;
  290. u_char char_dummy6;
  291. u_char dma_cnt_lmd;
  292. u_char char_dummy7;
  293. u_char dma_cnt_lo;
  294. u_long dma_restdata;
  295. u_short dma_ctrl;
  296. };
  297. #define tt_scsi_dma ((*(volatile struct TT_DMA *)TT_SCSI_DMA_BAS))
  298. /* TT SCSI Controller 5380 */
  299. #define TT_5380_BAS (0xffff8781)
  300. struct TT_5380 {
  301. u_char scsi_data;
  302. u_char char_dummy1;
  303. u_char scsi_icr;
  304. u_char char_dummy2;
  305. u_char scsi_mode;
  306. u_char char_dummy3;
  307. u_char scsi_tcr;
  308. u_char char_dummy4;
  309. u_char scsi_idstat;
  310. u_char char_dummy5;
  311. u_char scsi_dmastat;
  312. u_char char_dummy6;
  313. u_char scsi_targrcv;
  314. u_char char_dummy7;
  315. u_char scsi_inircv;
  316. };
  317. #define tt_scsi ((*(volatile struct TT_5380 *)TT_5380_BAS))
  318. #define tt_scsi_regp ((volatile char *)TT_5380_BAS)
  319. /*
  320. ** Falcon DMA Sound Subsystem
  321. */
  322. #define MATRIX_BASE (0xffff8930)
  323. struct MATRIX
  324. {
  325. u_short source;
  326. u_short destination;
  327. u_char external_frequency_divider;
  328. u_char internal_frequency_divider;
  329. };
  330. #define falcon_matrix (*(volatile struct MATRIX *)MATRIX_BASE)
  331. #define CODEC_BASE (0xffff8936)
  332. struct CODEC
  333. {
  334. u_char tracks;
  335. u_char input_source;
  336. #define CODEC_SOURCE_ADC 1
  337. #define CODEC_SOURCE_MATRIX 2
  338. u_char adc_source;
  339. #define ADC_SOURCE_RIGHT_PSG 1
  340. #define ADC_SOURCE_LEFT_PSG 2
  341. u_char gain;
  342. #define CODEC_GAIN_RIGHT 0x0f
  343. #define CODEC_GAIN_LEFT 0xf0
  344. u_char attenuation;
  345. #define CODEC_ATTENUATION_RIGHT 0x0f
  346. #define CODEC_ATTENUATION_LEFT 0xf0
  347. u_char unused1;
  348. u_char status;
  349. #define CODEC_OVERFLOW_RIGHT 1
  350. #define CODEC_OVERFLOW_LEFT 2
  351. u_char unused2, unused3, unused4, unused5;
  352. u_char gpio_directions;
  353. #define CODEC_GPIO_IN 0
  354. #define CODEC_GPIO_OUT 1
  355. u_char unused6;
  356. u_char gpio_data;
  357. };
  358. #define falcon_codec (*(volatile struct CODEC *)CODEC_BASE)
  359. /*
  360. ** Falcon Blitter
  361. */
  362. #define BLT_BAS (0xffff8a00)
  363. struct BLITTER
  364. {
  365. u_short halftone[16];
  366. u_short src_x_inc;
  367. u_short src_y_inc;
  368. u_long src_address;
  369. u_short endmask1;
  370. u_short endmask2;
  371. u_short endmask3;
  372. u_short dst_x_inc;
  373. u_short dst_y_inc;
  374. u_long dst_address;
  375. u_short wd_per_line;
  376. u_short ln_per_bb;
  377. u_short hlf_op_reg;
  378. u_short log_op_reg;
  379. u_short lin_nm_reg;
  380. u_short skew_reg;
  381. };
  382. # define blitter ((*(volatile struct BLITTER *)BLT_BAS))
  383. /*
  384. ** SCC Z8530
  385. */
  386. #define SCC_BAS (0xffff8c81)
  387. struct SCC
  388. {
  389. u_char cha_a_ctrl;
  390. u_char char_dummy1;
  391. u_char cha_a_data;
  392. u_char char_dummy2;
  393. u_char cha_b_ctrl;
  394. u_char char_dummy3;
  395. u_char cha_b_data;
  396. };
  397. # define atari_scc ((*(volatile struct SCC*)SCC_BAS))
  398. /* The ESCC (Z85230) in an Atari ST. The channels are reversed! */
  399. # define st_escc ((*(volatile struct SCC*)0xfffffa31))
  400. # define st_escc_dsr ((*(volatile char *)0xfffffa39))
  401. /* TT SCC DMA Controller (same chip as SCSI DMA) */
  402. #define TT_SCC_DMA_BAS (0xffff8c00)
  403. #define tt_scc_dma ((*(volatile struct TT_DMA *)TT_SCC_DMA_BAS))
  404. /*
  405. ** VIDEL Palette Register
  406. */
  407. #define FPL_BAS (0xffff9800)
  408. struct VIDEL_PALETTE
  409. {
  410. u_long reg[256];
  411. };
  412. # define videl_palette ((*(volatile struct VIDEL_PALETTE*)FPL_BAS))
  413. /*
  414. ** Falcon DSP Host Interface
  415. */
  416. #define DSP56K_HOST_INTERFACE_BASE (0xffffa200)
  417. struct DSP56K_HOST_INTERFACE {
  418. u_char icr;
  419. #define DSP56K_ICR_RREQ 0x01
  420. #define DSP56K_ICR_TREQ 0x02
  421. #define DSP56K_ICR_HF0 0x08
  422. #define DSP56K_ICR_HF1 0x10
  423. #define DSP56K_ICR_HM0 0x20
  424. #define DSP56K_ICR_HM1 0x40
  425. #define DSP56K_ICR_INIT 0x80
  426. u_char cvr;
  427. #define DSP56K_CVR_HV_MASK 0x1f
  428. #define DSP56K_CVR_HC 0x80
  429. u_char isr;
  430. #define DSP56K_ISR_RXDF 0x01
  431. #define DSP56K_ISR_TXDE 0x02
  432. #define DSP56K_ISR_TRDY 0x04
  433. #define DSP56K_ISR_HF2 0x08
  434. #define DSP56K_ISR_HF3 0x10
  435. #define DSP56K_ISR_DMA 0x40
  436. #define DSP56K_ISR_HREQ 0x80
  437. u_char ivr;
  438. union {
  439. u_char b[4];
  440. u_short w[2];
  441. u_long l;
  442. } data;
  443. };
  444. #define dsp56k_host_interface ((*(volatile struct DSP56K_HOST_INTERFACE *)DSP56K_HOST_INTERFACE_BASE))
  445. /*
  446. ** MFP 68901
  447. */
  448. #define MFP_BAS (0xfffffa01)
  449. struct MFP
  450. {
  451. u_char par_dt_reg;
  452. u_char char_dummy1;
  453. u_char active_edge;
  454. u_char char_dummy2;
  455. u_char data_dir;
  456. u_char char_dummy3;
  457. u_char int_en_a;
  458. u_char char_dummy4;
  459. u_char int_en_b;
  460. u_char char_dummy5;
  461. u_char int_pn_a;
  462. u_char char_dummy6;
  463. u_char int_pn_b;
  464. u_char char_dummy7;
  465. u_char int_sv_a;
  466. u_char char_dummy8;
  467. u_char int_sv_b;
  468. u_char char_dummy9;
  469. u_char int_mk_a;
  470. u_char char_dummy10;
  471. u_char int_mk_b;
  472. u_char char_dummy11;
  473. u_char vec_adr;
  474. u_char char_dummy12;
  475. u_char tim_ct_a;
  476. u_char char_dummy13;
  477. u_char tim_ct_b;
  478. u_char char_dummy14;
  479. u_char tim_ct_cd;
  480. u_char char_dummy15;
  481. u_char tim_dt_a;
  482. u_char char_dummy16;
  483. u_char tim_dt_b;
  484. u_char char_dummy17;
  485. u_char tim_dt_c;
  486. u_char char_dummy18;
  487. u_char tim_dt_d;
  488. u_char char_dummy19;
  489. u_char sync_char;
  490. u_char char_dummy20;
  491. u_char usart_ctr;
  492. u_char char_dummy21;
  493. u_char rcv_stat;
  494. u_char char_dummy22;
  495. u_char trn_stat;
  496. u_char char_dummy23;
  497. u_char usart_dta;
  498. };
  499. # define st_mfp ((*(volatile struct MFP*)MFP_BAS))
  500. /* TT's second MFP */
  501. #define TT_MFP_BAS (0xfffffa81)
  502. # define tt_mfp ((*(volatile struct MFP*)TT_MFP_BAS))
  503. /* TT System Control Unit */
  504. #define TT_SCU_BAS (0xffff8e01)
  505. struct TT_SCU {
  506. u_char sys_mask;
  507. u_char char_dummy1;
  508. u_char sys_stat;
  509. u_char char_dummy2;
  510. u_char softint;
  511. u_char char_dummy3;
  512. u_char vmeint;
  513. u_char char_dummy4;
  514. u_char gp_reg1;
  515. u_char char_dummy5;
  516. u_char gp_reg2;
  517. u_char char_dummy6;
  518. u_char vme_mask;
  519. u_char char_dummy7;
  520. u_char vme_stat;
  521. };
  522. #define tt_scu ((*(volatile struct TT_SCU *)TT_SCU_BAS))
  523. /* TT real time clock */
  524. #define TT_RTC_BAS (0xffff8961)
  525. struct TT_RTC {
  526. u_char regsel;
  527. u_char dummy;
  528. u_char data;
  529. };
  530. #define tt_rtc ((*(volatile struct TT_RTC *)TT_RTC_BAS))
  531. /*
  532. ** ACIA 6850
  533. */
  534. /* constants for the ACIA registers */
  535. /* baudrate selection and reset (Baudrate = clock/factor) */
  536. #define ACIA_DIV1 0
  537. #define ACIA_DIV16 1
  538. #define ACIA_DIV64 2
  539. #define ACIA_RESET 3
  540. /* character format */
  541. #define ACIA_D7E2S (0<<2) /* 7 data, even parity, 2 stop */
  542. #define ACIA_D7O2S (1<<2) /* 7 data, odd parity, 2 stop */
  543. #define ACIA_D7E1S (2<<2) /* 7 data, even parity, 1 stop */
  544. #define ACIA_D7O1S (3<<2) /* 7 data, odd parity, 1 stop */
  545. #define ACIA_D8N2S (4<<2) /* 8 data, no parity, 2 stop */
  546. #define ACIA_D8N1S (5<<2) /* 8 data, no parity, 1 stop */
  547. #define ACIA_D8E1S (6<<2) /* 8 data, even parity, 1 stop */
  548. #define ACIA_D8O1S (7<<2) /* 8 data, odd parity, 1 stop */
  549. /* transmit control */
  550. #define ACIA_RLTID (0<<5) /* RTS low, TxINT disabled */
  551. #define ACIA_RLTIE (1<<5) /* RTS low, TxINT enabled */
  552. #define ACIA_RHTID (2<<5) /* RTS high, TxINT disabled */
  553. #define ACIA_RLTIDSB (3<<5) /* RTS low, TxINT disabled, send break */
  554. /* receive control */
  555. #define ACIA_RID (0<<7) /* RxINT disabled */
  556. #define ACIA_RIE (1<<7) /* RxINT enabled */
  557. /* status fields of the ACIA */
  558. #define ACIA_RDRF 1 /* Receive Data Register Full */
  559. #define ACIA_TDRE (1<<1) /* Transmit Data Register Empty */
  560. #define ACIA_DCD (1<<2) /* Data Carrier Detect */
  561. #define ACIA_CTS (1<<3) /* Clear To Send */
  562. #define ACIA_FE (1<<4) /* Framing Error */
  563. #define ACIA_OVRN (1<<5) /* Receiver Overrun */
  564. #define ACIA_PE (1<<6) /* Parity Error */
  565. #define ACIA_IRQ (1<<7) /* Interrupt Request */
  566. #define ACIA_BAS (0xfffffc00)
  567. struct ACIA
  568. {
  569. u_char key_ctrl;
  570. u_char char_dummy1;
  571. u_char key_data;
  572. u_char char_dummy2;
  573. u_char mid_ctrl;
  574. u_char char_dummy3;
  575. u_char mid_data;
  576. };
  577. # define acia ((*(volatile struct ACIA*)ACIA_BAS))
  578. #define TT_DMASND_BAS (0xffff8900)
  579. struct TT_DMASND {
  580. u_char int_ctrl; /* Falcon: Interrupt control */
  581. u_char ctrl;
  582. u_char pad2;
  583. u_char bas_hi;
  584. u_char pad3;
  585. u_char bas_mid;
  586. u_char pad4;
  587. u_char bas_low;
  588. u_char pad5;
  589. u_char addr_hi;
  590. u_char pad6;
  591. u_char addr_mid;
  592. u_char pad7;
  593. u_char addr_low;
  594. u_char pad8;
  595. u_char end_hi;
  596. u_char pad9;
  597. u_char end_mid;
  598. u_char pad10;
  599. u_char end_low;
  600. u_char pad11[12];
  601. u_char track_select; /* Falcon */
  602. u_char mode;
  603. u_char pad12[14];
  604. /* Falcon only: */
  605. u_short cbar_src;
  606. u_short cbar_dst;
  607. u_char ext_div;
  608. u_char int_div;
  609. u_char rec_track_select;
  610. u_char dac_src;
  611. u_char adc_src;
  612. u_char input_gain;
  613. u_short output_atten;
  614. };
  615. # define tt_dmasnd ((*(volatile struct TT_DMASND *)TT_DMASND_BAS))
  616. #define DMASND_MFP_INT_REPLAY 0x01
  617. #define DMASND_MFP_INT_RECORD 0x02
  618. #define DMASND_TIMERA_INT_REPLAY 0x04
  619. #define DMASND_TIMERA_INT_RECORD 0x08
  620. #define DMASND_CTRL_OFF 0x00
  621. #define DMASND_CTRL_ON 0x01
  622. #define DMASND_CTRL_REPEAT 0x02
  623. #define DMASND_CTRL_RECORD_ON 0x10
  624. #define DMASND_CTRL_RECORD_OFF 0x00
  625. #define DMASND_CTRL_RECORD_REPEAT 0x20
  626. #define DMASND_CTRL_SELECT_REPLAY 0x00
  627. #define DMASND_CTRL_SELECT_RECORD 0x80
  628. #define DMASND_MODE_MONO 0x80
  629. #define DMASND_MODE_STEREO 0x00
  630. #define DMASND_MODE_8BIT 0x00
  631. #define DMASND_MODE_16BIT 0x40 /* Falcon only */
  632. #define DMASND_MODE_6KHZ 0x00 /* Falcon: mute */
  633. #define DMASND_MODE_12KHZ 0x01
  634. #define DMASND_MODE_25KHZ 0x02
  635. #define DMASND_MODE_50KHZ 0x03
  636. #define DMASNDSetBase(bufstart) \
  637. do { \
  638. tt_dmasnd.bas_hi = (unsigned char)(((bufstart) & 0xff0000) >> 16); \
  639. tt_dmasnd.bas_mid = (unsigned char)(((bufstart) & 0x00ff00) >> 8); \
  640. tt_dmasnd.bas_low = (unsigned char) ((bufstart) & 0x0000ff); \
  641. } while( 0 )
  642. #define DMASNDGetAdr() ((tt_dmasnd.addr_hi << 16) + \
  643. (tt_dmasnd.addr_mid << 8) + \
  644. (tt_dmasnd.addr_low))
  645. #define DMASNDSetEnd(bufend) \
  646. do { \
  647. tt_dmasnd.end_hi = (unsigned char)(((bufend) & 0xff0000) >> 16); \
  648. tt_dmasnd.end_mid = (unsigned char)(((bufend) & 0x00ff00) >> 8); \
  649. tt_dmasnd.end_low = (unsigned char) ((bufend) & 0x0000ff); \
  650. } while( 0 )
  651. #define TT_MICROWIRE_BAS (0xffff8922)
  652. struct TT_MICROWIRE {
  653. u_short data;
  654. u_short mask;
  655. };
  656. # define tt_microwire ((*(volatile struct TT_MICROWIRE *)TT_MICROWIRE_BAS))
  657. #define MW_LM1992_ADDR 0x0400
  658. #define MW_LM1992_VOLUME(dB) \
  659. (0x0c0 | ((dB) < -80 ? 0 : (dB) > 0 ? 40 : (((dB) + 80) / 2)))
  660. #define MW_LM1992_BALLEFT(dB) \
  661. (0x140 | ((dB) < -40 ? 0 : (dB) > 0 ? 20 : (((dB) + 40) / 2)))
  662. #define MW_LM1992_BALRIGHT(dB) \
  663. (0x100 | ((dB) < -40 ? 0 : (dB) > 0 ? 20 : (((dB) + 40) / 2)))
  664. #define MW_LM1992_TREBLE(dB) \
  665. (0x080 | ((dB) < -12 ? 0 : (dB) > 12 ? 12 : (((dB) / 2) + 6)))
  666. #define MW_LM1992_BASS(dB) \
  667. (0x040 | ((dB) < -12 ? 0 : (dB) > 12 ? 12 : (((dB) / 2) + 6)))
  668. #define MW_LM1992_PSG_LOW 0x000
  669. #define MW_LM1992_PSG_HIGH 0x001
  670. #define MW_LM1992_PSG_OFF 0x002
  671. #define MSTE_RTC_BAS (0xfffffc21)
  672. struct MSTE_RTC {
  673. u_char sec_ones;
  674. u_char dummy1;
  675. u_char sec_tens;
  676. u_char dummy2;
  677. u_char min_ones;
  678. u_char dummy3;
  679. u_char min_tens;
  680. u_char dummy4;
  681. u_char hr_ones;
  682. u_char dummy5;
  683. u_char hr_tens;
  684. u_char dummy6;
  685. u_char weekday;
  686. u_char dummy7;
  687. u_char day_ones;
  688. u_char dummy8;
  689. u_char day_tens;
  690. u_char dummy9;
  691. u_char mon_ones;
  692. u_char dummy10;
  693. u_char mon_tens;
  694. u_char dummy11;
  695. u_char year_ones;
  696. u_char dummy12;
  697. u_char year_tens;
  698. u_char dummy13;
  699. u_char mode;
  700. u_char dummy14;
  701. u_char test;
  702. u_char dummy15;
  703. u_char reset;
  704. };
  705. #define mste_rtc ((*(volatile struct MSTE_RTC *)MSTE_RTC_BAS))
  706. /*
  707. ** EtherNAT add-on card for Falcon - combined ethernet and USB adapter
  708. */
  709. #define ATARI_ETHERNAT_PHYS_ADDR 0x80000000
  710. #endif /* linux/atarihw.h */