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

Linux/Unix编程

开发平台:

Unix_Linux

  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攔n 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. /* convenience macros for testing machine type */
  30. #define MACH_IS_ST ((atari_mch_cookie >> 16) == ATARI_MCH_ST)
  31. #define MACH_IS_STE ((atari_mch_cookie >> 16) == ATARI_MCH_STE && 
  32.  (atari_mch_cookie & 0xffff) == 0)
  33. #define MACH_IS_MSTE ((atari_mch_cookie >> 16) == ATARI_MCH_STE && 
  34.  (atari_mch_cookie & 0xffff) == 0x10)
  35. #define MACH_IS_TT ((atari_mch_cookie >> 16) == ATARI_MCH_TT)
  36. #define MACH_IS_FALCON ((atari_mch_cookie >> 16) == ATARI_MCH_FALCON)
  37. #define MACH_IS_MEDUSA (atari_mch_type == ATARI_MACH_MEDUSA)
  38. #define MACH_IS_HADES (atari_mch_type == ATARI_MACH_HADES)
  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" (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/pgalloc.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 'linuxtoolsatarihardware.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.  
  248. #define FWD_BAS (0xffff8604)  
  249. struct DMA_WD
  250.  {
  251.   u_short fdc_acces_seccount;
  252.   u_short dma_mode_status;
  253.   u_char dma_vhi; /* Some extended ST-DMAs can handle 32 bit addresses */
  254.   u_char dma_hi;
  255.   u_char char_dummy2;
  256.   u_char dma_md;
  257.   u_char char_dummy3;
  258.   u_char dma_lo;
  259.   u_short fdc_speed;
  260.  };
  261. # define dma_wd ((*(volatile struct DMA_WD *)FWD_BAS))
  262. /* alias */
  263. #define st_dma dma_wd
  264. /* The two highest bytes of an extended DMA as a short; this is a must
  265.  * for the Medusa.
  266.  */
  267. #define st_dma_ext_dmahi (*((volatile unsigned short *)0xffff8608))
  268. /*
  269. ** YM2149 Sound Chip
  270. ** access in bytes
  271.  */
  272. #define YM_BAS (0xffff8800)
  273. struct SOUND_YM
  274.  {
  275.   u_char rd_data_reg_sel;
  276.   u_char char_dummy1;
  277.   u_char wd_data;
  278.  };
  279. #define sound_ym ((*(volatile struct SOUND_YM *)YM_BAS))
  280. /* TT SCSI DMA */
  281. #define TT_SCSI_DMA_BAS (0xffff8700)
  282. struct TT_DMA {
  283. u_char char_dummy0;
  284. u_char dma_addr_hi;
  285. u_char char_dummy1;
  286. u_char dma_addr_hmd;
  287. u_char char_dummy2;
  288. u_char dma_addr_lmd;
  289. u_char char_dummy3;
  290. u_char dma_addr_lo;
  291. u_char char_dummy4;
  292. u_char dma_cnt_hi;
  293. u_char char_dummy5;
  294. u_char dma_cnt_hmd;
  295. u_char char_dummy6;
  296. u_char dma_cnt_lmd;
  297. u_char char_dummy7;
  298. u_char dma_cnt_lo;
  299. u_long dma_restdata;
  300. u_short dma_ctrl;
  301. };
  302. #define tt_scsi_dma ((*(volatile struct TT_DMA *)TT_SCSI_DMA_BAS))
  303. /* TT SCSI Controller 5380 */
  304. #define TT_5380_BAS (0xffff8781)
  305. struct TT_5380 {
  306. u_char scsi_data;
  307. u_char char_dummy1;
  308. u_char scsi_icr;
  309. u_char char_dummy2;
  310. u_char scsi_mode;
  311. u_char char_dummy3;
  312. u_char scsi_tcr;
  313. u_char char_dummy4;
  314. u_char scsi_idstat;
  315. u_char char_dummy5;
  316. u_char scsi_dmastat;
  317. u_char char_dummy6;
  318. u_char scsi_targrcv;
  319. u_char char_dummy7;
  320. u_char scsi_inircv;
  321. };
  322. #define tt_scsi ((*(volatile struct TT_5380 *)TT_5380_BAS))
  323. #define tt_scsi_regp ((volatile char *)TT_5380_BAS)
  324. /* 
  325. ** Falcon DMA Sound Subsystem
  326.  */     
  327. #define MATRIX_BASE (0xffff8930)
  328. struct MATRIX
  329. {
  330.   u_short source;
  331.   u_short destination;
  332.   u_char external_frequency_divider;
  333.   u_char internal_frequency_divider;
  334. };
  335. #define matrix (*(volatile struct MATRIX *)MATRIX_BASE)
  336. #define CODEC_BASE (0xffff8936)
  337. struct CODEC
  338. {
  339.   u_char tracks;
  340.   u_char input_source;
  341. #define CODEC_SOURCE_ADC        1
  342. #define CODEC_SOURCE_MATRIX     2
  343.   u_char adc_source;
  344. #define ADC_SOURCE_RIGHT_PSG    1
  345. #define ADC_SOURCE_LEFT_PSG     2
  346.   u_char gain;
  347. #define CODEC_GAIN_RIGHT        0x0f
  348. #define CODEC_GAIN_LEFT         0xf0
  349.   u_char attenuation;
  350. #define CODEC_ATTENUATION_RIGHT 0x0f
  351. #define CODEC_ATTENUATION_LEFT  0xf0
  352.   u_char unused1;
  353.   u_char status;
  354. #define CODEC_OVERFLOW_RIGHT    1
  355. #define CODEC_OVERFLOW_LEFT     2
  356.   u_char unused2, unused3, unused4, unused5;
  357.   u_char gpio_directions;
  358. #define GPIO_IN                 0
  359. #define GPIO_OUT                1
  360.   u_char unused6;
  361.   u_char gpio_data;
  362. };
  363. #define codec (*(volatile struct CODEC *)CODEC_BASE)
  364. /*
  365. ** Falcon Blitter
  366. */
  367. #define BLT_BAS (0xffff8a00)
  368. struct BLITTER
  369.  {
  370.   u_short halftone[16];
  371.   u_short src_x_inc;
  372.   u_short src_y_inc;
  373.   u_long src_address;
  374.   u_short endmask1;  
  375.   u_short endmask2;  
  376.   u_short endmask3;
  377.   u_short dst_x_inc;
  378.   u_short dst_y_inc;
  379.   u_long dst_address;
  380.   u_short wd_per_line;
  381.   u_short ln_per_bb;
  382.   u_short hlf_op_reg;
  383.   u_short log_op_reg;
  384.   u_short lin_nm_reg;
  385.   u_short skew_reg;  
  386.  };
  387. # define blitter ((*(volatile struct BLITTER *)BLT_BAS))
  388. /*
  389. ** SCC Z8530
  390.  */
  391.  
  392. #define SCC_BAS (0xffff8c81)
  393. struct SCC
  394.  {
  395.   u_char cha_a_ctrl;
  396.   u_char char_dummy1;
  397.   u_char cha_a_data;
  398.   u_char char_dummy2;
  399.   u_char cha_b_ctrl;
  400.   u_char char_dummy3;
  401.   u_char cha_b_data;
  402.  };
  403. # define scc ((*(volatile struct SCC*)SCC_BAS))
  404. /* The ESCC (Z85230) in an Atari ST. The channels are reversed! */
  405. # define st_escc ((*(volatile struct SCC*)0xfffffa31))
  406. # define st_escc_dsr ((*(volatile char *)0xfffffa39))
  407. /* TT SCC DMA Controller (same chip as SCSI DMA) */
  408. #define TT_SCC_DMA_BAS (0xffff8c00)
  409. #define tt_scc_dma ((*(volatile struct TT_DMA *)TT_SCC_DMA_BAS))
  410. /*
  411. ** VIDEL Palette Register 
  412.  */
  413. #define FPL_BAS (0xffff9800)
  414. struct VIDEL_PALETTE
  415.  {
  416.   u_long reg[256];
  417.  };
  418. # define videl_palette ((*(volatile struct VIDEL_PALETTE*)FPL_BAS))
  419. /*
  420. ** Falcon DSP Host Interface
  421.  */
  422. #define DSP56K_HOST_INTERFACE_BASE (0xffffa200)
  423. struct DSP56K_HOST_INTERFACE {
  424.   u_char icr;
  425. #define DSP56K_ICR_RREQ 0x01
  426. #define DSP56K_ICR_TREQ 0x02
  427. #define DSP56K_ICR_HF0 0x08
  428. #define DSP56K_ICR_HF1 0x10
  429. #define DSP56K_ICR_HM0 0x20
  430. #define DSP56K_ICR_HM1 0x40
  431. #define DSP56K_ICR_INIT 0x80
  432.   
  433.   u_char cvr;
  434. #define DSP56K_CVR_HV_MASK 0x1f
  435. #define DSP56K_CVR_HC 0x80
  436.   u_char isr;
  437. #define DSP56K_ISR_RXDF 0x01
  438. #define DSP56K_ISR_TXDE 0x02
  439. #define DSP56K_ISR_TRDY 0x04
  440. #define DSP56K_ISR_HF2 0x08
  441. #define DSP56K_ISR_HF3 0x10
  442. #define DSP56K_ISR_DMA 0x40
  443. #define DSP56K_ISR_HREQ 0x80
  444.   
  445.   u_char ivr;
  446.   union {
  447.     u_char b[4];
  448.     u_short w[2];
  449.     u_long l;
  450.   } data;
  451. };
  452. #define dsp56k_host_interface ((*(volatile struct DSP56K_HOST_INTERFACE *)DSP56K_HOST_INTERFACE_BASE))
  453.  
  454. /*
  455. ** MFP 68901
  456.  */
  457.  
  458. #define MFP_BAS (0xfffffa01)
  459. struct MFP
  460.  {
  461.   u_char par_dt_reg;
  462.   u_char char_dummy1;
  463.   u_char active_edge;
  464.   u_char char_dummy2;
  465.   u_char data_dir;
  466.   u_char char_dummy3;
  467.   u_char int_en_a;
  468.   u_char char_dummy4;
  469.   u_char int_en_b;
  470.   u_char char_dummy5;
  471.   u_char int_pn_a;
  472.   u_char char_dummy6;
  473.   u_char int_pn_b;
  474.   u_char char_dummy7;
  475.   u_char int_sv_a;
  476.   u_char char_dummy8;
  477.   u_char int_sv_b;
  478.   u_char char_dummy9;
  479.   u_char int_mk_a;
  480.   u_char char_dummy10;
  481.   u_char int_mk_b;
  482.   u_char char_dummy11;
  483.   u_char vec_adr;
  484.   u_char char_dummy12;
  485.   u_char tim_ct_a;
  486.   u_char char_dummy13;
  487.   u_char tim_ct_b;
  488.   u_char char_dummy14;
  489.   u_char tim_ct_cd;
  490.   u_char char_dummy15;
  491.   u_char tim_dt_a;
  492.   u_char char_dummy16;
  493.   u_char tim_dt_b;
  494.   u_char char_dummy17;
  495.   u_char tim_dt_c;
  496.   u_char char_dummy18;
  497.   u_char tim_dt_d;
  498.   u_char char_dummy19;
  499.   u_char sync_char;
  500.   u_char char_dummy20;
  501.   u_char usart_ctr;
  502.   u_char char_dummy21;
  503.   u_char rcv_stat;
  504.   u_char char_dummy22;
  505.   u_char trn_stat;
  506.   u_char char_dummy23;
  507.   u_char usart_dta;
  508.  };
  509. # define mfp ((*(volatile struct MFP*)MFP_BAS))
  510. /* TT's second MFP */
  511. #define TT_MFP_BAS (0xfffffa81)
  512. # define tt_mfp ((*(volatile struct MFP*)TT_MFP_BAS))
  513. /* TT System Control Unit */
  514. #define TT_SCU_BAS (0xffff8e01)
  515. struct TT_SCU {
  516. u_char sys_mask;
  517. u_char char_dummy1;
  518. u_char sys_stat;
  519. u_char char_dummy2;
  520. u_char softint;
  521. u_char char_dummy3;
  522. u_char vmeint;
  523. u_char char_dummy4;
  524. u_char gp_reg1;
  525. u_char char_dummy5;
  526. u_char gp_reg2;
  527. u_char char_dummy6;
  528. u_char vme_mask;
  529. u_char char_dummy7;
  530. u_char vme_stat;
  531. };
  532. #define tt_scu ((*(volatile struct TT_SCU *)TT_SCU_BAS))
  533. /* TT real time clock */
  534. #define TT_RTC_BAS (0xffff8961)
  535. struct TT_RTC {
  536. u_char regsel;
  537. u_char dummy;
  538. u_char data;
  539. };
  540. #define tt_rtc ((*(volatile struct TT_RTC *)TT_RTC_BAS))
  541. /*
  542. ** ACIA 6850
  543.  */
  544. /* constants for the ACIA registers */
  545. /* baudrate selection and reset (Baudrate = clock/factor) */
  546. #define ACIA_DIV1  0
  547. #define ACIA_DIV16 1
  548. #define ACIA_DIV64 2
  549. #define ACIA_RESET 3
  550. /* character format */
  551. #define ACIA_D7E2S (0<<2) /* 7 data, even parity, 2 stop */
  552. #define ACIA_D7O2S (1<<2) /* 7 data, odd parity, 2 stop */
  553. #define ACIA_D7E1S (2<<2) /* 7 data, even parity, 1 stop */
  554. #define ACIA_D7O1S (3<<2) /* 7 data, odd parity, 1 stop */
  555. #define ACIA_D8N2S (4<<2) /* 8 data, no parity, 2 stop */
  556. #define ACIA_D8N1S (5<<2) /* 8 data, no parity, 1 stop */
  557. #define ACIA_D8E1S (6<<2) /* 8 data, even parity, 1 stop */
  558. #define ACIA_D8O1S (7<<2) /* 8 data, odd parity, 1 stop */
  559. /* transmit control */
  560. #define ACIA_RLTID (0<<5) /* RTS low, TxINT disabled */
  561. #define ACIA_RLTIE (1<<5) /* RTS low, TxINT enabled */
  562. #define ACIA_RHTID (2<<5) /* RTS high, TxINT disabled */
  563. #define ACIA_RLTIDSB (3<<5) /* RTS low, TxINT disabled, send break */
  564. /* receive control */
  565. #define ACIA_RID (0<<7) /* RxINT disabled */
  566. #define ACIA_RIE (1<<7) /* RxINT enabled */
  567. /* status fields of the ACIA */
  568. #define ACIA_RDRF 1 /* Receive Data Register Full */
  569. #define ACIA_TDRE (1<<1) /* Transmit Data Register Empty */
  570. #define ACIA_DCD  (1<<2) /* Data Carrier Detect */
  571. #define ACIA_CTS  (1<<3) /* Clear To Send */
  572. #define ACIA_FE   (1<<4) /* Framing Error */
  573. #define ACIA_OVRN (1<<5) /* Receiver Overrun */
  574. #define ACIA_PE   (1<<6) /* Parity Error */
  575. #define ACIA_IRQ  (1<<7) /* Interrupt Request */
  576. #define ACIA_BAS (0xfffffc00)
  577. struct ACIA 
  578.  {
  579.   u_char key_ctrl;
  580.   u_char char_dummy1;
  581.   u_char key_data;
  582.   u_char char_dummy2;
  583.   u_char mid_ctrl;
  584.   u_char char_dummy3;
  585.   u_char mid_data;
  586.  };
  587. # define acia ((*(volatile struct ACIA*)ACIA_BAS))
  588. #define TT_DMASND_BAS (0xffff8900)
  589. struct TT_DMASND {
  590. u_char int_ctrl; /* Falcon: Interrupt control */
  591. u_char ctrl;
  592. u_char pad2;
  593. u_char bas_hi;
  594. u_char pad3;
  595. u_char bas_mid;
  596. u_char pad4;
  597. u_char bas_low;
  598. u_char pad5;
  599. u_char addr_hi;
  600. u_char pad6;
  601. u_char addr_mid;
  602. u_char pad7;
  603. u_char addr_low;
  604. u_char pad8;
  605. u_char end_hi;
  606. u_char pad9;
  607. u_char end_mid;
  608. u_char pad10;
  609. u_char end_low;
  610. u_char pad11[12];
  611. u_char track_select; /* Falcon */
  612. u_char mode;
  613.   u_char pad12[14];
  614.   /* Falcon only: */
  615.   u_short cbar_src;
  616.   u_short cbar_dst;
  617.   u_char ext_div;
  618.   u_char int_div;
  619.   u_char rec_track_select;
  620.   u_char dac_src;
  621.   u_char adc_src;
  622.   u_char input_gain;
  623.   u_short output_atten;
  624. };
  625. # define tt_dmasnd ((*(volatile struct TT_DMASND *)TT_DMASND_BAS))
  626. #define DMASND_MFP_INT_REPLAY     0x01
  627. #define DMASND_MFP_INT_RECORD     0x02
  628. #define DMASND_TIMERA_INT_REPLAY  0x04
  629. #define DMASND_TIMERA_INT_RECORD  0x08
  630. #define DMASND_CTRL_OFF   0x00
  631. #define DMASND_CTRL_ON   0x01
  632. #define DMASND_CTRL_REPEAT   0x02
  633. #define DMASND_CTRL_RECORD_ON     0x10
  634. #define DMASND_CTRL_RECORD_OFF    0x00
  635. #define DMASND_CTRL_RECORD_REPEAT 0x20
  636. #define DMASND_CTRL_SELECT_REPLAY 0x00
  637. #define DMASND_CTRL_SELECT_RECORD 0x80
  638. #define DMASND_MODE_MONO   0x80
  639. #define DMASND_MODE_STEREO   0x00
  640. #define DMASND_MODE_8BIT   0x00
  641. #define DMASND_MODE_16BIT   0x40 /* Falcon only */
  642. #define DMASND_MODE_6KHZ   0x00 /* Falcon: mute */
  643. #define DMASND_MODE_12KHZ   0x01
  644. #define DMASND_MODE_25KHZ   0x02
  645. #define DMASND_MODE_50KHZ   0x03
  646.  
  647. #define DMASNDSetBase(bufstart)
  648.     do {
  649. tt_dmasnd.bas_hi  = (unsigned char)(((bufstart) & 0xff0000) >> 16); 
  650. tt_dmasnd.bas_mid = (unsigned char)(((bufstart) & 0x00ff00) >> 8); 
  651. tt_dmasnd.bas_low = (unsigned char) ((bufstart) & 0x0000ff); 
  652.     } while( 0 )
  653. #define DMASNDGetAdr() ((tt_dmasnd.addr_hi << 16) +
  654. (tt_dmasnd.addr_mid << 8) +
  655. (tt_dmasnd.addr_low))
  656. #define DMASNDSetEnd(bufend)
  657.     do {
  658. tt_dmasnd.end_hi  = (unsigned char)(((bufend) & 0xff0000) >> 16); 
  659. tt_dmasnd.end_mid = (unsigned char)(((bufend) & 0x00ff00) >> 8); 
  660. tt_dmasnd.end_low = (unsigned char) ((bufend) & 0x0000ff); 
  661.     } while( 0 )
  662. #define TT_MICROWIRE_BAS (0xffff8922)
  663. struct TT_MICROWIRE {
  664. u_short data;
  665. u_short mask;
  666. };
  667. # define tt_microwire ((*(volatile struct TT_MICROWIRE *)TT_MICROWIRE_BAS))
  668. #define MW_LM1992_ADDR 0x0400
  669. #define MW_LM1992_VOLUME(dB)
  670.     (0x0c0 | ((dB) < -80 ? 0 : (dB) > 0 ? 40 : (((dB) + 80) / 2)))
  671. #define MW_LM1992_BALLEFT(dB)
  672.     (0x140 | ((dB) < -40 ? 0 : (dB) > 0 ? 20 : (((dB) + 40) / 2)))
  673. #define MW_LM1992_BALRIGHT(dB)
  674.     (0x100 | ((dB) < -40 ? 0 : (dB) > 0 ? 20 : (((dB) + 40) / 2)))
  675. #define MW_LM1992_TREBLE(dB)
  676.     (0x080 | ((dB) < -12 ? 0 : (dB) > 12 ? 12 : (((dB) / 2) + 6)))
  677. #define MW_LM1992_BASS(dB)
  678.     (0x040 | ((dB) < -12 ? 0 : (dB) > 12 ? 12 : (((dB) / 2) + 6)))
  679. #define MW_LM1992_PSG_LOW 0x000
  680. #define MW_LM1992_PSG_HIGH 0x001
  681. #define MW_LM1992_PSG_OFF 0x002
  682. #define MSTE_RTC_BAS (0xfffffc21)
  683. struct MSTE_RTC {
  684. u_char sec_ones;
  685. u_char dummy1;
  686. u_char sec_tens;
  687. u_char dummy2;
  688. u_char min_ones;
  689. u_char dummy3;
  690. u_char min_tens;
  691. u_char dummy4;
  692. u_char hr_ones;
  693. u_char dummy5;
  694. u_char hr_tens;
  695. u_char dummy6;
  696. u_char weekday;
  697. u_char dummy7;
  698. u_char day_ones;
  699. u_char dummy8;
  700. u_char day_tens;
  701. u_char dummy9;
  702. u_char mon_ones;
  703. u_char dummy10;
  704. u_char mon_tens;
  705. u_char dummy11;
  706. u_char year_ones;
  707. u_char dummy12;
  708. u_char year_tens;
  709. u_char dummy13;
  710. u_char mode;
  711. u_char dummy14;
  712. u_char test;
  713. u_char dummy15;
  714. u_char reset;
  715. };
  716. #define mste_rtc ((*(volatile struct MSTE_RTC *)MSTE_RTC_BAS))
  717. #endif /* linux/atarihw.h */