memoryCall.h 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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. */