[sashal-linux-stable:queue-4.14 85/88] kernel/events/core.c:3097:13: error: redefinition of 'perf_pmu_sched_task'
by kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/sashal/linux-stable.git queue-4.14
head: 06183267f775415473f3288b24f8754974708b13
commit: dc49b711dd1e8bf56dc312b6e224ca9f71fb94a5 [85/88] perf/core: Flush PMU internal buffers for per-CPU events
config: x86_64-randconfig-a016-20210315 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project a28facba1ccdc957f386b7753f4958307f1bfde8)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install x86_64 cross compiling tool for clang build
# apt-get install binutils-x86-64-linux-gnu
# https://git.kernel.org/pub/scm/linux/kernel/git/sashal/linux-stable.git/c...
git remote add sashal-linux-stable https://git.kernel.org/pub/scm/linux/kernel/git/sashal/linux-stable.git
git fetch --no-tags sashal-linux-stable queue-4.14
git checkout dc49b711dd1e8bf56dc312b6e224ca9f71fb94a5
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=x86_64
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
>> kernel/events/core.c:3097:13: error: redefinition of 'perf_pmu_sched_task'
static void perf_pmu_sched_task(struct task_struct *prev,
^
kernel/events/core.c:3071:13: note: previous definition is here
static void perf_pmu_sched_task(struct task_struct *prev,
^
>> kernel/events/core.c:3111:3: error: implicit declaration of function '__perf_pmu_sched_task' [-Werror,-Wimplicit-function-declaration]
__perf_pmu_sched_task(cpuctx, sched_in);
^
kernel/events/core.c:3111:3: note: did you mean 'perf_pmu_sched_task'?
kernel/events/core.c:3097:13: note: 'perf_pmu_sched_task' declared here
static void perf_pmu_sched_task(struct task_struct *prev,
^
kernel/events/core.c:5009:13: warning: no previous prototype for function 'arch_perf_update_userpage' [-Wmissing-prototypes]
void __weak arch_perf_update_userpage(
^
kernel/events/core.c:5009:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void __weak arch_perf_update_userpage(
^
static
kernel/events/core.c:11201:6: warning: no previous prototype for function 'perf_swevent_init_cpu' [-Wmissing-prototypes]
void perf_swevent_init_cpu(unsigned int cpu)
^
kernel/events/core.c:11201:1: note: declare 'static' if the function is not intended to be used outside of this translation unit
void perf_swevent_init_cpu(unsigned int cpu)
^
static
2 warnings and 2 errors generated.
vim +/perf_pmu_sched_task +3097 kernel/events/core.c
3096
> 3097 static void perf_pmu_sched_task(struct task_struct *prev,
3098 struct task_struct *next,
3099 bool sched_in)
3100 {
3101 struct perf_cpu_context *cpuctx;
3102
3103 if (prev == next)
3104 return;
3105
3106 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
3107 /* will be handled in perf_event_context_sched_in/out */
3108 if (cpuctx->task_ctx)
3109 continue;
3110
> 3111 __perf_pmu_sched_task(cpuctx, sched_in);
3112 }
3113 }
3114
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 6 months
[sashal-linux-stable:queue-5.4 169/174] kernel/events/core.c:3304:13: error: redefinition of 'perf_pmu_sched_task'
by kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/sashal/linux-stable.git queue-5.4
head: 1aa393e1b468d93c753bf778b182e034839a9b0f
commit: ca555f5a71abac01e56232dd7526b1e97b5a10e3 [169/174] perf/core: Flush PMU internal buffers for per-CPU events
config: i386-randconfig-m021-20210315 (attached as .config)
compiler: gcc-9 (Debian 9.3.0-22) 9.3.0
reproduce (this is a W=1 build):
# https://git.kernel.org/pub/scm/linux/kernel/git/sashal/linux-stable.git/c...
git remote add sashal-linux-stable https://git.kernel.org/pub/scm/linux/kernel/git/sashal/linux-stable.git
git fetch --no-tags sashal-linux-stable queue-5.4
git checkout ca555f5a71abac01e56232dd7526b1e97b5a10e3
# save the attached .config to linux build tree
make W=1 ARCH=i386
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
>> kernel/events/core.c:3304:13: error: redefinition of 'perf_pmu_sched_task'
3304 | static void perf_pmu_sched_task(struct task_struct *prev,
| ^~~~~~~~~~~~~~~~~~~
kernel/events/core.c:3278:13: note: previous definition of 'perf_pmu_sched_task' was here
3278 | static void perf_pmu_sched_task(struct task_struct *prev,
| ^~~~~~~~~~~~~~~~~~~
kernel/events/core.c: In function 'perf_pmu_sched_task':
>> kernel/events/core.c:3318:3: error: implicit declaration of function '__perf_pmu_sched_task'; did you mean 'perf_pmu_sched_task'? [-Werror=implicit-function-declaration]
3318 | __perf_pmu_sched_task(cpuctx, sched_in);
| ^~~~~~~~~~~~~~~~~~~~~
| perf_pmu_sched_task
kernel/events/core.c: At top level:
kernel/events/core.c:5397:13: warning: no previous prototype for 'arch_perf_update_userpage' [-Wmissing-prototypes]
5397 | void __weak arch_perf_update_userpage(
| ^~~~~~~~~~~~~~~~~~~~~~~~~
kernel/events/core.c:3278:13: warning: 'perf_pmu_sched_task' defined but not used [-Wunused-function]
3278 | static void perf_pmu_sched_task(struct task_struct *prev,
| ^~~~~~~~~~~~~~~~~~~
cc1: some warnings being treated as errors
vim +/perf_pmu_sched_task +3304 kernel/events/core.c
3303
> 3304 static void perf_pmu_sched_task(struct task_struct *prev,
3305 struct task_struct *next,
3306 bool sched_in)
3307 {
3308 struct perf_cpu_context *cpuctx;
3309
3310 if (prev == next)
3311 return;
3312
3313 list_for_each_entry(cpuctx, this_cpu_ptr(&sched_cb_list), sched_cb_entry) {
3314 /* will be handled in perf_event_context_sched_in/out */
3315 if (cpuctx->task_ctx)
3316 continue;
3317
> 3318 __perf_pmu_sched_task(cpuctx, sched_in);
3319 }
3320 }
3321
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 6 months
clang-13: error: unsupported option '-fpatchable-function-entry=8' for target 'riscv64-unknown-linux-gnu'
by kernel test robot
CC: linux-kernel(a)vger.kernel.org
TO: Guo Ren <guoren(a)linux.alibaba.com>
CC: Palmer Dabbelt <palmerdabbelt(a)google.com>
Hi Guo,
FYI, the error/warning still remains.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 1e28eed17697bcf343c6743f0028cc3b5dd88bf0
commit: afc76b8b80112189b6f11e67e19cf58301944814 riscv: Using PATCHABLE_FUNCTION_ENTRY instead of MCOUNT
date: 8 weeks ago
config: riscv-randconfig-r011-20210315 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 7ee96429a0b057bcc97331a6a762fc3cd00aed61)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install riscv cross compiling tool for clang build
# apt-get install binutils-riscv64-linux-gnu
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit...
git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
git fetch --no-tags linus master
git checkout afc76b8b80112189b6f11e67e19cf58301944814
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=riscv
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>):
>> clang-13: error: unsupported option '-fpatchable-function-entry=8' for target 'riscv64-unknown-linux-gnu'
--
>> clang-13: error: unsupported option '-fpatchable-function-entry=8' for target 'riscv64-unknown-linux-gnu'
>> clang-13: error: unsupported option '-fpatchable-function-entry=8' for target 'riscv64-unknown-linux-gnu'
make[2]: *** [scripts/Makefile.build:117: scripts/mod/devicetable-offsets.s] Error 1
make[2]: *** [scripts/Makefile.build:279: scripts/mod/empty.o] Error 1
make[2]: Target '__build' not remade because of errors.
make[1]: *** [Makefile:1205: prepare0] Error 2
make[1]: Target 'modules_prepare' not remade because of errors.
make: *** [Makefile:185: __sub-make] Error 2
make: Target 'modules_prepare' not remade because of errors.
--
>> clang-13: error: unsupported option '-fpatchable-function-entry=8' for target 'riscv64-unknown-linux-gnu'
>> clang-13: error: unsupported option '-fpatchable-function-entry=8' for target 'riscv64-unknown-linux-gnu'
make[2]: *** [scripts/Makefile.build:279: scripts/mod/empty.o] Error 1
make[2]: *** [scripts/Makefile.build:117: scripts/mod/devicetable-offsets.s] Error 1
make[2]: Target '__build' not remade because of errors.
make[1]: *** [Makefile:1205: prepare0] Error 2
make[1]: Target 'prepare' not remade because of errors.
make: *** [Makefile:185: __sub-make] Error 2
make: Target 'prepare' not remade because of errors.
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 6 months
ERROR: modpost: "__aeabi_unwind_cpp_pr0" undefined!
by kernel test robot
Hi Roderick,
First bad commit (maybe != root cause):
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 1e28eed17697bcf343c6743f0028cc3b5dd88bf0
commit: bc2e15a9a0228b10fece576d4f6a974c002ff07b HID: playstation: initial DualSense USB support.
date: 4 weeks ago
config: arm-randconfig-r024-20210314 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project dfd27ebbd0eb137c9a439b7c537bb87ba903efd3)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install arm cross compiling tool for clang build
# apt-get install binutils-arm-linux-gnueabi
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit...
git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
git fetch --no-tags linus master
git checkout bc2e15a9a0228b10fece576d4f6a974c002ff07b
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=arm
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All errors (new ones prefixed by >>, old ones prefixed by <<):
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7793.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7791.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7780.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7768-1.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7606.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7606_spi.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7606_par.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7476.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7298.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7292.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7291.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7192.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7124.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7091r-base.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad7091r5.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/adc/ad_sigma_delta.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/ssp_accel_sensor.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/stk8ba50.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/stk8312.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/mxc4005.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/mma9553.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/mma9551.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/mma9551_core.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/mma7660.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/mma7455_spi.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/mma7455_i2c.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/mma7455_core.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/mc3230.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/kxsd9.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/kxcjk-1013.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/hid-sensor-accel-3d.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/dmard10.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/dmard09.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/da280.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/bmc150-accel-spi.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/bmc150-accel-i2c.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/bmc150-accel-core.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/bma220_spi.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/bma180.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/adxl345_spi.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/adxl345_i2c.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/adxl345_core.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/iio/accel/adis16209.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/rpmsg/virtio_rpmsg_bus.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/rpmsg/qcom_glink_rpm.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/rpmsg/qcom_glink.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/rpmsg/rpmsg_ns.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/rpmsg/rpmsg_core.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/greybus/greybus.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/vhost/vhost_iotlb.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/vhost/vhost.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/vhost/vhost_vsock.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/bcma/bcma.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/memstick/core/memstick.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/uio/uio_pruss.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/uio/uio_pdrv_genirq.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/uio/uio.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/slimbus/slimbus.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hsi/hsi.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hsi/clients/hsi_char.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/spmi/spmi.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/ata/ahci_qoriq.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/ata/libahci_platform.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/ata/libahci.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/ata/ahci_ceva.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/ata/libata.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/vdpa/vdpa.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/fpga/dfl-afu.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/fpga/dfl-fme-region.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/fpga/dfl-fme-br.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/fpga/dfl-fme-mgr.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/fpga/dfl-fme.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/fpga/dfl.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/fpga/of-fpga-region.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/fpga/fpga-region.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/fpga/xilinx-pr-decoupler.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/fpga/xilinx-spi.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/fpga/ice40-spi.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/nvmem/nvmem_qcom-spmi-sdam.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwtracing/intel_th/intel_th_msu_sink.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwtracing/intel_th/intel_th_pti.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwtracing/intel_th/intel_th_msu.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwtracing/intel_th/intel_th_gth.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwtracing/intel_th/intel_th.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/extcon/extcon-ptn5150.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/extcon/extcon-max3355.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/extcon/extcon-fsa9480.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/extcon/extcon-adc-jack.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/devfreq/governor_passive.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/devfreq/governor_performance.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/soundwire/soundwire-qcom.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mailbox/mailbox-test.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/platform/chrome/cros_ec_i2c.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-sensor-custom.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-zydacron.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-zpff.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-twinhan.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-tmff.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-gaff.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-sjoy.ko] undefined!
>> ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-playstation.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-plantronics.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-picolcd.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-pl.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-prodikeys.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-ortek.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-monterey.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-microsoft.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-macally.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-lcpower.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-kye.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-ite.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-icade.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-gyration.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-glorious.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-gfrm.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-gembird.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-ezkey.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-emsff.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-corsair.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-chicony.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-belkin.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/hid-aureal.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hid/uhid.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/crypto/inside-secure/crypto_safexcel.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/crypto/ccree/ccree.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-el15203000.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-dac124s085.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-wm8350.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-tlc591xx.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-pwm.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-pm8058.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-max8997.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-max77650.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-lt3593.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-lp8788.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-lp50xx.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-lp3952.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-lp3944.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-lm3601x.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-lm3533.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-lm3530.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-ktd2692.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-is31fl32xx.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-da903x.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-cpcap.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-aw2013.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-as3645a.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/leds-aat1290.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/leds/led-class-flash.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/core/mmc_block.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/core/pwrseq_emmc.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/core/pwrseq_simple.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/core/mmc_core.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/mmc_hsq.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/cqhci.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/sdhci-omap.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/sdhci-of-aspeed.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/sdhci-cadence.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/sdhci-pltfm.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/usdhi6rol0.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/ushc.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/vub300.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/of_mmc_spi.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/mmc_spi.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/omap.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/sdhci_am654.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/sdhci_f_sdh30.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/mmc/host/sdhci.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/cpufreq/cpufreq-dt.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/cpufreq/cpufreq_ondemand.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/cpufreq/cpufreq_userspace.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/cpufreq/cpufreq_powersave.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/watchdog/menz69_wdt.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/watchdog/wm831x_wdt.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/watchdog/mena21_wdt.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/watchdog/dw_wdt.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/watchdog/ftwdt010_wdt.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/watchdog/pretimeout_noop.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/thermal/thermal-generic-adc.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/thermal/thermal_mmio.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/wm8350-hwmon.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/vexpress-hwmon.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/tmp108.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/thmc50.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/amc6821.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/smsc47m1.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/sch5627.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/pwm-fan.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/powr1220.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/pc87427.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/pc87360.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/ntc_thermistor.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/nct7904.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/nct6775.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/mcp3021.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/mc13783-adc.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/max6697.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/max6639.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/max31730.ko] undefined!
ERROR: modpost: "__aeabi_unwind_cpp_pr0" [drivers/hwmon/max1668.ko] undefined!
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 6 months
drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c:1807:1: warning: unused variable 'iwl_dbgfs_dbg_time_point_ops'
by kernel test robot
Hi Mordechay,
FYI, the error/warning still remains.
tree: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git master
head: 1e28eed17697bcf343c6743f0028cc3b5dd88bf0
commit: 9dbb62a29042e543ab6671dc12c1473c3cbc58c2 iwlwifi: mvm: add debugfs entry to trigger a dump as any time-point
date: 5 weeks ago
config: powerpc-randconfig-r023-20210315 (attached as .config)
compiler: clang version 13.0.0 (https://github.com/llvm/llvm-project 7ee96429a0b057bcc97331a6a762fc3cd00aed61)
reproduce (this is a W=1 build):
wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
chmod +x ~/bin/make.cross
# install powerpc cross compiling tool for clang build
# apt-get install binutils-powerpc-linux-gnu
# https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit...
git remote add linus https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
git fetch --no-tags linus master
git checkout 9dbb62a29042e543ab6671dc12c1473c3cbc58c2
# save the attached .config to linux build tree
COMPILER_INSTALL_PATH=$HOME/0day COMPILER=clang make.cross ARCH=powerpc
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
All warnings (new ones prefixed by >>):
>> drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c:1807:1: warning: unused variable 'iwl_dbgfs_dbg_time_point_ops' [-Wunused-const-variable]
MVM_DEBUGFS_WRITE_FILE_OPS(dbg_time_point, 64);
^
drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c:1554:2: note: expanded from macro 'MVM_DEBUGFS_WRITE_FILE_OPS'
_MVM_DEBUGFS_WRITE_FILE_OPS(name, bufsz, struct iwl_mvm)
^
drivers/net/wireless/intel/iwlwifi/mvm/debugfs.h:39:37: note: expanded from macro '_MVM_DEBUGFS_WRITE_FILE_OPS'
static const struct file_operations iwl_dbgfs_##name##_ops = { \
^
<scratch space>:62:1: note: expanded from here
iwl_dbgfs_dbg_time_point_ops
^
1 warning generated.
vim +/iwl_dbgfs_dbg_time_point_ops +1807 drivers/net/wireless/intel/iwlwifi/mvm/debugfs.c
1780
1781 /* Device wide debugfs entries */
1782 MVM_DEBUGFS_READ_FILE_OPS(ctdp_budget);
1783 MVM_DEBUGFS_WRITE_FILE_OPS(stop_ctdp, 8);
1784 MVM_DEBUGFS_WRITE_FILE_OPS(force_ctkill, 8);
1785 MVM_DEBUGFS_WRITE_FILE_OPS(tx_flush, 16);
1786 MVM_DEBUGFS_WRITE_FILE_OPS(sta_drain, 8);
1787 MVM_DEBUGFS_WRITE_FILE_OPS(send_echo_cmd, 8);
1788 MVM_DEBUGFS_READ_WRITE_FILE_OPS(sram, 64);
1789 MVM_DEBUGFS_READ_WRITE_FILE_OPS(set_nic_temperature, 64);
1790 MVM_DEBUGFS_READ_FILE_OPS(nic_temp);
1791 MVM_DEBUGFS_READ_FILE_OPS(stations);
1792 MVM_DEBUGFS_READ_FILE_OPS(rs_data);
1793 MVM_DEBUGFS_READ_FILE_OPS(bt_notif);
1794 MVM_DEBUGFS_READ_FILE_OPS(bt_cmd);
1795 MVM_DEBUGFS_READ_WRITE_FILE_OPS(disable_power_off, 64);
1796 MVM_DEBUGFS_READ_FILE_OPS(fw_rx_stats);
1797 MVM_DEBUGFS_READ_FILE_OPS(drv_rx_stats);
1798 MVM_DEBUGFS_READ_FILE_OPS(fw_ver);
1799 MVM_DEBUGFS_READ_FILE_OPS(phy_integration_ver);
1800 MVM_DEBUGFS_WRITE_FILE_OPS(fw_restart, 10);
1801 MVM_DEBUGFS_WRITE_FILE_OPS(fw_nmi, 10);
1802 MVM_DEBUGFS_WRITE_FILE_OPS(bt_tx_prio, 10);
1803 MVM_DEBUGFS_WRITE_FILE_OPS(bt_force_ant, 10);
1804 MVM_DEBUGFS_READ_WRITE_FILE_OPS(scan_ant_rxchain, 8);
1805 MVM_DEBUGFS_READ_WRITE_FILE_OPS(fw_dbg_conf, 8);
1806 MVM_DEBUGFS_WRITE_FILE_OPS(fw_dbg_collect, 64);
> 1807 MVM_DEBUGFS_WRITE_FILE_OPS(dbg_time_point, 64);
1808 MVM_DEBUGFS_WRITE_FILE_OPS(indirection_tbl,
1809 (IWL_RSS_INDIRECTION_TABLE_SIZE * 2));
1810 MVM_DEBUGFS_WRITE_FILE_OPS(inject_packet, 512);
1811 MVM_DEBUGFS_WRITE_FILE_OPS(inject_beacon_ie, 512);
1812 MVM_DEBUGFS_WRITE_FILE_OPS(inject_beacon_ie_restore, 512);
1813
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 6 months
[omap:omap-for-v5.13/genpd-drop-legacy 39/45] dtbs_check: arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match
by kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git omap-for-v5.13/genpd-drop-legacy
head: 569519de002fafde35f889a8ea0348eae6ccc20f
commit: f483a3e123410bd1c78af295bf65feffb6769a98 [39/45] ARM: dts: Configure simple-pm-bus for dra7 l4_per1
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce: make ARCH=arm dtbs_check
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
"dtcheck warnings: (new ones prefixed by >>)"
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: tmp102@48: '#thermal-sensor-cells' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/trivial-devices.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: tlv320aic3104@18: 'clocks' is a dependency of 'assigned-clocks'
--
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: tmp102@48: '#thermal-sensor-cells' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/trivial-devices.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: tlv320aic3104@18: 'clocks' is a dependency of 'assigned-clocks'
--
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: tmp102@48: '#thermal-sensor-cells' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/trivial-devices.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: tlv320aic3104@18: 'clocks' is a dependency of 'assigned-clocks'
--
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: stmpe_adc: 'iio-device@0' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/iio/adc/st,stmpe-adc.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: target-module@b2000: '1w@0' does not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: atmel@50: $nodename:0: 'atmel@50' does not match '^eeprom@[0-9a-f]{1,2}$'
From schema: Documentation/devicetree/bindings/eeprom/at24.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: target-module@b2000: '1w@0' does not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: atmel@50: $nodename:0: 'atmel@50' does not match '^eeprom@[0-9a-f]{1,2}$'
From schema: Documentation/devicetree/bindings/eeprom/at24.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: atmel@54: $nodename:0: 'atmel@54' does not match '^eeprom@[0-9a-f]{1,2}$'
--
arch/arm/boot/dts/am572x-idk.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am572x-idk.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: tc358778@e: compatible: ['toshiba,tc358778', 'toshiba,tc358768'] is too long
From schema: Documentation/devicetree/bindings/display/bridge/toshiba,tc358768.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: tc358778@e: compatible: Additional items are not allowed ('toshiba,tc358768' was unexpected)
--
arch/arm/boot/dts/am571x-idk.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am571x-idk.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: tc358778@e: compatible: ['toshiba,tc358778', 'toshiba,tc358768'] is too long
From schema: Documentation/devicetree/bindings/display/bridge/toshiba,tc358768.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: tc358778@e: compatible: Additional items are not allowed ('toshiba,tc358768' was unexpected)
--
arch/arm/boot/dts/am574x-idk.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am574x-idk.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: tc358778@e: compatible: ['toshiba,tc358778', 'toshiba,tc358768'] is too long
From schema: Documentation/devicetree/bindings/display/bridge/toshiba,tc358768.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: tc358778@e: compatible: Additional items are not allowed ('toshiba,tc358768' was unexpected)
--
arch/arm/boot/dts/dra7-evm.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra7-evm.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: p1: $nodename:0: 'p1' does not match '^(hog-[0-9]+|.+-hog(-[0-9]+)?)$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/gpio/gpio-hog.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: target-module@b2000: '1w@0' does not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/dra72-evm.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra72-evm.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: p1: $nodename:0: 'p1' does not match '^(hog-[0-9]+|.+-hog(-[0-9]+)?)$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/gpio/gpio-hog.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: target-module@b2000: '1w@0' does not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra72-evm-revc.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: p1: $nodename:0: 'p1' does not match '^(hog-[0-9]+|.+-hog(-[0-9]+)?)$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/gpio/gpio-hog.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: target-module@b2000: '1w@0' does not match any of the regexes: '.*-names$', '.*-supply$', '^#.*-cells$', '^#[a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}$', '^[a-zA-Z][a-zA-Z0-9,+\\-._]{0,63}@[0-9a-fA-F]+(,[0-9a-fA-F]+)*$', '^__.*__$', 'pinctrl-[0-9]+'
--
arch/arm/boot/dts/dra71-evm.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra71-evm.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: p1: $nodename:0: 'p1' does not match '^(hog-[0-9]+|.+-hog(-[0-9]+)?)$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/gpio/gpio-hog.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: p0: $nodename:0: 'p0' does not match '^(hog-[0-9]+|.+-hog(-[0-9]+)?)$'
--
arch/arm/boot/dts/dra76-evm.dt.yaml: segment@20000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: segment@30000: $nodename:0: 'segment@30000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: segment@30000: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra76-evm.dt.yaml: interconnect@48000000: $nodename:0: 'interconnect@48000000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: lp87565@60: 'gpio-controller' is a required property
From schema: Documentation/devicetree/bindings/mfd/ti,lp87565-q1.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: lp87565@60: '#gpio-cells' is a required property
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 6 months
[omap:omap-for-v5.13/genpd-drop-legacy 38/45] dtbs_check: arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match
by kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git omap-for-v5.13/genpd-drop-legacy
head: 569519de002fafde35f889a8ea0348eae6ccc20f
commit: 9a75368b6426739e8b798592f084cb682d760568 [38/45] ARM: dts: Configure simple-pm-bus for dra7 l4_wkup
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce: make ARCH=arm dtbs_check
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
"dtcheck warnings: (new ones prefixed by >>)"
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[104], [105], [106], [107], [108], [109], [110]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[17]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[280]], 'phandle': [[112]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[276]], 'phandle': [[19]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[268]], 'phandle': [[18]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[88]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'compati
ble': ['ti,divider-clock'], 'clocks': [[113]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[114]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[146]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111], [80]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[123]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[111]], 'ti,max-div': [[64]], 'reg'
: [[460]], 'ti,index-power-of-two': True, 'phandle': [[124]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[33]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[40]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two': True
, 'phandle': [[118]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[118]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[179]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[77]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[136]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[137]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[120]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[0]],
'compatible': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137]
, [138], [139], [140], [141], [142], [143]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[352]], 'phandle': [[78]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[17]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[52], [55]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[144]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[145]], 'ti,max-
div': [[64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[150]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [146]], 'reg': [[264]], 'phandle': [[85]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[104], [105], [106], [107], [108], [109], [110]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[17]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[280]], 'phandle': [[112]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[276]], 'phandle': [[19]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[268]], 'phandle': [[18]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[88]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'c
ompatible': ['ti,divider-clock'], 'clocks': [[113]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[114]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[146]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111], [80]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[123]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[111]], 'ti,max-div': [[64]],
'reg': [[460]], 'ti,index-power-of-two': True, 'phandle': [[124]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[33]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[40]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two'
: True, 'phandle': [[118]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[118]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[179]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[77]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[136]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[137]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[120]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [
[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136],
[137], [138], [139], [140], [141], [142], [143]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[352]], 'phandle': [[78]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[17]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[52], [55]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[144]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[145]], 't
i,max-div': [[64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[150]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [146]], 'reg': [[264]], 'phandle': [[85]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revb1.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[104], [105], [106], [107], [108], [109], [110]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[17]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[280]], 'phandle': [[112]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[276]], 'phandle': [[19]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[268]], 'phandle': [[18]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[88]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'co
mpatible': ['ti,divider-clock'], 'clocks': [[113]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[114]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[146]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111], [80]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[123]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[111]], 'ti,max-div': [[64]],
'reg': [[460]], 'ti,index-power-of-two': True, 'phandle': [[124]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[33]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[40]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two':
True, 'phandle': [[118]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[118]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[178]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[77]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[136]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[137]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[120]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[
0]], 'compatible': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136],
[137], [138], [139], [140], [141], [142], [143]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[352]], 'phandle': [[78]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[17]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[52], [55]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[144]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[145]], 'ti
,max-div': [[64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[150]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [146]], 'reg': [[264]], 'phandle': [[85]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-beagle-x15-revc.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[104], [105], [106], [107], [108], [109], [110]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[17]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[280]], 'phandle': [[112]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[276]], 'phandle': [[19]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[268]], 'phandle': [[18]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[88]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'compa
tible': ['ti,divider-clock'], 'clocks': [[113]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[114]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[146]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111], [80]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[123]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[111]], 'ti,max-div': [[64]], 're
g': [[460]], 'ti,index-power-of-two': True, 'phandle': [[124]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[33]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[40]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two': Tr
ue, 'phandle': [[118]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[118]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[176]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[77]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[136]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[137]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[120]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[0]]
, 'compatible': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [13
7], [138], [139], [140], [141], [142], [143]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[352]], 'phandle': [[78]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[17]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[52], [55]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[144]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[145]], 'ti,ma
x-div': [[64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[149]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [146]], 'reg': [[264]], 'phandle': [[85]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am5729-beagleboneai.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[104], [105], [106], [107], [108], [109], [110]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[17]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[280]], 'phandle': [[112]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[276]], 'phandle': [[19]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[268]], 'phandle': [[18]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[88]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'compa
tible': ['ti,divider-clock'], 'clocks': [[113]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[114]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[146]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111], [80]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[123]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[111]], 'ti,max-div': [[64]], 're
g': [[460]], 'ti,index-power-of-two': True, 'phandle': [[124]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[33]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[40]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two': Tr
ue, 'phandle': [[118]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[118]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[174]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[77]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[136]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[137]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[120]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[0]]
, 'compatible': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [13
7], [138], [139], [140], [141], [142], [143]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[352]], 'phandle': [[78]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[17]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[52], [55]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[144]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[145]], 'ti,ma
x-div': [[64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[149]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [146]], 'reg': [[264]], 'phandle': [[85]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-cl-som-am57x.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[104], [105], [106], [107], [108], [109], [110]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[17]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[280]], 'phandle': [[112]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[276]], 'phandle': [[19]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[268]], 'phandle': [[18]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[88]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'compatib
le': ['ti,divider-clock'], 'clocks': [[113]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[114]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[146]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111], [80]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[123]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[111]], 'ti,max-div': [[64]], 'reg':
[[460]], 'ti,index-power-of-two': True, 'phandle': [[124]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[33]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[40]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two': True,
'phandle': [[118]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[118]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[180]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[77]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[136]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[137]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[120]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[0]], '
compatible': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137],
[138], [139], [140], [141], [142], [143]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[352]], 'phandle': [[78]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[17]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[52], [55]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[144]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[145]], 'ti,max-d
iv': [[64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[151]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [146]], 'reg': [[264]], 'phandle': [[85]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am57xx-sbc-am57x.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/am572x-idk.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/am572x-idk.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am572x-idk.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am572x-idk.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[104], [105], [106], [107], [108], [109], [110]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[17]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[280]], 'phandle': [[112]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[276]], 'phandle': [[19]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[268]], 'phandle': [[18]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[88]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'compatible': [
'ti,divider-clock'], 'clocks': [[113]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[114]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[146]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111], [80]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[123]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[111]], 'ti,max-div': [[64]], 'reg': [[460
]], 'ti,index-power-of-two': True, 'phandle': [[124]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[33]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[40]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two': True, 'phan
dle': [[118]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[118]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[181]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[77]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[136]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[137]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[120]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[0]], 'compat
ible': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138]
, [139], [140], [141], [142], [143]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[352]], 'phandle': [[78]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[17]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[52], [55]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[144]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[145]], 'ti,max-div': [
[64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[152]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [146]], 'reg': [[264]], 'phandle': [[85]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am572x-idk.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/am571x-idk.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/am571x-idk.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am571x-idk.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am571x-idk.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[104], [105], [106], [107], [108], [109], [110]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[17]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[280]], 'phandle': [[112]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[276]], 'phandle': [[19]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[268]], 'phandle': [[18]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[88]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'compatible': [
'ti,divider-clock'], 'clocks': [[113]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[114]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[146]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111], [80]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[123]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[111]], 'ti,max-div': [[64]], 'reg': [[460
]], 'ti,index-power-of-two': True, 'phandle': [[124]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[33]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[40]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two': True, 'phan
dle': [[118]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[118]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[184]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[77]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[136]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[137]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[120]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[0]], 'compat
ible': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138]
, [139], [140], [141], [142], [143]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[352]], 'phandle': [[78]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[17]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[52], [55]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[144]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[145]], 'ti,max-div': [
[64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[152]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [146]], 'reg': [[264]], 'phandle': [[85]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am571x-idk.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/am574x-idk.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/am574x-idk.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am574x-idk.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/am574x-idk.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[106], [107], [108], [109], [110], [111], [112]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[21]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[21], [113]], 'reg': [[280]], 'phandle': [[114]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[114], [82]], 'reg': [[276]], 'phandle': [[23]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[114], [82]], 'reg': [[268]], 'phandle': [[22]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[26]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[90]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'compatible': [
'ti,divider-clock'], 'clocks': [[115]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[116]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[26]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[148]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[21]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[21], [113], [82]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[21]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[113]], 'ti,max-div': [[64]], 'reg': [[460
]], 'ti,index-power-of-two': True, 'phandle': [[126]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[37]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[44]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[118]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[133]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two': True, 'phan
dle': [[120]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[120]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[181]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[79]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[21]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[0]], 'compat
ible': ['ti,divider-clock'], 'clocks': [[123]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[21]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[143]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[124]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[144]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[125], [126], [127], [128], [129], [130], [131], [132], [133], [120], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143], [144], [145]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[125], [126], [127], [128], [129], [130], [131], [132], [133], [120], [134], [135], [136], [137], [138], [139], [140]
, [141], [142], [143], [144], [145]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[125], [126], [127], [128], [129], [130], [131], [132], [133], [120], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143], [144], [145]], 'reg': [[352]], 'phandle': [[80]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[21]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[55], [58]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[21], [113]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[146]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[147]], 'ti,max-div': [
[64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[21]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[154]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[21], [113]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[21], [113]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[21], [148]], 'reg': [[264]], 'phandle': [[87]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/am574x-idk.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/dra7-evm.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/dra7-evm.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra7-evm.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra7-evm.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[104], [105], [106], [107], [108], [109], [110]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[17]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[280]], 'phandle': [[112]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[276]], 'phandle': [[19]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[268]], 'phandle': [[18]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[88]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'compatible': ['t
i,divider-clock'], 'clocks': [[113]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[114]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[146]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111], [80]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[123]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[111]], 'ti,max-div': [[64]], 'reg': [[460]]
, 'ti,index-power-of-two': True, 'phandle': [[124]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[33]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[40]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two': True, 'phandl
e': [[118]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[118]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[203]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[77]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[136]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[137]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[120]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[0]], 'compatib
le': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138],
[139], [140], [141], [142], [143]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[352]], 'phandle': [[78]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[17]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[52], [55]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[144]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[145]], 'ti,max-div': [[6
4]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[151]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [146]], 'reg': [[264]], 'phandle': [[85]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra7-evm.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/dra72-evm.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/dra72-evm.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra72-evm.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra72-evm.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[104], [105], [106], [107], [108], [109], [110]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[17]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[280]], 'phandle': [[112]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[276]], 'phandle': [[19]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[268]], 'phandle': [[18]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[88]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'compatible': ['
ti,divider-clock'], 'clocks': [[113]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[114]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[146]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111], [80]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[123]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[111]], 'ti,max-div': [[64]], 'reg': [[460]
], 'ti,index-power-of-two': True, 'phandle': [[124]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[33]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[40]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two': True, 'phand
le': [[118]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[118]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[195]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[77]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[136]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[137]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[120]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[0]], 'compati
ble': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138],
[139], [140], [141], [142], [143]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[352]], 'phandle': [[78]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[17]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[52], [55]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[144]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[145]], 'ti,max-div': [[
64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[151]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [146]], 'reg': [[264]], 'phandle': [[85]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra72-evm.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/dra72-evm-revc.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra72-evm-revc.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra72-evm-revc.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[104], [105], [106], [107], [108], [109], [110]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[17]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[280]], 'phandle': [[112]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[276]], 'phandle': [[19]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[112], [80]], 'reg': [[268]], 'phandle': [[18]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[88]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'compatible
': ['ti,divider-clock'], 'clocks': [[113]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[114]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[22]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[146]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111], [80]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[123]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[111]], 'ti,max-div': [[64]], 'reg': [
[460]], 'ti,index-power-of-two': True, 'phandle': [[124]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[33]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[40]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two': True, '
phandle': [[118]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[118]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[198]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[77]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[136]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[137]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[120]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[0]], 'co
mpatible': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [
138], [139], [140], [141], [142], [143]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[123], [124], [125], [126], [127], [128], [129], [130], [131], [118], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143]], 'reg': [[352]], 'phandle': [[78]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[17]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[52], [55]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[144]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[145]], 'ti,max-div
': [[64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[17]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[151]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [111]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[17], [146]], 'reg': [[264]], 'phandle': [[85]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra72-evm-revc.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/dra71-evm.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/dra71-evm.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra71-evm.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra71-evm.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[103], [104], [105], [106], [107], [108], [109]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[16]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[16], [110]], 'reg': [[280]], 'phandle': [[111]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[111], [79]], 'reg': [[276]], 'phandle': [[18]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[111], [79]], 'reg': [[268]], 'phandle': [[17]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[21]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[87]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'compatible': ['
ti,divider-clock'], 'clocks': [[112]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[113]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[113]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[21]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[145]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[16]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[16], [110], [79]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[16]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[122]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[110]], 'ti,max-div': [[64]], 'reg': [[460]
], 'ti,index-power-of-two': True, 'phandle': [[123]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[124]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[32]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[126]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[39]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[128]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[115]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[130]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two': True, 'phand
le': [[117]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[117]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[196]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[76]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[135]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[118]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[136]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[16]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[137]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[0]], 'compati
ble': ['ti,divider-clock'], 'clocks': [[120]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[16]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[122], [123], [124], [125], [126], [127], [128], [129], [130], [117], [131], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[122], [123], [124], [125], [126], [127], [128], [129], [130], [117], [131], [132], [133], [134], [135], [136], [137],
[138], [139], [140], [141], [142]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[122], [123], [124], [125], [126], [127], [128], [129], [130], [117], [131], [132], [133], [134], [135], [136], [137], [138], [139], [140], [141], [142]], 'reg': [[352]], 'phandle': [[77]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[16]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[51], [54]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[16], [110]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[143]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[144]], 'ti,max-div': [[
64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[114]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[16]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[150]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[16], [110]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[16], [110]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[16], [145]], 'reg': [[264]], 'phandle': [[84]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra71-evm.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
--
arch/arm/boot/dts/dra76-evm.dt.yaml: l4per-clkctrl@28: 'clocks' is a dependency of 'assigned-clocks'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/clock/clock.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: phy@4000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: phy@5000: 'phy-supply' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/phy/ti,omap-usb2.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: segment@100000: $nodename:0: 'segment@100000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: segment@200000: $nodename:0: 'segment@200000' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/dra76-evm.dt.yaml: interconnect@4ae00000: $nodename:0: 'interconnect@4ae00000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra76-evm.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
>> arch/arm/boot/dts/dra76-evm.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: prm@0: $nodename:0: 'prm@0' does not match '^([a-z][a-z0-9\\-]+-bus|bus|soc|axi|ahb|apb)(@[0-9a-f]+)?$'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: prm@0: clocks: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[0]], 'sys_clkin1@110': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[106], [107], [108], [109], [110], [111], [112]], 'reg': [[272]], 'ti,index-starts-at-one': True, 'phandle': [[21]]}, 'abe_dpll_sys_clk_mux@118': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[21], [113]], 'reg': [[280]], 'phandle': [[114]]}, 'abe_dpll_bypass_clk_mux@114': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[114], [82]], 'reg': [[276]], 'phandle': [[23]]}, 'abe_dpll_clk_mux@10c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[114], [82]], 'reg': [[268]], 'phandle': [[22]]}, 'abe_24m_fclk@11c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[26]], 'reg': [[284]], 'ti,dividers': [[8], [16]], 'phandle': [[90]]}, 'aess_fclk@178': {'#clock-cells': [[0]], 'compatible': ['
ti,divider-clock'], 'clocks': [[115]], 'reg': [[376]], 'ti,max-div': [[2]], 'phandle': [[116]]}, 'abe_giclk_div@174': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[116]], 'reg': [[372]], 'ti,max-div': [[2]]}, 'abe_lp_clk_div@1d8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[26]], 'reg': [[472]], 'ti,dividers': [[16], [32]], 'phandle': [[148]]}, 'abe_sys_clk_div@120': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[21]], 'reg': [[288]], 'ti,max-div': [[2]]}, 'adc_gfclk_mux@1dc': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[21], [113], [82]], 'reg': [[476]]}, 'sys_clk1_dclk_div@1c8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[21]], 'ti,max-div': [[64]], 'reg': [[456]], 'ti,index-power-of-two': True, 'phandle': [[125]]}, 'sys_clk2_dclk_div@1cc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[113]], 'ti,max-div': [[64]], 'reg': [[460]
], 'ti,index-power-of-two': True, 'phandle': [[126]]}, 'per_abe_x1_dclk_div@1bc': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[444]], 'ti,index-power-of-two': True, 'phandle': [[127]]}, 'dsp_gclk_div@18c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[37]], 'ti,max-div': [[64]], 'reg': [[396]], 'ti,index-power-of-two': True, 'phandle': [[129]]}, 'gpu_dclk@1a0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[44]], 'ti,max-div': [[64]], 'reg': [[416]], 'ti,index-power-of-two': True, 'phandle': [[131]]}, 'emif_phy_dclk_div@190': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[118]], 'ti,max-div': [[64]], 'reg': [[400]], 'ti,index-power-of-two': True, 'phandle': [[133]]}, 'gmac_250m_dclk_div@19c': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[119]], 'ti,max-div': [[64]], 'reg': [[412]], 'ti,index-power-of-two': True, 'phand
le': [[120]]}, 'gmac_main_clk': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[120]], 'clock-mult': [[1]], 'clock-div': [[2]], 'phandle': [[190]]}, 'l3init_480m_dclk_div@1ac': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[79]], 'ti,max-div': [[64]], 'reg': [[428]], 'ti,index-power-of-two': True, 'phandle': [[138]]}, 'usb_otg_dclk_div@184': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[121]], 'ti,max-div': [[64]], 'reg': [[388]], 'ti,index-power-of-two': True, 'phandle': [[139]]}, 'sata_dclk_div@1c0': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[21]], 'ti,max-div': [[64]], 'reg': [[448]], 'ti,index-power-of-two': True, 'phandle': [[140]]}, 'pcie2_dclk_div@1b8': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[122]], 'ti,max-div': [[64]], 'reg': [[440]], 'ti,index-power-of-two': True, 'phandle': [[141]]}, 'pcie_dclk_div@1b4': {'#clock-cells': [[0]], 'compati
ble': ['ti,divider-clock'], 'clocks': [[123]], 'ti,max-div': [[64]], 'reg': [[436]], 'ti,index-power-of-two': True, 'phandle': [[142]]}, 'emu_dclk_div@194': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[21]], 'ti,max-div': [[64]], 'reg': [[404]], 'ti,index-power-of-two': True, 'phandle': [[143]]}, 'secure_32k_dclk_div@1c4': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[124]], 'ti,max-div': [[64]], 'reg': [[452]], 'ti,index-power-of-two': True, 'phandle': [[144]]}, 'clkoutmux0_clk_mux@158': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[125], [126], [127], [128], [129], [130], [131], [132], [133], [120], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143], [144], [145]], 'reg': [[344]]}, 'clkoutmux1_clk_mux@15c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[125], [126], [127], [128], [129], [130], [131], [132], [133], [120], [134], [135], [136], [137], [138], [139], [140],
[141], [142], [143], [144], [145]], 'reg': [[348]]}, 'clkoutmux2_clk_mux@160': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[125], [126], [127], [128], [129], [130], [131], [132], [133], [120], [134], [135], [136], [137], [138], [139], [140], [141], [142], [143], [144], [145]], 'reg': [[352]], 'phandle': [[80]]}, 'custefuse_sys_gfclk_div': {'#clock-cells': [[0]], 'compatible': ['fixed-factor-clock'], 'clocks': [[21]], 'clock-mult': [[1]], 'clock-div': [[2]]}, 'eve_clk@180': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[55], [58]], 'reg': [[384]]}, 'hdmi_dpll_clk_mux@164': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[21], [113]], 'reg': [[356]]}, 'mlb_clk@134': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[146]], 'ti,max-div': [[64]], 'reg': [[308]], 'ti,index-power-of-two': True}, 'mlbp_clk@130': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[147]], 'ti,max-div': [[
64]], 'reg': [[304]], 'ti,index-power-of-two': True}, 'per_abe_x1_gfclk2_div@138': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[117]], 'ti,max-div': [[64]], 'reg': [[312]], 'ti,index-power-of-two': True}, 'timer_sys_clk_div@144': {'#clock-cells': [[0]], 'compatible': ['ti,divider-clock'], 'clocks': [[21]], 'reg': [[324]], 'ti,max-div': [[2]], 'phandle': [[151]]}, 'video1_dpll_clk_mux@168': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[21], [113]], 'reg': [[360]]}, 'video2_dpll_clk_mux@16c': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[21], [113]], 'reg': [[364]]}, 'wkupaon_iclk_mux@108': {'#clock-cells': [[0]], 'compatible': ['ti,mux-clock'], 'clocks': [[21], [148]], 'reg': [[264]], 'phandle': [[87]]}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: prm@0: clockdomains: {'type': 'object'} is not allowed for {}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/dra76-evm.dt.yaml: scm_conf@0: compatible: 'anyOf' conditional failed, one must be fixed:
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 6 months
[omap:omap-for-v5.13/genpd-omap4 51/52] dtbs_check: arch/arm/boot/dts/omap4-droid-bionic-xt875.dt.yaml: ocp: $nodename:0: 'ocp' does not match
by kernel test robot
tree: https://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap.git omap-for-v5.13/genpd-omap4
head: 2584d7e7f87ad0a57683dda8e7f17d8630c2eefc
commit: 3e1ea524d6db00b432eb93897f9de7091af9e549 [51/52] ARM: OMAP2+: Drop legacy platform data for omap4 l3
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce: make ARCH=arm dtbs_check
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
"dtcheck warnings: (new ones prefixed by >>)"
arch/arm/boot/dts/omap4-droid-bionic-xt875.dt.yaml: /: usb-phy@2: 'anyOf' conditional failed, one must be fixed:
'reg' is a required property
'ranges' is a required property
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/root-node.yaml
arch/arm/boot/dts/omap4-droid-bionic-xt875.dt.yaml: sram@40304000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-droid-bionic-xt875.dt.yaml: sram@40304000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-droid-bionic-xt875.dt.yaml: sram@40304000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/omap4-droid-bionic-xt875.dt.yaml: ocp: $nodename:0: 'ocp' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-droid-bionic-xt875.dt.yaml: ocp: bandgap@4a002260:reg:0: [1241522784, 4, 1241522988, 4] is too long
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/reg.yaml
arch/arm/boot/dts/omap4-droid-bionic-xt875.dt.yaml: interconnect@4a300000: $nodename:0: 'interconnect@4a300000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-droid-bionic-xt875.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-droid-bionic-xt875.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
--
arch/arm/boot/dts/omap4-droid4-xt894.dt.yaml: /: usb-phy@2: 'anyOf' conditional failed, one must be fixed:
'reg' is a required property
'ranges' is a required property
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/root-node.yaml
arch/arm/boot/dts/omap4-droid4-xt894.dt.yaml: sram@40304000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-droid4-xt894.dt.yaml: sram@40304000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-droid4-xt894.dt.yaml: sram@40304000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/omap4-droid4-xt894.dt.yaml: ocp: $nodename:0: 'ocp' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-droid4-xt894.dt.yaml: ocp: bandgap@4a002260:reg:0: [1241522784, 4, 1241522988, 4] is too long
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/reg.yaml
arch/arm/boot/dts/omap4-droid4-xt894.dt.yaml: interconnect@4a300000: $nodename:0: 'interconnect@4a300000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-droid4-xt894.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-droid4-xt894.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
--
arch/arm/boot/dts/omap4-duovero-parlor.dt.yaml: sram@40304000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-duovero-parlor.dt.yaml: sram@40304000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-duovero-parlor.dt.yaml: sram@40304000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/omap4-duovero-parlor.dt.yaml: ocp: $nodename:0: 'ocp' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-duovero-parlor.dt.yaml: ocp: bandgap@4a002260:reg:0: [1241522784, 4, 1241522988, 4] is too long
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/reg.yaml
arch/arm/boot/dts/omap4-duovero-parlor.dt.yaml: interconnect@4a300000: $nodename:0: 'interconnect@4a300000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-duovero-parlor.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-duovero-parlor.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
--
arch/arm/boot/dts/omap4-kc1.dt.yaml: sram@40304000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-kc1.dt.yaml: sram@40304000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-kc1.dt.yaml: sram@40304000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/omap4-kc1.dt.yaml: ocp: $nodename:0: 'ocp' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-kc1.dt.yaml: ocp: bandgap@4a002260:reg:0: [1241522784, 4, 1241522988, 4] is too long
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/reg.yaml
arch/arm/boot/dts/omap4-kc1.dt.yaml: interconnect@4a300000: $nodename:0: 'interconnect@4a300000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-kc1.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-kc1.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
--
arch/arm/boot/dts/omap4-panda.dt.yaml: sram@40304000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-panda.dt.yaml: sram@40304000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-panda.dt.yaml: sram@40304000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/omap4-panda.dt.yaml: ocp: $nodename:0: 'ocp' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-panda.dt.yaml: ocp: bandgap@4a002260:reg:0: [1241522784, 4, 1241522988, 4] is too long
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/reg.yaml
arch/arm/boot/dts/omap4-panda.dt.yaml: interconnect@4a300000: $nodename:0: 'interconnect@4a300000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-panda.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-panda.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
--
arch/arm/boot/dts/omap4-panda-a4.dt.yaml: /: 'model' is a required property
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/root-node.yaml
arch/arm/boot/dts/omap4-panda-a4.dt.yaml: sram@40304000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-panda-a4.dt.yaml: sram@40304000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-panda-a4.dt.yaml: sram@40304000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/omap4-panda-a4.dt.yaml: ocp: $nodename:0: 'ocp' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-panda-a4.dt.yaml: ocp: bandgap@4a002260:reg:0: [1241522784, 4, 1241522988, 4] is too long
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/reg.yaml
arch/arm/boot/dts/omap4-panda-a4.dt.yaml: interconnect@4a300000: $nodename:0: 'interconnect@4a300000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-panda-a4.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-panda-a4.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
--
arch/arm/boot/dts/omap4-panda-es.dt.yaml: sram@40304000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-panda-es.dt.yaml: sram@40304000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-panda-es.dt.yaml: sram@40304000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/omap4-panda-es.dt.yaml: ocp: $nodename:0: 'ocp' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-panda-es.dt.yaml: ocp: bandgap@4a002260:reg:0: [1241522784, 4, 1241522988, 4, 1241523064, 24] is too long
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/reg.yaml
arch/arm/boot/dts/omap4-panda-es.dt.yaml: interconnect@4a300000: $nodename:0: 'interconnect@4a300000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-panda-es.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-panda-es.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
--
arch/arm/boot/dts/omap4-sdp.dt.yaml: sram@40304000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-sdp.dt.yaml: sram@40304000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-sdp.dt.yaml: sram@40304000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/omap4-sdp.dt.yaml: ocp: $nodename:0: 'ocp' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-sdp.dt.yaml: ocp: bandgap@4a002260:reg:0: [1241522784, 4, 1241522988, 4] is too long
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/reg.yaml
arch/arm/boot/dts/omap4-sdp.dt.yaml: interconnect@4a300000: $nodename:0: 'interconnect@4a300000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-sdp.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-sdp.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
--
arch/arm/boot/dts/omap4-sdp-es23plus.dt.yaml: sram@40304000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-sdp-es23plus.dt.yaml: sram@40304000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-sdp-es23plus.dt.yaml: sram@40304000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/omap4-sdp-es23plus.dt.yaml: ocp: $nodename:0: 'ocp' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-sdp-es23plus.dt.yaml: ocp: bandgap@4a002260:reg:0: [1241522784, 4, 1241522988, 4] is too long
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/reg.yaml
arch/arm/boot/dts/omap4-sdp-es23plus.dt.yaml: interconnect@4a300000: $nodename:0: 'interconnect@4a300000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-sdp-es23plus.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-sdp-es23plus.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
--
arch/arm/boot/dts/omap4-var-dvk-om44.dt.yaml: sram@40304000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-var-dvk-om44.dt.yaml: sram@40304000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-var-dvk-om44.dt.yaml: sram@40304000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/omap4-var-dvk-om44.dt.yaml: ocp: $nodename:0: 'ocp' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-var-dvk-om44.dt.yaml: ocp: bandgap@4a002260:reg:0: [1241522784, 4, 1241522988, 4, 1241523064, 24] is too long
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/reg.yaml
arch/arm/boot/dts/omap4-var-dvk-om44.dt.yaml: interconnect@4a300000: $nodename:0: 'interconnect@4a300000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-var-dvk-om44.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-var-dvk-om44.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
--
arch/arm/boot/dts/omap4-var-stk-om44.dt.yaml: sram@40304000: '#address-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-var-stk-om44.dt.yaml: sram@40304000: '#size-cells' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
arch/arm/boot/dts/omap4-var-stk-om44.dt.yaml: sram@40304000: 'ranges' is a required property
From schema: Documentation/devicetree/bindings/sram/sram.yaml
>> arch/arm/boot/dts/omap4-var-stk-om44.dt.yaml: ocp: $nodename:0: 'ocp' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-var-stk-om44.dt.yaml: ocp: bandgap@4a002260:reg:0: [1241522784, 4, 1241522988, 4, 1241523064, 24] is too long
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/reg.yaml
arch/arm/boot/dts/omap4-var-stk-om44.dt.yaml: interconnect@4a300000: $nodename:0: 'interconnect@4a300000' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-var-stk-om44.dt.yaml: segment@0: $nodename:0: 'segment@0' does not match '^bus(@[0-9a-f]+)?$'
From schema: Documentation/devicetree/bindings/bus/simple-pm-bus.yaml
arch/arm/boot/dts/omap4-var-stk-om44.dt.yaml: segment@0: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'power-domains' is a required property
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 6 months
Re: [PATCH v2 6/8] ARM: dts: stm32: add support for art-pi board based on stm32h750xbh6
by kernel test robot
Hi,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on stm32/stm32-next]
[also build test WARNING on robh/for-next soc/for-next v5.12-rc2 next-20210312]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/dillon-minfei-gmail-com/ARM-STM3...
base: https://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce: make ARCH=arm dtbs_check
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
"dtcheck warnings: (new ones prefixed by >>)"
>> arch/arm/boot/dts/stm32h750i-art-pi.dt.yaml: soc: pin-controller: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[1]], 'ranges': [[0, 1476526080, 12288]], 'interrupt-parent': [[22]], 'st,syscfg': [[28, 8]], 'pins-are-numbered': True, 'compatible': ['st,stm32h750-pinctrl'], 'gpio@58020000': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[0, 1024]], 'clocks': [[2, 86]], 'st,bank-name': ['GPIOA'], 'interrupt-controller': True, '#interrupt-cells': [[2]], 'phandle': [[10]]}, 'gpio@58020400': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[1024, 1024]], 'clocks': [[2, 85]], 'st,bank-name': ['GPIOB'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58020800': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[2048, 1024]], 'clocks': [[2, 84]], 'st,bank-name': ['GPIOC'], 'interrupt-controller': True, '#interrupt-cells': [[2]], 'phandle': [[6]]}, 'gpio@58020c00': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg':
[[3072, 1024]], 'clocks': [[2, 83]], 'st,bank-name': ['GPIOD'], 'interrupt-controller': True, '#interrupt-cells': [[2]], 'phandle': [[4]]}, 'gpio@58021000': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[4096, 1024]], 'clocks': [[2, 82]], 'st,bank-name': ['GPIOE'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58021400': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[5120, 1024]], 'clocks': [[2, 81]], 'st,bank-name': ['GPIOF'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58021800': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[6144, 1024]], 'clocks': [[2, 80]], 'st,bank-name': ['GPIOG'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58021c00': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[7168, 1024]], 'clocks': [[2, 79]], 'st,bank-name': ['GPIOH'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58022000': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[8192, 1
024]], 'clocks': [[2, 78]], 'st,bank-name': ['GPIOI'], 'interrupt-controller': True, '#interrupt-cells': [[2]], 'phandle': [[7]]}, 'gpio@58022400': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[9216, 1024]], 'clocks': [[2, 77]], 'st,bank-name': ['GPIOJ'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58022800': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[10240, 1024]], 'clocks': [[2, 76]], 'st,bank-name': ['GPIOK'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'i2c1-0': {'pins': {'pinmux': [[5637], [5893]], 'bias-disable': True, 'drive-open-drain': True, 'slew-rate': [[0]]}}, 'rmii-0': {'phandle': [[29]], 'pins': {'pinmux': [[27404], [27916], [27660], [9228], [9484], [1804], [8460], [524], [268]], 'slew-rate': [[2]]}}, 'sdmmc1-b4-0': {'phandle': [[14]], 'pins': {'pinmux': [[10253], [10509], [10765], [11021], [11277], [12813]], 'slew-rate': [[3]], 'drive-push-pull': True, 'bias-disable': True}}, 'sdmmc1-b4-od-0': {'phandle': [[15
]], 'pins1': {'pinmux': [[10253], [10509], [10765], [11021], [11277]], 'slew-rate': [[3]], 'drive-push-pull': True, 'bias-disable': True}, 'pins2': {'pinmux': [[12813]], 'slew-rate': [[3]], 'drive-open-drain': True, 'bias-disable': True}}, 'sdmmc1-b4-sleep-0': {'phandle': [[16]], 'pins': {'pinmux': [[10257], [10513], [10769], [11025], [11281], [12817]]}}, 'sdmmc2-b4-0': {'phandle': [[18]], 'pins': {'pinmux': [[7690], [7946], [4874], [5130], [13836], [14092]], 'slew-rate': [[3]], 'drive-push-pull': True, 'bias-disable': True}}, 'sdmmc2-b4-od-0': {'phandle': [[19]], 'pins1': {'pinmux': [[7690], [7946], [4874], [5130], [13836]], 'slew-rate': [[3]], 'drive-push-pull': True, 'bias-disable': True}, 'pins2': {'pinmux': [[14092]], 'slew-rate': [[3]], 'drive-open-drain': True, 'bias-disable': True}}, 'sdmmc2-b4-sleep-0': {'phandle': [[20]], 'pins': {'pinmux': [[7697], [7953], [4881], [5137], [13841], [14097]]}}, 'sdmmc1-dir-0': {'pins1': {'pinmux': [[9737], [9993], [6408]], 'slew-rate': [[3]
], 'drive-push-pull': True, 'bias-pull-up': True}, 'pins2': {'pinmux': [[6152]], 'bias-pull-up': True}}, 'sdmmc1-dir-sleep-0': {'pins': {'pinmux': [[9745], [10001], [6417], [6161]]}}, 'usart1-0': {'pins1': {'pinmux': [[7685]], 'bias-disable': True, 'drive-push-pull': True, 'slew-rate': [[0]]}, 'pins2': {'pinmux': [[7941]], 'bias-disable': True}}, 'usart2-0': {'phandle': [[3]], 'pins1': {'pinmux': [[13576]], 'bias-disable': True, 'drive-push-pull': True, 'slew-rate': [[0]]}, 'pins2': {'pinmux': [[13832]], 'bias-disable': True}}, 'usart3-0': {'pins1': {'pinmux': [[6664]], 'bias-disable': True, 'drive-push-pull': True, 'slew-rate': [[0]]}, 'pins2': {'pinmux': [[6920]], 'bias-disable': True}}, 'uart4-0': {'phandle': [[8]], 'pins1': {'pinmux': [[9]], 'bias-disable': True, 'drive-push-pull': True, 'slew-rate': [[0]]}, 'pins2': {'pinmux': [[35081]], 'bias-disable': True}}, 'usbotg-hs-0': {'pins': {'pinmux': [[29707], [35595], [8203], [1291], [779], [4107], [4363], [6667], [6923], [7179], [
7435], [5387]], 'bias-disable': True, 'drive-push-pull': True, 'slew-rate': [[2]]}}, 'spi1-0': {'phandle': [[9]], 'pins1': {'pinmux': [[1286], [5382]], 'bias-disable': True, 'drive-push-pull': True, 'slew-rate': [[2]]}, 'pins2': {'pinmux': [[26886]], 'bias-disable': True}}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/stm32h750i-art-pi.dt.yaml: soc: 'i2c@40005C00', 'i2c@58001C00' do not match any of the regexes: '@(0|[1-9a-f][0-9a-f]*)$', '^[^@]+$', 'pinctrl-[0-9]+'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
>> arch/arm/boot/dts/stm32h750i-art-pi.dt.yaml: serial@40004800: 'bluetooth' does not match any of the regexes: 'pinctrl-[0-9]+'
From schema: Documentation/devicetree/bindings/serial/st,stm32-uart.yaml
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 6 months
Re: [PATCH v2 4/8] ARM: dts: stm32: introduce stm32h7-pinctrl.dtsi to support stm32h750
by kernel test robot
Hi,
Thank you for the patch! Perhaps something to improve:
[auto build test WARNING on stm32/stm32-next]
[also build test WARNING on robh/for-next soc/for-next v5.12-rc2 next-20210312]
[If your patch is applied to the wrong git tree, kindly drop us a note.
And when submitting patch, we suggest to use '--base' as documented in
https://git-scm.com/docs/git-format-patch]
url: https://github.com/0day-ci/linux/commits/dillon-minfei-gmail-com/ARM-STM3...
base: https://git.kernel.org/pub/scm/linux/kernel/git/atorgue/stm32.git stm32-next
:::::: branch date: 17 hours ago
:::::: commit date: 17 hours ago
compiler: arm-linux-gnueabi-gcc (GCC) 9.3.0
reproduce: make ARCH=arm dtbs_check
If you fix the issue, kindly add following tag as appropriate
Reported-by: kernel test robot <lkp(a)intel.com>
"dtcheck warnings: (new ones prefixed by >>)"
>> arch/arm/boot/dts/stm32h743i-eval.dt.yaml: soc: pin-controller: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[1]], 'ranges': [[0, 1476526080, 12288]], 'interrupt-parent': [[17]], 'st,syscfg': [[23, 8]], 'pins-are-numbered': True, 'compatible': ['st,stm32h743-pinctrl'], 'gpio@58020000': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[0, 1024]], 'clocks': [[2, 86]], 'st,bank-name': ['GPIOA'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58020400': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[1024, 1024]], 'clocks': [[2, 85]], 'st,bank-name': ['GPIOB'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58020800': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[2048, 1024]], 'clocks': [[2, 84]], 'st,bank-name': ['GPIOC'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58020c00': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[3072, 1024]], 'clocks': [[2, 83]], 's
t,bank-name': ['GPIOD'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58021000': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[4096, 1024]], 'clocks': [[2, 82]], 'st,bank-name': ['GPIOE'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58021400': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[5120, 1024]], 'clocks': [[2, 81]], 'st,bank-name': ['GPIOF'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58021800': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[6144, 1024]], 'clocks': [[2, 80]], 'st,bank-name': ['GPIOG'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58021c00': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[7168, 1024]], 'clocks': [[2, 79]], 'st,bank-name': ['GPIOH'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58022000': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[8192, 1024]], 'clocks': [[2, 78]], 'st,bank-name': ['GPIOI'], 'i
nterrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58022400': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[9216, 1024]], 'clocks': [[2, 77]], 'st,bank-name': ['GPIOJ'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58022800': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[10240, 1024]], 'clocks': [[2, 76]], 'st,bank-name': ['GPIOK'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'i2c1-0': {'phandle': [[3]], 'pins': {'pinmux': [[5637], [5893]], 'bias-disable': True, 'drive-open-drain': True, 'slew-rate': [[0]]}}, 'rmii-0': {'phandle': [[24]], 'pins': {'pinmux': [[27404], [27916], [27660], [9228], [9484], [1804], [8460], [524], [268]], 'slew-rate': [[2]]}}, 'sdmmc1-b4-0': {'phandle': [[11]], 'pins': {'pinmux': [[10253], [10509], [10765], [11021], [11277], [12813]], 'slew-rate': [[3]], 'drive-push-pull': True, 'bias-disable': True}}, 'sdmmc1-b4-od-0': {'phandle': [[13]], 'pins1': {'pinmux': [[10253], [10509], [10765], [1102
1], [11277]], 'slew-rate': [[3]], 'drive-push-pull': True, 'bias-disable': True}, 'pins2': {'pinmux': [[12813]], 'slew-rate': [[3]], 'drive-open-drain': True, 'bias-disable': True}}, 'sdmmc1-b4-sleep-0': {'phandle': [[14]], 'pins': {'pinmux': [[10257], [10513], [10769], [11025], [11281], [12817]]}}, 'sdmmc1-dir-0': {'phandle': [[12]], 'pins1': {'pinmux': [[9737], [9993], [6408]], 'slew-rate': [[3]], 'drive-push-pull': True, 'bias-pull-up': True}, 'pins2': {'pinmux': [[6152]], 'bias-pull-up': True}}, 'sdmmc1-dir-sleep-0': {'phandle': [[15]], 'pins': {'pinmux': [[9745], [10001], [6417], [6161]]}}, 'usart1-0': {'phandle': [[4]], 'pins1': {'pinmux': [[7685]], 'bias-disable': True, 'drive-push-pull': True, 'slew-rate': [[0]]}, 'pins2': {'pinmux': [[7941]], 'bias-disable': True}}, 'usart2-0': {'pins1': {'pinmux': [[13576]], 'bias-disable': True, 'drive-push-pull': True, 'slew-rate': [[0]]}, 'pins2': {'pinmux': [[13832]], 'bias-disable': True}}, 'usbotg-hs-0': {'phandle': [[9]], 'pins': {'
pinmux': [[29707], [35595], [8203], [1291], [779], [4107], [4363], [6667], [6923], [7179], [7435], [5387]], 'bias-disable': True, 'drive-push-pull': True, 'slew-rate': [[2]]}}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/stm32h743i-eval.dt.yaml: soc: 'i2c@40005C00', 'i2c@58001C00' do not match any of the regexes: '@(0|[1-9a-f][0-9a-f]*)$', '^[^@]+$', 'pinctrl-[0-9]+'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
--
>> arch/arm/boot/dts/stm32h743i-disco.dt.yaml: soc: pin-controller: {'type': 'object'} is not allowed for {'#address-cells': [[1]], '#size-cells': [[1]], 'ranges': [[0, 1476526080, 12288]], 'interrupt-parent': [[11]], 'st,syscfg': [[17, 8]], 'pins-are-numbered': True, 'compatible': ['st,stm32h743-pinctrl'], 'gpio@58020000': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[0, 1024]], 'clocks': [[2, 86]], 'st,bank-name': ['GPIOA'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58020400': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[1024, 1024]], 'clocks': [[2, 85]], 'st,bank-name': ['GPIOB'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58020800': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[2048, 1024]], 'clocks': [[2, 84]], 'st,bank-name': ['GPIOC'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58020c00': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[3072, 1024]], 'clocks': [[2, 83]], '
st,bank-name': ['GPIOD'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58021000': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[4096, 1024]], 'clocks': [[2, 82]], 'st,bank-name': ['GPIOE'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58021400': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[5120, 1024]], 'clocks': [[2, 81]], 'st,bank-name': ['GPIOF'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58021800': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[6144, 1024]], 'clocks': [[2, 80]], 'st,bank-name': ['GPIOG'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58021c00': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[7168, 1024]], 'clocks': [[2, 79]], 'st,bank-name': ['GPIOH'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58022000': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[8192, 1024]], 'clocks': [[2, 78]], 'st,bank-name': ['GPIOI'], '
interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58022400': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[9216, 1024]], 'clocks': [[2, 77]], 'st,bank-name': ['GPIOJ'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'gpio@58022800': {'gpio-controller': True, '#gpio-cells': [[2]], 'reg': [[10240, 1024]], 'clocks': [[2, 76]], 'st,bank-name': ['GPIOK'], 'interrupt-controller': True, '#interrupt-cells': [[2]]}, 'i2c1-0': {'pins': {'pinmux': [[5637], [5893]], 'bias-disable': True, 'drive-open-drain': True, 'slew-rate': [[0]]}}, 'rmii-0': {'phandle': [[18]], 'pins': {'pinmux': [[27404], [27916], [27660], [9228], [9484], [1804], [8460], [524], [268]], 'slew-rate': [[2]]}}, 'sdmmc1-b4-0': {'phandle': [[7]], 'pins': {'pinmux': [[10253], [10509], [10765], [11021], [11277], [12813]], 'slew-rate': [[3]], 'drive-push-pull': True, 'bias-disable': True}}, 'sdmmc1-b4-od-0': {'phandle': [[8]], 'pins1': {'pinmux': [[10253], [10509], [10765], [11021], [11277]], 'slew
-rate': [[3]], 'drive-push-pull': True, 'bias-disable': True}, 'pins2': {'pinmux': [[12813]], 'slew-rate': [[3]], 'drive-open-drain': True, 'bias-disable': True}}, 'sdmmc1-b4-sleep-0': {'phandle': [[9]], 'pins': {'pinmux': [[10257], [10513], [10769], [11025], [11281], [12817]]}}, 'sdmmc1-dir-0': {'pins1': {'pinmux': [[9737], [9993], [6408]], 'slew-rate': [[3]], 'drive-push-pull': True, 'bias-pull-up': True}, 'pins2': {'pinmux': [[6152]], 'bias-pull-up': True}}, 'sdmmc1-dir-sleep-0': {'pins': {'pinmux': [[9745], [10001], [6417], [6161]]}}, 'usart1-0': {'pins1': {'pinmux': [[7685]], 'bias-disable': True, 'drive-push-pull': True, 'slew-rate': [[0]]}, 'pins2': {'pinmux': [[7941]], 'bias-disable': True}}, 'usart2-0': {'phandle': [[3]], 'pins1': {'pinmux': [[13576]], 'bias-disable': True, 'drive-push-pull': True, 'slew-rate': [[0]]}, 'pins2': {'pinmux': [[13832]], 'bias-disable': True}}, 'usbotg-hs-0': {'pins': {'pinmux': [[29707], [35595], [8203], [1291], [779], [4107], [4363], [6667], [
6923], [7179], [7435], [5387]], 'bias-disable': True, 'drive-push-pull': True, 'slew-rate': [[2]]}}}
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
arch/arm/boot/dts/stm32h743i-disco.dt.yaml: soc: 'i2c@40005C00', 'i2c@58001C00' do not match any of the regexes: '@(0|[1-9a-f][0-9a-f]*)$', '^[^@]+$', 'pinctrl-[0-9]+'
From schema: /usr/local/lib/python3.9/dist-packages/dtschema/schemas/simple-bus.yaml
---
0-DAY CI Kernel Test Service, Intel Corporation
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org
1 year, 6 months