Home | History | Annotate | Line # | Download | only in xscale
i80321.c revision 1.26
      1  1.26  thorpej /*	$NetBSD: i80321.c,v 1.26 2021/08/07 16:18:46 thorpej Exp $	*/
      2   1.1  thorpej 
      3   1.1  thorpej /*
      4   1.1  thorpej  * Copyright (c) 2002 Wasabi Systems, Inc.
      5   1.1  thorpej  * All rights reserved.
      6   1.1  thorpej  *
      7   1.1  thorpej  * Written by Jason R. Thorpe for Wasabi Systems, Inc.
      8   1.1  thorpej  *
      9   1.1  thorpej  * Redistribution and use in source and binary forms, with or without
     10   1.1  thorpej  * modification, are permitted provided that the following conditions
     11   1.1  thorpej  * are met:
     12   1.1  thorpej  * 1. Redistributions of source code must retain the above copyright
     13   1.1  thorpej  *    notice, this list of conditions and the following disclaimer.
     14   1.1  thorpej  * 2. Redistributions in binary form must reproduce the above copyright
     15   1.1  thorpej  *    notice, this list of conditions and the following disclaimer in the
     16   1.1  thorpej  *    documentation and/or other materials provided with the distribution.
     17   1.1  thorpej  * 3. All advertising materials mentioning features or use of this software
     18   1.1  thorpej  *    must display the following acknowledgement:
     19   1.1  thorpej  *	This product includes software developed for the NetBSD Project by
     20   1.1  thorpej  *	Wasabi Systems, Inc.
     21   1.1  thorpej  * 4. The name of Wasabi Systems, Inc. may not be used to endorse
     22   1.1  thorpej  *    or promote products derived from this software without specific prior
     23   1.1  thorpej  *    written permission.
     24   1.1  thorpej  *
     25   1.1  thorpej  * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
     26   1.1  thorpej  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     27   1.1  thorpej  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     28   1.1  thorpej  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
     29   1.1  thorpej  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     30   1.1  thorpej  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     31   1.1  thorpej  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     32   1.1  thorpej  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     33   1.1  thorpej  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     34   1.1  thorpej  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     35   1.1  thorpej  * POSSIBILITY OF SUCH DAMAGE.
     36   1.1  thorpej  */
     37   1.1  thorpej 
     38   1.1  thorpej /*
     39   1.1  thorpej  * Autoconfiguration support for the Intel i80321 I/O Processor.
     40   1.1  thorpej  */
     41  1.14    lukem 
     42  1.14    lukem #include <sys/cdefs.h>
     43  1.26  thorpej __KERNEL_RCSID(0, "$NetBSD: i80321.c,v 1.26 2021/08/07 16:18:46 thorpej Exp $");
     44   1.1  thorpej 
     45   1.1  thorpej #include <sys/param.h>
     46   1.1  thorpej #include <sys/systm.h>
     47   1.1  thorpej #include <sys/device.h>
     48   1.1  thorpej 
     49   1.6  thorpej #define	_ARM32_BUS_DMA_PRIVATE
     50  1.22   dyoung #include <sys/bus.h>
     51   1.1  thorpej 
     52   1.1  thorpej #include <arm/xscale/i80321reg.h>
     53   1.1  thorpej #include <arm/xscale/i80321var.h>
     54   1.1  thorpej 
     55  1.19    gavan #include "opt_i80321.h"
     56  1.19    gavan 
     57   1.1  thorpej /*
     58  1.18      wiz  * Statically-allocated bus_space structure used to access the
     59   1.1  thorpej  * i80321's own registers.
     60   1.1  thorpej  */
     61   1.1  thorpej struct bus_space i80321_bs_tag;
     62   1.1  thorpej 
     63   1.1  thorpej /*
     64   1.1  thorpej  * There can be only one i80321, so we keep a global pointer to
     65   1.1  thorpej  * the softc, so board-specific code can use features of the
     66   1.1  thorpej  * i80321 without having to have a handle on the softc itself.
     67   1.1  thorpej  */
     68   1.1  thorpej struct i80321_softc *i80321_softc;
     69   1.1  thorpej 
     70   1.6  thorpej static int i80321_iopxs_print(void *, const char *);
     71   1.1  thorpej 
     72   1.4  thorpej /* Built-in devices. */
     73   1.4  thorpej static const struct iopxs_device {
     74   1.4  thorpej 	const char *id_name;
     75   1.4  thorpej 	bus_addr_t id_offset;
     76   1.4  thorpej 	bus_size_t id_size;
     77   1.4  thorpej } iopxs_devices[] = {
     78   1.4  thorpej 	{ "iopaau",	VERDE_AAU_BASE,		VERDE_AAU_SIZE },
     79  1.15  thorpej /*	{ "iopdma",	VERDE_DMA_BASE0,	VERDE_DMA_CHSIZE },	*/
     80  1.15  thorpej /*	{ "iopdma",	VERDE_DMA_BASE1,	VERDE_DMA_CHSIZE },	*/
     81  1.15  thorpej 	{ "iopiic",	VERDE_I2C_BASE0,	VERDE_I2C_CHSIZE },
     82  1.15  thorpej 	{ "iopiic",	VERDE_I2C_BASE1,	VERDE_I2C_CHSIZE },
     83  1.15  thorpej /*	{ "iopssp",	VERDE_SSP_BASE,		VERDE_SSP_SIZE },	*/
     84  1.12   briggs 	{ "iopmu",	VERDE_MU_BASE,		VERDE_MU_SIZE },
     85   1.4  thorpej 	{ "iopwdog",	0,			0 },
     86   1.4  thorpej 	{ NULL,		0,			0 }
     87   1.4  thorpej };
     88   1.4  thorpej 
     89   1.6  thorpej static void i80321_pci_dma_init(struct i80321_softc *);
     90   1.6  thorpej 
     91   1.1  thorpej /*
     92   1.1  thorpej  * i80321_attach:
     93   1.1  thorpej  *
     94   1.1  thorpej  *	Board-independent attach routine for the i80321.
     95   1.1  thorpej  */
     96   1.1  thorpej void
     97   1.1  thorpej i80321_attach(struct i80321_softc *sc)
     98   1.1  thorpej {
     99   1.1  thorpej 	struct pcibus_attach_args pba;
    100   1.4  thorpej 	const struct iopxs_device *id;
    101   1.4  thorpej 	struct iopxs_attach_args ia;
    102   1.1  thorpej 	pcireg_t preg;
    103   1.1  thorpej 
    104   1.1  thorpej 	i80321_softc = sc;
    105   1.1  thorpej 
    106   1.1  thorpej 	/*
    107   1.1  thorpej 	 * Slice off some useful subregion handles.
    108   1.1  thorpej 	 */
    109   1.1  thorpej 
    110   1.1  thorpej 	if (bus_space_subregion(sc->sc_st, sc->sc_sh, VERDE_ATU_BASE,
    111   1.1  thorpej 	    VERDE_ATU_SIZE, &sc->sc_atu_sh))
    112   1.8   provos 		panic("%s: unable to subregion ATU registers",
    113  1.23     matt 		    device_xname(sc->sc_dev));
    114   1.1  thorpej 
    115   1.1  thorpej 	/* We expect the Memory Controller to be already sliced off. */
    116   1.1  thorpej 
    117   1.1  thorpej 	/*
    118   1.1  thorpej 	 * Program the Inbound windows.
    119   1.1  thorpej 	 */
    120  1.10   briggs 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh, ATU_IALR0,
    121  1.10   briggs 	    (0xffffffff - (sc->sc_iwin[0].iwin_size - 1)) & 0xffffffc0);
    122  1.10   briggs 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh, ATU_IATVR0,
    123  1.10   briggs 	    sc->sc_iwin[0].iwin_xlate);
    124   1.1  thorpej 	if (sc->sc_is_host) {
    125   1.1  thorpej 		bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    126   1.1  thorpej 		    PCI_MAPREG_START, sc->sc_iwin[0].iwin_base_lo);
    127   1.1  thorpej 		bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    128   1.1  thorpej 		    PCI_MAPREG_START + 0x04, sc->sc_iwin[0].iwin_base_hi);
    129  1.12   briggs 	} else {
    130  1.12   briggs 		sc->sc_iwin[0].iwin_base_lo = bus_space_read_4(sc->sc_st,
    131  1.12   briggs 		    sc->sc_atu_sh, PCI_MAPREG_START);
    132  1.12   briggs 		sc->sc_iwin[0].iwin_base_hi = bus_space_read_4(sc->sc_st,
    133  1.12   briggs 		    sc->sc_atu_sh, PCI_MAPREG_START + 0x04);
    134  1.12   briggs 		sc->sc_iwin[0].iwin_base_lo =
    135  1.12   briggs 		    PCI_MAPREG_MEM_ADDR(sc->sc_iwin[0].iwin_base_lo);
    136   1.1  thorpej 	}
    137   1.1  thorpej 
    138  1.10   briggs 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh, ATU_IALR1,
    139  1.10   briggs 	    (0xffffffff - (sc->sc_iwin[1].iwin_size - 1)) & 0xffffffc0);
    140  1.10   briggs 	/* no xlate for window 1 */
    141   1.1  thorpej 	if (sc->sc_is_host) {
    142   1.1  thorpej 		bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    143   1.1  thorpej 		    PCI_MAPREG_START + 0x08, sc->sc_iwin[1].iwin_base_lo);
    144   1.1  thorpej 		bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    145   1.1  thorpej 		    PCI_MAPREG_START + 0x0c, sc->sc_iwin[1].iwin_base_hi);
    146  1.12   briggs 	} else {
    147  1.12   briggs 		sc->sc_iwin[1].iwin_base_lo = bus_space_read_4(sc->sc_st,
    148  1.12   briggs 		    sc->sc_atu_sh, PCI_MAPREG_START + 0x08);
    149  1.12   briggs 		sc->sc_iwin[1].iwin_base_hi = bus_space_read_4(sc->sc_st,
    150  1.12   briggs 		    sc->sc_atu_sh, PCI_MAPREG_START + 0x0c);
    151  1.12   briggs 		sc->sc_iwin[1].iwin_base_lo =
    152  1.12   briggs 		    PCI_MAPREG_MEM_ADDR(sc->sc_iwin[1].iwin_base_lo);
    153   1.1  thorpej 	}
    154   1.1  thorpej 
    155  1.10   briggs 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh, ATU_IALR2,
    156  1.10   briggs 	    (0xffffffff - (sc->sc_iwin[2].iwin_size - 1)) & 0xffffffc0);
    157  1.10   briggs 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh, ATU_IATVR2,
    158  1.10   briggs 	    sc->sc_iwin[2].iwin_xlate);
    159   1.1  thorpej 	if (sc->sc_is_host) {
    160   1.1  thorpej 		bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    161   1.1  thorpej 		    PCI_MAPREG_START + 0x10, sc->sc_iwin[2].iwin_base_lo);
    162   1.1  thorpej 		bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    163   1.1  thorpej 		    PCI_MAPREG_START + 0x14, sc->sc_iwin[2].iwin_base_hi);
    164  1.12   briggs 	} else {
    165  1.12   briggs 		sc->sc_iwin[2].iwin_base_lo = bus_space_read_4(sc->sc_st,
    166  1.12   briggs 		    sc->sc_atu_sh, PCI_MAPREG_START + 0x10);
    167  1.12   briggs 		sc->sc_iwin[2].iwin_base_hi = bus_space_read_4(sc->sc_st,
    168  1.12   briggs 		    sc->sc_atu_sh, PCI_MAPREG_START + 0x14);
    169  1.12   briggs 		sc->sc_iwin[2].iwin_base_lo =
    170  1.12   briggs 		    PCI_MAPREG_MEM_ADDR(sc->sc_iwin[2].iwin_base_lo);
    171   1.1  thorpej 	}
    172   1.1  thorpej 
    173  1.10   briggs 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh, ATU_IALR3,
    174  1.10   briggs 	    (0xffffffff - (sc->sc_iwin[3].iwin_size - 1)) & 0xffffffc0);
    175  1.10   briggs 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh, ATU_IATVR3,
    176  1.10   briggs 	    sc->sc_iwin[3].iwin_xlate);
    177   1.1  thorpej 	if (sc->sc_is_host) {
    178   1.1  thorpej 		bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    179   1.1  thorpej 		    ATU_IABAR3, sc->sc_iwin[3].iwin_base_lo);
    180   1.1  thorpej 		bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    181   1.1  thorpej 		    ATU_IAUBAR3, sc->sc_iwin[3].iwin_base_hi);
    182  1.12   briggs 	} else {
    183  1.12   briggs 		sc->sc_iwin[3].iwin_base_lo = bus_space_read_4(sc->sc_st,
    184  1.12   briggs 		    sc->sc_atu_sh, ATU_IABAR3);
    185  1.12   briggs 		sc->sc_iwin[3].iwin_base_hi = bus_space_read_4(sc->sc_st,
    186  1.12   briggs 		    sc->sc_atu_sh, ATU_IAUBAR3);
    187  1.12   briggs 		sc->sc_iwin[3].iwin_base_lo =
    188  1.12   briggs 		    PCI_MAPREG_MEM_ADDR(sc->sc_iwin[3].iwin_base_lo);
    189   1.1  thorpej 	}
    190   1.1  thorpej 
    191   1.1  thorpej 	/*
    192   1.1  thorpej 	 * Mask (disable) the ATU interrupt sources.
    193   1.1  thorpej 	 * XXX May want to revisit this if we encounter
    194   1.1  thorpej 	 * XXX an application that wants it.
    195   1.1  thorpej 	 */
    196   1.1  thorpej 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    197   1.1  thorpej 	    ATU_ATUIMR,
    198   1.1  thorpej 	    ATUIMR_IMW1BU|ATUIMR_ISCEM|ATUIMR_RSCEM|ATUIMR_PST|
    199   1.1  thorpej 	    ATUIMR_DPE|ATUIMR_P_SERR_ASRT|ATUIMR_PMA|ATUIMR_PTAM|
    200   1.1  thorpej 	    ATUIMR_PTAT|ATUIMR_PMPE);
    201   1.1  thorpej 
    202   1.1  thorpej 	/*
    203   1.1  thorpej 	 * Program the outbound windows.
    204   1.1  thorpej 	 */
    205   1.1  thorpej 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    206   1.1  thorpej 	    ATU_OIOWTVR, sc->sc_ioout_xlate);
    207   1.1  thorpej 
    208  1.12   briggs 	if (!sc->sc_is_host) {
    209  1.12   briggs 		sc->sc_owin[0].owin_xlate_lo = sc->sc_iwin[1].iwin_base_lo;
    210  1.12   briggs 		sc->sc_owin[0].owin_xlate_hi = sc->sc_iwin[1].iwin_base_hi;
    211  1.12   briggs 	}
    212   1.1  thorpej 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    213   1.1  thorpej 	    ATU_OMWTVR0, sc->sc_owin[0].owin_xlate_lo);
    214   1.1  thorpej 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    215   1.1  thorpej 	    ATU_OUMWTVR0, sc->sc_owin[0].owin_xlate_hi);
    216   1.1  thorpej 
    217   1.1  thorpej 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    218   1.1  thorpej 	    ATU_OMWTVR1, sc->sc_owin[1].owin_xlate_lo);
    219   1.1  thorpej 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    220   1.1  thorpej 	    ATU_OUMWTVR1, sc->sc_owin[1].owin_xlate_hi);
    221   1.1  thorpej 
    222   1.1  thorpej 	/*
    223   1.1  thorpej 	 * Set up the ATU configuration register.  All we do
    224   1.1  thorpej 	 * right now is enable Outbound Windows.
    225   1.1  thorpej 	 */
    226  1.19    gavan #ifdef I80321_USE_DIRECT_WIN
    227  1.19    gavan 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh, ATU_ATUCR,
    228  1.19    gavan 	    ATUCR_OUT_EN | ATUCR_DAE);
    229  1.19    gavan #else
    230   1.1  thorpej 	bus_space_write_4(sc->sc_st, sc->sc_atu_sh, ATU_ATUCR,
    231   1.1  thorpej 	    ATUCR_OUT_EN);
    232  1.19    gavan #endif
    233   1.1  thorpej 
    234   1.1  thorpej 	/*
    235   1.1  thorpej 	 * Enable bus mastering, memory access, SERR, and parity
    236   1.1  thorpej 	 * checking on the ATU.
    237   1.1  thorpej 	 */
    238   1.1  thorpej 	if (sc->sc_is_host) {
    239   1.1  thorpej 		preg = bus_space_read_4(sc->sc_st, sc->sc_atu_sh,
    240   1.1  thorpej 		    PCI_COMMAND_STATUS_REG);
    241   1.1  thorpej 		preg |= PCI_COMMAND_MEM_ENABLE | PCI_COMMAND_MASTER_ENABLE |
    242   1.1  thorpej 		    PCI_COMMAND_PARITY_ENABLE | PCI_COMMAND_SERR_ENABLE;
    243   1.1  thorpej 		bus_space_write_4(sc->sc_st, sc->sc_atu_sh,
    244   1.1  thorpej 		    PCI_COMMAND_STATUS_REG, preg);
    245   1.1  thorpej 	}
    246   1.1  thorpej 
    247   1.5  thorpej 	/* Initialize the bus space tags. */
    248   1.1  thorpej 	i80321_io_bs_init(&sc->sc_pci_iot, sc);
    249   1.1  thorpej 	i80321_mem_bs_init(&sc->sc_pci_memt, sc);
    250   1.5  thorpej 
    251   1.5  thorpej 	/* Initialize the PCI chipset tag. */
    252   1.5  thorpej 	i80321_pci_init(&sc->sc_pci_chipset, sc);
    253   1.5  thorpej 
    254   1.5  thorpej 	/* Initialize the DMA tags. */
    255   1.6  thorpej 	i80321_pci_dma_init(sc);
    256   1.6  thorpej 	i80321_local_dma_init(sc);
    257   1.1  thorpej 
    258   1.1  thorpej 	/*
    259   1.4  thorpej 	 * Attach all the IOP built-ins.
    260   1.4  thorpej 	 */
    261   1.4  thorpej 	for (id = iopxs_devices; id->id_name != NULL; id++) {
    262   1.4  thorpej 		ia.ia_name = id->id_name;
    263   1.4  thorpej 		ia.ia_st = sc->sc_st;
    264   1.4  thorpej 		ia.ia_sh = sc->sc_sh;
    265   1.4  thorpej 		ia.ia_dmat = &sc->sc_local_dmat;
    266   1.4  thorpej 		ia.ia_offset = id->id_offset;
    267   1.4  thorpej 		ia.ia_size = id->id_size;
    268   1.4  thorpej 
    269  1.25  thorpej 		config_found(sc->sc_dev, &ia, i80321_iopxs_print,
    270  1.26  thorpej 		    CFARGS(.iattr = "iopxs"));
    271   1.4  thorpej 	}
    272   1.4  thorpej 
    273   1.4  thorpej 	/*
    274   1.1  thorpej 	 * Attach the PCI bus.
    275   1.1  thorpej 	 */
    276   1.1  thorpej 	preg = bus_space_read_4(sc->sc_st, sc->sc_atu_sh, ATU_PCIXSR);
    277   1.1  thorpej 	preg = PCIXSR_BUSNO(preg);
    278   1.1  thorpej 	if (preg == 0xff)
    279   1.1  thorpej 		preg = 0;
    280   1.1  thorpej 	pba.pba_iot = &sc->sc_pci_iot;
    281   1.1  thorpej 	pba.pba_memt = &sc->sc_pci_memt;
    282   1.1  thorpej 	pba.pba_dmat = &sc->sc_pci_dmat;
    283  1.13     fvdl 	pba.pba_dmat64 = NULL;
    284   1.1  thorpej 	pba.pba_pc = &sc->sc_pci_chipset;
    285   1.1  thorpej 	pba.pba_bus = preg;
    286   1.2  thorpej 	pba.pba_bridgetag = NULL;
    287   1.1  thorpej 	pba.pba_intrswiz = 0;	/* XXX what if busno != 0? */
    288   1.1  thorpej 	pba.pba_intrtag = 0;
    289  1.21   dyoung 	pba.pba_flags = PCI_FLAGS_IO_OKAY | PCI_FLAGS_MEM_OKAY |
    290   1.1  thorpej 	    PCI_FLAGS_MRL_OKAY | PCI_FLAGS_MRM_OKAY | PCI_FLAGS_MWI_OKAY;
    291  1.25  thorpej 	config_found(sc->sc_dev, &pba, pcibusprint,
    292  1.26  thorpej 	    CFARGS(.iattr = "pcibus"));
    293   1.4  thorpej }
    294   1.4  thorpej 
    295   1.4  thorpej /*
    296   1.4  thorpej  * i80321_iopxs_print:
    297   1.4  thorpej  *
    298   1.4  thorpej  *	Autoconfiguration cfprint routine when attaching
    299   1.4  thorpej  *	to the "iopxs" device.
    300   1.4  thorpej  */
    301   1.6  thorpej static int
    302   1.4  thorpej i80321_iopxs_print(void *aux, const char *pnp)
    303   1.4  thorpej {
    304   1.4  thorpej 
    305   1.4  thorpej 	return (QUIET);
    306   1.1  thorpej }
    307   1.1  thorpej 
    308   1.1  thorpej /*
    309   1.6  thorpej  * i80321_pci_dma_init:
    310   1.6  thorpej  *
    311   1.6  thorpej  *	Initialize the PCI DMA tag.
    312   1.6  thorpej  */
    313   1.6  thorpej static void
    314   1.6  thorpej i80321_pci_dma_init(struct i80321_softc *sc)
    315   1.6  thorpej {
    316   1.6  thorpej 	bus_dma_tag_t dmat = &sc->sc_pci_dmat;
    317   1.6  thorpej 	struct arm32_dma_range *dr = &sc->sc_pci_dma_range;
    318   1.6  thorpej 
    319  1.12   briggs 	dr->dr_sysbase = sc->sc_iwin[2].iwin_xlate;
    320  1.12   briggs 	dr->dr_busbase = PCI_MAPREG_MEM_ADDR(sc->sc_iwin[2].iwin_base_lo);
    321  1.12   briggs 	dr->dr_len = sc->sc_iwin[2].iwin_size;
    322   1.6  thorpej 
    323   1.6  thorpej 	dmat->_ranges = dr;
    324   1.6  thorpej 	dmat->_nranges = 1;
    325   1.6  thorpej 
    326   1.6  thorpej 	dmat->_dmamap_create = _bus_dmamap_create;
    327   1.6  thorpej 	dmat->_dmamap_destroy = _bus_dmamap_destroy;
    328   1.6  thorpej 	dmat->_dmamap_load = _bus_dmamap_load;
    329   1.6  thorpej 	dmat->_dmamap_load_mbuf = _bus_dmamap_load_mbuf;
    330   1.6  thorpej 	dmat->_dmamap_load_uio = _bus_dmamap_load_uio;
    331   1.6  thorpej 	dmat->_dmamap_load_raw = _bus_dmamap_load_raw;
    332   1.6  thorpej 	dmat->_dmamap_unload = _bus_dmamap_unload;
    333   1.7  thorpej 	dmat->_dmamap_sync_pre = _bus_dmamap_sync;
    334   1.7  thorpej 	dmat->_dmamap_sync_post = NULL;
    335   1.6  thorpej 
    336   1.6  thorpej 	dmat->_dmamem_alloc = _bus_dmamem_alloc;
    337   1.6  thorpej 	dmat->_dmamem_free = _bus_dmamem_free;
    338   1.6  thorpej 	dmat->_dmamem_map = _bus_dmamem_map;
    339   1.6  thorpej 	dmat->_dmamem_unmap = _bus_dmamem_unmap;
    340   1.6  thorpej 	dmat->_dmamem_mmap = _bus_dmamem_mmap;
    341  1.24     matt 
    342  1.24     matt 	dmat->_dmatag_subregion = _bus_dmatag_subregion;
    343  1.24     matt 	dmat->_dmatag_destroy = _bus_dmatag_destroy;
    344   1.6  thorpej }
    345   1.6  thorpej 
    346   1.6  thorpej /*
    347   1.6  thorpej  * i80321_local_dma_init:
    348   1.6  thorpej  *
    349   1.6  thorpej  *	Initialize the local DMA tag.
    350   1.6  thorpej  */
    351  1.12   briggs void
    352   1.6  thorpej i80321_local_dma_init(struct i80321_softc *sc)
    353   1.6  thorpej {
    354   1.6  thorpej 	bus_dma_tag_t dmat = &sc->sc_local_dmat;
    355   1.6  thorpej 
    356   1.6  thorpej 	dmat->_ranges = NULL;
    357   1.6  thorpej 	dmat->_nranges = 0;
    358   1.6  thorpej 
    359   1.6  thorpej 	dmat->_dmamap_create = _bus_dmamap_create;
    360   1.6  thorpej 	dmat->_dmamap_destroy = _bus_dmamap_destroy;
    361   1.6  thorpej 	dmat->_dmamap_load = _bus_dmamap_load;
    362   1.6  thorpej 	dmat->_dmamap_load_mbuf = _bus_dmamap_load_mbuf;
    363   1.6  thorpej 	dmat->_dmamap_load_uio = _bus_dmamap_load_uio;
    364   1.6  thorpej 	dmat->_dmamap_load_raw = _bus_dmamap_load_raw;
    365   1.6  thorpej 	dmat->_dmamap_unload = _bus_dmamap_unload;
    366   1.7  thorpej 	dmat->_dmamap_sync_pre = _bus_dmamap_sync;
    367   1.7  thorpej 	dmat->_dmamap_sync_post = NULL;
    368   1.6  thorpej 
    369   1.6  thorpej 	dmat->_dmamem_alloc = _bus_dmamem_alloc;
    370   1.6  thorpej 	dmat->_dmamem_free = _bus_dmamem_free;
    371   1.6  thorpej 	dmat->_dmamem_map = _bus_dmamem_map;
    372   1.6  thorpej 	dmat->_dmamem_unmap = _bus_dmamem_unmap;
    373   1.6  thorpej 	dmat->_dmamem_mmap = _bus_dmamem_mmap;
    374   1.1  thorpej }
    375