2 * (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2005.
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; either version 2 of the
8 * License, or (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 GNU
13 * 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
24 #include "version_gen.h"
27 * Command line options
29 int quiet
; /* Level of quietness */
30 int reservenum
; /* Number of memory reservation slots */
31 int minsize
; /* Minimum blob size */
32 int padsize
; /* Additional padding to blob */
34 char *join_path(const char *path
, const char *name
)
36 int lenp
= strlen(path
);
37 int lenn
= strlen(name
);
42 len
= lenp
+ lenn
+ 2;
43 if ((lenp
> 0) && (path
[lenp
-1] == '/')) {
49 memcpy(str
, path
, lenp
);
54 memcpy(str
+lenp
, name
, lenn
+1);
58 static void fill_fullpaths(struct node
*tree
, const char *prefix
)
63 tree
->fullpath
= join_path(prefix
, tree
->name
);
65 unit
= strchr(tree
->name
, '@');
67 tree
->basenamelen
= unit
- tree
->name
;
69 tree
->basenamelen
= strlen(tree
->name
);
71 for_each_child(tree
, child
)
72 fill_fullpaths(child
, tree
->fullpath
);
75 static void __attribute__ ((noreturn
)) usage(void)
77 fprintf(stderr
, "Usage:\n");
78 fprintf(stderr
, "\tdtc [options] <input file>\n");
79 fprintf(stderr
, "\nOptions:\n");
80 fprintf(stderr
, "\t-h\n");
81 fprintf(stderr
, "\t\tThis help text\n");
82 fprintf(stderr
, "\t-q\n");
83 fprintf(stderr
, "\t\tQuiet: -q suppress warnings, -qq errors, -qqq all\n");
84 fprintf(stderr
, "\t-I <input format>\n");
85 fprintf(stderr
, "\t\tInput formats are:\n");
86 fprintf(stderr
, "\t\t\tdts - device tree source text\n");
87 fprintf(stderr
, "\t\t\tdtb - device tree blob\n");
88 fprintf(stderr
, "\t\t\tfs - /proc/device-tree style directory\n");
89 fprintf(stderr
, "\t-o <output file>\n");
90 fprintf(stderr
, "\t-O <output format>\n");
91 fprintf(stderr
, "\t\tOutput formats are:\n");
92 fprintf(stderr
, "\t\t\tdts - device tree source text\n");
93 fprintf(stderr
, "\t\t\tdtb - device tree blob\n");
94 fprintf(stderr
, "\t\t\tasm - assembler source\n");
95 fprintf(stderr
, "\t-V <output version>\n");
96 fprintf(stderr
, "\t\tBlob version to produce, defaults to %d (relevant for dtb\n\t\tand asm output only)\n", DEFAULT_FDT_VERSION
);
97 fprintf(stderr
, "\t-R <number>\n");
98 fprintf(stderr
, "\t\tMake space for <number> reserve map entries (relevant for \n\t\tdtb and asm output only)\n");
99 fprintf(stderr
, "\t-S <bytes>\n");
100 fprintf(stderr
, "\t\tMake the blob at least <bytes> long (extra space)\n");
101 fprintf(stderr
, "\t-p <bytes>\n");
102 fprintf(stderr
, "\t\tAdd padding to the blob of <bytes> long (extra space)\n");
103 fprintf(stderr
, "\t-b <number>\n");
104 fprintf(stderr
, "\t\tSet the physical boot cpu\n");
105 fprintf(stderr
, "\t-f\n");
106 fprintf(stderr
, "\t\tForce - try to produce output even if the input tree has errors\n");
107 fprintf(stderr
, "\t-v\n");
108 fprintf(stderr
, "\t\tPrint DTC version and exit\n");
112 int main(int argc
, char *argv
[])
114 struct boot_info
*bi
;
115 const char *inform
= "dts";
116 const char *outform
= "dts";
117 const char *outname
= "-";
118 int force
= 0, check
= 0;
122 int outversion
= DEFAULT_FDT_VERSION
;
123 long long cmdline_boot_cpuid
= -1;
130 while ((opt
= getopt(argc
, argv
, "hI:O:o:V:R:S:p:fcqb:v")) != EOF
) {
142 outversion
= strtol(optarg
, NULL
, 0);
145 reservenum
= strtol(optarg
, NULL
, 0);
148 minsize
= strtol(optarg
, NULL
, 0);
151 padsize
= strtol(optarg
, NULL
, 0);
163 cmdline_boot_cpuid
= strtoll(optarg
, NULL
, 0);
166 printf("Version: %s\n", DTC_VERSION
);
174 if (argc
> (optind
+1))
176 else if (argc
< (optind
+1))
181 /* minsize and padsize are mutually exclusive */
182 if (minsize
&& padsize
)
183 die("Can't set both -p and -S\n");
185 fprintf(stderr
, "DTC: %s->%s on file \"%s\"\n",
186 inform
, outform
, arg
);
188 if (streq(inform
, "dts"))
189 bi
= dt_from_source(arg
);
190 else if (streq(inform
, "fs"))
191 bi
= dt_from_fs(arg
);
192 else if(streq(inform
, "dtb"))
193 bi
= dt_from_blob(arg
);
195 die("Unknown input format \"%s\"\n", inform
);
197 if (cmdline_boot_cpuid
!= -1)
198 bi
->boot_cpuid_phys
= cmdline_boot_cpuid
;
200 fill_fullpaths(bi
->dt
, "");
201 process_checks(force
, bi
);
204 if (streq(outname
, "-")) {
207 outf
= fopen(outname
, "w");
209 die("Couldn't open output file %s: %s\n",
210 outname
, strerror(errno
));
213 if (streq(outform
, "dts")) {
214 dt_to_source(outf
, bi
);
215 } else if (streq(outform
, "dtb")) {
216 dt_to_blob(outf
, bi
, outversion
);
217 } else if (streq(outform
, "asm")) {
218 dt_to_asm(outf
, bi
, outversion
);
219 } else if (streq(outform
, "null")) {
222 die("Unknown output format \"%s\"\n", outform
);