2  * atari_dma_emul.c -- TT SCSI DMA emulator for the Hades.
 
   4  * Copyright 1997 Wout Klaren <W.Klaren@inter.nl.net>
 
   6  * This file is subject to the terms and conditions of the GNU General Public
 
   7  * License.  See the file COPYING in the main directory of this archive
 
  10  * This code was written using the Hades TOS source code as a
 
  11  * reference. This source code can be found on the home page
 
  12  * of Medusa Computer Systems.
 
  14  * Version 0.1, 1997-09-24.
 
  16  * This code should be considered experimental. It has only been
 
  17  * tested on a Hades with a 68060. It might not work on a Hades
 
  18  * with a 68040. Make backups of your hard drives before using
 
  22 #include <linux/compiler.h>
 
  23 #include <asm/thread_info.h>
 
  24 #include <asm/uaccess.h>
 
  26 #define hades_dma_ctrl          (*(unsigned char *) 0xffff8717)
 
  27 #define hades_psdm_reg          (*(unsigned char *) 0xffff8741)
 
  29 #define TRANSFER_SIZE           16
 
  32         unsigned long  effaddr;  /* effective address */
 
  33         unsigned short ssw;      /* special status word */
 
  34         unsigned short wb3s;     /* write back 3 status */
 
  35         unsigned short wb2s;     /* write back 2 status */
 
  36         unsigned short wb1s;     /* write back 1 status */
 
  37         unsigned long  faddr;    /* fault address */
 
  38         unsigned long  wb3a;     /* write back 3 address */
 
  39         unsigned long  wb3d;     /* write back 3 data */
 
  40         unsigned long  wb2a;     /* write back 2 address */
 
  41         unsigned long  wb2d;     /* write back 2 data */
 
  42         unsigned long  wb1a;     /* write back 1 address */
 
  43         unsigned long  wb1dpd0;  /* write back 1 data/push data 0*/
 
  44         unsigned long  pd1;      /* push data 1*/
 
  45         unsigned long  pd2;      /* push data 2*/
 
  46         unsigned long  pd3;      /* push data 3*/
 
  49 static void writeback (unsigned short wbs, unsigned long wba,
 
  50                        unsigned long wbd, void *old_buserr)
 
  52         mm_segment_t fs = get_fs();
 
  53         static void *save_buserr;
 
  55         __asm__ __volatile__ ("movec.l  %%vbr,%%a0\n\t"
 
  56                               "move.l   %0,8(%%a0)\n\t"
 
  61         save_buserr = old_buserr;
 
  63         set_fs (MAKE_MM_SEG(wbs & WBTM_040));
 
  65         switch (wbs & WBSIZ_040) {
 
  67                 put_user (wbd & 0xff, (char *)wba);
 
  70                 put_user (wbd & 0xffff, (short *)wba);
 
  73                 put_user (wbd, (int *)wba);
 
  81         __asm__ __volatile__ ("cmp.l    %0,2(%%sp)\n\t"
 
  83                               "cmp.l    %1,2(%%sp)\n\t"
 
  84                               "bls.s    .restore_old\n"
 
  86                               "move.l   %2,-(%%sp)\n\t"
 
  89                               "move.l   %%a0,-(%%sp)\n\t"
 
  90                               "movec.l  %%vbr,%%a0\n\t"
 
  91                               "move.l   %2,8(%%a0)\n\t"
 
  92                               "move.l   (%%sp)+,%%a0\n\t"
 
  95                               : "i" (writeback), "i" (&&bus_error),
 
 100  * static inline void set_restdata_reg(unsigned char *cur_addr)
 
 102  * Set the rest data register if necessary.
 
 105 static inline void set_restdata_reg(unsigned char *cur_addr)
 
 107         if (((long) cur_addr & ~3) != 0)
 
 108                 tt_scsi_dma.dma_restdata =
 
 109                         *((unsigned long *) ((long) cur_addr & ~3));
 
 113  * void hades_dma_emulator(int irq, void *dummy)
 
 115  * This code emulates TT SCSI DMA on the Hades.
 
 117  * Note the following:
 
 119  * 1. When there is no byte available to read from the SCSI bus, or
 
 120  *    when a byte cannot yet bet written to the SCSI bus, a bus
 
 121  *    error occurs when reading or writing the pseudo DMA data
 
 122  *    register (hades_psdm_reg). We have to catch this bus error
 
 123  *    and try again to read or write the byte. If after several tries
 
 124  *    we still get a bus error, the interrupt handler is left. When
 
 125  *    the byte can be read or written, the interrupt handler is
 
 128  * 2. The SCSI interrupt must be disabled in this interrupt handler.
 
 130  * 3. If we set the EOP signal, the SCSI controller still expects one
 
 131  *    byte to be read or written. Therefore the last byte is transferred
 
 132  *    separately, after setting the EOP signal.
 
 134  * 4. When this function is left, the address pointer (start_addr) is
 
 135  *    converted to a physical address. Because it points one byte
 
 136  *    further than the last transferred byte, it can point outside the
 
 137  *    current page. If virt_to_phys() is called with this address we
 
 138  *    might get an access error. Therefore virt_to_phys() is called with
 
 139  *    start_addr - 1 if the count has reached zero. The result is
 
 140  *    increased with one.
 
 143 static irqreturn_t hades_dma_emulator(int irq, void *dummy)
 
 145         unsigned long dma_base;
 
 146         register unsigned long dma_cnt asm ("d3");
 
 147         static long save_buserr;
 
 148         register unsigned long save_sp asm ("d4");
 
 149         register int tries asm ("d5");
 
 150         register unsigned char *start_addr asm ("a3"), *end_addr asm ("a4");
 
 151         register unsigned char *eff_addr;
 
 152         register unsigned char *psdm_reg;
 
 155         atari_disable_irq(IRQ_TT_MFP_SCSI);
 
 158          * Read the dma address and count registers.
 
 161         dma_base = SCSI_DMA_READ_P(dma_addr);
 
 162         dma_cnt = SCSI_DMA_READ_P(dma_cnt);
 
 165          * Check if DMA is still enabled.
 
 168         if ((tt_scsi_dma.dma_ctrl & 2) == 0)
 
 170                 atari_enable_irq(IRQ_TT_MFP_SCSI);
 
 176                 printk(KERN_NOTICE "DMA emulation: count is zero.\n");
 
 177                 tt_scsi_dma.dma_ctrl &= 0xfd;   /* DMA ready. */
 
 178                 atari_enable_irq(IRQ_TT_MFP_SCSI);
 
 183          * Install new bus error routine.
 
 186         __asm__ __volatile__ ("movec.l  %%vbr,%%a0\n\t"
 
 187                               "move.l   8(%%a0),%0\n\t"
 
 188                               "move.l   %1,8(%%a0)\n\t"
 
 189                               : "=&r" (save_buserr)
 
 190                               : "r" (&&scsi_bus_error)
 
 193         hades_dma_ctrl &= 0xfc;         /* Bus error and EOP off. */
 
 196          * Save the stack pointer.
 
 199         __asm__ __volatile__ ("move.l   %%sp,%0\n\t"
 
 202         tries = 100;                    /* Maximum number of bus errors. */
 
 203         start_addr = phys_to_virt(dma_base);
 
 204         end_addr = start_addr + dma_cnt;
 
 208         rem = dma_cnt & (TRANSFER_SIZE - 1);
 
 209         dma_cnt &= ~(TRANSFER_SIZE - 1);
 
 210         psdm_reg = &hades_psdm_reg;
 
 212         if (tt_scsi_dma.dma_ctrl & 1)   /* Read or write? */
 
 215                  * SCSI write. Abort when count is zero.
 
 223                                 dma_cnt -= TRANSFER_SIZE;
 
 225                                 *psdm_reg = *start_addr++;
 
 227                                 *psdm_reg = *start_addr++;
 
 229                                 *psdm_reg = *start_addr++;
 
 231                                 *psdm_reg = *start_addr++;
 
 233                                 *psdm_reg = *start_addr++;
 
 235                                 *psdm_reg = *start_addr++;
 
 237                                 *psdm_reg = *start_addr++;
 
 239                                 *psdm_reg = *start_addr++;
 
 241                                 *psdm_reg = *start_addr++;
 
 243                                 *psdm_reg = *start_addr++;
 
 245                                 *psdm_reg = *start_addr++;
 
 247                                 *psdm_reg = *start_addr++;
 
 249                                 *psdm_reg = *start_addr++;
 
 251                                 *psdm_reg = *start_addr++;
 
 253                                 *psdm_reg = *start_addr++;
 
 255                                 *psdm_reg = *start_addr++;
 
 259                 hades_dma_ctrl |= 1;    /* Set EOP. */
 
 261                 *psdm_reg = *start_addr++;      /* Dummy byte. */
 
 262                 tt_scsi_dma.dma_ctrl &= 0xfd;   /* DMA ready. */
 
 267                  * SCSI read. Abort when count is zero.
 
 275                                 dma_cnt -= TRANSFER_SIZE;
 
 277                                 *start_addr++ = *psdm_reg;
 
 279                                 *start_addr++ = *psdm_reg;
 
 281                                 *start_addr++ = *psdm_reg;
 
 283                                 *start_addr++ = *psdm_reg;
 
 285                                 *start_addr++ = *psdm_reg;
 
 287                                 *start_addr++ = *psdm_reg;
 
 289                                 *start_addr++ = *psdm_reg;
 
 291                                 *start_addr++ = *psdm_reg;
 
 293                                 *start_addr++ = *psdm_reg;
 
 295                                 *start_addr++ = *psdm_reg;
 
 297                                 *start_addr++ = *psdm_reg;
 
 299                                 *start_addr++ = *psdm_reg;
 
 301                                 *start_addr++ = *psdm_reg;
 
 303                                 *start_addr++ = *psdm_reg;
 
 305                                 *start_addr++ = *psdm_reg;
 
 307                                 *start_addr++ = *psdm_reg;
 
 311                 hades_dma_ctrl |= 1;    /* Set EOP. */
 
 313                 *start_addr++ = *psdm_reg;
 
 314                 tt_scsi_dma.dma_ctrl &= 0xfd;   /* DMA ready. */
 
 316                 set_restdata_reg(start_addr);
 
 319         if (start_addr != end_addr)
 
 320                 printk(KERN_CRIT "DMA emulation: FATAL: Count is not zero at end of transfer.\n");
 
 322         dma_cnt = end_addr - start_addr;
 
 325         dma_base = (dma_cnt == 0) ? virt_to_phys(start_addr - 1) + 1 :  
 
 326                                     virt_to_phys(start_addr);
 
 328         SCSI_DMA_WRITE_P(dma_addr, dma_base);
 
 329         SCSI_DMA_WRITE_P(dma_cnt, dma_cnt);
 
 332          * Restore old bus error routine.
 
 335         __asm__ __volatile__ ("movec.l  %%vbr,%%a0\n\t"
 
 336                               "move.l   %0,8(%%a0)\n\t"
 
 341         atari_enable_irq(IRQ_TT_MFP_SCSI);
 
 347          * First check if the bus error is caused by our code.
 
 348          * If not, call the original handler.
 
 351         __asm__ __volatile__ ("cmp.l    %0,2(%%sp)\n\t"
 
 352                               "bcs.s    .old_vector\n\t"
 
 353                               "cmp.l    %1,2(%%sp)\n\t"
 
 354                               "bls.s    .scsi_buserr\n"
 
 356                               "move.l   %2,-(%%sp)\n\t"
 
 360                               : "i" (&&scsi_loop), "i" (&&scsi_end),
 
 366                  * Get effective address and restore the stack.
 
 369                 __asm__ __volatile__ ("move.l   8(%%sp),%0\n\t"
 
 376                 register struct m68040_frame *frame;
 
 378                 __asm__ __volatile__ ("lea      8(%%sp),%0\n\t"
 
 381                 if (tt_scsi_dma.dma_ctrl & 1)
 
 384                          * Bus error while writing.
 
 387                         if (frame->wb3s & WBV_040)
 
 389                                 if (frame->wb3a == (long) &hades_psdm_reg)
 
 392                                         writeback(frame->wb3s, frame->wb3a,
 
 393                                                   frame->wb3d, &&scsi_bus_error);
 
 396                         if (frame->wb2s & WBV_040)
 
 398                                 if (frame->wb2a == (long) &hades_psdm_reg)
 
 401                                         writeback(frame->wb2s, frame->wb2a,
 
 402                                                   frame->wb2d, &&scsi_bus_error);
 
 405                         if (frame->wb1s & WBV_040)
 
 407                                 if (frame->wb1a == (long) &hades_psdm_reg)
 
 414                          * Bus error while reading.
 
 417                         if (frame->wb3s & WBV_040)
 
 418                                 writeback(frame->wb3s, frame->wb3a,
 
 419                                           frame->wb3d, &&scsi_bus_error);
 
 422                 eff_addr = (unsigned char *) frame->faddr;
 
 424                 __asm__ __volatile__ ("move.l   %0,%%sp\n\t"
 
 429         dma_cnt = end_addr - start_addr;
 
 431         if (eff_addr == &hades_psdm_reg)
 
 434                  * Bus error occurred while reading the pseudo
 
 435                  * DMA register. Time out.
 
 442                         if ((tt_scsi_dma.dma_ctrl & 1) == 0)    /* Read or write? */
 
 443                                 set_restdata_reg(start_addr);
 
 446                                 printk(KERN_CRIT "DMA emulation: Fatal "
 
 447                                        "error while %s the last byte.\n",
 
 448                                        (tt_scsi_dma.dma_ctrl & 1)
 
 449                                        ? "writing" : "reading");
 
 459                  * Bus error during pseudo DMA transfer.
 
 460                  * Terminate the DMA transfer.
 
 463                 hades_dma_ctrl |= 3;    /* Set EOP and bus error. */
 
 464                 if ((tt_scsi_dma.dma_ctrl & 1) == 0)    /* Read or write? */
 
 465                         set_restdata_reg(start_addr);