Source to ./dev_c7200_iofpga.c
/*
* Cisco router simulation platform.
* Copyright (c) 2005,2006 Christophe Fillot ([email protected])
*
* Cisco 7200 I/O FPGA:
* - Simulates a NMC93C46 Serial EEPROM as CPU and Midplane EEPROM.
* - Simulates a DALLAS DS1620 for Temperature Sensors.
* - Simulates voltage sensors.
* - Simulates console and AUX ports (SCN2681).
*/
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <sys/types.h>
#include <termios.h>
#include <fcntl.h>
#include <pthread.h>
#include "ptask.h"
#include "cpu.h"
#include "vm.h"
#include "dynamips.h"
#include "memory.h"
#include "device.h"
#include "dev_vtty.h"
#include "nmc93cX6.h"
#include "dev_ds1620.h"
#include "dev_c7200.h"
/* Debugging flags */
#define DEBUG_UNKNOWN 1
#define DEBUG_ACCESS 0
#define DEBUG_LED 0
#define DEBUG_IO_CTL 0
#define DEBUG_ENVM 0
/* DUART RX/TX status (SRA/SRB) */
#define DUART_RX_READY 0x01
#define DUART_TX_READY 0x04
/* DUART RX/TX Interrupt Status/Mask */
#define DUART_TXRDYA 0x01
#define DUART_RXRDYA 0x02
#define DUART_TXRDYB 0x10
#define DUART_RXRDYB 0x20
/* Definitions for CPU and Midplane Serial EEPROMs */
#define EEPROM_CPU_DOUT 6
#define EEPROM_CPU_DIN 0
#define EEPROM_CPU_CLK 1
#define EEPROM_CPU_CS 2
#define EEPROM_MP_DOUT 7
#define EEPROM_MP_DIN 3
#define EEPROM_MP_CLK 4
#define EEPROM_MP_CS 5
/* Definitions for PEM (NPE-B) Serial EEPROM */
#define EEPROM_PEM_DOUT 3
#define EEPROM_PEM_DIN 2
#define EEPROM_PEM_CS 1
#define EEPROM_PEM_CLK 0
/* Pack the NVRAM */
#define NVRAM_PACKED 0x04
/* Temperature: 22�C as default value */
#define C7200_DEFAULT_TEMP 22
#define DS1620_CHIP(d,id) (&(d)->router->ds1620_sensors[(id)])
/* Voltages */
#define C7200_A2D_SAMPLES 9
/*
* A2D MUX Select definitions.
*/
#define C7200_MUX_PS0 0x00 /* Power Supply 0 */
#define C7200_MUX_PS1 0x02 /* Power Supply 1 */
#define C7200_MUX_P3V 0x04 /* +3V */
#define C7200_MUX_P12V 0x08 /* +12V */
#define C7200_MUX_P5V 0x0a /* +5V */
#define C7200_MUX_N12V 0x0c /* -12V */
/* Analog To Digital Converters samples */
#define C7200_A2D_PS0 1150
#define C7200_A2D_PS1 1150
/* Voltage Samples */
#define C7200_A2D_P3V 1150
#define C7200_A2D_P12V 1150
#define C7200_A2D_P5V 1150
#define C7200_A2D_N12V 1150
/* IO FPGA structure */
struct iofpga_data {
vm_obj_t vm_obj;
struct vdevice dev;
c7200_t *router;
/* Lock test */
pthread_mutex_t lock;
/* Periodic task to trigger dummy DUART IRQ */
ptask_id_t duart_irq_tid;
/* DUART & Console Management */
u_int duart_isr,duart_imr,duart_irq_seq;
/* IO control register */
u_int io_ctrl_reg;
/* Voltages */
u_int mux;
/* NPE-G2 environmental part */
m_uint32_t envm_r0,envm_r1,envm_r2;
};
#define IOFPGA_LOCK(d) pthread_mutex_lock(&(d)->lock)
#define IOFPGA_UNLOCK(d) pthread_mutex_unlock(&(d)->lock)
/* CPU EEPROM definition */
static const struct nmc93cX6_eeprom_def eeprom_cpu_def = {
EEPROM_CPU_CLK, EEPROM_CPU_CS, EEPROM_CPU_DIN, EEPROM_CPU_DOUT,
};
/* Midplane EEPROM definition */
static const struct nmc93cX6_eeprom_def eeprom_midplane_def = {
EEPROM_MP_CLK, EEPROM_MP_CS, EEPROM_MP_DIN, EEPROM_MP_DOUT,
};
/* PEM (NPE-B) EEPROM definition */
static const struct nmc93cX6_eeprom_def eeprom_pem_def = {
EEPROM_PEM_CLK, EEPROM_PEM_CS, EEPROM_PEM_DIN, EEPROM_PEM_DOUT,
};
/* IOFPGA manages simultaneously CPU and Midplane EEPROM */
static const struct nmc93cX6_group eeprom_cpu_midplane = {
EEPROM_TYPE_NMC93C46, 2, 0,
EEPROM_DORD_NORMAL,
EEPROM_DOUT_HIGH,
EEPROM_DEBUG_DISABLED,
"CPU and Midplane EEPROM",
{ &eeprom_cpu_def, &eeprom_midplane_def },
};
/*
* IOFPGA manages also PEM EEPROM (for NPE-B)
* PEM stands for "Power Entry Module":
* http://www.cisco.com/en/US/products/hw/routers/ps341/products_field_notice09186a00801cb26d.shtml
*/
static const struct nmc93cX6_group eeprom_pem_npeb = {
EEPROM_TYPE_NMC93C46, 1, 0,
EEPROM_DORD_NORMAL,
EEPROM_DOUT_HIGH,
EEPROM_DEBUG_DISABLED,
"PEM (NPE-B) EEPROM",
{ &eeprom_pem_def },
};
/* NPE-G2 environmental monitor reading */
static m_uint32_t g2_envm_read(struct iofpga_data *d)
{
m_uint32_t val = 0;
m_uint32_t p1;
p1 = ((d->envm_r2 & 0xFF) << 8) | d->envm_r0 >> 3;
switch(p1) {
case 0x2a00: /* CPU Die Temperature */
val = 0x3000;
break;
case 0x4c00: /* +3.30V */
val = 0x2a9;
break;
case 0x4c01: /* +1.50V */
val = 0x135;
break;
case 0x4c02: /* +2.50V */
val = 0x204;
break;
case 0x4c03: /* +1.80V */
val = 0x173;
break;
case 0x4c04: /* +1.20V */
val = 0xF7;
break;
case 0x4c05: /* VDD_CPU */
val = 0x108;
break;
case 0x4800: /* VDD_MEM */
val = 0x204;
break;
case 0x4801: /* VTT */
val = 0xF9;
break;
case 0x4802: /* +3.45V */
val = 0x2c8;
break;
case 0x4803: /* -11.95V */
val = 0x260;
break;
case 0x4804: /* ? */
val = 0x111;
break;
case 0x4805: /* ? */
val = 0x111;
break;
case 0x4806: /* +5.15V */
val = 0x3F8;
break;
case 0x4807: /* +12.15V */
val = 0x33D;
break;
#if DEBUG_UNKNOWN
default:
vm_log(d->router->vm,"IO_FPGA","p1 = 0x%8.8x\n",p1);
#endif
}
return(swap32(val));
}
/* Console port input */
static void tty_con_input(vtty_t *vtty)
{
struct iofpga_data *d = vtty->priv_data;
IOFPGA_LOCK(d);
if (d->duart_imr & DUART_RXRDYA) {
d->duart_isr |= DUART_RXRDYA;
vm_set_irq(d->router->vm,C7200_DUART_IRQ);
}
IOFPGA_UNLOCK(d);
}
/* AUX port input */
static void tty_aux_input(vtty_t *vtty)
{
struct iofpga_data *d = vtty->priv_data;
IOFPGA_LOCK(d);
if (d->duart_imr & DUART_RXRDYB) {
d->duart_isr |= DUART_RXRDYB;
vm_set_irq(d->router->vm,C7200_DUART_IRQ);
}
IOFPGA_UNLOCK(d);
}
/* IRQ trickery for Console and AUX ports */
static int tty_trigger_dummy_irq(struct iofpga_data *d,void *arg)
{
u_int mask;
IOFPGA_LOCK(d);
d->duart_irq_seq++;
if (d->duart_irq_seq == 2) {
mask = DUART_TXRDYA|DUART_TXRDYB;
if (d->duart_imr & mask) {
d->duart_isr |= DUART_TXRDYA|DUART_TXRDYB;
vm_set_irq(d->router->vm,C7200_DUART_IRQ);
}
d->duart_irq_seq = 0;
}
IOFPGA_UNLOCK(d);
return(0);
}
/*
* dev_c7200_iofpga_access()
*/
void *dev_c7200_iofpga_access(cpu_gen_t *cpu,struct vdevice *dev,
m_uint32_t offset,u_int op_size,u_int op_type,
m_uint64_t *data)
{
struct iofpga_data *d = dev->priv_data;
c7200_t *router = d->router;
vm_instance_t *vm = router->vm;
u_char odata;
int i;
if (op_type == MTS_READ)
*data = 0x0;
#if DEBUG_ACCESS
if (op_type == MTS_READ) {
cpu_log(cpu,"IO_FPGA","reading reg 0x%x at pc=0x%llx\n",
offset,cpu_get_pc(cpu));
} else {
cpu_log(cpu,"IO_FPGA","writing reg 0x%x at pc=0x%llx, data=0x%llx\n",
offset,cpu_get_pc(cpu),*data);
}
#endif
IOFPGA_LOCK(d);
switch(offset) {
/* PA Status Reg #2 (for slot 7) */
case 0x2d4:
if (op_type == MTS_READ)
*data = router->pa_status_reg[1];
break;
/* PA Control Reg #2 (for slot 7) */
case 0x2dc:
if (op_type == MTS_READ)
router->pa_ctrl_reg[1] = *data;
else
*data = router->pa_ctrl_reg[1];
break;
/* EEPROM for PA in slot 7 */
case 0x2e4:
if (op_type == MTS_WRITE)
nmc93cX6_write(&router->pa_eeprom_g3,*data);
else
*data = nmc93cX6_read(&router->pa_eeprom_g3);
break;
/* Network Interrupt for slot 7 */
case 0x294:
if (op_type == MTS_READ)
*data = router->net_irq_status[2];
break;
/* Interrupt mask for slot 7 */
case 0x2a4:
if (op_type == MTS_READ) {
*data = router->net_irq_mask[2];
} else {
router->net_irq_mask[2] = *data;
dev_c7200_net_update_irq(router);
}
break;
/* OIR status for slot 7 (bit 24, other bits unknown) */
case 0x2f4:
if (op_type == MTS_READ) {
*data = router->oir_status[1];
} else {
router->oir_status[1] &= ~(*data);
}
break;
/* NPE-G1 test - unknown (value written: 0x01) */
case 0x338:
break;
/*
* NPE-G1/NPE-G2 - has influence on slot 0 / flash / pcmcia ...
* Bit 24: 1=I/O slot present
* Lower 16 bits: FPGA version (displayed by "sh c7200")
*/
case 0x390:
if (op_type == MTS_READ) {
*data = 0x0102;
/* If we have an I/O slot, we use the I/O slot DUART */
if (c7200_slot0_iocard_present(router))
*data |= 0x01000000;
}
break;
/* I/O control register */
case 0x204:
if (op_type == MTS_WRITE) {
#if DEBUG_IO_CTL
vm_log(vm,"IO_FPGA","setting value 0x%llx in io_ctrl_reg\n",*data);
#endif
d->io_ctrl_reg = *data;
} else {
*data = d->io_ctrl_reg;
*data |= NVRAM_PACKED; /* Packed NVRAM */
}
break;
/* CPU/Midplane EEPROMs */
case 0x21c:
if (op_type == MTS_WRITE)
nmc93cX6_write(&d->router->sys_eeprom_g1,(u_int)(*data));
else
*data = nmc93cX6_read(&d->router->sys_eeprom_g1);
break;
/* PEM (NPE-B) EEPROM */
case 0x388:
if (op_type == MTS_WRITE)
nmc93cX6_write(&d->router->sys_eeprom_g2,(u_int)(*data));
else
*data = nmc93cX6_read(&d->router->sys_eeprom_g2);
break;
/* Watchdog */
case 0x234:
break;
/*
* FPGA release/presence ? Flash SIMM size:
* 0x0001: 2048K Flash (2 banks)
* 0x0504: 8192K Flash (2 banks)
* 0x0704: 16384K Flash (2 banks)
* 0x0904: 32768K Flash (2 banks)
* 0x0B04: 65536K Flash (2 banks)
* 0x2001: 1024K Flash (1 bank)
* 0x2504: 4096K Flash (1 bank)
* 0x2704: 8192K Flash (1 bank)
* 0x2904: 16384K Flash (1 bank)
* 0x2B04: 32768K Flash (1 bank)
*
* Number of Flash SIMM banks + size.
* Touching some lower bits causes problems with environmental monitor.
*
* It is displayed by command "sh bootflash: chips"
*/
case 0x23c:
if (op_type == MTS_READ)
*data = 0x2704;
break;
/* LEDs */
case 0x244:
#if DEBUG_LED
vm_log(vm,"IO_FPGA","LED register is now 0x%x (0x%x)\n",
*data,(~*data) & 0x0F);
#endif
break;
/* ==== DUART SCN2681 (console/aux) ==== */
case 0x404: /* Mode Register A (MRA) */
break;
case 0x40c: /* Status Register A (SRA) */
if (op_type == MTS_READ) {
odata = 0;
if (vtty_is_char_avail(vm->vtty_con))
odata |= DUART_RX_READY;
odata |= DUART_TX_READY;
vm_clear_irq(vm,C7200_DUART_IRQ);
*data = odata;
}
break;
case 0x414: /* Command Register A (CRA) */
/* Disable TX = High */
if ((op_type == MTS_WRITE) && (*data & 0x8)) {
vm->vtty_con->managed_flush = TRUE;
vtty_flush(vm->vtty_con);
}
break;
case 0x41c: /* RX/TX Holding Register A (RHRA/THRA) */
if (op_type == MTS_WRITE) {
vtty_put_char(vm->vtty_con,(char)*data);
d->duart_isr &= ~DUART_TXRDYA;
} else {
*data = vtty_get_char(vm->vtty_con);
d->duart_isr &= ~DUART_RXRDYA;
}
break;
case 0x424: /* WRITE: Aux Control Register (ACR) */
break;
case 0x42c: /* Interrupt Status/Mask Register (ISR/IMR) */
if (op_type == MTS_WRITE) {
d->duart_imr = *data;
} else
*data = d->duart_isr;
break;
case 0x434: /* Counter/Timer Upper Value (CTU) */
case 0x43c: /* Counter/Timer Lower Value (CTL) */
case 0x444: /* Mode Register B (MRB) */
break;
case 0x44c: /* Status Register B (SRB) */
if (op_type == MTS_READ) {
odata = 0;
if (vtty_is_char_avail(vm->vtty_aux))
odata |= DUART_RX_READY;
odata |= DUART_TX_READY;
//vm_clear_irq(vm,C7200_DUART_IRQ);
*data = odata;
}
break;
case 0x454: /* Command Register B (CRB) */
/* Disable TX = High */
if ((op_type == MTS_WRITE) && (*data & 0x8)) {
vm->vtty_aux->managed_flush = TRUE;
vtty_flush(vm->vtty_aux);
}
break;
case 0x45c: /* RX/TX Holding Register B (RHRB/THRB) */
if (op_type == MTS_WRITE) {
vtty_put_char(vm->vtty_aux,(char)*data);
d->duart_isr &= ~DUART_TXRDYA;
} else {
*data = vtty_get_char(vm->vtty_aux);
d->duart_isr &= ~DUART_RXRDYB;
}
break;
case 0x46c: /* WRITE: Output Port Configuration Register (OPCR) */
case 0x474: /* READ: Start Counter Command; */
/* WRITE: Set Output Port Bits Command */
case 0x47c: /* WRITE: Reset Output Port Bits Command */
break;
/* ==== DS 1620 (temp sensors) ==== */
case 0x20c: /* Temperature Control */
if (op_type == MTS_WRITE) {
for(i=0;i<C7200_TEMP_SENSORS;i++) {
ds1620_set_rst_bit(DS1620_CHIP(d,i),(*data >> i) & 0x01);
ds1620_set_clk_bit(DS1620_CHIP(d,i),(*data >> 4) & 0x01);
}
}
break;
case 0x214: /* Temperature data write */
if (op_type == MTS_WRITE) {
d->mux = *data;
for(i=0;i<C7200_TEMP_SENSORS;i++)
ds1620_write_data_bit(DS1620_CHIP(d,i),*data & 0x01);
}
break;
case 0x22c: /* Temperature data read */
if (op_type == MTS_READ) {
*data = 0;
for(i=0;i<C7200_TEMP_SENSORS;i++)
*data |= ds1620_read_data_bit(DS1620_CHIP(d,i)) << i;
}
break;
/*
* NPE-G1 - Voltages + Power Supplies.
* I don't understand exactly how it works, it seems that the low
* part must be equal to the high part to have the better values.
*/
case 0x254:
#if DEBUG_ENVM
vm_log(vm,"ENVM","access to envm a/d converter - mux = %u\n",d->mux);
#endif
if (op_type == MTS_READ)
*data = 0xFFFFFFFF;
break;
case 0x257: /* ENVM A/D Converter */
#if DEBUG_ENVM
vm_log(vm,"ENVM","access to envm a/d converter - mux = %u\n",d->mux);
#endif
if (op_type == MTS_READ) {
switch(d->mux) {
case C7200_MUX_PS0:
if (router->ps_status & 0x1)
*data = C7200_A2D_PS0;
break;
case C7200_MUX_PS1:
if (router->ps_status & 0x2)
*data = C7200_A2D_PS1;
break;
case C7200_MUX_P3V:
*data = C7200_A2D_P3V;
break;
case C7200_MUX_P12V:
*data = C7200_A2D_P12V;
break;
case C7200_MUX_P5V:
*data = C7200_A2D_P5V;
break;
case C7200_MUX_N12V:
*data = C7200_A2D_N12V;
break;
default:
*data = 0;
}
*data = *data / C7200_A2D_SAMPLES;
}
break;
/* NPE-G2 environmental monitor reading */
case 0x3c0:
if (op_type == MTS_READ)
*data = 0;
break;
case 0x3c4:
if (op_type == MTS_WRITE)
d->envm_r0 = swap32(*data);
break;
case 0x3c8:
if (op_type == MTS_WRITE) {
d->envm_r1 = swap32(*data);
} else {
*data = g2_envm_read(d);
}
break;
case 0x3cc:
if (op_type == MTS_WRITE)
d->envm_r2 = swap32(*data);
break;
/* PCMCIA status ? */
case 0x3d6:
if (op_type == MTS_READ)
*data = 0x33;
break;
#if DEBUG_UNKNOWN
default:
if (op_type == MTS_READ) {
cpu_log(cpu,"IO_FPGA","read from addr 0x%x, pc=0x%llx (size=%u)\n",
offset,cpu_get_pc(cpu),op_size);
} else {
cpu_log(cpu,"IO_FPGA","write to addr 0x%x, value=0x%llx, "
"pc=0x%llx (size=%u)\n",
offset,*data,cpu_get_pc(cpu),op_size);
}
#endif
}
IOFPGA_UNLOCK(d);
return NULL;
}
/* Initialize system EEPROM groups */
void c7200_init_sys_eeprom_groups(c7200_t *router)
{
router->sys_eeprom_g1 = eeprom_cpu_midplane;
router->sys_eeprom_g2 = eeprom_pem_npeb;
router->sys_eeprom_g1.eeprom[0] = &router->cpu_eeprom;
router->sys_eeprom_g1.eeprom[1] = &router->mp_eeprom;
router->sys_eeprom_g2.eeprom[0] = &router->pem_eeprom;
}
/* Shutdown the IO FPGA device */
void dev_c7200_iofpga_shutdown(vm_instance_t *vm,struct iofpga_data *d)
{
if (d != NULL) {
IOFPGA_LOCK(d);
vm->vtty_con->read_notifier = NULL;
vm->vtty_aux->read_notifier = NULL;
IOFPGA_UNLOCK(d);
/* Remove the dummy IRQ periodic task */
ptask_remove(d->duart_irq_tid);
/* Remove the device */
dev_remove(vm,&d->dev);
/* Free the structure itself */
free(d);
}
}
/*
* dev_c7200_iofpga_init()
*/
int dev_c7200_iofpga_init(c7200_t *router,m_uint64_t paddr,m_uint32_t len)
{
vm_instance_t *vm = router->vm;
struct iofpga_data *d;
u_int i;
/* Allocate private data structure */
if (!(d = malloc(sizeof(*d)))) {
fprintf(stderr,"IO_FPGA: out of memory\n");
return(-1);
}
memset(d,0,sizeof(*d));
pthread_mutex_init(&d->lock,NULL);
d->router = router;
for(i=0;i<C7200_TEMP_SENSORS;i++)
ds1620_init(DS1620_CHIP(d,i),C7200_DEFAULT_TEMP);
vm_object_init(&d->vm_obj);
d->vm_obj.name = "io_fpga";
d->vm_obj.data = d;
d->vm_obj.shutdown = (vm_shutdown_t)dev_c7200_iofpga_shutdown;
/* Set device properties */
dev_init(&d->dev);
d->dev.name = "io_fpga";
d->dev.phys_addr = paddr;
d->dev.phys_len = len;
d->dev.handler = dev_c7200_iofpga_access;
d->dev.priv_data = d;
/* If we have an I/O slot, we use the I/O slot DUART */
if (c7200_slot0_iocard_present(router)) {
vm_log(vm,"CONSOLE","console managed by I/O board\n");
/* Set console and AUX port notifying functions */
vm->vtty_con->priv_data = d;
vm->vtty_aux->priv_data = d;
vm->vtty_con->read_notifier = tty_con_input;
vm->vtty_aux->read_notifier = tty_aux_input;
/* Trigger periodically a dummy IRQ to flush buffers */
d->duart_irq_tid = ptask_add((ptask_callback)tty_trigger_dummy_irq,
d,NULL);
}
/* Map this device to the VM */
vm_bind_device(vm,&d->dev);
vm_object_add(vm,&d->vm_obj);
return(0);
}