817e9fbfd0
r201881 | imp | 2010-01-08 20:08:22 -0700 (Fri, 08 Jan 2010) | 3 lines Rename mips_pcpu_init to mips_pcpu0_init since it applies only to the BSP. Provide a missing prototype. r198669 | rrs | 2009-10-30 02:53:11 -0600 (Fri, 30 Oct 2009) | 5 lines With this commit our friend RMI will now compile. I have not tested it and the chances of it running yet are about ZERO.. but it will now compile. The hard part now begins, making it run ;-) r198154 | rrs | 2009-10-15 15:03:32 -0600 (Thu, 15 Oct 2009) | 10 lines Does 4 things: 1) Adds future RMI directories 2) Places intr_machdep.c in specfic files.arch pointing to the generic intr_machdep.c. This allows us to have an architecture dependant intr_machdep.c (which we will need for RMI) in the machine specific directory 3) removes intr_machdep.c from files.mips 4) Adds some TARGET_XLR_XLS ifdef's for the machine specific intra_machdep.h. We may need to look at finding a better place to put this. But first I want to get this thing compiling. r196836 | gonzo | 2009-09-04 13:02:11 -0600 (Fri, 04 Sep 2009) | 2 lines - Clean out some XXXMIPS comments that's not relevant now r196236 | imp | 2009-08-14 19:03:13 -0600 (Fri, 14 Aug 2009) | 3 lines Fix style error replicated multiple times. Move to mips_bus_space_generic for octeon obio impl. r195496 | imp | 2009-07-09 09:04:52 -0600 (Thu, 09 Jul 2009) | 2 lines Don't force ISA_MIPS32. r195495 | imp | 2009-07-09 09:04:24 -0600 (Thu, 09 Jul 2009) | 4 lines Make the yamon function pointer stuff 64-bit safe. Make the base unsigned long, and sign extend the address of the function we're calling through. r195494 | imp | 2009-07-09 08:54:09 -0600 (Thu, 09 Jul 2009) | 3 lines Addresses should be unsigned long. Make the address constants unsigned long. r194929 | gonzo | 2009-06-24 16:42:52 -0600 (Wed, 24 Jun 2009) | 6 lines - Do not use hardcoded uart speed - Call mips_timer_early_init before initializing uart in order to make DELAY usable for ns8250 driver Submitted by: Neelkanth Natu r194212 | gonzo | 2009-06-14 14:54:46 -0600 (Sun, 14 Jun 2009) | 2 lines - Fix prototypes to make compiler happy r192864 | gonzo | 2009-05-26 16:40:12 -0600 (Tue, 26 May 2009) | 4 lines - Replace CPU_NOFPU and SOFTFLOAT options with CPU_FPU. By default we assume that there is no FPU, because majority of SoC does not have it. r192788 | gonzo | 2009-05-25 22:51:56 -0600 (Mon, 25 May 2009) | 3 lines - Provide proper pre_thread/post_ithread functions for GT PCI controller. r191282 | gonzo | 2009-04-19 16:02:14 -0600 (Sun, 19 Apr 2009) | 3 lines - Make mips_bus_space_generic be of type bus_space_tag_t instead of struct bus_space and update all relevant places. r191084 | gonzo | 2009-04-14 20:28:26 -0600 (Tue, 14 Apr 2009) | 6 lines Use FreeBSD/arm approach for handling bus space access: space tag is a pointer to bus_space structure that defines access methods and hence every bus can define own accessors. Default space is mips_bus_space_generic. It's a simple interface to physical memory, values are read with regard to host system byte order.
184 lines
5.0 KiB
C
184 lines
5.0 KiB
C
/* $NetBSD: obio.c,v 1.11 2003/07/15 00:25:05 lukem Exp $ */
|
|
|
|
/*-
|
|
* Copyright (c) 2001, 2002, 2003 Wasabi Systems, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* Written by Jason R. Thorpe for Wasabi Systems, Inc.
|
|
*
|
|
* 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 for the NetBSD Project by
|
|
* Wasabi Systems, Inc.
|
|
* 4. The name of Wasabi Systems, Inc. may not be used to endorse
|
|
* or promote products derived from this software without specific prior
|
|
* written permission.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``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 WASABI SYSTEMS, INC
|
|
* 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.
|
|
*/
|
|
|
|
/*
|
|
* On-board device autoconfiguration support for Intel IQ80321
|
|
* evaluation boards.
|
|
*/
|
|
|
|
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#include <sys/param.h>
|
|
#include <sys/systm.h>
|
|
#include <sys/bus.h>
|
|
#include <sys/kernel.h>
|
|
#include <sys/module.h>
|
|
#include <sys/rman.h>
|
|
#include <sys/malloc.h>
|
|
|
|
#include <machine/bus.h>
|
|
|
|
#include <mips/malta/maltareg.h>
|
|
#include <mips/malta/obiovar.h>
|
|
|
|
int obio_probe(device_t);
|
|
int obio_attach(device_t);
|
|
|
|
/*
|
|
* A bit tricky and hackish. Since we need OBIO to rely
|
|
* on PCI we make it pseudo-pci device. But there should
|
|
* be only one such device, so we use this static flag
|
|
* to prevent false positives on every real PCI device probe.
|
|
*/
|
|
static int have_one = 0;
|
|
|
|
int
|
|
obio_probe(device_t dev)
|
|
{
|
|
if (!have_one) {
|
|
have_one = 1;
|
|
return 0;
|
|
}
|
|
return (ENXIO);
|
|
}
|
|
|
|
int
|
|
obio_attach(device_t dev)
|
|
{
|
|
struct obio_softc *sc = device_get_softc(dev);
|
|
|
|
sc->oba_st = mips_bus_space_generic;
|
|
sc->oba_addr = MIPS_PHYS_TO_KSEG1(MALTA_UART0ADR);
|
|
sc->oba_size = MALTA_PCIMEM3_SIZE;
|
|
sc->oba_rman.rm_type = RMAN_ARRAY;
|
|
sc->oba_rman.rm_descr = "OBIO I/O";
|
|
if (rman_init(&sc->oba_rman) != 0 ||
|
|
rman_manage_region(&sc->oba_rman,
|
|
sc->oba_addr, sc->oba_addr + sc->oba_size) != 0)
|
|
panic("obio_attach: failed to set up I/O rman");
|
|
sc->oba_irq_rman.rm_type = RMAN_ARRAY;
|
|
sc->oba_irq_rman.rm_descr = "OBIO IRQ";
|
|
|
|
/*
|
|
* This module is intended for UART purposes only and
|
|
* it's IRQ is 4
|
|
*/
|
|
if (rman_init(&sc->oba_irq_rman) != 0 ||
|
|
rman_manage_region(&sc->oba_irq_rman, 4, 4) != 0)
|
|
panic("obio_attach: failed to set up IRQ rman");
|
|
|
|
device_add_child(dev, "uart", 0);
|
|
bus_generic_probe(dev);
|
|
bus_generic_attach(dev);
|
|
|
|
return (0);
|
|
}
|
|
|
|
static struct resource *
|
|
obio_alloc_resource(device_t bus, device_t child, int type, int *rid,
|
|
u_long start, u_long end, u_long count, u_int flags)
|
|
{
|
|
struct resource *rv;
|
|
struct rman *rm;
|
|
bus_space_tag_t bt = 0;
|
|
bus_space_handle_t bh = 0;
|
|
struct obio_softc *sc = device_get_softc(bus);
|
|
|
|
switch (type) {
|
|
case SYS_RES_IRQ:
|
|
rm = &sc->oba_irq_rman;
|
|
break;
|
|
case SYS_RES_MEMORY:
|
|
return (NULL);
|
|
case SYS_RES_IOPORT:
|
|
rm = &sc->oba_rman;
|
|
bt = sc->oba_st;
|
|
bh = sc->oba_addr;
|
|
start = bh;
|
|
break;
|
|
default:
|
|
return (NULL);
|
|
}
|
|
|
|
|
|
rv = rman_reserve_resource(rm, start, end, count, flags, child);
|
|
if (rv == NULL)
|
|
return (NULL);
|
|
if (type == SYS_RES_IRQ)
|
|
return (rv);
|
|
rman_set_rid(rv, *rid);
|
|
rman_set_bustag(rv, bt);
|
|
rman_set_bushandle(rv, bh);
|
|
|
|
if (0) {
|
|
if (bus_activate_resource(child, type, *rid, rv)) {
|
|
rman_release_resource(rv);
|
|
return (NULL);
|
|
}
|
|
}
|
|
return (rv);
|
|
|
|
}
|
|
|
|
static int
|
|
obio_activate_resource(device_t bus, device_t child, int type, int rid,
|
|
struct resource *r)
|
|
{
|
|
return (0);
|
|
}
|
|
static device_method_t obio_methods[] = {
|
|
DEVMETHOD(device_probe, obio_probe),
|
|
DEVMETHOD(device_attach, obio_attach),
|
|
|
|
DEVMETHOD(bus_alloc_resource, obio_alloc_resource),
|
|
DEVMETHOD(bus_activate_resource, obio_activate_resource),
|
|
DEVMETHOD(bus_setup_intr, bus_generic_setup_intr),
|
|
DEVMETHOD(bus_teardown_intr, bus_generic_teardown_intr),
|
|
|
|
{0, 0},
|
|
};
|
|
|
|
static driver_t obio_driver = {
|
|
"obio",
|
|
obio_methods,
|
|
sizeof(struct obio_softc),
|
|
};
|
|
static devclass_t obio_devclass;
|
|
|
|
DRIVER_MODULE(obio, pci, obio_driver, obio_devclass, 0, 0);
|