sbpcihb.c revision 1.3 1 1.3 matt /* $NetBSD: sbpcihb.c,v 1.3 2011/07/10 23:32:03 matt Exp $ */
2 1.2 matt
3 1.2 matt /*
4 1.2 matt * Copyright 2000, 2001
5 1.2 matt * Broadcom Corporation. All rights reserved.
6 1.2 matt *
7 1.2 matt * This software is furnished under license and may be used and copied only
8 1.2 matt * in accordance with the following terms and conditions. Subject to these
9 1.2 matt * conditions, you may download, copy, install, use, modify and distribute
10 1.2 matt * modified or unmodified copies of this software in source and/or binary
11 1.2 matt * form. No title or ownership is transferred hereby.
12 1.2 matt *
13 1.2 matt * 1) Any source code used, modified or distributed must reproduce and
14 1.2 matt * retain this copyright notice and list of conditions as they appear in
15 1.2 matt * the source file.
16 1.2 matt *
17 1.2 matt * 2) No right is granted to use any trade name, trademark, or logo of
18 1.2 matt * Broadcom Corporation. Neither the "Broadcom Corporation" name nor any
19 1.2 matt * trademark or logo of Broadcom Corporation may be used to endorse or
20 1.2 matt * promote products derived from this software without the prior written
21 1.2 matt * permission of Broadcom Corporation.
22 1.2 matt *
23 1.2 matt * 3) THIS SOFTWARE IS PROVIDED "AS-IS" AND ANY EXPRESS OR IMPLIED
24 1.2 matt * WARRANTIES, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF
25 1.2 matt * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
26 1.2 matt * NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL BROADCOM BE LIABLE
27 1.2 matt * FOR ANY DAMAGES WHATSOEVER, AND IN PARTICULAR, BROADCOM SHALL NOT BE
28 1.2 matt * LIABLE FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 1.2 matt * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 1.2 matt * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
31 1.2 matt * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
32 1.2 matt * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
33 1.2 matt * OR OTHERWISE), EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 1.2 matt */
35 1.2 matt
36 1.2 matt /*
37 1.2 matt * Driver for SB-1250 PCI Host Bridge.
38 1.2 matt *
39 1.2 matt * Doesn't have to do much at all.
40 1.2 matt */
41 1.2 matt
42 1.2 matt #include <sys/param.h>
43 1.2 matt #include <sys/device.h>
44 1.2 matt #include <sys/systm.h>
45 1.2 matt
46 1.2 matt #include <dev/pci/pcireg.h>
47 1.2 matt #include <dev/pci/pcivar.h>
48 1.2 matt #include <dev/pci/ppbreg.h>
49 1.2 matt #include <dev/pci/pcidevs.h>
50 1.2 matt
51 1.3 matt #include <mips/locore.h>
52 1.2 matt #include <mips/sibyte/include/sb1250_regs.h>
53 1.2 matt #include <mips/sibyte/include/sb1250_scd.h>
54 1.2 matt
55 1.2 matt static int sbpcihb_match(device_t, cfdata_t, void *);
56 1.2 matt static void sbpcihb_attach(device_t, device_t, void *);
57 1.2 matt
58 1.2 matt CFATTACH_DECL_NEW(sbpcihb, 0,
59 1.2 matt sbpcihb_match, sbpcihb_attach, NULL, NULL);
60 1.2 matt
61 1.2 matt static int
62 1.2 matt sbpcihb_match(device_t parent, cfdata_t match, void *aux)
63 1.2 matt {
64 1.2 matt struct pci_attach_args *pa = aux;
65 1.2 matt int bus, device;
66 1.2 matt
67 1.2 matt pci_decompose_tag(pa->pa_pc, pa->pa_tag, &bus, &device, NULL);
68 1.2 matt
69 1.2 matt /* Check for a vendor/device match. */
70 1.2 matt if (bus == 0 && device == 0
71 1.2 matt && PCI_VENDOR(pa->pa_id) == PCI_VENDOR_SIBYTE
72 1.2 matt && PCI_PRODUCT(pa->pa_id) == PCI_PRODUCT_SIBYTE_BCM1250_PCIHB)
73 1.2 matt return 1;
74 1.2 matt
75 1.2 matt return 0;
76 1.2 matt }
77 1.2 matt
78 1.2 matt static void
79 1.2 matt sbpcihb_attach(device_t parent, device_t self, void *aux)
80 1.2 matt {
81 1.2 matt uint64_t regval;
82 1.2 matt bool host;
83 1.2 matt
84 1.2 matt /* Tell the user whether it's host or device mode. */
85 1.2 matt regval = mips3_ld((void *)MIPS_PHYS_TO_KSEG0(A_SCD_SYSTEM_CFG));
86 1.2 matt host = (regval & M_SYS_PCI_HOST) != 0;
87 1.2 matt
88 1.2 matt aprint_normal(": %s mode\n", host ? "host" : "device");
89 1.2 matt }
90