154877Storek /* 254877Storek * Copyright (c) 1992 The Regents of the University of California. 354877Storek * All rights reserved. 454877Storek * 554877Storek * This software was developed by the Computer Systems Engineering group 654877Storek * at Lawrence Berkeley Laboratory under DARPA contract BG 91-66 and 754877Storek * contributed to Berkeley. 854877Storek * 9*55559Storek * All advertising materials mentioning features or use of this software 10*55559Storek * must display the following acknowledgement: 11*55559Storek * This product includes software developed by the University of 12*55559Storek * California, Lawrence Berkeley Laboratories. 13*55559Storek * 1454877Storek * %sccs.include.redist.c% 1554877Storek * 16*55559Storek * @(#)processor.h 5.2 (Berkeley) 07/23/92 1754877Storek * 1854877Storek * from: $Header: processor.h,v 1.2 92/05/15 11:24:01 torek Exp $ (LBL) 1954877Storek */ 2054877Storek 2154877Storek /* 2254877Storek * SCSI definitions for Processor Devices. 2354877Storek */ 2454877Storek #define CMD_RECEIVE 0x08 /* receive */ 2554877Storek #define CMD_SEND 0x0a /* send */ 2654877Storek 2754877Storek /* 2854877Storek * Structure of a RECEIVE or SEND command (i.e., the cdb). 2954877Storek */ 3054877Storek struct scsi_cdb_rs { 3154877Storek u_char cdb_cmd, /* 0x8 or 0xa */ 3254877Storek cdb_lun:3, /* logical unit number */ 3354877Storek cdb_xxx:5, /* reserved */ 3454877Storek cdb_lenh, /* buffer or data length (MSB) */ 3554877Storek cdb_lenm, /* buffer or data length */ 3654877Storek cdb_lenl, /* buffer or data length (LSB) */ 3754877Storek cdb_ctrl; /* control byte */ 3854877Storek }; 39