forked from GNS3/dynamips
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdev_c6sup1_iofpga.c
426 lines (352 loc) · 11 KB
/
dev_c6sup1_iofpga.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
/*
* Cisco router simulation platform.
* Copyright (c) 2007 Christophe Fillot ([email protected])
*
* Cisco C6k-SUP1 I/O FPGA:
* - Simulates a NMC93C56 Serial EEPROM.
* - Simulates a DALLAS DS1620 for Temperature Sensors.
* - Simulates console and AUX ports (SCN2681).
*
* This is very similar to c7200 platform.
*/
#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_c6sup1.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
/* Pack the NVRAM */
#define NVRAM_PACKED 0x04
/* Temperature: 22°C as default value */
#define C6SUP1_DEFAULT_TEMP 22
#define DS1620_CHIP(d,id) (&(d)->router->ds1620_sensors[(id)])
/* 2 temperature sensors in a MSFC1: chassis inlet and oulet */
#define C6SUP1_TEMP_SENSORS 2
#define C6SUP1_DEFAULT_TEMP 22 /* default temperature: 22°C */
/* IO FPGA structure */
struct iofpga_data {
vm_obj_t vm_obj;
struct vdevice dev;
c6sup1_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;
/* Temperature Control */
u_int temp_cfg_reg[C6SUP1_TEMP_SENSORS];
u_int temp_deg_reg[C6SUP1_TEMP_SENSORS];
u_int temp_clk_low;
u_int temp_cmd;
u_int temp_cmd_pos;
u_int temp_data;
u_int temp_data_pos;
/* Voltages */
u_int mux;
};
#define IOFPGA_LOCK(d) pthread_mutex_lock(&(d)->lock)
#define IOFPGA_UNLOCK(d) pthread_mutex_unlock(&(d)->lock)
/* 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,C6SUP1_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,C6SUP1_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,C6SUP1_DUART_IRQ);
}
d->duart_irq_seq = 0;
}
IOFPGA_UNLOCK(d);
return(0);
}
/*
* dev_c6sup1_iofpga_access()
*/
void *dev_c6sup1_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;
vm_instance_t *vm = d->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) {
/* 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;
/* 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,C6SUP1_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,C6SUP1_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<C6SUP1_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<C6SUP1_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<C6SUP1_TEMP_SENSORS;i++)
*data |= ds1620_read_data_bit(DS1620_CHIP(d,i)) << i;
}
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;
}
/* Shutdown the IO FPGA device */
void dev_c6sup1_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_c6sup1_iofpga_init()
*/
int dev_c6sup1_iofpga_init(c6sup1_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<C6SUP1_TEMP_SENSORS;i++)
ds1620_init(DS1620_CHIP(d,i),C6SUP1_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_c6sup1_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_c6sup1_iofpga_access;
d->dev.priv_data = d;
/* 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);
}