Home | History | Annotate | Line # | Download | only in include
mfp.h revision 1.3.32.1
      1  1.3.32.1  nathanw /*	$NetBSD: mfp.h,v 1.3.32.1 2001/06/21 19:20:30 nathanw Exp $	*/
      2       1.1      leo 
      3       1.1      leo /*
      4       1.1      leo  * Copyright (c) 1995 Leo Weppelman.
      5       1.1      leo  * All rights reserved.
      6       1.1      leo  *
      7       1.1      leo  * Redistribution and use in source and binary forms, with or without
      8       1.1      leo  * modification, are permitted provided that the following conditions
      9       1.1      leo  * are met:
     10       1.1      leo  * 1. Redistributions of source code must retain the above copyright
     11       1.1      leo  *    notice, this list of conditions and the following disclaimer.
     12       1.1      leo  * 2. Redistributions in binary form must reproduce the above copyright
     13       1.1      leo  *    notice, this list of conditions and the following disclaimer in the
     14       1.1      leo  *    documentation and/or other materials provided with the distribution.
     15       1.1      leo  * 3. All advertising materials mentioning features or use of this software
     16       1.1      leo  *    must display the following acknowledgement:
     17       1.1      leo  *      This product includes software developed by Leo Weppelman.
     18       1.1      leo  * 4. The name of the author may not be used to endorse or promote products
     19       1.1      leo  *    derived from this software without specific prior written permission
     20       1.1      leo  *
     21       1.1      leo  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
     22       1.1      leo  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
     23       1.1      leo  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
     24       1.1      leo  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
     25       1.1      leo  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
     26       1.1      leo  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     27       1.1      leo  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     28       1.1      leo  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     29       1.1      leo  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
     30       1.1      leo  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     31       1.1      leo  */
     32       1.1      leo 
     33       1.1      leo #ifndef _MACHINE_MFP_H
     34       1.1      leo #define _MACHINE_MFP_H
     35  1.3.32.1  nathanw 
     36       1.1      leo /*
     37       1.1      leo  * Atari TT hardware: MFP1/MFP2
     38       1.1      leo  * Motorola 68901 Multi-Function Peripheral
     39       1.1      leo  */
     40       1.1      leo 
     41       1.1      leo #define	MFP	((struct mfp *)AD_MFP)
     42       1.1      leo #define	MFP2	((struct mfp *)AD_MFP2)
     43       1.1      leo 
     44  1.3.32.1  nathanw #ifdef _MILANHW_
     45  1.3.32.1  nathanw #define		__MR(n)			(3 + (4 * n))
     46  1.3.32.1  nathanw #endif
     47  1.3.32.1  nathanw #ifdef _ATARIHW_
     48  1.3.32.1  nathanw #define		__MR(n)			(1 + (2 * n))
     49  1.3.32.1  nathanw #endif
     50  1.3.32.1  nathanw 
     51       1.1      leo struct mfp {
     52  1.3.32.1  nathanw 	volatile u_char	mfb[__MR(24)-1];	/* Sparse	*/
     53       1.1      leo };
     54       1.1      leo 
     55  1.3.32.1  nathanw #define	mf_gpip	    mfb[__MR(0) ]    /* gen-purp I/O interrupt port	*/
     56  1.3.32.1  nathanw #define	mf_aer	    mfb[__MR(1) ]    /* active edge register		*/
     57  1.3.32.1  nathanw #define	mf_ddr	    mfb[__MR(2) ]    /* data direction register		*/
     58  1.3.32.1  nathanw #define	mf_iera	    mfb[__MR(3) ]    /* interrupt enable register A	*/
     59  1.3.32.1  nathanw #define	mf_ierb	    mfb[__MR(4) ]    /* interrupt enable register B	*/
     60  1.3.32.1  nathanw #define	mf_ipra	    mfb[__MR(5) ]    /* interrupt pending register A	*/
     61  1.3.32.1  nathanw #define	mf_iprb	    mfb[__MR(6) ]    /* interrupt pending register B	*/
     62  1.3.32.1  nathanw #define	mf_isra	    mfb[__MR(7) ]    /* interrupt in-service register A	*/
     63  1.3.32.1  nathanw #define	mf_isrb	    mfb[__MR(8) ]    /* interrupt in-service register B	*/
     64  1.3.32.1  nathanw #define	mf_imra	    mfb[__MR(9) ]    /* interrupt mask register A	*/
     65  1.3.32.1  nathanw #define	mf_imrb	    mfb[__MR(10)]    /* interrupt mask register B	*/
     66  1.3.32.1  nathanw #define	mf_vr	    mfb[__MR(11)]    /* vector register			*/
     67  1.3.32.1  nathanw #define	mf_tacr	    mfb[__MR(12)]    /* timer control register A	*/
     68  1.3.32.1  nathanw #define	mf_tbcr	    mfb[__MR(13)]    /* timer control register B	*/
     69  1.3.32.1  nathanw #define	mf_tcdcr    mfb[__MR(14)]    /* timer control register C+D	*/
     70  1.3.32.1  nathanw #define	mf_tadr	    mfb[__MR(15)]    /* timer data register A		*/
     71  1.3.32.1  nathanw #define	mf_tbdr	    mfb[__MR(16)]    /* timer data register B		*/
     72  1.3.32.1  nathanw #define	mf_tcdr	    mfb[__MR(17)]    /* timer data register C		*/
     73  1.3.32.1  nathanw #define	mf_tddr	    mfb[__MR(18)]    /* timer data register D		*/
     74  1.3.32.1  nathanw #define	mf_scr	    mfb[__MR(19)]    /* synchronous character register	*/
     75  1.3.32.1  nathanw #define	mf_ucr	    mfb[__MR(20)]    /* USART control register		*/
     76  1.3.32.1  nathanw #define	mf_rsr	    mfb[__MR(21)]    /* receiver status register	*/
     77  1.3.32.1  nathanw #define	mf_tsr	    mfb[__MR(22)]    /* transmitter status register	*/
     78  1.3.32.1  nathanw #define	mf_udr	    mfb[__MR(23)]    /* USART data register		*/
     79       1.1      leo 
     80       1.1      leo /* names of IO port bits: */
     81       1.1      leo #define	IO_PBSY		0x01	/* Parallel Busy			*/
     82       1.1      leo #define	IO_SDCD		0x02	/* Serial Data Carrier Detect		*/
     83       1.1      leo #define	IO_SCTS		0x04	/* Serial Clear To Send			*/
     84       1.3      leo #define	IO_ISA1		0x08	/* ISA slot1 [ Hades only ]		*/
     85       1.1      leo #define	IO_AINT		0x10	/* ACIA interrupt (KB or MIDI)		*/
     86       1.1      leo #define	IO_DINT		0x20	/* DMA interrupt (FDC or HDC)		*/
     87       1.1      leo #define	IO_SRI		0x40	/* Serial Ring Indicator		*/
     88       1.1      leo #define	IO_MONO		0x80	/* Monochrome Monitor Detect		*/
     89       1.3      leo #define	IO_ISA2		0x80	/*  ISA slot2 [ Hades only ]		*/
     90       1.1      leo 
     91       1.1      leo /* names of interrupts in register A: MFP1 */
     92       1.1      leo #define	IA_MONO		0x80	/* IO_MONO				*/
     93       1.3      leo #define	IA_ISA2		0x80	/* IO_ISA2				*/
     94       1.1      leo #define	IA_SRI		0x40	/* IO_SRI				*/
     95       1.1      leo #define	IA_TIMA		0x20	/* Timer A				*/
     96       1.1      leo #define	IA_RRDY		0x10	/* Serial Receiver Ready(=Full)		*/
     97       1.1      leo #define	IA_RERR		0x08	/* Serial Receiver Error		*/
     98       1.1      leo #define	IA_TRDY		0x04	/* Serial Transmitter Ready(=Empty)	*/
     99       1.1      leo #define	IA_TERR		0x02	/* Serial Transmitter Error		*/
    100       1.1      leo #define	IA_TIMB		0x01	/* Timer B				*/
    101       1.1      leo 
    102       1.1      leo /* names of interrupts in register A: MFP2 */
    103       1.1      leo #define	IA_SCSI		0x80	/* SCSI-controller			*/
    104       1.1      leo #define	IA_RTC		0x40	/* Real Time Clock			*/
    105       1.1      leo #define IA_TIMA2	0x20	/* Timer A				*/
    106       1.1      leo /*			0x10	*//* reserved				*/
    107       1.1      leo /*			0x08	*//* reserved				*/
    108       1.1      leo /*			0x04	*//* reserved				*/
    109       1.1      leo /*			0x02	*//* reserved				*/
    110       1.1      leo #define	IA_TIMB2	0x01	/* Timer B				*/
    111       1.1      leo 
    112       1.1      leo /* names of interrupts in register B: MFP1*/
    113       1.1      leo #define	IB_DINT		0x80	/* IO_DINT: from DMA devices		*/
    114       1.1      leo #define	IB_AINT		0x40	/* IO_AINT: from kbd or midi		*/
    115       1.1      leo #define	IB_TIMC		0x20	/* Timer C				*/
    116       1.1      leo #define	IB_TIMD		0x10	/* Timer D				*/
    117       1.3      leo #define	IB_ISA1		0x08	/* ISA1 interrupt [ Hades only ]	*/
    118       1.1      leo #define	IB_SCTS		0x04	/* IO_SCTS				*/
    119       1.1      leo #define	IB_SDCD		0x02	/* IO_SDCD				*/
    120       1.1      leo #define	IB_PBSY		0x01	/* IO_PBSY				*/
    121       1.1      leo 
    122       1.1      leo /* names of interrupts in register B: MFP2*/
    123       1.1      leo #define	IB_SCDM		0x80	/* SCSI-dma				*/
    124       1.1      leo #define	IB_DCHG		0x40	/* Diskette change			*/
    125       1.1      leo /*			0x20	*//* reserved				*/
    126       1.1      leo /*			0x10	*//* reserved				*/
    127       1.1      leo #define	IB_RISB		0x80	/* Serial Ring indicator SCC port B	*/
    128       1.1      leo #define	IB_DMSC		0x40	/* SCC-dma				*/
    129       1.1      leo #define IB_J602_3	0x02	/* Pin 3 J602				*/
    130       1.1      leo #define IB_J602_1	0x01	/* Pin 1 J602				*/
    131       1.1      leo 
    132       1.1      leo /* bits in VR: */
    133       1.1      leo #define	V_S		0x08	/* software end-of-interrupt mode	*/
    134       1.1      leo #define	V_V		0xF0	/* four high bits of vector		*/
    135       1.1      leo 
    136       1.1      leo /* bits in TCR: */
    137       1.1      leo /*			0x07	*//* divider				*/
    138       1.1      leo #define	T_STOP		0x00	/* don't count				*/
    139       1.1      leo #define	T_Q004		0x01	/* divide by 4				*/
    140       1.1      leo #define	T_Q010		0x02	/* divide by 10				*/
    141       1.1      leo #define	T_Q016		0x03	/* divide by 16				*/
    142       1.1      leo #define	T_Q050		0x04	/* divide by 50				*/
    143       1.1      leo #define	T_Q064		0x05	/* divide by 64				*/
    144       1.1      leo #define	T_Q100		0x06	/* divide by 100			*/
    145       1.1      leo #define	T_Q200		0x07	/* divide by 200			*/
    146       1.1      leo #define	T_EXTI		0x08	/* use extern impulse			*/
    147       1.1      leo #define	T_LOWO		0x10	/* force output low			*/
    148       1.1      leo 
    149       1.1      leo /* bits in UCR: */
    150       1.1      leo /*			0x01	*//* not used				*/
    151       1.1      leo #define	U_EVEN		0x02	/* even parity				*/
    152       1.1      leo #define	U_PAR		0x04	/* use parity				*/
    153       1.1      leo /*		0x18		*//* sync/async and stop bits		*/
    154       1.1      leo #define	U_SYNC		0x00	/* synchrone				*/
    155       1.1      leo #define	U_ST1		0x08	/* async, 1 stop bit			*/
    156       1.1      leo #define	U_ST1_5		0x10	/* async, 1.5 stop bit			*/
    157       1.1      leo #define	U_ST2		0x18	/* async, 2 stop bits			*/
    158       1.1      leo /*		0x60		*//* number of data bits		*/
    159       1.1      leo #define	U_D8		0x00	/* 8 data bits				*/
    160       1.1      leo #define	U_D7		0x20	/* 7 data bits				*/
    161       1.1      leo #define	U_D6		0x40	/* 6 data bits				*/
    162       1.1      leo #define	U_D5		0x60	/* 5 data bits				*/
    163       1.1      leo #define	U_Q16		0x80	/* divide clock by 16			*/
    164       1.1      leo 
    165       1.1      leo /* bits in RSR: */
    166       1.1      leo #define	RS_ENA		0x01	/* Receiver Enable			*/
    167       1.1      leo #define	RS_STRIP	0x02	/* Synchronous Strip Enable		*/
    168       1.1      leo #define	RS_CIP		0x04	/* Character in Progress		*/
    169       1.1      leo #define	RS_BREAK	0x08	/* Break Detected			*/
    170       1.1      leo #define	RS_FE		0x10	/* Frame Error				*/
    171       1.1      leo #define	RS_PE		0x20	/* Parity Error				*/
    172       1.1      leo #define	RS_OE		0x40	/* Overrun Error			*/
    173       1.1      leo #define	RS_FULL		0x80	/* Buffer Full				*/
    174       1.1      leo 
    175       1.1      leo /* bits in TSR: */
    176       1.1      leo #define	TS_ENA		0x01	/* Transmitter Enable					*/
    177       1.1      leo /*			0x06	*//* state of dead transmitter output	*/
    178       1.1      leo #define	TS_TRI		0x00	/* Quiet Output Tristate		*/
    179       1.1      leo #define	TS_LOW		0x02	/* Quiet Output Low			*/
    180       1.1      leo #define	TS_HIGH		0x04	/* Quiet Output High			*/
    181       1.1      leo #define	TS_BACK		0x06	/* Loop Back Mode			*/
    182       1.1      leo #define	TS_BREAK	0x08	/* Break Detected			*/
    183       1.1      leo #define	TS_EOT		0x10	/* End of Transmission			*/
    184       1.1      leo #define	TS_TURN		0x20	/* Auto Turnaround			*/
    185       1.1      leo #define	TS_UE		0x40	/* Underrun Error			*/
    186       1.1      leo #define	TS_EMPTY	0x80	/* Buffer Empty				*/
    187       1.1      leo #endif /* _MACHINE_MFP_H */
    188