2021-08-07 19:18:40 +03:00
|
|
|
/* $NetBSD: boca.c,v 1.57 2021/08/07 16:19:12 thorpej Exp $ */
|
1995-01-04 01:26:36 +03:00
|
|
|
|
|
|
|
/*
|
1996-03-10 12:01:20 +03:00
|
|
|
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
|
1998-08-15 07:02:31 +04:00
|
|
|
* Copyright (c) 1995 Charles M. Hannum. All rights reserved.
|
1995-01-04 01:26:36 +03:00
|
|
|
*
|
1995-01-04 01:38:54 +03:00
|
|
|
* This code is derived from public-domain software written by
|
|
|
|
* Roland McGrath, and information provided by David Muir Sharnoff.
|
1995-01-04 01:26:36 +03:00
|
|
|
*
|
1995-01-04 01:38:54 +03:00
|
|
|
* 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:
|
1998-08-15 07:02:31 +04:00
|
|
|
* This product includes software developed by Charles M. Hannum.
|
1995-01-04 01:38:54 +03:00
|
|
|
* 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.
|
1995-01-04 01:26:36 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-13 11:01:09 +03:00
|
|
|
#include <sys/cdefs.h>
|
2021-08-07 19:18:40 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: boca.c,v 1.57 2021/08/07 16:19:12 thorpej Exp $");
|
2001-11-13 11:01:09 +03:00
|
|
|
|
1995-01-04 01:26:36 +03:00
|
|
|
#include <sys/param.h>
|
1996-05-05 23:49:51 +04:00
|
|
|
#include <sys/systm.h>
|
1995-01-04 01:26:36 +03:00
|
|
|
#include <sys/device.h>
|
1996-04-15 22:55:23 +04:00
|
|
|
#include <sys/termios.h>
|
2000-07-28 00:08:47 +04:00
|
|
|
#include <sys/kernel.h>
|
|
|
|
#include <sys/callout.h>
|
1995-01-04 01:26:36 +03:00
|
|
|
|
2007-10-19 15:59:34 +04:00
|
|
|
#include <sys/bus.h>
|
|
|
|
#include <sys/intr.h>
|
1995-01-04 01:26:36 +03:00
|
|
|
|
1997-10-16 04:29:28 +04:00
|
|
|
#include <dev/ic/comreg.h>
|
|
|
|
#include <dev/ic/comvar.h>
|
|
|
|
|
1995-04-17 16:06:30 +04:00
|
|
|
#include <dev/isa/isavar.h>
|
1997-04-09 20:44:21 +04:00
|
|
|
#include <dev/isa/com_multi.h>
|
1996-03-09 03:09:04 +03:00
|
|
|
|
|
|
|
#define NSLAVES 8
|
1995-01-04 01:26:36 +03:00
|
|
|
|
|
|
|
struct boca_softc {
|
2012-10-27 21:17:22 +04:00
|
|
|
device_t sc_dev;
|
1995-04-17 16:06:30 +04:00
|
|
|
void *sc_ih;
|
1995-01-04 01:26:36 +03:00
|
|
|
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_tag_t sc_iot;
|
1995-01-04 01:26:36 +03:00
|
|
|
int sc_iobase;
|
1996-03-10 12:01:20 +03:00
|
|
|
|
1996-03-09 03:09:04 +03:00
|
|
|
int sc_alive; /* mask of slave units attached */
|
|
|
|
void *sc_slaves[NSLAVES]; /* com device unit numbers */
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_handle_t sc_slaveioh[NSLAVES];
|
2007-07-10 00:51:58 +04:00
|
|
|
callout_t fixup;
|
1995-01-04 01:26:36 +03:00
|
|
|
};
|
|
|
|
|
2009-05-12 13:10:15 +04:00
|
|
|
int bocaprobe(device_t, cfdata_t, void *);
|
|
|
|
void bocaattach(device_t, device_t, void *);
|
2005-02-04 05:10:35 +03:00
|
|
|
int bocaintr(void *);
|
|
|
|
void boca_fixup(void *);
|
1995-01-04 01:26:36 +03:00
|
|
|
|
2012-10-27 21:17:22 +04:00
|
|
|
CFATTACH_DECL_NEW(boca, sizeof(struct boca_softc),
|
2002-10-02 07:10:45 +04:00
|
|
|
bocaprobe, bocaattach, NULL, NULL);
|
1996-03-17 03:43:52 +03:00
|
|
|
|
1995-01-04 01:26:36 +03:00
|
|
|
int
|
2009-05-12 13:10:15 +04:00
|
|
|
bocaprobe(device_t parent, cfdata_t self, void *aux)
|
1995-01-04 01:26:36 +03:00
|
|
|
{
|
|
|
|
struct isa_attach_args *ia = aux;
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_tag_t iot = ia->ia_iot;
|
|
|
|
bus_space_handle_t ioh;
|
2002-01-08 00:46:56 +03:00
|
|
|
int i, iobase, rv = 1;
|
1995-01-04 01:26:36 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Do the normal com probe for the first UART and assume
|
1996-03-10 12:01:20 +03:00
|
|
|
* its presence, and the ability to map the other UARTS,
|
|
|
|
* means there is a multiport board there.
|
1995-01-04 01:26:36 +03:00
|
|
|
* XXX Needs more robustness.
|
|
|
|
*/
|
|
|
|
|
2002-01-08 00:46:56 +03:00
|
|
|
if (ia->ia_nio < 1)
|
|
|
|
return (0);
|
|
|
|
if (ia->ia_nirq < 1)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
if (ISA_DIRECT_CONFIG(ia))
|
|
|
|
return (0);
|
|
|
|
|
1997-10-19 22:56:39 +04:00
|
|
|
/* Disallow wildcarded i/o address. */
|
2004-09-15 00:20:46 +04:00
|
|
|
if (ia->ia_io[0].ir_addr == ISA_UNKNOWN_PORT)
|
2002-01-08 00:46:56 +03:00
|
|
|
return (0);
|
2004-09-15 00:20:46 +04:00
|
|
|
if (ia->ia_irq[0].ir_irq == ISA_UNKNOWN_IRQ)
|
1997-10-19 22:56:39 +04:00
|
|
|
return (0);
|
|
|
|
|
2002-11-18 01:49:56 +03:00
|
|
|
iobase = ia->ia_io[0].ir_addr;
|
|
|
|
|
1996-03-10 12:01:20 +03:00
|
|
|
/* if the first port is in use as console, then it. */
|
1997-08-23 18:06:17 +04:00
|
|
|
if (com_is_console(iot, iobase, 0))
|
1996-03-10 12:01:20 +03:00
|
|
|
goto checkmappings;
|
1995-01-04 01:26:36 +03:00
|
|
|
|
1996-10-22 02:34:38 +04:00
|
|
|
if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
|
1996-03-10 12:01:20 +03:00
|
|
|
rv = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
1998-09-18 18:38:48 +04:00
|
|
|
rv = comprobe1(iot, ioh);
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_unmap(iot, ioh, COM_NPORTS);
|
1996-03-10 12:01:20 +03:00
|
|
|
if (rv == 0)
|
|
|
|
goto out;
|
|
|
|
|
|
|
|
checkmappings:
|
2002-11-18 01:49:56 +03:00
|
|
|
for (i = 1; i < NSLAVES; i++) {
|
1996-03-10 12:01:20 +03:00
|
|
|
iobase += COM_NPORTS;
|
|
|
|
|
1997-08-23 18:06:17 +04:00
|
|
|
if (com_is_console(iot, iobase, 0))
|
|
|
|
continue;
|
1996-03-10 12:01:20 +03:00
|
|
|
|
1996-10-22 02:34:38 +04:00
|
|
|
if (bus_space_map(iot, iobase, COM_NPORTS, 0, &ioh)) {
|
1996-03-10 12:01:20 +03:00
|
|
|
rv = 0;
|
|
|
|
goto out;
|
|
|
|
}
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_unmap(iot, ioh, COM_NPORTS);
|
1996-03-10 12:01:20 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
out:
|
2002-01-08 00:46:56 +03:00
|
|
|
if (rv) {
|
|
|
|
ia->ia_nio = 1;
|
|
|
|
ia->ia_io[0].ir_size = NSLAVES * COM_NPORTS;
|
|
|
|
|
|
|
|
ia->ia_nirq = 1;
|
|
|
|
|
|
|
|
ia->ia_niomem = 0;
|
|
|
|
ia->ia_ndrq = 0;
|
|
|
|
}
|
1996-03-10 12:01:20 +03:00
|
|
|
return (rv);
|
1995-01-04 01:26:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2009-05-12 13:10:15 +04:00
|
|
|
bocaattach(device_t parent, device_t self, void *aux)
|
1995-01-04 01:26:36 +03:00
|
|
|
{
|
2012-10-27 21:17:22 +04:00
|
|
|
struct boca_softc *sc = device_private(self);
|
1995-01-04 01:26:36 +03:00
|
|
|
struct isa_attach_args *ia = aux;
|
1996-03-09 04:03:59 +03:00
|
|
|
struct commulti_attach_args ca;
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_tag_t iot = ia->ia_iot;
|
1997-09-12 17:31:10 +04:00
|
|
|
int i, iobase;
|
1995-01-04 01:26:36 +03:00
|
|
|
|
1997-10-20 22:43:03 +04:00
|
|
|
printf("\n");
|
|
|
|
|
2012-10-27 21:17:22 +04:00
|
|
|
sc->sc_dev = self;
|
1996-10-22 02:34:38 +04:00
|
|
|
sc->sc_iot = ia->ia_iot;
|
2002-01-08 00:46:56 +03:00
|
|
|
sc->sc_iobase = ia->ia_io[0].ir_addr;
|
1995-01-04 01:26:36 +03:00
|
|
|
|
1997-09-12 17:31:10 +04:00
|
|
|
for (i = 0; i < NSLAVES; i++) {
|
|
|
|
iobase = sc->sc_iobase + i * COM_NPORTS;
|
|
|
|
if (!com_is_console(iot, iobase, &sc->sc_slaveioh[i]) &&
|
|
|
|
bus_space_map(iot, iobase, COM_NPORTS, 0,
|
1997-10-20 22:43:03 +04:00
|
|
|
&sc->sc_slaveioh[i])) {
|
2016-07-11 14:31:49 +03:00
|
|
|
aprint_error_dev(sc->sc_dev,
|
|
|
|
"can't map i/o space for slave %d\n", i);
|
1997-10-20 22:43:03 +04:00
|
|
|
return;
|
|
|
|
}
|
1997-09-12 17:31:10 +04:00
|
|
|
}
|
1996-03-10 12:01:20 +03:00
|
|
|
|
|
|
|
for (i = 0; i < NSLAVES; i++) {
|
|
|
|
|
|
|
|
ca.ca_slave = i;
|
1996-10-22 02:34:38 +04:00
|
|
|
ca.ca_iot = sc->sc_iot;
|
1996-03-10 12:01:20 +03:00
|
|
|
ca.ca_ioh = sc->sc_slaveioh[i];
|
|
|
|
ca.ca_iobase = sc->sc_iobase + i * COM_NPORTS;
|
|
|
|
ca.ca_noien = 0;
|
|
|
|
|
Merge thorpej-cfargs branch:
Simplify and make extensible the config_search() / config_found() /
config_attach() interfaces: rather than having different variants for
which arguments you want pass along, just have a single call that
takes a variadic list of tag-value arguments.
Adjust all call sites:
- Simplify wherever possible; don't pass along arguments that aren't
actually needed.
- Don't be explicit about what interface attribute is attaching if
the device only has one. (More simplification.)
- Add a config_probe() function to be used in indirect configuiration
situations, making is visibly easier to see when indirect config is
in play, and allowing for future change in semantics. (As of now,
this is just a wrapper around config_match(), but that is an
implementation detail.)
Remove unnecessary or redundant interface attributes where they're not
needed.
There are currently 5 "cfargs" defined:
- CFARG_SUBMATCH (submatch function for direct config)
- CFARG_SEARCH (search function for indirect config)
- CFARG_IATTR (interface attribte)
- CFARG_LOCATORS (locators array)
- CFARG_DEVHANDLE (devhandle_t - wraps OFW, ACPI, etc. handles)
...and a sentinel value CFARG_EOL.
Add some extra sanity checking to ensure that interface attributes
aren't ambiguous.
Use CFARG_DEVHANDLE in MI FDT, OFW, and ACPI code, and macppc and shark
ports to associate those device handles with device_t instance. This
will trickle trough to more places over time (need back-end for pre-OFW
Sun OBP; any others?).
2021-04-25 02:36:23 +03:00
|
|
|
sc->sc_slaves[i] = config_found(self, &ca, commultiprint,
|
2021-08-07 19:18:40 +03:00
|
|
|
CFARGS_NONE);
|
1996-04-04 11:08:10 +04:00
|
|
|
if (sc->sc_slaves[i] != NULL)
|
1996-03-10 12:01:20 +03:00
|
|
|
sc->sc_alive |= 1 << i;
|
1995-01-04 01:26:36 +03:00
|
|
|
}
|
|
|
|
|
2002-01-08 00:46:56 +03:00
|
|
|
sc->sc_ih = isa_intr_establish(ia->ia_ic, ia->ia_irq[0].ir_irq,
|
|
|
|
IST_EDGE, IPL_SERIAL, bocaintr, sc);
|
2007-07-10 00:51:58 +04:00
|
|
|
callout_init(&sc->fixup, 0);
|
2000-07-28 00:08:47 +04:00
|
|
|
callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
|
1995-01-04 01:26:36 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2009-03-14 18:35:58 +03:00
|
|
|
bocaintr(void *arg)
|
1995-01-04 01:26:36 +03:00
|
|
|
{
|
1995-04-17 16:06:30 +04:00
|
|
|
struct boca_softc *sc = arg;
|
1996-10-22 02:34:38 +04:00
|
|
|
bus_space_tag_t iot = sc->sc_iot;
|
1995-01-04 01:26:36 +03:00
|
|
|
int alive = sc->sc_alive;
|
|
|
|
int bits;
|
|
|
|
|
2000-05-20 22:25:41 +04:00
|
|
|
bits = bus_space_read_1(iot, sc->sc_slaveioh[0], com_scratch) & alive;
|
1995-01-04 01:26:36 +03:00
|
|
|
if (bits == 0)
|
|
|
|
return (0);
|
|
|
|
|
|
|
|
for (;;) {
|
|
|
|
#define TRY(n) \
|
2000-07-28 00:08:47 +04:00
|
|
|
if (bits & (1 << (n))) { \
|
|
|
|
if (comintr(sc->sc_slaves[n]) == 0) { \
|
|
|
|
printf("%s: bogus intr for port %d\n", \
|
2012-10-27 21:17:22 +04:00
|
|
|
device_xname(sc->sc_dev), n); \
|
2000-07-28 00:08:47 +04:00
|
|
|
} \
|
|
|
|
}
|
1995-01-04 01:26:36 +03:00
|
|
|
TRY(0);
|
|
|
|
TRY(1);
|
|
|
|
TRY(2);
|
|
|
|
TRY(3);
|
|
|
|
TRY(4);
|
|
|
|
TRY(5);
|
|
|
|
TRY(6);
|
|
|
|
TRY(7);
|
|
|
|
#undef TRY
|
2000-05-20 22:25:41 +04:00
|
|
|
bits = bus_space_read_1(iot, sc->sc_slaveioh[0],
|
|
|
|
com_scratch) & alive;
|
2000-07-28 00:08:47 +04:00
|
|
|
if (bits == 0) {
|
1995-01-04 01:26:36 +03:00
|
|
|
return (1);
|
2000-07-28 00:08:47 +04:00
|
|
|
}
|
1995-01-04 01:26:36 +03:00
|
|
|
}
|
|
|
|
}
|
2000-07-28 00:08:47 +04:00
|
|
|
|
|
|
|
void
|
2009-03-14 18:35:58 +03:00
|
|
|
boca_fixup(void *v)
|
2000-07-28 00:08:47 +04:00
|
|
|
{
|
|
|
|
struct boca_softc *sc = v;
|
|
|
|
int alive = sc->sc_alive;
|
|
|
|
int i, s;
|
|
|
|
|
|
|
|
s = splserial();
|
|
|
|
|
|
|
|
for (i = 0; i < 8; i++) {
|
|
|
|
if (alive & (1 << (i)))
|
|
|
|
comintr(sc->sc_slaves[i]);
|
|
|
|
}
|
|
|
|
callout_reset(&sc->fixup, hz/10, boca_fixup, sc);
|
|
|
|
splx(s);
|
|
|
|
}
|