/*
* Copyright (c) 1998 ITOH, Yasufumi
* 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.
*
* 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.
*/
/*
* machine dependent boot information
* passed from boot loader to the NetBSD kernel
*/
/*
* NetBSD/x68k uses MAKEBOOTDEV() framework defined in <sys/reboot.h>
*/
#include <sys/reboot.h>
/*
* for non-SCSI devices
*/
/* major */
#define X68K_MAJOR_FD 2 /* floppy disk */
#define X68K_MAJOR_MD 8 /* memory disk */
#define X68K_MAJOR_NE 255 /* network interface: ne */
#define X68K_MAKEBOOTDEV(major, unit, part) \
MAKEBOOTDEV(major, 0, 0, unit, part)
/*
* for SCSI devices
*
* device major -> type (8bit)
* type of interface -> adaptor (4bit)
* unit # of interface -> controller (4bit)
* target SCSI ID -> unit (4bit)
* target LUN -> partition (3bit; bit 4:6)
* partition -> partition (4bit; bit 0:3)
*
* bit #7 of "partition" is reserved for future extension
*/
/* major */
#define X68K_MAJOR_SD 4 /* SCSI disk */
/* X68K_MAJOR_ST 5 XXX not yet */
#define X68K_MAJOR_CD 7 /* SCSI CD-ROM */
/* type_if */
#define X68K_BOOT_SCSIIF_OLDBOOT 0 /* old boot used this value */
#define X68K_BOOT_SCSIIF_SPC 1 /* spc */
#define X68K_BOOT_SCSIIF_MHA 2 /* mha */