This commit was generated by cvs2svn to track changes on a CVS vendor
[deliverable/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 if (!hw_finished_p (current))
835 hw_finish (current);
836 my_port = hw_port_decode (current, my_port_name, output_port);
837 /* find the dest device and port */
838 dest = split_fill_path (current, dest_hw_name, &dest_spec);
839 if (!hw_finished_p (dest))
840 hw_finish (dest);
841 dest_port = hw_port_decode (dest, dest_port_name,
842 input_port);
843 /* connect the two */
844 hw_port_attach (current,
845 my_port,
846 dest,
847 dest_port,
848 permenant_object);
849 break;
850 }
851 default:
852 hw_abort (current, "unreconised interrupt spec %s\n", spec.value);
853 break;
854 }
855 }
856
857 /* is there a property */
858 if (spec.property != NULL)
859 {
860 if (strcmp (spec.value, "true") == 0)
861 hw_add_boolean_property (current, spec.property, 1);
862 else if (strcmp (spec.value, "false") == 0)
863 hw_add_boolean_property (current, spec.property, 0);
864 else
865 {
866 const struct hw_property *property;
867 switch (spec.value[0])
868 {
869 #if NOT_YET
870 case '*':
871 {
872 parse_ihandle_property (current, spec.property, spec.value + 1);
873 break;
874 }
875 #endif
876 case '[':
877 {
878 unsigned8 words[1024];
879 char *curr = spec.value + 1;
880 int nr_words = 0;
881 while (1)
882 {
883 char *next;
884 words[nr_words] = H2BE_1 (strtoul (curr, &next, 0));
885 if (curr == next)
886 break;
887 curr = next;
888 nr_words += 1;
889 }
890 hw_add_array_property (current, spec.property,
891 words, sizeof(words[0]) * nr_words);
892 break;
893 }
894 case '"':
895 {
896 parse_string_property (current, spec.property, spec.value);
897 break;
898 }
899 case '!':
900 {
901 spec.value++;
902 property = hw_tree_find_property (current, spec.value);
903 if (property == NULL)
904 hw_abort (current, "property %s not found\n", spec.value);
905 hw_add_duplicate_property (current,
906 spec.property,
907 property);
908 break;
909 }
910 default:
911 {
912 if (strcmp (spec.property, "reg") == 0
913 || strcmp (spec.property, "assigned-addresses") == 0
914 || strcmp (spec.property, "alternate-reg") == 0)
915 {
916 parse_reg_property (current, spec.property, spec.value);
917 }
918 else if (strcmp (spec.property, "ranges") == 0)
919 {
920 parse_ranges_property (current, spec.property, spec.value);
921 }
922 else if (isdigit(spec.value[0])
923 || (spec.value[0] == '-' && isdigit(spec.value[1]))
924 || (spec.value[0] == '+' && isdigit(spec.value[1])))
925 {
926 parse_integer_property(current, spec.property, spec.value);
927 }
928 else
929 parse_string_property(current, spec.property, spec.value);
930 break;
931 }
932 }
933 }
934 }
935 return current;
936 }
937
938
939 static void
940 finish_hw_tree (struct hw *me,
941 void *data)
942 {
943 if (!hw_finished_p (me))
944 hw_finish (me);
945 }
946
947 void
948 hw_tree_finish (struct hw *root)
949 {
950 hw_tree_traverse (root, finish_hw_tree, NULL, NULL);
951 }
952
953
954
955 void
956 hw_tree_traverse (struct hw *root,
957 hw_tree_traverse_function *prefix,
958 hw_tree_traverse_function *postfix,
959 void *data)
960 {
961 struct hw *child;
962 if (prefix != NULL)
963 prefix (root, data);
964 for (child = hw_child (root);
965 child != NULL;
966 child = hw_sibling (child))
967 {
968 hw_tree_traverse (child, prefix, postfix, data);
969 }
970 if (postfix != NULL)
971 postfix (root, data);
972 }
973
974
975 static void hw_printf
976 (struct hw *,
977 const char *,
978 ...) __attribute__ ((format (printf, 2, 3)));
979
980 static void
981 hw_printf (struct hw *me,
982 const char *fmt,
983 ...)
984 {
985 va_list ap;
986 va_start (ap, fmt);
987 sim_io_evprintf (hw_system (me), fmt, ap);
988 va_end (ap);
989 }
990
991
992 static void
993 print_address (struct hw *bus,
994 const hw_unit *phys)
995 {
996 char unit[32];
997 hw_unit_encode (bus, phys, unit, sizeof(unit));
998 hw_printf (bus, " %s", unit);
999 }
1000
1001 static void
1002 print_size (struct hw *bus,
1003 const hw_unit *size)
1004 {
1005 int i;
1006 for (i = 0; i < size->nr_cells; i++)
1007 if (size->cells[i] != 0)
1008 break;
1009 if (i < size->nr_cells) {
1010 hw_printf (bus, " 0x%lx", (unsigned long) size->cells[i]);
1011 i++;
1012 for (; i < size->nr_cells; i++)
1013 hw_printf (bus, ",0x%lx", (unsigned long) size->cells[i]);
1014 }
1015 else
1016 hw_printf (bus, " 0");
1017 }
1018
1019 static void
1020 print_reg_property(struct hw *me,
1021 const struct hw_property *property)
1022 {
1023 int reg_nr;
1024 reg_property_spec reg;
1025 for (reg_nr = 0;
1026 hw_find_reg_array_property (me, property->name, reg_nr, &reg);
1027 reg_nr++) {
1028 print_address (hw_parent (me), &reg.address);
1029 print_size (me, &reg.size);
1030 }
1031 }
1032
1033 static void
1034 print_ranges_property(struct hw *me,
1035 const struct hw_property *property)
1036 {
1037 int range_nr;
1038 range_property_spec range;
1039 for (range_nr = 0;
1040 hw_find_range_array_property (me, property->name, range_nr, &range);
1041 range_nr++)
1042 {
1043 print_address (me, &range.child_address);
1044 print_address (hw_parent (me), &range.parent_address);
1045 print_size (me, &range.size);
1046 }
1047 }
1048
1049 static void
1050 print_string (struct hw *me,
1051 const char *string)
1052 {
1053 hw_printf (me, " \"");
1054 while (*string != '\0') {
1055 switch (*string) {
1056 case '"':
1057 hw_printf (me, "\\\"");
1058 break;
1059 case '\\':
1060 hw_printf (me, "\\\\");
1061 break;
1062 default:
1063 hw_printf (me, "%c", *string);
1064 break;
1065 }
1066 string++;
1067 }
1068 hw_printf (me, "\"");
1069 }
1070
1071 static void
1072 print_string_array_property (struct hw *me,
1073 const struct hw_property *property)
1074 {
1075 int nr;
1076 string_property_spec string;
1077 for (nr = 0;
1078 hw_find_string_array_property (me, property->name, nr, &string);
1079 nr++)
1080 {
1081 print_string (me, string);
1082 }
1083 }
1084
1085 static void
1086 print_properties (struct hw *me)
1087 {
1088 const struct hw_property *property;
1089 for (property = hw_find_property (me, NULL);
1090 property != NULL;
1091 property = hw_next_property (property))
1092 {
1093 if (hw_parent (me) == NULL)
1094 hw_printf (me, "/%s", property->name);
1095 else
1096 hw_printf (me, "%s/%s", hw_path (me), property->name);
1097 if (property->original != NULL)
1098 {
1099 hw_printf (me, " !");
1100 hw_printf (me, "%s/%s",
1101 hw_path (property->original->owner),
1102 property->original->name);
1103 }
1104 else
1105 {
1106 switch (property->type)
1107 {
1108 case array_property:
1109 {
1110 if ((property->sizeof_array % sizeof (signed_cell)) == 0)
1111 {
1112 unsigned_cell *w = (unsigned_cell*) property->array;
1113 int cell_nr;
1114 for (cell_nr = 0;
1115 cell_nr < (property->sizeof_array / sizeof (unsigned_cell));
1116 cell_nr++)
1117 {
1118 hw_printf (me, " 0x%lx", (unsigned long) BE2H_cell (w[cell_nr]));
1119 }
1120 }
1121 else
1122 {
1123 unsigned8 *w = (unsigned8*)property->array;
1124 hw_printf (me, " [");
1125 while ((char*)w - (char*)property->array < property->sizeof_array) {
1126 hw_printf (me, " 0x%2x", BE2H_1 (*w));
1127 w++;
1128 }
1129 }
1130 break;
1131 }
1132 case boolean_property:
1133 {
1134 int b = hw_find_boolean_property(me, property->name);
1135 hw_printf (me, " %s", b ? "true" : "false");
1136 break;
1137 }
1138 #if NOT_YET
1139 case ihandle_property:
1140 {
1141 if (property->array != NULL)
1142 {
1143 device_instance *instance = hw_find_ihandle_property (me, property->name);
1144 hw_printf (me, " *%s", device_instance_path(instance));
1145 }
1146 else
1147 {
1148 /* not yet initialized, ask the device for the path */
1149 ihandle_runtime_property_spec spec;
1150 hw_find_ihandle_runtime_property (me, property->name, &spec);
1151 hw_printf (me, " *%s", spec.full_path);
1152 }
1153 break;
1154 }
1155 #endif
1156 case integer_property:
1157 {
1158 unsigned_word w = hw_find_integer_property (me, property->name);
1159 hw_printf (me, " 0x%lx", (unsigned long)w);
1160 break;
1161 }
1162 case range_array_property:
1163 {
1164 print_ranges_property (me, property);
1165 break;
1166 }
1167 case reg_array_property:
1168 {
1169 print_reg_property (me, property);
1170 break;
1171 }
1172 case string_property:
1173 {
1174 const char *s = hw_find_string_property (me, property->name);
1175 print_string (me, s);
1176 break;
1177 }
1178 case string_array_property:
1179 {
1180 print_string_array_property (me, property);
1181 break;
1182 }
1183 }
1184 }
1185 hw_printf (me, "\n");
1186 }
1187 }
1188
1189 static void
1190 print_interrupts (struct hw *me,
1191 int my_port,
1192 struct hw *dest,
1193 int dest_port,
1194 void *ignore_or_null)
1195 {
1196 char src[32];
1197 char dst[32];
1198 hw_port_encode (me, my_port, src, sizeof(src), output_port);
1199 hw_port_encode (dest, dest_port, dst, sizeof(dst), input_port);
1200 hw_printf (me, "%s > %s %s %s\n",
1201 hw_path (me),
1202 src, dst,
1203 hw_path (dest));
1204 }
1205
1206 static void
1207 print_device (struct hw *me,
1208 void *ignore_or_null)
1209 {
1210 hw_printf (me, "%s\n", hw_path (me));
1211 print_properties (me);
1212 hw_port_traverse (me, print_interrupts, NULL);
1213 }
1214
1215 void
1216 hw_tree_print (struct hw *root)
1217 {
1218 hw_tree_traverse (root,
1219 print_device, NULL,
1220 NULL);
1221 }
1222
1223
1224 \f
1225 #if NOT_YET
1226 device_instance *
1227 tree_instance(struct hw *root,
1228 const char *device_specifier)
1229 {
1230 /* find the device node */
1231 struct hw *me;
1232 name_specifier spec;
1233 if (!split_device_specifier(root, device_specifier, &spec))
1234 return NULL;
1235 me = split_find_device(root, &spec);
1236 if (spec.name != NULL)
1237 return NULL;
1238 /* create the instance */
1239 return device_create_instance(me, device_specifier, spec.last_args);
1240 }
1241 #endif
1242
1243 struct hw *
1244 hw_tree_find_device (struct hw *root,
1245 const char *path_to_device)
1246 {
1247 struct hw *node;
1248 name_specifier spec;
1249
1250 /* parse the path */
1251 split_device_specifier (root, path_to_device, &spec);
1252 if (spec.value != NULL)
1253 return NULL; /* something wierd */
1254
1255 /* now find it */
1256 node = split_find_device (root, &spec);
1257 if (spec.name != NULL)
1258 return NULL; /* not a leaf */
1259
1260 return node;
1261 }
1262
1263
1264 const struct hw_property *
1265 hw_tree_find_property (struct hw *root,
1266 const char *path_to_property)
1267 {
1268 name_specifier spec;
1269 if (!split_property_specifier (root, path_to_property, &spec))
1270 hw_abort (root, "Invalid property path %s", path_to_property);
1271 root = split_find_device (root, &spec);
1272 return hw_find_property (root, spec.property);
1273 }
1274
1275 int
1276 hw_tree_find_boolean_property (struct hw *root,
1277 const char *path_to_property)
1278 {
1279 name_specifier spec;
1280 if (!split_property_specifier (root, path_to_property, &spec))
1281 hw_abort (root, "Invalid property path %s", path_to_property);
1282 root = split_find_device (root, &spec);
1283 return hw_find_boolean_property (root, spec.property);
1284 }
1285
1286 signed_cell
1287 hw_tree_find_integer_property (struct hw *root,
1288 const char *path_to_property)
1289 {
1290 name_specifier spec;
1291 if (!split_property_specifier (root, path_to_property, &spec))
1292 hw_abort (root, "Invalid property path %s", path_to_property);
1293 root = split_find_device (root, &spec);
1294 return hw_find_integer_property (root, spec.property);
1295 }
1296
1297 #if NOT_YET
1298 device_instance *
1299 hw_tree_find_ihandle_property (struct hw *root,
1300 const char *path_to_property)
1301 {
1302 name_specifier spec;
1303 if (!split_property_specifier (root, path_to_property, &spec))
1304 hw_abort (root, "Invalid property path %s", path_to_property);
1305 root = split_find_device (root, &spec);
1306 return hw_find_ihandle_property (root, spec.property);
1307 }
1308 #endif
1309
1310 const char *
1311 hw_tree_find_string_property (struct hw *root,
1312 const char *path_to_property)
1313 {
1314 name_specifier spec;
1315 if (!split_property_specifier (root, path_to_property, &spec))
1316 hw_abort (root, "Invalid property path %s", path_to_property);
1317 root = split_find_device (root, &spec);
1318 return hw_find_string_property (root, spec.property);
1319 }
This page took 0.070398 seconds and 5 git commands to generate.