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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/m68k/atari/config.c
  3.  *
  4.  *  Copyright (C) 1994 Bjoern Brauel
  5.  *
  6.  *  5/2/94 Roman Hodek:
  7.  *    Added setting of time_adj to get a better clock.
  8.  *
  9.  *  5/14/94 Roman Hodek:
  10.  *    gettod() for TT 
  11.  *
  12.  *  5/15/94 Roman Hodek:
  13.  *    hard_reset_now() for Atari (and others?)
  14.  *
  15.  *  94/12/30 Andreas Schwab:
  16.  *    atari_sched_init fixed to get precise clock.
  17.  *
  18.  * This file is subject to the terms and conditions of the GNU General Public
  19.  * License.  See the file COPYING in the main directory of this archive
  20.  * for more details.
  21.  */
  22. /*
  23.  * Miscellaneous atari stuff
  24.  */
  25. #include <linux/config.h>
  26. #include <linux/types.h>
  27. #include <linux/mm.h>
  28. #include <linux/console.h>
  29. #include <linux/init.h>
  30. #include <linux/delay.h>
  31. #include <linux/ioport.h>
  32. #include <linux/vt_kern.h>
  33. #include <asm/bootinfo.h>
  34. #include <asm/setup.h>
  35. #include <asm/atarihw.h>
  36. #include <asm/atariints.h>
  37. #include <asm/atari_stram.h>
  38. #include <asm/system.h>
  39. #include <asm/keyboard.h>
  40. #include <asm/machdep.h>
  41. #include <asm/hwtest.h>
  42. #include <asm/io.h>
  43. u_long atari_mch_cookie;
  44. u_long atari_mch_type = 0;
  45. struct atari_hw_present atari_hw_present;
  46. u_long atari_switches = 0;
  47. int atari_dont_touch_floppy_select = 0;
  48. int atari_rtc_year_offset;
  49. /* local function prototypes */
  50. static void atari_reset( void );
  51. #ifdef CONFIG_ATARI_FLOPPY
  52. extern void atari_floppy_setup(char *, int *);
  53. #endif
  54. static void atari_get_model(char *model);
  55. static int atari_get_hardware_list(char *buffer);
  56. /* atari specific keyboard functions */
  57. extern int atari_keyb_init(void);
  58. extern int atari_kbdrate (struct kbd_repeat *);
  59. extern int atari_kbd_translate(unsigned char keycode, unsigned char *keycodep,
  60.        char raw_mode);
  61. extern void atari_kbd_leds (unsigned int);
  62. /* atari specific irq functions */
  63. extern void atari_init_IRQ (void);
  64. extern int atari_request_irq (unsigned int irq, void (*handler)(int, void *, struct pt_regs *),
  65.                               unsigned long flags, const char *devname, void *dev_id);
  66. extern void atari_free_irq (unsigned int irq, void *dev_id);
  67. extern void atari_enable_irq (unsigned int);
  68. extern void atari_disable_irq (unsigned int);
  69. extern int atari_get_irq_list (char *buf);
  70. extern void atari_mksound( unsigned int count, unsigned int ticks );
  71. #ifdef CONFIG_HEARTBEAT
  72. static void atari_heartbeat( int on );
  73. #endif
  74. /* atari specific timer functions (in time.c) */
  75. extern void atari_sched_init(void (*)(int, void *, struct pt_regs *));
  76. extern unsigned long atari_gettimeoffset (void);
  77. extern void atari_mste_gettod (int *, int *, int *, int *, int *, int *);
  78. extern void atari_tt_gettod (int *, int *, int *, int *, int *, int *);
  79. extern int atari_mste_hwclk (int, struct rtc_time *);
  80. extern int atari_tt_hwclk (int, struct rtc_time *);
  81. extern int atari_mste_set_clock_mmss (unsigned long);
  82. extern int atari_tt_set_clock_mmss (unsigned long);
  83. /* atari specific debug functions (in debug.c) */
  84. extern void atari_debug_init(void);
  85. #ifdef CONFIG_MAGIC_SYSRQ
  86. static char atari_sysrq_xlate[128] =
  87. "00331234567890-=177t" /* 0x00 - 0x0f */
  88. "qwertyuiop[]r00as" /* 0x10 - 0x1f */
  89. "dfghjkl;'`00\zxcv" /* 0x20 - 0x2f */
  90. "bnm,./000000 00201202203204205" /* 0x30 - 0x3f */
  91. "2062072102112120000000000-000000+00"/* 0x40 - 0x4f */
  92. "000000177000000000000000000000000" /* 0x50 - 0x5f */
  93. "000000()/*789456123" /* 0x60 - 0x6f */
  94. "0.r00000000000000000000000000"; /* 0x70 - 0x7f */
  95. #endif
  96. /* I've moved hwreg_present() and hwreg_present_bywrite() out into
  97.  * mm/hwtest.c, to avoid having multiple copies of the same routine
  98.  * in the kernel [I wanted them in hp300 and they were already used
  99.  * in the nubus code. NB: I don't have an Atari so this might (just
  100.  * conceivably) break something.
  101.  * I've preserved the #if 0 version of hwreg_present_bywrite() here
  102.  * for posterity.
  103.  *   -- Peter Maydell <pmaydell@chiark.greenend.org.uk>, 05/1998
  104.  */
  105.   
  106. #if 0
  107. static int __init
  108. hwreg_present_bywrite(volatile void *regp, unsigned char val)
  109. {
  110.     int ret;
  111.     long save_sp, save_vbr;
  112.     static long tmp_vectors[3] = { 0, 0, (long)&&after_test };
  113.     __asm__ __volatile__
  114. ( "movec %/vbr,%2nt" /* save vbr value            */
  115.                 "movec %4,%/vbrnt" /* set up temporary vectors  */
  116. "movel %/sp,%1nt" /* save sp                   */
  117. "moveq #0,%0nt" /* assume not present        */
  118. "moveb %5,%3@nt" /* write the hardware reg    */
  119. "cmpb %3@,%5nt" /* compare it                */
  120. "seq %0" /* comes here only if reg    */
  121.                                         /* is present                */
  122. : "=d&" (ret), "=r&" (save_sp), "=r&" (save_vbr)
  123. : "a" (regp), "r" (tmp_vectors), "d" (val)
  124.                 );
  125.   after_test:
  126.     __asm__ __volatile__
  127.       ( "movel %0,%/spnt" /* restore sp                */
  128.         "movec %1,%/vbr" /* restore vbr               */
  129.         : : "r" (save_sp), "r" (save_vbr) : "sp"
  130. );
  131.     return( ret );
  132. }
  133. #endif
  134. /* ++roman: This is a more elaborate test for an SCC chip, since the plain
  135.  * Medusa board generates DTACK at the SCC's standard addresses, but a SCC
  136.  * board in the Medusa is possible. Also, the addresses where the ST_ESCC
  137.  * resides generate DTACK without the chip, too.
  138.  * The method is to write values into the interrupt vector register, that
  139.  * should be readable without trouble (from channel A!).
  140.  */
  141. static int __init scc_test( volatile char *ctla )
  142. {
  143. if (!hwreg_present( ctla ))
  144. return( 0 );
  145. MFPDELAY();
  146. *ctla = 2; MFPDELAY();
  147. *ctla = 0x40; MFPDELAY();
  148. *ctla = 2; MFPDELAY();
  149. if (*ctla != 0x40) return( 0 );
  150. MFPDELAY();
  151. *ctla = 2; MFPDELAY();
  152. *ctla = 0x60; MFPDELAY();
  153. *ctla = 2; MFPDELAY();
  154. if (*ctla != 0x60) return( 0 );
  155. return( 1 );
  156. }
  157.     /*
  158.      *  Parse an Atari-specific record in the bootinfo
  159.      */
  160. int __init atari_parse_bootinfo(const struct bi_record *record)
  161. {
  162.     int unknown = 0;
  163.     const u_long *data = record->data;
  164.     switch (record->tag) {
  165. case BI_ATARI_MCH_COOKIE:
  166.     atari_mch_cookie = *data;
  167.     break;
  168. case BI_ATARI_MCH_TYPE:
  169.     atari_mch_type = *data;
  170.     break;
  171. default:
  172.     unknown = 1;
  173.     }
  174.     return(unknown);
  175. }
  176. /* Parse the Atari-specific switches= option. */
  177. void __init atari_switches_setup( const char *str, unsigned len )
  178. {
  179.     char switches[len+1];
  180.     char *p;
  181.     int ovsc_shift;
  182.     /* copy string to local array, strtok works destructively... */
  183.     strncpy( switches, str, len );
  184.     switches[len] = 0;
  185.     atari_switches = 0;
  186.     /* parse the options */
  187.     for( p = strtok( switches, "," ); p; p = strtok( NULL, "," ) ) {
  188. ovsc_shift = 0;
  189. if (strncmp( p, "ov_", 3 ) == 0) {
  190.     p += 3;
  191.     ovsc_shift = ATARI_SWITCH_OVSC_SHIFT;
  192. }
  193. if (strcmp( p, "ikbd" ) == 0) {
  194.     /* RTS line of IKBD ACIA */
  195.     atari_switches |= ATARI_SWITCH_IKBD << ovsc_shift;
  196. }
  197. else if (strcmp( p, "midi" ) == 0) {
  198.     /* RTS line of MIDI ACIA */
  199.     atari_switches |= ATARI_SWITCH_MIDI << ovsc_shift;
  200. }
  201. else if (strcmp( p, "snd6" ) == 0) {
  202.     atari_switches |= ATARI_SWITCH_SND6 << ovsc_shift;
  203. }
  204. else if (strcmp( p, "snd7" ) == 0) {
  205.     atari_switches |= ATARI_SWITCH_SND7 << ovsc_shift;
  206. }
  207.     }
  208. }
  209.     /*
  210.      *  Setup the Atari configuration info
  211.      */
  212. void __init config_atari(void)
  213. {
  214.     unsigned short tos_version;
  215.     memset(&atari_hw_present, 0, sizeof(atari_hw_present));
  216.     atari_debug_init();
  217.     ioport_resource.end  = 0xFFFFFFFF;  /* Change size of I/O space from 64KB
  218.                                            to 4GB. */
  219.     mach_sched_init      = atari_sched_init;
  220. #ifdef CONFIG_VT
  221.     mach_keyb_init       = atari_keyb_init;
  222.     mach_kbdrate         = atari_kbdrate;
  223.     mach_kbd_translate   = atari_kbd_translate;
  224.     mach_kbd_leds        = atari_kbd_leds;
  225.     kd_mksound  = atari_mksound;
  226. #endif
  227.     mach_init_IRQ        = atari_init_IRQ;
  228.     mach_request_irq     = atari_request_irq;
  229.     mach_free_irq        = atari_free_irq;
  230.     enable_irq           = atari_enable_irq;
  231.     disable_irq          = atari_disable_irq;
  232.     mach_get_model  = atari_get_model;
  233.     mach_get_hardware_list = atari_get_hardware_list;
  234.     mach_get_irq_list  = atari_get_irq_list;
  235.     mach_gettimeoffset   = atari_gettimeoffset;
  236.     mach_reset           = atari_reset;
  237. #ifdef CONFIG_ATARI_FLOPPY
  238.     mach_floppy_setup  = atari_floppy_setup;
  239. #endif
  240. #ifdef CONFIG_DUMMY_CONSOLE
  241.     conswitchp          = &dummy_con;
  242. #endif
  243.     mach_max_dma_address = 0xffffff;
  244. #ifdef CONFIG_MAGIC_SYSRQ
  245.     SYSRQ_KEY            = 0xff;
  246.     mach_sysrq_key = 98;          /* HELP */
  247.     mach_sysrq_shift_state = 8;   /* Alt */
  248.     mach_sysrq_shift_mask = 0xff; /* all modifiers except CapsLock */
  249.     mach_sysrq_xlate = atari_sysrq_xlate;
  250. #endif
  251. #ifdef CONFIG_HEARTBEAT
  252.     mach_heartbeat = atari_heartbeat;
  253. #endif
  254.     /* Set switches as requested by the user */
  255.     if (atari_switches & ATARI_SWITCH_IKBD)
  256. acia.key_ctrl = ACIA_DIV64 | ACIA_D8N1S | ACIA_RHTID;
  257.     if (atari_switches & ATARI_SWITCH_MIDI)
  258. acia.mid_ctrl = ACIA_DIV16 | ACIA_D8N1S | ACIA_RHTID;
  259.     if (atari_switches & (ATARI_SWITCH_SND6|ATARI_SWITCH_SND7)) {
  260. sound_ym.rd_data_reg_sel = 14;
  261. sound_ym.wd_data = sound_ym.rd_data_reg_sel |
  262.    ((atari_switches&ATARI_SWITCH_SND6) ? 0x40 : 0) |
  263.    ((atari_switches&ATARI_SWITCH_SND7) ? 0x80 : 0);
  264.     }
  265.     /* ++bjoern: 
  266.      * Determine hardware present
  267.      */
  268.     printk( "Atari hardware found: " );
  269.     if (MACH_IS_MEDUSA || MACH_IS_HADES) {
  270.         /* There's no Atari video hardware on the Medusa, but all the
  271.          * addresses below generate a DTACK so no bus error occurs! */
  272.     }
  273.     else if (hwreg_present( f030_xreg )) {
  274. ATARIHW_SET(VIDEL_SHIFTER);
  275.         printk( "VIDEL " );
  276.         /* This is a temporary hack: If there is Falcon video
  277.          * hardware, we assume that the ST-DMA serves SCSI instead of
  278.          * ACSI. In the future, there should be a better method for
  279.          * this...
  280.          */
  281. ATARIHW_SET(ST_SCSI);
  282.         printk( "STDMA-SCSI " );
  283.     }
  284.     else if (hwreg_present( tt_palette )) {
  285. ATARIHW_SET(TT_SHIFTER);
  286.         printk( "TT_SHIFTER " );
  287.     }
  288.     else if (hwreg_present( &shifter.bas_hi )) {
  289.         if (hwreg_present( &shifter.bas_lo ) &&
  290.     (shifter.bas_lo = 0x0aau, shifter.bas_lo == 0x0aau)) {
  291.     ATARIHW_SET(EXTD_SHIFTER);
  292.             printk( "EXTD_SHIFTER " );
  293.         }
  294.         else {
  295.     ATARIHW_SET(STND_SHIFTER);
  296.             printk( "STND_SHIFTER " );
  297.         }
  298.     }
  299.     if (hwreg_present( &mfp.par_dt_reg )) {
  300. ATARIHW_SET(ST_MFP);
  301.         printk( "ST_MFP " );
  302.     }
  303.     if (hwreg_present( &tt_mfp.par_dt_reg )) {
  304. ATARIHW_SET(TT_MFP);
  305.         printk( "TT_MFP " );
  306.     }
  307.     if (hwreg_present( &tt_scsi_dma.dma_addr_hi )) {
  308. ATARIHW_SET(SCSI_DMA);
  309.         printk( "TT_SCSI_DMA " );
  310.     }
  311.     if (!MACH_IS_HADES && hwreg_present( &st_dma.dma_hi )) {
  312. ATARIHW_SET(STND_DMA);
  313.         printk( "STND_DMA " );
  314.     }
  315.     if (MACH_IS_MEDUSA || /* The ST-DMA address registers aren't readable
  316.    * on all Medusas, so the test below may fail */
  317.         (hwreg_present( &st_dma.dma_vhi ) &&
  318.          (st_dma.dma_vhi = 0x55) && (st_dma.dma_hi = 0xaa) &&
  319.          st_dma.dma_vhi == 0x55 && st_dma.dma_hi == 0xaa &&
  320.          (st_dma.dma_vhi = 0xaa) && (st_dma.dma_hi = 0x55) &&
  321.          st_dma.dma_vhi == 0xaa && st_dma.dma_hi == 0x55)) {
  322. ATARIHW_SET(EXTD_DMA);
  323.         printk( "EXTD_DMA " );
  324.     }
  325.     if (hwreg_present( &tt_scsi.scsi_data )) {
  326. ATARIHW_SET(TT_SCSI);
  327.         printk( "TT_SCSI " );
  328.     }
  329.     if (hwreg_present( &sound_ym.rd_data_reg_sel )) {
  330. ATARIHW_SET(YM_2149);
  331.         printk( "YM2149 " );
  332.     }
  333.     if (!MACH_IS_MEDUSA && !MACH_IS_HADES &&
  334. hwreg_present( &tt_dmasnd.ctrl )) {
  335. ATARIHW_SET(PCM_8BIT);
  336.         printk( "PCM " );
  337.     }
  338.     if (!MACH_IS_HADES && hwreg_present( &codec.unused5 )) {
  339. ATARIHW_SET(CODEC);
  340.         printk( "CODEC " );
  341.     }
  342.     if (hwreg_present( &dsp56k_host_interface.icr )) {
  343. ATARIHW_SET(DSP56K);
  344.         printk( "DSP56K " );
  345.     }
  346.     if (hwreg_present( &tt_scc_dma.dma_ctrl ) &&
  347. #if 0
  348. /* This test sucks! Who knows some better? */
  349. (tt_scc_dma.dma_ctrl = 0x01, (tt_scc_dma.dma_ctrl & 1) == 1) &&
  350. (tt_scc_dma.dma_ctrl = 0x00, (tt_scc_dma.dma_ctrl & 1) == 0)
  351. #else
  352. !MACH_IS_MEDUSA && !MACH_IS_HADES
  353. #endif
  354. ) {
  355. ATARIHW_SET(SCC_DMA);
  356.         printk( "SCC_DMA " );
  357.     }
  358.     if (scc_test( &scc.cha_a_ctrl )) {
  359. ATARIHW_SET(SCC);
  360.         printk( "SCC " );
  361.     }
  362.     if (scc_test( &st_escc.cha_b_ctrl )) {
  363. ATARIHW_SET( ST_ESCC );
  364. printk( "ST_ESCC " );
  365.     }
  366.     if (MACH_IS_HADES)
  367.     {
  368.         ATARIHW_SET( VME );
  369.         printk( "VME " );
  370.     }
  371.     else if (hwreg_present( &tt_scu.sys_mask )) {
  372. ATARIHW_SET(SCU);
  373. /* Assume a VME bus if there's a SCU */
  374. ATARIHW_SET( VME );
  375.         printk( "VME SCU " );
  376.     }
  377.     if (hwreg_present( (void *)(0xffff9210) )) {
  378. ATARIHW_SET(ANALOG_JOY);
  379.         printk( "ANALOG_JOY " );
  380.     }
  381.     if (!MACH_IS_HADES && hwreg_present( blitter.halftone )) {
  382. ATARIHW_SET(BLITTER);
  383.         printk( "BLITTER " );
  384.     }
  385.     if (hwreg_present((void *)0xfff00039)) {
  386. ATARIHW_SET(IDE);
  387.         printk( "IDE " );
  388.     }
  389. #if 1 /* This maybe wrong */
  390.     if (!MACH_IS_MEDUSA && !MACH_IS_HADES &&
  391. hwreg_present( &tt_microwire.data ) &&
  392. hwreg_present( &tt_microwire.mask ) &&
  393. (tt_microwire.mask = 0x7ff,
  394.  udelay(1),
  395.  tt_microwire.data = MW_LM1992_PSG_HIGH | MW_LM1992_ADDR,
  396.  udelay(1),
  397.  tt_microwire.data != 0)) {
  398. ATARIHW_SET(MICROWIRE);
  399. while (tt_microwire.mask != 0x7ff) ;
  400.         printk( "MICROWIRE " );
  401.     }
  402. #endif
  403.     if (hwreg_present( &tt_rtc.regsel )) {
  404. ATARIHW_SET(TT_CLK);
  405.         printk( "TT_CLK " );
  406.         mach_gettod = atari_tt_gettod;
  407.         mach_hwclk = atari_tt_hwclk;
  408.         mach_set_clock_mmss = atari_tt_set_clock_mmss;
  409.     }
  410.     if (!MACH_IS_HADES && hwreg_present( &mste_rtc.sec_ones)) {
  411. ATARIHW_SET(MSTE_CLK);
  412.         printk( "MSTE_CLK ");
  413.         mach_gettod = atari_mste_gettod;
  414.         mach_hwclk = atari_mste_hwclk;
  415.         mach_set_clock_mmss = atari_mste_set_clock_mmss;
  416.     }
  417.     if (!MACH_IS_MEDUSA && !MACH_IS_HADES &&
  418. hwreg_present( &dma_wd.fdc_speed ) &&
  419. hwreg_write( &dma_wd.fdc_speed, 0 )) {
  420.     ATARIHW_SET(FDCSPEED);
  421.     printk( "FDC_SPEED ");
  422.     }
  423.     if (!MACH_IS_HADES && !ATARIHW_PRESENT(ST_SCSI)) {
  424. ATARIHW_SET(ACSI);
  425.         printk( "ACSI " );
  426.     }
  427.     printk("n");
  428.     if (CPU_IS_040_OR_060)
  429.         /* Now it seems to be safe to turn of the tt0 transparent
  430.          * translation (the one that must not be turned off in
  431.          * head.S...)
  432.          */
  433.         __asm__ volatile ("moveq #0,%/d0nt"
  434.                           ".chip 68040nt"
  435.   "movec %%d0,%%itt0nt"
  436.   "movec %%d0,%%dtt0nt"
  437.   ".chip 68k"
  438.   : /* no outputs */
  439.   : /* no inputs */
  440.   : "d0");
  441.     /* allocator for memory that must reside in st-ram */
  442.     atari_stram_init ();
  443.     /* Set up a mapping for the VMEbus address region:
  444.      *
  445.      * VME is either at phys. 0xfexxxxxx (TT) or 0xa00000..0xdfffff
  446.      * (MegaSTE) In both cases, the whole 16 MB chunk is mapped at
  447.      * 0xfe000000 virt., because this can be done with a single
  448.      * transparent translation. On the 68040, lots of often unused
  449.      * page tables would be needed otherwise. On a MegaSTE or similar,
  450.      * the highest byte is stripped off by hardware due to the 24 bit
  451.      * design of the bus.
  452.      */
  453.     if (CPU_IS_020_OR_030) {
  454.         unsigned long tt1_val;
  455.         tt1_val = 0xfe008543; /* Translate 0xfexxxxxx, enable, cache
  456.                                  * inhibit, read and write, FDC mask = 3,
  457.                                  * FDC val = 4 -> Supervisor only */
  458.         __asm__ __volatile__ ( ".chip 68030nt"
  459. "pmove %0@,%/tt1nt"
  460. ".chip 68k"
  461. : : "a" (&tt1_val) );
  462.     }
  463.     else {
  464.         __asm__ __volatile__
  465.             ( "movel %0,%/d0nt"
  466.       ".chip 68040nt"
  467.       "movec %%d0,%%itt1nt"
  468.       "movec %%d0,%%dtt1nt"
  469.       ".chip 68k"
  470.               :
  471.               : "g" (0xfe00a040) /* Translate 0xfexxxxxx, enable,
  472.                                          * supervisor only, non-cacheable/
  473.                                          * serialized, writable */
  474.               : "d0" );
  475.     }
  476.     /* Fetch tos version at Physical 2 */
  477.     /* We my not be able to access this address if the kernel is
  478.        loaded to st ram, since the first page is unmapped.  On the
  479.        Medusa this is always the case and there is nothing we can do
  480.        about this, so we just assume the smaller offset.  For the TT
  481.        we use the fact that in head.S we have set up a mapping
  482.        0xFFxxxxxx -> 0x00xxxxxx, so that the first 16MB is accessible
  483.        in the last 16MB of the address space. */
  484.     tos_version = (MACH_IS_MEDUSA || MACH_IS_HADES) ?
  485.   0xfff : *(unsigned short *)0xff000002;
  486.     atari_rtc_year_offset = (tos_version < 0x306) ? 70 : 68;
  487. }
  488. #ifdef CONFIG_HEARTBEAT
  489. static void atari_heartbeat( int on )
  490. {
  491.     unsigned char tmp;
  492.     unsigned long flags;
  493.     if (atari_dont_touch_floppy_select)
  494. return;
  495.     
  496.     save_flags(flags);
  497.     cli();
  498.     sound_ym.rd_data_reg_sel = 14; /* Select PSG Port A */
  499.     tmp = sound_ym.rd_data_reg_sel;
  500.     sound_ym.wd_data = on ? (tmp & ~0x02) : (tmp | 0x02);
  501.     restore_flags(flags);
  502. }
  503. #endif
  504. /* ++roman:
  505.  *
  506.  * This function does a reset on machines that lack the ability to
  507.  * assert the processor's _RESET signal somehow via hardware. It is
  508.  * based on the fact that you can find the initial SP and PC values
  509.  * after a reset at physical addresses 0 and 4. This works pretty well
  510.  * for Atari machines, since the lowest 8 bytes of physical memory are
  511.  * really ROM (mapped by hardware). For other 680x0 machines: don't
  512.  * know if it works...
  513.  *
  514.  * To get the values at addresses 0 and 4, the MMU better is turned
  515.  * off first. After that, we have to jump into physical address space
  516.  * (the PC before the pmove statement points to the virtual address of
  517.  * the code). Getting that physical address is not hard, but the code
  518.  * becomes a bit complex since I've tried to ensure that the jump
  519.  * statement after the pmove is in the cache already (otherwise the
  520.  * processor can't fetch it!). For that, the code first jumps to the
  521.  * jump statement with the (virtual) address of the pmove section in
  522.  * an address register . The jump statement is surely in the cache
  523.  * now. After that, that physical address of the reset code is loaded
  524.  * into the same address register, pmove is done and the same jump
  525.  * statements goes to the reset code. Since there are not many
  526.  * statements between the two jumps, I hope it stays in the cache.
  527.  *
  528.  * The C code makes heavy use of the GCC features that you can get the
  529.  * address of a C label. No hope to compile this with another compiler
  530.  * than GCC!
  531.  */
  532.   
  533. /* ++andreas: no need for complicated code, just depend on prefetch */
  534. static void atari_reset (void)
  535. {
  536.     long tc_val = 0;
  537.     long reset_addr;
  538.     /* On the Medusa, phys. 0x4 may contain garbage because it's no
  539.        ROM.  See above for explanation why we cannot use PTOV(4). */
  540.     reset_addr = MACH_IS_HADES ? 0x7fe00030 :
  541.                  MACH_IS_MEDUSA || MACH_IS_AB40 ? 0xe00030 :
  542.  *(unsigned long *) 0xff000004;
  543.     /* reset ACIA for switch off OverScan, if it's active */
  544.     if (atari_switches & ATARI_SWITCH_OVSC_IKBD)
  545. acia.key_ctrl = ACIA_RESET;
  546.     if (atari_switches & ATARI_SWITCH_OVSC_MIDI)
  547. acia.mid_ctrl = ACIA_RESET;
  548.     
  549.     /* processor independent: turn off interrupts and reset the VBR;
  550.      * the caches must be left enabled, else prefetching the final jump
  551.      * instruction doesn't work. */
  552.     cli();
  553.     __asm__ __volatile__
  554. ("moveq #0,%/d0nt"
  555.  "movec %/d0,%/vbr"
  556.  : : : "d0" );
  557.     
  558.     if (CPU_IS_040_OR_060) {
  559.         unsigned long jmp_addr040 = virt_to_phys(&&jmp_addr_label040);
  560. if (CPU_IS_060) {
  561.     /* 68060: clear PCR to turn off superscalar operation */
  562.     __asm__ __volatile__
  563. ("moveq #0,%/d0nt"
  564.  ".chip 68060nt"
  565.  "movec %%d0,%%pcrnt"
  566.  ".chip 68k"
  567.  : : : "d0" );
  568. }
  569.     
  570.         __asm__ __volatile__
  571.             ("movel    %0,%/d0nt"
  572.              "andl     #0xff000000,%/d0nt"
  573.              "orw      #0xe020,%/d0nt"   /* map 16 MB, enable, cacheable */
  574.              ".chip 68040nt"
  575.      "movec    %%d0,%%itt0nt"
  576.              "movec    %%d0,%%dtt0nt"
  577.      ".chip 68knt"
  578.              "jmp   %0@nt"
  579.              : /* no outputs */
  580.              : "a" (jmp_addr040)
  581.              : "d0" );
  582.       jmp_addr_label040:
  583.         __asm__ __volatile__
  584.           ("moveq #0,%/d0nt"
  585.    "nopnt"
  586.    ".chip 68040nt"
  587.    "cinva %%bcnt"
  588.    "nopnt"
  589.    "pflushant"
  590.    "nopnt"
  591.    "movec %%d0,%%tcnt"
  592.    "nopnt"
  593.    /* the following setup of transparent translations is needed on the
  594.     * Afterburner040 to successfully reboot. Other machines shouldn't
  595.     * care about a different tt regs setup, they also didn't care in
  596.     * the past that the regs weren't turned off. */
  597.    "movel #0xffc000,%%d0nt" /* whole insn space cacheable */
  598.    "movec %%d0,%%itt0nt"
  599.    "movec %%d0,%%itt1nt"
  600.    "orw   #0x40,%/d0nt" /* whole data space non-cacheable/ser. */
  601.    "movec %%d0,%%dtt0nt"
  602.    "movec %%d0,%%dtt1nt"
  603.    ".chip 68knt"
  604.            "jmp %0@"
  605.            : /* no outputs */
  606.            : "a" (reset_addr)
  607.            : "d0");
  608.     }
  609.     else
  610.         __asm__ __volatile__
  611.             ("pmove %0@,%/tcnt"
  612.              "jmp %1@"
  613.              : /* no outputs */
  614.              : "a" (&tc_val), "a" (reset_addr));
  615. }
  616. static void atari_get_model(char *model)
  617. {
  618.     strcpy(model, "Atari ");
  619.     switch (atari_mch_cookie >> 16) {
  620. case ATARI_MCH_ST:
  621.     if (ATARIHW_PRESENT(MSTE_CLK))
  622. strcat (model, "Mega ST");
  623.     else
  624. strcat (model, "ST");
  625.     break;
  626. case ATARI_MCH_STE:
  627.     if (MACH_IS_MSTE)
  628. strcat (model, "Mega STE");
  629.     else
  630. strcat (model, "STE");
  631.     break;
  632. case ATARI_MCH_TT:
  633.     if (MACH_IS_MEDUSA)
  634. /* Medusa has TT _MCH cookie */
  635. strcat (model, "Medusa");
  636.     else if (MACH_IS_HADES)
  637. strcat(model, "Hades");
  638.     else
  639. strcat (model, "TT");
  640.     break;
  641. case ATARI_MCH_FALCON:
  642.     strcat (model, "Falcon");
  643.     if (MACH_IS_AB40)
  644. strcat (model, " (with Afterburner040)");
  645.     break;
  646. default:
  647.     sprintf (model + strlen (model), "(unknown mach cookie 0x%lx)",
  648.      atari_mch_cookie);
  649.     break;
  650.     }
  651. }
  652. static int atari_get_hardware_list(char *buffer)
  653. {
  654.     int len = 0, i;
  655.     for (i = 0; i < m68k_num_memory; i++)
  656. len += sprintf (buffer+len, "t%3ld MB at 0x%08lx (%s)n",
  657. m68k_memory[i].size >> 20, m68k_memory[i].addr,
  658. (m68k_memory[i].addr & 0xff000000 ?
  659.  "alternate RAM" : "ST-RAM"));
  660. #define ATARIHW_ANNOUNCE(name,str)
  661.     if (ATARIHW_PRESENT(name))
  662. len += sprintf (buffer + len, "t%sn", str)
  663.     len += sprintf (buffer + len, "Detected hardware:n");
  664.     ATARIHW_ANNOUNCE(STND_SHIFTER, "ST Shifter");
  665.     ATARIHW_ANNOUNCE(EXTD_SHIFTER, "STe Shifter");
  666.     ATARIHW_ANNOUNCE(TT_SHIFTER, "TT Shifter");
  667.     ATARIHW_ANNOUNCE(VIDEL_SHIFTER, "Falcon Shifter");
  668.     ATARIHW_ANNOUNCE(YM_2149, "Programmable Sound Generator");
  669.     ATARIHW_ANNOUNCE(PCM_8BIT, "PCM 8 Bit Sound");
  670.     ATARIHW_ANNOUNCE(CODEC, "CODEC Sound");
  671.     ATARIHW_ANNOUNCE(TT_SCSI, "SCSI Controller NCR5380 (TT style)");
  672.     ATARIHW_ANNOUNCE(ST_SCSI, "SCSI Controller NCR5380 (Falcon style)");
  673.     ATARIHW_ANNOUNCE(ACSI, "ACSI Interface");
  674.     ATARIHW_ANNOUNCE(IDE, "IDE Interface");
  675.     ATARIHW_ANNOUNCE(FDCSPEED, "8/16 Mhz Switch for FDC");
  676.     ATARIHW_ANNOUNCE(ST_MFP, "Multi Function Peripheral MFP 68901");
  677.     ATARIHW_ANNOUNCE(TT_MFP, "Second Multi Function Peripheral MFP 68901");
  678.     ATARIHW_ANNOUNCE(SCC, "Serial Communications Controller SCC 8530");
  679.     ATARIHW_ANNOUNCE(ST_ESCC, "Extended Serial Communications Controller SCC 85230");
  680.     ATARIHW_ANNOUNCE(ANALOG_JOY, "Paddle Interface");
  681.     ATARIHW_ANNOUNCE(MICROWIRE, "MICROWIRE(tm) Interface");
  682.     ATARIHW_ANNOUNCE(STND_DMA, "DMA Controller (24 bit)");
  683.     ATARIHW_ANNOUNCE(EXTD_DMA, "DMA Controller (32 bit)");
  684.     ATARIHW_ANNOUNCE(SCSI_DMA, "DMA Controller for NCR5380");
  685.     ATARIHW_ANNOUNCE(SCC_DMA, "DMA Controller for SCC");
  686.     ATARIHW_ANNOUNCE(TT_CLK, "Clock Chip MC146818A");
  687.     ATARIHW_ANNOUNCE(MSTE_CLK, "Clock Chip RP5C15");
  688.     ATARIHW_ANNOUNCE(SCU, "System Control Unit");
  689.     ATARIHW_ANNOUNCE(BLITTER, "Blitter");
  690.     ATARIHW_ANNOUNCE(VME, "VME Bus");
  691.     ATARIHW_ANNOUNCE(DSP56K, "DSP56001 processor");
  692.     return(len);
  693. }
  694. /*
  695.  * Local variables:
  696.  *  c-indent-level: 4
  697.  *  tab-width: 8
  698.  * End:
  699.  */