11.11Sjdolecek/* $NetBSD: param.h,v 1.11 2019/01/07 22:00:32 jdolecek Exp $ */ 21.1Ssimonb 31.1Ssimonb/* 41.8Srmind * Copyright (c) 1988 University of Utah. 51.1Ssimonb * Copyright (c) 1992, 1993 61.1Ssimonb * The Regents of the University of California. All rights reserved. 71.3Sagc * 81.3Sagc * This code is derived from software contributed to Berkeley by 91.3Sagc * the Systems Programming Group of the University of Utah Computer 101.3Sagc * Science Department and Ralph Campbell. 111.3Sagc * 121.3Sagc * Redistribution and use in source and binary forms, with or without 131.3Sagc * modification, are permitted provided that the following conditions 141.3Sagc * are met: 151.3Sagc * 1. Redistributions of source code must retain the above copyright 161.3Sagc * notice, this list of conditions and the following disclaimer. 171.3Sagc * 2. Redistributions in binary form must reproduce the above copyright 181.3Sagc * notice, this list of conditions and the following disclaimer in the 191.3Sagc * documentation and/or other materials provided with the distribution. 201.3Sagc * 3. Neither the name of the University nor the names of its contributors 211.3Sagc * may be used to endorse or promote products derived from this software 221.3Sagc * without specific prior written permission. 231.3Sagc * 241.3Sagc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 251.3Sagc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 261.3Sagc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 271.3Sagc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 281.3Sagc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 291.3Sagc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 301.3Sagc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 311.3Sagc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 321.3Sagc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 331.3Sagc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 341.3Sagc * SUCH DAMAGE. 351.3Sagc */ 361.1Ssimonb 371.1Ssimonb#ifndef _SBMIPS_PARAM_H_ 381.1Ssimonb#define _SBMIPS_PARAM_H_ 391.1Ssimonb 401.1Ssimonb/* 411.1Ssimonb * Machine dependent constants for Broadcom/Sibyte boards. 421.1Ssimonb */ 431.1Ssimonb 441.1Ssimonb#define _MACHINE sbmips 451.1Ssimonb#define MACHINE "sbmips" 461.10Stsutsui 471.10Stsutsui#include <mips/mips_param.h> 481.1Ssimonb 491.1Ssimonb#ifdef _KERNEL 501.1Ssimonb#ifndef _LOCORE 511.1Ssimonb 521.5Ssimonbvoid delay(int n); 531.5Ssimonb#define DELAY(x) delay(x) 541.5Ssimonb 551.1Ssimonb#include <machine/systemsw.h> 561.1Ssimonb#include <machine/intr.h> 571.1Ssimonb 581.1Ssimonb#endif /* _LOCORE */ 591.1Ssimonb#endif /* _KERNEL */ 601.1Ssimonb 611.1Ssimonb#endif /* !_SBMIPS_PARAM_H_ */ 62