#include <sys/param.h>
#include <sys/systm.h>
#include <sys/device.h>
#include <sys/termios.h>
#include <sys/conf.h>
#include <machine/rpb.h>
#include <machine/autoconf.h>
#include <machine/cpuconf.h>
#include <dev/tc/tcvar.h>
#include <dev/tc/tcdsvar.h>
#include <alpha/tc/tc_3000_300.h>
#include <machine/z8530var.h>
#include <dev/tc/zs_ioasicvar.h>
#if 0
#include <dev/dec/zskbdvar.h>
#endif
#include <scsi/scsi_all.h>
#include <scsi/scsiconf.h>
#include "wsdisplay.h"
void dec_3000_300_init(void);
static void dec_3000_300_cons_init(void);
static void dec_3000_300_device_register(struct device *, void *);
const struct alpha_variation_table dec_3000_300_variations[] = {
{ SV_ST_PELICAN, "DEC 3000/300 (\"Pelican\")" },
{ SV_ST_PELICA, "DEC 3000/300L (\"Pelica\")" },
{ SV_ST_PELICANPLUS, "DEC 3000/300X (\"Pelican+\")" },
{ SV_ST_PELICAPLUS, "DEC 3000/300LX (\"Pelica+\")" },
{ 0, NULL },
};
void
dec_3000_300_init(void)
{
u_int64_t variation;
platform.family = "DEC 3000/300 (\"Pelican\")";
if ((platform.model = alpha_dsr_sysname()) == NULL) {
variation = hwrpb->rpb_variation & SV_ST_MASK;
if ((platform.model = alpha_variation_name(variation,
dec_3000_300_variations)) == NULL)
platform.model = alpha_unknown_sysname();
}
platform.iobus = "tcasic";
platform.cons_init = dec_3000_300_cons_init;
platform.device_register = dec_3000_300_device_register;
}
static void
dec_3000_300_cons_init(void)
{
struct ctb *ctb;
ctb = (struct ctb *)(((caddr_t)hwrpb) + hwrpb->rpb_ctb_off);
switch (ctb->ctb_term_type) {
case CTB_GRAPHICS:
#if NWSDISPLAY > 0
#ifdef notyet
if (zs_ioasic_lk201_cnattach(0x1a0000000, 0x00180000, 0) == 0 &&
tc_3000_300_fb_cnattach(
CTB_TURBOSLOT_SLOT(ctb->ctb_turboslot)) == 0) {
break;
}
#endif
#endif
printf("consinit: Unable to init console on keyboard and ");
printf("TURBOchannel slot 0x%lx.\n",
(unsigned long)ctb->ctb_turboslot);
printf("Using serial console.\n");
case CTB_PRINTERPORT:
{
DELAY(160000000 / 9600);
zs_ioasic_cnattach(0x1a0000000, 0x00100000, 1);
break;
}
default:
printf("ctb->ctb_term_type = 0x%lx\n",
(unsigned long)ctb->ctb_term_type);
printf("ctb->ctb_turboslot = 0x%lx\n",
(unsigned long)ctb->ctb_turboslot);
panic("consinit: unknown console type %lu",
(unsigned long)ctb->ctb_term_type);
}
}
static void
dec_3000_300_device_register(struct device *dev, void *aux)
{
static int found, initted, scsiboot, netboot;
static struct device *scsidev;
static struct device *tcdsdev;
struct bootdev_data *b = bootdev_data;
struct device *parent = dev->dv_parent;
struct cfdata *cf = dev->dv_cfdata;
struct cfdriver *cd = cf->cf_driver;
if (found)
return;
if (!initted) {
scsiboot = (strcmp(b->protocol, "SCSI") == 0);
netboot = (strcmp(b->protocol, "BOOTP") == 0) ||
(strcmp(b->protocol, "MOP") == 0);
#if 0
printf("scsiboot = %d, netboot = %d\n", scsiboot, netboot);
#endif
initted = 1;
}
if (scsiboot && (strcmp(cd->cd_name, "tcds") == 0)) {
struct tc_attach_args *tcargs = aux;
if (b->slot != tcargs->ta_slot)
return;
tcdsdev = dev;
#if 0
printf("\ntcdsdev = %s\n", dev->dv_xname);
#endif
}
if (scsiboot && tcdsdev &&
(strcmp(cd->cd_name, "asc") == 0)) {
struct tcdsdev_attach_args *ta = aux;
if (parent != (struct device *)tcdsdev)
return;
if (ta->tcdsda_chip != b->channel)
return;
scsidev = dev;
#if 0
printf("\nscsidev = %s\n", dev->dv_xname);
#endif
}
if (scsiboot && scsidev &&
(strcmp(cd->cd_name, "sd") == 0 ||
strcmp(cd->cd_name, "st") == 0 ||
strcmp(cd->cd_name, "cd") == 0)) {
struct scsi_attach_args *sa = aux;
if (parent->dv_parent != scsidev)
return;
if (b->unit / 100 != sa->sa_sc_link->target)
return;
switch (b->boot_dev_type) {
case 0:
if (strcmp(cd->cd_name, "sd") &&
strcmp(cd->cd_name, "cd"))
return;
break;
case 1:
if (strcmp(cd->cd_name, "st"))
return;
break;
default:
return;
}
booted_device = dev;
#if 0
printf("\nbooted_device = %s\n", booted_device->dv_xname);
#endif
found = 1;
}
if (netboot) {
if (b->slot == 5 && strcmp(cd->cd_name, "le") == 0 &&
strcmp(parent->dv_cfdata->cf_driver->cd_name, "ioasic")
== 0) {
booted_device = dev;
#if 0
printf("\nbooted_device = %s\n", booted_device->dv_xname);
#endif
found = 1;
return;
}
}
}