1 /* This file is part of the program psim.
3 Copyright (C) 1994-1997, Andrew Cagney <cagney@highland.com.au>
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.
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.
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.
49 /* manipulate/lookup device names */
51 typedef struct _name_specifier
{
52 /* components in the full length name */
72 /* Given a device specifier, break it up into its main components:
73 path (and if present) property name and property value. */
77 split_device_specifier(device
*current
,
78 const char *device_specifier
,
83 /* expand any leading alias if present */
85 && *device_specifier
!= '\0'
86 && *device_specifier
!= '.'
87 && *device_specifier
!= '/') {
88 device
*aliases
= tree_find_device(current
, "/aliases");
91 while (device_specifier
[len
] != '\0'
92 && device_specifier
[len
] != '/'
93 && device_specifier
[len
] != ':'
94 && !isspace(device_specifier
[len
])) {
95 alias
[len
] = device_specifier
[len
];
97 if (len
>= sizeof(alias
))
98 error("split_device_specifier: buffer overflow");
102 && device_find_property(aliases
, alias
)) {
103 strcpy(spec
->buf
, device_find_string_property(aliases
, alias
));
104 strcat(spec
->buf
, device_specifier
+ len
);
107 strcpy(spec
->buf
, device_specifier
);
111 strcpy(spec
->buf
, device_specifier
);
114 /* check no overflow */
115 if (strlen(spec
->buf
) >= sizeof(spec
->buf
))
116 error("split_device_specifier: buffer overflow\n");
118 /* strip leading spaces */
120 while (*chp
!= '\0' && isspace(*chp
))
125 /* find the path and terminate it with null */
127 while (*chp
!= '\0' && !isspace(*chp
))
135 while (*chp
!= '\0' && isspace(*chp
))
139 /* now go back and chop the property off of the path */
140 if (spec
->value
[0] == '\0') {
141 spec
->property
= NULL
; /*not a property*/
144 else if (spec
->value
[0] == '>'
145 || spec
->value
[0] == '<') {
146 /* an interrupt spec */
147 spec
->property
= NULL
;
150 chp
= strrchr(spec
->path
, '/');
152 spec
->property
= spec
->path
;
153 spec
->path
= strchr(spec
->property
, '\0');
157 spec
->property
= chp
+1;
161 /* and mark the rest as invalid */
166 spec
->last_name
= NULL
;
167 spec
->last_base
= NULL
;
168 spec
->last_unit
= NULL
;
169 spec
->last_args
= NULL
;
175 /* given a device specifier break it up into its main components -
176 path and property name - assuming that the last `device' is a
179 STATIC_INLINE_DEVICE\
181 split_property_specifier(device
*current
,
182 const char *property_specifier
,
183 name_specifier
*spec
)
185 if (split_device_specifier(current
, property_specifier
, spec
)) {
186 if (spec
->property
== NULL
) {
187 /* force the last name to be a property name */
188 char *chp
= strrchr(spec
->path
, '/');
190 spec
->property
= spec
->path
;
191 spec
->path
= strrchr(spec
->property
, '\0');;
195 spec
->property
= chp
+1;
205 /* device the next device name and split it up, return 0 when no more
210 split_device_name(name_specifier
*spec
)
213 /* remember what came before */
214 spec
->last_name
= spec
->name
;
215 spec
->last_base
= spec
->base
;
216 spec
->last_unit
= spec
->unit
;
217 spec
->last_args
= spec
->args
;
219 if (spec
->path
[0] == '\0') {
226 /* break the current device spec from the path */
227 spec
->name
= spec
->path
;
228 chp
= strchr(spec
->name
, '/');
230 spec
->path
= strchr(spec
->name
, '\0');
235 /* break out the base */
236 if (spec
->name
[0] == '(') {
237 chp
= strchr(spec
->name
, ')');
239 spec
->base
= spec
->name
;
243 spec
->base
= spec
->name
+ 1;
244 spec
->name
= chp
+ 1;
248 spec
->base
= spec
->name
;
250 /* now break out the unit */
251 chp
= strchr(spec
->name
, '@');
261 /* finally any args */
262 chp
= strchr(chp
, ':');
273 /* device the value, returning the next non-space token */
277 split_value(name_specifier
*spec
)
280 if (spec
->value
== NULL
)
282 /* skip leading white space */
283 while (isspace(spec
->value
[0]))
285 if (spec
->value
[0] == '\0') {
290 /* find trailing space */
291 while (spec
->value
[0] != '\0' && !isspace(spec
->value
[0]))
293 /* chop this value out */
294 if (spec
->value
[0] != '\0') {
295 spec
->value
[0] = '\0';
303 /* traverse the path specified by spec starting at current */
307 split_find_device(device
*current
,
308 name_specifier
*spec
)
310 /* strip off (and process) any leading ., .., ./ and / */
312 if (strncmp(spec
->path
, "/", strlen("/")) == 0) {
314 while (current
!= NULL
&& device_parent(current
) != NULL
)
315 current
= device_parent(current
);
316 spec
->path
+= strlen("/");
318 else if (strncmp(spec
->path
, "./", strlen("./")) == 0) {
321 spec
->path
+= strlen("./");
323 else if (strncmp(spec
->path
, "../", strlen("../")) == 0) {
325 if (current
!= NULL
&& device_parent(current
) != NULL
)
326 current
= device_parent(current
);
327 spec
->path
+= strlen("../");
329 else if (strcmp(spec
->path
, ".") == 0) {
332 spec
->path
+= strlen(".");
334 else if (strcmp(spec
->path
, "..") == 0) {
336 if (current
!= NULL
&& device_parent(current
) != NULL
)
337 current
= device_parent(current
);
338 spec
->path
+= strlen("..");
344 /* now go through the path proper */
346 if (current
== NULL
) {
347 split_device_name(spec
);
351 while (split_device_name(spec
)) {
353 for (child
= device_child(current
);
354 child
!= NULL
; child
= device_sibling(child
)) {
355 if (strcmp(spec
->name
, device_name(child
)) == 0) {
356 if (spec
->unit
== NULL
)
360 device_decode_unit(current
, spec
->unit
, &phys
);
361 if (memcmp(&phys
, device_unit_address(child
),
362 sizeof(device_unit
)) == 0)
368 return current
; /* search failed */
378 split_fill_path(device
*current
,
379 const char *device_specifier
,
380 name_specifier
*spec
)
383 if (!split_device_specifier(current
, device_specifier
, spec
))
384 device_error(current
, "error parsing %s\n", device_specifier
);
386 /* fill our tree with its contents */
387 current
= split_find_device(current
, spec
);
389 /* add any additional devices as needed */
390 if (spec
->name
!= NULL
) {
392 current
= device_create(current
, spec
->base
, spec
->name
,
393 spec
->unit
, spec
->args
);
394 } while (split_device_name(spec
));
403 tree_init(device
*root
,
406 TRACE(trace_device_tree
, ("tree_init(root=0x%lx, system=0x%lx)\n",
409 /* remove the old, rebuild the new */
410 tree_traverse(root
, device_clean
, NULL
, system
);
411 tree_traverse(root
, device_init_static_properties
, NULL
, system
);
412 tree_traverse(root
, device_init_address
, NULL
, system
);
413 tree_traverse(root
, device_init_runtime_properties
, NULL
, system
);
414 tree_traverse(root
, device_init_data
, NULL
, system
);
419 /* <non-white-space> */
423 skip_token(const char *chp
)
425 while (!isspace(*chp
) && *chp
!= '\0')
427 while (isspace(*chp
) && *chp
!= '\0')
433 /* count the number of entries */
437 count_entries(device
*current
,
438 const char *property_name
,
439 const char *property_value
,
442 const char *chp
= property_value
;
444 while (*chp
!= '\0') {
446 chp
= skip_token(chp
);
448 if ((nr_entries
% modulo
) != 0) {
449 device_error(current
, "incorrect number of entries for %s property %s, should be multiple of %d",
450 property_name
, property_value
, modulo
);
452 return nr_entries
/ modulo
;
457 /* parse: <address> ::= <token> ; device dependant */
461 parse_address(device
*current
,
464 device_unit
*address
)
466 if (device_decode_unit(bus
, chp
, address
) < 0)
467 device_error(current
, "invalid unit address in %s", chp
);
468 return skip_token(chp
);
472 /* parse: <size> ::= <number> { "," <number> } ; */
476 parse_size(device
*current
,
483 const char *curr
= chp
;
484 memset(size
, 0, sizeof(*size
));
485 /* parse the numeric list */
486 size
->nr_cells
= device_nr_size_cells(bus
);
490 size
->cells
[nr
] = strtoul(curr
, &next
, 0);
492 device_error(current
, "Problem parsing <size> %s", chp
);
496 if (nr
== size
->nr_cells
)
497 device_error(current
, "Too many values in <size> %s", chp
);
500 ASSERT(nr
> 0 && nr
<= size
->nr_cells
);
501 /* right align the numbers */
502 for (i
= 1; i
<= size
->nr_cells
; i
++) {
504 size
->cells
[size
->nr_cells
- i
] = size
->cells
[nr
- i
];
506 size
->cells
[size
->nr_cells
- i
] = 0;
508 return skip_token(chp
);
512 /* parse: <reg> ::= { <address> <size> } ; */
516 parse_reg_property(device
*current
,
517 const char *property_name
,
518 const char *property_value
)
522 reg_property_spec
*regs
;
525 /* determine the number of reg entries by counting tokens */
526 nr_regs
= count_entries(current
, property_name
, property_value
, 2);
528 /* create working space */
529 regs
= zalloc(nr_regs
* sizeof(*regs
));
532 chp
= property_value
;
533 for (reg_nr
= 0; reg_nr
< nr_regs
; reg_nr
++) {
534 chp
= parse_address(current
, device_parent(current
),
535 chp
, ®s
[reg_nr
].address
);
536 chp
= parse_size(current
, device_parent(current
),
537 chp
, ®s
[reg_nr
].size
);
541 device_add_reg_array_property(current
, property_name
,
548 /* { <child-address> <parent-address> <child-size> }* */
552 parse_ranges_property(device
*current
,
553 const char *property_name
,
554 const char *property_value
)
558 range_property_spec
*ranges
;
561 /* determine the number of ranges specified */
562 nr_ranges
= count_entries(current
, property_name
, property_value
, 3);
564 /* create a property of that size */
565 ranges
= zalloc(nr_ranges
* sizeof(*ranges
));
568 chp
= property_value
;
569 for (range_nr
= 0; range_nr
< nr_ranges
; range_nr
++) {
570 chp
= parse_address(current
, current
,
571 chp
, &ranges
[range_nr
].child_address
);
572 chp
= parse_address(current
, device_parent(current
),
573 chp
, &ranges
[range_nr
].parent_address
);
574 chp
= parse_size(current
, current
,
575 chp
, &ranges
[range_nr
].size
);
579 device_add_range_array_property(current
, property_name
, ranges
, nr_ranges
);
589 parse_integer_property(device
*current
,
590 const char *property_name
,
591 const char *property_value
)
594 unsigned_cell words
[1024];
595 /* integer or integer array? */
599 words
[nr_entries
] = strtoul(property_value
, &end
, 0);
600 if (property_value
== end
)
603 if (nr_entries
* sizeof(words
[0]) >= sizeof(words
))
604 device_error(current
, "buffer overflow");
605 property_value
= end
;
608 device_error(current
, "error parsing integer property %s (%s)",
609 property_name
, property_value
);
610 else if (nr_entries
== 1)
611 device_add_integer_property(current
, property_name
, words
[0]);
614 for (i
= 0; i
< nr_entries
; i
++) {
617 /* perhaphs integer array property is better */
618 device_add_array_property(current
, property_name
, words
,
619 sizeof(words
[0]) * nr_entries
);
628 parse_string_property(device
*current
,
629 const char *property_name
,
630 const char *property_value
)
635 int approx_nr_strings
;
637 /* get an estimate as to the number of strings by counting double
639 approx_nr_strings
= 2;
640 for (chp
= property_value
; *chp
; chp
++) {
644 approx_nr_strings
= (approx_nr_strings
) / 2;
646 /* create a string buffer for that many (plus a null) */
647 strings
= (char**)zalloc((approx_nr_strings
+ 1) * sizeof(char*));
649 /* now find all the strings */
650 chp
= property_value
;
654 /* skip leading space */
655 while (*chp
!= '\0' && isspace(*chp
))
662 /* a quoted string - watch for '\' et.al. */
663 /* estimate the size and allocate space for it */
667 while (chp
[pos
] != '\0' && chp
[pos
] != '"') {
668 if (chp
[pos
] == '\\' && chp
[pos
+1] != '\0')
673 strings
[nr_strings
] = zalloc(pos
+ 1);
674 /* copy the string over */
676 while (*chp
!= '\0' && *chp
!= '"') {
677 if (*chp
== '\\' && *(chp
+1) != '\0') {
678 strings
[nr_strings
][pos
] = *(chp
+1);
683 strings
[nr_strings
][pos
] = *chp
;
690 strings
[nr_strings
][pos
] = '\0';
693 /* copy over a single unquoted token */
695 while (chp
[len
] != '\0' && !isspace(chp
[len
]))
697 strings
[nr_strings
] = zalloc(len
+ 1);
698 strncpy(strings
[nr_strings
], chp
, len
);
699 strings
[nr_strings
][len
] = '\0';
703 if (nr_strings
> approx_nr_strings
)
704 device_error(current
, "String property %s badly formatted",
707 ASSERT(strings
[nr_strings
] == NULL
); /* from zalloc */
711 device_add_string_property(current
, property_name
, "");
712 else if (nr_strings
== 1)
713 device_add_string_property(current
, property_name
, strings
[0]);
715 const char **specs
= (const char**)strings
; /* stop a bogus error */
716 device_add_string_array_property(current
, property_name
,
720 /* flush the created string */
721 while (nr_strings
> 0) {
723 zfree(strings
[nr_strings
]);
729 /* <path-to-ihandle-device> */
733 parse_ihandle_property(device
*current
,
734 const char *property
,
737 ihandle_runtime_property_spec ihandle
;
739 /* pass the full path */
740 ihandle
.full_path
= value
;
742 /* save this ready for the ihandle create */
743 device_add_ihandle_runtime_property(current
, property
,
751 tree_parse(device
*current
,
755 char device_specifier
[1024];
758 /* format the path */
762 vsprintf(device_specifier
, fmt
, ap
);
764 if (strlen(device_specifier
) >= sizeof(device_specifier
))
765 error("device_tree_add_deviced: buffer overflow\n");
768 /* construct the tree down to the final device */
769 current
= split_fill_path(current
, device_specifier
, &spec
);
771 /* is there an interrupt spec */
772 if (spec
.property
== NULL
773 && spec
.value
!= NULL
) {
774 char *op
= split_value(&spec
);
778 char *my_port_name
= split_value(&spec
);
780 char *dest_port_name
= split_value(&spec
);
782 name_specifier dest_spec
;
783 char *dest_device_name
= split_value(&spec
);
786 my_port
= device_interrupt_decode(current
, my_port_name
,
788 /* find the dest device and port */
789 dest
= split_fill_path(current
, dest_device_name
, &dest_spec
);
790 dest_port
= device_interrupt_decode(dest
, dest_port_name
,
792 /* connect the two */
793 device_interrupt_attach(current
,
801 device_error(current
, "unreconised interrupt spec %s\n", spec
.value
);
806 /* is there a property */
807 if (spec
.property
!= NULL
) {
808 if (strcmp(spec
.value
, "true") == 0)
809 device_add_boolean_property(current
, spec
.property
, 1);
810 else if (strcmp(spec
.value
, "false") == 0)
811 device_add_boolean_property(current
, spec
.property
, 0);
813 const device_property
*property
;
814 switch (spec
.value
[0]) {
816 parse_ihandle_property(current
, spec
.property
, spec
.value
+ 1);
820 unsigned8 words
[1024];
821 char *curr
= spec
.value
+ 1;
825 words
[nr_words
] = H2BE_1(strtoul(curr
, &next
, 0));
831 device_add_array_property(current
, spec
.property
,
832 words
, sizeof(words
[0]) * nr_words
);
836 parse_string_property(current
, spec
.property
, spec
.value
);
840 property
= tree_find_property(current
, spec
.value
);
841 if (property
== NULL
)
842 device_error(current
, "property %s not found\n", spec
.value
);
843 device_add_duplicate_property(current
,
848 if (strcmp(spec
.property
, "reg") == 0
849 || strcmp(spec
.property
, "assigned-addresses") == 0
850 || strcmp(spec
.property
, "alternate-reg") == 0){
851 parse_reg_property(current
, spec
.property
, spec
.value
);
853 else if (strcmp(spec
.property
, "ranges") == 0) {
854 parse_ranges_property(current
, spec
.property
, spec
.value
);
856 else if (isdigit(spec
.value
[0])
857 || (spec
.value
[0] == '-' && isdigit(spec
.value
[1]))
858 || (spec
.value
[0] == '+' && isdigit(spec
.value
[1]))) {
859 parse_integer_property(current
, spec
.property
, spec
.value
);
862 parse_string_property(current
, spec
.property
, spec
.value
);
873 tree_traverse(device
*root
,
874 tree_traverse_function
*prefix
,
875 tree_traverse_function
*postfix
,
881 for (child
= device_child(root
);
883 child
= device_sibling(child
)) {
884 tree_traverse(child
, prefix
, postfix
, data
);
893 print_address(device
*bus
,
894 const device_unit
*phys
)
897 device_encode_unit(bus
, phys
, unit
, sizeof(unit
));
898 printf_filtered(" %s", unit
);
903 print_size(device
*bus
,
904 const device_unit
*size
)
907 for (i
= 0; i
< size
->nr_cells
; i
++)
908 if (size
->cells
[i
] != 0)
910 if (i
< size
->nr_cells
) {
911 printf_filtered(" 0x%lx", (unsigned long)size
->cells
[i
]);
913 for (; i
< size
->nr_cells
; i
++)
914 printf_filtered(",0x%lx", (unsigned long)size
->cells
[i
]);
917 printf_filtered(" 0");
922 print_reg_property(device
*me
,
923 const device_property
*property
)
926 reg_property_spec reg
;
928 device_find_reg_array_property(me
, property
->name
, reg_nr
, ®
);
930 print_address(device_parent(me
), ®
.address
);
931 print_size(me
, ®
.size
);
937 print_ranges_property(device
*me
,
938 const device_property
*property
)
941 range_property_spec range
;
943 device_find_range_array_property(me
, property
->name
, range_nr
, &range
);
945 print_address(me
, &range
.child_address
);
946 print_address(device_parent(me
), &range
.parent_address
);
947 print_size(me
, &range
.size
);
953 print_string(const char *string
)
955 printf_filtered(" \"");
956 while (*string
!= '\0') {
959 printf_filtered("\\\"");
962 printf_filtered("\\\\");
965 printf_filtered("%c", *string
);
970 printf_filtered("\"");
975 print_string_array_property(device
*me
,
976 const device_property
*property
)
979 string_property_spec string
;
981 device_find_string_array_property(me
, property
->name
, nr
, &string
);
983 print_string(string
);
989 print_properties(device
*me
)
991 const device_property
*property
;
992 for (property
= device_find_property(me
, NULL
);
994 property
= device_next_property(property
)) {
995 printf_filtered("%s/%s", device_path(me
), property
->name
);
996 if (property
->original
!= NULL
) {
997 printf_filtered(" !");
998 printf_filtered("%s/%s",
999 device_path(property
->original
->owner
),
1000 property
->original
->name
);
1003 switch (property
->type
) {
1004 case array_property
:
1005 if ((property
->sizeof_array
% sizeof(signed_cell
)) == 0) {
1006 unsigned_cell
*w
= (unsigned_cell
*)property
->array
;
1009 cell_nr
< (property
->sizeof_array
/ sizeof(unsigned_cell
));
1011 printf_filtered(" 0x%lx", (unsigned long)BE2H_cell(w
[cell_nr
]));
1015 unsigned8
*w
= (unsigned8
*)property
->array
;
1016 printf_filtered(" [");
1017 while ((char*)w
- (char*)property
->array
< property
->sizeof_array
) {
1018 printf_filtered(" 0x%2x", BE2H_1(*w
));
1023 case boolean_property
:
1025 int b
= device_find_boolean_property(me
, property
->name
);
1026 printf_filtered(" %s", b
? "true" : "false");
1029 case ihandle_property
:
1031 if (property
->array
!= NULL
) {
1032 device_instance
*instance
= device_find_ihandle_property(me
, property
->name
);
1033 printf_filtered(" *%s", device_instance_path(instance
));
1036 /* not yet initialized, ask the device for the path */
1037 ihandle_runtime_property_spec spec
;
1038 device_find_ihandle_runtime_property(me
, property
->name
, &spec
);
1039 printf_filtered(" *%s", spec
.full_path
);
1043 case integer_property
:
1045 unsigned_word w
= device_find_integer_property(me
, property
->name
);
1046 printf_filtered(" 0x%lx", (unsigned long)w
);
1049 case range_array_property
:
1050 print_ranges_property(me
, property
);
1052 case reg_array_property
:
1053 print_reg_property(me
, property
);
1055 case string_property
:
1057 const char *s
= device_find_string_property(me
, property
->name
);
1061 case string_array_property
:
1062 print_string_array_property(me
, property
);
1066 printf_filtered("\n");
1072 print_interrupts(device
*me
,
1076 void *ignore_or_null
)
1080 device_interrupt_encode(me
, my_port
, src
, sizeof(src
), output_port
);
1081 device_interrupt_encode(dest
, dest_port
, dst
, sizeof(dst
), input_port
);
1082 printf_filtered("%s > %s %s %s\n",
1090 print_device(device
*me
,
1091 void *ignore_or_null
)
1093 printf_filtered("%s\n", device_path(me
));
1094 print_properties(me
);
1095 device_interrupt_traverse(me
, print_interrupts
, NULL
);
1100 tree_print(device
*root
)
1110 tree_usage(int verbose
)
1113 printf_filtered("\n");
1114 printf_filtered("A device/property specifier has the form:\n");
1115 printf_filtered("\n");
1116 printf_filtered(" /path/to/a/device [ property-value ]\n");
1117 printf_filtered("\n");
1118 printf_filtered("and a possible device is\n");
1119 printf_filtered("\n");
1122 printf_filtered("\n");
1123 printf_filtered("A device/property specifier (<spec>) has the format:\n");
1124 printf_filtered("\n");
1125 printf_filtered(" <spec> ::= <path> [ <value> ] ;\n");
1126 printf_filtered(" <path> ::= { <prefix> } { <node> \"/\" } <node> ;\n");
1127 printf_filtered(" <prefix> ::= ( | \"/\" | \"../\" | \"./\" ) ;\n");
1128 printf_filtered(" <node> ::= <name> [ \"@\" <unit> ] [ \":\" <args> ] ;\n");
1129 printf_filtered(" <unit> ::= <number> { \",\" <number> } ;\n");
1130 printf_filtered("\n");
1131 printf_filtered("Where:\n");
1132 printf_filtered("\n");
1133 printf_filtered(" <name> is the name of a device (list below)\n");
1134 printf_filtered(" <unit> is the unit-address relative to the parent bus\n");
1135 printf_filtered(" <args> additional arguments used when creating the device\n");
1136 printf_filtered(" <value> ::= ( <number> # integer property\n");
1137 printf_filtered(" | \"[\" { <number> } # array property (byte)\n");
1138 printf_filtered(" | \"{\" { <number> } # array property (cell)\n");
1139 printf_filtered(" | [ \"true\" | \"false\" ] # boolean property\n");
1140 printf_filtered(" | \"*\" <path> # ihandle property\n");
1141 printf_filtered(" | \"!\" <path> # copy property\n");
1142 printf_filtered(" | \">\" [ <number> ] <path> # attach interrupt\n");
1143 printf_filtered(" | \"<\" <path> # attach child interrupt\n");
1144 printf_filtered(" | \"\\\"\" <text> # string property\n");
1145 printf_filtered(" | <text> # string property\n");
1146 printf_filtered(" ) ;\n");
1147 printf_filtered("\n");
1148 printf_filtered("And the following are valid device names:\n");
1149 printf_filtered("\n");
1157 tree_instance(device
*root
,
1158 const char *device_specifier
)
1160 /* find the device node */
1162 name_specifier spec
;
1163 if (!split_device_specifier(root
, device_specifier
, &spec
))
1165 me
= split_find_device(root
, &spec
);
1166 if (spec
.name
!= NULL
)
1168 /* create the instance */
1169 return device_create_instance(me
, device_specifier
, spec
.last_args
);
1175 tree_find_device(device
*root
,
1176 const char *path_to_device
)
1179 name_specifier spec
;
1181 /* parse the path */
1182 split_device_specifier(root
, path_to_device
, &spec
);
1183 if (spec
.value
!= NULL
)
1184 return NULL
; /* something wierd */
1187 node
= split_find_device(root
, &spec
);
1188 if (spec
.name
!= NULL
)
1189 return NULL
; /* not a leaf */
1196 (const device_property
*)
1197 tree_find_property(device
*root
,
1198 const char *path_to_property
)
1200 name_specifier spec
;
1201 if (!split_property_specifier(root
, path_to_property
, &spec
))
1202 device_error(root
, "Invalid property path %s", path_to_property
);
1203 root
= split_find_device(root
, &spec
);
1204 return device_find_property(root
, spec
.property
);
1209 tree_find_boolean_property(device
*root
,
1210 const char *path_to_property
)
1212 name_specifier spec
;
1213 if (!split_property_specifier(root
, path_to_property
, &spec
))
1214 device_error(root
, "Invalid property path %s", path_to_property
);
1215 root
= split_find_device(root
, &spec
);
1216 return device_find_boolean_property(root
, spec
.property
);
1221 tree_find_integer_property(device
*root
,
1222 const char *path_to_property
)
1224 name_specifier spec
;
1225 if (!split_property_specifier(root
, path_to_property
, &spec
))
1226 device_error(root
, "Invalid property path %s", path_to_property
);
1227 root
= split_find_device(root
, &spec
);
1228 return device_find_integer_property(root
, spec
.property
);
1233 tree_find_ihandle_property(device
*root
,
1234 const char *path_to_property
)
1236 name_specifier spec
;
1237 if (!split_property_specifier(root
, path_to_property
, &spec
))
1238 device_error(root
, "Invalid property path %s", path_to_property
);
1239 root
= split_find_device(root
, &spec
);
1240 return device_find_ihandle_property(root
, spec
.property
);
1245 tree_find_string_property(device
*root
,
1246 const char *path_to_property
)
1248 name_specifier spec
;
1249 if (!split_property_specifier(root
, path_to_property
, &spec
))
1250 device_error(root
, "Invalid property path %s", path_to_property
);
1251 root
= split_find_device(root
, &spec
);
1252 return device_find_string_property(root
, spec
.property
);
1256 #endif /* _PARSE_C_ */