mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 08:57:58 +00:00
c07919281c
Add some tests of dtoc's functionality to make it easier to expand and enhance the tool. Signed-off-by: Simon Glass <sjg@chromium.org>
23 lines
325 B
Text
23 lines
325 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 = <1>;
|
|
};
|
|
|
|
phandle-source {
|
|
u-boot,dm-pre-reloc;
|
|
compatible = "source";
|
|
clocks = <&phandle 1>;
|
|
};
|
|
};
|