Module Name:    src
Committed By:   kiyohara
Date:           Tue Jul 13 11:16:03 UTC 2010

Modified Files:
        src/sys/dev/marvell: files.discovery
Added Files:
        src/sys/dev/marvell: com_mv.c mvpex.c mvpexreg.h mvpexvar.h

Log Message:
Add UART and PCIe controller for Marvell SoC.
  However not define attribute *_mbus in our tree yet.


To generate a diff of this commit:
cvs rdiff -u -r0 -r1.1 src/sys/dev/marvell/com_mv.c \
    src/sys/dev/marvell/mvpex.c src/sys/dev/marvell/mvpexreg.h \
    src/sys/dev/marvell/mvpexvar.h
cvs rdiff -u -r1.14 -r1.15 src/sys/dev/marvell/files.discovery

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/marvell/files.discovery
diff -u src/sys/dev/marvell/files.discovery:1.14 src/sys/dev/marvell/files.discovery:1.15
--- src/sys/dev/marvell/files.discovery:1.14	Sun Jul 11 08:34:57 2010
+++ src/sys/dev/marvell/files.discovery	Tue Jul 13 11:16:02 2010
@@ -1,4 +1,4 @@
-#	$NetBSD: files.discovery,v 1.14 2010/07/11 08:34:57 kiyohara Exp $
+#	$NetBSD: files.discovery,v 1.15 2010/07/13 11:16:02 kiyohara Exp $
 #
 # Config file and device description for machine-independent support for
 # the Marvell (formerly Galileo Technology) Discovery system controllers.
@@ -29,13 +29,13 @@
 
 # PCI Interface
 device	gtpci: pcibus
-file	dev/marvell/gtpci.c		gtpci & gtpci_gt needs-flag
+file	dev/marvell/gtpci.c		gtpci & (gtpci_gt|gtpci_mbus) needs-flag
 attach	gtpci at gt with gtpci_gt
 
 # PCI Express Interface
-#device	mvpex: pcibus
-#file	dev/marvell/mvpex.c		mvpex & (mvpex_gt|mvpex_mbus) needs-flag
-#attach	mvpex at gt with mvpex_gt
+device	mvpex: pcibus
+file	dev/marvell/mvpex.c		mvpex & (mvpex_gt|mvpex_mbus) needs-flag
+attach	mvpex at gt with mvpex_gt
 
 # Fast ethernet
 define	gfec { [port = -1], [irq = -1] }
@@ -82,8 +82,8 @@
 attach	gttwsi at gt with gttwsi_gt
 
 # UART Interface
-#attach	com at gt with mvuart_gt
-#file	dev/marvell/com_mv.c		mvuart_gt | mvuart_mbus
+attach	com at gt with mvuart_gt
+file	dev/marvell/com_mv.c		mvuart_gt | mvuart_mbus
 
 # IDMA Controller and XOR Engine
 device	gtidmac: dmover_service

Added files:

Index: src/sys/dev/marvell/com_mv.c
diff -u /dev/null src/sys/dev/marvell/com_mv.c:1.1
--- /dev/null	Tue Jul 13 11:16:03 2010
+++ src/sys/dev/marvell/com_mv.c	Tue Jul 13 11:16:02 2010
@@ -0,0 +1,159 @@
+/*	$NetBSD: com_mv.c,v 1.1 2010/07/13 11:16:02 kiyohara Exp $	*/
+/*
+ * Copyright (c) 2007, 2010 KIYOHARA Takashi
+ * All rights reserved.
+ *
+ * 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 AUTHOR ``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 AUTHOR 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 <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: com_mv.c,v 1.1 2010/07/13 11:16:02 kiyohara Exp $");
+
+#include <sys/param.h>
+#include <sys/bus.h>
+#include <sys/device.h>
+#include <sys/errno.h>
+#include <sys/termios.h>
+
+#include <dev/marvell/gtvar.h>
+#include <dev/marvell/marvellreg.h>
+#include <dev/marvell/marvellvar.h>
+
+#include <dev/ic/comvar.h>
+
+#include <prop/proplib.h>
+
+#define MVUART_SIZE		0x20
+
+
+static int mvuart_match(device_t, struct cfdata *, void *);
+static void mvuart_attach(device_t, device_t, void *);
+
+CFATTACH_DECL_NEW(mvuart_gt, sizeof(struct com_softc),
+    mvuart_match, mvuart_attach, NULL, NULL);
+CFATTACH_DECL_NEW(mvuart_mbus, sizeof(struct com_softc),
+    mvuart_match, mvuart_attach, NULL, NULL);
+
+#ifdef COM_REGMAP
+#define MVUART_INIT_REGS(regs, tag, hdl, addr, size)		\
+	do {							\
+		int i;						\
+								\
+		regs.cr_iot = tag;				\
+		regs.cr_ioh = hdl;				\
+		regs.cr_iobase = addr;				\
+		regs.cr_nports = size;				\
+		for (i = 0; i < __arraycount(regs.cr_map); i++)	\
+			regs.cr_map[i] = com_std_map[i] << 2;	\
+	} while (0)
+#else
+#define MVUART_INIT_REGS(regs, tag, hdl, addr, size) \
+	COM_INIT_REGS(regs, tag, hdl, addr)
+#endif
+
+
+/* ARGSUSED */
+static int
+mvuart_match(device_t parent, struct cfdata *match, void *aux)
+{
+	struct marvell_attach_args *mva = aux;
+	bus_space_handle_t ioh;
+
+	switch (mva->mva_model) {
+#if 0
+	case MARVELL_DISCOVERY_V:	/* Do we have ?? */
+	case MARVELL_DISCOVERY_VI:	/* Do we have ?? */
+#endif
+	case MARVELL_ORION_1_88F1181:
+	case MARVELL_ORION_1_88F5082:
+	case MARVELL_ORION_1_88F5180N:
+	case MARVELL_ORION_1_88F5181:
+	case MARVELL_ORION_1_88F5182:
+	case MARVELL_ORION_1_88F6082:
+	case MARVELL_ORION_1_88W8660:
+	case MARVELL_ORION_2_88F1281:
+	case MARVELL_ORION_2_88F5281:
+		break;
+
+	default:
+		return 0;
+	}
+
+	if (com_is_console(mva->mva_iot, mva->mva_addr + mva->mva_offset, NULL))
+		return 1;
+
+	if (bus_space_subregion(mva->mva_iot, mva->mva_ioh, mva->mva_offset,
+	    mva->mva_size, &ioh))
+		return 0;
+	if (!comprobe1(mva->mva_iot, ioh))
+		return 0;
+	mva->mva_size = MVUART_SIZE;
+	return 1;
+}
+
+/* ARGSUSED */
+static void
+mvuart_attach(device_t parent, device_t self, void *aux)
+{
+	struct com_softc *sc = device_private(self);
+	struct marvell_attach_args *mva = aux;
+	bus_space_tag_t iot;
+	bus_space_handle_t ioh;
+	prop_dictionary_t dict = device_properties(self);
+
+	sc->sc_dev = self;
+
+	if (!prop_dictionary_get_uint32(dict, "frequency", &sc->sc_frequency)) {
+		aprint_error(": no frequency property\n");
+		return;
+	}
+
+	iot = mva->mva_iot;
+	if (!com_is_console(iot, mva->mva_addr + mva->mva_offset, &ioh)) {
+		if (bus_space_subregion(iot, mva->mva_ioh, mva->mva_offset,
+		    mva->mva_size, &ioh)) {
+			aprint_error(": can't map registers\n");
+			return;
+		}
+	}
+	MVUART_INIT_REGS(sc->sc_regs,
+	    iot, ioh, mva->mva_addr + mva->mva_offset, mva->mva_size);
+
+	com_attach_subr(sc);
+
+	marvell_intr_establish(mva->mva_irq, IPL_SERIAL, comintr, sc);
+}
+
+#ifdef COM_REGMAP
+int mvuart_cnattach(bus_space_tag_t, bus_addr_t, int, uint32_t, int);
+
+int
+mvuart_cnattach(bus_space_tag_t iot, bus_addr_t addr, int baud,
+		uint32_t sysfreq, int mode)
+{
+	struct com_regs regs;
+
+	MVUART_INIT_REGS(regs, iot, 0x0, addr, MVUART_SIZE);
+
+	return comcnattach1(&regs, baud, sysfreq, COM_TYPE_16550_NOERS, mode);
+}
+#endif /* COM_REGMAP */
Index: src/sys/dev/marvell/mvpex.c
diff -u /dev/null src/sys/dev/marvell/mvpex.c:1.1
--- /dev/null	Tue Jul 13 11:16:03 2010
+++ src/sys/dev/marvell/mvpex.c	Tue Jul 13 11:16:02 2010
@@ -0,0 +1,738 @@
+/*	$NetBSD: mvpex.c,v 1.1 2010/07/13 11:16:02 kiyohara Exp $	*/
+/*
+ * Copyright (c) 2008 KIYOHARA Takashi
+ * All rights reserved.
+ *
+ * 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 AUTHOR ``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 AUTHOR 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 <sys/cdefs.h>
+__KERNEL_RCSID(0, "$NetBSD: mvpex.c,v 1.1 2010/07/13 11:16:02 kiyohara Exp $");
+
+#include "opt_pci.h"
+#include "pci.h"
+
+#include <sys/param.h>
+#include <sys/bus.h>
+#include <sys/device.h>
+#include <sys/errno.h>
+#include <sys/extent.h>
+#include <sys/evcnt.h>
+#include <sys/malloc.h>
+#include <sys/systm.h>
+
+#include <prop/proplib.h>
+
+#include <dev/pci/pcivar.h>
+#include <dev/pci/pcireg.h>
+#include <dev/pci/pciconf.h>
+
+#include <dev/marvell/mvpexreg.h>
+#include <dev/marvell/mvpexvar.h>
+#include <dev/marvell/marvellreg.h>
+#include <dev/marvell/marvellvar.h>
+
+#include <machine/pci_machdep.h>
+
+#include "locators.h"
+
+
+static int mvpex_match(device_t, struct cfdata *, void *);
+static void mvpex_attach(device_t, device_t, void *);
+
+static int mvpex_intr(void *);
+
+static void mvpex_init(struct mvpex_softc *);
+#if 0	/* shall move to pchb(4)? */
+static void mvpex_barinit(struct mvpex_softc *);
+static int mvpex_wininit(struct mvpex_softc *, int, int, int, int, uint32_t *,
+			 uint32_t *);
+#else
+static void mvpex_wininit(struct mvpex_softc *);
+#endif
+#if NPCI > 0
+static void mvpex_pci_config(struct mvpex_softc *, bus_space_tag_t,
+			     bus_space_tag_t, bus_dma_tag_t, pci_chipset_tag_t,
+			     u_long, u_long, u_long, u_long, int);
+#endif
+
+CFATTACH_DECL_NEW(mvpex_gt, sizeof(struct mvpex_softc),
+    mvpex_match, mvpex_attach, NULL, NULL);
+CFATTACH_DECL_NEW(mvpex_mbus, sizeof(struct mvpex_softc),
+    mvpex_match, mvpex_attach, NULL, NULL);
+
+
+/* ARGSUSED */
+static int
+mvpex_match(device_t parent, struct cfdata *match, void *aux)
+{
+	struct marvell_attach_args *mva = aux;
+
+	switch (mva->mva_model) {
+#if 0
+	case MARVELL_DISCOVERY_V:
+	case MARVELL_DISCOVERY_VI:
+#endif
+	case MARVELL_ORION_1_88F1181:
+	case MARVELL_ORION_1_88F5082:
+	case MARVELL_ORION_1_88F5180N:
+	case MARVELL_ORION_1_88F5181:
+	case MARVELL_ORION_1_88F5182:
+	case MARVELL_ORION_1_88F6082:
+	case MARVELL_ORION_1_88W8660:
+	case MARVELL_ORION_2_88F1281:
+	case MARVELL_ORION_2_88F5281:
+		break;
+
+	default:
+		return 0;
+	}
+	if (mva->mva_offset == MVA_OFFSET_DEFAULT ||
+	    mva->mva_irq == MVA_IRQ_DEFAULT)
+		return 0;
+
+	mva->mva_size = MVPEX_SIZE;
+	return 1;
+}
+
+/* ARGSUSED */
+static void
+mvpex_attach(device_t parent, device_t self, void *aux)
+{
+	struct mvpex_softc *sc = device_private(self);
+	struct marvell_attach_args *mva = aux;
+#if NPCI > 0
+	prop_dictionary_t dict = device_properties(self);
+	prop_object_t pc, iot, memt;
+	pci_chipset_tag_t mvpex_chipset;
+	bus_space_tag_t mvpex_io_bs_tag, mvpex_mem_bs_tag;
+	uint64_t iostart = 0, ioend = 0, memstart = 0, memend = 0;
+	uint32_t cl_size;
+	int i;
+#endif
+
+	aprint_normal(": Marvell PCI Express Interface\n");
+	aprint_naive("\n");
+
+#if NPCI > 0
+	iot = prop_dictionary_get(dict, "io-bus-tag");
+	if (iot == NULL) {
+		aprint_error_dev(self, "no io-bus-tag property\n");
+		return;
+	}
+	KASSERT(prop_object_type(iot) == PROP_TYPE_DATA);
+	mvpex_io_bs_tag = __UNCONST(prop_data_data_nocopy(iot));
+	memt = prop_dictionary_get(dict, "mem-bus-tag");
+	if (memt == NULL) {
+		aprint_error_dev(self, "no mem-bus-tag property\n");
+		return;
+	}
+	KASSERT(prop_object_type(memt) == PROP_TYPE_DATA);
+	mvpex_mem_bs_tag = __UNCONST(prop_data_data_nocopy(memt));
+	pc = prop_dictionary_get(dict, "pci-chipset");
+	if (pc == NULL) {
+		aprint_error_dev(self, "no pci-chipset property\n");
+		return;
+	}
+	KASSERT(prop_object_type(pc) == PROP_TYPE_DATA);
+	mvpex_chipset = __UNCONST(prop_data_data_nocopy(pc));
+#ifdef PCI_NETBSD_CONFIGURE
+	if (!prop_dictionary_get_uint64(dict, "iostart", &iostart)) {
+		aprint_error_dev(self, "no iostart property\n");
+		return;
+	}
+	if (!prop_dictionary_get_uint64(dict, "ioend", &ioend)) {
+		aprint_error_dev(self, "no ioend property\n");
+		return;
+	}
+	if (!prop_dictionary_get_uint64(dict, "memstart", &memstart)) {
+		aprint_error_dev(self, "no memstart property\n");
+		return;
+	}
+	if (!prop_dictionary_get_uint64(dict, "memend", &memend)) {
+		aprint_error_dev(self, "no memend property\n");
+		return;
+	}
+	if (!prop_dictionary_get_uint32(dict, "cache-line-size", &cl_size)) {
+		aprint_error_dev(self, "no cache-line-size property\n");
+		return;
+	}
+#endif
+#endif
+
+	sc->sc_dev = self;
+	sc->sc_model = mva->mva_model;
+	sc->sc_rev = mva->mva_revision;
+	sc->sc_offset = mva->mva_offset;
+	sc->sc_iot = mva->mva_iot;
+
+	/* Map I/O registers for mvpex */
+	if (bus_space_subregion(mva->mva_iot, mva->mva_ioh, mva->mva_offset,
+	    mva->mva_size, &sc->sc_ioh)) {
+		aprint_error_dev(self, "can't map registers\n");
+		return;
+	}
+	mvpex_init(sc);
+
+	/* XXX: looks seem good to specify level IPL_VM. */
+	marvell_intr_establish(mva->mva_irq, IPL_VM, mvpex_intr, sc);
+
+#if NPCI > 0
+	for (i = 0; i < PCI_INTERRUPT_PIN_MAX; i++) {
+		sc->sc_intrtab[i].intr_pin = PCI_INTERRUPT_PIN_A + i;
+		sc->sc_intrtab[i].intr_refcnt = 0;
+		LIST_INIT(&sc->sc_intrtab[i].intr_list);
+	}
+
+	mvpex_pci_config(sc, mvpex_io_bs_tag, mvpex_mem_bs_tag, mva->mva_dmat,
+	    mvpex_chipset, iostart, ioend, memstart, memend, cl_size);
+#endif
+}
+
+static int
+mvpex_intr(void *arg)
+{
+	struct mvpex_softc *sc = (struct mvpex_softc *)arg;
+	struct mvpex_intrhand *ih;
+	struct mvpex_intrtab *intrtab;
+	uint32_t ic, im;
+	int handled = 0, pin, rv, i, s;
+
+	for (;;) {
+		ic = bus_space_read_4(sc->sc_iot, sc->sc_ioh, MVPEX_IC);
+		im = bus_space_read_4(sc->sc_iot, sc->sc_ioh, MVPEX_IM);
+		ic &= im;
+
+		if (!ic)
+			break;
+
+		for (i = 0, pin = PCI_INTERRUPT_PIN_A;
+		    i < PCI_INTERRUPT_PIN_MAX; pin++, i++) {
+			if ((ic & MVPEX_I_PIN(pin)) == 0)
+				continue;
+
+			intrtab = &sc->sc_intrtab[i];
+			LIST_FOREACH(ih, &intrtab->intr_list, ih_q) {
+				s = _splraise(ih->ih_type);
+				rv = (*ih->ih_func)(ih->ih_arg);
+				splx(s);
+				if (rv) {
+					ih->ih_evcnt.ev_count++;
+					handled++;
+				}
+			}
+			bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_IC,
+			    ~MVPEX_I_PIN(pin));
+		}
+	}
+
+	return handled;
+}
+
+
+static void
+mvpex_init(struct mvpex_softc *sc)
+{
+	uint32_t reg;
+	int window;
+
+	/*
+	 * First implement Guideline (GL# PCI Express-2) Wrong Default Value
+	 * to Transmitter Output Current (TXAMP) Relevant for: 88F5181-A1/B0/B1
+	 * and 88F5281-B0
+	 */
+						/* Write the read command */
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, 0x1b00, 0x80820000);
+	reg = bus_space_read_4(sc->sc_iot, sc->sc_ioh, 0x1b00);
+	/* Prepare new data for write */
+	reg &= ~0x7;		/* Clear bits [2:0] */
+	reg |= 0x4;		/* Set the new value */
+	reg &= ~0x80000000;	/* Set "write" command */
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, 0x1b00, reg);
+
+	for (window = 0; window < MVPEX_NWINDOW; window++)
+		bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WC(window), 0);
+
+#if 0	/* shall move to pchb(4)? */
+	mvpex_barinit(sc);
+#else
+	mvpex_wininit(sc);
+#endif
+
+	/* Clear Interrupt Cause and Mask registers */
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_IC, 0);
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_IM, 0);
+
+	/* now wait 60 ns to be sure the link is valid (spec compliant) */
+	delay(1);
+}
+
+#if 0
+static int
+mvpex_wininit(struct mvpex_softc *sc, int window, int tbegin, int tend,
+	      int barmap, uint32_t *barbase, uint32_t *barsize)
+{
+	uint32_t target, attr, base, size;
+	int targetid;
+
+	for (targetid = tbegin; targetid <= tend && window < MVPEX_NWINDOW;
+	    targetid++) {
+		if (orion_target(targetid, &target, &attr, &base, &size) == -1)
+			continue;
+		if (size == 0)
+			continue;
+
+		if (base < *barbase)
+			*barbase = base;
+		*barsize += size;
+
+		bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WC(window),
+		    MVPEX_WC_WINEN		|
+		    barmap			|
+		    MVPEX_WC_TARGET(target)	|
+		    MVPEX_WC_ATTR(attr)		|
+		    MVPEX_WC_SIZE(size));
+		bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WB(window),
+		    MVPEX_WB_BASE(base));
+		bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WR(window), 0);
+		window++;
+	}
+
+	return window;
+}
+
+/* shall move to pchb(4)? */
+static void
+mvpex_barinit(struct mvpex_softc *sc)
+{
+	const uint32_t barflag =
+	    PCI_MAPREG_MEM_PREFETCHABLE_MASK | PCI_MAPREG_MEM_TYPE_64BIT;
+	uint32_t base, size;
+	int window = 0;
+
+	marvell_winparams_by_tag(device_parent(sc->sc_dev),
+	    ORION_TARGETID_INTERNALREG, NULL, NULL, &base, &size);
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_BAR0INTERNAL,
+	    barflag | (base & MVPEX_BAR0INTERNAL_MASK));
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_BAR0INTERNALH, 0);
+
+	base = size = 0;
+	window = mvpex_wininit(sc, window, ORION_TARGETID_SDRAM_CS0,
+	    ORION_TARGETID_SDRAM_CS3, MVPEX_WC_BARMAP_BAR1, &base, &size);
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_BAR1,
+	    barflag | (base & MVPEX_BAR_MASK));
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_BAR1H, 0);
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_BAR1C,
+	    MVPEX_BARC_BARSIZE(size) | MVPEX_BARC_BAREN);
+
+#if 0
+	base = size = 0;
+	if (sc->sc_model == MARVELL_ORION_1_88F1181)
+		window = mvpex_wininit(sc, window, ORION_TARGETID_FLASH_CS,
+		    ORION_TARGETID_DEVICE_BOOTCS,
+		    MVPEX_WC_BARMAP_BAR2, &base, &size);
+	else {
+		window = mvpex_wininit(sc, window,
+		    ORION_TARGETID_DEVICE_CS0, ORION_TARGETID_DEVICE_CS2,
+		    MVPEX_WC_BARMAP_BAR2, &base, &size);
+		window = mvpex_wininit(sc, window,
+		    ORION_TARGETID_DEVICE_BOOTCS, ORION_TARGETID_DEVICE_BOOTCS,
+		    MVPEX_WC_BARMAP_BAR2, &base, &size);
+	}
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_BAR2,
+	    barflag | (base & MVPEX_BAR_MASK));
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_BAR2H, 0);
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_BAR2C,
+	    MVPEX_BARC_BARSIZE(size) | MVPEX_BARC_BAREN);
+#else
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_BAR2C, 0);
+#endif
+}
+#else
+static void
+mvpex_wininit(struct mvpex_softc *sc)
+{
+	device_t pdev = device_parent(sc->sc_dev);
+	uint64_t base;
+	uint32_t size;
+	int target, attr, window, rv, i;
+	static struct {
+		int tag;
+		int bar;
+	} tags[] = {
+		{ MARVELL_TAG_SDRAM_CS0,	MVPEX_WC_BARMAP_BAR1	},
+		{ MARVELL_TAG_SDRAM_CS1,	MVPEX_WC_BARMAP_BAR1	},
+		{ MARVELL_TAG_SDRAM_CS2,	MVPEX_WC_BARMAP_BAR1	},
+		{ MARVELL_TAG_SDRAM_CS3,	MVPEX_WC_BARMAP_BAR1	},
+
+		{ MARVELL_TAG_UNDEFINED,	0			},
+	};
+
+	for (window = 0, i = 0;
+	    tags[i].tag != MARVELL_TAG_UNDEFINED && window < MVPEX_NWINDOW;
+	    i++) {
+		rv = marvell_winparams_by_tag(pdev, tags[i].tag,
+		    &target, &attr, &base, &size);
+		if (rv != 0 || size == 0)
+			continue;
+
+		if (base > 0xffffffffULL) {
+			aprint_error_dev(sc->sc_dev,
+			    "tag %d address 0x%llx not support\n",
+			    tags[i].tag, base);
+			continue;
+		}
+
+		bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WC(window),
+		    MVPEX_WC_WINEN		|
+		    tags[i].bar			|
+		    MVPEX_WC_TARGET(target)	|
+		    MVPEX_WC_ATTR(attr)		|
+		    MVPEX_WC_SIZE(size));
+		bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WB(window),
+		    MVPEX_WB_BASE(base));
+		bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WR(window), 0);
+		window++;
+	}
+	for ( ; window < MVPEX_NWINDOW; window++)
+		bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_WC(window), 0);
+}
+#endif
+
+#if NPCI > 0
+static void
+mvpex_pci_config(struct mvpex_softc *sc, bus_space_tag_t iot,
+		 bus_space_tag_t memt, bus_dma_tag_t dmat, pci_chipset_tag_t pc,
+		 u_long iostart, u_long ioend, u_long memstart, u_long memend,
+		 int cacheline_size)
+{
+	struct pcibus_attach_args pba;
+#ifdef PCI_NETBSD_CONFIGURE
+	struct extent *ioext = NULL, *memext = NULL;
+#endif
+	uint32_t stat;
+
+	stat = bus_space_read_4(sc->sc_iot, sc->sc_ioh, MVPEX_STAT);
+
+#ifdef PCI_NETBSD_CONFIGURE
+	ioext = extent_create("pexio", iostart, ioend, M_DEVBUF, NULL, 0,
+	    EX_NOWAIT);
+	memext = extent_create("pexmem", memstart, memend, M_DEVBUF, NULL, 0,
+	    EX_NOWAIT);
+	if (ioext != NULL && memext != NULL)
+		pci_configure_bus(pc, ioext, memext, NULL,
+		    MVPEX_STAT_PEXBUSNUM(stat), cacheline_size);
+        else
+		aprint_error_dev(sc->sc_dev, "can't create extent %s%s%s\n",
+		    ioext == NULL ? "io" : "",
+		    ioext == NULL && memext == NULL ? " and " : "",
+		    memext == NULL ? "mem" : "");
+	if (ioext != NULL)
+		extent_destroy(ioext);
+	if (memext != NULL)
+		extent_destroy(memext);
+#endif
+
+	pba.pba_iot = iot;
+	pba.pba_memt = memt;
+	pba.pba_dmat = dmat;
+	pba.pba_dmat64 = NULL;
+	pba.pba_pc = pc;
+	pba.pba_flags = PCI_FLAGS_IO_ENABLED | PCI_FLAGS_MEM_ENABLED;
+	pba.pba_bus = MVPEX_STAT_PEXBUSNUM(stat);
+	pba.pba_bridgetag = NULL;
+	config_found_ia(sc->sc_dev, "pcibus", &pba, NULL);
+}
+
+
+/*
+ * PCI-Express CPU dependent code
+ */
+
+/* ARGSUSED */
+void
+mvpex_attach_hook(device_t parent, device_t self,
+		  struct pcibus_attach_args *pba)
+{
+
+	/* Nothing */
+}
+
+/*
+ * Bit map for configuration register:
+ *   [31]    ConfigEn
+ *   [30:28] Reserved
+ *   [27:24] ExtRegNum (PCI Express only)
+ *   [23:16] BusNum
+ *   [15:11] DevNum
+ *   [10: 8] FunctNum
+ *   [ 7: 2] RegNum
+ *   [ 1: 0] reserved
+ */
+
+/* ARGSUSED */
+int
+mvpex_bus_maxdevs(void *v, int busno)
+{
+
+	return 32;	/* 32 device/bus */
+}
+
+/* ARGSUSED */
+pcitag_t
+mvpex_make_tag(void *v, int bus, int dev, int func)
+{
+
+	return (bus << 16) | (dev << 11) | (func << 8);
+}
+
+/* ARGSUSED */
+void
+mvpex_decompose_tag(void *v, pcitag_t tag, int *bp, int *dp, int *fp)
+{
+
+	if (bp != NULL)
+		*bp = (tag >> 16) & 0xff;
+	if (dp != NULL)
+		*dp = (tag >> 11) & 0x1f;
+	if (fp != NULL)
+		*fp = (tag >> 8) & 0x07;
+}
+
+pcireg_t
+mvpex_conf_read(void *v, pcitag_t tag, int reg)
+{
+	struct mvpex_softc *sc = v;
+	pcireg_t addr, pci_cs;
+	uint32_t stat;
+	int bus, dev, func, pexbus, pexdev;
+
+	mvpex_decompose_tag(v, tag, &bus, &dev, &func);
+
+	stat = bus_space_read_4(sc->sc_iot, sc->sc_ioh, MVPEX_STAT);
+	pexbus = MVPEX_STAT_PEXBUSNUM(stat);
+	pexdev = MVPEX_STAT_PEXDEVNUM(stat);
+	if (bus != pexbus || dev != pexdev)
+		if (stat & MVPEX_STAT_DLDOWN)
+			return -1;
+
+	if (bus == pexbus) {
+		if (pexdev == 0) {
+			if (dev != 1 && dev != pexdev)
+				return -1;
+		} else {
+			if (dev != 0 && dev != pexdev)
+				return -1;
+		}
+		if (func != 0)
+			return -1;
+	}
+
+	addr = ((reg & 0xf00) << 24)  | tag | (reg & 0xfc);
+
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_CA,
+	    addr | MVPEX_CA_CONFIGEN);
+	if ((addr | MVPEX_CA_CONFIGEN) !=
+	    bus_space_read_4(sc->sc_iot, sc->sc_ioh, MVPEX_CA))
+		return -1;
+
+	pci_cs = bus_space_read_4(sc->sc_iot, sc->sc_ioh,
+	    PCI_COMMAND_STATUS_REG);
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh,
+	    PCI_COMMAND_STATUS_REG, pci_cs | PCI_STATUS_MASTER_ABORT);
+
+	return bus_space_read_4(sc->sc_iot, sc->sc_ioh, MVPEX_CD);
+}
+
+void
+mvpex_conf_write(void *v, pcitag_t tag, int reg, pcireg_t data)
+{
+	struct mvpex_softc *sc = v;
+	pcireg_t addr;
+	uint32_t stat;
+	int bus, dev, func, pexbus, pexdev;
+
+	mvpex_decompose_tag(v, tag, &bus, &dev, &func);
+
+	stat = bus_space_read_4(sc->sc_iot, sc->sc_ioh, MVPEX_STAT);
+	pexbus = MVPEX_STAT_PEXBUSNUM(stat);
+	pexdev = MVPEX_STAT_PEXDEVNUM(stat);
+	if (bus != pexbus || dev != pexdev)
+		if (stat & MVPEX_STAT_DLDOWN)
+			return;
+
+	if (bus == pexbus) {
+		if (pexdev == 0) {
+			if (dev != 1 && dev != pexdev)
+				return;
+		} else {
+			if (dev != 0 && dev != pexdev)
+				return;
+		}
+		if (func != 0)
+			return;
+	}
+
+	addr = ((reg & 0xf00) << 24)  | tag | (reg & 0xfc);
+
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_CA,
+	    addr | MVPEX_CA_CONFIGEN);
+	if ((addr | MVPEX_CA_CONFIGEN) !=
+	    bus_space_read_4(sc->sc_iot, sc->sc_ioh, MVPEX_CA))
+		return;
+
+	bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_CD, data);
+}
+
+/* ARGSUSED */
+int
+mvpex_conf_hook(pci_chipset_tag_t pc, int bus, int dev, int func, pcireg_t id)
+{
+
+	if (bus == 0 && dev == 0)	/* don't configure GT */
+		return 0;
+
+	return PCI_CONF_DEFAULT;
+}
+
+int
+mvpex_intr_map(struct pci_attach_args *pa, pci_intr_handle_t *ihp)
+{
+
+	switch (pa->pa_intrpin) {
+	case PCI_INTERRUPT_PIN_A:
+	case PCI_INTERRUPT_PIN_B:
+	case PCI_INTERRUPT_PIN_C:
+	case PCI_INTERRUPT_PIN_D:
+		*ihp = pa->pa_intrpin;
+		return 0;
+	}
+	return -1;
+}
+
+/* ARGSUSED */
+const char *
+mvpex_intr_string(void *v, pci_intr_handle_t pin)
+{
+	static char intrstr[32];
+
+	switch (pin) {
+	case PCI_INTERRUPT_PIN_A:
+	case PCI_INTERRUPT_PIN_B:
+	case PCI_INTERRUPT_PIN_C:
+	case PCI_INTERRUPT_PIN_D:
+		break;
+
+	default:
+		return NULL;
+	}
+	snprintf(intrstr, sizeof(intrstr), "interrupt pin INT%c#",
+	    (char)('A' - 1 + pin));
+
+	return intrstr;
+}
+
+/* ARGSUSED */
+const struct evcnt *
+mvpex_intr_evcnt(void *v, pci_intr_handle_t pin)
+{
+
+	return NULL;
+}
+
+/*
+ * XXXX: Shall these functions use mutex(9) instead of spl(9)?
+ *       MV78200 and MV64360 and after supports SMP.
+ */
+
+/* ARGSUSED */
+void *
+mvpex_intr_establish(void *v, pci_intr_handle_t pin, int ipl,
+		     int (*intrhand)(void *), void *intrarg)
+{
+	struct mvpex_softc *sc = (struct mvpex_softc *)v;
+	struct mvpex_intrtab *intrtab;
+	struct mvpex_intrhand *pexih;
+	uint32_t mask;
+	int ih = pin - 1, s;
+
+	intrtab = &sc->sc_intrtab[ih];
+
+	KASSERT(pin == intrtab->intr_pin);
+
+	pexih = malloc(sizeof(*pexih), M_DEVBUF, M_NOWAIT);
+	if (pexih == NULL)
+		return NULL;
+
+	pexih->ih_func = intrhand;
+	pexih->ih_arg = intrarg;
+	pexih->ih_type = ipl;
+	pexih->ih_intrtab = intrtab;
+	evcnt_attach_dynamic(&pexih->ih_evcnt, EVCNT_TYPE_INTR, NULL, "mvpex",
+	    mvpex_intr_string(v, pin));
+
+	s = splhigh();
+
+	/* First, link it into the tables. */
+	LIST_INSERT_HEAD(&intrtab->intr_list, pexih, ih_q);
+
+	/* Now enable it. */
+	if (intrtab->intr_refcnt++ == 0) {
+		mask = bus_space_read_4(sc->sc_iot, sc->sc_ioh, MVPEX_IM);
+		mask |= MVPEX_I_PIN(intrtab->intr_pin);
+		bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_IM, mask);
+	}
+
+	splx(s);
+
+	return pexih;
+}
+
+void
+mvpex_intr_disestablish(void *v, void *ih)
+{
+	struct mvpex_softc *sc = (struct mvpex_softc *)v;
+	struct mvpex_intrtab *intrtab;
+	struct mvpex_intrhand *pexih = ih;
+	uint32_t mask;
+	int s;
+
+	intrtab = pexih->ih_intrtab;
+
+	s = splhigh();
+
+	/*
+	 * First, remove it from the table.
+	 */
+	LIST_REMOVE(pexih, ih_q);
+
+	/* Now, disable it, if there is nothing remaining on the list. */
+	if (intrtab->intr_refcnt-- == 1) {
+		mask = bus_space_read_4(sc->sc_iot, sc->sc_ioh, MVPEX_IM);
+		mask &= ~MVPEX_I_PIN(intrtab->intr_pin);
+		bus_space_write_4(sc->sc_iot, sc->sc_ioh, MVPEX_IM, mask);
+	}
+	splx(s);
+
+	free(pexih, M_DEVBUF);
+}
+#endif	/* NPCI > 0 */
Index: src/sys/dev/marvell/mvpexreg.h
diff -u /dev/null src/sys/dev/marvell/mvpexreg.h:1.1
--- /dev/null	Tue Jul 13 11:16:03 2010
+++ src/sys/dev/marvell/mvpexreg.h	Tue Jul 13 11:16:02 2010
@@ -0,0 +1,144 @@
+/*	$NetBSD: mvpexreg.h,v 1.1 2010/07/13 11:16:02 kiyohara Exp $	*/
+/*
+ * Copyright (c) 2008, 2009 KIYOHARA Takashi
+ * All rights reserved.
+ *
+ * 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 AUTHOR ``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 AUTHOR 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.
+ */
+
+#ifndef _MVPEXREG_H_
+#define _MVPEXREG_H_
+
+
+/*
+ * PCI Express Interface Registers
+ */
+#define MVPEX_SIZE	0x2000                 
+
+
+/* PCI Express BAR Control Registers */
+#define MVPEX_BAR1C		0x1804	/* BAR1 Control */
+#define MVPEX_BAR2C		0x1808	/* BAR2 Control */
+#define MVPEX_BARC_BAREN		(1 << 0)
+#define MVPEX_BARC_BARSIZE_MASK	0xffff0000
+#define MVPEX_BARC_BARSIZE(s)	(((s) - 1) & MVPEX_BARC_BARSIZE_MASK)
+#define MVPEX_ERBARC	0x180c	/* Expresion ROM BAR Control */
+#define MVPEX_ERBARC_EXPROMEN	(1 << 0)
+#define MVPEX_ERBARC_EXPROMSZ_05M	(0 << 19)
+#define MVPEX_ERBARC_EXPROMSZ_1M	(1 << 19)
+#define MVPEX_ERBARC_EXPROMSZ_2M	(2 << 19)
+#define MVPEX_ERBARC_EXPROMSZ_4M	(3 << 19)
+/* PCI Express Configuration Requests Generation Registers */
+#define MVPEX_CA		0x18f8	/* Configuration Address */
+#define MVPEX_CA_CONFIGEN		(1 << 31)
+#define MVPEX_CD		0x18fc	/* Configuration Data */
+/* PCI Express Interrupt Registers */
+#define MVPEX_IC		0x1900	/* Interrupt Cause */
+#define MVPEX_IM		0x1910	/* Interrupt Mask */
+#define MVPEX_I_MDIS			(1 << 1)
+#define MVPEX_I_ERRWRTOREG		(1 << 3)
+#define MVPEX_I_HITDFLTWINERR	(1 << 4)       /* Hit Default Win Err */
+#define MVPEX_I_CORERRDET		(1 << 8)    /* Correctable Err Detect */
+#define MVPEX_I_NFERRDET		(1 << 9)      /* Non-Fatal Err Detect */
+#define MVPEX_I_FERRDET		(1 << 10)	/* Fatal Err Detect */
+#define MVPEX_I_DSTATECHANGE		(1 << 11)	/* Dstate Change */
+#define MVPEX_I_BIST			(1 << 12)     /* PCI-e BIST activated */
+#define MVPEX_I_RCVERRFATAL		(1 << 16)     /* Rcv ERR_FATAL msg */
+#define MVPEX_I_RCVERRNONFATAL	(1 << 17)     /* Rcv ERR_NONFATAL msg */
+#define MVPEX_I_RCVERRCOR		(1 << 18)	/* Rcv ERR_COR msg */
+#define MVPEX_I_RCVCRS		(1 << 19)/* Rcv CRS completion status */
+#define MVPEX_I_PEXSLVHOT		(1 << 20)	/* Rcv Hot Reset */
+#define MVPEX_I_PEXSLVDISLINK	(1 << 21)	/* Slave Disable Link */
+#define MVPEX_I_PEXSLVLB		(1 << 22)	/* Slave Loopback */
+#define MVPEX_I_PEXLINKFAIL		(1 << 23)	/* Link Failure */
+#define MVPEX_I_PIN(p)		(1 << (((p) - 1) + 24))
+/* PCI Express Address Window Control Registers */
+#define MVPEX_NWINDOW	6
+#define MVPEX_W_OFFSET(w)	((w < 4) ? ((w) << 4) : ((w - 4) << 5) + 0x60)
+#define MVPEX_WC(x)		(0x1820 + MVPEX_W_OFFSET(x))	/* Win Ctrl */
+#define MVPEX_WC_WINEN		(1 << 0)
+#define MVPEX_WC_BARMAP_BAR1		(0 << 1)
+#define MVPEX_WC_BARMAP_BAR2		(1 << 1)
+#define MVPEX_WC_TARGET(t)		(((t) & 0xf) << 4)
+#define MVPEX_WC_ATTR(a)		(((a) & 0xff) << 8)
+#define MVPEX_WC_SIZE(s)		(((s) - 1) & 0xffff0000)
+#define MVPEX_WB(x)		(0x1824 + MVPEX_W_OFFSET(x))	/* Win Base */
+#define MVPEX_WB_BASE(b)		((b) & 0xffff0000)
+#define MVPEX_WR(x)		(0x182c + MVPEX_W_OFFSET(x))	/* Win Remap */
+#define MVPEX_WR_REMAP_REMAPEN	(1 << 0)
+#define MVPEX_WR_REMAP(a)		((a) & 0xffff0000)
+#define MVPEX_DWC		0x18b0	/* Default Window Control */
+#define MVPEX_EROMWC		0x18c0	/* Expresion ROM Win Control */
+#define MVPEX_EROMWR		0x18c4	/* Expresion ROM Win Remap */
+/* PCI Express Control and Status Registers */
+#define MVPEX_CTRL		0x1a00	/* Control */
+#define MVPEX_CTRL_CONFROOTCOMPLEX	(1 << 1)
+#define MVPEX_CTRL_CFGMAPTOMEMEN	(1 << 2)
+#define MVPEX_CTRL_CONFMSTRHOTRESET	(1 << 24)	/* Master Hot-Reset */
+#define MVPEX_CTRL_CONFMSTRLB	(1 << 26)	/* Master Loopback */
+#define MVPEX_CTRL_CONFMSTRDISSCRMB	(1 << 27)/* Master Disable Scrambling */
+#define MVPEX_STAT		0x1a04	/* Status */
+#define MVPEX_STAT_DLDOWN		(1 << 0)
+#define MVPEX_STAT_PEXBUSNUM(s)	(((s) & 0x00ff00) >> 8)
+#define MVPEX_STAT_PEXDEVNUM(s)	(((s) & 0x1f0000) >> 16)
+#define MVPEX_STAT_PEXSLVHOTRESET	(1 << 24)     /* Slave Hot Reset (RO) */
+#define MVPEX_STAT_PEXSLVDISLINK	(1 << 25)  /* Slave Disable Link (RO) */
+#define MVPEX_STAT_PEXSLVLB		(1 << 26)      /* Slave Loopback (RO) */
+#define MVPEX_STAT_PEXSLVDISSCRMB	(1 << 27)  /* Slv Dis Scrambling (RO) */
+#define MVPEX_CT		0x1a10	/* Completion Timeout */
+#define MVPEX_FC		0x1a20	/* Flow Control */
+#define MVPEX_AT		0x1a40	/* Acknowledge Timers (1X) */
+#define MVPEX_TLC		0x1ab0	/* TL Control */
+/* PCI Express Configuration Header Registers */
+/* see at dev/pci/pcireg.h from 0x00 to 0x3c. */
+#define MVPEX_BAR0INTERNAL	0x0010	/* BAR0 Internal */
+#define MVPEX_BAR0INTERNAL_MASK	0xfff00000
+#define MVPEX_BAR0INTERNALH	0x0014	/* BAR0 Internal (High) */
+#define MVPEX_BAR1		0x0018	/* BAR1 */
+#define MVPEX_BAR1H		0x001c	/* BAR1 */
+#define MVPEX_BAR2		0x0020	/* BAR2 */
+#define MVPEX_BAR2H		0x0024	/* BAR2 */
+#define MVPEX_BAR_MASK		0xffff0000
+#define MVPEX_PMCH		0x0040	/* Power Management Cap Header */
+#define MVPEX_PMCSH		0x0044	/*     Control and Status */
+#define MVPEX_MSIMC		0x0050	/* MSI Message Control */
+#define MVPEX_MSIMA		0x0054	/* MSI Message Address */
+#define MVPEX_MSIMAH		0x0058	/* MSI Message Address (High) */
+#define MVPEX_MSIMD		0x005c	/* MSI Message Data */
+#define MVPEX_CAP		0x0060	/* Capability */
+#define MVPEX_DC		0x0064	/* Device Capabilities */
+#define MVPEX_DCS		0x0068	/* Device Control Status */
+#define MVPEX_LC		0x006c	/* Link Capabilities */
+#define MVPEX_LCS		0x0070	/* Link Control Status */
+#define MVPEX_AERH		0x0100	/* Advanced Error Report Header */
+#define MVPEX_UESTAT		0x0104	/* Uncorrectable Error Status */
+#define MVPEX_UEM		0x0108	/* Uncorrectable Error Mask */
+#define MVPEX_UESEVERITY	0x010c	/* Uncorrectable Error Serverity */
+#define MVPEX_CES		0x0110	/* Correctable Error Status */
+#define MVPEX_CEM		0x0114	/* Correctable Error Mask */
+#define MVPEX_AECC		0x0118	/* Advanced Error Cap and Ctrl */
+#define MVPEX_HLDWORD1	0x011c	/* Header Log First DWORD */
+#define MVPEX_HLDWORD2	0x0120	/* Header Log Second DWORD */
+#define MVPEX_HLDWORD3	0x0124	/* Header Log Third DWORD */
+#define MVPEX_HLDWORD4	0x0128	/* Header Log Fourth DWORD */
+
+#endif	/* _MVPEXREG_H_ */
Index: src/sys/dev/marvell/mvpexvar.h
diff -u /dev/null src/sys/dev/marvell/mvpexvar.h:1.1
--- /dev/null	Tue Jul 13 11:16:03 2010
+++ src/sys/dev/marvell/mvpexvar.h	Tue Jul 13 11:16:02 2010
@@ -0,0 +1,77 @@
+/*	$NetBSD: mvpexvar.h,v 1.1 2010/07/13 11:16:02 kiyohara Exp $	*/
+/*
+ * Copyright (c) 2009 KIYOHARA Takashi
+ * All rights reserved.
+ *
+ * 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 AUTHOR ``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 AUTHOR 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.
+ */
+
+#ifndef	_MVPEXVAR_H_
+#define	_MVPEXVAR_H_
+
+struct mvpex_intrhand {
+	LIST_ENTRY(mvpex_intrhand) ih_q;
+	int (*ih_func)(void *);
+	void *ih_arg;
+	int ih_type;
+
+	void *ih_intrtab;
+
+	struct evcnt ih_evcnt;
+};
+
+struct mvpex_intrtab {
+	int intr_pin;
+	int intr_refcnt;
+	LIST_HEAD(, mvpex_intrhand) intr_list;
+};
+
+struct mvpex_softc {
+	device_t sc_dev;
+
+	int sc_model;
+	int sc_rev;
+
+	bus_size_t sc_offset;
+	bus_space_tag_t sc_iot;
+	bus_space_handle_t sc_ioh;
+
+	struct mvpex_intrtab sc_intrtab[PCI_INTERRUPT_PIN_MAX];
+};
+
+#if NPCI > 0
+void mvpex_attach_hook(device_t, device_t, struct pcibus_attach_args *);
+int mvpex_bus_maxdevs(void *, int);
+pcitag_t mvpex_make_tag(void *, int, int, int);
+void mvpex_decompose_tag(void *, pcitag_t, int *, int *, int *);
+pcireg_t mvpex_conf_read(void *, pcitag_t, int);
+void mvpex_conf_write(void *, pcitag_t, int, pcireg_t);
+int mvpex_conf_hook(pci_chipset_tag_t, int, int, int, pcireg_t);
+int mvpex_intr_map(struct pci_attach_args *, pci_intr_handle_t *);
+const char *mvpex_intr_string(void *, pci_intr_handle_t);
+const struct evcnt *mvpex_intr_evcnt(void *, pci_intr_handle_t);
+void *mvpex_intr_establish(void *, pci_intr_handle_t, int, int (*)(void *),
+			   void *);
+void mvpex_intr_disestablish(void *, void *);
+#endif
+
+#endif	/* _MVPEXVAR_H_ */

Reply via email to