File:  [Research Unix] / researchv10no / cmd / worm / oscsi / sony / config.c
Revision 1.1.1.1 (vendor branch): download - view: text, annotated - select for diffs
Tue Apr 24 17:21:34 2018 UTC (8 years, 1 month ago) by root
Branches: belllabs, MAIN
CVS tags: researchv10, HEAD
researchv10 Norman

#include	<stdio.h>
#include	"../scsi.h"
#include	"../scsish.h"
#include	"fns.h"

static char mtab[5][2] =
{
	'0', '0', '1', '1', '1', '2', '2', '2', '?', '?'
};
static char *brdname[] = {
	"no doard", "T.D. Systems Viking", "U.S. Design 1158"
};

int
sony_conf(int niargs, int *iargs, int ncargs, char **cargs, char *err)
{
	struct scsi_cmd cmd;
	struct scsi_return ret;
	int n, i;
	char buf[512];

#pragma ref niargs
#pragma ref iargs
#pragma ref ncargs
#pragma ref cargs

	set6(cmd, 0x12, 0, 0, 0, 44, 0);
	if(n = s_io(0, &cmd, 0, &ret, 44, err))
		return(n);
	i = min(ret.data[37], 4);
	fixedstr(&ret.data[8], 28, buf);
	printf("config(%d,%d): %s device, '%s', %c controller%s, %c drive%s\n",
		s_id, 0, (ret.data[0] == 0x4)? "WORM":"Unknown",
		buf, mtab[i][0], (mtab[i][0] == '1')?"":"s",
		mtab[i][1], (mtab[i][1] == '1')?"":"s");
	printf("\tUnibus-SCSI controller=%s\n", brdname[ret.type]);
	printf("\tROMS:");
	if(ret.data[38] != 0xFF)
		printf(" upper controller=0x%x,", ret.data[38]);
	if(ret.data[40] != 0xFF)
		printf(" lower controller=0x%x,", ret.data[40]);
	printf( " IF-129=0x%x, SY-46=0x%x, SS-30=0x%x\n", ret.data[36],
		ret.data[42], ret.data[43]);
	return(0);
}

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.