1996-12-05 04:25:23 +03:00
|
|
|
/* $NetBSD: ppb.c,v 1.13 1996/12/05 01:25:31 cgd Exp $ */
|
1996-02-28 04:46:32 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1996 Christopher G. Demetriou. 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by Christopher G. Demetriou
|
|
|
|
* for the NetBSD Project.
|
|
|
|
* 4. The name of the author may not be used to endorse or promote products
|
|
|
|
* derived from this software without specific prior written permission
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* XXX NOTE:
|
|
|
|
* XXX PROPER OPERATION OF DEVICES BEHIND PPB'S WHICH USE INTERRUPTS
|
|
|
|
* XXX ON SYSTEMS OTHER THAN THE i386 IS NOT POSSIBLE AT THIS TIME.
|
|
|
|
* XXX There needs to be some support for 'swizzling' the interrupt
|
|
|
|
* XXX pin. In general, pci_map_int() has to have a different
|
|
|
|
* XXX interface.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/device.h>
|
|
|
|
|
|
|
|
#include <dev/pci/pcireg.h>
|
|
|
|
#include <dev/pci/pcivar.h>
|
|
|
|
#include <dev/pci/pcidevs.h>
|
|
|
|
#include <dev/pci/ppbreg.h>
|
|
|
|
|
1996-12-05 04:25:23 +03:00
|
|
|
#ifdef __BROKEN_INDIRECT_CONFIG
|
1996-02-28 04:46:32 +03:00
|
|
|
int ppbmatch __P((struct device *, void *, void *));
|
1996-12-05 04:25:23 +03:00
|
|
|
#else
|
|
|
|
int ppbmatch __P((struct device *, struct cfdata *, void *));
|
|
|
|
#endif
|
1996-02-28 04:46:32 +03:00
|
|
|
void ppbattach __P((struct device *, struct device *, void *));
|
|
|
|
|
1996-03-17 03:53:54 +03:00
|
|
|
struct cfattach ppb_ca = {
|
|
|
|
sizeof(struct device), ppbmatch, ppbattach
|
|
|
|
};
|
|
|
|
|
|
|
|
struct cfdriver ppb_cd = {
|
|
|
|
NULL, "ppb", DV_DULL
|
1996-02-28 04:46:32 +03:00
|
|
|
};
|
|
|
|
|
1996-08-28 01:53:46 +04:00
|
|
|
int ppbprint __P((void *, const char *pnp));
|
1996-02-28 04:46:32 +03:00
|
|
|
|
|
|
|
int
|
|
|
|
ppbmatch(parent, match, aux)
|
|
|
|
struct device *parent;
|
1996-12-05 04:25:23 +03:00
|
|
|
#ifdef __BROKEN_INDIRECT_CONFIG
|
|
|
|
void *match;
|
|
|
|
#else
|
|
|
|
struct cfdata *match;
|
|
|
|
#endif
|
|
|
|
void *aux;
|
1996-02-28 04:46:32 +03:00
|
|
|
{
|
|
|
|
struct pci_attach_args *pa = aux;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check the ID register to see that it's a PCI bridge.
|
|
|
|
* If it is, we assume that we can deal with it; it _should_
|
|
|
|
* work in a standardized way...
|
|
|
|
*/
|
|
|
|
if (PCI_CLASS(pa->pa_class) == PCI_CLASS_BRIDGE &&
|
|
|
|
PCI_SUBCLASS(pa->pa_class) == PCI_SUBCLASS_BRIDGE_PCI)
|
|
|
|
return (1);
|
|
|
|
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
ppbattach(parent, self, aux)
|
|
|
|
struct device *parent, *self;
|
|
|
|
void *aux;
|
|
|
|
{
|
|
|
|
struct pci_attach_args *pa = aux;
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
pci_chipset_tag_t pc = pa->pa_pc;
|
1996-02-28 04:46:32 +03:00
|
|
|
struct pcibus_attach_args pba;
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
pcireg_t busdata;
|
1996-02-28 04:46:32 +03:00
|
|
|
char devinfo[256];
|
|
|
|
|
|
|
|
pci_devinfo(pa->pa_id, pa->pa_class, 0, devinfo);
|
1996-10-13 05:37:04 +04:00
|
|
|
printf(": %s (rev. 0x%02x)\n", devinfo, PCI_REVISION(pa->pa_class));
|
1996-02-28 04:46:32 +03:00
|
|
|
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
busdata = pci_conf_read(pc, pa->pa_tag, PPB_REG_BUSINFO);
|
1996-02-28 04:46:32 +03:00
|
|
|
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
if (PPB_BUSINFO_SECONDARY(busdata) == 0) {
|
1996-10-13 05:37:04 +04:00
|
|
|
printf("%s: not configured by system firmware\n",
|
1996-02-28 04:46:32 +03:00
|
|
|
self->dv_xname);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
/*
|
|
|
|
* XXX can't do this, because we're not given our bus number
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
* (we shouldn't need it), and because we've no way to
|
|
|
|
* decompose our tag.
|
1996-02-28 04:46:32 +03:00
|
|
|
*/
|
|
|
|
/* sanity check. */
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
if (pa->pa_bus != PPB_BUSINFO_PRIMARY(busdata))
|
1996-02-28 04:46:32 +03:00
|
|
|
panic("ppbattach: bus in tag (%d) != bus in reg (%d)",
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
pa->pa_bus, PPB_BUSINFO_PRIMARY(busdata));
|
1996-02-28 04:46:32 +03:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Attach the PCI bus than hangs off of it.
|
|
|
|
*/
|
|
|
|
pba.pba_busname = "pci";
|
1996-10-22 02:56:24 +04:00
|
|
|
pba.pba_iot = pa->pa_iot;
|
|
|
|
pba.pba_memt = pa->pa_memt;
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
pba.pba_pc = pc;
|
|
|
|
pba.pba_bus = PPB_BUSINFO_SECONDARY(busdata);
|
|
|
|
pba.pba_intrswiz = pa->pa_intrswiz;
|
|
|
|
pba.pba_intrtag = pa->pa_intrtag;
|
1996-02-28 04:46:32 +03:00
|
|
|
|
1996-03-04 20:02:46 +03:00
|
|
|
config_found(self, &pba, ppbprint);
|
1996-02-28 04:46:32 +03:00
|
|
|
}
|
|
|
|
|
modify these to provide a new, better-specified PCI interface
(soon to be documented on mailing lists; eventually in section 9 manual
pages), most importantly:
(1) support interrupt pin swizzling on non-i386 systems with
PCI-PCI bridges (per PPB spec; done, but meaningless, on i386).
(2) provide pci_{io,mem}_find(), to determine what I/O or memory
space is described by a given PCI configuration space
mapping register.
(3) provide pci_intr_map(), pci_intr_string(), and
pci_intr_{,dis}establish() to manipulate and print info about
PCI interrupts.
(4) make pci functions take as an argument a machine-dependent
cookie, to allow more flexibility in implementation.
1996-03-27 07:08:24 +03:00
|
|
|
int
|
1996-02-28 04:46:32 +03:00
|
|
|
ppbprint(aux, pnp)
|
|
|
|
void *aux;
|
1996-08-28 01:53:46 +04:00
|
|
|
const char *pnp;
|
1996-02-28 04:46:32 +03:00
|
|
|
{
|
|
|
|
struct pcibus_attach_args *pba = aux;
|
|
|
|
|
|
|
|
/* only PCIs can attach to PPBs; easy. */
|
|
|
|
if (pnp)
|
1996-10-13 05:37:04 +04:00
|
|
|
printf("pci at %s", pnp);
|
|
|
|
printf(" bus %d", pba->pba_bus);
|
1996-03-17 04:47:52 +03:00
|
|
|
return (UNCONF);
|
1996-02-28 04:46:32 +03:00
|
|
|
}
|