com_iop.c revision 1.2 1 1.2 cube /* $NetBSD: com_iop.c,v 1.2 2008/03/14 15:09:10 cube Exp $ */
2 1.1 garbled
3 1.1 garbled /*-
4 1.1 garbled * Copyright (c) 2007 The NetBSD Foundation, Inc.
5 1.1 garbled * All rights reserved.
6 1.1 garbled *
7 1.1 garbled * This code is derived from software contributed to The NetBSD Foundation
8 1.1 garbled * by Tim Rightnour
9 1.1 garbled *
10 1.1 garbled * Redistribution and use in source and binary forms, with or without
11 1.1 garbled * modification, are permitted provided that the following conditions
12 1.1 garbled * are met:
13 1.1 garbled * 1. Redistributions of source code must retain the above copyright
14 1.1 garbled * notice, this list of conditions and the following disclaimer.
15 1.1 garbled * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 garbled * notice, this list of conditions and the following disclaimer in the
17 1.1 garbled * documentation and/or other materials provided with the distribution.
18 1.1 garbled * 3. All advertising materials mentioning features or use of this software
19 1.1 garbled * must display the following acknowledgement:
20 1.1 garbled * This product includes software developed by the NetBSD
21 1.1 garbled * Foundation, Inc. and its contributors.
22 1.1 garbled * 4. Neither the name of The NetBSD Foundation nor the names of its
23 1.1 garbled * contributors may be used to endorse or promote products derived
24 1.1 garbled * from this software without specific prior written permission.
25 1.1 garbled *
26 1.1 garbled * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27 1.1 garbled * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28 1.1 garbled * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29 1.1 garbled * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30 1.1 garbled * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31 1.1 garbled * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32 1.1 garbled * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33 1.1 garbled * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34 1.1 garbled * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35 1.1 garbled * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36 1.1 garbled * POSSIBILITY OF SUCH DAMAGE.
37 1.1 garbled */
38 1.1 garbled
39 1.1 garbled #include <sys/cdefs.h>
40 1.2 cube __KERNEL_RCSID(0, "$NetBSD: com_iop.c,v 1.2 2008/03/14 15:09:10 cube Exp $");
41 1.1 garbled
42 1.1 garbled #include <sys/param.h>
43 1.1 garbled #include <sys/device.h>
44 1.1 garbled #include <sys/ioctl.h>
45 1.1 garbled #include <sys/tty.h>
46 1.1 garbled
47 1.1 garbled #include <machine/intr.h>
48 1.1 garbled #include <machine/bus.h>
49 1.1 garbled
50 1.1 garbled #include <dev/ic/comreg.h>
51 1.1 garbled #include <dev/ic/comvar.h>
52 1.1 garbled
53 1.1 garbled #include <dev/mca/mcavar.h>
54 1.1 garbled #include <dev/mca/mcadevs.h>
55 1.1 garbled
56 1.1 garbled #include <rs6000/ioplanar/ioplanarvar.h>
57 1.1 garbled
58 1.1 garbled struct com_iop_softc {
59 1.1 garbled struct com_softc sc_com; /* real com softc */
60 1.1 garbled void *sc_ih;
61 1.1 garbled };
62 1.1 garbled
63 1.2 cube int com_iop_probe(device_t, cfdata_t , void *);
64 1.2 cube void com_iop_attach(device_t, device_t, void *);
65 1.1 garbled
66 1.2 cube CFATTACH_DECL_NEW(com_iop, sizeof(struct com_iop_softc),
67 1.1 garbled com_iop_probe, com_iop_attach, NULL, NULL);
68 1.1 garbled
69 1.1 garbled #define COM_RAINBOW_FREQ 8000000
70 1.1 garbled
71 1.1 garbled /*
72 1.1 garbled * This probe is very unorthodox. Basically, we have no way to actually
73 1.1 garbled * probe the device, so instead, we check that the specific device should
74 1.1 garbled * exist on the ioplanar, and just return true.
75 1.1 garbled */
76 1.1 garbled
77 1.1 garbled int
78 1.2 cube com_iop_probe(device_t parent, cfdata_t match, void *aux)
79 1.1 garbled {
80 1.1 garbled struct ioplanar_dev_attach_args *idaa = aux;
81 1.1 garbled
82 1.1 garbled if (idaa->idaa_devid == MCA_PRODUCT_IBM_SIO_RAINBOW &&
83 1.1 garbled (idaa->idaa_device == IOP_COM0 || idaa->idaa_device == IOP_COM1))
84 1.1 garbled return 1;
85 1.1 garbled
86 1.1 garbled return 0;
87 1.1 garbled }
88 1.1 garbled
89 1.1 garbled void
90 1.2 cube com_iop_attach(device_t parent, device_t self, void *aux)
91 1.1 garbled {
92 1.1 garbled struct com_iop_softc *isc = device_private(self);
93 1.1 garbled struct com_softc *sc = &isc->sc_com;
94 1.1 garbled int iobase, irq;
95 1.1 garbled struct ioplanar_dev_attach_args *idaa = aux;
96 1.1 garbled bus_space_handle_t ioh;
97 1.1 garbled
98 1.2 cube sc->sc_dev = self;
99 1.2 cube
100 1.1 garbled switch (idaa->idaa_devid) {
101 1.1 garbled case MCA_PRODUCT_IBM_SIO_RAINBOW:
102 1.1 garbled switch (idaa->idaa_device) {
103 1.1 garbled case IOP_COM0:
104 1.1 garbled iobase = 0x30;
105 1.1 garbled irq = 2; /* ??? */
106 1.1 garbled sc->sc_frequency = COM_RAINBOW_FREQ;
107 1.1 garbled break;
108 1.1 garbled case IOP_COM1:
109 1.1 garbled iobase = 0x38;
110 1.1 garbled irq = 2; /* ??? */
111 1.1 garbled sc->sc_frequency = COM_RAINBOW_FREQ;
112 1.1 garbled break;
113 1.1 garbled default:
114 1.1 garbled return;
115 1.1 garbled }
116 1.1 garbled break;
117 1.1 garbled default:
118 1.1 garbled return;
119 1.1 garbled }
120 1.1 garbled if (!com_is_console(idaa->idaa_iot, iobase, &ioh) &&
121 1.1 garbled bus_space_map(idaa->idaa_iot, iobase, COM_NPORTS, 0, &ioh)) {
122 1.1 garbled aprint_error(": can't map i/o space\n");
123 1.1 garbled return;
124 1.1 garbled }
125 1.1 garbled
126 1.1 garbled COM_INIT_REGS(sc->sc_regs, idaa->idaa_iot, ioh, iobase);
127 1.1 garbled
128 1.1 garbled aprint_normal("i/o %#x-%#x irq %d", iobase, iobase + COM_NPORTS - 1,
129 1.1 garbled irq);
130 1.1 garbled
131 1.1 garbled com_attach_subr(sc);
132 1.1 garbled
133 1.1 garbled isc->sc_ih = mca_intr_establish(idaa->idaa_mc, irq, IPL_SERIAL,
134 1.1 garbled comintr, sc);
135 1.1 garbled
136 1.1 garbled if (isc->sc_ih == NULL) {
137 1.2 cube aprint_error_dev(self,
138 1.2 cube "couldn't establish interrupt handler\n");
139 1.1 garbled return;
140 1.1 garbled }
141 1.1 garbled }
142