pru program too large

Hi everyone,

I try to write a program for the pru on the beagle bone green. For this I got two programs

  1. Running on default Debian system, which loads the program into the pru
  2. Program, which should run on the pru.

To achieve this I downloaded the example “hello world”, of which the compiled version is running well.
I want to write the program of the pru in C. So I transfered the assembler code into the C-Language, which is looking like this:

There is more memory than just the 8kb instruction RAM in the PRUs.

In the examples, there is a PRU_Halt program which is as small as possible with the Remoteproc.
When I build it, I get a firmware size of 27kb. It works perfectly.

There is a “command file” AM335x_PRU.cmd which is used in the linking process to allocate
the chunks of code to the correct locations in the PRU. I’m new at this myself, so hopefully
I have the description of what this does correct.

You need to look at your dmesg (kernel log) to get some clues as to what is going on.
A good way is

dmesg | grep pru

This will write out any lines in the log with “pru” in them.
This will show if the firmware(s) were successfully loaded and started.

I would recommend to get the PRU_Halt example working before proceeding further.

Greg

Thanks for your comment,

then I know my compiler works well and the ready compiled program I took out of an example doesn’t work as expected.
For this my question will change:

Is there a tutorial/ explanation webside, which tells how to load a program from a running linux image into the pru? I won’t buy a cape for 50 $ just for testing and trying 2 times and don’t have an serial converter by hand. So I have to start the program from running linux. My only possibility to login is via usb or ssh (ethernet) into my beagle bone green.

How can I divide my PRU-Program? Is it the same as the PRU itself? So the first 0x2000 is the running code. Then the DRAM0_1 (8Kb), the DRAM1_0 (8kb) and the shared RAM with 12 kB and the peripherals?

How are you figuring your binary size ? Are you using the gcc tool ‘size’ ? Or are you just going by the file size on disk ? I ask because the two are not the same.

what would be the correct one? I took the one of filesystem.
Do you mean by gcc tool the compiler itself? Because after compiling I don’t get any information about compiled bytes or something like it.
Can I take the table of the AM335x.cmd and read the bytes of this addresses into the pru? So at 0x0 to 0x2000 the program, after that the DRAM etc.?
Or do I have to watch out? I get the feeling I walk more and more into the wrong direction.

Ok, so the PRU’s are basically Cortex M3’s. Which means they would probably use the arm-none-eabi toolchain . . . or arm-none-eabi-size as the executable. This tool is the correct way to get to code and data sizes. Explained somewhat here: https://mcuoneclipse.com/2013/04/14/text-data-and-bss-code-and-data-size-explained/

Do you mean by gcc tool the compiler itself?

No, when someone refers to “the toolchain” or a tool of “the toolchain” they’re talking about the gnu compiler collection

( gcc ) not the gcc C compiler . . . Anyway, the gcc toolchain is a set of executable all used for the purpose of programing a specific hardware architecture(s). gcc, g++, object-copy, size, gdb, etc are all tools in the gcc toolchain( and there are more ).

For instance the following is the gcc toolchain for the MSP430:
02/27/2014 01:39 PM 581,646 msp430-addr2line.exe
02/27/2014 01:39 PM 601,614 msp430-ar.exe
02/27/2014 01:39 PM 797,198 msp430-as.exe
02/27/2014 01:39 PM 299,022 msp430-c++.exe
02/27/2014 01:39 PM 580,622 msp430-c++filt.exe
02/27/2014 01:39 PM 297,486 msp430-cpp.exe
02/27/2014 01:39 PM 51,726 msp430-elfedit.exe
02/27/2014 01:39 PM 924,062 msp430-g++.exe
02/27/2014 01:39 PM 898,317 msp430-gcc-4.6.3.exe
02/27/2014 01:39 PM 898,317 msp430-gcc.exe
02/27/2014 01:39 PM 55,822 msp430-gcov.exe
02/27/2014 01:39 PM 4,091,918 msp430-gdb.exe
02/27/2014 01:39 PM 647,694 msp430-gprof.exe
02/27/2014 01:39 PM 789,518 msp430-ld.bfd.exe
02/27/2014 01:39 PM 789,518 msp430-ld.exe
02/27/2014 01:39 PM 592,398 msp430-nm.exe
02/27/2014 01:39 PM 749,582 msp430-objcopy.exe
02/27/2014 01:39 PM 826,382 msp430-objdump.exe
02/27/2014 01:39 PM 601,614 msp430-ranlib.exe
02/27/2014 01:39 PM 351,758 msp430-readelf.exe
02/27/2014 01:39 PM 565,774 msp430-run.exe
02/27/2014 01:39 PM 583,694 msp430-size.exe
02/27/2014 01:39 PM 582,670 msp430-strings.exe
02/27/2014 01:39 PM 749,582 msp430-strip.exe
02/27/2014 01:39 PM 906 msp430mcu-config

until now I used the compiler of TI: clpru. I thought this is the compiler of TI for the PRUs. That I can use the gnueabi I didn’t know. The Cores/ Prus should use hard float, so I could use gnueabihf compiler too? (1)
I get the table of the sizes too (which is explained in your link). Can I use them to get the code parts of the parts in the program?
For example I got this:

PAGE 0:
PRU_IMEM 00000000 00002000 00000098 00001f68 RWIX

PAGE 1:
PRU_DMEM_0_1 00000000 00002000 00000100 00001f00 RWIX
PRU_DMEM_1_0 00002000 00002000 00000000 00002000 RWIX

PAGE 2:
PRU_SHAREDMEM 00010000 00003000 00000000 00003000 RWIX
PRU_INTC 00020000 00001504 00000000 00001504 RWIX
PRU_CFG 00026000 00000044 00000044 00000000 RWIX
PRU_UART 00028000 00000038 00000000 00000038 RWIX
PRU_IEP 0002e000 0000031c 00000000 0000031c RWIX
PRU_ECAP 00030000 00000060 00000000 00000060 RWIX
RSVD27 00032000 00000100 00000000 00000100 RWIX
RSVD21 00032400 00000100 00000000 00000100 RWIX

I can create a pointer at the 0x0000 address of my program and start reading until 0x2000 and get the Flash bytes. After that I read the dram bytes for the Pru0, after that for the PRu1 and so on.
Am I correct? Or is there another way of reading the data out of the program?

Thanks for your help and taking your time for answering

until now I used the compiler of TI: clpru. I thought this is the compiler of TI for the PRUs. That I can use the gnueabi I didn’t know. The Cores/ Prus should use hard float, so I could use gnueabihf compiler too? (1)
I get the table of the sizes too (which is explained in your link). Can I use them to get the code parts of the parts in the program?

So, you probably can not use the arm-none-eabi-gcc executable without heavy modification to compile executables for the PRU’s, but the size executable might still work. It depends on the binary file type. You have elf, and if I recall correctly something refereed to as ihex( or intel hex files )

HOWEVER, you need to read the documentation that comes with clpru, and check out the other executable that comes with it. run clpru --help to get all the usage cmd switches etc, and it may even tell you the proper code and data sections(sizes ) its self.

I can create a pointer at the 0x0000 address of my program and start reading until 0x2000 and get the Flash bytes. After that I read the dram bytes for the Pru0, after that for the PRu1 and so on.
Am I correct? Or is there another way of reading the data out of the program?

I have no idea what you’re asking me. If you’re asking about being able to read from various addresses in memory. Yes you can. How, or why is up to you.

no i am not asking you for reading memory. I know it is possible :smiley:
Thanks for your patience.
I am asking you for a tutorial, a hint or a concrete: how to load a program from running linux into pru core and start it. I only got the “hello world” (http://mythopoeic.org/bbb-pru-minimal) example to run with assembly code for the pru. I can’t start the pru program via serial console or jtag, because i don’t have the needed hardware. So I have to edit the kernelbootline to start the program in the pru or via self written program, which is running on the main-core/ linux and loading the program into pru. For this I got the example, which seems to write into the different rams of the different prus. But it throws many errors, which i don’t know why were built in. And I am too frightened to remove them. I don’t want to crash something because it heats too much up or else.

What are you talking about? The PRU are a small risc processor and is proprietary to TI and is nothing like the Cortex-M3. They are entirely different processors and have nothing in common. You cannot use the ARM gcc compiler. Someone created a GCC compiler implementation for the PRU, but this is nothing like the CortexM3 GCC compiler. In addition, there is no floating point processing on the PRU.

Regards,
John

Everything you need is here:

http://processors.wiki.ti.com/index.php/PRU-ICSS

Visit the Hands-on-Labs to learn how to build the examples and then how to get Linux to load the PRU firmware.

Regards,
John

Hi again,

sorry that it took so long. Now I got the newest image of the beagle bone with the 4.4.9 kernel running.
If I compile the original device tree blob (univ-emmc-00a0.dtbo) back to dts and again to dtbo, the dmesg shows me some errors, the same as if I compile with “make” of the development area of ti. This is the latest too for kernel 4.4.1-18.

The bootlog with the original dtbo file:

[ 11.607358] remoteproc1: 4a334000.pru0 is available
[ 11.607383] remoteproc1: Note: remoteproc is still under development and considered experimental.
[ 11.607392] remoteproc1: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn’t yet guaranteed.
[ 11.659011] omap-sham 53100000.sham: hw accel on OMAP rev 4.3
[ 11.689305] pru-rproc 4a334000.pru0: booting the PRU core manually
[ 11.689334] remoteproc1: powering up 4a334000.pru0
[ 11.689626] remoteproc1: Booting fw image am335x-pru0-fw, size 34452
[ 11.689714] ti-pruss 4a300000.pruss: configured system_events = 0x0000000000010000 intr_channels = 0x00000002 host_intr = 0x00000002
[ 11.689726] remoteproc1: remote processor 4a334000.pru0 is now up
[ 11.689760] pru-rproc 4a334000.pru0: PRU rproc node /ocp/pruss@4a300000/pru0@4a334000 probed successfully
[ 11.726368] remoteproc2: 4a338000.pru1 is available
[ 11.726392] remoteproc2: Note: remoteproc is still under development and considered experimental.
[ 11.726401] remoteproc2: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn’t yet guaranteed.
[ 11.757345] pru-rproc 4a338000.pru1: booting the PRU core manually
[ 11.757373] remoteproc2: powering up 4a338000.pru1
[ 11.757614] remoteproc2: Booting fw image am335x-pru1-fw, size 27376
[ 11.757679] remoteproc2: remote processor 4a338000.pru1 is now up
[ 11.757709] pru-rproc 4a338000.pru1: PRU rproc node /ocp/pruss@4a300000/pru1@4a338000 probed successfully
[ 12.353946] cpsw 4a100000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[ 12.354023] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 12.484480] 8021q: 802.1Q VLAN Support v1.8
[ 12.484551] 8021q: adding VLAN 0 to HW filter on device eth0
[ 14.981786] bone_capemgr bone_capemgr: part_number ‘univ-emmc’, version ‘N/A’
[ 14.981822] bone_capemgr bone_capemgr: slot #4: override
[ 14.981838] bone_capemgr bone_capemgr: Using override eeprom data at slot 4
[ 14.981854] bone_capemgr bone_capemgr: slot #4: ‘Override Board Name,00A0,Override Manuf,univ-emmc’
[ 15.862348] gpio-of-helper ocp:cape-universal: Allocated GPIO id=0
[ 15.862547] gpio-of-helper ocp:cape-universal: Allocated GPIO id=1
[ 15.862709] gpio-of-helper ocp:cape-universal: Allocated GPIO id=2
[ 15.862880] gpio-of-helper ocp:cape-universal: Allocated GPIO id=3
[ 15.863043] gpio-of-helper ocp:cape-universal: Allocated GPIO id=4
[ 15.863200] gpio-of-helper ocp:cape-universal: Allocated GPIO id=5
[ 15.863362] gpio-of-helper ocp:cape-universal: Allocated GPIO id=6
[ 15.863522] gpio-of-helper ocp:cape-universal: Allocated GPIO id=7
[ 15.863676] gpio-of-helper ocp:cape-universal: Allocated GPIO id=8
[ 15.863858] gpio-of-helper ocp:cape-universal: Allocated GPIO id=9
[ 15.864018] gpio-of-helper ocp:cape-universal: Allocated GPIO id=10
[ 15.864178] gpio-of-helper ocp:cape-universal: Allocated GPIO id=11
[ 15.864328] gpio-of-helper ocp:cape-universal: Allocated GPIO id=12
[ 15.864469] gpio-of-helper ocp:cape-universal: Allocated GPIO id=13
[ 15.864618] gpio-of-helper ocp:cape-universal: Allocated GPIO id=14
[ 15.864761] gpio-of-helper ocp:cape-universal: Allocated GPIO id=15
[ 15.864904] gpio-of-helper ocp:cape-universal: Allocated GPIO id=16
[ 15.896719] gpio-of-helper ocp:cape-universal: Allocated GPIO id=17
[ 15.896949] gpio-of-helper ocp:cape-universal: Allocated GPIO id=18
[ 15.897930] gpio-of-helper ocp:cape-universal: Allocated GPIO id=19
[ 15.898131] gpio-of-helper ocp:cape-universal: Allocated GPIO id=20
[ 15.898285] gpio-of-helper ocp:cape-universal: Allocated GPIO id=21
[ 15.898438] gpio-of-helper ocp:cape-universal: Allocated GPIO id=22
[ 15.898648] gpio-of-helper ocp:cape-universal: Allocated GPIO id=23
[ 15.898802] gpio-of-helper ocp:cape-universal: Allocated GPIO id=24
[ 15.898957] gpio-of-helper ocp:cape-universal: Allocated GPIO id=25
[ 15.899104] gpio-of-helper ocp:cape-universal: Allocated GPIO id=26
[ 15.899262] gpio-of-helper ocp:cape-universal: Allocated GPIO id=27
[ 15.899410] gpio-of-helper ocp:cape-universal: Allocated GPIO id=28
[ 15.899559] gpio-of-helper ocp:cape-universal: Allocated GPIO id=29
[ 15.899714] gpio-of-helper ocp:cape-universal: Allocated GPIO id=30
[ 15.899869] gpio-of-helper ocp:cape-universal: Allocated GPIO id=31
[ 15.900018] gpio-of-helper ocp:cape-universal: Allocated GPIO id=32
[ 15.900170] gpio-of-helper ocp:cape-universal: Allocated GPIO id=33
[ 15.900326] gpio-of-helper ocp:cape-universal: Allocated GPIO id=34
[ 15.900483] gpio-of-helper ocp:cape-universal: Allocated GPIO id=35
[ 15.900635] gpio-of-helper ocp:cape-universal: Allocated GPIO id=36
[ 15.900787] gpio-of-helper ocp:cape-universal: Allocated GPIO id=37
[ 15.900943] gpio-of-helper ocp:cape-universal: Allocated GPIO id=38
[ 15.925401] gpio-of-helper ocp:cape-universal: Allocated GPIO id=39
[ 15.925639] gpio-of-helper ocp:cape-universal: Allocated GPIO id=40
[ 15.925826] gpio-of-helper ocp:cape-universal: Allocated GPIO id=41
[ 15.925982] gpio-of-helper ocp:cape-universal: Allocated GPIO id=42
[ 15.926148] gpio-of-helper ocp:cape-universal: Allocated GPIO id=43
[ 15.926314] gpio-of-helper ocp:cape-universal: Allocated GPIO id=44
[ 15.926467] gpio-of-helper ocp:cape-universal: Allocated GPIO id=45
[ 15.926627] gpio-of-helper ocp:cape-universal: Allocated GPIO id=46
[ 15.926783] gpio-of-helper ocp:cape-universal: Allocated GPIO id=47
[ 15.926937] gpio-of-helper ocp:cape-universal: Allocated GPIO id=48
[ 15.927101] gpio-of-helper ocp:cape-universal: Allocated GPIO id=49
[ 15.927255] gpio-of-helper ocp:cape-universal: Allocated GPIO id=50
[ 15.927412] gpio-of-helper ocp:cape-universal: Allocated GPIO id=51
[ 15.927582] gpio-of-helper ocp:cape-universal: Allocated GPIO id=52
[ 15.927738] gpio-of-helper ocp:cape-universal: Allocated GPIO id=53
[ 15.927898] gpio-of-helper ocp:cape-universal: Allocated GPIO id=54
[ 15.928057] gpio-of-helper ocp:cape-universal: Allocated GPIO id=55
[ 15.928216] gpio-of-helper ocp:cape-universal: Allocated GPIO id=56
[ 15.928226] gpio-of-helper ocp:cape-universal: ready
[ 15.961446] 48022000.serial: ttyS1 at MMIO 0x48022000 (irq = 198, base_baud = 3000000) is a 8250
[ 15.973430] 48024000.serial: ttyS2 at MMIO 0x48024000 (irq = 199, base_baud = 3000000) is a 8250
[ 15.990701] 481a8000.serial: ttyS4 at MMIO 0x481a8000 (irq = 200, base_baud = 3000000) is a 8250
[ 16.009466] 481aa000.serial: ttyS5 at MMIO 0x481aa000 (irq = 201, base_baud = 3000000) is a 8250
[ 16.023277] platform 48300180.eqep: Cannot lookup hwmod ‘eqep0’
[ 16.098191] platform 48302180.eqep: Cannot lookup hwmod ‘eqep1’
[ 16.151017] platform 48304180.eqep: Cannot lookup hwmod ‘eqep2’
[ 16.208520] omap_i2c 4802a000.i2c: bus 1 rev0.11 at 100 kHz
[ 16.222583] bone_capemgr bone_capemgr: slot #4: dtbo ‘univ-emmc-00A0.dtbo’ loaded; overlay id #0
[ 17.399154] eqep 48300180.eqep: ver. 1.0
[ 17.399230] eqep 48300180.eqep: failed to get clock
[ 17.785585] eqep: probe of 48300180.eqep failed with error -2
[ 17.810358] eqep 48302180.eqep: ver. 1.0
[ 17.810449] eqep 48302180.eqep: failed to get clock
[ 18.059335] CAN device driver interface
[ 18.109379] eqep: probe of 48302180.eqep failed with error -2
[ 18.109673] eqep 48304180.eqep: ver. 1.0
[ 18.109736] eqep 48304180.eqep: failed to get clock
[ 18.285329] c_can_platform 481cc000.can: c_can_platform device registered (regs=fa1cc000, irq=208)
[ 18.299773] eqep: probe of 48304180.eqep failed with error -2
[ 18.318307] c_can_platform 481d0000.can: c_can_platform device registered (regs=fa1d0000, irq=209)

the bootlog with the re-compiled dtbo file:

[ 11.830861] remoteproc1: 4a334000.pru0 is available
[ 11.830885] remoteproc1: Note: remoteproc is still under development and considered experimental.
[ 11.830894] remoteproc1: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn’t yet guaranteed.
[ 11.888877] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2
[ 11.895733] pru-rproc 4a334000.pru0: booting the PRU core manually
[ 11.895761] remoteproc1: powering up 4a334000.pru0
[ 11.896058] remoteproc1: Booting fw image am335x-pru0-fw, size 34452
[ 11.896147] ti-pruss 4a300000.pruss: configured system_events = 0x0000000000010000 intr_channels = 0x00000002 host_intr = 0x00000002
[ 11.896158] remoteproc1: remote processor 4a334000.pru0 is now up
[ 11.896188] pru-rproc 4a334000.pru0: PRU rproc node /ocp/pruss@4a300000/pru0@4a334000 probed successfully
[ 11.911380] remoteproc2: 4a338000.pru1 is available
[ 11.911404] remoteproc2: Note: remoteproc is still under development and considered experimental.
[ 11.911412] remoteproc2: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn’t yet guaranteed.
[ 11.977236] pru-rproc 4a338000.pru1: booting the PRU core manually
[ 11.977270] remoteproc2: powering up 4a338000.pru1
[ 11.977540] remoteproc2: Booting fw image am335x-pru1-fw, size 27376
[ 11.977607] remoteproc2: remote processor 4a338000.pru1 is now up
[ 11.977639] pru-rproc 4a338000.pru1: PRU rproc node /ocp/pruss@4a300000/pru1@4a338000 probed successfully
[ 12.409835] cpsw 4a100000.ethernet eth0: Link is Up - 100Mbps/Full - flow control rx/tx
[ 12.409912] IPv6: ADDRCONF(NETDEV_CHANGE): eth0: link becomes ready
[ 12.551321] 8021q: 802.1Q VLAN Support v1.8
[ 12.551395] 8021q: adding VLAN 0 to HW filter on device eth0
[ 15.330797] bone_capemgr bone_capemgr: part_number ‘univ-emmc’, version ‘N/A’
[ 15.330832] bone_capemgr bone_capemgr: slot #4: override
[ 15.330847] bone_capemgr bone_capemgr: Using override eeprom data at slot 4
[ 15.330863] bone_capemgr bone_capemgr: slot #4: ‘Override Board Name,00A0,Override Manuf,univ-emmc’
[ 15.677558] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 15.688557] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 15.697715] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 15.698446] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 15.698972] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 15.699465] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 15.699927] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 15.700372] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 15.700823] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 15.728598] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 15.738017] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 15.738763] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 15.739276] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 15.739734] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 15.740195] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 15.740639] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 15.769290] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 15.770200] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe
[ 15.770772] bone-pinmux-helper ocp:P8_31_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer7_fck, deferring probe
[ 15.771264] bone-pinmux-helper ocp:P8_32_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l4hs_gclk, deferring probe
[ 15.771759] bone-pinmux-helper ocp:P8_33_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/gpio0_dbclk, deferring probe
[ 15.772211] bone-pinmux-helper ocp:P8_34_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/mmc_clk, deferring probe
[ 15.772652] bone-pinmux-helper ocp:P8_35_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clockdomains, deferring probe
[ 15.805257] bone-pinmux-helper ocp:P8_36_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks, deferring probe
[ 15.806150] bone-pinmux-helper ocp:P8_37_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/smartreflex1_fck, deferring probe
[ 15.806708] bone-pinmux-helper ocp:P8_38_pinmux: could not find pctldev for node /ocp/emif@4c000000, deferring probe
[ 15.807205] bone-pinmux-helper ocp:P8_39_pinmux: could not find pctldev for node /ocp/serial@481a6000, deferring probe
[ 15.807672] bone-pinmux-helper ocp:P8_40_pinmux: could not find pctldev for node /ocp/i2c@44e0b000/tps@24/regulators/regulator@2, deferring probe
[ 15.808109] bone-pinmux-helper ocp:P8_41_pinmux: could not find pctldev for node /ocp/i2c@4802a000, deferring probe
[ 15.808554] bone-pinmux-helper ocp:P8_42_pinmux: could not find pctldev for node /ocp/mmc@48060000, deferring probe
[ 15.809140] bone-pinmux-helper ocp:P8_43_pinmux: could not find pctldev for node /ocp/can@481d0000, deferring probe
[ 15.842136] bone-pinmux-helper ocp:P8_44_pinmux: could not find pctldev for node /ocp/timer@4804a000, deferring probe
[ 15.842725] bone-pinmux-helper ocp:P8_45_pinmux: could not find pctldev for node /ocp/epwmss@48300000, deferring probe
[ 15.843213] bone-pinmux-helper ocp:P8_46_pinmux: could not find pctldev for node /ocp/epwmss@48302000/pwm@48302200, deferring probe
[ 15.843673] bone-pinmux-helper ocp:P9_11_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/slave@4a100300, deferring probe
[ 15.844126] bone-pinmux-helper ocp:P9_12_pinmux: could not find pctldev for node /ocp/pruss@4a300000/pru0@4a334000, deferring probe
[ 15.844570] bone-pinmux-helper ocp:P9_13_pinmux: could not find pctldev for node /ocp/lcdc@4830e000, deferring probe
[ 15.865249] bone-pinmux-helper ocp:P9_14_pinmux: could not find pctldev for node /ocp/aes@53500000, deferring probe
[ 15.866164] bone-pinmux-helper ocp:P9_15_pinmux: could not find pctldev for node /bone_capemgr/baseboardmaps/board@0, deferring probe
[ 15.867137] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 15.867436] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 15.867673] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 15.867900] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 15.868124] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 15.868346] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 15.868567] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 15.868784] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 15.870216] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 15.870689] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 15.870977] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 15.871220] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 15.871449] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 15.871672] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 15.871896] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 15.872115] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 15.872339] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 15.872561] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe
[ 15.872782] bone-pinmux-helper ocp:P8_31_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer7_fck, deferring probe
[ 15.897290] bone-pinmux-helper ocp:P8_32_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l4hs_gclk, deferring probe
[ 15.897845] bone-pinmux-helper ocp:P8_33_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/gpio0_dbclk, deferring probe
[ 15.898129] bone-pinmux-helper ocp:P8_34_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/mmc_clk, deferring probe
[ 15.898369] bone-pinmux-helper ocp:P8_35_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clockdomains, deferring probe
[ 15.898599] bone-pinmux-helper ocp:P8_36_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks, deferring probe
[ 15.898825] bone-pinmux-helper ocp:P8_37_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/smartreflex1_fck, deferring probe
[ 15.899045] bone-pinmux-helper ocp:P8_38_pinmux: could not find pctldev for node /ocp/emif@4c000000, deferring probe
[ 15.899263] bone-pinmux-helper ocp:P8_39_pinmux: could not find pctldev for node /ocp/serial@481a6000, deferring probe
[ 15.899484] bone-pinmux-helper ocp:P8_40_pinmux: could not find pctldev for node /ocp/i2c@44e0b000/tps@24/regulators/regulator@2, deferring probe
[ 15.899701] bone-pinmux-helper ocp:P8_41_pinmux: could not find pctldev for node /ocp/i2c@4802a000, deferring probe
[ 15.899918] bone-pinmux-helper ocp:P8_42_pinmux: could not find pctldev for node /ocp/mmc@48060000, deferring probe
[ 15.900136] bone-pinmux-helper ocp:P8_43_pinmux: could not find pctldev for node /ocp/can@481d0000, deferring probe
[ 15.900354] bone-pinmux-helper ocp:P8_44_pinmux: could not find pctldev for node /ocp/timer@4804a000, deferring probe
[ 15.900574] bone-pinmux-helper ocp:P8_45_pinmux: could not find pctldev for node /ocp/epwmss@48300000, deferring probe
[ 15.900792] bone-pinmux-helper ocp:P8_46_pinmux: could not find pctldev for node /ocp/epwmss@48302000/pwm@48302200, deferring probe
[ 15.929279] bone-pinmux-helper ocp:P9_11_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/slave@4a100300, deferring probe
[ 15.929841] bone-pinmux-helper ocp:P9_12_pinmux: could not find pctldev for node /ocp/pruss@4a300000/pru0@4a334000, deferring probe
[ 15.930126] bone-pinmux-helper ocp:P9_13_pinmux: could not find pctldev for node /ocp/lcdc@4830e000, deferring probe
[ 15.930368] bone-pinmux-helper ocp:P9_14_pinmux: could not find pctldev for node /ocp/aes@53500000, deferring probe
[ 15.930594] bone-pinmux-helper ocp:P9_15_pinmux: could not find pctldev for node /bone_capemgr/baseboardmaps/board@0, deferring probe
[ 15.930815] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 15.931034] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 15.931255] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 15.931478] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 15.931698] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 15.931920] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 15.932142] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 15.932363] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 15.932581] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 15.932826] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 15.965267] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 15.965718] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 15.965989] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 15.966225] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 15.966453] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 15.966675] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 15.966900] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 15.967124] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe
[ 15.967347] bone-pinmux-helper ocp:P8_31_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer7_fck, deferring probe
[ 15.967570] bone-pinmux-helper ocp:P8_32_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l4hs_gclk, deferring probe
[ 15.967792] bone-pinmux-helper ocp:P8_33_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/gpio0_dbclk, deferring probe
[ 15.968011] bone-pinmux-helper ocp:P8_34_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/mmc_clk, deferring probe
[ 15.968231] bone-pinmux-helper ocp:P8_35_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clockdomains, deferring probe
[ 15.968451] bone-pinmux-helper ocp:P8_36_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks, deferring probe
[ 15.968673] bone-pinmux-helper ocp:P8_37_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/smartreflex1_fck, deferring probe
[ 15.968890] bone-pinmux-helper ocp:P8_38_pinmux: could not find pctldev for node /ocp/emif@4c000000, deferring probe
[ 15.995032] bone-pinmux-helper ocp:P8_39_pinmux: could not find pctldev for node /ocp/serial@481a6000, deferring probe
[ 15.995469] bone-pinmux-helper ocp:P8_40_pinmux: could not find pctldev for node /ocp/i2c@44e0b000/tps@24/regulators/regulator@2, deferring probe
[ 15.995732] bone-pinmux-helper ocp:P8_41_pinmux: could not find pctldev for node /ocp/i2c@4802a000, deferring probe
[ 15.995970] bone-pinmux-helper ocp:P8_42_pinmux: could not find pctldev for node /ocp/mmc@48060000, deferring probe
[ 15.996196] bone-pinmux-helper ocp:P8_43_pinmux: could not find pctldev for node /ocp/can@481d0000, deferring probe
[ 15.996419] bone-pinmux-helper ocp:P8_44_pinmux: could not find pctldev for node /ocp/timer@4804a000, deferring probe
[ 15.996638] bone-pinmux-helper ocp:P8_45_pinmux: could not find pctldev for node /ocp/epwmss@48300000, deferring probe
[ 15.996857] bone-pinmux-helper ocp:P8_46_pinmux: could not find pctldev for node /ocp/epwmss@48302000/pwm@48302200, deferring probe
[ 16.013983] bone-pinmux-helper ocp:P9_11_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/slave@4a100300, deferring probe
[ 16.014558] bone-pinmux-helper ocp:P9_12_pinmux: could not find pctldev for node /ocp/pruss@4a300000/pru0@4a334000, deferring probe
[ 16.014855] bone-pinmux-helper ocp:P9_13_pinmux: could not find pctldev for node /ocp/lcdc@4830e000, deferring probe
[ 16.015098] bone-pinmux-helper ocp:P9_14_pinmux: could not find pctldev for node /ocp/aes@53500000, deferring probe
[ 16.015329] bone-pinmux-helper ocp:P9_15_pinmux: could not find pctldev for node /bone_capemgr/baseboardmaps/board@0, deferring probe
[ 16.015556] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 16.015778] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 16.015999] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 16.016221] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 16.016443] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 16.016668] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 16.016890] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 16.029779] gpio-of-helper ocp:cape-universal: Allocated GPIO id=0
[ 16.029983] gpio-of-helper ocp:cape-universal: Allocated GPIO id=1
[ 16.030144] gpio-of-helper ocp:cape-universal: Allocated GPIO id=2
[ 16.030309] gpio-of-helper ocp:cape-universal: Allocated GPIO id=3
[ 16.030471] gpio-of-helper ocp:cape-universal: Allocated GPIO id=4
[ 16.030624] gpio-of-helper ocp:cape-universal: Allocated GPIO id=5
[ 16.030782] gpio-of-helper ocp:cape-universal: Allocated GPIO id=6
[ 16.030940] gpio-of-helper ocp:cape-universal: Allocated GPIO id=7
[ 16.031091] gpio-of-helper ocp:cape-universal: Allocated GPIO id=8
[ 16.031249] gpio-of-helper ocp:cape-universal: Allocated GPIO id=9
[ 16.031403] gpio-of-helper ocp:cape-universal: Allocated GPIO id=10
[ 16.031564] gpio-of-helper ocp:cape-universal: Allocated GPIO id=11
[ 16.031728] gpio-of-helper ocp:cape-universal: Allocated GPIO id=12
[ 16.031887] gpio-of-helper ocp:cape-universal: Allocated GPIO id=13
[ 16.032047] gpio-of-helper ocp:cape-universal: Allocated GPIO id=14
[ 16.032206] gpio-of-helper ocp:cape-universal: Allocated GPIO id=15
[ 16.032362] gpio-of-helper ocp:cape-universal: Allocated GPIO id=16
[ 16.032525] gpio-of-helper ocp:cape-universal: Allocated GPIO id=17
[ 16.032680] gpio-of-helper ocp:cape-universal: Allocated GPIO id=18
[ 16.032839] gpio-of-helper ocp:cape-universal: Allocated GPIO id=19
[ 16.047603] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 16.048041] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 16.048335] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 16.048629] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 16.048870] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 16.060724] gpio-of-helper ocp:cape-universal: Allocated GPIO id=20
[ 16.061747] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 16.062307] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 16.062597] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 16.063797] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 16.064151] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 16.064407] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe
[ 16.064641] bone-pinmux-helper ocp:P8_31_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer7_fck, deferring probe
[ 16.064869] bone-pinmux-helper ocp:P8_32_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l4hs_gclk, deferring probe
[ 16.066826] gpio-of-helper ocp:cape-universal: Allocated GPIO id=21
[ 16.067061] gpio-of-helper ocp:cape-universal: Allocated GPIO id=22
[ 16.067278] gpio-of-helper ocp:cape-universal: Allocated GPIO id=23
[ 16.067432] gpio-of-helper ocp:cape-universal: Allocated GPIO id=24
[ 16.067594] gpio-of-helper ocp:cape-universal: Allocated GPIO id=25
[ 16.067739] gpio-of-helper ocp:cape-universal: Allocated GPIO id=26
[ 16.067882] gpio-of-helper ocp:cape-universal: Allocated GPIO id=27
[ 16.068032] gpio-of-helper ocp:cape-universal: Allocated GPIO id=28
[ 16.068177] gpio-of-helper ocp:cape-universal: Allocated GPIO id=29
[ 16.068331] gpio-of-helper ocp:cape-universal: Allocated GPIO id=30
[ 16.068477] gpio-of-helper ocp:cape-universal: Allocated GPIO id=31
[ 16.068623] gpio-of-helper ocp:cape-universal: Allocated GPIO id=32
[ 16.068773] gpio-of-helper ocp:cape-universal: Allocated GPIO id=33
[ 16.068927] gpio-of-helper ocp:cape-universal: Allocated GPIO id=34
[ 16.084509] bone-pinmux-helper ocp:P8_33_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/gpio0_dbclk, deferring probe
[ 16.085904] bone-pinmux-helper ocp:P8_34_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/mmc_clk, deferring probe
[ 16.086345] bone-pinmux-helper ocp:P8_35_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clockdomains, deferring probe
[ 16.086624] bone-pinmux-helper ocp:P8_36_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks, deferring probe
[ 16.086868] bone-pinmux-helper ocp:P8_37_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/smartreflex1_fck, deferring probe
[ 16.087094] bone-pinmux-helper ocp:P8_38_pinmux: could not find pctldev for node /ocp/emif@4c000000, deferring probe
[ 16.087432] gpio-of-helper ocp:cape-universal: Allocated GPIO id=35
[ 16.087653] gpio-of-helper ocp:cape-universal: Allocated GPIO id=36
[ 16.087807] gpio-of-helper ocp:cape-universal: Allocated GPIO id=37
[ 16.087966] gpio-of-helper ocp:cape-universal: Allocated GPIO id=38
[ 16.088127] gpio-of-helper ocp:cape-universal: Allocated GPIO id=39
[ 16.088277] gpio-of-helper ocp:cape-universal: Allocated GPIO id=40
[ 16.088436] gpio-of-helper ocp:cape-universal: Allocated GPIO id=41
[ 16.088592] gpio-of-helper ocp:cape-universal: Allocated GPIO id=42
[ 16.088749] gpio-of-helper ocp:cape-universal: Allocated GPIO id=43
[ 16.088914] gpio-of-helper ocp:cape-universal: Allocated GPIO id=44
[ 16.102787] gpio-of-helper ocp:cape-universal: Allocated GPIO id=45
[ 16.103020] gpio-of-helper ocp:cape-universal: Allocated GPIO id=46
[ 16.103187] gpio-of-helper ocp:cape-universal: Allocated GPIO id=47
[ 16.103339] gpio-of-helper ocp:cape-universal: Allocated GPIO id=48
[ 16.103502] gpio-of-helper ocp:cape-universal: Allocated GPIO id=49
[ 16.103651] gpio-of-helper ocp:cape-universal: Allocated GPIO id=50
[ 16.103800] gpio-of-helper ocp:cape-universal: Allocated GPIO id=51
[ 16.103958] gpio-of-helper ocp:cape-universal: Allocated GPIO id=52
[ 16.104121] gpio-of-helper ocp:cape-universal: Allocated GPIO id=53
[ 16.104278] gpio-of-helper ocp:cape-universal: Allocated GPIO id=54
[ 16.104431] gpio-of-helper ocp:cape-universal: Allocated GPIO id=55
[ 16.104590] gpio-of-helper ocp:cape-universal: Allocated GPIO id=56
[ 16.104601] gpio-of-helper ocp:cape-universal: ready
[ 16.106108] bone-pinmux-helper ocp:P8_39_pinmux: could not find pctldev for node /ocp/serial@481a6000, deferring probe
[ 16.106618] bone-pinmux-helper ocp:P8_40_pinmux: could not find pctldev for node /ocp/i2c@44e0b000/tps@24/regulators/regulator@2, deferring probe
[ 16.106896] bone-pinmux-helper ocp:P8_41_pinmux: could not find pctldev for node /ocp/i2c@4802a000, deferring probe
[ 16.107137] bone-pinmux-helper ocp:P8_42_pinmux: could not find pctldev for node /ocp/mmc@48060000, deferring probe
[ 16.107371] bone-pinmux-helper ocp:P8_43_pinmux: could not find pctldev for node /ocp/can@481d0000, deferring probe
[ 16.107595] bone-pinmux-helper ocp:P8_44_pinmux: could not find pctldev for node /ocp/timer@4804a000, deferring probe
[ 16.107817] bone-pinmux-helper ocp:P8_45_pinmux: could not find pctldev for node /ocp/epwmss@48300000, deferring probe
[ 16.108042] bone-pinmux-helper ocp:P8_46_pinmux: could not find pctldev for node /ocp/epwmss@48302000/pwm@48302200, deferring probe
[ 16.108262] bone-pinmux-helper ocp:P9_11_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/slave@4a100300, deferring probe
[ 16.108485] bone-pinmux-helper ocp:P9_12_pinmux: could not find pctldev for node /ocp/pruss@4a300000/pru0@4a334000, deferring probe
[ 16.108705] bone-pinmux-helper ocp:P9_13_pinmux: could not find pctldev for node /ocp/lcdc@4830e000, deferring probe
[ 16.108926] bone-pinmux-helper ocp:P9_14_pinmux: could not find pctldev for node /ocp/aes@53500000, deferring probe
[ 16.137544] bone-pinmux-helper ocp:P9_15_pinmux: could not find pctldev for node /bone_capemgr/baseboardmaps/board@0, deferring probe
[ 16.137987] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 16.138250] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 16.138488] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 16.138715] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 16.138940] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 16.139165] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 16.139387] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 16.139608] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 16.139828] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 16.140075] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 16.140352] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 16.140584] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 16.140811] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 16.142498] 48022000.serial: ttyS1 at MMIO 0x48022000 (irq = 198, base_baud = 3000000) is a 8250
[ 16.157408] 48024000.serial: ttyS2 at MMIO 0x48024000 (irq = 199, base_baud = 3000000) is a 8250
[ 16.169174] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 16.169724] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 16.170014] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 16.170264] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 16.170496] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe
[ 16.170721] bone-pinmux-helper ocp:P8_31_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer7_fck, deferring probe
[ 16.170947] bone-pinmux-helper ocp:P8_32_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l4hs_gclk, deferring probe
[ 16.171173] bone-pinmux-helper ocp:P8_33_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/gpio0_dbclk, deferring probe
[ 16.171398] bone-pinmux-helper ocp:P8_34_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/mmc_clk, deferring probe
[ 16.171623] bone-pinmux-helper ocp:P8_35_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clockdomains, deferring probe
[ 16.171846] bone-pinmux-helper ocp:P8_36_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks, deferring probe
[ 16.172068] bone-pinmux-helper ocp:P8_37_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/smartreflex1_fck, deferring probe
[ 16.172286] bone-pinmux-helper ocp:P8_38_pinmux: could not find pctldev for node /ocp/emif@4c000000, deferring probe
[ 16.172505] bone-pinmux-helper ocp:P8_39_pinmux: could not find pctldev for node /ocp/serial@481a6000, deferring probe
[ 16.172729] bone-pinmux-helper ocp:P8_40_pinmux: could not find pctldev for node /ocp/i2c@44e0b000/tps@24/regulators/regulator@2, deferring probe
[ 16.172949] bone-pinmux-helper ocp:P8_41_pinmux: could not find pctldev for node /ocp/i2c@4802a000, deferring probe
[ 16.178748] 481a8000.serial: ttyS4 at MMIO 0x481a8000 (irq = 200, base_baud = 3000000) is a 8250
[ 16.200721] 481aa000.serial: ttyS5 at MMIO 0x481aa000 (irq = 201, base_baud = 3000000) is a 8250
[ 16.210424] bone-pinmux-helper ocp:P8_42_pinmux: could not find pctldev for node /ocp/mmc@48060000, deferring probe
[ 16.210789] bone-pinmux-helper ocp:P8_43_pinmux: could not find pctldev for node /ocp/can@481d0000, deferring probe
[ 16.211045] bone-pinmux-helper ocp:P8_44_pinmux: could not find pctldev for node /ocp/timer@4804a000, deferring probe
[ 16.211279] bone-pinmux-helper ocp:P8_45_pinmux: could not find pctldev for node /ocp/epwmss@48300000, deferring probe
[ 16.211504] bone-pinmux-helper ocp:P8_46_pinmux: could not find pctldev for node /ocp/epwmss@48302000/pwm@48302200, deferring probe
[ 16.211728] bone-pinmux-helper ocp:P9_11_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/slave@4a100300, deferring probe
[ 16.211950] bone-pinmux-helper ocp:P9_12_pinmux: could not find pctldev for node /ocp/pruss@4a300000/pru0@4a334000, deferring probe
[ 16.212174] bone-pinmux-helper ocp:P9_13_pinmux: could not find pctldev for node /ocp/lcdc@4830e000, deferring probe
[ 16.212391] bone-pinmux-helper ocp:P9_14_pinmux: could not find pctldev for node /ocp/aes@53500000, deferring probe
[ 16.212611] bone-pinmux-helper ocp:P9_15_pinmux: could not find pctldev for node /bone_capemgr/baseboardmaps/board@0, deferring probe
[ 16.212831] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 16.233234] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 16.233803] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 16.234097] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 16.234343] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 16.234578] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 16.234806] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 16.235030] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 16.235253] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 16.235504] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 16.235785] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 16.236017] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 16.236243] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 16.236466] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 16.236692] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 16.236912] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 16.253523] omap_i2c 4802a000.i2c: bus 1 rev0.11 at 100 kHz
[ 16.261484] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 16.261919] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe
[ 16.262190] bone-pinmux-helper ocp:P8_31_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer7_fck, deferring probe
[ 16.262431] bone-pinmux-helper ocp:P8_32_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l4hs_gclk, deferring probe
[ 16.262659] bone-pinmux-helper ocp:P8_33_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/gpio0_dbclk, deferring probe
[ 16.262885] bone-pinmux-helper ocp:P8_34_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/mmc_clk, deferring probe
[ 16.263112] bone-pinmux-helper ocp:P8_35_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clockdomains, deferring probe
[ 16.263334] bone-pinmux-helper ocp:P8_36_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks, deferring probe
[ 16.263557] bone-pinmux-helper ocp:P8_37_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/smartreflex1_fck, deferring probe
[ 16.263777] bone-pinmux-helper ocp:P8_38_pinmux: could not find pctldev for node /ocp/emif@4c000000, deferring probe
[ 16.263996] bone-pinmux-helper ocp:P8_39_pinmux: could not find pctldev for node /ocp/serial@481a6000, deferring probe
[ 16.264222] bone-pinmux-helper ocp:P8_40_pinmux: could not find pctldev for node /ocp/i2c@44e0b000/tps@24/regulators/regulator@2, deferring probe
[ 16.264442] bone-pinmux-helper ocp:P8_41_pinmux: could not find pctldev for node /ocp/i2c@4802a000, deferring probe
[ 16.264661] bone-pinmux-helper ocp:P8_42_pinmux: could not find pctldev for node /ocp/mmc@48060000, deferring probe
[ 16.264880] bone-pinmux-helper ocp:P8_43_pinmux: could not find pctldev for node /ocp/can@481d0000, deferring probe
[ 16.274851] bone_capemgr bone_capemgr: slot #4: dtbo ‘univ-emmc-00A0.dtbo’ loaded; overlay id #0
[ 16.293252] bone-pinmux-helper ocp:P8_44_pinmux: could not find pctldev for node /ocp/timer@4804a000, deferring probe
[ 16.293821] bone-pinmux-helper ocp:P8_45_pinmux: could not find pctldev for node /ocp/epwmss@48300000, deferring probe
[ 16.294120] bone-pinmux-helper ocp:P8_46_pinmux: could not find pctldev for node /ocp/epwmss@48302000/pwm@48302200, deferring probe
[ 16.294366] bone-pinmux-helper ocp:P9_11_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/slave@4a100300, deferring probe
[ 16.294599] bone-pinmux-helper ocp:P9_12_pinmux: could not find pctldev for node /ocp/pruss@4a300000/pru0@4a334000, deferring probe
[ 16.294821] bone-pinmux-helper ocp:P9_13_pinmux: could not find pctldev for node /ocp/lcdc@4830e000, deferring probe
[ 16.295044] bone-pinmux-helper ocp:P9_14_pinmux: could not find pctldev for node /ocp/aes@53500000, deferring probe
[ 16.295263] bone-pinmux-helper ocp:P9_15_pinmux: could not find pctldev for node /bone_capemgr/baseboardmaps/board@0, deferring probe
[ 16.295482] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 16.295703] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 16.295922] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 16.296142] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 16.296363] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 16.296584] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 16.296806] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 16.320345] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 16.320913] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 16.322128] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 16.322524] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 16.322783] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 16.323016] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 16.323244] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 16.323469] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 16.323688] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 18.101364] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 18.101792] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe
[ 18.102059] bone-pinmux-helper ocp:P8_31_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer7_fck, deferring probe
[ 18.102299] bone-pinmux-helper ocp:P8_32_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l4hs_gclk, deferring probe
[ 18.102531] bone-pinmux-helper ocp:P8_33_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/gpio0_dbclk, deferring probe
[ 18.102754] bone-pinmux-helper ocp:P8_34_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/mmc_clk, deferring probe
[ 18.102974] bone-pinmux-helper ocp:P8_35_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clockdomains, deferring probe
[ 18.103196] bone-pinmux-helper ocp:P8_36_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks, deferring probe
[ 18.103419] bone-pinmux-helper ocp:P8_37_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/smartreflex1_fck, deferring probe
[ 18.103638] bone-pinmux-helper ocp:P8_38_pinmux: could not find pctldev for node /ocp/emif@4c000000, deferring probe
[ 18.103854] bone-pinmux-helper ocp:P8_39_pinmux: could not find pctldev for node /ocp/serial@481a6000, deferring probe
[ 18.104077] bone-pinmux-helper ocp:P8_40_pinmux: could not find pctldev for node /ocp/i2c@44e0b000/tps@24/regulators/regulator@2, deferring probe
[ 18.104299] bone-pinmux-helper ocp:P8_41_pinmux: could not find pctldev for node /ocp/i2c@4802a000, deferring probe
[ 18.104521] bone-pinmux-helper ocp:P8_42_pinmux: could not find pctldev for node /ocp/mmc@48060000, deferring probe
[ 18.104744] bone-pinmux-helper ocp:P8_43_pinmux: could not find pctldev for node /ocp/can@481d0000, deferring probe
[ 18.104963] bone-pinmux-helper ocp:P8_44_pinmux: could not find pctldev for node /ocp/timer@4804a000, deferring probe
[ 18.123330] bone-pinmux-helper ocp:P8_45_pinmux: could not find pctldev for node /ocp/epwmss@48300000, deferring probe
[ 18.123774] bone-pinmux-helper ocp:P8_46_pinmux: could not find pctldev for node /ocp/epwmss@48302000/pwm@48302200, deferring probe
[ 18.124038] bone-pinmux-helper ocp:P9_11_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/slave@4a100300, deferring probe
[ 18.124275] bone-pinmux-helper ocp:P9_12_pinmux: could not find pctldev for node /ocp/pruss@4a300000/pru0@4a334000, deferring probe
[ 18.124504] bone-pinmux-helper ocp:P9_13_pinmux: could not find pctldev for node /ocp/lcdc@4830e000, deferring probe
[ 18.124727] bone-pinmux-helper ocp:P9_14_pinmux: could not find pctldev for node /ocp/aes@53500000, deferring probe
[ 18.124947] bone-pinmux-helper ocp:P9_15_pinmux: could not find pctldev for node /bone_capemgr/baseboardmaps/board@0, deferring probe
[ 18.131449] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 18.131877] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 18.132141] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 18.132376] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 18.132600] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 18.132829] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 18.148216] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 18.148783] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 18.157299] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 18.157881] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 18.158233] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 18.158489] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 18.158723] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 18.158951] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 18.159179] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 18.159402] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 18.186140] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 18.186580] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe
[ 18.186842] bone-pinmux-helper ocp:P8_31_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer7_fck, deferring probe
[ 18.187084] bone-pinmux-helper ocp:P8_32_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l4hs_gclk, deferring probe
[ 18.187316] bone-pinmux-helper ocp:P8_33_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/gpio0_dbclk, deferring probe
[ 18.187542] bone-pinmux-helper ocp:P8_34_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/mmc_clk, deferring probe
[ 18.187766] bone-pinmux-helper ocp:P8_35_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clockdomains, deferring probe
[ 18.187994] bone-pinmux-helper ocp:P8_36_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks, deferring probe
[ 18.188223] bone-pinmux-helper ocp:P8_37_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/smartreflex1_fck, deferring probe
[ 18.188447] bone-pinmux-helper ocp:P8_38_pinmux: could not find pctldev for node /ocp/emif@4c000000, deferring probe
[ 18.188668] bone-pinmux-helper ocp:P8_39_pinmux: could not find pctldev for node /ocp/serial@481a6000, deferring probe
[ 18.188893] bone-pinmux-helper ocp:P8_40_pinmux: could not find pctldev for node /ocp/i2c@44e0b000/tps@24/regulators/regulator@2, deferring probe
[ 18.197412] bone-pinmux-helper ocp:P8_41_pinmux: could not find pctldev for node /ocp/i2c@4802a000, deferring probe
[ 18.197845] bone-pinmux-helper ocp:P8_42_pinmux: could not find pctldev for node /ocp/mmc@48060000, deferring probe
[ 18.198112] bone-pinmux-helper ocp:P8_43_pinmux: could not find pctldev for node /ocp/can@481d0000, deferring probe
[ 18.198355] bone-pinmux-helper ocp:P8_44_pinmux: could not find pctldev for node /ocp/timer@4804a000, deferring probe
[ 18.198582] bone-pinmux-helper ocp:P8_45_pinmux: could not find pctldev for node /ocp/epwmss@48300000, deferring probe
[ 18.198806] bone-pinmux-helper ocp:P8_46_pinmux: could not find pctldev for node /ocp/epwmss@48302000/pwm@48302200, deferring probe
[ 18.199029] bone-pinmux-helper ocp:P9_11_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/slave@4a100300, deferring probe
[ 18.199253] bone-pinmux-helper ocp:P9_12_pinmux: could not find pctldev for node /ocp/pruss@4a300000/pru0@4a334000, deferring probe
[ 18.199478] bone-pinmux-helper ocp:P9_13_pinmux: could not find pctldev for node /ocp/lcdc@4830e000, deferring probe
[ 18.199700] bone-pinmux-helper ocp:P9_14_pinmux: could not find pctldev for node /ocp/aes@53500000, deferring probe
[ 18.199922] bone-pinmux-helper ocp:P9_15_pinmux: could not find pctldev for node /bone_capemgr/baseboardmaps/board@0, deferring probe
[ 18.200145] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 18.200369] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 18.200591] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 18.200813] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 18.221796] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 18.222381] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 18.222679] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 18.222918] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 18.223154] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 18.223406] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 18.223695] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 18.223931] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 18.224159] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 18.224383] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 18.224610] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 18.224834] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 18.247841] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 18.248282] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe
[ 18.248551] bone-pinmux-helper ocp:P8_31_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer7_fck, deferring probe
[ 18.248795] bone-pinmux-helper ocp:P8_32_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l4hs_gclk, deferring probe
[ 18.257291] bone-pinmux-helper ocp:P8_33_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/gpio0_dbclk, deferring probe
[ 18.257853] bone-pinmux-helper ocp:P8_34_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/mmc_clk, deferring probe
[ 18.258150] bone-pinmux-helper ocp:P8_35_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clockdomains, deferring probe
[ 18.258401] bone-pinmux-helper ocp:P8_36_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks, deferring probe
[ 18.258638] bone-pinmux-helper ocp:P8_37_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/smartreflex1_fck, deferring probe
[ 18.258865] bone-pinmux-helper ocp:P8_38_pinmux: could not find pctldev for node /ocp/emif@4c000000, deferring probe
[ 18.259088] bone-pinmux-helper ocp:P8_39_pinmux: could not find pctldev for node /ocp/serial@481a6000, deferring probe
[ 18.259316] bone-pinmux-helper ocp:P8_40_pinmux: could not find pctldev for node /ocp/i2c@44e0b000/tps@24/regulators/regulator@2, deferring probe
[ 18.259542] bone-pinmux-helper ocp:P8_41_pinmux: could not find pctldev for node /ocp/i2c@4802a000, deferring probe
[ 18.259763] bone-pinmux-helper ocp:P8_42_pinmux: could not find pctldev for node /ocp/mmc@48060000, deferring probe
[ 18.259985] bone-pinmux-helper ocp:P8_43_pinmux: could not find pctldev for node /ocp/can@481d0000, deferring probe
[ 18.260204] bone-pinmux-helper ocp:P8_44_pinmux: could not find pctldev for node /ocp/timer@4804a000, deferring probe
[ 18.260425] bone-pinmux-helper ocp:P8_45_pinmux: could not find pctldev for node /ocp/epwmss@48300000, deferring probe
[ 18.260646] bone-pinmux-helper ocp:P8_46_pinmux: could not find pctldev for node /ocp/epwmss@48302000/pwm@48302200, deferring probe
[ 18.260869] bone-pinmux-helper ocp:P9_11_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/slave@4a100300, deferring probe
[ 18.281793] bone-pinmux-helper ocp:P9_12_pinmux: could not find pctldev for node /ocp/pruss@4a300000/pru0@4a334000, deferring probe
[ 18.282360] bone-pinmux-helper ocp:P9_13_pinmux: could not find pctldev for node /ocp/lcdc@4830e000, deferring probe
[ 18.282661] bone-pinmux-helper ocp:P9_14_pinmux: could not find pctldev for node /ocp/aes@53500000, deferring probe
[ 18.282907] bone-pinmux-helper ocp:P9_15_pinmux: could not find pctldev for node /bone_capemgr/baseboardmaps/board@0, deferring probe
[ 18.283137] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 18.283365] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 18.283591] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 18.283820] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 18.284047] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 18.284273] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 18.284498] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 18.284720] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 18.284943] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 18.309610] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 18.310111] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 18.310390] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 18.310636] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 18.310863] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 18.311091] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 18.311314] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 18.311543] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 18.311771] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe
[ 18.311997] bone-pinmux-helper ocp:P8_31_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer7_fck, deferring probe
[ 18.312223] bone-pinmux-helper ocp:P8_32_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l4hs_gclk, deferring probe
[ 18.312450] bone-pinmux-helper ocp:P8_33_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/gpio0_dbclk, deferring probe
[ 18.312675] bone-pinmux-helper ocp:P8_34_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/mmc_clk, deferring probe
[ 18.312900] bone-pinmux-helper ocp:P8_35_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clockdomains, deferring probe
[ 18.334153] bone-pinmux-helper ocp:P8_36_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks, deferring probe
[ 18.334601] bone-pinmux-helper ocp:P8_37_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/smartreflex1_fck, deferring probe
[ 18.334863] bone-pinmux-helper ocp:P8_38_pinmux: could not find pctldev for node /ocp/emif@4c000000, deferring probe
[ 18.335103] bone-pinmux-helper ocp:P8_39_pinmux: could not find pctldev for node /ocp/serial@481a6000, deferring probe
[ 18.335334] bone-pinmux-helper ocp:P8_40_pinmux: could not find pctldev for node /ocp/i2c@44e0b000/tps@24/regulators/regulator@2, deferring probe
[ 18.335556] bone-pinmux-helper ocp:P8_41_pinmux: could not find pctldev for node /ocp/i2c@4802a000, deferring probe
[ 18.335780] bone-pinmux-helper ocp:P8_42_pinmux: could not find pctldev for node /ocp/mmc@48060000, deferring probe
[ 18.336004] bone-pinmux-helper ocp:P8_43_pinmux: could not find pctldev for node /ocp/can@481d0000, deferring probe
[ 18.336227] bone-pinmux-helper ocp:P8_44_pinmux: could not find pctldev for node /ocp/timer@4804a000, deferring probe
[ 18.336447] bone-pinmux-helper ocp:P8_45_pinmux: could not find pctldev for node /ocp/epwmss@48300000, deferring probe
[ 18.336669] bone-pinmux-helper ocp:P8_46_pinmux: could not find pctldev for node /ocp/epwmss@48302000/pwm@48302200, deferring probe
[ 18.336891] bone-pinmux-helper ocp:P9_11_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/slave@4a100300, deferring probe
[ 18.357575] bone-pinmux-helper ocp:P9_12_pinmux: could not find pctldev for node /ocp/pruss@4a300000/pru0@4a334000, deferring probe
[ 18.358020] bone-pinmux-helper ocp:P9_13_pinmux: could not find pctldev for node /ocp/lcdc@4830e000, deferring probe
[ 18.358288] bone-pinmux-helper ocp:P9_14_pinmux: could not find pctldev for node /ocp/aes@53500000, deferring probe
[ 18.358529] bone-pinmux-helper ocp:P9_15_pinmux: could not find pctldev for node /bone_capemgr/baseboardmaps/board@0, deferring probe
[ 18.358762] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 18.358991] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 18.359220] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 18.359446] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 18.359673] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 18.359900] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 18.360128] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 18.360351] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 18.360574] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 18.360827] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 18.380871] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 18.382336] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 18.382710] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 18.382968] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 18.383201] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 18.383428] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 18.383655] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 18.383882] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe
[ 18.384108] bone-pinmux-helper ocp:P8_31_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer7_fck, deferring probe
[ 18.384331] bone-pinmux-helper ocp:P8_32_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l4hs_gclk, deferring probe
[ 18.384556] bone-pinmux-helper ocp:P8_33_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/gpio0_dbclk, deferring probe
[ 18.384781] bone-pinmux-helper ocp:P8_34_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/mmc_clk, deferring probe
[ 18.405302] bone-pinmux-helper ocp:P8_35_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clockdomains, deferring probe
[ 18.453752] CAN device driver interface
[ 18.621576] c_can_platform 481cc000.can: c_can_platform device registered (regs=fa1cc000, irq=205)
[ 18.622405] bone-pinmux-helper ocp:P8_36_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks, deferring probe
[ 18.622845] bone-pinmux-helper ocp:P8_37_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/smartreflex1_fck, deferring probe
[ 18.623111] bone-pinmux-helper ocp:P8_38_pinmux: could not find pctldev for node /ocp/emif@4c000000, deferring probe
[ 18.623347] bone-pinmux-helper ocp:P8_39_pinmux: could not find pctldev for node /ocp/serial@481a6000, deferring probe
[ 18.623586] bone-pinmux-helper ocp:P8_40_pinmux: could not find pctldev for node /ocp/i2c@44e0b000/tps@24/regulators/regulator@2, deferring probe
[ 18.623814] bone-pinmux-helper ocp:P8_41_pinmux: could not find pctldev for node /ocp/i2c@4802a000, deferring probe
[ 18.624039] bone-pinmux-helper ocp:P8_42_pinmux: could not find pctldev for node /ocp/mmc@48060000, deferring probe
[ 18.624266] bone-pinmux-helper ocp:P8_43_pinmux: could not find pctldev for node /ocp/can@481d0000, deferring probe
[ 18.624493] bone-pinmux-helper ocp:P8_44_pinmux: could not find pctldev for node /ocp/timer@4804a000, deferring probe
[ 18.624719] bone-pinmux-helper ocp:P8_45_pinmux: could not find pctldev for node /ocp/epwmss@48300000, deferring probe
[ 18.624941] bone-pinmux-helper ocp:P8_46_pinmux: could not find pctldev for node /ocp/epwmss@48302000/pwm@48302200, deferring probe
[ 18.628270] bone-pinmux-helper ocp:P9_11_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/slave@4a100300, deferring probe
[ 18.628694] bone-pinmux-helper ocp:P9_12_pinmux: could not find pctldev for node /ocp/pruss@4a300000/pru0@4a334000, deferring probe
[ 18.628959] bone-pinmux-helper ocp:P9_13_pinmux: could not find pctldev for node /ocp/lcdc@4830e000, deferring probe
[ 18.637548] bone-pinmux-helper ocp:P9_14_pinmux: could not find pctldev for node /ocp/aes@53500000, deferring probe
[ 18.637996] bone-pinmux-helper ocp:P9_15_pinmux: could not find pctldev for node /bone_capemgr/baseboardmaps/board@0, deferring probe
[ 18.638270] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 18.638515] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 18.638750] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 18.638981] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 18.639209] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 18.639440] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 18.639669] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 18.639891] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 18.640119] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 18.640388] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 18.640693] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 18.640934] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 18.670633] c_can_platform 481d0000.can: c_can_platform device registered (regs=fa1d0000, irq=206)
[ 18.671443] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 18.671884] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 18.672156] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 18.672397] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 18.672636] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 18.672869] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe
[ 18.686402] bone-pinmux-helper ocp:P8_31_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer7_fck, deferring probe
[ 18.686987] bone-pinmux-helper ocp:P8_32_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l4hs_gclk, deferring probe
[ 18.687288] bone-pinmux-helper ocp:P8_33_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/gpio0_dbclk, deferring probe
[ 18.687541] bone-pinmux-helper ocp:P8_34_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/mmc_clk, deferring probe
[ 18.687778] bone-pinmux-helper ocp:P8_35_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clockdomains, deferring probe
[ 18.688011] bone-pinmux-helper ocp:P8_36_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks, deferring probe
[ 18.688243] bone-pinmux-helper ocp:P8_37_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/smartreflex1_fck, deferring probe
[ 18.688470] bone-pinmux-helper ocp:P8_38_pinmux: could not find pctldev for node /ocp/emif@4c000000, deferring probe
[ 18.688697] bone-pinmux-helper ocp:P8_39_pinmux: could not find pctldev for node /ocp/serial@481a6000, deferring probe
[ 18.688926] bone-pinmux-helper ocp:P8_40_pinmux: could not find pctldev for node /ocp/i2c@44e0b000/tps@24/regulators/regulator@2, deferring probe
[ 18.706902] bone-pinmux-helper ocp:P8_41_pinmux: could not find pctldev for node /ocp/i2c@4802a000, deferring probe
[ 18.707353] bone-pinmux-helper ocp:P8_42_pinmux: could not find pctldev for node /ocp/mmc@48060000, deferring probe
[ 18.707620] bone-pinmux-helper ocp:P8_43_pinmux: could not find pctldev for node /ocp/can@481d0000, deferring probe
[ 18.707863] bone-pinmux-helper ocp:P8_44_pinmux: could not find pctldev for node /ocp/timer@4804a000, deferring probe
[ 18.708097] bone-pinmux-helper ocp:P8_45_pinmux: could not find pctldev for node /ocp/epwmss@48300000, deferring probe
[ 18.708325] bone-pinmux-helper ocp:P8_46_pinmux: could not find pctldev for node /ocp/epwmss@48302000/pwm@48302200, deferring probe
[ 18.708551] bone-pinmux-helper ocp:P9_11_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/slave@4a100300, deferring probe
[ 18.708778] bone-pinmux-helper ocp:P9_12_pinmux: could not find pctldev for node /ocp/pruss@4a300000/pru0@4a334000, deferring probe
[ 18.733305] bone-pinmux-helper ocp:P9_13_pinmux: could not find pctldev for node /ocp/lcdc@4830e000, deferring probe
[ 18.733887] bone-pinmux-helper ocp:P9_14_pinmux: could not find pctldev for node /ocp/aes@53500000, deferring probe
[ 18.734190] bone-pinmux-helper ocp:P9_15_pinmux: could not find pctldev for node /bone_capemgr/baseboardmaps/board@0, deferring probe
[ 18.734440] bone-pinmux-helper ocp:P8_07_pinmux: could not find pctldev for node /ocp/interrupt-controller@48200000, deferring probe
[ 18.734678] bone-pinmux-helper ocp:P8_08_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_core_ck, deferring probe
[ 18.734911] bone-pinmux-helper ocp:P8_09_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_per_ck, deferring probe
[ 18.735141] bone-pinmux-helper ocp:P8_10_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/l3_gclk, deferring probe
[ 18.735368] bone-pinmux-helper ocp:P8_11_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/clk_32768_ck, deferring probe
[ 18.735597] bone-pinmux-helper ocp:P8_12_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/sysclkout_pre_ck, deferring probe
[ 18.735825] bone-pinmux-helper ocp:P8_13_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/virt_19200000_ck, deferring probe
[ 18.736052] bone-pinmux-helper ocp:P8_14_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/wkup_m3@100000, deferring probe
[ 18.736277] bone-pinmux-helper ocp:P8_15_pinmux: could not find pctldev for node /ocp/tptc@49900000, deferring probe
[ 18.736525] bone-pinmux-helper ocp:P8_16_pinmux: could not find pctldev for node /ocp/gpio@44e07000, deferring probe
[ 18.736814] bone-pinmux-helper ocp:P8_17_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/dcan1_fck, deferring probe
[ 18.762509] bone-pinmux-helper ocp:P8_18_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/scm_conf@0/clocks/ehrpwm0_tbclk@44e10664, deferring probe
[ 18.763122] bone-pinmux-helper ocp:P8_19_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/cpsw_cpts_rft_clk, deferring probe
[ 18.763423] bone-pinmux-helper ocp:P8_26_pinmux: could not find pctldev for node /ocp/ethernet@4a100000/mdio@4a101000, deferring probe
[ 18.763674] bone-pinmux-helper ocp:P8_27_pinmux: could not find pctldev for node /ocp/gpio@4804c000, deferring probe
[ 18.765894] bone-pinmux-helper ocp:P8_28_pinmux: could not find pctldev for node /ocp, deferring probe
[ 18.766407] bone-pinmux-helper ocp:P8_29_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/dpll_ddr_m2_div2_ck, deferring probe
[ 18.766697] bone-pinmux-helper ocp:P8_30_pinmux: could not find pctldev for node /ocp/l4_wkup@44c00000/prcm@200000/clocks/timer1_fck, deferring probe

what am I doing wrong? How am I supposed to correct it? Thanks for any help