Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src/sys/arch/arc/arc common chipset description for magnum based...
details: https://anonhg.NetBSD.org/src/rev/d276e23f429b
branches: trunk
changeset: 511144:d276e23f429b
user: soda <soda%NetBSD.org@localhost>
date: Wed Jun 13 15:19:28 2001 +0000
description:
common chipset description for magnum based platforms like
Microsoft-Jazz and PICA-61
diffstat:
sys/arch/arc/arc/c_magnum.c | 259 ++++++++++++++++++++++++++++++++++++++++++++
1 files changed, 259 insertions(+), 0 deletions(-)
diffs (263 lines):
diff -r a04234d3fa84 -r d276e23f429b sys/arch/arc/arc/c_magnum.c
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/sys/arch/arc/arc/c_magnum.c Wed Jun 13 15:19:28 2001 +0000
@@ -0,0 +1,259 @@
+/* $NetBSD: c_magnum.c,v 1.1 2001/06/13 15:19:28 soda Exp $ */
+/* $OpenBSD: machdep.c,v 1.36 1999/05/22 21:22:19 weingart Exp $ */
+
+/*
+ * Copyright (c) 1988 University of Utah.
+ * Copyright (c) 1992, 1993
+ * The Regents of the University of California. 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, The Mach Operating System project at
+ * Carnegie-Mellon University and Ralph Campbell.
+ *
+ * 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.
+ * 3. All advertising materials mentioning features or use of this software
+ * must display the following acknowledgement:
+ * This product includes software developed by the University of
+ * California, Berkeley and its contributors.
+ * 4. Neither the name of the University nor the names of its contributors
+ * may be used to endorse or promote products derived from this software
+ * without specific prior written permission.
+ *
+ * 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.
+ *
+ * from: @(#)machdep.c 8.3 (Berkeley) 1/12/94
+ */
+
+/*
+ * for Magnum derived machines like Microsoft-Jazz and PICA-61.
+ */
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/device.h>
+#include <uvm/uvm_extern.h>
+
+#include <machine/autoconf.h>
+#include <machine/bus.h>
+#include <machine/pio.h>
+#include <machine/platform.h>
+#include <mips/pte.h>
+
+#include <dev/isa/isavar.h>
+
+#include <arc/arc/wired_map.h>
+#include <arc/dev/mcclockvar.h>
+#include <arc/jazz/pica.h>
+#include <arc/jazz/jazziovar.h>
+#include <arc/jazz/mcclock_jazziovar.h>
+#include <arc/jazz/timer_jazziovar.h>
+#include <arc/isa/isabrvar.h>
+
+extern int cpu_int_mask;
+
+/*
+ * chipset-dependent mcclock routines.
+ */
+
+u_int mc_magnum_read __P((struct mcclock_softc *, u_int));
+void mc_magnum_write __P((struct mcclock_softc *, u_int, u_int));
+
+struct mcclock_jazzio_config mcclock_magnum_conf = {
+ 0x80004000, 1,
+ { mc_magnum_read, mc_magnum_write }
+};
+
+u_int
+mc_magnum_read(sc, reg)
+ struct mcclock_softc *sc;
+ u_int reg;
+{
+ int i, as;
+
+ as = in32(PICA_SYS_ISA_AS) & 0x80;
+ out32(PICA_SYS_ISA_AS, as | reg);
+ i = bus_space_read_1(sc->sc_iot, sc->sc_ioh, 0);
+ return (i);
+}
+
+void
+mc_magnum_write(sc, reg, datum)
+ struct mcclock_softc *sc;
+ u_int reg, datum;
+{
+ int as;
+
+ as = in32(PICA_SYS_ISA_AS) & 0x80;
+ out32(PICA_SYS_ISA_AS, as | reg);
+ bus_space_write_1(sc->sc_iot, sc->sc_ioh, 0, datum);
+}
+
+/*
+ * chipset-dependent timer routine.
+ */
+
+int timer_magnum_intr __P((u_int, struct clockframe *));
+void timer_magnum_init(int);
+
+struct timer_jazzio_config timer_magnum_conf = {
+ MIPS_INT_MASK_4,
+ timer_magnum_intr,
+ timer_magnum_init,
+};
+
+int
+timer_magnum_intr(mask, cf)
+ u_int mask;
+ struct clockframe *cf;
+{
+ int temp;
+
+ temp = inw(R4030_SYS_IT_STAT);
+ hardclock(cf);
+
+ /* Re-enable clock interrupts */
+ splx(MIPS_INT_MASK_4 | MIPS_SR_INT_IE);
+
+ return (~MIPS_INT_MASK_4); /* Keep clock interrupts enabled */
+}
+
+void
+timer_magnum_init(interval)
+ int interval; /* milliseconds */
+{
+ if (interval <= 0)
+ panic("timer_nec_jazz_init: invalid interval %d", interval);
+
+ out32(R4030_SYS_IT_VALUE, interval - 1);
+
+ /* Enable periodic clock interrupt */
+ out32(R4030_SYS_EXT_IMASK, cpu_int_mask);
+}
+
+/*
+ * chipset-dependent isa bus configuration
+ */
+
+int isabr_magnum_intr_status __P((void));
+
+struct isabr_config isabr_magnum_conf = {
+ isabr_magnum_intr_status,
+};
+
+int
+isabr_magnum_intr_status()
+{
+ return (in32(R4030_SYS_ISA_VECTOR) & (ICU_LEN - 1));
+}
+
+/*
+ * chipset-dependent jazzio bus configuration
+ */
+
+void jazzio_magnum_set_iointr_mask __P((int));
+
+struct jazzio_config jazzio_magnum_conf = {
+ PVIS,
+ jazzio_magnum_set_iointr_mask,
+ R4030_SYS_TL_BASE,
+ R4030_SYS_DMA1_REGS,
+};
+
+void
+jazzio_magnum_set_iointr_mask(mask)
+ int mask;
+{
+ out16(PICA_SYS_LB_IE, mask);
+}
+
+/*
+ * chipset-dependent platform routines.
+ */
+
+void
+c_magnum_set_intr(mask, int_hand, prio)
+ int mask;
+ int (*int_hand)(u_int, struct clockframe *);
+ int prio;
+{
+ arc_set_intr(mask, int_hand, prio);
+
+ /* Update external interrupt mask but don't enable clock. */
+ out32(R4030_SYS_EXT_IMASK, cpu_int_mask & (~MIPS_INT_MASK_4 >> 10));
+}
+
+/*
+ * critial i/o space, interrupt, and other chipset related initialization.
+ */
+void
+c_magnum_init()
+{
+ /*
+ * Initialize I/O address offset
+ */
+ arc_bus_space_init(&jazzio_bus, "jazzio",
+ R4030_P_LOCAL_IO_BASE, R4030_V_LOCAL_IO_BASE,
+ R4030_V_LOCAL_IO_BASE, R4030_S_LOCAL_IO_BASE);
+ arc_bus_space_init(&arc_bus_io, "picaisaio",
+ PICA_P_ISA_IO, PICA_V_ISA_IO, 0, PICA_S_ISA_IO);
+ arc_bus_space_init(&arc_bus_mem, "picaisamem",
+ PICA_P_ISA_MEM, PICA_V_ISA_MEM, 0, PICA_S_ISA_MEM);
+
+ /*
+ * Initialize wired TLB for I/O space which is used on early stage
+ */
+ arc_enter_wired(R4030_V_LOCAL_IO_BASE, R4030_P_LOCAL_IO_BASE,
+ PICA_P_INT_SOURCE, MIPS3_PG_SIZE_256K);
+ arc_enter_wired(PICA_V_ISA_IO, PICA_P_ISA_IO, PICA_P_ISA_MEM,
+ MIPS3_PG_SIZE_16M);
+
+ /*
+ * Initialize interrupt priority
+ */
+ splvec.splnet = MIPS_INT_MASK_SPL3;
+ splvec.splbio = MIPS_INT_MASK_SPL3;
+ splvec.splvm = MIPS_INT_MASK_SPL3;
+ splvec.spltty = MIPS_INT_MASK_SPL3;
+ splvec.splclock = MIPS_INT_MASK_SPL5;
+ splvec.splstatclock = MIPS_INT_MASK_SPL5;
+
+ /*
+ * Disable all interrupts. New masks will be set up
+ * during system configuration
+ */
+ out16(PICA_SYS_LB_IE,0x000);
+ out32(R4030_SYS_EXT_IMASK, 0x00);
+
+ /* common configuration for Magnum derived and NEC EISA machines */
+ c_jazz_eisa_init();
+
+ /* chipset-dependent mcclock configuration */
+ mcclock_jazzio_conf = &mcclock_magnum_conf;
+
+ /* chipset-dependent timer configuration */
+ timer_jazzio_conf = &timer_magnum_conf;
+
+ /* chipset-dependent jazzio bus configuration */
+ jazzio_conf = &jazzio_magnum_conf;
+
+ /* chipset-dependent isa bus configuration */
+ isabr_conf = &isabr_magnum_conf;
+}
Home |
Main Index |
Thread Index |
Old Index