2001-12-04 23:00:15 +03:00
|
|
|
/* $NetBSD: mca_machdep.c,v 1.14 2001/12/04 20:00:16 sommerfeld Exp $ */
|
2000-05-11 20:38:10 +04:00
|
|
|
|
2000-07-09 14:35:11 +04:00
|
|
|
/*-
|
2001-12-02 20:02:33 +03:00
|
|
|
* Copyright (c) 2000, 2001 The NetBSD Foundation, Inc.
|
2000-07-09 14:35:11 +04:00
|
|
|
* Copyright (c) 1996-1999 Scott D. Telford.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software contributed to The NetBSD Foundation
|
2001-12-02 20:02:33 +03:00
|
|
|
* by Scott Telford <s.telford@ed.ac.uk> and Jaromir Dolecek
|
|
|
|
* <jdolecek@NetBSD.org>.
|
2000-05-11 20:38:10 +04:00
|
|
|
*
|
|
|
|
* 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.
|
2000-07-09 14:35:11 +04:00
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the NetBSD
|
|
|
|
* Foundation, Inc. and its contributors.
|
|
|
|
* 4. Neither the name of The NetBSD Foundation nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived
|
|
|
|
* from this software without specific prior written permission.
|
2000-05-11 20:38:10 +04:00
|
|
|
*
|
2000-07-09 14:35:11 +04:00
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. 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 FOUNDATION 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.
|
2000-05-11 20:38:10 +04:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Machine-specific functions for MCA autoconfiguration.
|
|
|
|
*/
|
|
|
|
|
2001-11-15 10:03:28 +03:00
|
|
|
#include <sys/cdefs.h>
|
2001-12-04 23:00:15 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: mca_machdep.c,v 1.14 2001/12/04 20:00:16 sommerfeld Exp $");
|
2001-11-15 10:03:28 +03:00
|
|
|
|
2000-05-11 20:38:10 +04:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/device.h>
|
2001-11-24 01:24:36 +03:00
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/systm.h>
|
2000-05-11 20:38:10 +04:00
|
|
|
#include <sys/syslog.h>
|
2001-11-24 01:24:36 +03:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/kernel.h>
|
2000-05-11 20:38:10 +04:00
|
|
|
|
|
|
|
#include <machine/bioscall.h>
|
|
|
|
#include <machine/psl.h>
|
|
|
|
|
|
|
|
#define _I386_BUS_DMA_PRIVATE
|
|
|
|
#include <machine/bus.h>
|
|
|
|
|
|
|
|
#include <i386/isa/icu.h>
|
|
|
|
#include <dev/isa/isavar.h>
|
|
|
|
#include <dev/isa/isareg.h>
|
|
|
|
#include <dev/mca/mcavar.h>
|
|
|
|
#include <dev/mca/mcareg.h>
|
|
|
|
|
|
|
|
#include "isa.h"
|
|
|
|
#include "opt_mcaverbose.h"
|
|
|
|
|
2001-05-02 17:18:34 +04:00
|
|
|
/* System Configuration Block - this info is returned by the BIOS call */
|
|
|
|
struct bios_config {
|
|
|
|
u_int16_t count;
|
|
|
|
u_int8_t model;
|
|
|
|
u_int8_t submodel;
|
|
|
|
u_int8_t bios_rev;
|
|
|
|
u_int8_t feature1;
|
|
|
|
#define FEATURE_MCAISA 0x01 /* Machine contains both MCA and ISA bus */
|
|
|
|
#define FEATURE_MCABUS 0x02 /* Machine has MCA bus instead of ISA */
|
|
|
|
#define FEATURE_EBDA 0x04 /* Extended BIOS data area allocated */
|
|
|
|
#define FEATURE_WAITEV 0x08 /* Wait for external event is supported */
|
|
|
|
#define FEATURE_KBDINT 0x10 /* Keyboard intercept called by Int 09h */
|
|
|
|
#define FEATURE_RTC 0x20 /* Real-time clock present */
|
|
|
|
#define FEATURE_IC2 0x40 /* Second interrupt chip present */
|
|
|
|
#define FEATURE_DMA3 0x80 /* DMA channel 3 used by hard disk BIOS */
|
2001-11-24 01:24:36 +03:00
|
|
|
u_int8_t feature2;
|
|
|
|
u_int8_t pad[9];
|
2001-05-02 17:18:34 +04:00
|
|
|
} __attribute__ ((packed));
|
|
|
|
|
2001-11-24 01:24:36 +03:00
|
|
|
/*
|
|
|
|
* Used to encode DMA channel into ISA DMA cookie. We use upper 4 bits of
|
|
|
|
* ISA DMA cookie id_flags, it's unused.
|
|
|
|
*/
|
|
|
|
struct i386_isa_dma_cookie {
|
|
|
|
int id_flags;
|
|
|
|
/* We don't care about rest */
|
|
|
|
};
|
|
|
|
|
|
|
|
/* ISA DMA stuff - see i386/isa/isa_machdep.c */
|
|
|
|
int _isa_bus_dmamap_create __P((bus_dma_tag_t, bus_size_t, int,
|
|
|
|
bus_size_t, bus_size_t, int, bus_dmamap_t *));
|
|
|
|
void _isa_bus_dmamap_destroy __P((bus_dma_tag_t, bus_dmamap_t));
|
|
|
|
int _isa_bus_dmamap_load __P((bus_dma_tag_t, bus_dmamap_t, void *,
|
|
|
|
bus_size_t, struct proc *, int));
|
|
|
|
void _isa_bus_dmamap_unload __P((bus_dma_tag_t, bus_dmamap_t));
|
|
|
|
void _isa_bus_dmamap_sync __P((bus_dma_tag_t, bus_dmamap_t,
|
|
|
|
bus_addr_t, bus_size_t, int));
|
|
|
|
|
|
|
|
int _isa_bus_dmamem_alloc __P((bus_dma_tag_t, bus_size_t, bus_size_t,
|
|
|
|
bus_size_t, bus_dma_segment_t *, int, int *, int));
|
|
|
|
|
|
|
|
static void _mca_bus_dmamap_sync __P((bus_dma_tag_t, bus_dmamap_t,
|
|
|
|
bus_addr_t, bus_size_t, int));
|
|
|
|
static int _mca_bus_dmamap_load_mbuf __P((bus_dma_tag_t, bus_dmamap_t,
|
|
|
|
struct mbuf *, int));
|
|
|
|
static int _mca_bus_dmamap_load_uio __P((bus_dma_tag_t, bus_dmamap_t,
|
|
|
|
struct uio *, int));
|
|
|
|
static int _mca_bus_dmamap_load_raw __P((bus_dma_tag_t, bus_dmamap_t,
|
|
|
|
bus_dma_segment_t *, int, bus_size_t, int));
|
|
|
|
|
|
|
|
/*
|
|
|
|
* For now, we use MCA DMA to 0-16M always. Some IBM PS/2 have 32bit MCA bus,
|
|
|
|
* but majority of them have 24bit only.
|
|
|
|
*/
|
|
|
|
#define MCA_DMA_BOUNCE_THRESHOLD (16 * 1024 * 1024)
|
2001-05-02 17:18:34 +04:00
|
|
|
|
2000-05-11 20:38:10 +04:00
|
|
|
struct i386_bus_dma_tag mca_bus_dma_tag = {
|
2001-11-24 01:24:36 +03:00
|
|
|
MCA_DMA_BOUNCE_THRESHOLD, /* _bounce_thresh */
|
|
|
|
_isa_bus_dmamap_create,
|
|
|
|
_isa_bus_dmamap_destroy,
|
|
|
|
_isa_bus_dmamap_load,
|
|
|
|
_mca_bus_dmamap_load_mbuf,
|
|
|
|
_mca_bus_dmamap_load_uio,
|
|
|
|
_mca_bus_dmamap_load_raw,
|
|
|
|
_isa_bus_dmamap_unload,
|
|
|
|
_mca_bus_dmamap_sync,
|
|
|
|
_isa_bus_dmamem_alloc,
|
2000-05-11 20:38:10 +04:00
|
|
|
_bus_dmamem_free,
|
|
|
|
_bus_dmamem_map,
|
|
|
|
_bus_dmamem_unmap,
|
|
|
|
_bus_dmamem_mmap,
|
|
|
|
};
|
|
|
|
|
2001-11-24 01:24:36 +03:00
|
|
|
/* Updated in mca_busprobe() if appropriate. */
|
|
|
|
int MCA_system = 0;
|
|
|
|
|
|
|
|
/* Used to kick MCA DMA controller */
|
|
|
|
#define DMA_CMD 0x18 /* command the controller */
|
|
|
|
#define DMA_EXEC 0x1A /* tell controller how to do things */
|
|
|
|
static bus_space_handle_t dmaiot, dmacmdh, dmaexech;
|
2000-05-11 20:38:10 +04:00
|
|
|
|
2001-11-24 01:24:36 +03:00
|
|
|
/*
|
|
|
|
* MCA DMA controller commands. The exact sense of individual bits
|
|
|
|
* are from Tymm Twillman <tymm@computer.org>, who worked on Linux MCA DMA
|
|
|
|
* support.
|
|
|
|
*/
|
|
|
|
#define DMACMD_SET_IO 0x00 /* set port (16bit) for i/o transfer */
|
|
|
|
#define DMACMD_SET_ADDR 0x20 /* set addr (24bit) for i/o transfer */
|
|
|
|
#define DMACMD_GET_ADDR 0x30 /* get addr (24bit) for i/o transfer */
|
|
|
|
#define DMACMD_SET_CNT 0x40 /* set memory size for DMA (16b) */
|
|
|
|
#define DMACMD_GET_CNT 0x50 /* get count of remaining bytes in DMA*/
|
|
|
|
#define DMACMD_GET_STATUS 0x60 /* ?? */
|
|
|
|
#define DMACMD_SET_MODE 0x70 /* set DMA mode */
|
|
|
|
# define DMACMD_MODE_XFER 0x04 /* do transfer, read by default */
|
|
|
|
# define DMACMD_MODE_READ 0x08 /* read transfer */
|
|
|
|
# define DMACMD_MODE_WRITE 0x00 /* write transfer */
|
|
|
|
# define DMACMD_MODE_IOPORT 0x01 /* DMA from/to IO register */
|
|
|
|
# define DMACMD_MODE_16BIT 0x40 /* 16bit transfers (default 8bit) */
|
|
|
|
#define DMACMD_SET_ARBUS 0x80 /* ?? */
|
|
|
|
#define DMACMD_MASK 0x90 /* command mask */
|
|
|
|
#define DMACMD_RESET_MASK 0xA0 /* reset */
|
|
|
|
#define DMACMD_MASTER_CLEAR 0xD0 /* ?? */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Map the MCA DMA controller registers.
|
|
|
|
*/
|
2000-05-11 20:38:10 +04:00
|
|
|
void
|
|
|
|
mca_attach_hook(parent, self, mba)
|
|
|
|
struct device *parent, *self;
|
|
|
|
struct mcabus_attach_args *mba;
|
|
|
|
{
|
2001-11-24 01:24:36 +03:00
|
|
|
dmaiot = mba->mba_iot;
|
|
|
|
|
|
|
|
if (bus_space_map(dmaiot, DMA_CMD, 1, 0, &dmacmdh)
|
|
|
|
|| bus_space_map(dmaiot, DMA_EXEC, 1, 0, &dmaexech))
|
|
|
|
panic("%s: couldn't map DMA registers",
|
|
|
|
mba->mba_busname);
|
2000-05-11 20:38:10 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read value of MCA POS register "reg" in slot "slot".
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
mca_conf_read(mc, slot, reg)
|
|
|
|
mca_chipset_tag_t mc;
|
|
|
|
int slot, reg;
|
|
|
|
{
|
|
|
|
int data;
|
|
|
|
|
|
|
|
slot &= 7; /* slot must be in range 0-7 */
|
|
|
|
outb(MCA_MB_SETUP_REG, 0xff); /* ensure m/board setup is disabled */
|
|
|
|
outb(MCA_ADAP_SETUP_REG, slot | MCA_ADAP_SET);
|
|
|
|
data = inb(MCA_POS_REG(reg));
|
|
|
|
outb(MCA_ADAP_SETUP_REG, 0);
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write "data" to MCA POS register "reg" in slot "slot".
|
|
|
|
*/
|
|
|
|
|
|
|
|
void
|
|
|
|
mca_conf_write(mc, slot, reg, data)
|
|
|
|
mca_chipset_tag_t mc;
|
|
|
|
int slot, reg, data;
|
|
|
|
{
|
|
|
|
slot&=7; /* slot must be in range 0-7 */
|
|
|
|
outb(MCA_MB_SETUP_REG, 0xff); /* ensure m/board setup is disabled */
|
|
|
|
outb(MCA_ADAP_SETUP_REG, slot | MCA_ADAP_SET);
|
|
|
|
outb(MCA_POS_REG(reg), data);
|
|
|
|
outb(MCA_ADAP_SETUP_REG, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
#if NISA <= 0
|
|
|
|
#error mca_intr_(dis)establish: needs ISA to be configured into kernel
|
|
|
|
#endif
|
|
|
|
|
2000-08-13 14:38:38 +04:00
|
|
|
#if 0
|
2000-06-04 23:14:14 +04:00
|
|
|
const struct evcnt *
|
|
|
|
mca_intr_establish(mca_chipset_tag_t mc, mca_intr_handle_t ih)
|
|
|
|
{
|
|
|
|
|
|
|
|
/* XXX for now, no evcnt parent reported */
|
|
|
|
return NULL;
|
|
|
|
}
|
2000-08-13 14:38:38 +04:00
|
|
|
#endif
|
2000-06-04 23:14:14 +04:00
|
|
|
|
2000-05-11 20:38:10 +04:00
|
|
|
void *
|
|
|
|
mca_intr_establish(mc, ih, level, func, arg)
|
|
|
|
mca_chipset_tag_t mc;
|
|
|
|
mca_intr_handle_t ih;
|
|
|
|
int level, (*func) __P((void *));
|
|
|
|
void *arg;
|
|
|
|
{
|
|
|
|
if (ih == 0 || ih >= ICU_LEN || ih == 2)
|
|
|
|
panic("mca_intr_establish: bogus handle 0x%x\n", ih);
|
|
|
|
|
|
|
|
/* MCA interrupts are always level-triggered */
|
|
|
|
return isa_intr_establish(NULL, ih, IST_LEVEL, level, func, arg);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
mca_intr_disestablish(mc, cookie)
|
|
|
|
mca_chipset_tag_t mc;
|
|
|
|
void *cookie;
|
|
|
|
{
|
|
|
|
return isa_intr_disestablish(NULL, cookie);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Handle a NMI.
|
|
|
|
* return true to panic system, false to ignore.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
mca_nmi()
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* PS/2 MCA devices can generate NMIs - we can find out which
|
|
|
|
* slot generated it from the POS registers.
|
|
|
|
*/
|
|
|
|
|
|
|
|
int slot, mcanmi=0;
|
|
|
|
|
|
|
|
/* if there is no MCA bus, call isa_nmi() */
|
|
|
|
if (!MCA_system)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
/* ensure motherboard setup is disabled */
|
|
|
|
outb(MCA_MB_SETUP_REG, 0xff);
|
|
|
|
|
|
|
|
/* find if an MCA slot has the CHCK bit asserted (low) in POS 5 */
|
2001-11-24 01:24:36 +03:00
|
|
|
for(slot=0; slot<MCA_MAX_SLOTS; slot++) {
|
2000-05-11 20:38:10 +04:00
|
|
|
outb(MCA_ADAP_SETUP_REG, slot | MCA_ADAP_SET);
|
2001-11-24 01:24:36 +03:00
|
|
|
if ((inb(MCA_POS_REG(5)) & MCA_POS5_CHCK) == 0) {
|
2000-05-11 20:38:10 +04:00
|
|
|
mcanmi = 1;
|
|
|
|
/* find if CHCK status is available in POS 6/7 */
|
|
|
|
if((inb(MCA_POS_REG(5)) & MCA_POS5_CHCK_STAT) == 0)
|
|
|
|
log(LOG_CRIT, "MCA NMI: slot %d, POS6=0x%02x, POS7=0x%02x\n",
|
|
|
|
slot+1, inb(MCA_POS_REG(6)),
|
|
|
|
inb(MCA_POS_REG(7)));
|
|
|
|
else
|
|
|
|
log(LOG_CRIT, "MCA NMI: slot %d\n", slot+1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
outb(MCA_ADAP_SETUP_REG, 0);
|
|
|
|
|
|
|
|
out:
|
|
|
|
if (!mcanmi) {
|
|
|
|
/* no CHCK bits asserted, assume ISA NMI */
|
|
|
|
return (isa_nmi());
|
|
|
|
} else
|
|
|
|
return(0);
|
|
|
|
}
|
|
|
|
|
2001-05-02 17:18:34 +04:00
|
|
|
/*
|
|
|
|
* We can obtain the information about MCA bus presence via
|
|
|
|
* GET CONFIGURATION BIOS call - int 0x15, function 0xc0.
|
|
|
|
* The call returns a pointer to memory place with the configuration block
|
|
|
|
* in es:bx (on AT-compatible, e.g. all we care about, computers).
|
|
|
|
*
|
|
|
|
* Configuration block contains block length (2 bytes), model
|
|
|
|
* number (1 byte), submodel number (1 byte), BIOS revision
|
|
|
|
* (1 byte) and up to 5 feature bytes. We only care about
|
|
|
|
* first feature byte.
|
|
|
|
*/
|
2000-05-11 20:38:10 +04:00
|
|
|
void
|
|
|
|
mca_busprobe()
|
|
|
|
{
|
|
|
|
struct bioscallregs regs;
|
2001-05-02 17:18:34 +04:00
|
|
|
struct bios_config *scp;
|
2000-05-11 20:38:10 +04:00
|
|
|
paddr_t paddr;
|
2001-05-02 17:18:34 +04:00
|
|
|
char buf[50];
|
2000-05-11 20:38:10 +04:00
|
|
|
|
|
|
|
memset(®s, 0, sizeof(regs));
|
2001-05-02 17:18:34 +04:00
|
|
|
regs.AH = 0xc0;
|
2000-05-11 20:38:10 +04:00
|
|
|
bioscall(0x15, ®s);
|
|
|
|
|
2001-05-02 17:18:34 +04:00
|
|
|
if ((regs.EFLAGS & PSL_C) || regs.AH != 0) {
|
|
|
|
#ifdef DEBUG
|
|
|
|
printf("BIOS CFG: Not supported. Not AT-compatible?\n");
|
2000-05-11 20:38:10 +04:00
|
|
|
#endif
|
|
|
|
return;
|
|
|
|
}
|
2001-05-02 17:18:34 +04:00
|
|
|
|
2000-05-11 20:38:10 +04:00
|
|
|
paddr = (regs.ES << 4) + regs.BX;
|
2001-05-02 17:18:34 +04:00
|
|
|
scp = (struct bios_config *)ISA_HOLE_VADDR(paddr);
|
2000-05-11 20:38:10 +04:00
|
|
|
|
2001-05-02 17:18:34 +04:00
|
|
|
#if 1 /* MCAVERBOSE */
|
2001-11-24 01:24:36 +03:00
|
|
|
bitmask_snprintf(((scp->feature2 & 1)<< 8) | scp->feature1,
|
2000-07-09 14:35:11 +04:00
|
|
|
"\20"
|
2001-05-14 18:14:09 +04:00
|
|
|
"\01MCA+ISA"
|
|
|
|
"\02MCA"
|
2000-07-09 14:35:11 +04:00
|
|
|
"\03EBDA"
|
|
|
|
"\04WAITEV"
|
|
|
|
"\05KBDINT"
|
|
|
|
"\06RTC"
|
2001-04-22 15:51:45 +04:00
|
|
|
"\07IC2"
|
2001-11-24 01:24:36 +03:00
|
|
|
"\010DMA3B"
|
|
|
|
"\011DMA32\n",
|
2000-07-09 14:35:11 +04:00
|
|
|
buf, sizeof(buf));
|
2001-05-14 18:14:09 +04:00
|
|
|
|
2001-11-24 01:24:36 +03:00
|
|
|
printf("BIOS CFG: Model-SubM-Rev: %02x-%02x-%02x, 0x%s\n",
|
2001-05-14 18:14:09 +04:00
|
|
|
scp->model, scp->submodel, scp->bios_rev, buf);
|
2000-05-11 20:38:10 +04:00
|
|
|
#endif
|
|
|
|
|
2001-05-02 17:18:34 +04:00
|
|
|
MCA_system = (scp->feature1 & FEATURE_MCABUS) ? 1 : 0;
|
2000-05-11 20:38:10 +04:00
|
|
|
}
|
2001-04-22 15:52:18 +04:00
|
|
|
|
|
|
|
#define PORT_DISKLED 0x92
|
|
|
|
#define DISKLED_ON 0x40
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Light disk busy LED on IBM PS/2.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
mca_disk_busy(void)
|
|
|
|
{
|
|
|
|
outb(PORT_DISKLED, inb(PORT_DISKLED) | DISKLED_ON);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Turn off disk LED on IBM PS/2.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
mca_disk_unbusy(void)
|
|
|
|
{
|
|
|
|
outb(PORT_DISKLED, inb(PORT_DISKLED) & ~DISKLED_ON);
|
|
|
|
}
|
2001-11-24 01:24:36 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
|
|
* MCA DMA specific stuff. We use ISA routines for bulk of the work,
|
|
|
|
* since MCA shares much of the charasteristics with it. We just hook
|
|
|
|
* the DMA channel initialization and kick MCA DMA controller appropriately.
|
|
|
|
* -=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Like _mca_bus_dmamap_load(), but for mbufs.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
_mca_bus_dmamap_load_mbuf(t, map, m0, flags)
|
|
|
|
bus_dma_tag_t t;
|
|
|
|
bus_dmamap_t map;
|
|
|
|
struct mbuf *m0;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("_mca_bus_dmamap_load_mbuf: not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Like _mca_bus_dmamap_load(), but for uios.
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
_mca_bus_dmamap_load_uio(t, map, uio, flags)
|
|
|
|
bus_dma_tag_t t;
|
|
|
|
bus_dmamap_t map;
|
|
|
|
struct uio *uio;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("_mca_bus_dmamap_load_uio: not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Like _mca_bus_dmamap_load(), but for raw memory allocated with
|
|
|
|
* bus_dmamem_alloc().
|
|
|
|
*/
|
|
|
|
static int
|
|
|
|
_mca_bus_dmamap_load_raw(t, map, segs, nsegs, size, flags)
|
|
|
|
bus_dma_tag_t t;
|
|
|
|
bus_dmamap_t map;
|
|
|
|
bus_dma_segment_t *segs;
|
|
|
|
int nsegs;
|
|
|
|
bus_size_t size;
|
|
|
|
int flags;
|
|
|
|
{
|
|
|
|
|
|
|
|
panic("_mca_bus_dmamap_load_raw: not implemented");
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Synchronize a MCA DMA map.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
_mca_bus_dmamap_sync(t, map, offset, len, ops)
|
|
|
|
bus_dma_tag_t t;
|
|
|
|
bus_dmamap_t map;
|
|
|
|
bus_addr_t offset;
|
|
|
|
bus_size_t len;
|
|
|
|
int ops;
|
|
|
|
{
|
|
|
|
struct i386_isa_dma_cookie *cookie;
|
|
|
|
bus_addr_t phys;
|
|
|
|
bus_size_t cnt;
|
|
|
|
int dmach, mode;
|
|
|
|
|
|
|
|
_isa_bus_dmamap_sync(t, map, offset, len, ops);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't do anything if not using the DMA controller.
|
|
|
|
*/
|
2001-12-02 20:02:33 +03:00
|
|
|
if ((map->_dm_flags & _MCABUS_DMA_USEDMACTRL) == 0)
|
2001-11-24 01:24:36 +03:00
|
|
|
return;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Don't do anything if not PRE* operation, allow only
|
|
|
|
* one of PREREAD and PREWRITE.
|
|
|
|
*/
|
|
|
|
if (ops != BUS_DMASYNC_PREREAD && ops != BUS_DMASYNC_PREWRITE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
cookie = (struct i386_isa_dma_cookie *)map->_dm_cookie;
|
|
|
|
dmach = (cookie->id_flags & 0xf0) >> 4;
|
|
|
|
|
|
|
|
phys = map->dm_segs[0].ds_addr;
|
|
|
|
cnt = map->dm_segs[0].ds_len;
|
|
|
|
|
|
|
|
mode = DMACMD_MODE_XFER;
|
|
|
|
mode |= (ops == BUS_DMASYNC_PREREAD)
|
|
|
|
? DMACMD_MODE_READ : DMACMD_MODE_WRITE;
|
2001-12-02 20:02:33 +03:00
|
|
|
if (map->_dm_flags & MCABUS_DMA_IOPORT)
|
|
|
|
mode |= DMACMD_MODE_IOPORT;
|
2001-11-24 01:24:36 +03:00
|
|
|
|
2001-12-04 01:50:44 +03:00
|
|
|
/* Use 16bit DMA if requested */
|
2001-12-02 20:02:33 +03:00
|
|
|
if (map->_dm_flags & MCABUS_DMA_16BIT) {
|
|
|
|
#ifdef DIAGNOSTIC
|
|
|
|
if ((cnt % 2) != 0) {
|
|
|
|
panic("_mca_bus_dmamap_sync: 16bit DMA and cnt %lu odd",
|
|
|
|
cnt);
|
|
|
|
}
|
|
|
|
#endif
|
2001-11-24 01:24:36 +03:00
|
|
|
mode |= DMACMD_MODE_16BIT;
|
|
|
|
cnt /= 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize the MCA DMA controller appropriately. The exact
|
|
|
|
* sequence to setup the controller is taken from Minix.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* Disable access to dma channel. */
|
2001-12-02 20:02:33 +03:00
|
|
|
bus_space_write_1(dmaiot, dmacmdh, 0, DMACMD_MASK | dmach);
|
|
|
|
|
|
|
|
/* Set the transfer mode. */
|
|
|
|
bus_space_write_1(dmaiot, dmacmdh, 0, DMACMD_SET_MODE | dmach);
|
|
|
|
bus_space_write_1(dmaiot, dmaexech, 0, mode);
|
2001-11-24 01:24:36 +03:00
|
|
|
|
|
|
|
/* Set the address byte pointer. */
|
2001-12-02 20:02:33 +03:00
|
|
|
bus_space_write_1(dmaiot, dmacmdh, 0, DMACMD_SET_ADDR | dmach);
|
2001-11-24 01:24:36 +03:00
|
|
|
/* address bits 0..7 */
|
|
|
|
bus_space_write_1(dmaiot, dmaexech, 0, (phys >> 0) & 0xff);
|
|
|
|
/* address bits 8..15 */
|
|
|
|
bus_space_write_1(dmaiot, dmaexech, 0, (phys >> 8) & 0xff);
|
|
|
|
/* address bits 16..23 */
|
|
|
|
bus_space_write_1(dmaiot, dmaexech, 0, (phys >> 16) & 0xff);
|
|
|
|
|
|
|
|
/* Set the count byte pointer */
|
2001-12-02 20:02:33 +03:00
|
|
|
bus_space_write_1(dmaiot, dmacmdh, 0, DMACMD_SET_CNT | dmach);
|
2001-11-24 01:24:36 +03:00
|
|
|
/* count bits 0..7 */
|
|
|
|
bus_space_write_1(dmaiot, dmaexech, 0, ((cnt - 1) >> 0) & 0xff);
|
|
|
|
/* count bits 8..15 */
|
|
|
|
bus_space_write_1(dmaiot, dmaexech, 0, ((cnt - 1) >> 8) & 0xff);
|
|
|
|
|
|
|
|
/* Enable access to dma channel. */
|
2001-12-02 20:02:33 +03:00
|
|
|
bus_space_write_1(dmaiot, dmacmdh, 0, DMACMD_RESET_MASK | dmach);
|
2001-11-24 01:24:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Allocate a dma map, and set up dma channel.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
mca_dmamap_create(t, size, flags, dmamp, dmach)
|
|
|
|
bus_dma_tag_t t;
|
|
|
|
bus_size_t size;
|
|
|
|
int flags;
|
|
|
|
bus_dmamap_t *dmamp;
|
|
|
|
int dmach;
|
|
|
|
{
|
|
|
|
int error;
|
|
|
|
struct i386_isa_dma_cookie *cookie;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
/* Sanity check */
|
|
|
|
if (dmach < 0 || dmach >= 16) {
|
|
|
|
printf("mcadma_create: invalid DMA channel %d\n",
|
|
|
|
dmach);
|
|
|
|
return (EINVAL);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (size > 65536) {
|
|
|
|
panic("mca_dmamap_create: dmamap sz %ld > 65536",
|
2001-12-04 23:00:15 +03:00
|
|
|
(long) size);
|
2001-11-24 01:24:36 +03:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* MCA DMA transfer can be maximum 65536 bytes long and must
|
|
|
|
* be in one chunk. No specific boundary constraints are present.
|
|
|
|
*/
|
|
|
|
if ((error = bus_dmamap_create(t, size, 1, 65536, 0, flags, dmamp)))
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
/* Encode DMA channel */
|
|
|
|
cookie = (struct i386_isa_dma_cookie *) (*dmamp)->_dm_cookie;
|
|
|
|
cookie->id_flags &= 0x0f;
|
|
|
|
cookie->id_flags |= dmach << 4;
|
|
|
|
|
2001-12-02 20:02:33 +03:00
|
|
|
/* Mark the dmamap as using DMA controller. Some devices
|
|
|
|
* drive DMA themselves, and don't need the MCA DMA controller.
|
|
|
|
* To distinguish the two, use a flag for dmamaps which use the DMA
|
|
|
|
* controller.
|
|
|
|
*/
|
|
|
|
(*dmamp)->_dm_flags |= _MCABUS_DMA_USEDMACTRL;
|
2001-11-24 01:24:36 +03:00
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
2001-12-02 20:02:33 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set I/O port for DMA. Implemented separately from _mca_bus_dmamap_sync()
|
|
|
|
* so that it's available for one-shot setup.
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
mca_dma_set_ioport(dma, port)
|
|
|
|
int dma;
|
|
|
|
u_int16_t port;
|
|
|
|
{
|
|
|
|
/* Disable access to dma channel. */
|
|
|
|
bus_space_write_1(dmaiot, dmacmdh, 0, DMACMD_MASK | dma);
|
|
|
|
|
|
|
|
/* Set I/O port to use for DMA */
|
2001-12-04 01:50:44 +03:00
|
|
|
bus_space_write_1(dmaiot, dmacmdh, 0, DMACMD_SET_IO | dma);
|
2001-12-02 20:02:33 +03:00
|
|
|
bus_space_write_1(dmaiot, dmaexech, 0, port & 0xff);
|
2001-12-04 01:50:44 +03:00
|
|
|
bus_space_write_1(dmaiot, dmaexech, 0, (port >> 8) & 0xff);
|
2001-12-02 20:02:33 +03:00
|
|
|
|
|
|
|
/* Enable access to dma channel. */
|
|
|
|
bus_space_write_1(dmaiot, dmacmdh, 0, DMACMD_RESET_MASK | dma);
|
|
|
|
}
|