#ifdef DCMCONSOLE
#include <sys/param.h>
#include <dev/cons.h>
#include <hp300/dev/dcmreg.h>
#include <hp300/stand/common/consdefs.h>
#include <hp300/stand/common/samachdep.h>
#include <hp300/stand/common/device.h>
struct dcmdevice *dcmcnaddr = NULL;
#define DCMCONUNIT 1
void
dcmprobe(struct consdev *cp)
{
struct hp_hw *hw;
struct dcmdevice *dcm;
for (hw = sc_table; hw < &sc_table[MAXCTLRS]; hw++)
if (HW_ISDEV(hw, D_COMMDCM) && !badaddr((void *)hw->hw_kva))
break;
if (!HW_ISDEV(hw, D_COMMDCM)) {
cp->cn_pri = CN_DEAD;
return;
}
dcmcnaddr = (struct dcmdevice *) hw->hw_kva;
#ifdef FORCEDCMCONSOLE
cp->cn_pri = CN_REMOTE;
#else
dcm = dcmcnaddr;
switch (dcm->dcm_rsid) {
case DCMID:
cp->cn_pri = CN_NORMAL;
break;
case DCMID|DCMCON:
cp->cn_pri = CN_REMOTE;
break;
default:
cp->cn_pri = CN_DEAD;
break;
}
curcons_scode = hw->hw_sc;
#endif
}
void
dcminit(struct consdev *cp)
{
struct dcmdevice *dcm = dcmcnaddr;
int port = DCMCONUNIT;
dcm->dcm_ic = IC_ID;
while (dcm->dcm_thead[port].ptr != dcm->dcm_ttail[port].ptr)
;
dcm->dcm_data[port].dcm_baud = BR_9600;
dcm->dcm_data[port].dcm_conf = LC_8BITS | LC_1STOP;
SEM_LOCK(dcm);
dcm->dcm_cmdtab[port].dcm_data |= CT_CON;
dcm->dcm_cr |= (1 << port);
SEM_UNLOCK(dcm);
DELAY(15000);
}
#ifndef SMALL
int
dcmgetchar(dev_t dev)
{
struct dcmdevice *dcm = dcmcnaddr;
struct dcmrfifo *fifo;
struct dcmpreg *pp;
unsigned int head;
int c, port;
port = DCMCONUNIT;
pp = dcm_preg(dcm, port);
head = pp->r_head & RX_MASK;
if (head == (pp->r_tail & RX_MASK))
return 0;
fifo = &dcm->dcm_rfifos[3-port][head>>1];
c = fifo->data_char;
(void)fifo->data_stat;
pp->r_head = (head + 2) & RX_MASK;
SEM_LOCK(dcm);
(void)dcm->dcm_iir;
SEM_UNLOCK(dcm);
return c;
}
#else
int
dcmgetchar(dev_t dev)
{
return 0;
}
#endif
void
dcmputchar(dev_t dev, int c)
{
struct dcmdevice *dcm = dcmcnaddr;
struct dcmpreg *pp;
int timo;
unsigned int tail;
int port;
port = DCMCONUNIT;
pp = dcm_preg(dcm, port);
tail = pp->t_tail & TX_MASK;
timo = 50000;
while (tail != (pp->t_head & TX_MASK) && --timo)
;
dcm->dcm_tfifos[3-port][tail].data_char = c;
pp->t_tail = tail = (tail + 1) & TX_MASK;
SEM_LOCK(dcm);
dcm->dcm_cmdtab[port].dcm_data |= CT_TX;
dcm->dcm_cr |= (1 << port);
SEM_UNLOCK(dcm);
timo = 1000000;
while (tail != (pp->t_head & TX_MASK) && --timo)
;
SEM_LOCK(dcm);
(void)dcm->dcm_iir;
SEM_UNLOCK(dcm);
}
#endif