NetBSD/sys/dev/tc/ioasic_subr.c

79 lines
2.3 KiB
C

/* $NetBSD: ioasic_subr.c,v 1.12 2006/03/31 17:39:33 thorpej Exp $ */
/*
* Copyright (c) 1994, 1995, 1996 Carnegie-Mellon University.
* All rights reserved.
*
* Author: Keith Bostic, Chris G. Demetriou
*
* Permission to use, copy, modify and distribute this software and
* its documentation is hereby granted, provided that both the copyright
* notice and this permission notice appear in all copies of the
* software, derivative works or modified versions, and any portions
* thereof, and that both notices appear in supporting documentation.
*
* CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
* CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND
* FOR ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
*
* Carnegie Mellon requests users of this software to return to
*
* Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
* School of Computer Science
* Carnegie Mellon University
* Pittsburgh PA 15213-3890
*
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*/
#include <sys/cdefs.h>
__KERNEL_RCSID(0, "$NetBSD: ioasic_subr.c,v 1.12 2006/03/31 17:39:33 thorpej Exp $");
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <dev/tc/tcvar.h>
#include <dev/tc/ioasicvar.h>
#include "locators.h"
int ioasicprint(void *, const char *);
int
ioasicprint(void *aux, const char *pnp)
{
struct ioasicdev_attach_args *d = aux;
if (pnp)
aprint_normal("%s at %s", d->iada_modname, pnp);
aprint_normal(" offset 0x%x", d->iada_offset);
return (UNCONF);
}
void
ioasic_attach_devs(struct ioasic_softc *sc, struct ioasic_dev *ioasic_devs,
int ioasic_ndevs)
{
struct ioasicdev_attach_args idev;
int i;
int locs[IOASICCF_NLOCS];
/*
* Try to configure each device.
*/
for (i = 0; i < ioasic_ndevs; i++) {
strlcpy(idev.iada_modname, ioasic_devs[i].iad_modname,
sizeof(idev.iada_modname));
idev.iada_offset = ioasic_devs[i].iad_offset;
idev.iada_addr = sc->sc_base + ioasic_devs[i].iad_offset;
idev.iada_cookie = ioasic_devs[i].iad_cookie;
/* Tell the autoconfig machinery we've found the hardware. */
locs[IOASICCF_OFFSET] = ioasic_devs[i].iad_offset;
config_found_sm_loc(&sc->sc_dv, "ioasic", locs, &idev,
ioasicprint, config_stdsubmatch);
}
}