120 lines
3.2 KiB
C
120 lines
3.2 KiB
C
|
/* $NetBSD: apbus_subr.c,v 1.1 1999/12/22 05:55:24 tsubai Exp $ */
|
||
|
|
||
|
/*-
|
||
|
* Copyright (C) 1999 SHIMIZU Ryo. All rights reserved.
|
||
|
*
|
||
|
* 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. 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.
|
||
|
*/
|
||
|
|
||
|
#include <sys/param.h>
|
||
|
#include <sys/systm.h>
|
||
|
|
||
|
#include <newsmips/apbus/apbusvar.h>
|
||
|
|
||
|
void *
|
||
|
apbus_device_to_hwaddr(apbus_dev)
|
||
|
struct apbus_device *apbus_dev;
|
||
|
{
|
||
|
struct apbus_ctl *ctl;
|
||
|
|
||
|
if (!apbus_dev)
|
||
|
return (void *)0;
|
||
|
|
||
|
ctl = apbus_dev->apbd_ctl;
|
||
|
if (!ctl)
|
||
|
return (void *)0;
|
||
|
|
||
|
return (void *)ctl->apbc_hwbase;
|
||
|
}
|
||
|
|
||
|
struct apbus_device *
|
||
|
apbus_lookupdev(devname)
|
||
|
char *devname;
|
||
|
{
|
||
|
struct apbus_device *dp;
|
||
|
|
||
|
dp = _sip->apbsi_dev;
|
||
|
if (!devname || *devname == '\0')
|
||
|
return dp;
|
||
|
|
||
|
/* search apbus_device named 'devname' */
|
||
|
while (dp) {
|
||
|
if (strcmp(devname,dp->apbd_name) == 0)
|
||
|
return dp;
|
||
|
|
||
|
dp = dp->apbd_link;
|
||
|
}
|
||
|
|
||
|
return (struct apbus_device *)0;
|
||
|
}
|
||
|
|
||
|
void
|
||
|
apctl_dump(apctl)
|
||
|
struct apbus_ctl *apctl;
|
||
|
{
|
||
|
unsigned int *p;
|
||
|
|
||
|
if (!apctl)
|
||
|
return;
|
||
|
|
||
|
printf(" apbus_ctl dump (0x%08x)\n", (unsigned int)apctl);
|
||
|
|
||
|
p = (void *)apctl;
|
||
|
|
||
|
printf(" Num: %d\n", apctl->apbc_ctlno);
|
||
|
printf(" HWaddr: 0x%08x\n", apctl->apbc_hwbase);
|
||
|
printf(" softc: %p\n", apctl->apbc_softc);
|
||
|
printf(" Slot: %d\n", apctl->apbc_sl);
|
||
|
printf("\n");
|
||
|
|
||
|
if (apctl->apbc_link)
|
||
|
apctl_dump(apctl->apbc_link);
|
||
|
}
|
||
|
|
||
|
void
|
||
|
apdevice_dump(apdev)
|
||
|
struct apbus_device *apdev;
|
||
|
{
|
||
|
struct apbus_ctl *apctl;
|
||
|
|
||
|
if (!apdev)
|
||
|
return;
|
||
|
|
||
|
/* only no pseudo device */
|
||
|
apctl = apdev->apbd_ctl;
|
||
|
if (!(int)apctl || !(int)apctl->apbc_hwbase)
|
||
|
return;
|
||
|
|
||
|
printf("apbus_device dump (%p)\n", apdev);
|
||
|
printf("name: %s\n", (char *)apdev->apbd_name);
|
||
|
printf("vendor: %s\n", (char *)apdev->apbd_vendor);
|
||
|
printf("atr: %08x\n", apdev->apbd_atr);
|
||
|
printf("rev: %d\n", apdev->apbd_rev);
|
||
|
printf("driver: 0x%08x\n", (unsigned int)apdev->apbd_driver);
|
||
|
printf("ctl: 0x%08x\n", (unsigned int)apdev->apbd_ctl);
|
||
|
printf("link: 0x%08x\n", (unsigned int)apdev->apbd_link);
|
||
|
printf("\n");
|
||
|
|
||
|
apctl_dump(apctl);
|
||
|
}
|