Home | History | Annotate | Line # | Download | only in dev
mfp.c revision 1.10
      1  1.10    lukem /*	$NetBSD: mfp.c,v 1.10 2003/07/15 01:44:52 lukem Exp $	*/
      2   1.2  minoura 
      3   1.5  minoura /*-
      4   1.2  minoura  * Copyright (c) 1998 NetBSD Foundation, Inc.
      5   1.2  minoura  * All rights reserved.
      6   1.2  minoura  *
      7   1.2  minoura  * Redistribution and use in source and binary forms, with or without
      8   1.2  minoura  * modification, are permitted provided that the following conditions
      9   1.2  minoura  * are met:
     10   1.2  minoura  * 1. Redistributions of source code must retain the above copyright
     11   1.2  minoura  *    notice, this list of conditions and the following disclaimer.
     12   1.2  minoura  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.2  minoura  *    notice, this list of conditions and the following disclaimer in the
     14   1.2  minoura  *    documentation and/or other materials provided with the distribution.
     15   1.2  minoura  * 3. All advertising materials mentioning features or use of this software
     16   1.2  minoura  *    must display the following acknowledgement:
     17   1.5  minoura  *        This product includes software developed by the NetBSD
     18   1.5  minoura  *        Foundation, Inc. and its contributors.
     19   1.2  minoura  * 4. The name of the author may not be used to endorse or promote products
     20   1.2  minoura  *    derived from this software without specific prior written permission.
     21   1.2  minoura  *
     22   1.5  minoura  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     23   1.5  minoura  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     24   1.5  minoura  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     25   1.5  minoura  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     26   1.5  minoura  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     27   1.5  minoura  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     28   1.5  minoura  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     29   1.5  minoura  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     30   1.5  minoura  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     31   1.5  minoura  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     32   1.5  minoura  * POSSIBILITY OF SUCH DAMAGE.
     33   1.2  minoura  */
     34   1.2  minoura 
     35   1.2  minoura /*
     36   1.2  minoura  * MC68901 MFP (multi function periferal) driver for NetBSD/x68k
     37   1.2  minoura  */
     38   1.2  minoura 
     39   1.2  minoura /*
     40   1.2  minoura  * MFP is used as keyboard controler, which may be used before
     41   1.2  minoura  * ordinary initialization.
     42   1.2  minoura  */
     43  1.10    lukem 
     44  1.10    lukem #include <sys/cdefs.h>
     45  1.10    lukem __KERNEL_RCSID(0, "$NetBSD: mfp.c,v 1.10 2003/07/15 01:44:52 lukem Exp $");
     46   1.2  minoura 
     47   1.2  minoura #include <sys/param.h>
     48   1.2  minoura #include <sys/systm.h>
     49   1.2  minoura #include <sys/device.h>
     50   1.2  minoura #include <sys/malloc.h>
     51   1.2  minoura 
     52   1.2  minoura #include <machine/bus.h>
     53   1.2  minoura #include <machine/cpu.h>
     54   1.2  minoura 
     55   1.2  minoura #include <arch/x68k/dev/intiovar.h>
     56   1.2  minoura #include <arch/x68k/dev/mfp.h>
     57   1.2  minoura 
     58   1.2  minoura static int mfp_match __P((struct device *, struct cfdata *, void *));
     59   1.2  minoura static void mfp_attach __P((struct device *, struct device *, void *));
     60   1.2  minoura static void mfp_init __P((void));
     61   1.4  minoura static void mfp_calibrate_delay __P((void));
     62   1.2  minoura 
     63   1.8  thorpej CFATTACH_DECL(mfp, sizeof(struct mfp_softc),
     64   1.9  thorpej     mfp_match, mfp_attach, NULL, NULL);
     65   1.2  minoura 
     66   1.2  minoura static int
     67   1.2  minoura mfp_match(parent, cf, aux)
     68   1.2  minoura 	struct device *parent;
     69   1.2  minoura 	struct cfdata *cf;
     70   1.2  minoura 	void *aux;
     71   1.2  minoura {
     72   1.2  minoura 	struct intio_attach_args *ia = aux;
     73   1.2  minoura 
     74   1.2  minoura 	/* mfp0 */
     75   1.2  minoura 	if (strcmp (ia->ia_name, "mfp") != 0)
     76   1.2  minoura 		return 0;
     77   1.2  minoura 	if (cf->cf_unit != 0)
     78   1.2  minoura 		return (0);
     79   1.2  minoura 
     80   1.2  minoura 	if (ia->ia_addr == INTIOCF_ADDR_DEFAULT)
     81   1.2  minoura 		ia->ia_addr = MFP_ADDR;
     82   1.2  minoura 	if (ia->ia_intr == INTIOCF_INTR_DEFAULT)
     83   1.2  minoura 		ia->ia_addr = MFP_INTR;
     84   1.2  minoura 
     85   1.2  minoura 	/* fixed address */
     86   1.2  minoura 	if (ia->ia_addr != MFP_ADDR)
     87   1.2  minoura 		return (0);
     88   1.2  minoura 	if (ia->ia_intr != MFP_INTR)
     89   1.2  minoura 		return (0);
     90   1.2  minoura 
     91   1.2  minoura 	return (1);
     92   1.2  minoura }
     93   1.2  minoura 
     94   1.2  minoura 
     95   1.2  minoura static void
     96   1.2  minoura mfp_attach(parent, self, aux)
     97   1.2  minoura 	struct device *parent, *self;
     98   1.2  minoura 	void *aux;
     99   1.2  minoura {
    100   1.2  minoura 	struct mfp_softc *sc = (struct mfp_softc *)self;
    101   1.2  minoura 	struct intio_attach_args *ia = aux;
    102   1.2  minoura 
    103   1.2  minoura 	mfp_init ();
    104   1.2  minoura 
    105   1.2  minoura 	if (sc != NULL) {
    106   1.2  minoura 		/* realconfig */
    107   1.2  minoura 		int r;
    108   1.2  minoura 
    109   1.2  minoura 		printf ("\n");
    110   1.2  minoura 
    111   1.2  minoura 		sc->sc_bst = ia->ia_bst;
    112   1.2  minoura 		sc->sc_intr = ia->ia_intr;
    113   1.2  minoura 		ia->ia_size = 0x30;
    114   1.2  minoura 		r = intio_map_allocate_region (parent, ia, INTIO_MAP_ALLOCATE);
    115   1.2  minoura #ifdef DIAGNOSTIC
    116   1.2  minoura 		if (r)
    117   1.2  minoura 			panic ("IO map for MFP corruption??");
    118   1.2  minoura #endif
    119   1.2  minoura 		bus_space_map(ia->ia_bst, ia->ia_addr, 0x2000, 0, &sc->sc_bht);
    120   1.2  minoura 		config_found (self, "kbd", NULL);
    121   1.2  minoura 		config_found (self, "clock", NULL);
    122   1.2  minoura 		config_found (self, "pow", NULL);
    123   1.4  minoura 	} else {
    124   1.4  minoura 		/*
    125   1.4  minoura 		 * Called from config_console;
    126   1.4  minoura 		 * calibrate the DELAY loop counter
    127   1.4  minoura 		 */
    128   1.4  minoura 		mfp_calibrate_delay();
    129   1.2  minoura 	}
    130   1.2  minoura }
    131   1.2  minoura 
    132   1.2  minoura static void
    133   1.2  minoura mfp_init (void)
    134   1.2  minoura {
    135   1.2  minoura #if 0				/* done in x68k_init.c::intr_reset() */
    136   1.2  minoura 	mfp_set_vr(MFP_INTR);
    137   1.2  minoura 
    138   1.2  minoura 	/* stop all interrupts */
    139   1.2  minoura 	mfp_set_iera(0);
    140   1.2  minoura 	mfp_set_ierb(0);
    141   1.2  minoura #endif
    142   1.2  minoura 
    143   1.2  minoura 	/* Timer A settings */
    144   1.2  minoura 	mfp_set_tacr(MFP_TIMERA_RESET | MFP_TIMERA_STOP);
    145   1.2  minoura 
    146   1.2  minoura 	/* Timer B settings: used for USART clock */
    147   1.2  minoura 	mfp_set_tbcr(MFP_TIMERB_RESET | MFP_TIMERB_STOP);
    148   1.2  minoura 
    149   1.2  minoura 	/* Timer C/D settings */
    150   1.2  minoura 	mfp_set_tcdcr(0);
    151   1.4  minoura }
    152   1.4  minoura 
    153   1.4  minoura extern int delay_divisor;
    154   1.4  minoura void	_delay __P((u_int));
    155   1.4  minoura 
    156   1.4  minoura static void
    157   1.4  minoura mfp_calibrate_delay(void)
    158   1.4  minoura {
    159   1.4  minoura 	/*
    160   1.4  minoura 	 * Stolen from mvme68k.
    161   1.4  minoura 	 */
    162   1.4  minoura 	/*
    163   1.4  minoura 	 * X68k provides 4MHz clock (= 0.25usec) for MFP timer C.
    164   1.4  minoura 	 * 10000usec = 0.25usec * 200 * 200
    165   1.4  minoura 	 * Our slowest clock is 20MHz (?).  Its delay_divisor value
    166   1.4  minoura 	 * should be about 102.  Start from 140 here.
    167   1.4  minoura 	 */
    168   1.4  minoura 	for (delay_divisor = 140; delay_divisor > 0; delay_divisor--) {
    169   1.4  minoura 		mfp_set_tcdr(255-0);
    170   1.4  minoura 		mfp_set_tcdcr(0x70); /* 1/200 delay mode */
    171   1.4  minoura 		_delay(10000 << 8);
    172   1.4  minoura 		mfp_set_tcdcr(0); /* stop timer */
    173   1.4  minoura 		if ((255 - mfp_get_tcdr()) > 200)
    174   1.4  minoura 			break;	/* got it! */
    175   1.4  minoura 		/* retry! */
    176   1.4  minoura 	}
    177   1.2  minoura }
    178   1.2  minoura 
    179   1.2  minoura /*
    180   1.2  minoura  * MFP utility functions
    181   1.2  minoura  */
    182   1.2  minoura 
    183   1.2  minoura /*
    184   1.2  minoura  * wait for built-in display hsync.
    185   1.2  minoura  * should be called before writing to frame buffer.
    186   1.2  minoura  * might be called before realconfig.
    187   1.2  minoura  */
    188   1.2  minoura void
    189   1.2  minoura mfp_wait_for_hsync (void)
    190   1.2  minoura {
    191   1.2  minoura 	/* wait for CRT HSYNC */
    192   1.2  minoura 	while (mfp_get_gpip() & MFP_GPIP_HSYNC)
    193   1.2  minoura 		asm("nop");
    194   1.2  minoura 	while (!(mfp_get_gpip() & MFP_GPIP_HSYNC))
    195   1.2  minoura 		asm("nop");
    196   1.2  minoura }
    197   1.2  minoura 
    198   1.2  minoura /*
    199   1.2  minoura  * send COMMAND to the MFP USART.
    200   1.2  minoura  * USART is attached to the keyboard.
    201   1.2  minoura  * might be called before realconfig.
    202   1.2  minoura  */
    203   1.2  minoura int
    204   1.2  minoura mfp_send_usart (command)
    205   1.2  minoura 	int command;
    206   1.2  minoura {
    207   1.2  minoura 	while (!(mfp_get_tsr() & MFP_TSR_BE));
    208   1.2  minoura 	mfp_set_udr(command);
    209   1.2  minoura 
    210   1.2  minoura 	return 0;
    211   1.2  minoura }
    212   1.2  minoura 
    213   1.2  minoura int
    214   1.6      wiz mfp_receive_usart(void)
    215   1.2  minoura {
    216   1.2  minoura 	while (!(mfp_get_rsr() & MFP_RSR_BF))
    217   1.2  minoura 		asm("nop");
    218   1.2  minoura 	return mfp_get_udr();
    219   1.2  minoura }
    220