GNU Linux-libre 4.14.332-gnu1
[releases.git] / scripts / dtc / dtx_diff
1 #! /bin/bash
2
3 # Copyright (C) 2015 Frank Rowand
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; version 2 of the License.
8
9
10 usage() {
11
12         # use spaces instead of tabs in the usage message
13         cat >&2 <<eod
14
15 Usage:
16
17    `basename $0` DTx
18         decompile DTx
19
20    `basename $0` DTx_1 DTx_2
21         diff DTx_1 and DTx_2
22
23
24        -f           print full dts in diff (--unified=99999)
25        -h           synonym for --help
26        -help        synonym for --help
27       --help        print this message and exit
28        -s SRCTREE   linux kernel source tree is at path SRCTREE
29                         (default is current directory)
30        -S           linux kernel source tree is at root of current git repo
31        -u           unsorted, do not sort DTx
32
33
34 Each DTx is processed by the dtc compiler to produce a sorted dts source
35 file.  If DTx is a dts source file then it is pre-processed in the same
36 manner as done for the compile of the dts source file in the Linux kernel
37 build system ('#include' and '/include/' directives are processed).
38
39 If two DTx are provided, the resulting dts source files are diffed.
40
41 If DTx is a directory, it is treated as a DT subtree, such as
42   /proc/device-tree.
43
44 If DTx contains the binary blob magic value in the first four bytes,
45   it is treated as a binary blob (aka .dtb or FDT).
46
47 Otherwise DTx is treated as a dts source file (aka .dts).
48
49    If this script is not run from the root of the linux source tree,
50    and DTx utilizes '#include' or '/include/' then the path of the
51    linux source tree can be provided by '-s SRCTREE' or '-S' so that
52    include paths will be set properly.
53
54    The shell variable \${ARCH} must provide the architecture containing
55    the dts source file for include paths to be set properly for '#include'
56    or '/include/' to be processed.
57
58    If DTx_1 and DTx_2 are in different architectures, then this script
59    may not work since \${ARCH} is part of the include path.  The following
60    workaround can be used:
61
62       `basename $0` ARCH=arch_of_dtx_1 DTx_1 >tmp_dtx_1.dts
63       `basename $0` ARCH=arch_of_dtx_2 DTx_2 >tmp_dtx_2.dts
64       `basename $0` tmp_dtx_1.dts tmp_dtx_2.dts
65       rm tmp_dtx_1.dts tmp_dtx_2.dts
66
67    If DTx_1 and DTx_2 are in different directories, then this script will
68    add the path of DTx_1 and DTx_2 to the include paths.  If DTx_2 includes
69    a local file that exists in both the path of DTx_1 and DTx_2 then the
70    file in the path of DTx_1 will incorrectly be included.  Possible
71    workaround:
72
73       `basename $0` DTx_1 >tmp_dtx_1.dts
74       `basename $0` DTx_2 >tmp_dtx_2.dts
75       `basename $0` tmp_dtx_1.dts tmp_dtx_2.dts
76       rm tmp_dtx_1.dts tmp_dtx_2.dts
77
78 eod
79 }
80
81
82 compile_to_dts() {
83
84         dtx="$1"
85         dtc_include="$2"
86
87         if [ -d "${dtx}" ] ; then
88
89                 # -----  input is file tree
90
91                 if ( ! ${DTC} -I fs ${dtx} ) ; then
92                         exit 3
93                 fi
94
95         elif [ -f "${dtx}" ] && [ -r "${dtx}" ] ; then
96
97                 magic=`hexdump -n 4 -e '/1 "%02x"' ${dtx}`
98                 if [ "${magic}" = "d00dfeed" ] ; then
99
100                         # -----  input is FDT (binary blob)
101
102                         if ( ! ${DTC} -I dtb ${dtx} ) ; then
103                                 exit 3
104                         fi
105
106                         return
107
108                 fi
109
110                 # -----  input is DTS (source)
111
112                 if ( cpp ${cpp_flags} -x assembler-with-cpp ${dtx} \
113                         | ${DTC} ${dtc_include} -I dts ) ; then
114                         return
115                 fi
116
117                 echo ""                                                      >&2
118                 echo "Possible hints to resolve the above error:"            >&2
119                 echo "  (hints might not fix the problem)"                   >&2
120
121                 hint_given=0
122
123                 if [ "${ARCH}" = "" ] ; then
124                         hint_given=1
125                         echo ""                                              >&2
126                         echo "  shell variable \$ARCH not set"               >&2
127                 fi
128
129                 dtx_arch=`echo "/${dtx}" | sed -e 's|.*/arch/||' -e 's|/.*||'`
130
131                 if [ "${dtx_arch}" != ""  -a "${dtx_arch}" != "${ARCH}" ] ; then
132                         hint_given=1
133                         echo ""                                              >&2
134                         echo "  architecture ${dtx_arch} is in file path,"   >&2
135                         echo "  but does not match shell variable \$ARCH"    >&2
136                         echo "  >>\$ARCH<< is: >>${ARCH}<<"                  >&2
137                 fi
138
139                 if [ ! -d ${srctree}/arch/${ARCH} ] ; then
140                         hint_given=1
141                         echo ""                                              >&2
142                         echo "  ${srctree}/arch/${ARCH}/ does not exist"     >&2
143                         echo "  Is \$ARCH='${ARCH}' correct?"                >&2
144                         echo "  Possible fix: use '-s' option"               >&2
145
146                         git_root=`git rev-parse --show-toplevel 2>/dev/null`
147                         if [ -d ${git_root}/arch/ ] ; then
148                                 echo "  Possible fix: use '-S' option"       >&2
149                         fi
150                 fi
151
152                 if [ $hint_given = 0 ] ; then
153                         echo ""                                              >&2
154                         echo "  No hints available."                         >&2
155                 fi
156
157                 echo ""                                                      >&2
158
159                 exit 3
160
161         else
162                 echo ""                                                     >&2
163                 echo "ERROR: ${dtx} does not exist or is not readable"      >&2
164                 echo ""                                                     >&2
165                 exit 2
166         fi
167
168 }
169
170
171 # -----  start of script
172
173 cmd_diff=0
174 diff_flags="-u"
175 dtx_file_1=""
176 dtx_file_2=""
177 dtc_sort="-s"
178 help=0
179 srctree=""
180
181
182 while [ $# -gt 0 ] ; do
183
184         case $1 in
185
186         -f )
187                 diff_flags="--unified=999999"
188                 shift
189                 ;;
190
191         -h | -help | --help )
192                 help=1
193                 shift
194                 ;;
195
196         -s )
197                 srctree="$2"
198                 shift 2
199                 ;;
200
201         -S )
202                 git_root=`git rev-parse --show-toplevel 2>/dev/null`
203                 srctree="${git_root}"
204                 shift
205                 ;;
206
207         -u )
208                 dtc_sort=""
209                 shift
210                 ;;
211
212         *)
213                 if [ "${dtx_file_1}"  = "" ] ; then
214                         dtx_file_1="$1"
215                 elif [ "${dtx_file_2}" = "" ] ; then
216                         dtx_file_2="$1"
217                 else
218                         echo ""                                             >&2
219                         echo "ERROR: Unexpected parameter: $1"              >&2
220                         echo ""                                             >&2
221                         exit 2
222                 fi
223                 shift
224                 ;;
225
226         esac
227
228 done
229
230 if [ "${srctree}" = "" ] ; then
231         srctree="."
232 fi
233
234 if [ "${dtx_file_2}" != "" ]; then
235         cmd_diff=1
236 fi
237
238 if (( ${help} )) ; then
239         usage
240         exit 1
241 fi
242
243 # this must follow check for ${help}
244 if [ "${dtx_file_1}" = "" ]; then
245         echo ""                                                             >&2
246         echo "ERROR: parameter DTx required"                                >&2
247         echo ""                                                             >&2
248         exit 2
249 fi
250
251
252 # -----  prefer dtc from linux kernel, allow fallback to dtc in $PATH
253
254 if [ "${KBUILD_OUTPUT:0:2}" = ".." ] ; then
255         __KBUILD_OUTPUT="${srctree}/${KBUILD_OUTPUT}"
256 elif [ "${KBUILD_OUTPUT}" = "" ] ; then
257         __KBUILD_OUTPUT="."
258 else
259         __KBUILD_OUTPUT="${KBUILD_OUTPUT}"
260 fi
261
262 DTC="${__KBUILD_OUTPUT}/scripts/dtc/dtc"
263
264 if [ ! -x ${DTC} ] ; then
265         __DTC="dtc"
266         if grep -q "^CONFIG_DTC=y" ${__KBUILD_OUTPUT}/.config 2>/dev/null; then
267                 make_command='
268          make scripts'
269         else
270                 make_command='
271          Enable CONFIG_DTC in the kernel configuration
272          make scripts'
273         fi
274         if ( ! which ${__DTC} >/dev/null ) ; then
275
276                 # use spaces instead of tabs in the error message
277                 cat >&2 <<eod
278
279 ERROR: unable to find a 'dtc' program
280
281    Preferred 'dtc' (built from Linux kernel source tree) was not found or
282    is not executable.
283
284       'dtc' is: ${DTC}
285
286       If it does not exist, create it from the root of the Linux source tree:
287 ${make_command}
288
289       If not at the root of the Linux kernel source tree -s SRCTREE or -S
290       may need to be specified to find 'dtc'.
291
292       If 'O=\${dir}' is specified in your Linux builds, this script requires
293       'export KBUILD_OUTPUT=\${dir}' or add \${dir}/scripts/dtc to \$PATH
294       before running.
295
296       If \${KBUILD_OUTPUT} is a relative path, then '-s SRCDIR', -S, or run
297       this script from the root of the Linux kernel source tree is required.
298
299    Fallback '${__DTC}' was also not in \${PATH} or is not executable.
300
301 eod
302                 exit 2
303         fi
304         DTC=${__DTC}
305 fi
306
307
308 # -----  cpp and dtc flags same as for linux source tree build of .dtb files,
309 #        plus directories of the dtx file(s)
310
311 dtx_path_1_dtc_include="-i `dirname ${dtx_file_1}`"
312
313 dtx_path_2_dtc_include=""
314 if (( ${cmd_diff} )) ; then
315         dtx_path_2_dtc_include="-i `dirname ${dtx_file_2}`"
316 fi
317
318 cpp_flags="\
319         -nostdinc                                  \
320         -I${srctree}/scripts/dtc/include-prefixes  \
321         -undef -D__DTS__"
322
323 DTC="\
324         ${DTC}                                     \
325         -i ${srctree}/scripts/dtc/include-prefixes \
326         -O dts -qq -f ${dtc_sort} -o -"
327
328
329 # -----  do the diff or decompile
330
331 if (( ${cmd_diff} )) ; then
332
333         diff ${diff_flags} --label "${dtx_file_1}" --label "${dtx_file_2}" \
334                 <(compile_to_dts "${dtx_file_1}" "${dtx_path_1_dtc_include}") \
335                 <(compile_to_dts "${dtx_file_2}" "${dtx_path_2_dtc_include}")
336
337 else
338
339         compile_to_dts "${dtx_file_1}" "${dtx_path_1_dtc_include}"
340
341 fi