aboutsummaryrefslogtreecommitdiff
path: root/sim/ppc/devices.c
blob: 39f6103bf9aba88fb86c28c193decd4f69359d89 (plain)
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
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
/*  This file is part of the program psim.

    Copyright (C) 1994-1995, Andrew Cagney <cagney@highland.com.au>

    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
    along with this program; if not, write to the Free Software
    Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
    */


#ifndef _DEVICES_C_
#define _DEVICES_C_

#ifndef STATIC_INLINE_DEVICES
#define STATIC_INLINE_DEVICES STATIC_INLINE
#endif

#include <stdio.h>
#include <fcntl.h>
#include <signal.h>
#include <stdarg.h>

#include "basics.h"
#include "devices.h"
#include "events.h"

#ifdef HAVE_UNISTD_H
#include <unistd.h>
#endif

#ifdef HAVE_STDLIB_H
#include <stdlib.h>
#endif

#ifdef HAVE_STRING_H
#include <string.h>
#else
#ifdef HAVE_STRINGS_H
#include <strings.h>
#endif
#endif

#include "cpu.h"

#include "bfd.h"

/* Helper functions */

/* Generic device init: Attaches the device of size <nr_bytes> (taken
   from <name>@<int>,<nr_bytes>) to its parent at address zero and
   with read/write access. */

STATIC_INLINE_DEVICES void
generic_init_callback(const device *me,
		      psim *system)
{
  unsigned_word addr;
  unsigned nr_bytes;
  if (scand_uw_u(me->name, &addr, &nr_bytes) != 2)
    error("generic_init_callback() invalid nr_bytes in %s\n", me->name);
  me->parent->callback->attach_address(me->parent,
				       me->name,
				       attach_callback,
				       0 /*space*/,
				       addr,
				       nr_bytes,
				       access_read_write,
				       me);
}


/* DMA a file into memory */
STATIC_INLINE_DEVICES int
dma_file(const device *me,
	 const char *file_name,
	 unsigned_word addr)
{
  int count;
  int inc;
  FILE *image;
  char buf[1024];

  /* get it open */
  image = fopen(file_name, "r");
  if (image == NULL)
    return -1;

  /* read it in slowly */
  count = 0;
  while (1) {
    inc = fread(buf, sizeof(buf), 1, image);
    if (inc <= 0)
      break;
    if (me->parent->callback->dma_write_buffer(me->parent,
					       buf,
					       0 /*address-space*/,
					       addr+count,
					       inc /*nr-bytes*/,
					       1 /*violate ro*/) != inc) {
      fclose(image);
      return -1;
    }
    count += inc;
  }

  /* close down again */
  fclose(image);

  return count;
}



/* inimplemented versions of each function */

INLINE_DEVICES void
unimp_device_init(const device *me,
		  psim *system)
{
  error("device_init_callback for %s not implemented\n", me->name);
}

INLINE_DEVICES void
unimp_device_attach_address(const device *me,
			    const char *name,
			    attach_type type,
			    int space,
			    unsigned_word addr,
			    unsigned nr_bytes,
			    access_type access,
			    const device *who) /*callback/default*/
{
  error("device_attach_address_callback for %s not implemented\n", me->name);
}

INLINE_DEVICES void
unimp_device_detach_address(const device *me,
			    const char *name,
			    attach_type type,
			    int space,
			    unsigned_word addr,
			    unsigned nr_bytes,
			    access_type access,
			    const device *who) /*callback/default*/
{
  error("device_detach_address_callback for %s not implemented\n", me->name);
}

INLINE_DEVICES unsigned
unimp_device_io_read_buffer(const device *me,
			    void *dest,
			    int space,
			    unsigned_word addr,
			    unsigned nr_bytes,
			    cpu *processor,
			    unsigned_word cia)
{
  error("device_io_read_buffer_callback for %s not implemented\n", me->name);
  return 0;
}

INLINE_DEVICES unsigned
unimp_device_io_write_buffer(const device *me,
			     const void *source,
			     int space,
			     unsigned_word addr,
			     unsigned nr_bytes,
			     cpu *processor,
			     unsigned_word cia)
{
  error("device_io_write_buffer_callback for %s not implemented\n", me->name);
  return 0;
}

INLINE_DEVICES unsigned
unimp_device_dma_read_buffer(const device *me,
			     void *target,
			     int space,
			     unsigned_word addr,
			     unsigned nr_bytes)
{
  error("device_dma_read_buffer_callback for %s not implemented\n", me->name);
  return 0;
}

INLINE_DEVICES unsigned
unimp_device_dma_write_buffer(const device *me,
			      const void *source,
			      int space,
			      unsigned_word addr,
			      unsigned nr_bytes,
			      int violate_read_only_section)
{
  error("device_dma_write_buffer_callback for %s not implemented\n", me->name);
  return 0;
}

INLINE_DEVICES void
unimp_device_attach_interrupt(const device *me,
			      const device *who,
			      int interrupt_line,
			      const char *name)
{
  error("device_attach_interrupt_callback for %s not implemented\n", me->name);
}

INLINE_DEVICES void
unimp_device_detach_interrupt(const device *me,
			      const device *who,
			      int interrupt_line,
			      const char *name)
{
  error("device_detach_interrupt_callback for %s not implemented\n", me->name);
}

INLINE_DEVICES void
unimp_device_interrupt(const device *me,
		       const device *who,
		       int interrupt_line,
		       int interrupt_status,
		       cpu *processor,
		       unsigned_word cia)
{
  error("device_interrupt_callback for %s not implemented\n", me->name);
}

INLINE_DEVICES void
unimp_device_interrupt_ack(const device *me,
			   int interrupt_line,
			   int interrupt_status)
{
  error("device_interrupt_ack_callback for %s not implemented\n", me->name);
}

STATIC_DEVICES void
unimp_device_ioctl(const device *me,
		   psim *system,
		   cpu *processor,
		   unsigned_word cia,
		   ...)
{
  error("device_ioctl_callback for %s not implemented\n", me->name);
}



/* ignore/passthrough versions of each function */

INLINE_DEVICES void
ignore_device_init(const device *me,
		   psim *system)
{
  /*null*/
}

INLINE_DEVICES void
pass_device_attach_address(const device *me,
			   const char *name,
			   attach_type attach,
			   int space,
			   unsigned_word addr,
			   unsigned nr_bytes,
			   access_type access,
			   const device *who) /*callback/default*/
{
  DTRACE_ATTACH_ADDRESS(pass);
  me->parent->callback->attach_address(me->parent, name, attach,
				       space, addr, nr_bytes,
				       access,
				       who);
}

INLINE_DEVICES void
pass_device_detach_address(const device *me,
			   const char *name,
			   attach_type attach,
			   int space,
			   unsigned_word addr,
			   unsigned nr_bytes,
			   access_type access,
			   const device *who) /*callback/default*/
{
  DTRACE_DETACH_ADDRESS(pass);
  me->parent->callback->detach_address(me->parent, name, attach,
				       space, addr, nr_bytes, access,
				       who);
}

INLINE_DEVICES unsigned
pass_device_dma_read_buffer(const device *me,
			    void *dest,
			    int space,
			    unsigned_word addr,
			    unsigned nr_bytes)
{
  DTRACE_DMA_READ_BUFFER(pass);
  return me->parent->callback->dma_read_buffer(me->parent, dest,
					       space, addr, nr_bytes);
}

INLINE_DEVICES unsigned
pass_device_dma_write_buffer(const device *me,
			     const void *source,
			     int space,
			     unsigned_word addr,
			     unsigned nr_bytes,
			     int violate_read_only_section)
{
  DTRACE_DMA_WRITE_BUFFER(pass);
  return me->parent->callback->dma_write_buffer(me->parent, source,
						space, addr,
						nr_bytes,
						violate_read_only_section);
}

INLINE_DEVICES void
pass_device_attach_interrupt(const device *me,
			     const device *who,
			     int interrupt_line,
			     const char *name)
{
  me->parent->callback->attach_interrupt(me->parent, who,
					 interrupt_line, name);
}

INLINE_DEVICES void
pass_device_detach_interrupt(const device *me,
			     const device *who,
			     int interrupt_line,
			     const char *name)
{
  me->parent->callback->detach_interrupt(me->parent, who,
					 interrupt_line, name);
}


INLINE_DEVICES void
pass_device_interrupt(const device *me,
		      const device *who,
		      int interrupt_line,
		      int interrupt_status,
		      cpu *processor,
		      unsigned_word cia)
{
  me->parent->callback->interrupt(me->parent, who,
				  interrupt_line, interrupt_status,
				  processor, cia);
}



/* Simple console device: console@<address>,16

   Input characters are taken from the keyboard, output characters
   sent to the terminal.  Echoing of characters is not disabled.

   The device has four registers:

   0x0: read
   0x4: read-status
   0x8: write
   0xC: write-status

   Where a nonzero status register indicates that the device is ready
   (input fifo contains a character or output fifo has space). */

typedef struct _console_buffer {
  char buffer;
  int status;
  event_entry_tag event_tag;
} console_buffer;

typedef struct _console_device {
  console_buffer input;
  console_buffer output;
} console_device;

typedef enum {
  console_read_buffer = 0,
  console_read_status = 4,
  console_write_buffer = 8,
  console_write_status = 12,
  console_offset_mask = 0xc,
  console_size = 16,
} console_offsets;


STATIC_INLINE_DEVICES unsigned
console_io_read_buffer_callback(const device *me,
				void *dest,
				int space,
				unsigned_word addr,
				unsigned nr_bytes,
				cpu *processor,
				unsigned_word cia)
{
  console_device *console = (console_device*)me->data;
  unsigned_1 val;
  DTRACE_IO_READ_BUFFER(console);

  /* determine what was read */

  switch ((int)addr) {

  case console_read_buffer:
    val = console->input.buffer;
    break;

  case console_read_status:
    { /* check for input */
      int flags;
      int status;
      /* get the old status */
      flags = fcntl(0, F_GETFL, 0);
      if (flags == -1) {
	perror("console");
	val = 0;
	break;
      }
      /* temp, disable blocking IO */
      status = fcntl(0, F_SETFL, flags | O_NDELAY);
      if (status == -1) {
	perror("console");
	val = 0;
	break;
      }
      /* try for input */
      status = read(0, &console->input.buffer, 1);
      if (status == 1) {
	console->input.status = 1;
      }
      else {
	console->input.status = 0;
      }
      /* return to regular vewing */
      fcntl(0, F_SETFL, flags);
    }
    val = console->input.status;
    break;

  case console_write_buffer:
    val = console->output.buffer;
    break;

  case console_write_status:
    val = console->output.status;
    break;

  default:
    error("console_read_callback() internal error\n");
    val = 0;
    break;

  }

  memset(dest, 0, nr_bytes);
  *(unsigned_1*)dest = val;
  return nr_bytes;
}

STATIC_INLINE_DEVICES unsigned
console_io_write_buffer_callback(const device *me,
				 const void *source,
				 int space,
				 unsigned_word addr,
				 unsigned nr_bytes,
				 cpu *processor,
				 unsigned_word cia)
{
  console_device *console = (console_device*)me->data;
  unsigned_1 val = *(unsigned_1*)source;
  DTRACE_IO_WRITE_BUFFER(console);

  switch ((int)addr) {
  case console_read_buffer:
    console->input.buffer = val;
    break;
  case console_read_status:
    console->input.status = val;
    break;
  case console_write_buffer:
    DTRACE(console, ("<%c:%d>", val, val));
    printf_filtered("%c",val) ;
    console->output.buffer = val;
    console->output.status = 1;
    break;
  case console_write_status:
    console->output.status = val;
    break;
  default:
    error("console_write_callback() internal error\n");
  }
	 
  return nr_bytes;
}


static device_callbacks const console_callbacks = {
  generic_init_callback,
  unimp_device_attach_address,
  unimp_device_detach_address,
  console_io_read_buffer_callback,
  console_io_write_buffer_callback,
  unimp_device_dma_read_buffer,
  unimp_device_dma_write_buffer,
  unimp_device_attach_interrupt,
  unimp_device_detach_interrupt,
  unimp_device_interrupt,
  unimp_device_interrupt_ack,
  unimp_device_ioctl,
};


STATIC_INLINE_DEVICES const device *
console_create(const char *name,
	       const char *full_name,
	       const device *parent)
{
  /* create the descriptor */
  console_device *console = ZALLOC(console_device);

  /* fill in the details */
  console->output.status = 1;
  console->output.buffer = '\0';
  console->input.status = 0;
  console->input.buffer = '\0';

  /* insert into the device tree along with its address info */
  return device_create_from(name,
			    full_name,
			    console, /* data */
			    &console_callbacks,
			    parent);
}



/* ICU device: icu@0x<address>,4

   Single 4 byte register.  Read returns processor number.  Write
   interrupts specified processor.

   Illustrates passing of events to parent device. Passing of
   interrupts to parent bus.

   NB: For the sake of illustrating the passing of interrupts.  This
   device doesn't pass interrupt events to its parent.  Instead it
   passes them back to its self. */

STATIC_INLINE_DEVICES unsigned
icu_io_read_buffer_callback(const device *me,
			    void *dest,
			    int space,
			    unsigned_word addr,
			    unsigned nr_bytes,
			    cpu *processor,
			    unsigned_word cia)
{
  unsigned_1 val;
  DTRACE_IO_READ_BUFFER(icu);
  val = cpu_nr(processor);
  memset(dest, 0, nr_bytes);
  *(unsigned_1*)dest = val;
  return nr_bytes;
}


STATIC_INLINE_DEVICES unsigned
icu_io_write_buffer_callback(const device *me,
			     const void *source,
			     int space,
			     unsigned_word addr,
			     unsigned nr_bytes,
			     cpu *processor,
			     unsigned_word cia)
{
  unsigned_1 val = H2T_1(*(unsigned_1*)source);
  DTRACE_IO_WRITE_BUFFER(icu);
  /* tell the parent device that the interrupt lines have changed.
     For this fake ICU.  The interrupt lines just indicate the cpu to
     interrupt next */
  me->parent->callback->interrupt(me->parent, me,
				  val, val,
				  processor, cia);
  return nr_bytes;
}


static device_callbacks const icu_callbacks = {
  generic_init_callback,
  unimp_device_attach_address,
  unimp_device_detach_address,
  icu_io_read_buffer_callback,
  icu_io_write_buffer_callback,
  unimp_device_dma_read_buffer,
  unimp_device_dma_write_buffer,
  unimp_device_attach_interrupt,
  unimp_device_detach_interrupt,
  unimp_device_interrupt,
  unimp_device_interrupt_ack,
  unimp_device_ioctl,
};



/* HALT device: halt@0x<address>,4

   With real hardware, the processor operation is normally terminated
   through a reset.  This device illustrates how a reset device could
   be attached to an address */


STATIC_INLINE_DEVICES unsigned
halt_io_read_buffer_callback(const device *me,
			     void *dest,
			     int space,
			     unsigned_word addr,
			     unsigned nr_bytes,
			     cpu *processor,
			     unsigned_word cia)
{
  DTRACE_IO_READ_BUFFER(halt);
  cpu_halt(processor, cia, was_exited, 0);
  return 0;
}


STATIC_INLINE_DEVICES unsigned
halt_io_write_buffer_callback(const device *me,
			      const void *source,
			      int space,
			      unsigned_word addr,
			      unsigned nr_bytes,
			      cpu *processor,
			      unsigned_word cia)
{
  DTRACE_IO_WRITE_BUFFER(halt);
  cpu_halt(processor, cia, was_exited, *(unsigned_1*)source);
  return 0;
}


static device_callbacks const halt_callbacks = {
  generic_init_callback,
  unimp_device_attach_address,
  unimp_device_detach_address,
  halt_io_read_buffer_callback,
  halt_io_write_buffer_callback,
  unimp_device_dma_read_buffer,
  unimp_device_dma_write_buffer,
  unimp_device_attach_interrupt,
  unimp_device_detach_interrupt,
  unimp_device_interrupt,
  unimp_device_interrupt_ack,
  unimp_device_ioctl,
};



/* Register init device: register@<name>,0x<value>[,<processor>]

   This strange device is used to initialize the processors registers
   as part of the initialization. */

STATIC_INLINE_DEVICES void
register_init_callback(const device *me,
		       psim *system)
{
  char name[100];
  unsigned_word value;
  unsigned which_cpu;
  int status;
  DTRACE_INIT(register);
  status = scand_c_uw_u(me->name, name, sizeof(name), &value, &which_cpu);
  switch (status) {
  case 2: /* register@<name>,<value> */
    psim_write_register(system, -1, &value, name, cooked_transfer);
    break;
  case 3: /* register@<name>,<value>,<processor> */
    psim_write_register(system, which_cpu, &value, name, cooked_transfer);
    break;
  default:
    error("register_init_callback() invalid register init %s\n", me->name);
    break;
  }
}


static device_callbacks const register_callbacks = {
  register_init_callback,
  unimp_device_attach_address,
  unimp_device_detach_address,
  unimp_device_io_read_buffer,
  unimp_device_io_write_buffer,
  unimp_device_dma_read_buffer,
  unimp_device_dma_write_buffer,
  unimp_device_attach_interrupt,
  unimp_device_detach_interrupt,
  unimp_device_interrupt,
  unimp_device_interrupt_ack,
  unimp_device_ioctl,
};



/* VEA VM device: vm@0x<stack-base>,<nr_bytes>

   A VEA mode device. This sets its self up as the default memory
   device capturing all accesses (reads/writes) to currently unmapped
   addresses.  If the unmaped access falls within unallocated stack or
   heap address ranges then memory is allocated and the access is
   allowed to continue.

   During init phase, this device expects to receive `attach' requests
   from its children for the text/data/bss memory areas.  Typically,
   this would be done by the binary device.

   STACK: The location of the stack in memory is specified as part of
   the devices name.  Unmaped accesses that fall within the stack
   space result in the allocated stack being grown downwards so that
   it includes the page of the culprit access.

   HEAP: During initialization, the vm device monitors all `attach'
   operations from its children using this to determine the initial
   location of the heap.  The heap is then extended by system calls
   that frob the heap upper bound variable (see system.c). */


typedef struct _vm_device {
  /* area of memory valid for stack addresses */
  unsigned_word stack_base; /* min possible stack value */
  unsigned_word stack_bound;
  unsigned_word stack_lower_limit;
  /* area of memory valid for heap addresses */
  unsigned_word heap_base;
  unsigned_word heap_bound;
  unsigned_word heap_upper_limit;
} vm_device;


STATIC_INLINE_DEVICES void
vm_init_callback(const device *me,
		 psim *system)
{
  vm_device *vm = (vm_device*)me->data;
  DTRACE_INIT(vm);

  /* revert the stack/heap variables to their defaults */
  vm->stack_lower_limit = vm->stack_bound;
  vm->heap_base = 0;
  vm->heap_bound = 0;
  vm->heap_upper_limit = 0;

  /* establish this device as the default memory handler */
  me->parent->callback->attach_address(me->parent,
				       me->name,
				       attach_default,
				       0 /*address space - ignore*/,
				       0 /*addr - ignore*/,
				       0 /*nr_bytes - ignore*/,
				       access_read_write /*access*/,
				       me);
}


STATIC_INLINE_DEVICES void
vm_attach_address(const device *me,
		  const char *name,
		  attach_type attach,
		  int space,
		  unsigned_word addr,
		  unsigned nr_bytes,
		  access_type access,
		  const device *who) /*callback/default*/
{
  vm_device *vm = (vm_device*)me->data;
  DTRACE_ATTACH_ADDRESS(vm);
  /* update end of bss if necessary */
  if (vm->heap_base < addr + nr_bytes) {
    vm->heap_base = addr + nr_bytes;
    vm->heap_bound = addr + nr_bytes;
    vm->heap_upper_limit = addr + nr_bytes;
  }
  me->parent->callback->attach_address(me->parent,
				       "vm@0x0,0", /* stop remap */
				       attach_raw_memory,
				       0 /*address space*/,
				       addr,
				       nr_bytes,
				       access,
				       me);
}


STATIC_INLINE_DEVICES unsigned
add_vm_space(const device *me,
	     unsigned_word addr,
	     unsigned nr_bytes,
	     cpu *processor,
	     unsigned_word cia)
{
  vm_device *vm = (vm_device*)me->data;
  unsigned_word block_addr;
  unsigned block_nr_bytes;

  /* an address in the stack area, allocate just down to the addressed
     page */
  if (addr >= vm->stack_base && addr < vm->stack_lower_limit) {
    block_addr = FLOOR_PAGE(addr);
    block_nr_bytes = vm->stack_lower_limit - block_addr;
    vm->stack_lower_limit = block_addr;
  }
  /* an address in the heap area, allocate all of the required heap */
  else if (addr >= vm->heap_upper_limit && addr < vm->heap_bound) {
    block_addr = vm->heap_upper_limit;
    block_nr_bytes = vm->heap_bound - vm->heap_upper_limit;
    vm->heap_upper_limit = vm->heap_bound;
  }
  /* oops - an invalid address - abort the cpu */
  else if (processor != NULL) {
    cpu_halt(processor, cia, was_signalled, SIGSEGV);
    return 0;
  }
  /* 2*oops - an invalid address and no processor */
  else {
    return 0;
  }

  /* got the parameters, allocate the space */
  me->parent->callback->attach_address(me->parent,
				       "vm@0x0,0", /* stop remap */
				       attach_raw_memory,
				       0 /*address space*/,
				       block_addr,
				       block_nr_bytes,
				       access_read_write,
				       me);
  return block_nr_bytes;
}


STATIC_INLINE_DEVICES unsigned
vm_io_read_buffer_callback(const device *me,
			   void *dest,
			   int space,
			   unsigned_word addr,
			   unsigned nr_bytes,
			   cpu *processor,
			   unsigned_word cia)
{
  DTRACE_IO_READ_BUFFER(vm);
  if (add_vm_space(me, addr, nr_bytes, processor, cia) >= nr_bytes) {
    memset(dest, 0, nr_bytes); /* always initialized to zero */
    return nr_bytes;
  }
  else 
    return 0;
}


STATIC_INLINE_DEVICES unsigned
vm_io_write_buffer_callback(const device *me,
			    const void *source,
			    int space,
			    unsigned_word addr,
			    unsigned nr_bytes,
			    cpu *processor,
			    unsigned_word cia)
{
  DTRACE_IO_WRITE_BUFFER(vm);
  if (add_vm_space(me, addr, nr_bytes, processor, cia) >= nr_bytes) {
    return me->parent->callback->dma_write_buffer(me->parent, source,
						  space, addr,
						  nr_bytes,
						  0/*violate_read_only*/);
  }
  else
    return 0;
}


static void
vm_ioctl_callback(const device *me,
		  psim *system,
		  cpu *processor,
		  unsigned_word cia,
		  ...)
{
  /* While the caller is notified that the heap has grown by the
     requested amount, the heap is infact extended out to a page
     boundary. */
  vm_device *vm = (vm_device*)me->data;
  unsigned_word new_break = ALIGN_8(cpu_registers(processor)->gpr[3]);
  unsigned_word old_break = vm->heap_bound;
  signed_word delta = new_break - old_break;
  if (delta > 0)
    vm->heap_bound = ALIGN_PAGE(new_break);
  cpu_registers(processor)->gpr[0] = 0;
  cpu_registers(processor)->gpr[3] = new_break;
}


static device_callbacks const vm_callbacks = {
  vm_init_callback,
  vm_attach_address,
  pass_device_detach_address,
  vm_io_read_buffer_callback,
  vm_io_write_buffer_callback,
  unimp_device_dma_read_buffer,
  pass_device_dma_write_buffer,
  unimp_device_attach_interrupt,
  unimp_device_detach_interrupt,
  unimp_device_interrupt,
  unimp_device_interrupt_ack,
  vm_ioctl_callback,
};


STATIC_INLINE_DEVICES const device *
vea_vm_create(const char *name,
	      const char *full_name,
	      const device *parent)
{
  vm_device *vm = ZALLOC(vm_device);
  unsigned_word addr;
  unsigned nr_bytes;

  /* extract out the stack parameters */
  if (scand_uw_u(name, &addr, &nr_bytes) != 2)
    error("vm_device_create() invalid vm device %s\n", name);
  vm->stack_base = addr;
  vm->stack_bound = addr + nr_bytes;

  /* insert in the tree including the buffer */
  return device_create_from(name,
			    full_name,
			    vm, /* data */
			    &vm_callbacks,
			    parent);
}



/* Memory init device: memory@0x<addr>,<size>,<access>

   This strange device is used create sections of memory */

STATIC_INLINE_DEVICES void
memory_init_callback(const device *me,
		     psim *system)
{
  unsigned_word addr;
  unsigned nr_bytes;
  unsigned access;
  int nr_args;
  DTRACE_INIT(memory);

  nr_args = scand_uw_u_u(me->name, &addr, &nr_bytes, &access);
  switch (nr_args) {
  case 2:
    access = access_read_write_exec;
    break;
  case 3:
    break;
  default:
    error("memory_init_callback() invalid memory device %s\n", me->name);
    break;
  }

  me->parent->callback->attach_address(me->parent,
				       me->name,
				       attach_raw_memory,
				       0 /*address space*/,
				       addr,
				       nr_bytes,
				       (access_type)access,
				       me);
}


static device_callbacks const memory_callbacks = {
  memory_init_callback,
  unimp_device_attach_address,
  unimp_device_detach_address,
  unimp_device_io_read_buffer,
  unimp_device_io_write_buffer,
  unimp_device_dma_read_buffer,
  unimp_device_dma_write_buffer,
  unimp_device_attach_interrupt,
  unimp_device_detach_interrupt,
  unimp_device_interrupt,
  unimp_device_interrupt_ack,
  unimp_device_ioctl,
};



/* IOBUS device: iobus@<address>

   Simple bus on which some IO devices live */

STATIC_INLINE_DEVICES void
iobus_attach_address_callback(const device *me,
			      const char *name,
			      attach_type type,
			      int space,
			      unsigned_word addr,
			      unsigned nr_bytes,
			      access_type access,
			      const device *who) /*callback/default*/
{
  unsigned_word iobus_addr;
  /* sanity check */
  if (type == attach_default)
    error("iobus_attach_address_callback() no default for %s/%s\n",
	  me->name, name);
  if (space != 0)
    error("iobus_attach_address_callback() no space for %s/%s\n",
	  me->name, name);
  /* get the bus address */
  if (scand_uw(me->name, &iobus_addr) != 1)
    error("iobus_attach_address_callback() invalid address for %s\n",
	  me->name);
  me->parent->callback->attach_address(me->parent,
				       me->name,
				       type,
				       0 /*space*/,
				       iobus_addr + addr,
				       nr_bytes,
				       access,
				       who);
}


STATIC_INLINE_DEVICES void
iobus_do_interrupt(event_queue *queue,
		   void *data)
{
  cpu *target = (cpu*)data;
  /* try to interrupt the processor.  If the attempt fails, try again
     on the next tick */
  if (!external_interrupt(target))
    event_queue_schedule(queue, 1, iobus_do_interrupt, target);
}


STATIC_INLINE_DEVICES void
iobus_interrupt_callback(const device *me,
			 const device *who,
			 int interrupt_line,
			 int interrupt_status,
			 cpu *processor,
			 unsigned_word cia)
{
  /* the interrupt controler can't interrupt a cpu at any time.
     Rather it must synchronize with the system clock before
     performing an interrupt on the given processor */
  psim *system = cpu_system(processor);
  cpu *target = psim_cpu(system, interrupt_status);
  if (target != NULL) {
    event_queue *events = cpu_event_queue(target);
    event_queue_schedule(events, 1, iobus_do_interrupt, target);
  }
}


static device_callbacks const iobus_callbacks = {
  ignore_device_init,
  iobus_attach_address_callback,
  unimp_device_detach_address,
  unimp_device_io_read_buffer,
  unimp_device_io_write_buffer,
  unimp_device_dma_read_buffer,
  unimp_device_dma_write_buffer,
  unimp_device_attach_interrupt,
  unimp_device_detach_interrupt,
  iobus_interrupt_callback,
  unimp_device_interrupt_ack,
  unimp_device_ioctl,
};



/* FILE device: file@0x<address>,<file-name>
   (later - file@0x<address>,<size>,<file-offset>,<file-name>)

   Specifies a file to read directly into memory starting at <address> */


STATIC_INLINE_DEVICES void
file_init_callback(const device *me,
		   psim *system)
{
  unsigned_word addr;
  int count;
  char file_name[1024];
  DTRACE_INIT(file);

  if (scand_uw_c(me->name, &addr, file_name, sizeof(file_name)) != 2)
    error("devices/file - Usage: file@<address>,<file-name>\n");
 
  /* load the file */
  count = dma_file(me, file_name, addr);
  if (count < 0)
    error("devices/%s - Problem loading file %s\n", me->name, file_name);
}


static device_callbacks const file_callbacks = {
  file_init_callback,
  unimp_device_attach_address,
  unimp_device_detach_address,
  unimp_device_io_read_buffer,
  unimp_device_io_write_buffer,
  unimp_device_dma_read_buffer,
  unimp_device_dma_write_buffer,
  unimp_device_attach_interrupt,
  unimp_device_detach_interrupt,
  unimp_device_interrupt,
  unimp_device_interrupt_ack,
  unimp_device_ioctl,
};



/* HTAB: htab@<address>,<nr_bytes>
   PTE: pte@<virtual-address>,<real-address>,<wimg>,<pp>,<nr_bytes>
   PTE: pte@<virtual-address>,<real-address>,<wimg>,<pp>,<file>

   HTAB defines the location (in physical memory) of a HASH table.
   PTE (as a child of HTAB) defines a mapping that is to be entered
   into that table.

   NB: All the work in this device is done during init by the PTE.
   The pte, looks up its parent to determine the address of the HTAB
   and then uses DMA calls to establish the required mapping. */


STATIC_INLINE_DEVICES void
htab_init_callback(const device *me,
		   psim *system)
{
  DTRACE_INIT(htab);
  if (WITH_TARGET_WORD_BITSIZE != 32)
    error("devices/htab: only 32bit targets currently suported\n");
  /* only the pte does work */
  if (strncmp(me->name, "pte@", strlen("pte@")) == 0) {
    unsigned32 htab_ra;
    unsigned htab_nr_bytes;
    signed32 pte_va; /* so that 0xff...0 is make 0xffffff00 */
    unsigned32 pte_ra;
    unsigned pte_nr_bytes;
    unsigned pte_wimg;
    unsigned pte_pp;
    unsigned32 ra;
    unsigned64 va;
    unsigned32 htaborg;
    unsigned32 htabmask;
    unsigned32 n;

    /* determine the location/size of the hash table */
    if (me->parent == NULL
	|| strncmp(me->parent->name, "htab@", strlen("htab@")) != 0)
      error("devices/%s - Parent is not a htab device\n", me->name);
    if (scand_uw_u(me->parent->name, &htab_ra, &htab_nr_bytes) != 2)
      error("devices/%s - Usage: htab@<real-addr>,<nr_bytes>\n",
	    me->parent->name);
    htabmask = EXTRACTED32(htab_nr_bytes - 1, 7, 15);
    for (n = htab_nr_bytes; n > 1; n = n / 2) {
      if (n % 2 != 0)
	error("devices/%s - htabmask 0x%x (size 0x%x) not a power of two\n",
	      me->parent->name, htabmask, htab_nr_bytes);
    }
    htaborg = htab_ra;
    if ((htaborg & INSERTED32(htabmask, 7, 15)) != 0) {
      error("devices/%s - htaborg 0x%x not aligned to htabmask 0x%x\n",
	    me->parent->name, htaborg, htabmask);
    }

    /* determine the location/size of the mapping */
    if (scand_uw_uw_u_u_u(me->name, &pte_va, &pte_ra,
			  &pte_wimg, &pte_pp, &pte_nr_bytes) != 5) {
      int nr_bytes;
      char file_name[1024];
      if (scand_uw_uw_u_u_c(me->name, &pte_va, &pte_ra, &pte_wimg, &pte_pp,
			    file_name, sizeof(file_name)) != 5)
	error("devices/%s - Usage: %s\nor\t%s\n",
	      me->name,
	      "pte@<virtual-addr>,<real-addr>,<wimg>,<pp>,<nr-bytes>",
	      "pte@<virtual-addr>,<real-addr>,<wimg>,<pp>,<file>");
      /* load/validate it */
      nr_bytes = dma_file(me, file_name, pte_ra);
      if (nr_bytes < 0)
	error("devices/%s - problem loading file %s\n", me->name, file_name);
      pte_nr_bytes = nr_bytes;
    }

    /* go through all pages and create a pte for each */
    for (ra = pte_ra, va = (signed32)pte_va;
	 ra < pte_ra + pte_nr_bytes;
	 ra += 1024, va += 1024) {
      unsigned64 vpn = va << 12;
      unsigned32 vsid = INSERTED32(EXTRACTED64(vpn, 0, 23), 0, 23);
      unsigned32 page = INSERTED32(EXTRACTED64(vpn, 24, 39), 0, 15);
      unsigned32 hash = INSERTED32(EXTRACTED32(vsid, 5, 23)
				   ^ EXTRACTED32(page, 0, 15),
				   0, 18);
      int h;
      for (h = 0; h < 2; h++) {
	unsigned32 pteg = (htaborg
			   | INSERTED32(EXTRACTED32(hash, 0, 8) & htabmask, 7, 15)
			   | INSERTED32(EXTRACTED32(hash, 9, 18), 16, 25));
	int pti;
	for (pti = 0; pti < 8; pti++, pteg += 8) {
	  unsigned32 pte0;
	  if (me->parent->callback->dma_read_buffer(me->parent,
						    &pte0,
						    0, /*space*/
						    pteg,
						    sizeof(pte0)) != 4)
	    error("htab_init_callback() failed to read a pte at 0x%x\n",
		  pteg);
	  if (!MASKED32(pte0, 0, 0)) {
	    /* empty pte fill it */
	    unsigned32 pte0 = (MASK32(0, 0)
			       | INSERTED32(EXTRACTED32(vsid, 0, 23), 1, 24)
			       | INSERTED32(h, 25, 25)
			       | INSERTED32(EXTRACTED32(page, 0, 5), 26, 31));
	    unsigned32 pte1 = (INSERTED32(EXTRACTED32(ra, 0, 19), 0, 19)
			       | INSERTED32(pte_wimg, 25, 28)
			       | INSERTED32(pte_pp, 30, 31));
	    if (me->parent->callback->dma_write_buffer(me->parent,
						       &pte0,
						       0, /*space*/
						       pteg,
						       sizeof(pte0),
						       1/*ro?*/) != 4
		|| me->parent->callback->dma_write_buffer(me->parent,
							  &pte1,
							  0, /*space*/
							  pteg + 4,
							  sizeof(pte1),
							  1/*ro?*/) != 4)
	      error("htab_init_callback() failed to write a pte a 0x%x\n",
		    pteg);
	    return;
	  }
	}
	/* re-hash */
	hash = MASKED32(~hash, 0, 18);
      }
    }
  }
}


static device_callbacks const htab_callbacks = {
  htab_init_callback,
  unimp_device_attach_address,
  unimp_device_detach_address,
  unimp_device_io_read_buffer,
  unimp_device_io_write_buffer,
  unimp_device_dma_read_buffer,
  unimp_device_dma_write_buffer,
  unimp_device_attach_interrupt,
  unimp_device_detach_interrupt,
  unimp_device_interrupt,
  unimp_device_interrupt_ack,
  unimp_device_ioctl,
};



/* Simulator device: sim@0x<address>,<nr_bytes>

   Eventually gives access to the hardware configuration.  For
   instance, it could allow the setting (on the fly) of variables such
   as hardware floating-point or strict-alignment.

   It's intended use is as part of testing the simulators
   functionality */

static device_callbacks const sim_callbacks = {
  ignore_device_init,
  unimp_device_attach_address,
  unimp_device_detach_address,
  unimp_device_io_read_buffer,
  unimp_device_io_write_buffer,
  unimp_device_dma_read_buffer,
  unimp_device_dma_write_buffer,
  unimp_device_attach_interrupt,
  unimp_device_detach_interrupt,
  unimp_device_interrupt,
  unimp_device_interrupt_ack,
  unimp_device_ioctl,
};



/* Load device: binary@<file-name>

   Assuming that <file-name> is an executable file understood by BFD,
   this device loads or maps the relevant text/data segments into
   memory using dma. */

STATIC_INLINE_DEVICES void
update_for_binary_section(bfd *abfd,
			  asection *the_section,
			  PTR obj)
{
  unsigned_word section_vma;
  unsigned_word section_size;
  access_type access;
  device *me = (device*)obj;

  /* skip the section if no memory to allocate */
  if (! (bfd_get_section_flags(abfd, the_section) & SEC_ALLOC))
    return;

  /* check/ignore any sections of size zero */
  section_size = bfd_get_section_size_before_reloc(the_section);
  if (section_size == 0)
    return;

  /* find where it is to go */
  section_vma = bfd_get_section_vma(abfd, the_section);

  DTRACE(binary,
	 ("name=%-7s, vma=0x%.8lx, size=%6ld, flags=%3lx(%s%s%s%s%s )\n",
	  bfd_get_section_name(abfd, the_section),
	  (long)section_vma,
	  (long)section_size,
	  (long)bfd_get_section_flags(abfd, the_section),
	  bfd_get_section_flags(abfd, the_section) & SEC_LOAD ? " LOAD" : "",
	  bfd_get_section_flags(abfd, the_section) & SEC_CODE ? " CODE" : "",
	  bfd_get_section_flags(abfd, the_section) & SEC_DATA ? " DATA" : "",
	  bfd_get_section_flags(abfd, the_section) & SEC_ALLOC ? " ALLOC" : "",
	  bfd_get_section_flags(abfd, the_section) & SEC_READONLY ? " READONLY" : ""
	  ));

  /* determine the devices access */
  access = access_read;
  if (bfd_get_section_flags(abfd, the_section) & SEC_CODE)
    access |= access_exec;
  if (!(bfd_get_section_flags(abfd, the_section) & SEC_READONLY))
    access |= access_write;

  /* if a map, pass up a request to create the memory in core */
  if (strncmp(me->name, "map-binary@", strlen("map-binary@")) == 0)
    me->parent->callback->attach_address(me->parent,
					 me->name,
					 attach_raw_memory,
					 0 /*address space*/,
					 section_vma,
					 section_size,
					 access,
					 me);

  /* if a load dma in the required data */
  if (bfd_get_section_flags(abfd, the_section) & SEC_LOAD) {
    void *section_init = zalloc(section_size);
    if (!bfd_get_section_contents(abfd,
				  the_section,
				  section_init, 0,
				  section_size)) {
      bfd_perror("core:load_section()");
      error("load of data failed");
      return;
    }
    if (me->parent->callback->dma_write_buffer(me->parent,
					       section_init,
					       0 /*space*/,
					       section_vma,
					       section_size,
					       1 /*violate_read_only*/)
	!= section_size)
      error("data_init_callback() broken transfer for %s\n", me->name);
    zfree(section_init); /* only free if load */
  }
}


STATIC_INLINE_DEVICES void
binary_init_callback(const device *me,
		     psim *system)
{
  char file_name[1024];
  bfd *image;
  DTRACE_INIT(binary);

  /* get a file name */
  if (scand_c(me->name, file_name, sizeof(file_name)) != 1)
    error("devices/binary - Usage: binary@<file-name>\n");

  /* open the file */
  image = bfd_openr(file_name, NULL);
  if (image == NULL) {
    bfd_perror("devices/binary");
    error("devices/%s - the file %s not loaded\n", me->name, file_name);
  }

  /* check it is valid */
  if (!bfd_check_format(image, bfd_object)) {
    printf_filtered("create_device_tree() - FIXME - should check more bfd bits\n");
    printf_filtered("create_device_tree() - %s not an executable, assume device file\n", file_name);
    bfd_close(image);
    image = NULL;
  }

  /* and the data sections */
  bfd_map_over_sections(image,
			update_for_binary_section,
			(PTR)me);

  bfd_close(image);
}


static device_callbacks const binary_callbacks = {
  binary_init_callback,
  unimp_device_attach_address,
  unimp_device_detach_address,
  unimp_device_io_read_buffer,
  unimp_device_io_write_buffer,
  unimp_device_dma_read_buffer,
  unimp_device_dma_write_buffer,
  unimp_device_attach_interrupt,
  unimp_device_detach_interrupt,
  unimp_device_interrupt,
  unimp_device_interrupt_ack,
  unimp_device_ioctl,
};



/* Stack device: stack@<type>

   Has a single IOCTL to create a stack frame of the specified type.
   If <type> is elf or xcoff then a corresponding stack is created.
   Any other value of type is ignored.

   The IOCTL takes the additional arguments:

     unsigned_word stack_end -- where the stack should come down from
     char **argv -- ...
     char **envp -- ...

   */

STATIC_INLINE_DEVICES int
sizeof_argument_strings(char **arg)
{
  int sizeof_strings = 0;

  /* robust */
  if (arg == NULL)
    return 0;

  /* add up all the string sizes (padding as we go) */
  for (; *arg != NULL; arg++) {
    int len = strlen(*arg) + 1;
    sizeof_strings += ALIGN_8(len);
  }

  return sizeof_strings;
}

STATIC_INLINE_DEVICES int
number_of_arguments(char **arg)
{
  int nr;
  if (arg == NULL)
    return 0;
  for (nr = 0; *arg != NULL; arg++, nr++);
  return nr;
}

STATIC_INLINE_DEVICES int
sizeof_arguments(char **arg)
{
  return ALIGN_8((number_of_arguments(arg) + 1) * sizeof(unsigned_word));
}

STATIC_INLINE_DEVICES void
write_stack_arguments(psim *system,
		      char **arg,
		      unsigned_word start_block,
		      unsigned_word end_block,
		      unsigned_word start_arg,
		      unsigned_word end_arg)
{
  DTRACE(stack,
	("write_stack_arguments(system=0x%lx, arg=0x%lx, start_block=0x%lx, end_block=0x%lx, start_arg=0x%lx, end_arg=0x%lx)\n",
	 (long)system, (long)arg, (long)start_block, (long)end_block, (long)start_arg, (long)end_arg));
  if (arg == NULL)
    error("write_arguments: character array NULL\n");
  /* only copy in arguments, memory is already zero */
  for (; *arg != NULL; arg++) {
    int len = strlen(*arg)+1;
    unsigned_word target_start_block;
    DTRACE(stack,
	  ("write_stack_arguments() write %s=%s at %s=0x%lx %s=0x%lx %s=0x%lx\n",
	   "**arg", *arg, "start_block", (long)start_block,
	   "len", (long)len, "start_arg", (long)start_arg));
    if (psim_write_memory(system, 0, *arg,
			  start_block, len,
			  0/*violate_readonly*/) != len)
      error("write_stack_arguments() - write of **arg (%s) at 0x%x failed\n",
	    *arg, start_block);
    target_start_block = H2T_word(start_block);
    if (psim_write_memory(system, 0, &target_start_block,
			  start_arg, sizeof(target_start_block),
			  0) != sizeof(target_start_block))
      error("write_stack_arguments() - write of *arg failed\n");
    start_block += ALIGN_8(len);
    start_arg += sizeof(start_block);
  }
  start_arg += sizeof(start_block); /*the null at the end*/
  if (start_block != end_block
      || ALIGN_8(start_arg) != end_arg)
    error("write_stack_arguments - possible corruption\n");
  DTRACE(stack,
	 ("write_stack_arguments() = void\n"));
}

STATIC_INLINE_DEVICES void
create_elf_stack_frame(psim *system,
		       unsigned_word bottom_of_stack,
		       char **argv,
		       char **envp)
{
  /* fixme - this is over aligned */

  /* information block */
  const unsigned sizeof_envp_block = sizeof_argument_strings(envp);
  const unsigned_word start_envp_block = bottom_of_stack - sizeof_envp_block;
  const unsigned sizeof_argv_block = sizeof_argument_strings(argv);
  const unsigned_word start_argv_block = start_envp_block - sizeof_argv_block;

  /* auxiliary vector - contains only one entry */
  const unsigned sizeof_aux_entry = 2*sizeof(unsigned_word); /* magic */
  const unsigned_word start_aux = start_argv_block - ALIGN_8(sizeof_aux_entry);

  /* environment points (including null sentinal) */
  const unsigned sizeof_envp = sizeof_arguments(envp);
  const unsigned_word start_envp = start_aux - sizeof_envp;

  /* argument pointers (including null sentinal) */
  const int argc = number_of_arguments(argv);
  const unsigned sizeof_argv = sizeof_arguments(argv);
  const unsigned_word start_argv = start_envp - sizeof_argv;

  /* link register save address - alligned to a 16byte boundary */
  const unsigned_word top_of_stack = ((start_argv
				       - 2 * sizeof(unsigned_word))
				      & ~0xf);

  /* install arguments on stack */
  write_stack_arguments(system, envp,
			start_envp_block, bottom_of_stack,
			start_envp, start_aux);
  write_stack_arguments(system, argv,
			start_argv_block, start_envp_block,
			start_argv, start_envp);

  /* set up the registers */
  psim_write_register(system, -1,
		      &top_of_stack, "sp", cooked_transfer);
  psim_write_register(system, -1,
		      &argc, "r3", cooked_transfer);
  psim_write_register(system, -1,
		      &start_argv, "r4", cooked_transfer);
  psim_write_register(system, -1,
		      &start_envp, "r5", cooked_transfer);
  psim_write_register(system, -1,
		      &start_aux, "r6", cooked_transfer);
}

STATIC_INLINE_DEVICES void
create_aix_stack_frame(psim *system,
		       unsigned_word bottom_of_stack,
		       char **argv,
		       char **envp)
{
  unsigned_word core_envp;
  unsigned_word core_argv;
  unsigned_word core_argc;
  unsigned_word core_aux;
  unsigned_word top_of_stack;

  /* cheat - create an elf stack frame */
  create_elf_stack_frame(system, bottom_of_stack, argv, envp);
  
  /* extract argument addresses from registers */
  psim_read_register(system, 0, &top_of_stack, "r1", cooked_transfer);
  psim_read_register(system, 0, &core_argc, "r3", cooked_transfer);
  psim_read_register(system, 0, &core_argv, "r4", cooked_transfer);
  psim_read_register(system, 0, &core_envp, "r5", cooked_transfer);
  psim_read_register(system, 0, &core_aux, "r6", cooked_transfer);

  /* extract arguments from registers */
  error("create_aix_stack_frame() - what happens next?\n");
}



static void
stack_ioctl_callback(const device *me,
		     psim *system,
		     cpu *processor,
		     unsigned_word cia,
		     ...)
{
  va_list ap;
  unsigned_word stack_pointer;
  char **argv;
  char **envp;
  va_start(ap, cia);
  stack_pointer = va_arg(ap, unsigned_word);
  argv = va_arg(ap, char **);
  envp = va_arg(ap, char **);
  va_end(ap);
  DTRACE(stack,
	 ("stack_ioctl_callback(me=0x%lx:%s, system=0x%lx, processor=0x%lx, cia=0x%lx, argv=0x%lx, envp=0x%lx)\n",
	  (long)me, me->full_name, (long)system, (long)processor, (long)cia, (long)argv, (long)envp));
  if (strcmp(me->name, "stack@elf") == 0)
    create_elf_stack_frame(system, stack_pointer, argv, envp);
  else if (strcmp(me->name, "stack@xcoff") == 0)
    create_aix_stack_frame(system, stack_pointer, argv, envp);
  DTRACE(stack, 
	 ("stack_ioctl_callback() = void\n"));
}


static device_callbacks const stack_callbacks = {
  ignore_device_init,
  unimp_device_attach_address,
  unimp_device_detach_address,
  unimp_device_io_read_buffer,
  unimp_device_io_write_buffer,
  unimp_device_dma_read_buffer,
  unimp_device_dma_write_buffer,
  unimp_device_attach_interrupt,
  unimp_device_detach_interrupt,
  unimp_device_interrupt,
  unimp_device_interrupt_ack,
  stack_ioctl_callback,
};



/* Table of all the devices and a function to lookup/create a device
   from its name */

typedef const device *(device_creator)
     (const char *name,
      const char *full_name,
      const device *parent);

typedef struct _device_descriptor device_descriptor;
struct _device_descriptor {
  const char *name;
  device_creator *creator;
  const device_callbacks *callbacks;
};

static device_descriptor devices[] = {
  { "console", console_create, NULL },
  { "memory", NULL, &memory_callbacks },
  { "vm", vea_vm_create, NULL },
  { "halt", NULL, &halt_callbacks },
  { "icu", NULL, &icu_callbacks },
  { "register", NULL, &register_callbacks },
  { "iobus", NULL, &iobus_callbacks },
  { "file", NULL, &file_callbacks },
  { "htab", NULL, &htab_callbacks },
  { "pte", NULL, &htab_callbacks }, /* yep - uses htab's table */
  { "stack", NULL, &stack_callbacks },
  { "sim", NULL, &sim_callbacks },
  { "load-binary", NULL, &binary_callbacks },
  { "map-binary", NULL, &binary_callbacks },
  { NULL },
};


INLINE_DEVICES const device *
device_create(const char *name,
	      const char *full_name,
	      const device *parent)
{
  device_descriptor *device;
  int name_len;
  char *chp;
  chp = strchr(name, '@');
  name_len = (chp == NULL ? strlen(name) : chp - name);
  for (device = devices; device->name != NULL; device++) {
    if (strncmp(name, device->name, name_len) == 0
	&& (device->name[name_len] == '\0'
	    || device->name[name_len] == '@'))
      if (device->creator != NULL)
	return device->creator(name, full_name, parent);
      else
	return device_create_from(name,
				  full_name,
				  NULL /* data */,
				  device->callbacks,
				  parent);
  }
  error("device_create() unknown device %s\n", name);
  return NULL;
}


INLINE_DEVICES const device *
device_create_from(const char *name,
		   const char *full_name,
		   void *data,
		   const device_callbacks *callback,
		   const device *parent)
{
  device *me = ZALLOC(device);
  me->name = strdup(name);
  me->full_name = strdup(full_name);
  me->data = data;
  me->callback = callback;
  me->parent = parent;
  return me;
}


INLINE_DEVICES const device_callbacks *
passthrough_device_callbacks(void)
{
  static const device_callbacks callbacks = {
    ignore_device_init,
    pass_device_attach_address,
    pass_device_detach_address,
    unimp_device_io_read_buffer,
    unimp_device_io_write_buffer,
    pass_device_dma_read_buffer,
    pass_device_dma_write_buffer,
    pass_device_attach_interrupt,
    pass_device_detach_interrupt,
    pass_device_interrupt,
    unimp_device_interrupt_ack,
    unimp_device_ioctl,
  };
  return &callbacks;
}



#endif /* _DEVICES_C_ */