Copy function ../ppc/device_table.c:generic_device_init_address() to
[binutils-gdb.git] / sim / common / hw-tree.c
1 /* This file is part of the program psim.
2
3 Copyright (C) 1994-1998, 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 #include "sim-main.h"
22
23 #include "hw-base.h"
24 #include "hw-tree.h"
25
26 #include "sim-assert.h"
27
28 #ifdef HAVE_STDLIB_H
29 #include <stdlib.h>
30 #endif
31
32 #ifdef HAVE_STRING_H
33 #include <string.h>
34 #else
35 #ifdef HAVE_STRINGS_H
36 #include <strings.h>
37 #endif
38 #endif
39
40 #include <ctype.h>
41
42 /* manipulate/lookup device names */
43
44 typedef struct _name_specifier {
45
46 /* components in the full length name */
47 char *path;
48 char *property;
49 char *value;
50
51 /* current device */
52 char *family;
53 char *name;
54 char *unit;
55 char *args;
56
57 /* previous device */
58 char *last_name;
59 char *last_family;
60 char *last_unit;
61 char *last_args;
62
63 /* work area */
64 char buf[1024];
65
66 } name_specifier;
67
68
69
70 /* Given a device specifier, break it up into its main components:
71 path (and if present) property name and property value. */
72
73 static int
74 split_device_specifier (struct hw *current,
75 const char *device_specifier,
76 name_specifier *spec)
77 {
78 char *chp = NULL;
79
80 /* expand any leading alias if present */
81 if (current != NULL
82 && *device_specifier != '\0'
83 && *device_specifier != '.'
84 && *device_specifier != '/')
85 {
86 struct hw *aliases = hw_tree_find_device (current, "/aliases");
87 char alias[32];
88 int len = 0;
89 while (device_specifier[len] != '\0'
90 && device_specifier[len] != '/'
91 && device_specifier[len] != ':'
92 && !isspace (device_specifier[len]))
93 {
94 alias[len] = device_specifier[len];
95 len++;
96 if (len >= sizeof(alias))
97 hw_abort (NULL, "split_device_specifier: buffer overflow");
98 }
99 alias[len] = '\0';
100 if (aliases != NULL
101 && hw_find_property (aliases, alias))
102 {
103 strcpy (spec->buf, hw_find_string_property(aliases, alias));
104 strcat (spec->buf, device_specifier + len);
105 }
106 else
107 {
108 strcpy (spec->buf, device_specifier);
109 }
110 }
111 else
112 {
113 strcpy(spec->buf, device_specifier);
114 }
115
116 /* check no overflow */
117 if (strlen(spec->buf) >= sizeof(spec->buf))
118 hw_abort (NULL, "split_device_specifier: buffer overflow\n");
119
120 /* strip leading spaces */
121 chp = spec->buf;
122 while (*chp != '\0' && isspace(*chp))
123 chp++;
124 if (*chp == '\0')
125 return 0;
126
127 /* find the path and terminate it with null */
128 spec->path = chp;
129 while (*chp != '\0' && !isspace(*chp))
130 chp++;
131 if (*chp != '\0')
132 {
133 *chp = '\0';
134 chp++;
135 }
136
137 /* and any value */
138 while (*chp != '\0' && isspace(*chp))
139 chp++;
140 spec->value = chp;
141
142 /* now go back and chop the property off of the path */
143 if (spec->value[0] == '\0')
144 {
145 spec->property = NULL; /*not a property*/
146 spec->value = NULL;
147 }
148 else if (spec->value[0] == '>'
149 || spec->value[0] == '<')
150 {
151 /* an interrupt spec */
152 spec->property = NULL;
153 }
154 else {
155 chp = strrchr(spec->path, '/');
156 if (chp == NULL)
157 {
158 spec->property = spec->path;
159 spec->path = strchr(spec->property, '\0');
160 }
161 else {
162 *chp = '\0';
163 spec->property = chp+1;
164 }
165 }
166
167 /* and mark the rest as invalid */
168 spec->name = NULL;
169 spec->family = NULL;
170 spec->unit = NULL;
171 spec->args = NULL;
172 spec->last_name = NULL;
173 spec->last_family = NULL;
174 spec->last_unit = NULL;
175 spec->last_args = NULL;
176
177 return 1;
178 }
179
180
181 /* given a device specifier break it up into its main components -
182 path and property name - assuming that the last `device' is a
183 property name. */
184
185 static int
186 split_property_specifier (struct hw *current,
187 const char *property_specifier,
188 name_specifier *spec)
189 {
190 if (split_device_specifier (current, property_specifier, spec))
191 {
192 if (spec->property == NULL)
193 {
194 /* force the last name to be a property name */
195 char *chp = strrchr (spec->path, '/');
196 if (chp == NULL)
197 {
198 spec->property = spec->path;
199 spec->path = strrchr (spec->property, '\0');;
200 }
201 else
202 {
203 *chp = '\0';
204 spec->property = chp + 1;
205 }
206 }
207 return 1;
208 }
209 else
210 return 0;
211 }
212
213
214 /* device the next device name and split it up, return 0 when no more
215 names to struct hw */
216
217 static int
218 split_device_name (name_specifier *spec)
219 {
220 char *chp;
221 /* remember what came before */
222 spec->last_name = spec->name;
223 spec->last_family = spec->family;
224 spec->last_unit = spec->unit;
225 spec->last_args = spec->args;
226 /* finished? */
227 if (spec->path[0] == '\0')
228 {
229 spec->name = NULL;
230 spec->family = NULL;
231 spec->unit = NULL;
232 spec->args = NULL;
233 return 0;
234 }
235 /* break the current device spec from the path */
236 spec->name = spec->path;
237 chp = strchr (spec->name, '/');
238 if (chp == NULL)
239 spec->path = strchr (spec->name, '\0');
240 else
241 {
242 spec->path = chp+1;
243 *chp = '\0';
244 }
245 /* break out the base */
246 if (spec->name[0] == '(')
247 {
248 chp = strchr(spec->name, ')');
249 if (chp == NULL)
250 {
251 spec->family = spec->name;
252 }
253 else
254 {
255 *chp = '\0';
256 spec->family = spec->name + 1;
257 spec->name = chp + 1;
258 }
259 }
260 else
261 {
262 spec->family = spec->name;
263 }
264 /* now break out the unit */
265 chp = strchr(spec->name, '@');
266 if (chp == NULL)
267 {
268 spec->unit = NULL;
269 chp = spec->name;
270 }
271 else
272 {
273 *chp = '\0';
274 chp += 1;
275 spec->unit = chp;
276 }
277 /* finally any args */
278 chp = strchr(chp, ':');
279 if (chp == NULL)
280 spec->args = NULL;
281 else
282 {
283 *chp = '\0';
284 spec->args = chp+1;
285 }
286 return 1;
287 }
288
289
290 /* device the value, returning the next non-space token */
291
292 static char *
293 split_value (name_specifier *spec)
294 {
295 char *token;
296 if (spec->value == NULL)
297 return NULL;
298 /* skip leading white space */
299 while (isspace (spec->value[0]))
300 spec->value++;
301 if (spec->value[0] == '\0')
302 {
303 spec->value = NULL;
304 return NULL;
305 }
306 token = spec->value;
307 /* find trailing space */
308 while (spec->value[0] != '\0' && !isspace (spec->value[0]))
309 spec->value++;
310 /* chop this value out */
311 if (spec->value[0] != '\0')
312 {
313 spec->value[0] = '\0';
314 spec->value++;
315 }
316 return token;
317 }
318
319
320
321 /* traverse the path specified by spec starting at current */
322
323 static struct hw *
324 split_find_device (struct hw *current,
325 name_specifier *spec)
326 {
327 /* strip off (and process) any leading ., .., ./ and / */
328 while (1)
329 {
330 if (strncmp (spec->path, "/", strlen ("/")) == 0)
331 {
332 /* cd /... */
333 while (current != NULL && hw_parent (current) != NULL)
334 current = hw_parent (current);
335 spec->path += strlen ("/");
336 }
337 else if (strncmp (spec->path, "./", strlen ("./")) == 0)
338 {
339 /* cd ./... */
340 current = current;
341 spec->path += strlen ("./");
342 }
343 else if (strncmp (spec->path, "../", strlen ("../")) == 0)
344 {
345 /* cd ../... */
346 if (current != NULL && hw_parent (current) != NULL)
347 current = hw_parent (current);
348 spec->path += strlen ("../");
349 }
350 else if (strcmp (spec->path, ".") == 0)
351 {
352 /* cd . */
353 current = current;
354 spec->path += strlen (".");
355 }
356 else if (strcmp (spec->path, "..") == 0)
357 {
358 /* cd .. */
359 if (current != NULL && hw_parent (current) != NULL)
360 current = hw_parent (current);
361 spec->path += strlen ("..");
362 }
363 else
364 break;
365 }
366
367 /* now go through the path proper */
368
369 if (current == NULL)
370 {
371 split_device_name (spec);
372 return NULL;
373 }
374
375 while (split_device_name (spec))
376 {
377 struct hw *child;
378 for (child = hw_child (current);
379 child != NULL; child = hw_sibling (child))
380 {
381 if (strcmp (spec->name, hw_name (child)) == 0)
382 {
383 if (spec->unit == NULL)
384 break;
385 else
386 {
387 hw_unit phys;
388 hw_unit_decode (current, spec->unit, &phys);
389 if (memcmp (&phys, hw_unit_address (child),
390 sizeof (hw_unit)) == 0)
391 break;
392 }
393 }
394 }
395 if (child == NULL)
396 return current; /* search failed */
397 current = child;
398 }
399
400 return current;
401 }
402
403
404 static struct hw *
405 split_fill_path (struct hw *current,
406 const char *device_specifier,
407 name_specifier *spec)
408 {
409 /* break it up */
410 if (!split_device_specifier (current, device_specifier, spec))
411 hw_abort (current, "error parsing %s\n", device_specifier);
412
413 /* fill our tree with its contents */
414 current = split_find_device (current, spec);
415
416 /* add any additional devices as needed */
417 if (spec->name != NULL)
418 {
419 do
420 {
421 if (current != NULL && !hw_finished_p (current))
422 hw_finish (current);
423 current = hw_create (NULL,
424 current,
425 spec->family,
426 spec->name,
427 spec->unit,
428 spec->args);
429 }
430 while (split_device_name (spec));
431 }
432
433 return current;
434 }
435
436 \f
437 /* <non-white-space> */
438
439 static const char *
440 skip_token(const char *chp)
441 {
442 while (!isspace(*chp) && *chp != '\0')
443 chp++;
444 while (isspace(*chp) && *chp != '\0')
445 chp++;
446 return chp;
447 }
448
449
450 /* count the number of entries */
451
452 static int
453 count_entries (struct hw *current,
454 const char *property_name,
455 const char *property_value,
456 int modulo)
457 {
458 const char *chp = property_value;
459 int nr_entries = 0;
460 while (*chp != '\0')
461 {
462 nr_entries += 1;
463 chp = skip_token (chp);
464 }
465 if ((nr_entries % modulo) != 0)
466 {
467 hw_abort (current, "incorrect number of entries for %s property %s, should be multiple of %d",
468 property_name, property_value, modulo);
469 }
470 return nr_entries / modulo;
471 }
472
473
474
475 /* parse: <address> ::= <token> ; device dependant */
476
477 static const char *
478 parse_address (struct hw *current,
479 struct hw *bus,
480 const char *chp,
481 hw_unit *address)
482 {
483 if (hw_unit_decode (bus, chp, address) < 0)
484 hw_abort (current, "invalid unit address in %s", chp);
485 return skip_token (chp);
486 }
487
488
489 /* parse: <size> ::= <number> { "," <number> } ; */
490
491 static const char *
492 parse_size (struct hw *current,
493 struct hw *bus,
494 const char *chp,
495 hw_unit *size)
496 {
497 int i;
498 int nr;
499 const char *curr = chp;
500 memset(size, 0, sizeof(*size));
501 /* parse the numeric list */
502 size->nr_cells = hw_unit_nr_size_cells (bus);
503 nr = 0;
504 while (1)
505 {
506 char *next;
507 size->cells[nr] = strtoul (curr, &next, 0);
508 if (curr == next)
509 hw_abort (current, "Problem parsing <size> %s", chp);
510 nr += 1;
511 if (next[0] != ',')
512 break;
513 if (nr == size->nr_cells)
514 hw_abort (current, "Too many values in <size> %s", chp);
515 curr = next + 1;
516 }
517 ASSERT (nr > 0 && nr <= size->nr_cells);
518 /* right align the numbers */
519 for (i = 1; i <= size->nr_cells; i++)
520 {
521 if (i <= nr)
522 size->cells[size->nr_cells - i] = size->cells[nr - i];
523 else
524 size->cells[size->nr_cells - i] = 0;
525 }
526 return skip_token (chp);
527 }
528
529
530 /* parse: <reg> ::= { <address> <size> } ; */
531
532 static void
533 parse_reg_property (struct hw *current,
534 const char *property_name,
535 const char *property_value)
536 {
537 int nr_regs;
538 int reg_nr;
539 reg_property_spec *regs;
540 const char *chp;
541
542 /* determine the number of reg entries by counting tokens */
543 nr_regs = count_entries (current, property_name, property_value, 2);
544
545 /* create working space */
546 regs = zalloc (nr_regs * sizeof (*regs));
547
548 /* fill it in */
549 chp = property_value;
550 for (reg_nr = 0; reg_nr < nr_regs; reg_nr++)
551 {
552 chp = parse_address (current, hw_parent(current),
553 chp, &regs[reg_nr].address);
554 chp = parse_size (current, hw_parent(current),
555 chp, &regs[reg_nr].size);
556 }
557
558 /* create it */
559 hw_add_reg_array_property (current, property_name,
560 regs, nr_regs);
561
562 zfree (regs);
563 }
564
565
566 /* { <child-address> <parent-address> <child-size> }* */
567
568 static void
569 parse_ranges_property (struct hw *current,
570 const char *property_name,
571 const char *property_value)
572 {
573 int nr_ranges;
574 int range_nr;
575 range_property_spec *ranges;
576 const char *chp;
577
578 /* determine the number of ranges specified */
579 nr_ranges = count_entries (current, property_name, property_value, 3);
580
581 /* create a property of that size */
582 ranges = zalloc (nr_ranges * sizeof(*ranges));
583
584 /* fill it in */
585 chp = property_value;
586 for (range_nr = 0; range_nr < nr_ranges; range_nr++)
587 {
588 chp = parse_address (current, current,
589 chp, &ranges[range_nr].child_address);
590 chp = parse_address (current, hw_parent(current),
591 chp, &ranges[range_nr].parent_address);
592 chp = parse_size (current, current,
593 chp, &ranges[range_nr].size);
594 }
595
596 /* create it */
597 hw_add_range_array_property (current, property_name, ranges, nr_ranges);
598
599 zfree (ranges);
600 }
601
602
603 /* <integer> ... */
604
605 static void
606 parse_integer_property (struct hw *current,
607 const char *property_name,
608 const char *property_value)
609 {
610 int nr_entries;
611 unsigned_cell words[1024];
612 /* integer or integer array? */
613 nr_entries = 0;
614 while (1)
615 {
616 char *end;
617 words[nr_entries] = strtoul (property_value, &end, 0);
618 if (property_value == end)
619 break;
620 nr_entries += 1;
621 if (nr_entries * sizeof (words[0]) >= sizeof (words))
622 hw_abort (current, "buffer overflow");
623 property_value = end;
624 }
625 if (nr_entries == 0)
626 hw_abort (current, "error parsing integer property %s (%s)",
627 property_name, property_value);
628 else if (nr_entries == 1)
629 hw_add_integer_property (current, property_name, words[0]);
630 else
631 {
632 int i;
633 for (i = 0; i < nr_entries; i++)
634 {
635 H2BE (words[i]);
636 }
637 /* perhaphs integer array property is better */
638 hw_add_array_property (current, property_name, words,
639 sizeof(words[0]) * nr_entries);
640 }
641 }
642
643
644 /* <string> ... */
645
646 static void
647 parse_string_property (struct hw *current,
648 const char *property_name,
649 const char *property_value)
650 {
651 char **strings;
652 const char *chp;
653 int nr_strings;
654 int approx_nr_strings;
655
656 /* get an estimate as to the number of strings by counting double
657 quotes */
658 approx_nr_strings = 2;
659 for (chp = property_value; *chp; chp++)
660 {
661 if (*chp == '"')
662 approx_nr_strings++;
663 }
664 approx_nr_strings = (approx_nr_strings) / 2;
665
666 /* create a string buffer for that many (plus a null) */
667 strings = (char**) zalloc ((approx_nr_strings + 1) * sizeof(char*));
668
669 /* now find all the strings */
670 chp = property_value;
671 nr_strings = 0;
672 while (1)
673 {
674
675 /* skip leading space */
676 while (*chp != '\0' && isspace (*chp))
677 chp += 1;
678 if (*chp == '\0')
679 break;
680
681 /* copy it in */
682 if (*chp == '"')
683 {
684 /* a quoted string - watch for '\' et.al. */
685 /* estimate the size and allocate space for it */
686 int pos;
687 chp++;
688 pos = 0;
689 while (chp[pos] != '\0' && chp[pos] != '"')
690 {
691 if (chp[pos] == '\\' && chp[pos+1] != '\0')
692 pos += 2;
693 else
694 pos += 1;
695 }
696 strings[nr_strings] = zalloc (pos + 1);
697 /* copy the string over */
698 pos = 0;
699 while (*chp != '\0' && *chp != '"')
700 {
701 if (*chp == '\\' && *(chp+1) != '\0') {
702 strings[nr_strings][pos] = *(chp+1);
703 chp += 2;
704 pos++;
705 }
706 else
707 {
708 strings[nr_strings][pos] = *chp;
709 chp += 1;
710 pos++;
711 }
712 }
713 if (*chp != '\0')
714 chp++;
715 strings[nr_strings][pos] = '\0';
716 }
717 else
718 {
719 /* copy over a single unquoted token */
720 int len = 0;
721 while (chp[len] != '\0' && !isspace(chp[len]))
722 len++;
723 strings[nr_strings] = zalloc(len + 1);
724 strncpy(strings[nr_strings], chp, len);
725 strings[nr_strings][len] = '\0';
726 chp += len;
727 }
728 nr_strings++;
729 if (nr_strings > approx_nr_strings)
730 hw_abort (current, "String property %s badly formatted",
731 property_name);
732 }
733 ASSERT (strings[nr_strings] == NULL); /* from zalloc */
734
735 /* install it */
736 if (nr_strings == 0)
737 hw_add_string_property (current, property_name, "");
738 else if (nr_strings == 1)
739 hw_add_string_property (current, property_name, strings[0]);
740 else
741 {
742 const char **specs = (const char**) strings; /* stop a bogus error */
743 hw_add_string_array_property (current, property_name,
744 specs, nr_strings);
745 }
746
747 /* flush the created string */
748 while (nr_strings > 0)
749 {
750 nr_strings--;
751 zfree (strings[nr_strings]);
752 }
753 zfree(strings);
754 }
755
756
757 /* <path-to-ihandle-device> */
758
759 #if NOT_YET
760 static void
761 parse_ihandle_property (struct hw *current,
762 const char *property,
763 const char *value)
764 {
765 ihandle_runtime_property_spec ihandle;
766
767 /* pass the full path */
768 ihandle.full_path = value;
769
770 /* save this ready for the ihandle create */
771 hw_add_ihandle_runtime_property (current, property,
772 &ihandle);
773 }
774 #endif
775
776
777 struct hw *
778 hw_tree_create (SIM_DESC sd,
779 const char *family)
780 {
781 return hw_create (sd, NULL, family, family, NULL, NULL);
782 }
783
784 void
785 hw_tree_delete (struct hw *me)
786 {
787 /* Need to allow devices to disapear under our feet */
788 while (hw_child (me) != NULL)
789 {
790 hw_tree_delete (hw_child (me));
791 }
792 hw_delete (me);
793 }
794
795
796 struct hw *
797 hw_tree_parse (struct hw *current,
798 const char *fmt,
799 ...)
800 {
801 char device_specifier[1024];
802 name_specifier spec;
803
804 /* format the path */
805 {
806 va_list ap;
807 va_start (ap, fmt);
808 vsprintf (device_specifier, fmt, ap);
809 va_end (ap);
810 if (strlen (device_specifier) >= sizeof (device_specifier))
811 hw_abort (NULL, "device_tree_add_deviced: buffer overflow\n");
812 }
813
814 /* construct the tree down to the final struct hw */
815 current = split_fill_path (current, device_specifier, &spec);
816
817 /* is there an interrupt spec */
818 if (spec.property == NULL
819 && spec.value != NULL)
820 {
821 char *op = split_value (&spec);
822 switch (op[0])
823 {
824 case '>':
825 {
826 char *my_port_name = split_value (&spec);
827 int my_port;
828 char *dest_port_name = split_value (&spec);
829 int dest_port;
830 name_specifier dest_spec;
831 char *dest_hw_name = split_value (&spec);
832 struct hw *dest;
833 /* find my name */
834 my_port = hw_port_decode (current, my_port_name,
835 output_port);
836 /* find the dest device and port */
837 dest = split_fill_path(current, dest_hw_name, &dest_spec);
838 dest_port = hw_port_decode (dest, dest_port_name,
839 input_port);
840 /* connect the two */
841 hw_port_attach (current,
842 my_port,
843 dest,
844 dest_port,
845 permenant_object);
846 break;
847 }
848 default:
849 hw_abort (current, "unreconised interrupt spec %s\n", spec.value);
850 break;
851 }
852 }
853
854 /* is there a property */
855 if (spec.property != NULL)
856 {
857 if (strcmp (spec.value, "true") == 0)
858 hw_add_boolean_property (current, spec.property, 1);
859 else if (strcmp (spec.value, "false") == 0)
860 hw_add_boolean_property (current, spec.property, 0);
861 else
862 {
863 const struct hw_property *property;
864 switch (spec.value[0])
865 {
866 #if NOT_YET
867 case '*':
868 {
869 parse_ihandle_property (current, spec.property, spec.value + 1);
870 break;
871 }
872 #endif
873 case '[':
874 {
875 unsigned8 words[1024];
876 char *curr = spec.value + 1;
877 int nr_words = 0;
878 while (1)
879 {
880 char *next;
881 words[nr_words] = H2BE_1 (strtoul (curr, &next, 0));
882 if (curr == next)
883 break;
884 curr = next;
885 nr_words += 1;
886 }
887 hw_add_array_property (current, spec.property,
888 words, sizeof(words[0]) * nr_words);
889 break;
890 }
891 case '"':
892 {
893 parse_string_property (current, spec.property, spec.value);
894 break;
895 }
896 case '!':
897 {
898 spec.value++;
899 property = hw_tree_find_property (current, spec.value);
900 if (property == NULL)
901 hw_abort (current, "property %s not found\n", spec.value);
902 hw_add_duplicate_property (current,
903 spec.property,
904 property);
905 break;
906 }
907 default:
908 {
909 if (strcmp (spec.property, "reg") == 0
910 || strcmp (spec.property, "assigned-addresses") == 0
911 || strcmp (spec.property, "alternate-reg") == 0)
912 {
913 parse_reg_property (current, spec.property, spec.value);
914 }
915 else if (strcmp (spec.property, "ranges") == 0)
916 {
917 parse_ranges_property (current, spec.property, spec.value);
918 }
919 else if (isdigit(spec.value[0])
920 || (spec.value[0] == '-' && isdigit(spec.value[1]))
921 || (spec.value[0] == '+' && isdigit(spec.value[1])))
922 {
923 parse_integer_property(current, spec.property, spec.value);
924 }
925 else
926 parse_string_property(current, spec.property, spec.value);
927 break;
928 }
929 }
930 }
931 }
932 return current;
933 }
934
935
936 static void
937 finish_hw_tree (struct hw *me,
938 void *data)
939 {
940 if (!hw_finished_p (me))
941 hw_finish (me);
942 }
943
944 void
945 hw_tree_finish (struct hw *root)
946 {
947 hw_tree_traverse (root, finish_hw_tree, NULL, NULL);
948 }
949
950
951
952 void
953 hw_tree_traverse (struct hw *root,
954 hw_tree_traverse_function *prefix,
955 hw_tree_traverse_function *postfix,
956 void *data)
957 {
958 struct hw *child;
959 if (prefix != NULL)
960 prefix (root, data);
961 for (child = hw_child (root);
962 child != NULL;
963 child = hw_sibling (child))
964 {
965 hw_tree_traverse (child, prefix, postfix, data);
966 }
967 if (postfix != NULL)
968 postfix (root, data);
969 }
970
971
972 static void hw_printf
973 (struct hw *,
974 const char *,
975 ...) __attribute__ ((format (printf, 2, 3)));
976
977 static void
978 hw_printf (struct hw *me,
979 const char *fmt,
980 ...)
981 {
982 va_list ap;
983 va_start (ap, fmt);
984 sim_io_vprintf (hw_system (me), fmt, ap);
985 va_end (ap);
986 }
987
988
989 static void
990 print_address (struct hw *bus,
991 const hw_unit *phys)
992 {
993 char unit[32];
994 hw_unit_encode (bus, phys, unit, sizeof(unit));
995 hw_printf (bus, " %s", unit);
996 }
997
998 static void
999 print_size (struct hw *bus,
1000 const hw_unit *size)
1001 {
1002 int i;
1003 for (i = 0; i < size->nr_cells; i++)
1004 if (size->cells[i] != 0)
1005 break;
1006 if (i < size->nr_cells) {
1007 hw_printf (bus, " 0x%lx", (unsigned long) size->cells[i]);
1008 i++;
1009 for (; i < size->nr_cells; i++)
1010 hw_printf (bus, ",0x%lx", (unsigned long) size->cells[i]);
1011 }
1012 else
1013 hw_printf (bus, " 0");
1014 }
1015
1016 static void
1017 print_reg_property(struct hw *me,
1018 const struct hw_property *property)
1019 {
1020 int reg_nr;
1021 reg_property_spec reg;
1022 for (reg_nr = 0;
1023 hw_find_reg_array_property (me, property->name, reg_nr, &reg);
1024 reg_nr++) {
1025 print_address (hw_parent (me), &reg.address);
1026 print_size (me, &reg.size);
1027 }
1028 }
1029
1030 static void
1031 print_ranges_property(struct hw *me,
1032 const struct hw_property *property)
1033 {
1034 int range_nr;
1035 range_property_spec range;
1036 for (range_nr = 0;
1037 hw_find_range_array_property (me, property->name, range_nr, &range);
1038 range_nr++)
1039 {
1040 print_address (me, &range.child_address);
1041 print_address (hw_parent (me), &range.parent_address);
1042 print_size (me, &range.size);
1043 }
1044 }
1045
1046 static void
1047 print_string (struct hw *me,
1048 const char *string)
1049 {
1050 hw_printf (me, " \"");
1051 while (*string != '\0') {
1052 switch (*string) {
1053 case '"':
1054 hw_printf (me, "\\\"");
1055 break;
1056 case '\\':
1057 hw_printf (me, "\\\\");
1058 break;
1059 default:
1060 hw_printf (me, "%c", *string);
1061 break;
1062 }
1063 string++;
1064 }
1065 hw_printf (me, "\"");
1066 }
1067
1068 static void
1069 print_string_array_property (struct hw *me,
1070 const struct hw_property *property)
1071 {
1072 int nr;
1073 string_property_spec string;
1074 for (nr = 0;
1075 hw_find_string_array_property (me, property->name, nr, &string);
1076 nr++)
1077 {
1078 print_string (me, string);
1079 }
1080 }
1081
1082 static void
1083 print_properties (struct hw *me)
1084 {
1085 const struct hw_property *property;
1086 for (property = hw_find_property (me, NULL);
1087 property != NULL;
1088 property = hw_next_property (property))
1089 {
1090 if (hw_parent (me) == NULL)
1091 hw_printf (me, "/%s", property->name);
1092 else
1093 hw_printf (me, "%s/%s", hw_path (me), property->name);
1094 if (property->original != NULL)
1095 {
1096 hw_printf (me, " !");
1097 hw_printf (me, "%s/%s",
1098 hw_path (property->original->owner),
1099 property->original->name);
1100 }
1101 else
1102 {
1103 switch (property->type)
1104 {
1105 case array_property:
1106 {
1107 if ((property->sizeof_array % sizeof (signed_cell)) == 0)
1108 {
1109 unsigned_cell *w = (unsigned_cell*) property->array;
1110 int cell_nr;
1111 for (cell_nr = 0;
1112 cell_nr < (property->sizeof_array / sizeof (unsigned_cell));
1113 cell_nr++)
1114 {
1115 hw_printf (me, " 0x%lx", (unsigned long) BE2H_cell (w[cell_nr]));
1116 }
1117 }
1118 else
1119 {
1120 unsigned8 *w = (unsigned8*)property->array;
1121 hw_printf (me, " [");
1122 while ((char*)w - (char*)property->array < property->sizeof_array) {
1123 hw_printf (me, " 0x%2x", BE2H_1 (*w));
1124 w++;
1125 }
1126 }
1127 break;
1128 }
1129 case boolean_property:
1130 {
1131 int b = hw_find_boolean_property(me, property->name);
1132 hw_printf (me, " %s", b ? "true" : "false");
1133 break;
1134 }
1135 #if NOT_YET
1136 case ihandle_property:
1137 {
1138 if (property->array != NULL)
1139 {
1140 device_instance *instance = hw_find_ihandle_property (me, property->name);
1141 hw_printf (me, " *%s", device_instance_path(instance));
1142 }
1143 else
1144 {
1145 /* not yet initialized, ask the device for the path */
1146 ihandle_runtime_property_spec spec;
1147 hw_find_ihandle_runtime_property (me, property->name, &spec);
1148 hw_printf (me, " *%s", spec.full_path);
1149 }
1150 break;
1151 }
1152 #endif
1153 case integer_property:
1154 {
1155 unsigned_word w = hw_find_integer_property (me, property->name);
1156 hw_printf (me, " 0x%lx", (unsigned long)w);
1157 break;
1158 }
1159 case range_array_property:
1160 {
1161 print_ranges_property (me, property);
1162 break;
1163 }
1164 case reg_array_property:
1165 {
1166 print_reg_property (me, property);
1167 break;
1168 }
1169 case string_property:
1170 {
1171 const char *s = hw_find_string_property (me, property->name);
1172 print_string (me, s);
1173 break;
1174 }
1175 case string_array_property:
1176 {
1177 print_string_array_property (me, property);
1178 break;
1179 }
1180 }
1181 }
1182 hw_printf (me, "\n");
1183 }
1184 }
1185
1186 static void
1187 print_interrupts (struct hw *me,
1188 int my_port,
1189 struct hw *dest,
1190 int dest_port,
1191 void *ignore_or_null)
1192 {
1193 char src[32];
1194 char dst[32];
1195 hw_port_encode (me, my_port, src, sizeof(src), output_port);
1196 hw_port_encode (dest, dest_port, dst, sizeof(dst), input_port);
1197 hw_printf (me, "%s > %s %s %s\n",
1198 hw_path (me),
1199 src, dst,
1200 hw_path (dest));
1201 }
1202
1203 static void
1204 print_device (struct hw *me,
1205 void *ignore_or_null)
1206 {
1207 hw_printf (me, "%s\n", hw_path (me));
1208 print_properties (me);
1209 hw_port_traverse (me, print_interrupts, NULL);
1210 }
1211
1212 void
1213 hw_tree_print (struct hw *root)
1214 {
1215 hw_tree_traverse (root,
1216 print_device, NULL,
1217 NULL);
1218 }
1219
1220
1221 \f
1222 #if NOT_YET
1223 device_instance *
1224 tree_instance(struct hw *root,
1225 const char *device_specifier)
1226 {
1227 /* find the device node */
1228 struct hw *me;
1229 name_specifier spec;
1230 if (!split_device_specifier(root, device_specifier, &spec))
1231 return NULL;
1232 me = split_find_device(root, &spec);
1233 if (spec.name != NULL)
1234 return NULL;
1235 /* create the instance */
1236 return device_create_instance(me, device_specifier, spec.last_args);
1237 }
1238 #endif
1239
1240 struct hw *
1241 hw_tree_find_device (struct hw *root,
1242 const char *path_to_device)
1243 {
1244 struct hw *node;
1245 name_specifier spec;
1246
1247 /* parse the path */
1248 split_device_specifier (root, path_to_device, &spec);
1249 if (spec.value != NULL)
1250 return NULL; /* something wierd */
1251
1252 /* now find it */
1253 node = split_find_device (root, &spec);
1254 if (spec.name != NULL)
1255 return NULL; /* not a leaf */
1256
1257 return node;
1258 }
1259
1260
1261 const struct hw_property *
1262 hw_tree_find_property (struct hw *root,
1263 const char *path_to_property)
1264 {
1265 name_specifier spec;
1266 if (!split_property_specifier (root, path_to_property, &spec))
1267 hw_abort (root, "Invalid property path %s", path_to_property);
1268 root = split_find_device (root, &spec);
1269 return hw_find_property (root, spec.property);
1270 }
1271
1272 int
1273 hw_tree_find_boolean_property (struct hw *root,
1274 const char *path_to_property)
1275 {
1276 name_specifier spec;
1277 if (!split_property_specifier (root, path_to_property, &spec))
1278 hw_abort (root, "Invalid property path %s", path_to_property);
1279 root = split_find_device (root, &spec);
1280 return hw_find_boolean_property (root, spec.property);
1281 }
1282
1283 signed_cell
1284 hw_tree_find_integer_property (struct hw *root,
1285 const char *path_to_property)
1286 {
1287 name_specifier spec;
1288 if (!split_property_specifier (root, path_to_property, &spec))
1289 hw_abort (root, "Invalid property path %s", path_to_property);
1290 root = split_find_device (root, &spec);
1291 return hw_find_integer_property (root, spec.property);
1292 }
1293
1294 #if NOT_YET
1295 device_instance *
1296 hw_tree_find_ihandle_property (struct hw *root,
1297 const char *path_to_property)
1298 {
1299 name_specifier spec;
1300 if (!split_property_specifier (root, path_to_property, &spec))
1301 hw_abort (root, "Invalid property path %s", path_to_property);
1302 root = split_find_device (root, &spec);
1303 return hw_find_ihandle_property (root, spec.property);
1304 }
1305 #endif
1306
1307 const char *
1308 hw_tree_find_string_property (struct hw *root,
1309 const char *path_to_property)
1310 {
1311 name_specifier spec;
1312 if (!split_property_specifier (root, path_to_property, &spec))
1313 hw_abort (root, "Invalid property path %s", path_to_property);
1314 root = split_find_device (root, &spec);
1315 return hw_find_string_property (root, spec.property);
1316 }