mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 03:08:31 +00:00
634eba4be0
At present dtoc has a very simplistic view of phandles. It assumes that a property has only a single phandle with a single argument (i.e. two cells per property). This is not true in many cases. Enhance the implementation to scan all phandles in a property and to use the correct number of arguments (which can be 0, 1, 2 or more) when generating the C code. For the struct definitions, use a struct which can hold the maximum number of arguments used by the property. Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Kever Yang <kever.yang@rock-chips.com>
37 lines
640 B
Text
37 lines
640 B
Text
/*
|
|
* Test device tree file for dtoc
|
|
*
|
|
* Copyright 2017 Google, Inc
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
phandle: phandle-target {
|
|
u-boot,dm-pre-reloc;
|
|
compatible = "target";
|
|
intval = <0>;
|
|
#clock-cells = <0>;
|
|
};
|
|
|
|
phandle_1: phandle2-target {
|
|
u-boot,dm-pre-reloc;
|
|
compatible = "target";
|
|
intval = <1>;
|
|
#clock-cells = <1>;
|
|
};
|
|
phandle_2: phandle3-target {
|
|
u-boot,dm-pre-reloc;
|
|
compatible = "target";
|
|
intval = <2>;
|
|
#clock-cells = <2>;
|
|
};
|
|
|
|
phandle-source {
|
|
u-boot,dm-pre-reloc;
|
|
compatible = "source";
|
|
clocks = <&phandle &phandle_1 11 &phandle_2 12 13 &phandle>;
|
|
};
|
|
};
|