root/sys/arch/atari/dev/hdfd_intr.s
/*      $NetBSD: hdfd_intr.s,v 1.11 2023/01/06 10:28:28 tsutsui Exp $

/*
 * Copyright (c) 1996 Leo Weppelman.
 * All rights reserved.
 *
 * This code is derived from software contributed to Berkeley by
 * the Systems Programming Group of the University of Utah Computer
 * Science Department.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
 * SUCH DAMAGE.
 *
 */

#include "assym.h"
#include <machine/asm.h>
#define ASSEMBLER /* XXX */
#include <atari/dev/hdfdreg.h>

        .text
        .globl  _C_LABEL(fddmaaddr)
        .globl  _C_LABEL(fdio_addr),_C_LABEL(fddmalen)

/*
 * Entry point when there is no fifo. Handles the read/write
 * interrupts a bit faster because it *knows* that there is only
 * one character waiting.
 */
ENTRY_NOPROFILE(mfp_hdfd_nf)
        addql   #1,nintr                |  add another interrupt

        INTERRUPT_SAVEREG               |  Save scratch registers
        movl    _C_LABEL(fdio_addr),%a0 |  Get base of fdc registers
        movb    %a0@(fdsts),%d0         |  Get fdsts
        btst    #5,%d0                  |  DMA active?
        jeq     hdfdc_norm              |  No, normal interrupt
        tstl    _C_LABEL(fddmalen)      |  Bytecount zero?
        jeq     hdfdc_norm              |  Yes -> normal interrupt

        movl    _C_LABEL(fddmaaddr),%a1 |  a1 = dmabuffer
        btst    #6,%d0                  |  Read?
        jeq     hdfd_wrt_nf             |  No, write
hdfd_rd_nf:
        movb    %a0@(fddata),%a1@+      |  Get a byte
1:
        subql   #1, _C_LABEL(fddmalen)  |  decrement bytecount
        movl    %a1,_C_LABEL(fddmaaddr) |  update DMA pointer
|       addql   #1,_cnt+V_INTR          |  chalk up another interrupt
        INTERRUPT_RESTOREREG
        rte
hdfd_wrt_nf:
        movb    %a1@+,%a0@(fddata)      |  Push a byte
        jra     1b                      |  And get out...

/*
 * Systems *with* fifo's enter here.
 */
ENTRY_NOPROFILE(mfp_hdfd_fifo)
        addql   #1,_C_LABEL(intrcnt_user)+88    |  add another interrupt

        INTERRUPT_SAVEREG               |  Save scratch registers
        movl    _C_LABEL(fdio_addr),%a0 |  Get base of fdc registers
        movb    %a0@(fdsts),%d0         |  Get fdsts
        btst    #5,%d0                  |  DMA active?
        jeq     hdfdc_norm              |  No, normal interrupt
        movl    _C_LABEL(fddmaaddr),%a1 |  a1 = dmabuffer
        btst    #6,%d0                  |  Read?
        jeq     hdfd_wrt                |  No, write

hdfd_rd:
        tstl    _C_LABEL(fddmalen)      |  Bytecount zero?
        jeq     hdfdc1                  |  Yes -> done
        movb    %a0@(fddata),%a1@+      |  Get a byte
        subql   #1, _C_LABEL(fddmalen)  |  decrement bytecount
        movb    %a0@(fdsts),%d0         |  Get fdsts
        andb    #0xa0,%d0               |  both NE7_NDM and NE7_RQM active?
        cmpb    #0xa0,%d0
        jne     hdfdc1                  |  No, end of this batch
        jra     hdfd_rd

hdfd_wrt:
        tstl    _C_LABEL(fddmalen)      |  Bytecount zero?
        jeq     hdfdc1                  |  Yes -> done
        movb    %a1@+,%a0@(fddata)      |  Push a byte
        subql   #1, _C_LABEL(fddmalen)  |  decrement bytecount
        jra     hdfdc1
        movb    %a0@(fdsts),%d0         |  Get fdsts
        andb    #0xa0,%d0               |  both NE7_NDM and NE7_RQM active?
        cmpb    #0xa0,%d0
        jne     hdfdc1                  |  No, end of this batch
        jra     hdfd_wrt

hdfdc1:
        movl    %a1,_C_LABEL(fddmaaddr) |  update buffer pointer
        btst    #5,%d0                  |  DMA still active?
        jeq     hdfdc_norm              |  No -> take normal interrupt

        /*
         * Exit for read/write interrupts. Calling 'rei' this often
         * seems wrong....
         */
hdfdc_xit:
        CPUINFO_INCREMENT(CI_NINTR)
        INTERRUPT_RESTOREREG
        rte

        /*
         * No (more) data transfer interrupts. Do the normal
         * stuff.
         */
hdfdc_norm:
        tstl    nintr
        jeq     0f
        movl    nintr,%d0
        clrl    nintr
        addl    %d0, _C_LABEL(intrcnt_user)+88  |  add another interrupt
        CPUINFO_ADD(CI_NINTR, %d0)
0:      jbsr    _C_LABEL(fdc_ctrl_intr)         |  handle interrupt
        INTERRUPT_RESTOREREG                    |    and saved registers
        jra     _ASM_LABEL(rei)

        .data
nintr:
        .long   0