#include <sys/param.h>
#include <sys/reboot.h>
#include <hp300/stand/common/samachdep.h>
#include <hp300/stand/common/rominfo.h>
#include <hp300/stand/common/device.h>
#include <hp300/stand/common/hpibvar.h>
#include <hp300/stand/common/scsireg.h>
#include <hp300/stand/common/scsivar.h>
#include <hp300/dev/dioreg.h>
#include <hp300/dev/intioreg.h>
static const char rom2mdev[] = {
0, 0,
6,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
4,
0,
2,
2,
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
};
struct hp_hw sc_table[MAXCTLRS];
int cpuspeed;
static u_long msustobdev(void);
static void find_devs(void);
#ifdef PRINTROMINFO
void
printrominfo(void)
{
struct rominfo *rp = (struct rominfo *)ROMADDR;
printf("boottype %x, name %s, lowram %x, sysflag %x\n",
rp->boottype, rp->name, rp->lowram, rp->sysflag&0xff);
printf("rambase %x, ndrives %x, sysflag2 %x, msus %x\n",
rp->rambase, rp->ndrives, rp->sysflag2&0xff, rp->msus);
}
#endif
void
configure(void)
{
switch (machineid) {
case HP_320:
case HP_330:
case HP_340:
cpuspeed = MHZ_16;
break;
case HP_350:
case HP_360:
case HP_362:
cpuspeed = MHZ_25;
break;
case HP_370:
cpuspeed = MHZ_33;
break;
case HP_375:
case HP_400:
cpuspeed = MHZ_50;
break;
case HP_380:
case HP_382:
case HP_425:
cpuspeed = MHZ_25 * 2;
break;
case HP_385:
case HP_433:
cpuspeed = MHZ_33 * 2;
break;
default:
cpuspeed = MHZ_50;
break;
}
find_devs();
cninit();
#ifdef PRINTROMINFO
printrominfo();
#endif
hpibinit();
scsiinit();
if ((bootdev & B_MAGICMASK) != B_DEVMAGIC)
bootdev = msustobdev();
}
static u_long
msustobdev(void)
{
struct rominfo *rp = (struct rominfo *) ROMADDR;
u_long bdev = 0;
struct hp_hw *hw;
int sc, type, ctlr, slave, punit;
sc = (rp->msus >> 8) & 0xFF;
for (hw = sc_table; hw < &sc_table[MAXCTLRS]; hw++)
if (hw->hw_sc == sc)
break;
type = rom2mdev[(rp->msus >> 24) & 0x1F];
ctlr = (int)hw->hw_pa;
slave = (rp->msus & 0xFF);
punit = ((rp->msus >> 16) & 0xFF);
bdev = MAKEBOOTDEV(type, ctlr, slave, punit, 0);
#ifdef PRINTROMINFO
printf("msus %x -> bdev %x\n", rp->msus, bdev);
#endif
return bdev;
}
int
sctoaddr(int sc)
{
if (sc == -1)
return INTIOBASE + FB_BASE;
if (sc == 7 && internalhpib)
return internalhpib ;
if (sc < 32)
return DIOBASE + sc * DIOCSIZE ;
if (sc >= DIOII_SCBASE)
return DIOIIBASE + (sc - DIOII_SCBASE) * DIOIICSIZE ;
return sc;
}
static void
find_devs(void)
{
short sc, sctop;
u_char *id_reg;
void *addr;
struct hp_hw *hw;
hw = sc_table;
sctop = DIO_SCMAX(machineid);
for (sc = -1; sc < sctop; sc++) {
if (DIO_INHOLE(sc))
continue;
addr = (void *)sctoaddr(sc);
if (badaddr(addr))
continue;
id_reg = (u_char *)addr;
hw->hw_pa = 0;
if (sc >= DIOII_SCBASE)
hw->hw_size = DIOII_SIZE(id_reg);
else
hw->hw_size = DIOCSIZE;
hw->hw_kva = addr;
hw->hw_id = DIO_ID(id_reg);
hw->hw_sc = sc;
if (sc == 7 && internalhpib) {
hw->hw_type = C_HPIB;
hw++;
continue;
}
switch (hw->hw_id) {
case 5:
case 5+128:
hw->hw_type = D_COMMDCM;
break;
case 8:
case 128:
hw->hw_type = C_HPIB;
break;
case 21:
hw->hw_type = D_LAN;
break;
case 57:
hw->hw_type = D_BITMAP;
hw->hw_secid = id_reg[0x15];
switch (hw->hw_secid) {
case 4:
case 8:
sc++;
break;
}
break;
case 9:
hw->hw_type = D_KEYBOARD;
break;
case 7:
case 7+32:
case 7+64:
case 7+96:
hw->hw_type = C_SCSI;
break;
default:
hw->hw_type = D_MISC;
break;
}
hw++;
}
}