com_opb.c revision 1.4.4.3 1 1.4.4.3 jdolecek /* $NetBSD: com_opb.c,v 1.4.4.3 2002/10/10 18:35:17 jdolecek Exp $ */
2 1.4.4.2 jdolecek
3 1.4.4.2 jdolecek /*
4 1.4.4.2 jdolecek * Copyright 2001 Wasabi Systems, Inc.
5 1.4.4.2 jdolecek * All rights reserved.
6 1.4.4.2 jdolecek *
7 1.4.4.2 jdolecek * Written by Eduardo Horvath and Simon Burge for Wasabi Systems, Inc.
8 1.4.4.2 jdolecek *
9 1.4.4.2 jdolecek * Redistribution and use in source and binary forms, with or without
10 1.4.4.2 jdolecek * modification, are permitted provided that the following conditions
11 1.4.4.2 jdolecek * are met:
12 1.4.4.2 jdolecek * 1. Redistributions of source code must retain the above copyright
13 1.4.4.2 jdolecek * notice, this list of conditions and the following disclaimer.
14 1.4.4.2 jdolecek * 2. Redistributions in binary form must reproduce the above copyright
15 1.4.4.2 jdolecek * notice, this list of conditions and the following disclaimer in the
16 1.4.4.2 jdolecek * documentation and/or other materials provided with the distribution.
17 1.4.4.2 jdolecek * 3. All advertising materials mentioning features or use of this software
18 1.4.4.2 jdolecek * must display the following acknowledgement:
19 1.4.4.2 jdolecek * This product includes software developed for the NetBSD Project by
20 1.4.4.2 jdolecek * Wasabi Systems, Inc.
21 1.4.4.2 jdolecek * 4. The name of Wasabi Systems, Inc. may not be used to endorse
22 1.4.4.2 jdolecek * or promote products derived from this software without specific prior
23 1.4.4.2 jdolecek * written permission.
24 1.4.4.2 jdolecek *
25 1.4.4.2 jdolecek * THIS SOFTWARE IS PROVIDED BY WASABI SYSTEMS, INC. ``AS IS'' AND
26 1.4.4.2 jdolecek * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
27 1.4.4.2 jdolecek * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
28 1.4.4.2 jdolecek * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL WASABI SYSTEMS, INC
29 1.4.4.2 jdolecek * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 1.4.4.2 jdolecek * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 1.4.4.2 jdolecek * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 1.4.4.2 jdolecek * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 1.4.4.2 jdolecek * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 1.4.4.2 jdolecek * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 1.4.4.2 jdolecek * POSSIBILITY OF SUCH DAMAGE.
36 1.4.4.2 jdolecek */
37 1.4.4.2 jdolecek
38 1.4.4.2 jdolecek #include <sys/param.h>
39 1.4.4.2 jdolecek #include <sys/device.h>
40 1.4.4.2 jdolecek #include <sys/tty.h>
41 1.4.4.2 jdolecek #include <sys/systm.h>
42 1.4.4.2 jdolecek #include <sys/properties.h>
43 1.4.4.2 jdolecek
44 1.4.4.2 jdolecek #include <lib/libkern/libkern.h>
45 1.4.4.2 jdolecek
46 1.4.4.2 jdolecek #include <machine/cpu.h>
47 1.4.4.2 jdolecek
48 1.4.4.2 jdolecek #include <powerpc/ibm4xx/dev/opbvar.h>
49 1.4.4.2 jdolecek
50 1.4.4.2 jdolecek #include <dev/ic/comreg.h>
51 1.4.4.2 jdolecek #include <dev/ic/comvar.h>
52 1.4.4.2 jdolecek
53 1.4.4.2 jdolecek struct com_opb_softc {
54 1.4.4.2 jdolecek struct com_softc sc_com;
55 1.4.4.2 jdolecek void *sc_ih;
56 1.4.4.2 jdolecek };
57 1.4.4.2 jdolecek
58 1.4.4.2 jdolecek static int com_opb_probe(struct device *, struct cfdata *, void *);
59 1.4.4.2 jdolecek static void com_opb_attach(struct device *, struct device *, void *);
60 1.4.4.2 jdolecek
61 1.4.4.3 jdolecek CFATTACH_DECL(com_opb, sizeof(struct com_opb_softc),
62 1.4.4.3 jdolecek com_opb_probe, com_opb_attach, NULL, NULL);
63 1.4.4.2 jdolecek
64 1.4.4.2 jdolecek int
65 1.4.4.2 jdolecek com_opb_probe(struct device *parent, struct cfdata *cf, void *aux)
66 1.4.4.2 jdolecek {
67 1.4.4.2 jdolecek struct opb_attach_args *oaa = aux;
68 1.4.4.2 jdolecek
69 1.4.4.2 jdolecek /* match only com devices */
70 1.4.4.3 jdolecek if (strcmp(oaa->opb_name, cf->cf_name) != 0)
71 1.4.4.2 jdolecek return 0;
72 1.4.4.2 jdolecek
73 1.4.4.2 jdolecek return (1);
74 1.4.4.2 jdolecek }
75 1.4.4.2 jdolecek
76 1.4.4.2 jdolecek void
77 1.4.4.2 jdolecek com_opb_attach(struct device *parent, struct device *self, void *aux)
78 1.4.4.2 jdolecek {
79 1.4.4.2 jdolecek struct com_opb_softc *msc = (void *)self;
80 1.4.4.2 jdolecek struct com_softc *sc = &msc->sc_com;
81 1.4.4.2 jdolecek struct opb_attach_args *oaa = aux;
82 1.4.4.2 jdolecek
83 1.4.4.2 jdolecek sc->sc_iot = oaa->opb_bt;
84 1.4.4.2 jdolecek sc->sc_iobase = oaa->opb_addr;
85 1.4.4.2 jdolecek
86 1.4.4.2 jdolecek bus_space_map(sc->sc_iot, oaa->opb_addr, COM_NPORTS, 0,
87 1.4.4.2 jdolecek &sc->sc_ioh);
88 1.4.4.2 jdolecek
89 1.4.4.2 jdolecek if (board_info_get("com-opb-frequency", &sc->sc_frequency,
90 1.4.4.2 jdolecek sizeof(sc->sc_frequency)) == -1)
91 1.4.4.2 jdolecek panic("com_opb_attach: no com-opb-frequency property");
92 1.4.4.2 jdolecek
93 1.4.4.2 jdolecek /* XXX console check */
94 1.4.4.2 jdolecek
95 1.4.4.2 jdolecek com_attach_subr(sc);
96 1.4.4.2 jdolecek
97 1.4.4.2 jdolecek intr_establish(oaa->opb_irq, IST_LEVEL, IPL_SERIAL, comintr, sc);
98 1.4.4.2 jdolecek }
99