mainbus.c revision 1.7
1/*	$NetBSD: mainbus.c,v 1.7 2003/07/15 01:37:34 lukem Exp $	*/
2
3/*
4 * Copyright 2002 Wasabi Systems, Inc.
5 * All rights reserved.
6 *
7 * Written by Simon Burge for Wasabi Systems, Inc.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
11 * are met:
12 * 1. Redistributions of source code must retain the above copyright
13 *    notice, this list of conditions and the following disclaimer.
14 * 2. Redistributions in binary form must reproduce the above copyright
15 *    notice, this list of conditions and the following disclaimer in the
16 *    documentation and/or other materials provided with the distribution.
17 * 3. All advertising materials mentioning features or use of this software
18 *    must display the following acknowledgement:
19 *      This product includes software developed for the NetBSD Project by
20 *      Wasabi Systems, Inc.
21 * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 *    or promote products derived from this software without specific prior
23 *    written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL WASABI SYSTEMS, INC
29 * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <sys/cdefs.h>
39__KERNEL_RCSID(0, "$NetBSD: mainbus.c,v 1.7 2003/07/15 01:37:34 lukem Exp $");
40
41#include "opt_pci.h"
42
43#include <sys/param.h>
44#include <sys/systm.h>
45#include <sys/device.h>
46#if defined(PCI_NETBSD_CONFIGURE)
47#include <sys/extent.h>
48#include <sys/malloc.h>
49#endif
50
51#include <dev/pci/pcivar.h>
52#if defined(PCI_NETBSD_CONFIGURE)
53#include <dev/pci/pciconf.h>
54#endif
55
56#include <mips/cache.h>
57#include <mips/cpuregs.h>
58
59#include <evbmips/malta/autoconf.h>
60#include <evbmips/malta/maltareg.h>
61#include <evbmips/malta/maltavar.h>
62
63#if defined(PCI_NETBSD_ENABLE_IDE)
64#include <dev/pci/pciide_piix_reg.h>
65#endif /* PCI_NETBSD_ENABLE_IDE */
66
67#include "locators.h"
68#include "pci.h"
69
70static int	mainbus_match(struct device *, struct cfdata *, void *);
71static void	mainbus_attach(struct device *, struct device *, void *);
72static int	mainbus_submatch(struct device *, struct cfdata *, void *);
73static int	mainbus_print(void *, const char *);
74
75CFATTACH_DECL(mainbus, sizeof(struct device),
76    mainbus_match, mainbus_attach, NULL, NULL);
77
78/* There can be only one. */
79int	mainbus_found;
80
81struct mainbusdev {
82	const char *md_name;
83	bus_addr_t md_addr;
84	int md_intr;
85};
86
87struct mainbusdev mainbusdevs[] = {
88	{ "cpu",		-1,			-1 },
89	{ "gt",			MALTA_CORECTRL_BASE,	-1 },
90	{ "com",		MALTA_CBUSUART,		MALTA_CBUSUART_INTR },
91	{ "i2c",		MALTA_I2C_BASE,		-1 },
92	{ "gpio",		MALTA_GPIO_BASE,	-1 },
93	{ NULL,			0,			0 },
94};
95
96static int
97mainbus_match(parent, match, aux)
98	struct device *parent;
99	struct cfdata *match;
100	void *aux;
101{
102
103	if (mainbus_found)
104		return (0);
105
106	return (1);
107}
108
109static void
110mainbus_attach(parent, self, aux)
111	struct device *parent;
112	struct device *self;
113	void *aux;
114{
115	struct mainbus_attach_args ma;
116	struct mainbusdev *md;
117#if defined(PCI_NETBSD_CONFIGURE)
118	struct extent *ioext, *memext;
119#endif
120#if defined(PCI_NETBSD_ENABLE_IDE)
121	struct malta_config *mcp = &malta_configuration;
122	pci_chipset_tag_t pc = &mcp->mc_pc;
123	pcitag_t idetag;
124	pcireg_t idetim;
125#endif
126
127	mainbus_found = 1;
128	printf("\n");
129
130#if defined(PCI_NETBSD_CONFIGURE)
131	ioext = extent_create("pciio",  0x00001000, 0x0000efff,
132	    M_DEVBUF, NULL, 0, EX_NOWAIT);
133	memext = extent_create("pcimem", MALTA_PCIMEM1_BASE,
134	    MALTA_PCIMEM1_BASE + MALTA_PCIMEM1_SIZE,
135	    M_DEVBUF, NULL, 0, EX_NOWAIT);
136
137	pci_configure_bus(pc, ioext, memext, NULL, 0, mips_dcache_align);
138	extent_destroy(ioext);
139	extent_destroy(memext);
140#endif /* PCI_NETBSD_CONFIGURE */
141
142#if defined(PCI_NETBSD_ENABLE_IDE)
143	/*
144	 * Perhaps PMON has not enabled the IDE controller.  Easy to
145	 * fix -- just set the ENABLE bits for each channel in the
146	 * IDETIM register.  Just clear all the bits for the channel
147	 * except for the ENABLE bits -- the `pciide' driver will
148	 * properly configure it later.
149	 */
150	idetim = 0;
151	if (PCI_NETBSD_ENABLE_IDE & 0x01)
152		idetim = PIIX_IDETIM_SET(idetim, PIIX_IDETIM_IDE, 0);
153	if (PCI_NETBSD_ENABLE_IDE & 0x02)
154		idetim = PIIX_IDETIM_SET(idetim, PIIX_IDETIM_IDE, 1);
155
156	/* pciide0 is pci device 10, function 1 */
157	idetag = pci_make_tag(pc, 0, 10, 1);
158	pci_conf_write(pc, idetag, PIIX_IDETIM, idetim);
159#endif
160	for (md = mainbusdevs; md->md_name != NULL; md++) {
161		ma.ma_name = md->md_name;
162		ma.ma_addr = md->md_addr;
163		ma.ma_intr = md->md_intr;
164		(void) config_found_sm(self, &ma, mainbus_print,
165		    mainbus_submatch);
166	}
167}
168
169static int
170mainbus_submatch(struct device *parent, struct cfdata *cf, void *aux)
171{
172	struct mainbus_attach_args *ma = aux;
173
174	if (cf->cf_loc[MAINBUSCF_ADDR] != MAINBUSCF_ADDR_DEFAULT &&
175	    cf->cf_loc[MAINBUSCF_ADDR] != ma->ma_addr)
176		return (0);
177
178	return (config_match(parent, cf, aux));
179}
180
181static int
182mainbus_print(void *aux, const char *pnp)
183{
184	struct mainbus_attach_args *ma = aux;
185
186	if (pnp != 0)
187		return QUIET;
188
189	if (pnp)
190		aprint_normal("%s at %s", ma->ma_name, pnp);
191	if (ma->ma_addr != MAINBUSCF_ADDR_DEFAULT)
192		aprint_normal(" addr 0x%lx", ma->ma_addr);
193
194	return (UNCONF);
195}
196