home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / gdb-4.16-base.tgz / gdb-4.16-base.tar / fsf / gdb / sim / ppc / device_table.c < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-21  |  58.0 KB  |  2,244 lines

  1. /*  This file is part of the program psim.
  2.  
  3.     Copyright (C) 1994-1996, Andrew Cagney <cagney@highland.com.au>
  4.  
  5.     This program is free software; you can redistribute it and/or modify
  6.     it under the terms of the GNU General Public License as published by
  7.     the Free Software Foundation; either version 2 of the License, or
  8.     (at your option) any later version.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18.  
  19.     */
  20.  
  21.  
  22. #ifndef _DEVICE_TABLE_C_
  23. #define _DEVICE_TABLE_C_
  24.  
  25. #ifndef STATIC_INLINE_DEVICE_TABLE
  26. #define STATIC_INLINE_DEVICE_TABLE STATIC_INLINE
  27. #endif
  28.  
  29. #include <stdio.h>
  30. #include <fcntl.h>
  31. #include <signal.h>
  32. #include <stdarg.h>
  33. #include <ctype.h>
  34.  
  35. #include "device_table.h"
  36.  
  37. #include "events.h"
  38.  
  39. #ifdef HAVE_UNISTD_H
  40. #include <unistd.h>
  41. #endif
  42.  
  43. #ifdef HAVE_STDLIB_H
  44. #include <stdlib.h>
  45. #endif
  46.  
  47. #ifdef HAVE_STRING_H
  48. #include <string.h>
  49. #else
  50. #ifdef HAVE_STRINGS_H
  51. #include <strings.h>
  52. #endif
  53. #endif
  54.  
  55. #include "cpu.h"
  56.  
  57. #include "bfd.h"
  58.  
  59. /* Helper functions */
  60.  
  61. /* Generic device init: Attaches the device of size <nr_bytes> (taken
  62.    from <name>@<int>,<nr_bytes>) to its parent at address zero and
  63.    with read/write access. */
  64.  
  65. typedef struct _reg_spec {
  66.   unsigned32 base;
  67.   unsigned32 size;
  68. } reg_spec;
  69.  
  70. void
  71. generic_device_init_address(device *me,
  72.                 psim *system)
  73. {
  74.   const device_property *reg = device_find_array_property(me, "reg");
  75.   const reg_spec *spec = reg->array;
  76.   int nr_entries = reg->sizeof_array / sizeof(reg_spec);
  77.  
  78.   if ((reg->sizeof_array % sizeof(reg_spec)) != 0)
  79.     error("devices/%s reg property is of wrong size\n", device_name(me));
  80.  
  81.   while (nr_entries > 0) {
  82.     device_attach_address(device_parent(me),
  83.               device_name(me),
  84.               attach_callback,
  85.               0 /*space*/,
  86.               BE2H_4(spec->base),
  87.               BE2H_4(spec->size),
  88.               access_read_write_exec,
  89.               me);
  90.     spec++;
  91.     nr_entries--;
  92.   }
  93. }
  94.  
  95. int
  96. generic_device_unit_decode(device *me,
  97.                const char *unit,
  98.                device_unit *phys)
  99. {
  100.   memset(phys, 0, sizeof(device_unit));
  101.   if (unit == NULL)
  102.     return 0;
  103.   else {
  104.     char *pos = (char*)unit; /* force for strtoul() */
  105.     while (1) {
  106.       char *old_pos = pos;
  107.       long int val = strtoul(pos, &pos, 0);
  108.       if (old_pos == pos && *pos == '\0')
  109.     return phys->nr_cells;
  110.       if (old_pos == pos && *pos != '\0')
  111.     return -1;
  112.       if (phys->nr_cells == 4)
  113.     return -1;
  114.       phys->cells[phys->nr_cells] = val;
  115.       phys->nr_cells++;
  116.     }
  117.   }
  118. }
  119.  
  120. int
  121. generic_device_unit_encode(device *me,
  122.                const device_unit *phys,
  123.                char *buf,
  124.                int sizeof_buf)
  125. {
  126.   int i;
  127.   int len;
  128.   char *pos = buf; /* force for strtoul() */
  129.   for (i = 0; i < phys->nr_cells; i++) {
  130.     if (pos != buf) {
  131.       strcat(pos, ",");
  132.       pos = strchr(pos, '\0');
  133.     }
  134.     sprintf(pos, "0x%lx", (unsigned long)phys->cells[i]);
  135.     pos = strchr(pos, '\0');
  136.   }
  137.   len = pos - buf;
  138.   if (len >= sizeof_buf)
  139.     error("generic_unit_encode - buffer overflow\n");
  140.   return len;
  141. }
  142.  
  143. /* DMA a file into memory */
  144. STATIC_INLINE_DEVICE_TABLE int
  145. dma_file(device *me,
  146.      const char *file_name,
  147.      unsigned_word addr)
  148. {
  149.   int count;
  150.   int inc;
  151.   FILE *image;
  152.   char buf[1024];
  153.  
  154.   /* get it open */
  155.   image = fopen(file_name, "r");
  156.   if (image == NULL)
  157.     return -1;
  158.  
  159.   /* read it in slowly */
  160.   count = 0;
  161.   while (1) {
  162.     inc = fread(buf, 1, sizeof(buf), image);
  163.     if (feof(image) || ferror(image))
  164.       break;
  165.     if (device_dma_write_buffer(device_parent(me),
  166.                 buf,
  167.                 0 /*address-space*/,
  168.                 addr+count,
  169.                 inc /*nr-bytes*/,
  170.                 1 /*violate ro*/) != inc) {
  171.       fclose(image);
  172.       return -1;
  173.     }
  174.     count += inc;
  175.   }
  176.  
  177.   /* close down again */
  178.   fclose(image);
  179.  
  180.   return count;
  181. }
  182.  
  183.  
  184.  
  185. /* inimplemented versions of each function */
  186.  
  187. void
  188. unimp_device_init(device *me,
  189.           psim *system)
  190. {
  191.   error("device_init_callback for %s not implemented\n", device_name(me));
  192. }
  193.  
  194. void
  195. unimp_device_attach_address(device *me,
  196.                 const char *name,
  197.                 attach_type type,
  198.                 int space,
  199.                 unsigned_word addr,
  200.                 unsigned nr_bytes,
  201.                 access_type access,
  202.                 device *who) /*callback/default*/
  203. {
  204.   error("device_attach_address_callback for %s not implemented\n", device_name(me));
  205. }
  206.  
  207. void
  208. unimp_device_detach_address(device *me,
  209.                 const char *name,
  210.                 attach_type type,
  211.                 int space,
  212.                 unsigned_word addr,
  213.                 unsigned nr_bytes,
  214.                 access_type access,
  215.                 device *who) /*callback/default*/
  216. {
  217.   error("device_detach_address_callback for %s not implemented\n", device_name(me));
  218. }
  219.  
  220. unsigned
  221. unimp_device_io_read_buffer(device *me,
  222.                 void *dest,
  223.                 int space,
  224.                 unsigned_word addr,
  225.                 unsigned nr_bytes,
  226.                 cpu *processor,
  227.                 unsigned_word cia)
  228. {
  229.   error("device_io_read_buffer_callback for %s not implemented\n", device_name(me));
  230.   return 0;
  231. }
  232.  
  233. unsigned
  234. unimp_device_io_write_buffer(device *me,
  235.                  const void *source,
  236.                  int space,
  237.                  unsigned_word addr,
  238.                  unsigned nr_bytes,
  239.                  cpu *processor,
  240.                  unsigned_word cia)
  241. {
  242.   error("device_io_write_buffer_callback for %s not implemented\n", device_name(me));
  243.   return 0;
  244. }
  245.  
  246. unsigned
  247. unimp_device_dma_read_buffer(device *me,
  248.                  void *target,
  249.                  int space,
  250.                  unsigned_word addr,
  251.                  unsigned nr_bytes)
  252. {
  253.   error("device_dma_read_buffer_callback for %s not implemented\n", device_name(me));
  254.   return 0;
  255. }
  256.  
  257. unsigned
  258. unimp_device_dma_write_buffer(device *me,
  259.                   const void *source,
  260.                   int space,
  261.                   unsigned_word addr,
  262.                   unsigned nr_bytes,
  263.                   int violate_read_only_section)
  264. {
  265.   error("device_dma_write_buffer_callback for %s not implemented\n", device_name(me));
  266.   return 0;
  267. }
  268.  
  269. void
  270. unimp_device_interrupt_event(device *me,
  271.                  int my_port,
  272.                  device *source,
  273.                  int source_port,
  274.                  int level,
  275.                  cpu *processor,
  276.                  unsigned_word cia)
  277. {
  278.   error("unimp_device_interrupt_event for %s unimplemented\n",
  279.     device_name(me));
  280. }
  281.  
  282. void
  283. unimp_device_child_interrupt_event(device *me,
  284.                    device *parent,
  285.                    device *source,
  286.                    int source_port,
  287.                    int level,
  288.                    cpu *processor,
  289.                    unsigned_word cia)
  290. {
  291.   error("unimp_device_child_interrupt_event_callback for %s unimplemented\n",
  292.     device_name(me));
  293. }
  294.       
  295. int
  296. unimp_device_unit_decode(device *me,
  297.              const char *unit,
  298.              device_unit *address)
  299. {
  300.   error("unimp_device_unit_decode_callback for %s unimplemented\n",
  301.     device_name(me));
  302.   return 0;
  303. }
  304.  
  305. int
  306. unimp_device_unit_encode(device *me,
  307.              const device_unit *unit_address,
  308.              char *buf,
  309.              int sizeof_buf)
  310. {
  311.   error("unimp_device_unit_encode_callback for %s unimplemented\n",
  312.     device_name(me));
  313.   return 0;
  314. }
  315.  
  316. void *
  317. unimp_device_instance_create(device *me,
  318.                  const char *args)
  319. {
  320.   error("unimp_device_instance_create_callback for %s unimplemented\n",
  321.     device_name(me));
  322.   return 0;
  323. }
  324.  
  325. void
  326. unimp_device_instance_delete(device_instance *instance)
  327. {
  328.   error("unimp_device_instance_delete_callback for %s unimplemented\n",
  329.     device_instance_name(instance));
  330. }
  331.  
  332. int
  333. unimp_device_instance_read(device_instance *instance,
  334.                void *buf,
  335.                unsigned_word len)
  336. {
  337.   error("unimp_device_instance_read_callback for %s unimplemented\n",
  338.     device_instance_name(instance));
  339.   return 0;
  340. }
  341.  
  342. int
  343. unimp_device_instance_write(device_instance *instance,
  344.                 const void *buf,
  345.                 unsigned_word len)
  346. {
  347.   error("unimp_device_instance_write_callback for %s unimplemented\n",
  348.     device_instance_name(instance));
  349.   return 0;
  350. }
  351.  
  352. int
  353. unimp_device_instance_seek(device_instance *instance,
  354.                unsigned_word pos_hi,
  355.                unsigned_word pos_lo)
  356. {
  357.   error("unimp_device_instance_seek_callback for %s unimplemented\n",
  358.     device_instance_name(instance));
  359.   return 0;
  360. }
  361.  
  362.  
  363. void
  364. unimp_device_ioctl(device *me,
  365.            psim *system,
  366.            cpu *processor,
  367.            unsigned_word cia,
  368.            va_list ap)
  369. {
  370.   error("device_ioctl_callback for %s not implemented\n", device_name(me));
  371. }
  372.  
  373.  
  374.  
  375. /* ignore/passthrough versions of each function */
  376.  
  377. void
  378. ignore_device_init(device *me,
  379.            psim *system)
  380. {
  381.   /*null*/
  382. }
  383.  
  384. void
  385. passthrough_device_attach_address(device *me,
  386.                   const char *name,
  387.                   attach_type attach,
  388.                   int space,
  389.                   unsigned_word addr,
  390.                   unsigned nr_bytes,
  391.                   access_type access,
  392.                   device *who) /*callback/default*/
  393. {
  394.   device_attach_address(device_parent(me), name, attach,
  395.             space, addr, nr_bytes,
  396.             access,
  397.             who);
  398. }
  399.  
  400. void
  401. passthrough_device_detach_address(device *me,
  402.                   const char *name,
  403.                   attach_type attach,
  404.                   int space,
  405.                   unsigned_word addr,
  406.                   unsigned nr_bytes,
  407.                   access_type access,
  408.                   device *who) /*callback/default*/
  409. {
  410.   device_detach_address(device_parent(me), name, attach,
  411.             space, addr, nr_bytes, access,
  412.             who);
  413. }
  414.  
  415. unsigned
  416. passthrough_device_dma_read_buffer(device *me,
  417.                    void *dest,
  418.                    int space,
  419.                    unsigned_word addr,
  420.                    unsigned nr_bytes)
  421. {
  422.   return device_dma_read_buffer(device_parent(me), dest,
  423.                 space, addr, nr_bytes);
  424. }
  425.  
  426. unsigned
  427. passthrough_device_dma_write_buffer(device *me,
  428.                  const void *source,
  429.                  int space,
  430.                  unsigned_word addr,
  431.                  unsigned nr_bytes,
  432.                  int violate_read_only_section)
  433. {
  434.   return device_dma_write_buffer(device_parent(me), source,
  435.                  space, addr,
  436.                  nr_bytes,
  437.                  violate_read_only_section);
  438. }
  439.  
  440. int
  441. ignore_device_unit_decode(device *me,
  442.               const char *unit,
  443.               device_unit *phys)
  444. {
  445.   memset(phys, 0, sizeof(device_unit));
  446.   return 0;
  447. }
  448.  
  449.  
  450. static const device_callbacks passthrough_callbacks = {
  451.   ignore_device_init,
  452.   ignore_device_init,
  453.   passthrough_device_attach_address,
  454.   passthrough_device_detach_address,
  455.   unimp_device_io_read_buffer,
  456.   unimp_device_io_write_buffer,
  457.   passthrough_device_dma_read_buffer,
  458.   passthrough_device_dma_write_buffer,
  459.   unimp_device_interrupt_event,
  460.   unimp_device_child_interrupt_event,
  461.   generic_device_unit_decode,
  462.   generic_device_unit_encode,
  463.   unimp_device_instance_create,
  464.   unimp_device_instance_delete,
  465.   unimp_device_instance_read,
  466.   unimp_device_instance_write,
  467.   unimp_device_instance_seek,
  468.   unimp_device_ioctl,
  469. };
  470.  
  471.  
  472.  
  473. /* Simple console device: console@<address>,16
  474.  
  475.    Input characters are taken from the keyboard, output characters
  476.    sent to the terminal.  Echoing of characters is not disabled.
  477.  
  478.    The device has four registers:
  479.  
  480.    0x0: read
  481.    0x4: read-status
  482.    0x8: write
  483.    0xC: write-status
  484.  
  485.    Where a nonzero status register indicates that the device is ready
  486.    (input fifo contains a character or output fifo has space). */
  487.  
  488. typedef struct _console_buffer {
  489.   char buffer;
  490.   int status;
  491.   event_entry_tag event_tag;
  492. } console_buffer;
  493.  
  494. typedef struct _console_device {
  495.   console_buffer input;
  496.   console_buffer output;
  497. } console_device;
  498.  
  499. typedef enum {
  500.   console_read_buffer = 0,
  501.   console_read_status = 4,
  502.   console_write_buffer = 8,
  503.   console_write_status = 12,
  504.   console_offset_mask = 0xc,
  505.   console_size = 16,
  506. } console_offsets;
  507.  
  508. /* check the console for an available character */
  509. static void
  510. scan_console(console_device *console)
  511. { /* check for input */
  512.   int flags;
  513.   int status;
  514.   /* get the old status */
  515.   flags = fcntl(0, F_GETFL, 0);
  516.   if (flags == -1) {
  517.     perror("console");
  518.     return;
  519.   }
  520.   /* temp, disable blocking IO */
  521.   status = fcntl(0, F_SETFL, flags | O_NDELAY);
  522.   if (status == -1) {
  523.     perror("console");
  524.     return;
  525.   }
  526.   /* try for input */
  527.   status = read(0, &console->input.buffer, 1);
  528.   if (status == 1) {
  529.     console->input.status = 1;
  530.   }
  531.   else {
  532.     console->input.status = 0;
  533.   }
  534.   /* return to regular vewing */
  535.   flags = fcntl(0, F_SETFL, flags);
  536.   if (flags == -1) {
  537.     perror("console");
  538.     return;
  539.   }
  540. }
  541.  
  542. /* write the character to the console */
  543. static void
  544. write_console(console_device *console,
  545.           char val)
  546. {
  547.   DTRACE(console, ("<%c:%d>", val, val));
  548.   printf_filtered("%c", val) ;
  549.   console->output.buffer = val;
  550.   console->output.status = 1;
  551. }
  552.  
  553. static unsigned
  554. console_io_read_buffer_callback(device *me,
  555.                 void *dest,
  556.                 int space,
  557.                 unsigned_word addr,
  558.                 unsigned nr_bytes,
  559.                 cpu *processor,
  560.                 unsigned_word cia)
  561. {
  562.   console_device *console = (console_device*)device_data(me);
  563.   unsigned_1 val;
  564.  
  565.   /* determine what was read */
  566.  
  567.   switch ((int)addr & console_offset_mask) {
  568.  
  569.   case console_read_buffer:
  570.     val = console->input.buffer;
  571.     break;
  572.  
  573.   case console_read_status:
  574.     scan_console(console);
  575.     val = console->input.status;
  576.     break;
  577.  
  578.   case console_write_buffer:
  579.     val = console->output.buffer;
  580.     break;
  581.  
  582.   case console_write_status:
  583.     val = console->output.status;
  584.     break;
  585.  
  586.   default:
  587.     error("console_read_callback() internal error\n");
  588.     val = 0;
  589.     break;
  590.  
  591.   }
  592.  
  593.   memset(dest, 0, nr_bytes);
  594.   *(unsigned_1*)dest = val;
  595.   return nr_bytes;
  596. }
  597.  
  598. static unsigned
  599. console_io_write_buffer_callback(device *me,
  600.                  const void *source,
  601.                  int space,
  602.                  unsigned_word addr,
  603.                  unsigned nr_bytes,
  604.                  cpu *processor,
  605.                  unsigned_word cia)
  606. {
  607.   console_device *console = (console_device*)device_data(me);
  608.   unsigned_1 val = *(unsigned_1*)source;
  609.  
  610.   switch ((int)addr & console_offset_mask) {
  611.  
  612.   case console_read_buffer:
  613.     console->input.buffer = val;
  614.     break;
  615.  
  616.   case console_read_status:
  617.     console->input.status = val;
  618.     break;
  619.  
  620.   case console_write_buffer:
  621.     write_console(console, val);
  622.     break;
  623.  
  624.   case console_write_status:
  625.     console->output.status = val;
  626.     break;
  627.  
  628.   default:
  629.     error("console_write_callback() internal error\n");
  630.  
  631.   }
  632.      
  633.   return nr_bytes;
  634. }
  635.  
  636. /* instances of the console device */
  637. static void *
  638. console_instance_create_callback(device *me,
  639.                  const char *args)
  640. {
  641.   /* make life easier, attach the console data to the instance */
  642.   return device_data(me);
  643. }
  644.  
  645. static void
  646. console_instance_delete_callback(device_instance *instance)
  647. {
  648.   /* nothing to delete, the console is attached to the device */
  649.   return;
  650. }
  651.  
  652. static int
  653. console_instance_read_callback(device_instance *instance,
  654.                    void *buf,
  655.                    unsigned_word len)
  656. {
  657.   console_device *console = device_instance_data(instance);
  658.   if (!console->input.status)
  659.     scan_console(console);
  660.   if (console->input.status) {
  661.     *(char*)buf = console->input.buffer;
  662.     console->input.status = 0;
  663.     return 1;
  664.   }
  665.   else {
  666.     return -2; /* not ready */
  667.   }
  668. }
  669.  
  670. static int
  671. console_instance_write_callback(device_instance *instance,
  672.                 const void *buf,
  673.                 unsigned_word len)
  674. {
  675.   int i;
  676.   const char *chp = buf;
  677.   console_device *console = device_instance_data(instance);
  678.   for (i = 0; i < len; i++)
  679.     write_console(console, chp[i]);
  680.   return i;
  681. }
  682.  
  683. static device_callbacks const console_callbacks = {
  684.   generic_device_init_address,
  685.   ignore_device_init,
  686.   unimp_device_attach_address,
  687.   unimp_device_detach_address,
  688.   console_io_read_buffer_callback,
  689.   console_io_write_buffer_callback,
  690.   unimp_device_dma_read_buffer,
  691.   unimp_device_dma_write_buffer,
  692.   unimp_device_interrupt_event,
  693.   unimp_device_child_interrupt_event,
  694.   unimp_device_unit_decode,
  695.   unimp_device_unit_encode,
  696.   console_instance_create_callback,
  697.   console_instance_delete_callback,
  698.   console_instance_read_callback,
  699.   console_instance_write_callback,
  700.   unimp_device_instance_seek,
  701.   unimp_device_ioctl,
  702. };
  703.  
  704.  
  705. static void *
  706. console_create(const char *name,
  707.            const device_unit *unit_address,
  708.            const char *args,
  709.            device *parent)
  710. {
  711.   /* create the descriptor */
  712.   console_device *console = ZALLOC(console_device);
  713.   console->output.status = 1;
  714.   console->output.buffer = '\0';
  715.   console->input.status = 0;
  716.   console->input.buffer = '\0';
  717.   return console;
  718. }
  719.  
  720.  
  721.  
  722. /* ICU device: icu@<address>
  723.  
  724.    <address> : read - processor nr
  725.    <address> : write - interrupt processor nr
  726.    <address> + 4 : read - nr processors
  727.  
  728.    Single byte registers that control a simple ICU.
  729.  
  730.    Illustrates passing of events to parent device. Passing of
  731.    interrupts to an interrupt destination. */
  732.  
  733.  
  734. static unsigned
  735. icu_io_read_buffer_callback(device *me,
  736.                 void *dest,
  737.                 int space,
  738.                 unsigned_word addr,
  739.                 unsigned nr_bytes,
  740.                 cpu *processor,
  741.                 unsigned_word cia)
  742. {
  743.   memset(dest, 0, nr_bytes);
  744.   switch (addr & 4) {
  745.   case 0:
  746.     *(unsigned_1*)dest = cpu_nr(processor);
  747.     break;
  748.   case 4:
  749.     *(unsigned_1*)dest =
  750.       device_find_integer_property(me, "/openprom/options/smp");
  751.     break;
  752.   }
  753.   return nr_bytes;
  754. }
  755.  
  756.  
  757. static unsigned
  758. icu_io_write_buffer_callback(device *me,
  759.                  const void *source,
  760.                  int space,
  761.                  unsigned_word addr,
  762.                  unsigned nr_bytes,
  763.                  cpu *processor,
  764.                  unsigned_word cia)
  765. {
  766.   unsigned_1 val = H2T_1(*(unsigned_1*)source);
  767.   /* tell the parent device that the interrupt lines have changed.
  768.      For this fake ICU.  The interrupt lines just indicate the cpu to
  769.      interrupt next */
  770.   device_interrupt_event(me,
  771.              val, /*my_port*/
  772.              val, /*val*/
  773.              processor, cia);
  774.   return nr_bytes;
  775. }
  776.  
  777. static void
  778. icu_do_interrupt(event_queue *queue,
  779.          void *data)
  780. {
  781.   cpu *target = (cpu*)data;
  782.   /* try to interrupt the processor.  If the attempt fails, try again
  783.      on the next tick */
  784.   if (!external_interrupt(target))
  785.     event_queue_schedule(queue, 1, icu_do_interrupt, target);
  786. }
  787.  
  788.  
  789. static void
  790. icu_interrupt_event_callback(device *me,
  791.                  int my_port,
  792.                  device *source,
  793.                  int source_port,
  794.                  int level,
  795.                  cpu *processor,
  796.                  unsigned_word cia)
  797. {
  798.   /* the interrupt controller can't interrupt a cpu at any time.
  799.      Rather it must synchronize with the system clock before
  800.      performing an interrupt on the given processor */
  801.   psim *system = cpu_system(processor);
  802.   cpu *target = psim_cpu(system, my_port);
  803.   if (target != NULL) {
  804.     event_queue *events = cpu_event_queue(target);
  805.     event_queue_schedule(events, 1, icu_do_interrupt, target);
  806.   }
  807. }
  808.  
  809. static device_callbacks const icu_callbacks = {
  810.   generic_device_init_address,
  811.   ignore_device_init,
  812.   unimp_device_attach_address,
  813.   unimp_device_detach_address,
  814.   icu_io_read_buffer_callback,
  815.   icu_io_write_buffer_callback,
  816.   unimp_device_dma_read_buffer,
  817.   unimp_device_dma_write_buffer,
  818.   icu_interrupt_event_callback,
  819.   unimp_device_child_interrupt_event,
  820.   unimp_device_unit_decode,
  821.   unimp_device_unit_encode,
  822.   unimp_device_instance_create,
  823.   unimp_device_instance_delete,
  824.   unimp_device_instance_read,
  825.   unimp_device_instance_write,
  826.   unimp_device_instance_seek,
  827.   unimp_device_ioctl,
  828. };
  829.  
  830.  
  831.  
  832. /* HALT device: halt@0x<address>,4
  833.  
  834.    With real hardware, the processor operation is normally terminated
  835.    through a reset.  This device illustrates how a reset device could
  836.    be attached to an address */
  837.  
  838.  
  839. static unsigned
  840. halt_io_read_buffer_callback(device *me,
  841.                  void *dest,
  842.                  int space,
  843.                  unsigned_word addr,
  844.                  unsigned nr_bytes,
  845.                  cpu *processor,
  846.                  unsigned_word cia)
  847. {
  848.   cpu_halt(processor, cia, was_exited, 0);
  849.   return 0;
  850. }
  851.  
  852.  
  853. static unsigned
  854. halt_io_write_buffer_callback(device *me,
  855.                   const void *source,
  856.                   int space,
  857.                   unsigned_word addr,
  858.                   unsigned nr_bytes,
  859.                   cpu *processor,
  860.                   unsigned_word cia)
  861. {
  862.   cpu_halt(processor, cia, was_exited, *(unsigned_1*)source);
  863.   return 0;
  864. }
  865.  
  866.  
  867. static device_callbacks const halt_callbacks = {
  868.   generic_device_init_address,
  869.   ignore_device_init,
  870.   unimp_device_attach_address,
  871.   unimp_device_detach_address,
  872.   halt_io_read_buffer_callback,
  873.   halt_io_write_buffer_callback,
  874.   unimp_device_dma_read_buffer,
  875.   unimp_device_dma_write_buffer,
  876.   unimp_device_interrupt_event,
  877.   unimp_device_child_interrupt_event,
  878.   unimp_device_unit_decode,
  879.   unimp_device_unit_encode,
  880.   unimp_device_instance_create,
  881.   unimp_device_instance_delete,
  882.   unimp_device_instance_read,
  883.   unimp_device_instance_write,
  884.   unimp_device_instance_seek,
  885.   unimp_device_ioctl,
  886. };
  887.  
  888.  
  889.  
  890. /* Register init device: register@<nothing>
  891.  
  892.    Properties attached to the register device specify the name/value
  893.    initialization pair for cpu registers.
  894.  
  895.    A specific processor can be initialized by creating a property with
  896.    a name like `0.pc'.
  897.  
  898.    Properties are normally processed old-to-new and this function
  899.    needs to allow older (first in) properties to override new (last
  900.    in) ones.  The suport function do_register_init() manages this. */
  901.  
  902. static void
  903. do_register_init(device *me,
  904.          psim *system,
  905.          const device_property *prop)
  906. {
  907.   if (prop != NULL) {
  908.     const char *name = prop->name;
  909.     unsigned32 value = device_find_integer_property(me, name);
  910.     int processor;
  911.  
  912.     do_register_init(me, system, device_next_property(prop));
  913.  
  914.     if (strchr(name, '.') == NULL) {
  915.       processor = -1;
  916.       DTRACE(register, ("%s=0x%lx\n", name, (unsigned long)value));
  917.     }
  918.     else {
  919.       char *end;
  920.       processor = strtoul(name, &end, 0);
  921.       ASSERT(end[0] == '.');
  922.       name = end+1;
  923.       DTRACE(register, ("%d.%s=0x%lx\n", processor, name,
  924.             (unsigned long)value));
  925.     }    
  926.     psim_write_register(system, processor, /* all processors */
  927.             &value,
  928.             name,
  929.             cooked_transfer);
  930.   }
  931. }
  932.          
  933.  
  934. static void
  935. register_init_data_callback(device *me,
  936.                 psim *system)
  937. {
  938.   const device_property *prop = device_find_property(me, NULL);
  939.   do_register_init(me, system, prop);
  940. }
  941.  
  942.  
  943. static device_callbacks const register_callbacks = {
  944.   ignore_device_init,
  945.   register_init_data_callback,
  946.   unimp_device_attach_address,
  947.   unimp_device_detach_address,
  948.   unimp_device_io_read_buffer,
  949.   unimp_device_io_write_buffer,
  950.   unimp_device_dma_read_buffer,
  951.   unimp_device_dma_write_buffer,
  952.   unimp_device_interrupt_event,
  953.   unimp_device_child_interrupt_event,
  954.   unimp_device_unit_decode,
  955.   unimp_device_unit_encode,
  956.   unimp_device_instance_create,
  957.   unimp_device_instance_delete,
  958.   unimp_device_instance_read,
  959.   unimp_device_instance_write,
  960.   unimp_device_instance_seek,
  961.   unimp_device_ioctl,
  962. };
  963.  
  964.  
  965.  
  966. /* Trace device:
  967.  
  968.    Properties attached to the trace device are names and values for
  969.    the various trace variables.  When initialized trace goes through
  970.    the propertie and sets the global trace variables so that they
  971.    match what was specified in the device tree. */
  972.  
  973. static void
  974. trace_init_data_callback(device *me,
  975.              psim *system)
  976. {
  977.   const device_property *prop = device_find_property(me, NULL);
  978.   while (prop != NULL) {
  979.     const char *name = prop->name;
  980.     unsigned32 value = device_find_integer_property(me, name);
  981.     trace_option(name, value);
  982.     prop = device_next_property(prop);
  983.   }
  984. }
  985.  
  986.  
  987. static device_callbacks const trace_callbacks = {
  988.   ignore_device_init,
  989.   trace_init_data_callback,
  990.   unimp_device_attach_address,
  991.   unimp_device_detach_address,
  992.   unimp_device_io_read_buffer,
  993.   unimp_device_io_write_buffer,
  994.   unimp_device_dma_read_buffer,
  995.   unimp_device_dma_write_buffer,
  996.   unimp_device_interrupt_event,
  997.   unimp_device_child_interrupt_event,
  998.   unimp_device_unit_decode,
  999.   unimp_device_unit_encode,
  1000.   unimp_device_instance_create,
  1001.   unimp_device_instance_delete,
  1002.   unimp_device_instance_read,
  1003.   unimp_device_instance_write,
  1004.   unimp_device_instance_seek,
  1005.   unimp_device_ioctl,
  1006. };
  1007.  
  1008.  
  1009.  
  1010. /* VEA VM:
  1011.  
  1012.    vm@<stack-base>
  1013.      stack-base =
  1014.      nr-bytes =
  1015.  
  1016.    A VEA mode device. This sets its self up as the default memory
  1017.    device capturing all accesses (reads/writes) to currently unmapped
  1018.    addresses.  If the unmaped access falls within unallocated stack or
  1019.    heap address ranges then memory is allocated and the access is
  1020.    allowed to continue.
  1021.  
  1022.    During init phase, this device expects to receive `attach' requests
  1023.    from its children for the text/data/bss memory areas.  Typically,
  1024.    this would be done by the binary device.
  1025.  
  1026.    STACK: The location of the stack in memory is specified as part of
  1027.    the devices name.  Unmaped accesses that fall within the stack
  1028.    space result in the allocated stack being grown downwards so that
  1029.    it includes the page of the culprit access.
  1030.  
  1031.    HEAP: During initialization, the vm device monitors all `attach'
  1032.    operations from its children using this to determine the initial
  1033.    location of the heap.  The heap is then extended by system calls
  1034.    that frob the heap upper bound variable (see system.c). */
  1035.  
  1036.  
  1037. typedef struct _vm_device {
  1038.   /* area of memory valid for stack addresses */
  1039.   unsigned_word stack_base; /* min possible stack value */
  1040.   unsigned_word stack_bound;
  1041.   unsigned_word stack_lower_limit;
  1042.   /* area of memory valid for heap addresses */
  1043.   unsigned_word heap_base;
  1044.   unsigned_word heap_bound;
  1045.   unsigned_word heap_upper_limit;
  1046. } vm_device;
  1047.  
  1048.  
  1049. static void
  1050. vm_init_address_callback(device *me,
  1051.              psim *system)
  1052. {
  1053.   vm_device *vm = (vm_device*)device_data(me);
  1054.  
  1055.   /* revert the stack/heap variables to their defaults */
  1056.   vm->stack_base = device_find_integer_property(me, "stack-base");
  1057.   vm->stack_bound = (vm->stack_base
  1058.              + device_find_integer_property(me, "nr-bytes"));
  1059.   vm->stack_lower_limit = vm->stack_bound;
  1060.   vm->heap_base = 0;
  1061.   vm->heap_bound = 0;
  1062.   vm->heap_upper_limit = 0;
  1063.  
  1064.   /* establish this device as the default memory handler */
  1065.   device_attach_address(device_parent(me),
  1066.             device_name(me),
  1067.             attach_default,
  1068.             0 /*address space - ignore*/,
  1069.             0 /*addr - ignore*/,
  1070.             0 /*nr_bytes - ignore*/,
  1071.             access_read_write /*access*/,
  1072.             me);
  1073. }
  1074.  
  1075.  
  1076. static void
  1077. vm_attach_address(device *me,
  1078.           const char *name,
  1079.           attach_type attach,
  1080.           int space,
  1081.           unsigned_word addr,
  1082.           unsigned nr_bytes,
  1083.           access_type access,
  1084.           device *who) /*callback/default*/
  1085. {
  1086.   vm_device *vm = (vm_device*)device_data(me);
  1087.   /* update end of bss if necessary */
  1088.   if (vm->heap_base < addr + nr_bytes) {
  1089.     vm->heap_base = addr + nr_bytes;
  1090.     vm->heap_bound = addr + nr_bytes;
  1091.     vm->heap_upper_limit = addr + nr_bytes;
  1092.   }
  1093.   device_attach_address(device_parent(me),
  1094.             "vm@0x0,0", /* stop remap */
  1095.             attach_raw_memory,
  1096.             0 /*address space*/,
  1097.             addr,
  1098.             nr_bytes,
  1099.             access,
  1100.             me);
  1101. }
  1102.  
  1103.  
  1104. STATIC_INLINE_DEVICE_TABLE unsigned
  1105. add_vm_space(device *me,
  1106.          unsigned_word addr,
  1107.          unsigned nr_bytes,
  1108.          cpu *processor,
  1109.          unsigned_word cia)
  1110. {
  1111.   vm_device *vm = (vm_device*)device_data(me);
  1112.   unsigned_word block_addr;
  1113.   unsigned block_nr_bytes;
  1114.  
  1115.   /* an address in the stack area, allocate just down to the addressed
  1116.      page */
  1117.   if (addr >= vm->stack_base && addr < vm->stack_lower_limit) {
  1118.     block_addr = FLOOR_PAGE(addr);
  1119.     block_nr_bytes = vm->stack_lower_limit - block_addr;
  1120.     vm->stack_lower_limit = block_addr;
  1121.   }
  1122.   /* an address in the heap area, allocate all of the required heap */
  1123.   else if (addr >= vm->heap_upper_limit && addr < vm->heap_bound) {
  1124.     block_addr = vm->heap_upper_limit;
  1125.     block_nr_bytes = vm->heap_bound - vm->heap_upper_limit;
  1126.     vm->heap_upper_limit = vm->heap_bound;
  1127.   }
  1128.   /* oops - an invalid address - abort the cpu */
  1129.   else if (processor != NULL) {
  1130.     cpu_halt(processor, cia, was_signalled, SIGSEGV);
  1131.     return 0;
  1132.   }
  1133.   /* 2*oops - an invalid address and no processor */
  1134.   else {
  1135.     return 0;
  1136.   }
  1137.  
  1138.   /* got the parameters, allocate the space */
  1139.   device_attach_address(device_parent(me),
  1140.             "vm@0x0,0", /* stop remap */
  1141.             attach_raw_memory,
  1142.             0 /*address space*/,
  1143.             block_addr,
  1144.             block_nr_bytes,
  1145.             access_read_write,
  1146.             me);
  1147.   return block_nr_bytes;
  1148. }
  1149.  
  1150.  
  1151. static unsigned
  1152. vm_io_read_buffer_callback(device *me,
  1153.                void *dest,
  1154.                int space,
  1155.                unsigned_word addr,
  1156.                unsigned nr_bytes,
  1157.                cpu *processor,
  1158.                unsigned_word cia)
  1159. {
  1160.   if (add_vm_space(me, addr, nr_bytes, processor, cia) >= nr_bytes) {
  1161.     memset(dest, 0, nr_bytes); /* always initialized to zero */
  1162.     return nr_bytes;
  1163.   }
  1164.   else 
  1165.     return 0;
  1166. }
  1167.  
  1168.  
  1169. static unsigned
  1170. vm_io_write_buffer_callback(device *me,
  1171.                 const void *source,
  1172.                 int space,
  1173.                 unsigned_word addr,
  1174.                 unsigned nr_bytes,
  1175.                 cpu *processor,
  1176.                 unsigned_word cia)
  1177. {
  1178.   if (add_vm_space(me, addr, nr_bytes, processor, cia) >= nr_bytes) {
  1179.     return device_dma_write_buffer(device_parent(me), source,
  1180.                    space, addr,
  1181.                    nr_bytes,
  1182.                    0/*violate_read_only*/);
  1183.   }
  1184.   else
  1185.     return 0;
  1186. }
  1187.  
  1188.  
  1189. static void
  1190. vm_ioctl_callback(device *me,
  1191.           psim *system,
  1192.           cpu *processor,
  1193.           unsigned_word cia,
  1194.           va_list ap)
  1195. {
  1196.   /* While the caller is notified that the heap has grown by the
  1197.      requested amount, the heap is infact extended out to a page
  1198.      boundary. */
  1199.   vm_device *vm = (vm_device*)device_data(me);
  1200.   unsigned_word new_break = ALIGN_8(cpu_registers(processor)->gpr[3]);
  1201.   unsigned_word old_break = vm->heap_bound;
  1202.   signed_word delta = new_break - old_break;
  1203.   if (delta > 0)
  1204.     vm->heap_bound = ALIGN_PAGE(new_break);
  1205.   cpu_registers(processor)->gpr[0] = 0;
  1206.   cpu_registers(processor)->gpr[3] = new_break;
  1207. }
  1208.  
  1209.  
  1210. static device_callbacks const vm_callbacks = {
  1211.   vm_init_address_callback,
  1212.   ignore_device_init,
  1213.   vm_attach_address,
  1214.   passthrough_device_detach_address,
  1215.   vm_io_read_buffer_callback,
  1216.   vm_io_write_buffer_callback,
  1217.   unimp_device_dma_read_buffer,
  1218.   passthrough_device_dma_write_buffer,
  1219.   unimp_device_interrupt_event,
  1220.   unimp_device_child_interrupt_event,
  1221.   generic_device_unit_decode,
  1222.   generic_device_unit_encode,
  1223.   unimp_device_instance_create,
  1224.   unimp_device_instance_delete,
  1225.   unimp_device_instance_read,
  1226.   unimp_device_instance_write,
  1227.   unimp_device_instance_seek,
  1228.   vm_ioctl_callback,
  1229. };
  1230.  
  1231.  
  1232. static void *
  1233. vea_vm_create(const char *name,
  1234.           const device_unit *address,
  1235.           const char *args,
  1236.           device *parent)
  1237. {
  1238.   vm_device *vm = ZALLOC(vm_device);
  1239.   return vm;
  1240. }
  1241.  
  1242.  
  1243.  
  1244. /* Memory init device: memory@0x<addr>
  1245.  
  1246.    This strange device is used create sections of memory */
  1247.  
  1248. static void
  1249. memory_init_address_callback(device *me,
  1250.                  psim *system)
  1251. {
  1252.   const device_property *reg = device_find_array_property(me, "reg");
  1253.   const reg_spec *spec = reg->array;
  1254.   int nr_entries = reg->sizeof_array / sizeof(*spec);
  1255.  
  1256.   if ((reg->sizeof_array % sizeof(*spec)) != 0)
  1257.     error("devices/%s reg property of incorrect size\n", device_name(me));
  1258.   while (nr_entries > 0) {
  1259.     device_attach_address(device_parent(me),
  1260.               device_name(me),
  1261.               attach_raw_memory,
  1262.               0 /*address space*/,
  1263.               BE2H_4(spec->base),
  1264.               BE2H_4(spec->size),
  1265.               access_read_write_exec,
  1266.               me);
  1267.     spec++;
  1268.     nr_entries--;
  1269.   }
  1270. }
  1271.  
  1272. static void *
  1273. memory_instance_create_callback(device *me,
  1274.                 const char *args)
  1275. {
  1276.   return me; /* for want of any thing better */
  1277. }
  1278.  
  1279. static void
  1280. memory_instance_delete_callback(device_instance *instance)
  1281. {
  1282.   return;
  1283. }
  1284.  
  1285. static device_callbacks const memory_callbacks = {
  1286.   memory_init_address_callback,
  1287.   ignore_device_init,
  1288.   unimp_device_attach_address,
  1289.   unimp_device_detach_address,
  1290.   unimp_device_io_read_buffer,
  1291.   unimp_device_io_write_buffer,
  1292.   unimp_device_dma_read_buffer,
  1293.   unimp_device_dma_write_buffer,
  1294.   unimp_device_interrupt_event,
  1295.   unimp_device_child_interrupt_event,
  1296.   unimp_device_unit_decode,
  1297.   unimp_device_unit_encode,
  1298.   memory_instance_create_callback,
  1299.   memory_instance_delete_callback,
  1300.   unimp_device_instance_read,
  1301.   unimp_device_instance_write,
  1302.   unimp_device_instance_seek,
  1303.   unimp_device_ioctl,
  1304. };
  1305.  
  1306.  
  1307.  
  1308. /* IOBUS device: iobus@<address>
  1309.  
  1310.    Simple bus on which some IO devices live */
  1311.  
  1312. static void
  1313. iobus_attach_address_callback(device *me,
  1314.                   const char *name,
  1315.                   attach_type type,
  1316.                   int space,
  1317.                   unsigned_word addr,
  1318.                   unsigned nr_bytes,
  1319.                   access_type access,
  1320.                   device *who) /*callback/default*/
  1321. {
  1322.   unsigned_word iobus_addr;
  1323.   /* sanity check */
  1324.   if (type == attach_default)
  1325.     error("iobus_attach_address_callback() no default for %s/%s\n",
  1326.       device_name(me), name);
  1327.   if (space != 0)
  1328.     error("iobus_attach_address_callback() no space for %s/%s\n",
  1329.       device_name(me), name);
  1330.   /* get the bus address */
  1331.   if (device_unit_address(me)->nr_cells != 1)
  1332.     error("iobus_attach_address_callback() invalid address for %s\n",
  1333.       device_name(me));
  1334.   iobus_addr = device_unit_address(me)->cells[0];
  1335.   device_attach_address(device_parent(me),
  1336.             device_name(me),
  1337.             type,
  1338.             0 /*space*/,
  1339.             iobus_addr + addr,
  1340.             nr_bytes,
  1341.             access,
  1342.             who);
  1343. }
  1344.  
  1345.  
  1346. static device_callbacks const iobus_callbacks = {
  1347.   ignore_device_init,
  1348.   ignore_device_init,
  1349.   iobus_attach_address_callback,
  1350.   unimp_device_detach_address,
  1351.   unimp_device_io_read_buffer,
  1352.   unimp_device_io_write_buffer,
  1353.   unimp_device_dma_read_buffer,
  1354.   unimp_device_dma_write_buffer,
  1355.   unimp_device_interrupt_event,
  1356.   unimp_device_child_interrupt_event,
  1357.   generic_device_unit_decode,
  1358.   generic_device_unit_encode,
  1359.   unimp_device_instance_create,
  1360.   unimp_device_instance_delete,
  1361.   unimp_device_instance_read,
  1362.   unimp_device_instance_write,
  1363.   unimp_device_instance_seek,
  1364.   unimp_device_ioctl,
  1365. };
  1366.  
  1367.  
  1368.  
  1369. /* FILE device: file@0x<address>,<file-name>
  1370.    (later - file@0x<address>,<size>,<file-offset>,<file-name>)
  1371.  
  1372.    Specifies a file to read directly into memory starting at <address> */
  1373.  
  1374.  
  1375. static void
  1376. file_init_data_callback(device *me,
  1377.             psim *system)
  1378. {
  1379.   int count;
  1380.   const char *file_name = device_find_string_property(me, "file-name");
  1381.   unsigned_word addr = device_find_integer_property(me, "real-address");
  1382.   /* load the file */
  1383.   count = dma_file(me, file_name, addr);
  1384.   if (count < 0)
  1385.     error("device_table/%s - Problem loading file %s\n",
  1386.       device_name(me), file_name);
  1387. }
  1388.  
  1389.  
  1390. static device_callbacks const file_callbacks = {
  1391.   ignore_device_init,
  1392.   file_init_data_callback,
  1393.   unimp_device_attach_address,
  1394.   unimp_device_detach_address,
  1395.   unimp_device_io_read_buffer,
  1396.   unimp_device_io_write_buffer,
  1397.   unimp_device_dma_read_buffer,
  1398.   unimp_device_dma_write_buffer,
  1399.   unimp_device_interrupt_event,
  1400.   unimp_device_child_interrupt_event,
  1401.   unimp_device_unit_decode,
  1402.   unimp_device_unit_encode,
  1403.   unimp_device_instance_create,
  1404.   unimp_device_instance_delete,
  1405.   unimp_device_instance_read,
  1406.   unimp_device_instance_write,
  1407.   unimp_device_instance_seek,
  1408.   unimp_device_ioctl,
  1409. };
  1410.  
  1411.  
  1412.  
  1413. /* DATA device: data@<address>
  1414.  
  1415.      <data> - property containing the value to store
  1416.      <real-address> - address to store data at
  1417.  
  1418.    Store <data> at <address> using approperiate byte order */
  1419.  
  1420. static void
  1421. data_init_data_callback(device *me,
  1422.             psim *system)
  1423. {
  1424.   unsigned_word addr = device_find_integer_property(me, "real-address");
  1425.   const device_property *data = device_find_property(me, "data");
  1426.   if (data == NULL)
  1427.     error("devices/data - missing data property\n");
  1428.   switch (data->type) {
  1429.   case integer_property:
  1430.     {
  1431.       unsigned32 buf = device_find_integer_property(me, "data");
  1432.       H2T(buf);
  1433.       if (device_dma_write_buffer(device_parent(me),
  1434.                   &buf,
  1435.                   0 /*address-space*/,
  1436.                   addr,
  1437.                   sizeof(buf), /*nr-bytes*/
  1438.                   1 /*violate ro*/) != sizeof(buf))
  1439.     error("devices/%s - Problem storing integer 0x%x at 0x%lx\n",
  1440.           device_name(me), (long)buf, (unsigned long)addr);
  1441.     }
  1442.     break;
  1443.   default:
  1444.     error("devices/%s - write of this data is not yet implemented\n", device_name(me));
  1445.     break;
  1446.   }
  1447. }
  1448.  
  1449.  
  1450. static device_callbacks const data_callbacks = {
  1451.   ignore_device_init,
  1452.   data_init_data_callback,
  1453.   unimp_device_attach_address,
  1454.   unimp_device_detach_address,
  1455.   unimp_device_io_read_buffer,
  1456.   unimp_device_io_write_buffer,
  1457.   unimp_device_dma_read_buffer,
  1458.   unimp_device_dma_write_buffer,
  1459.   unimp_device_interrupt_event,
  1460.   unimp_device_child_interrupt_event,
  1461.   unimp_device_unit_decode,
  1462.   unimp_device_unit_encode,
  1463.   unimp_device_instance_create,
  1464.   unimp_device_instance_delete,
  1465.   unimp_device_instance_read,
  1466.   unimp_device_instance_write,
  1467.   unimp_device_instance_seek,
  1468.   unimp_device_ioctl,
  1469. };
  1470.  
  1471.  
  1472.  
  1473. /* HTAB:
  1474.  
  1475.    htab@<real-address>
  1476.      real-address =
  1477.      nr-bytes =
  1478.  
  1479.    pte@<real-address>
  1480.      real-address =
  1481.      virtual-address =
  1482.      nr-bytes =
  1483.      wimg =
  1484.      pp =
  1485.  
  1486.    pte@<real-address>
  1487.      real-address =
  1488.      file-name =
  1489.      wimg =
  1490.      pp =
  1491.      
  1492.    HTAB defines the location (in physical memory) of a HASH table.
  1493.    PTE (as a child of HTAB) defines a mapping that is to be entered
  1494.    into that table.
  1495.  
  1496.    NB: All the work in this device is done during init by the PTE.
  1497.    The pte, looks up its parent to determine the address of the HTAB
  1498.    and then uses DMA calls to establish the required mapping. */
  1499.  
  1500. STATIC_INLINE_DEVICE_TABLE void
  1501. htab_decode_hash_table(device *parent,
  1502.                unsigned32 *htaborg,
  1503.                unsigned32 *htabmask)
  1504. {
  1505.   unsigned_word htab_ra;
  1506.   unsigned htab_nr_bytes;
  1507.   unsigned n;
  1508.   /* determine the location/size of the hash table */
  1509.   if (parent == NULL
  1510.       || strcmp(device_name(parent), "htab") != 0)
  1511.     error("devices/htab - missing htab parent device\n");
  1512.   htab_ra = device_find_integer_property(parent, "real-address");
  1513.   htab_nr_bytes = device_find_integer_property(parent, "nr-bytes");
  1514.   for (n = htab_nr_bytes; n > 1; n = n / 2) {
  1515.     if (n % 2 != 0)
  1516.       error("devices/%s - htab size 0x%x not a power of two\n",
  1517.         device_name(parent), htab_nr_bytes);
  1518.   }
  1519.   *htaborg = htab_ra;
  1520.   *htabmask = MASKED32(htab_nr_bytes - 1, 7, 31-6);
  1521.   if ((htab_ra & INSERTED32(*htabmask, 7, 15)) != 0) {
  1522.     error("devices/%s - htaborg 0x%x not aligned to htabmask 0x%x\n",
  1523.       device_name(parent), *htaborg, *htabmask);
  1524.   }
  1525.   DTRACE(htab, ("htab - htaborg=0x%lx htabmask=0x%lx\n",
  1526.         (unsigned long)*htaborg, (unsigned long)*htabmask));
  1527. }
  1528.  
  1529. STATIC_INLINE void
  1530. htab_map_page(device *me,
  1531.           unsigned_word ra,
  1532.           unsigned64 va,
  1533.           unsigned wimg,
  1534.           unsigned pp,
  1535.           unsigned32 htaborg,
  1536.           unsigned32 htabmask)
  1537. {
  1538.   unsigned64 vpn = va << 12;
  1539.   unsigned32 vsid = INSERTED32(EXTRACTED64(vpn, 0, 23), 0, 23);
  1540.   unsigned32 page = INSERTED32(EXTRACTED64(vpn, 24, 39), 0, 15);
  1541.   unsigned32 hash = INSERTED32(EXTRACTED32(vsid, 5, 23)
  1542.                    ^ EXTRACTED32(page, 0, 15),
  1543.                    7, 31-6);
  1544.   int h;
  1545.   for (h = 0; h < 2; h++) {
  1546.     unsigned32 pteg = (htaborg | (hash & htabmask));
  1547.     int pti;
  1548.     for (pti = 0; pti < 8; pti++, pteg += 8) {
  1549.       unsigned32 current_target_pte0;
  1550.       unsigned32 current_pte0;
  1551.       if (device_dma_read_buffer(device_parent(me),
  1552.                  ¤t_target_pte0,
  1553.                  0, /*space*/
  1554.                  pteg,
  1555.                  sizeof(current_target_pte0)) != 4)
  1556.     error("htab_init_callback() failed to read a pte at 0x%x\n",
  1557.           pteg);
  1558.       current_pte0 = T2H_4(current_target_pte0);
  1559.       if (!MASKED32(current_pte0, 0, 0)) {
  1560.     /* empty pte fill it */
  1561.     unsigned32 pte0 = (MASK32(0, 0)
  1562.                | INSERTED32(EXTRACTED32(vsid, 0, 23), 1, 24)
  1563.                | INSERTED32(h, 25, 25)
  1564.                | INSERTED32(EXTRACTED32(page, 0, 5), 26, 31));
  1565.     unsigned32 target_pte0 = H2T_4(pte0);
  1566.     unsigned32 pte1 = (INSERTED32(EXTRACTED32(ra, 0, 19), 0, 19)
  1567.                | INSERTED32(wimg, 25, 28)
  1568.                | INSERTED32(pp, 30, 31));
  1569.     unsigned32 target_pte1 = H2T_4(pte1);
  1570.     if (device_dma_write_buffer(device_parent(me),
  1571.                     &target_pte0,
  1572.                     0, /*space*/
  1573.                     pteg,
  1574.                     sizeof(target_pte0),
  1575.                     1/*ro?*/) != 4
  1576.         || device_dma_write_buffer(device_parent(me),
  1577.                        &target_pte1,
  1578.                        0, /*space*/
  1579.                        pteg + 4,
  1580.                        sizeof(target_pte1),
  1581.                        1/*ro?*/) != 4)
  1582.       error("htab_init_callback() failed to write a pte a 0x%x\n",
  1583.         pteg);
  1584.     DTRACE(htab, ("map - va=0x%lx ra=0x%lx &pte0=0x%lx pte0=0x%lx pte1=0x%lx\n",
  1585.               (unsigned long)va, (unsigned long)ra,
  1586.               (unsigned long)pteg,
  1587.               (unsigned long)pte0, (unsigned long)pte1));
  1588.     return;
  1589.       }
  1590.     }
  1591.     /* re-hash */
  1592.     hash = MASKED32(~hash, 0, 18);
  1593.   }
  1594. }
  1595.  
  1596. STATIC_INLINE_DEVICE_TABLE void
  1597. htab_map_region(device *me,
  1598.         unsigned_word pte_ra,
  1599.         unsigned_word pte_va,
  1600.         unsigned nr_bytes,
  1601.         unsigned wimg,
  1602.         unsigned pp,
  1603.         unsigned32 htaborg,
  1604.         unsigned32 htabmask)
  1605. {
  1606.   unsigned_word ra;
  1607.   unsigned64 va;
  1608.   /* go through all pages and create a pte for each */
  1609.   for (ra = pte_ra, va = (signed_word)pte_va;
  1610.        ra < pte_ra + nr_bytes;
  1611.        ra += 0x1000, va += 0x1000) {
  1612.     htab_map_page(me, ra, va, wimg, pp, htaborg, htabmask);
  1613.   }
  1614. }
  1615.   
  1616. typedef struct _htab_binary_sizes {
  1617.   unsigned_word text_ra;
  1618.   unsigned_word text_base;
  1619.   unsigned_word text_bound;
  1620.   unsigned_word data_ra;
  1621.   unsigned_word data_base;
  1622.   unsigned data_bound;
  1623.   device *me;
  1624. } htab_binary_sizes;
  1625.  
  1626. STATIC_INLINE_DEVICE_TABLE void
  1627. htab_sum_binary(bfd *abfd,
  1628.         sec_ptr sec,
  1629.         PTR data)
  1630. {
  1631.   htab_binary_sizes *sizes = (htab_binary_sizes*)data;
  1632.   unsigned_word size = bfd_get_section_size_before_reloc (sec);
  1633.   unsigned_word vma = bfd_get_section_vma (abfd, sec);
  1634.  
  1635.   /* skip the section if no memory to allocate */
  1636.   if (! (bfd_get_section_flags(abfd, sec) & SEC_ALLOC))
  1637.     return;
  1638.  
  1639.   if ((bfd_get_section_flags (abfd, sec) & SEC_CODE)
  1640.       || (bfd_get_section_flags (abfd, sec) & SEC_READONLY)) {
  1641.     if (sizes->text_bound < vma + size)
  1642.       sizes->text_bound = ALIGN_PAGE(vma + size);
  1643.     if (sizes->text_base > vma)
  1644.       sizes->text_base = FLOOR_PAGE(vma);
  1645.   }
  1646.   else if ((bfd_get_section_flags (abfd, sec) & SEC_DATA)
  1647.        || (bfd_get_section_flags (abfd, sec) & SEC_ALLOC)) {
  1648.     if (sizes->data_bound < vma + size)
  1649.       sizes->data_bound = ALIGN_PAGE(vma + size);
  1650.     if (sizes->data_base > vma)
  1651.       sizes->data_base = FLOOR_PAGE(vma);
  1652.   }
  1653. }
  1654.  
  1655. STATIC_INLINE_DEVICE_TABLE void
  1656. htab_dma_binary(bfd *abfd,
  1657.         sec_ptr sec,
  1658.         PTR data)
  1659. {
  1660.   htab_binary_sizes *sizes = (htab_binary_sizes*)data;
  1661.   void *section_init;
  1662.   unsigned_word section_vma;
  1663.   unsigned_word section_size;
  1664.   unsigned_word section_ra;
  1665.   device *me = sizes->me;
  1666.  
  1667.   /* skip the section if no memory to allocate */
  1668.   if (! (bfd_get_section_flags(abfd, sec) & SEC_ALLOC))
  1669.     return;
  1670.  
  1671.   /* check/ignore any sections of size zero */
  1672.   section_size = bfd_get_section_size_before_reloc(sec);
  1673.   if (section_size == 0)
  1674.     return;
  1675.  
  1676.   /* if nothing to load, ignore this one */
  1677.   if (! (bfd_get_section_flags(abfd, sec) & SEC_LOAD))
  1678.     return;
  1679.  
  1680.   /* find where it is to go */
  1681.   section_vma = bfd_get_section_vma(abfd, sec);
  1682.   section_ra = 0;
  1683.   if ((bfd_get_section_flags (abfd, sec) & SEC_CODE)
  1684.       || (bfd_get_section_flags (abfd, sec) & SEC_READONLY))
  1685.     section_ra = (section_vma - sizes->text_base + sizes->text_ra);
  1686.   else if ((bfd_get_section_flags (abfd, sec) & SEC_DATA))
  1687.     section_ra = (section_vma - sizes->data_base + sizes->data_ra);
  1688.   else 
  1689.     return; /* just ignore it */
  1690.  
  1691.   DTRACE(htab,
  1692.      ("load - name=%-7s vma=0x%.8lx size=%6ld ra=0x%.8lx flags=%3lx(%s%s%s%s%s )\n",
  1693.       bfd_get_section_name(abfd, sec),
  1694.       (long)section_vma,
  1695.       (long)section_size,
  1696.       (long)section_ra,
  1697.       (long)bfd_get_section_flags(abfd, sec),
  1698.       bfd_get_section_flags(abfd, sec) & SEC_LOAD ? " LOAD" : "",
  1699.       bfd_get_section_flags(abfd, sec) & SEC_CODE ? " CODE" : "",
  1700.       bfd_get_section_flags(abfd, sec) & SEC_DATA ? " DATA" : "",
  1701.       bfd_get_section_flags(abfd, sec) & SEC_ALLOC ? " ALLOC" : "",
  1702.       bfd_get_section_flags(abfd, sec) & SEC_READONLY ? " READONLY" : ""
  1703.       ));
  1704.  
  1705.   /* dma in the sections data */
  1706.   section_init = zalloc(section_size);
  1707.   if (!bfd_get_section_contents(abfd,
  1708.                 sec,
  1709.                 section_init, 0,
  1710.                 section_size)) {
  1711.     bfd_perror("devices/pte");
  1712.     error("devices/%s - no data loaded\n", device_name(me));
  1713.   }
  1714.   if (device_dma_write_buffer(device_parent(me),
  1715.                   section_init,
  1716.                   0 /*space*/,
  1717.                   section_ra,
  1718.                   section_size,
  1719.                   1 /*violate_read_only*/)
  1720.       != section_size)
  1721.     error("devices/%s - broken dma transfer\n", device_name(me));
  1722.   zfree(section_init); /* only free if load */
  1723. }
  1724.  
  1725. STATIC_INLINE_DEVICE_TABLE void
  1726. htab_map_binary(device *me,
  1727.         unsigned_word ra,
  1728.         unsigned wimg,
  1729.         unsigned pp,
  1730.         const char *file_name,
  1731.         unsigned32 htaborg,
  1732.         unsigned32 htabmask)
  1733. {
  1734.   htab_binary_sizes sizes;
  1735.   bfd *image;
  1736.   sizes.text_base = -1;
  1737.   sizes.data_base = -1;
  1738.   sizes.text_bound = 0;
  1739.   sizes.data_bound = 0;
  1740.   sizes.me = me;
  1741.  
  1742.   /* open the file */
  1743.   image = bfd_openr(file_name, NULL);
  1744.   if (image == NULL) {
  1745.     bfd_perror("devices/pte");
  1746.     error("devices/%s - the file %s not loaded\n", device_name(me), file_name);
  1747.   }
  1748.  
  1749.   /* check it is valid */
  1750.   if (!bfd_check_format(image, bfd_object)) {
  1751.     bfd_close(image);
  1752.     error("devices/%s - the file %s has an invalid binary format\n",
  1753.       device_name(me), file_name);
  1754.   }
  1755.  
  1756.   /* determine the size of each of the files regions */
  1757.   bfd_map_over_sections (image, htab_sum_binary, (PTR) &sizes);
  1758.  
  1759.   /* determine the real addresses of the sections */
  1760.   sizes.text_ra = ra;
  1761.   sizes.data_ra = ALIGN_PAGE(sizes.text_ra + 
  1762.                  (sizes.text_bound - sizes.text_base));
  1763.  
  1764.   DTRACE(htab, ("text map - base=0x%lx bound=0x%lx ra=0x%lx\n",
  1765.         (unsigned long)sizes.text_base,
  1766.         (unsigned long)sizes.text_bound,
  1767.         (unsigned long)sizes.text_ra));
  1768.   DTRACE(htab, ("data map - base=0x%lx bound=0x%lx ra=0x%lx\n",
  1769.         (unsigned long)sizes.data_base,
  1770.         (unsigned long)sizes.data_bound,
  1771.         (unsigned long)sizes.data_ra));
  1772.  
  1773.   /* set up virtual memory maps for each of the regions */
  1774.   htab_map_region(me, sizes.text_ra, sizes.text_base,
  1775.           sizes.text_bound - sizes.text_base,
  1776.           wimg, pp,
  1777.           htaborg, htabmask);
  1778.   htab_map_region(me, sizes.data_ra, sizes.data_base,
  1779.           sizes.data_bound - sizes.data_base,
  1780.           wimg, pp,
  1781.           htaborg, htabmask);
  1782.  
  1783.   /* dma the sections into physical memory */
  1784.   bfd_map_over_sections (image, htab_dma_binary, (PTR) &sizes);
  1785. }
  1786.  
  1787. static void
  1788. htab_init_data_callback(device *me,
  1789.             psim *system)
  1790. {
  1791.   if (WITH_TARGET_WORD_BITSIZE != 32)
  1792.     error("devices/htab: only 32bit targets currently suported\n");
  1793.  
  1794.   /* only the pte does work */
  1795.   if (strcmp(device_name(me), "pte") == 0) {
  1796.     unsigned32 htaborg;
  1797.     unsigned32 htabmask;
  1798.  
  1799.     htab_decode_hash_table(device_parent(me), &htaborg, &htabmask);
  1800.  
  1801.     if (device_find_property(me, "file-name") != NULL) {
  1802.       /* map in a binary */
  1803.       unsigned32 pte_ra = device_find_integer_property(me, "real-address");
  1804.       unsigned pte_wimg = device_find_integer_property(me, "wimg");
  1805.       unsigned pte_pp = device_find_integer_property(me, "pp");
  1806.       const char *file_name = device_find_string_property(me, "file-name");
  1807.       DTRACE(htab, ("pte - ra=0x%lx, wimg=%ld, pp=%ld, file-name=%s\n",
  1808.             (unsigned long)pte_ra,
  1809.             (unsigned long)pte_wimg,
  1810.             (long)pte_pp,
  1811.             file_name));
  1812.       htab_map_binary(me, pte_ra, pte_wimg, pte_pp, file_name,
  1813.               htaborg, htabmask);
  1814.     }
  1815.     else {
  1816.       /* handle a normal mapping definition */
  1817.       /* so that 0xff...0 is make 0xffffff00 */
  1818.       signed32 pte_va = device_find_integer_property(me, "virtual-address");
  1819.       unsigned32 pte_ra = device_find_integer_property(me, "real-address");
  1820.       unsigned pte_nr_bytes = device_find_integer_property(me, "nr-bytes");
  1821.       unsigned pte_wimg = device_find_integer_property(me, "wimg");
  1822.       unsigned pte_pp = device_find_integer_property(me, "pp");
  1823.       DTRACE(htab, ("pte - ra=0x%lx, wimg=%ld, pp=%ld, va=0x%lx, nr_bytes=%ld\n",
  1824.             (unsigned long)pte_ra,
  1825.             (long)pte_wimg,
  1826.             (long)pte_pp,
  1827.             (unsigned long)pte_va,
  1828.             (long)pte_nr_bytes));
  1829.       htab_map_region(me, pte_ra, pte_va, pte_nr_bytes, pte_wimg, pte_pp,
  1830.               htaborg, htabmask);
  1831.     }
  1832.   }
  1833. }
  1834.  
  1835.  
  1836. static device_callbacks const htab_callbacks = {
  1837.   ignore_device_init,
  1838.   htab_init_data_callback,
  1839.   unimp_device_attach_address,
  1840.   unimp_device_detach_address,
  1841.   unimp_device_io_read_buffer,
  1842.   unimp_device_io_write_buffer,
  1843.   passthrough_device_dma_read_buffer,
  1844.   passthrough_device_dma_write_buffer,
  1845.   unimp_device_interrupt_event,
  1846.   unimp_device_child_interrupt_event,
  1847.   generic_device_unit_decode,
  1848.   generic_device_unit_encode,
  1849.   unimp_device_instance_create,
  1850.   unimp_device_instance_delete,
  1851.   unimp_device_instance_read,
  1852.   unimp_device_instance_write,
  1853.   unimp_device_instance_seek,
  1854.   unimp_device_ioctl,
  1855. };
  1856.  
  1857.  
  1858.  
  1859. /* Load device: binary
  1860.  
  1861.    Single property the name of which specifies the file (understood by
  1862.    BFD) that is to be DMAed into memory as part of init */
  1863.  
  1864. STATIC_INLINE_DEVICE_TABLE void
  1865. update_for_binary_section(bfd *abfd,
  1866.               asection *the_section,
  1867.               PTR obj)
  1868. {
  1869.   unsigned_word section_vma;
  1870.   unsigned_word section_size;
  1871.   access_type access;
  1872.   device *me = (device*)obj;
  1873.  
  1874.   /* skip the section if no memory to allocate */
  1875.   if (! (bfd_get_section_flags(abfd, the_section) & SEC_ALLOC))
  1876.     return;
  1877.  
  1878.   /* check/ignore any sections of size zero */
  1879.   section_size = bfd_get_section_size_before_reloc(the_section);
  1880.   if (section_size == 0)
  1881.     return;
  1882.  
  1883.   /* find where it is to go */
  1884.   section_vma = bfd_get_section_vma(abfd, the_section);
  1885.  
  1886.   DTRACE(binary,
  1887.      ("name=%-7s, vma=0x%.8lx, size=%6ld, flags=%3lx(%s%s%s%s%s )\n",
  1888.       bfd_get_section_name(abfd, the_section),
  1889.       (long)section_vma,
  1890.       (long)section_size,
  1891.       (long)bfd_get_section_flags(abfd, the_section),
  1892.       bfd_get_section_flags(abfd, the_section) & SEC_LOAD ? " LOAD" : "",
  1893.       bfd_get_section_flags(abfd, the_section) & SEC_CODE ? " CODE" : "",
  1894.       bfd_get_section_flags(abfd, the_section) & SEC_DATA ? " DATA" : "",
  1895.       bfd_get_section_flags(abfd, the_section) & SEC_ALLOC ? " ALLOC" : "",
  1896.       bfd_get_section_flags(abfd, the_section) & SEC_READONLY ? " READONLY" : ""
  1897.       ));
  1898.  
  1899.   /* determine the devices access */
  1900.   access = access_read;
  1901.   if (bfd_get_section_flags(abfd, the_section) & SEC_CODE)
  1902.     access |= access_exec;
  1903.   if (!(bfd_get_section_flags(abfd, the_section) & SEC_READONLY))
  1904.     access |= access_write;
  1905.  
  1906.   /* if a map, pass up a request to create the memory in core */
  1907.   if (strncmp(device_name(me), "map-binary", strlen("map-binary")) == 0)
  1908.     device_attach_address(device_parent(me),
  1909.               device_name(me),
  1910.               attach_raw_memory,
  1911.               0 /*address space*/,
  1912.               section_vma,
  1913.               section_size,
  1914.               access,
  1915.               me);
  1916.  
  1917.   /* if a load dma in the required data */
  1918.   if (bfd_get_section_flags(abfd, the_section) & SEC_LOAD) {
  1919.     void *section_init = zalloc(section_size);
  1920.     if (!bfd_get_section_contents(abfd,
  1921.                   the_section,
  1922.                   section_init, 0,
  1923.                   section_size)) {
  1924.       bfd_perror("core:load_section()");
  1925.       error("load of data failed");
  1926.       return;
  1927.     }
  1928.     if (device_dma_write_buffer(device_parent(me),
  1929.                 section_init,
  1930.                 0 /*space*/,
  1931.                 section_vma,
  1932.                 section_size,
  1933.                 1 /*violate_read_only*/)
  1934.     != section_size)
  1935.       error("data_init_callback() broken transfer for %s\n", device_name(me));
  1936.     zfree(section_init); /* only free if load */
  1937.   }
  1938. }
  1939.  
  1940.  
  1941. static void
  1942. binary_init_data_callback(device *me,
  1943.               psim *system)
  1944. {
  1945.   /* get the file name */
  1946.   const char *file_name = device_find_string_property(me, "file-name");
  1947.   bfd *image;
  1948.  
  1949.   /* open the file */
  1950.   image = bfd_openr(file_name, NULL);
  1951.   if (image == NULL) {
  1952.     bfd_perror("devices/binary");
  1953.     error("devices/%s - the file %s not loaded\n", device_name(me), file_name);
  1954.   }
  1955.  
  1956.   /* check it is valid */
  1957.   if (!bfd_check_format(image, bfd_object)) {
  1958.     bfd_close(image);
  1959.     error("devices/%s - the file %s has an invalid binary format\n",
  1960.       device_name(me), file_name);
  1961.   }
  1962.  
  1963.   /* and the data sections */
  1964.   bfd_map_over_sections(image,
  1965.             update_for_binary_section,
  1966.             (PTR)me);
  1967.  
  1968.   bfd_close(image);
  1969. }
  1970.  
  1971.  
  1972. static device_callbacks const binary_callbacks = {
  1973.   ignore_device_init,
  1974.   binary_init_data_callback,
  1975.   unimp_device_attach_address,
  1976.   unimp_device_detach_address,
  1977.   unimp_device_io_read_buffer,
  1978.   unimp_device_io_write_buffer,
  1979.   unimp_device_dma_read_buffer,
  1980.   unimp_device_dma_write_buffer,
  1981.   unimp_device_interrupt_event,
  1982.   unimp_device_child_interrupt_event,
  1983.   unimp_device_unit_decode,
  1984.   unimp_device_unit_encode,
  1985.   unimp_device_instance_create,
  1986.   unimp_device_instance_delete,
  1987.   unimp_device_instance_read,
  1988.   unimp_device_instance_write,
  1989.   unimp_device_instance_seek,
  1990.   unimp_device_ioctl,
  1991. };
  1992.  
  1993.  
  1994.  
  1995. /* Stack device: stack@<type>
  1996.  
  1997.    Has a single IOCTL to create a stack frame of the specified type.
  1998.    If <type> is elf or xcoff then a corresponding stack is created.
  1999.    Any other value of type is ignored.
  2000.  
  2001.    The IOCTL takes the additional arguments:
  2002.  
  2003.      unsigned_word stack_end -- where the stack should come down from
  2004.      char **argv -- ...
  2005.      char **envp -- ...
  2006.  
  2007.    */
  2008.  
  2009. STATIC_INLINE_DEVICE_TABLE int
  2010. sizeof_argument_strings(char **arg)
  2011. {
  2012.   int sizeof_strings = 0;
  2013.  
  2014.   /* robust */
  2015.   if (arg == NULL)
  2016.     return 0;
  2017.  
  2018.   /* add up all the string sizes (padding as we go) */
  2019.   for (; *arg != NULL; arg++) {
  2020.     int len = strlen(*arg) + 1;
  2021.     sizeof_strings += ALIGN_8(len);
  2022.   }
  2023.  
  2024.   return sizeof_strings;
  2025. }
  2026.  
  2027. STATIC_INLINE_DEVICE_TABLE int
  2028. number_of_arguments(char **arg)
  2029. {
  2030.   int nr;
  2031.   if (arg == NULL)
  2032.     return 0;
  2033.   for (nr = 0; *arg != NULL; arg++, nr++);
  2034.   return nr;
  2035. }
  2036.  
  2037. STATIC_INLINE_DEVICE_TABLE int
  2038. sizeof_arguments(char **arg)
  2039. {
  2040.   return ALIGN_8((number_of_arguments(arg) + 1) * sizeof(unsigned_word));
  2041. }
  2042.  
  2043. STATIC_INLINE_DEVICE_TABLE void
  2044. write_stack_arguments(psim *system,
  2045.               char **arg,
  2046.               unsigned_word start_block,
  2047.               unsigned_word end_block,
  2048.               unsigned_word start_arg,
  2049.               unsigned_word end_arg)
  2050. {
  2051.   DTRACE(stack,
  2052.     ("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",
  2053.      (long)system, (long)arg, (long)start_block, (long)end_block, (long)start_arg, (long)end_arg));
  2054.   if (arg == NULL)
  2055.     error("write_arguments: character array NULL\n");
  2056.   /* only copy in arguments, memory is already zero */
  2057.   for (; *arg != NULL; arg++) {
  2058.     int len = strlen(*arg)+1;
  2059.     unsigned_word target_start_block;
  2060.     DTRACE(stack,
  2061.       ("write_stack_arguments() write %s=%s at %s=0x%lx %s=0x%lx %s=0x%lx\n",
  2062.        "**arg", *arg, "start_block", (long)start_block,
  2063.        "len", (long)len, "start_arg", (long)start_arg));
  2064.     if (psim_write_memory(system, 0, *arg,
  2065.               start_block, len,
  2066.               0/*violate_readonly*/) != len)
  2067.       error("write_stack_arguments() - write of **arg (%s) at 0x%x failed\n",
  2068.         *arg, start_block);
  2069.     target_start_block = H2T_word(start_block);
  2070.     if (psim_write_memory(system, 0, &target_start_block,
  2071.               start_arg, sizeof(target_start_block),
  2072.               0) != sizeof(target_start_block))
  2073.       error("write_stack_arguments() - write of *arg failed\n");
  2074.     start_block += ALIGN_8(len);
  2075.     start_arg += sizeof(start_block);
  2076.   }
  2077.   start_arg += sizeof(start_block); /*the null at the end*/
  2078.   if (start_block != end_block
  2079.       || ALIGN_8(start_arg) != end_arg)
  2080.     error("write_stack_arguments - possible corruption\n");
  2081.   DTRACE(stack,
  2082.      ("write_stack_arguments() = void\n"));
  2083. }
  2084.  
  2085. STATIC_INLINE_DEVICE_TABLE void
  2086. create_elf_stack_frame(psim *system,
  2087.                unsigned_word bottom_of_stack,
  2088.                char **argv,
  2089.                char **envp)
  2090. {
  2091.   /* fixme - this is over aligned */
  2092.  
  2093.   /* information block */
  2094.   const unsigned sizeof_envp_block = sizeof_argument_strings(envp);
  2095.   const unsigned_word start_envp_block = bottom_of_stack - sizeof_envp_block;
  2096.   const unsigned sizeof_argv_block = sizeof_argument_strings(argv);
  2097.   const unsigned_word start_argv_block = start_envp_block - sizeof_argv_block;
  2098.  
  2099.   /* auxiliary vector - contains only one entry */
  2100.   const unsigned sizeof_aux_entry = 2*sizeof(unsigned_word); /* magic */
  2101.   const unsigned_word start_aux = start_argv_block - ALIGN_8(sizeof_aux_entry);
  2102.  
  2103.   /* environment points (including null sentinal) */
  2104.   const unsigned sizeof_envp = sizeof_arguments(envp);
  2105.   const unsigned_word start_envp = start_aux - sizeof_envp;
  2106.  
  2107.   /* argument pointers (including null sentinal) */
  2108.   const int argc = number_of_arguments(argv);
  2109.   const unsigned sizeof_argv = sizeof_arguments(argv);
  2110.   const unsigned_word start_argv = start_envp - sizeof_argv;
  2111.  
  2112.   /* link register save address - alligned to a 16byte boundary */
  2113.   const unsigned_word top_of_stack = ((start_argv
  2114.                        - 2 * sizeof(unsigned_word))
  2115.                       & ~0xf);
  2116.  
  2117.   /* install arguments on stack */
  2118.   write_stack_arguments(system, envp,
  2119.             start_envp_block, bottom_of_stack,
  2120.             start_envp, start_aux);
  2121.   write_stack_arguments(system, argv,
  2122.             start_argv_block, start_envp_block,
  2123.             start_argv, start_envp);
  2124.  
  2125.   /* set up the registers */
  2126.   psim_write_register(system, -1,
  2127.               &top_of_stack, "sp", cooked_transfer);
  2128.   psim_write_register(system, -1,
  2129.               &argc, "r3", cooked_transfer);
  2130.   psim_write_register(system, -1,
  2131.               &start_argv, "r4", cooked_transfer);
  2132.   psim_write_register(system, -1,
  2133.               &start_envp, "r5", cooked_transfer);
  2134.   psim_write_register(system, -1,
  2135.               &start_aux, "r6", cooked_transfer);
  2136. }
  2137.  
  2138. STATIC_INLINE_DEVICE_TABLE void
  2139. create_aix_stack_frame(psim *system,
  2140.                unsigned_word bottom_of_stack,
  2141.                char **argv,
  2142.                char **envp)
  2143. {
  2144.   unsigned_word core_envp;
  2145.   unsigned_word core_argv;
  2146.   unsigned_word core_argc;
  2147.   unsigned_word core_aux;
  2148.   unsigned_word top_of_stack;
  2149.  
  2150.   /* cheat - create an elf stack frame */
  2151.   create_elf_stack_frame(system, bottom_of_stack, argv, envp);
  2152.   
  2153.   /* extract argument addresses from registers */
  2154.   psim_read_register(system, 0, &top_of_stack, "r1", cooked_transfer);
  2155.   psim_read_register(system, 0, &core_argc, "r3", cooked_transfer);
  2156.   psim_read_register(system, 0, &core_argv, "r4", cooked_transfer);
  2157.   psim_read_register(system, 0, &core_envp, "r5", cooked_transfer);
  2158.   psim_read_register(system, 0, &core_aux, "r6", cooked_transfer);
  2159.  
  2160.   /* extract arguments from registers */
  2161.   error("create_aix_stack_frame() - what happens next?\n");
  2162. }
  2163.  
  2164.  
  2165.  
  2166. static void
  2167. stack_ioctl_callback(device *me,
  2168.              psim *system,
  2169.              cpu *processor,
  2170.              unsigned_word cia,
  2171.              va_list ap)
  2172. {
  2173.   unsigned_word stack_pointer;
  2174.   const char *stack_type;
  2175.   char **argv;
  2176.   char **envp;
  2177.   stack_pointer = va_arg(ap, unsigned_word);
  2178.   argv = va_arg(ap, char **);
  2179.   envp = va_arg(ap, char **);
  2180.   DTRACE(stack,
  2181.      ("stack_ioctl_callback(me=0x%lx:%s, system=0x%lx, processor=0x%lx, cia=0x%lx, argv=0x%lx, envp=0x%lx)\n",
  2182.       (long)me, device_name(me), (long)system, (long)processor, (long)cia, (long)argv, (long)envp));
  2183.   stack_type = device_find_string_property(me, "stack-type");
  2184.   if (strcmp(stack_type, "elf") == 0)
  2185.     create_elf_stack_frame(system, stack_pointer, argv, envp);
  2186.   else if (strcmp(stack_type, "xcoff") == 0)
  2187.     create_aix_stack_frame(system, stack_pointer, argv, envp);
  2188.   DTRACE(stack, 
  2189.      ("stack_ioctl_callback() = void\n"));
  2190. }
  2191.  
  2192. static device_callbacks const stack_callbacks = {
  2193.   ignore_device_init,
  2194.   ignore_device_init,
  2195.   unimp_device_attach_address,
  2196.   unimp_device_detach_address,
  2197.   unimp_device_io_read_buffer,
  2198.   unimp_device_io_write_buffer,
  2199.   unimp_device_dma_read_buffer,
  2200.   unimp_device_dma_write_buffer,
  2201.   unimp_device_interrupt_event,
  2202.   unimp_device_child_interrupt_event,
  2203.   unimp_device_unit_decode,
  2204.   unimp_device_unit_encode,
  2205.   unimp_device_instance_create,
  2206.   unimp_device_instance_delete,
  2207.   unimp_device_instance_read,
  2208.   unimp_device_instance_write,
  2209.   unimp_device_instance_seek,
  2210.   stack_ioctl_callback,
  2211. };
  2212.  
  2213.  
  2214.  
  2215. device_descriptor device_table[] = {
  2216.   { "console", console_create, &console_callbacks },
  2217.   { "memory", NULL, &memory_callbacks },
  2218.   { "eeprom", NULL, &memory_callbacks },
  2219.   { "vm", vea_vm_create, &vm_callbacks },
  2220.   { "halt", NULL, &halt_callbacks },
  2221.   { "icu", NULL, &icu_callbacks },
  2222.   { "register", NULL, ®ister_callbacks },
  2223.   { "iobus", NULL, &iobus_callbacks },
  2224.   { "file", NULL, &file_callbacks },
  2225.   { "data", NULL, &data_callbacks },
  2226.   { "htab", NULL, &htab_callbacks },
  2227.   { "pte", NULL, &htab_callbacks }, /* yep - uses htab's table */
  2228.   { "stack", NULL, &stack_callbacks },
  2229.   { "load-binary", NULL, &binary_callbacks },
  2230.   { "map-binary", NULL, &binary_callbacks },
  2231.   /* standard OpenBoot devices */
  2232.   { "aliases", NULL, &passthrough_callbacks },
  2233.   { "options", NULL, &passthrough_callbacks },
  2234.   { "chosen", NULL, &passthrough_callbacks },
  2235.   { "packages", NULL, &passthrough_callbacks },
  2236.   { "cpus", NULL, &passthrough_callbacks },
  2237.   { "openprom", NULL, &passthrough_callbacks },
  2238.   { "init", NULL, &passthrough_callbacks },
  2239.   { "trace", NULL, &trace_callbacks },
  2240.   { NULL },
  2241. };
  2242.  
  2243. #endif /* _DEVICE_TABLE_C_ */
  2244.