NetBSD/sys/arch/hp300/stand/conf.c

155 lines
5.0 KiB
C

/* $NetBSD: conf.c,v 1.10 1995/09/23 17:28:11 thorpej Exp $ */
/*
* Copyright (c) 1982, 1986, 1990, 1993
* The Regents of the University of California. 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. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
*
* @(#)conf.c 8.1 (Berkeley) 6/10/93
*/
#include <sys/param.h>
#include "stand.h"
#if defined(NETBOOT) || defined(SYS_INST)
#include <sys/socket.h>
#include <net/if.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>
#include <netinet/in_systm.h>
#include "nfs.h"
#endif /* NETBOOT || SYS_INST */
#ifndef NETBOOT
#include "ufs.h"
#endif /* ! NETBOOT */
int debug = 0; /* XXX */
/*
* Device configuration
*/
#if defined(NETBOOT) || defined(SYS_INST)
int netstrategy __P((void *, int, daddr_t, size_t, void *, size_t *));
int netopen __P((struct open_file *, ...));
int netclose __P((struct open_file *));
#define netioctl noioctl
#endif /* NETBOOT || SYS_INST */
#ifndef NETBOOT
/* XXX: no support for tapes in SYS_INST yet. */
#ifdef TAPEBOOT
int ctstrategy __P((void *, int, daddr_t, size_t, void *, size_t *));
int ctopen __P((struct open_file *, ...));
int ctclose __P((struct open_file *));
#else
#define ctstrategy \
(int (*) __P((void *, int, daddr_t, size_t, void *, size_t *)))nullsys
#define ctopen (int (*) __P((struct open_file *, ...)))nodev
#define ctclose (int (*) __P((struct open_file *)))nullsys
#endif /* TAPEBOOT */
#define ctioctl noioctl
int rdstrategy __P((void *, int, daddr_t, size_t, void *, size_t *));
int rdopen __P((struct open_file *, ...));
int rdclose __P((struct open_file *));
#define rdioctl noioctl
int sdstrategy __P((void *, int, daddr_t, size_t, void *, size_t *));
int sdopen __P((struct open_file *, ...));
int sdclose __P((struct open_file *));
#define sdioctl noioctl
#define xxstrategy \
(int (*) __P((void *, int, daddr_t, size_t, void *, size_t *)))nullsys
#define xxopen (int (*) __P((struct open_file *, ...)))nodev
#define xxclose (int (*) __P((struct open_file *)))nullsys
#endif /* ! NETBOOT */
struct devsw devsw[] = {
#ifdef NETBOOT
{ "le", netstrategy, netopen, netclose, netioctl }, /*0*/
#else
{ "ct", ctstrategy, ctopen, ctclose, ctioctl }, /*0*/
{ "??", xxstrategy, xxopen, xxclose, noioctl }, /*1*/
{ "rd", rdstrategy, rdopen, rdclose, rdioctl }, /*2*/
{ "??", xxstrategy, xxopen, xxclose, noioctl }, /*3*/
{ "sd", sdstrategy, sdopen, sdclose, sdioctl }, /*4*/
#ifdef SYS_INST
{ "le", netstrategy, netopen, netclose, netioctl },
#endif /* SYS_INST */
#endif /* NETBOOT */
};
int ndevs = (sizeof(devsw)/sizeof(devsw[0]));
/*
* Filesystem configuration
*/
struct fs_ops file_system[] = {
#ifndef NETBOOT
{ ufs_open, ufs_close, ufs_read, ufs_write, ufs_seek, ufs_stat },
#endif /* ! NETBOOT */
#if defined(NETBOOT) || defined(SYS_INST)
{ nfs_open, nfs_close, nfs_read, nfs_write, nfs_seek, nfs_stat },
#endif /* NETBOOT || SYS_INST */
};
int nfsys = (sizeof(file_system) / sizeof(file_system[0]));
#if defined(NETBOOT) || defined(SYS_INST)
extern struct netif_driver le_driver;
struct netif_driver *netif_drivers[] = {
&le_driver,
};
int n_netif_drivers = sizeof(netif_drivers)/sizeof(netif_drivers[0]);
#endif /* NETBOOT */
/*
* Inititalize controllers
*
* XXX this should be a table
*/
void ctlrinit()
{
#if defined(NETBOOT) || defined(SYS_INST)
leinit();
#endif /* NETBOOT || SYS_INST */
#ifndef NETBOOT
hpibinit();
scsiinit();
#endif /* ! NETBOOT */
}