This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

AM5728: First boot of custom am572x board. (Waiting for root device PARTUUID=)

Part Number: AM5728


I have a new am572x board design.  I have modified u-boot with the new pinmux and setup the u-boot environment variables.  I am working to boot Linux from mmc1.

The Kernel boot messages show various items of concern: 

* DMA has problems

* Several traces from "doesn't have mpu register target base"

* Might not be mounting ext4 rootfs   (partition 2 of microSD).

* Hangs with "Waiting for root device PARTUUID=41d4c7bc-02".  (The PARTUUID is correct)

I have created a dts file based on am572x-idk.dts (see attached)

Also attached is the boot console log.

I would appreciate advice toward successfully booting Linux, and completing the device tree.

Thank you for your help.

Greg.

/*
 * Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com/
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 */

/dts-v1/;

#include "dra74x.dtsi"
#include <dt-bindings/gpio/gpio.h>
#include <dt-bindings/interrupt-controller/irq.h>

/*#include "am572x-idk-common.dtsi"*/
#include "am57xx-industrial-grade.dtsi"
/ {
	aliases {
		rtc0 = &tps659038_rtc;
		rtc1 = &rtc;
	};

	chosen {
		stdout-path = &uart3;
	};

	vmain: fixedregulator-vmain {
		compatible = "regulator-fixed";
		regulator-name = "VMAIN";
		regulator-min-microvolt = <5000000>;
		regulator-max-microvolt = <5000000>;
		regulator-always-on;
		regulator-boot-on;
	};

	v3_3d: fixedregulator-v3_3d {
		compatible = "regulator-fixed";
		regulator-name = "V3_3D";
		vin-supply = <&smps9_reg>;
		regulator-min-microvolt = <3300000>;
		regulator-max-microvolt = <3300000>;
		regulator-always-on;
		regulator-boot-on;
	};

	vtt_fixed: fixedregulator-vtt {
		/* TPS51200 */
		compatible = "regulator-fixed";
		regulator-name = "vtt_fixed";
		vin-supply = <&v3_3d>;
		regulator-min-microvolt = <3300000>;
		regulator-max-microvolt = <3300000>;
		regulator-always-on;
		regulator-boot-on;
	};

    // Put leds-iio here (See am57xx-idk-common.dtsi)

};

//&dra7_pmx_core {
	//dcan1_pins_default: dcan1_pins_default {
		//pinctrl-single,pins = <
			//DRA7XX_CORE_IOPAD(0x37d0, PIN_OUTPUT_PULLUP | MUX_MODE0)	/* dcan1_tx */
			//DRA7XX_CORE_IOPAD(0x37d4, PIN_INPUT_PULLUP | MUX_MODE0)		/* dcan1_rx */
		//>;
	//};
//
	//dcan1_pins_sleep: dcan1_pins_sleep {
		//pinctrl-single,pins = <
			//DRA7XX_CORE_IOPAD(0x37d0, MUX_MODE15 | PULL_UP)	/* dcan1_tx.off */
			//DRA7XX_CORE_IOPAD(0x37d4, MUX_MODE15 | PULL_UP)	/* dcan1_rx.off */
		//>;
	//};
//};
//
&i2c3 {
	status = "okay";
	clock-frequency = <100000>;

	tps659038: tps659038@58 {
		compatible = "ti,tps659038";
		reg = <0x58>;
		//interrupts-extended = <&gpio6 16 IRQ_TYPE_LEVEL_HIGH
			       //&dra7_pmx_core 0x418>;
		//#interrupt-cells = <2>;
		//interrupt-controller;
		ti,system-power-controller;
		ti,palmas-override-powerhold;

		tps659038_pmic {
			compatible = "ti,tps659038-pmic";

			smps12-in-supply = <&vmain>;
			smps3-in-supply = <&vmain>;
			smps45-in-supply = <&vmain>;
			smps6-in-supply = <&vmain>;
			smps7-in-supply = <&vmain>;
			smps8-in-supply = <&vmain>;
			smps9-in-supply = <&vmain>;
			ldo1-in-supply = <&vmain>;
			ldo2-in-supply = <&vmain>;
			ldo3-in-supply = <&vmain>;
			ldo4-in-supply = <&vmain>;
			ldo9-in-supply = <&vmain>;
			ldoln-in-supply = <&vmain>;
			ldousb-in-supply = <&vmain>;
			ldortc-in-supply = <&vmain>;

			regulators {
				smps12_reg: smps12 {
					/* VDD_MPU */
					regulator-name = "smps12";
					regulator-min-microvolt = <850000>;
					regulator-max-microvolt = <1250000>;
					regulator-always-on;
					regulator-boot-on;
				};

				smps3_reg: smps3 {
					/* VDD_DDR EMIF1 EMIF2 */
					regulator-name = "smps3";
					regulator-min-microvolt = <1350000>;
					regulator-max-microvolt = <1350000>;
					regulator-always-on;
					regulator-boot-on;
				};

				smps45_reg: smps45 {
					/* VDD_DSPEVE on AM572 */
					/* VDD_IVA + VDD_DSP on AM571 */
					regulator-name = "smps45";
					regulator-min-microvolt = <850000>;
					regulator-max-microvolt = <1250000>;
					regulator-always-on;
					regulator-boot-on;
				};

				smps6_reg: smps6 {
					/* VDD_GPU */
					regulator-name = "smps6";
					regulator-min-microvolt = <850000>;
					regulator-max-microvolt = <1250000>;
					regulator-always-on;
					regulator-boot-on;
				};

				smps7_reg: smps7 {
					/* VDD_CORE */
					regulator-name = "smps7";
					regulator-min-microvolt = <850000>;
					regulator-max-microvolt = <1150000>;
					regulator-always-on;
					regulator-boot-on;
				};

				smps8_reg: smps8 {
					/* 5728 - VDD_IVAHD */
					/* 5718 - N.C. test point */
					regulator-name = "smps8";
				};

				smps9_reg: smps9 {
					/* VDD_3_3D */
					regulator-name = "smps9";
					regulator-min-microvolt = <3300000>;
					regulator-max-microvolt = <3300000>;
					regulator-always-on;
					regulator-boot-on;
				};

				ldo1_reg: ldo1 {
					/* VDDSHV8 - VSDMMC  */
					/* NOTE: on rev 1.3a, data supply */
					regulator-name = "ldo1";
					regulator-min-microvolt = <1800000>;
					regulator-max-microvolt = <3300000>;
					regulator-boot-on;
					regulator-always-on;
				};

				ldo2_reg: ldo2 {
					/* VDDSH18V */
					regulator-name = "ldo2";
					regulator-min-microvolt = <1800000>;
					regulator-max-microvolt = <1800000>;
					regulator-always-on;
					regulator-boot-on;
				};

				ldo3_reg: ldo3 {
					/* R1.3a 572x V1_8PHY_LDO3: USB, SATA */
					regulator-name = "ldo3";
					regulator-min-microvolt = <1800000>;
					regulator-max-microvolt = <1800000>;
					regulator-always-on;
					regulator-boot-on;
				};

				ldo4_reg: ldo4 {
					/* R1.3a 572x V1_8PHY_LDO4: PCIE, HDMI*/
					regulator-name = "ldo4";
					regulator-min-microvolt = <1800000>;
					regulator-max-microvolt = <1800000>;
					regulator-always-on;
					regulator-boot-on;
				};

				/* LDO5-8 unused */

				ldo9_reg: ldo9 {
					/* VDD_RTC  */
					regulator-name = "ldo9";
					regulator-min-microvolt = <840000>;
					regulator-max-microvolt = <1160000>;
					regulator-always-on;
					regulator-boot-on;
				};

				ldoln_reg: ldoln {
					/* VDDA_1V8_PLL */
					regulator-name = "ldoln";
					regulator-min-microvolt = <1800000>;
					regulator-max-microvolt = <1800000>;
					regulator-always-on;
					regulator-boot-on;
				};

				ldousb_reg: ldousb {
					/* VDDA_3V_USB: VDDA_USBHS33 */
					regulator-name = "ldousb";
					regulator-min-microvolt = <3300000>;
					regulator-max-microvolt = <3300000>;
					regulator-always-on;
					regulator-boot-on;
				};

				ldortc_reg: ldortc {
					/* VDDA_RTC  */
					regulator-name = "ldortc";
					regulator-min-microvolt = <1800000>;
					regulator-max-microvolt = <1800000>;
					regulator-always-on;
					regulator-boot-on;
				};

				regen1: regen1 {
					/* VDD_3V3_ON */
					regulator-name = "regen1";
					regulator-boot-on;
					regulator-always-on;
				};

				regen2: regen2 {
					/* Needed for PMIC internal resource */
					regulator-name = "regen2";
					regulator-boot-on;
					regulator-always-on;
				};
			};
		};

		tps659038_rtc: tps659038_rtc {
			compatible = "ti,palmas-rtc";
			interrupt-parent = <&tps659038>;
			interrupts = <8 IRQ_TYPE_EDGE_FALLING>;
			wakeup-source;
		};
//
		//tps659038_pwr_button: tps659038_pwr_button {
			//compatible = "ti,palmas-pwrbutton";
			//interrupt-parent = <&tps659038>;
			//interrupts = <1 IRQ_TYPE_EDGE_FALLING>;
			//wakeup-source;
			//ti,palmas-long-press-seconds = <12>;
		//};
//
		tps659038_gpio: tps659038_gpio {
			compatible = "ti,palmas-gpio";
			gpio-controller;
			#gpio-cells = <2>;
		};
//
		//extcon_usb2: tps659038_usb {
			//compatible = "ti,palmas-usb-vid";
			//ti,enable-vbus-detection;
			//ti,enable-id-detection;
			/* ID & VBUS GPIOs provided in board dts */
		//};
	};

};


&uart3 {
	status = "okay";
	interrupts-extended = <&crossbar_mpu GIC_SPI 69 IRQ_TYPE_LEVEL_HIGH
			       &dra7_pmx_core 0x248>;
};

&rtc {
	status = "okay";
	ext-clk-src;
};

&mac {
	status = "okay";
	dual_emac;
};

&cpsw_emac0 {
	phy_id = <&davinci_mdio>, <0>;
	phy-mode = "rgmii";
	dual_emac_res_vlan = <1>;
};

&cpsw_emac1 {
	phy_id = <&davinci_mdio>, <1>;
	phy-mode = "rgmii";
	dual_emac_res_vlan = <2>;
};

&usb2_phy1 {
	phy-supply = <&ldousb_reg>;
};

&usb2_phy2 {
	phy-supply = <&ldousb_reg>;
};

&usb1 {
	dr_mode = "host";
};

&usb2 {
	dr_mode = "peripheral";
};

&mmc1 {
	status = "okay";
	vmmc-supply = <&v3_3d>;
	vqmmc-supply = <&ldo1_reg>;
	bus-width = <4>;
	cd-gpios = <&gpio6 27 GPIO_ACTIVE_HIGH>; /* gpio 219 */
	//no-1-8-v;
};

&mmc2 {
	status = "okay";
	vmmc-supply = <&v3_3d>;
	bus-width = <8>;
	ti,non-removable;
	max-frequency = <96000000>;
	no-1-8-v;
	/delete-property/ mmc-hs200-1_8v;
};

//&dcan1 {
	//status = "okay";
	//pinctrl-names = "default", "sleep", "active";
	//pinctrl-0 = <&dcan1_pins_sleep>;
	//pinctrl-1 = <&dcan1_pins_sleep>;
	//pinctrl-2 = <&dcan1_pins_default>;
//};

&qspi {
	status = "okay";

	spi-max-frequency = <76800000>;
	m25p80@0 {
		compatible = "s25fl256s1", "jedec,spi-nor";
		spi-max-frequency = <76800000>;
		reg = <0>;
		spi-tx-bus-width = <1>;
		spi-rx-bus-width = <4>;
		#address-cells = <1>;
		#size-cells = <1>;

		/* MTD partition table.
		 * The ROM checks the first four physical blocks
		 * for a valid file to boot and the flash here is
		 * 64KiB block size.
		 */
		partition@0 {
			label = "QSPI.SPL";
			reg = <0x00000000 0x000040000>;
		};
		partition@1 {
			label = "QSPI.u-boot";
			reg = <0x00040000 0x00100000>;
		};
		partition@2 {
			label = "QSPI.u-boot-spl-os";
			reg = <0x00140000 0x00080000>;
		};
		partition@3 {
			label = "QSPI.u-boot-env";
			reg = <0x001c0000 0x00010000>;
		};
		partition@4 {
			label = "QSPI.u-boot-env.backup1";
			reg = <0x001d0000 0x0010000>;
		};
		partition@5 {
			label = "QSPI.kernel";
			reg = <0x001e0000 0x0800000>;
		};
		partition@6 {
			label = "QSPI.file-system";
			reg = <0x009e0000 0x01620000>;
		};
	};
};

/*#include "am57xx-idk-common.dtsi"*/
/ {
	memory@0 {
		device_type = "memory";
		reg = <0x0 0x80000000 0x0 0x80000000>;
	};
};

//&omap_dwc3_2 {
	//extcon = <&extcon_usb2>;
//};

//&extcon_usb2 {
	//id-gpio = <&gpio3 16 GPIO_ACTIVE_HIGH>;
	//vbus-gpio = <&gpio3 26 GPIO_ACTIVE_HIGH>;
//};
//
//&sn65hvs882 {
	//load-gpios = <&gpio3 19 GPIO_ACTIVE_LOW>;
//};
//
//&pcie1_rc {
	//status = "okay";
	//gpios = <&gpio3 23 GPIO_ACTIVE_HIGH>;
//};
//
//&pcie1_ep {
	//gpios = <&gpio3 23 GPIO_ACTIVE_HIGH>;
//};

&mailbox5 {
	status = "okay";
	mbox_ipu1_ipc3x: mbox_ipu1_ipc3x {
		status = "okay";
	};
	mbox_dsp1_ipc3x: mbox_dsp1_ipc3x {
		status = "okay";
	};
};

&mailbox6 {
	status = "okay";
	mbox_ipu2_ipc3x: mbox_ipu2_ipc3x {
		status = "okay";
	};
	mbox_dsp2_ipc3x: mbox_dsp2_ipc3x {
		status = "okay";
	};
};

#include "dra7-mmc-iodelay.dtsi"
#include "dra74x-mmc-iodelay.dtsi"

/ {
	model = "SKF Controller Board";
	compatible = "ti,am5728-idk", "ti,am5728", "ti,dra742", "ti,dra74",
		     "ti,dra7";
};

&mmc1 {
	pinctrl-names = "default", "hs";
	//pinctrl-0 = <&mmc1_pins_default_no_clk_pu>;
	pinctrl-0 = <&mmc1_pins_default>;
	pinctrl-1 = <&mmc1_pins_hs>;
    /delete-property/ sd-uhs-sdr104;
    /delete-property/ sd-uhs-sdr50;
    /delete-property/ sd-uhs-ddr50;
    /delete-property/ sd-uhs-sdr25;
    /delete-property/ sd-uhs-sdr12;
};

&mmc2 {
	pinctrl-names = "default", "hs", "ddr_1_8v";
	pinctrl-0 = <&mmc2_pins_default>;
	pinctrl-1 = <&mmc2_pins_hs>;
	pinctrl-2 = <&mmc2_pins_ddr_rev20>;
};

U-Boot SPL 2019.01-g4fd17df956-dirty (Jun 18 2020 - 20:17:51 -0600)
DRA752-GP ES2.0
Trying to boot from MMC1
no pinctrl state for default mode
Timed out in wait_for_event: status=0000
Check if pads/pull-ups of bus are properly configured
unable to get I2C bus. ret 1
tps65903x: could not set LDO1 voltage.
no pinctrl state for default mode
Loading Environment from FAT... OK


U-Boot 2019.01-g4fd17df956-dirty (Jun 18 2020 - 20:17:47 -0600)

CPU  : DRA752-GP ES2.0
Model: SKF Controller Board
Board: SKF Control Board REV 1a
DRAM:  2 GiB
MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1
Loading Environment from FAT... OK
Net:   
Warning: ethernet@48484000 using MAC address from ROM
eth0: ethernet@48484000
Hit any key to stop autoboot:  2  1  0 
switch to partitions #0, OK
mmc0 is current device
SD/MMC found on device 0
** Unable to read file boot.scr **
1526 bytes read in 2 ms (745.1 KiB/s)
Loaded env from uEnv.txt
Importing environment from mmc0 ...
Running uenvcmd ...
0 bytes read in 0 ms
Already setup.
switch to partitions #0, OK
mmc0 is current device
SD/MMC found on device 0
4448768 bytes read in 219 ms (19.4 MiB/s)
130884 bytes read in 12 ms (10.4 MiB/s)
## Flattened Device Tree blob at 88000000
   Booting using the fdt blob at 0x88000000
   Loading Device Tree to 8ffdd000, end 8fffff43 ... OK

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0
[    0.000000] Linux version 4.19.94-gbe5389fd85 (oe-user@oe-host) (gcc version 8.3.0 (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36))) #1 SMP PREEMPT Fri May 15 22:12:10 UTC 2020
[    0.000000] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), cr=30c5387d
[    0.000000] CPU: div instructions available: patching division code
[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
[    0.000000] OF: fdt: Machine model: SKF Controller Board
[    0.000000] Memory policy: Data cache writealloc
[    0.000000] efi: Getting EFI parameters from FDT:
[    0.000000] efi: UEFI not found.
[    0.000000] cma: Reserved 24 MiB at 0x00000000fe400000
[    0.000000] OMAP4: Map 0x00000000ffd00000 to (ptrval) for dram barrier
[    0.000000] Hit pending asynchronous external abort (FSR=0x00001211) during first unmask, this is most likely caused by a firmware/bootloader bug.
[    0.000000] DRA752 ES2.0
[    0.000000] random: get_random_bytes called from start_kernel+0xb4/0x470 with crng_init=0
[    0.000000] percpu: Embedded 15 pages/cpu s32396 r8192 d20852 u61440
[    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 521792
[    0.000000] Kernel command line: console=ttyS2,115200n8 root=PARTUUID=41d4c7bc-02 rw rootfstype=ext4 rootwait
[    0.000000] Dentry cache hash table entries: 131072 (order: 7, 524288 bytes)
[    0.000000] Inode-cache hash table entries: 65536 (order: 6, 262144 bytes)
[    0.000000] Memory: 2032704K/2094080K available (10240K kernel code, 335K rwdata, 2800K rodata, 2048K init, 268K bss, 36800K reserved, 24576K cma-reserved, 1283072K highmem)
[    0.000000] Virtual kernel memory layout:
[    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
[    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
[    0.000000]     vmalloc : 0xf0800000 - 0xff800000   ( 240 MB)
[    0.000000]     lowmem  : 0xc0000000 - 0xf0000000   ( 768 MB)
[    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
[    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
[    0.000000]       .text : 0x(ptrval) - 0x(ptrval)   (12256 kB)
[    0.000000]       .init : 0x(ptrval) - 0x(ptrval)   (2048 kB)
[    0.000000]       .data : 0x(ptrval) - 0x(ptrval)   ( 336 kB)
[    0.000000]        .bss : 0x(ptrval) - 0x(ptrval)   ( 269 kB)
[    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
[    0.000000] rcu: Preemptible hierarchical RCU implementation.
[    0.000000] 	Tasks RCU enabled.
[    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
[    0.000000] GIC: Using split EOI/Deactivate mode
[    0.000000] ti_dt_clocks_register: missing clkctrl nodes, please update your dts.
[    0.000000] OMAP clockevent source: timer1 at 32786 Hz
[    0.000000] arch_timer: cp15 timer(s) running at 6.14MHz (phys).
[    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x16af5adb9, max_idle_ns: 440795202250 ns
[    0.000005] sched_clock: 56 bits at 6MHz, resolution 162ns, wraps every 4398046511023ns
[    0.000018] Switching to timer-based delay loop, resolution 162ns
[    0.000343] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns
[    0.000353] OMAP clocksource: 32k_counter at 32768 Hz
[    0.000763] Console: colour dummy device 80x30
[    0.000806] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.29 BogoMIPS (lpj=61475)
[    0.000821] pid_max: default: 32768 minimum: 301
[    0.000941] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.000956] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
[    0.001526] CPU: Testing write buffer coherency: ok
[    0.001561] CPU0: Spectre v2: using ICIALLU workaround
[    0.001775] /cpus/cpu@0 missing clock-frequency property
[    0.001795] /cpus/cpu@1 missing clock-frequency property
[    0.001808] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
[    0.059907] Setting up static identity map for 0x80200000 - 0x80200060
[    0.079920] rcu: Hierarchical SRCU implementation.
[    0.100110] EFI services will not be available.
[    0.119979] smp: Bringing up secondary CPUs ...
[    0.200372] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
[    0.200377] CPU1: Spectre v2: using ICIALLU workaround
[    0.200501] smp: Brought up 1 node, 2 CPUs
[    0.200513] SMP: Total of 2 processors activated (24.59 BogoMIPS).
[    0.200522] CPU: All CPU(s) started in HYP mode.
[    0.200530] CPU: Virtualization extensions available.
[    0.201105] devtmpfs: initialized
[    0.219916] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
[    0.220200] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
[    0.220220] futex hash table entries: 512 (order: 3, 32768 bytes)
[    0.220724] pinctrl core: initialized pinctrl subsystem
[    0.221215] DMI not present or invalid.
[    0.221487] NET: Registered protocol family 16
[    0.222625] DMA: preallocated 256 KiB pool for atomic coherent allocations
[    0.223548] omap_hwmod: l3_main_2 using broken dt data from ocp
[    0.243141] omap_hwmod: dma_system: no dt node
[    0.243152] ------------[ cut here ]------------
[    0.243172] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2409 _init.constprop.22+0x1b0/0x4dc
[    0.243181] omap_hwmod: dma_system: doesn't have mpu register target base
[    0.243190] Modules linked in:
[    0.243205] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.19.94-gbe5389fd85 #1
[    0.243214] Hardware name: Generic DRA74X (Flattened Device Tree)
[    0.243223] Backtrace: 
[    0.243242] [<c020ca34>] (dump_backtrace) from [<c020cd6c>] (show_stack+0x18/0x1c)
[    0.243255]  r7:c0dcd1d8 r6:60000013 r5:00000000 r4:c12506dc
[    0.243273] [<c020cd54>] (show_stack) from [<c0a15124>] (dump_stack+0x9c/0xb0)
[    0.243288] [<c0a15088>] (dump_stack) from [<c022e100>] (__warn+0xdc/0xf8)
[    0.243300]  r7:c0dcd1d8 r6:00000009 r5:00000000 r4:ee89bddc
[    0.243312] [<c022e024>] (__warn) from [<c022dd38>] (warn_slowpath_fmt+0x50/0x6c)
[    0.243325]  r9:c104b824 r8:00000000 r7:c12125ec r6:00000000 r5:c0dcd7b4 r4:c1204c48
[    0.243338] [<c022dcec>] (warn_slowpath_fmt) from [<c100cef4>] (_init.constprop.22+0x1b0/0x4dc)
[    0.243347]  r3:c0dcdc58 r2:c0dcd7b4
[    0.243356]  r5:00000000 r4:c12125b4
[    0.243369] [<c100cd44>] (_init.constprop.22) from [<c100d350>] (__omap_hwmod_setup_all+0x48/0x134)
[    0.243382]  r10:c10606e8 r9:c104b824 r8:00000000 r7:c100d308 r6:ffffe000 r5:c120a2e8
[    0.243390]  r4:c12125b4
[    0.243403] [<c100d308>] (__omap_hwmod_setup_all) from [<c02025b8>] (do_one_initcall+0x84/0x1b0)
[    0.243413]  r5:c1204c48 r4:c1253e00
[    0.243427] [<c0202534>] (do_one_initcall) from [<c1000fe8>] (kernel_init_freeable+0x1c4/0x258)
[    0.243438]  r8:c104b844 r7:c10004f0 r6:c1253e00 r5:c1253e00 r4:00000003
[    0.243452] [<c1000e24>] (kernel_init_freeable) from [<c0a29438>] (kernel_init+0x10/0x11c)
[    0.243463]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0a29428
[    0.243471]  r4:00000000
[    0.243483] [<c0a29428>] (kernel_init) from [<c02010d8>] (ret_from_fork+0x14/0x3c)
[    0.243492] Exception stack(0xee89bfb0 to 0xee89bff8)
[    0.243503] bfa0:                                     00000000 00000000 00000000 00000000
[    0.243514] bfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    0.243525] bfe0: 00000000 00000000 00000000 00000000 00000013 00000000
[    0.243534]  r5:c0a29428 r4:00000000
[    0.243545] ---[ end trace b11d5f38a71584ec ]---
[    0.259063] omap_hwmod: gpu: no dt node
[    0.259073] ------------[ cut here ]------------
[    0.259087] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2409 _init.constprop.22+0x1b0/0x4dc
[    0.259096] omap_hwmod: gpu: doesn't have mpu register target base
[    0.259103] Modules linked in:
[    0.259116] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.94-gbe5389fd85 #1
[    0.259125] Hardware name: Generic DRA74X (Flattened Device Tree)
[    0.259133] Backtrace: 
[    0.259148] [<c020ca34>] (dump_backtrace) from [<c020cd6c>] (show_stack+0x18/0x1c)
[    0.259160]  r7:c0dcd1d8 r6:60000013 r5:00000000 r4:c12506dc
[    0.259174] [<c020cd54>] (show_stack) from [<c0a15124>] (dump_stack+0x9c/0xb0)
[    0.259187] [<c0a15088>] (dump_stack) from [<c022e100>] (__warn+0xdc/0xf8)
[    0.259198]  r7:c0dcd1d8 r6:00000009 r5:00000000 r4:ee89bddc
[    0.259210] [<c022e024>] (__warn) from [<c022dd38>] (warn_slowpath_fmt+0x50/0x6c)
[    0.259222]  r9:c104b824 r8:00000000 r7:c1211928 r6:00000000 r5:c0dcd7b4 r4:c1204c48
[    0.259235] [<c022dcec>] (warn_slowpath_fmt) from [<c100cef4>] (_init.constprop.22+0x1b0/0x4dc)
[    0.259244]  r3:c0dcf8d8 r2:c0dcd7b4
[    0.259253]  r5:00000000 r4:c12118f0
[    0.259266] [<c100cd44>] (_init.constprop.22) from [<c100d350>] (__omap_hwmod_setup_all+0x48/0x134)
[    0.259277]  r10:c10606e8 r9:c104b824 r8:00000000 r7:c100d308 r6:ffffe000 r5:c120a2e8
[    0.259285]  r4:c12118f0
[    0.259298] [<c100d308>] (__omap_hwmod_setup_all) from [<c02025b8>] (do_one_initcall+0x84/0x1b0)
[    0.259308]  r5:c1204c48 r4:c1253e00
[    0.259321] [<c0202534>] (do_one_initcall) from [<c1000fe8>] (kernel_init_freeable+0x1c4/0x258)
[    0.259332]  r8:c104b844 r7:c10004f0 r6:c1253e00 r5:c1253e00 r4:00000003
[    0.259345] [<c1000e24>] (kernel_init_freeable) from [<c0a29438>] (kernel_init+0x10/0x11c)
[    0.259357]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0a29428
[    0.259365]  r4:00000000
[    0.259376] [<c0a29428>] (kernel_init) from [<c02010d8>] (ret_from_fork+0x14/0x3c)
[    0.259385] Exception stack(0xee89bfb0 to 0xee89bff8)
[    0.259396] bfa0:                                     00000000 00000000 00000000 00000000
[    0.259407] bfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    0.259418] bfe0: 00000000 00000000 00000000 00000000 00000013 00000000
[    0.259427]  r5:c0a29428 r4:00000000
[    0.259435] ---[ end trace b11d5f38a71584ed ]---
[    0.260366] omap_hwmod: hdq1w: no dt node
[    0.260375] ------------[ cut here ]------------
[    0.260389] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2409 _init.constprop.22+0x1b0/0x4dc
[    0.260398] omap_hwmod: hdq1w: doesn't have mpu register target base
[    0.260405] Modules linked in:
[    0.260419] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.94-gbe5389fd85 #1
[    0.260428] Hardware name: Generic DRA74X (Flattened Device Tree)
[    0.260435] Backtrace: 
[    0.260450] [<c020ca34>] (dump_backtrace) from [<c020cd6c>] (show_stack+0x18/0x1c)
[    0.260462]  r7:c0dcd1d8 r6:60000013 r5:00000000 r4:c12506dc
[    0.260476] [<c020cd54>] (show_stack) from [<c0a15124>] (dump_stack+0x9c/0xb0)
[    0.260489] [<c0a15088>] (dump_stack) from [<c022e100>] (__warn+0xdc/0xf8)
[    0.260499]  r7:c0dcd1d8 r6:00000009 r5:00000000 r4:ee89bddc
[    0.260511] [<c022e024>] (__warn) from [<c022dd38>] (warn_slowpath_fmt+0x50/0x6c)
[    0.260523]  r9:c104b824 r8:00000000 r7:c1211880 r6:00000000 r5:c0dcd7b4 r4:c1204c48
[    0.260535] [<c022dcec>] (warn_slowpath_fmt) from [<c100cef4>] (_init.constprop.22+0x1b0/0x4dc)
[    0.260544]  r3:c0dcf8c0 r2:c0dcd7b4
[    0.260553]  r5:00000000 r4:c1211848
[    0.260565] [<c100cd44>] (_init.constprop.22) from [<c100d350>] (__omap_hwmod_setup_all+0x48/0x134)
[    0.260577]  r10:c10606e8 r9:c104b824 r8:00000000 r7:c100d308 r6:ffffe000 r5:c120a2e8
[    0.260585]  r4:c1211848
[    0.260598] [<c100d308>] (__omap_hwmod_setup_all) from [<c02025b8>] (do_one_initcall+0x84/0x1b0)
[    0.260607]  r5:c1204c48 r4:c1253e00
[    0.260620] [<c0202534>] (do_one_initcall) from [<c1000fe8>] (kernel_init_freeable+0x1c4/0x258)
[    0.260632]  r8:c104b844 r7:c10004f0 r6:c1253e00 r5:c1253e00 r4:00000003
[    0.260644] [<c1000e24>] (kernel_init_freeable) from [<c0a29438>] (kernel_init+0x10/0x11c)
[    0.260656]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0a29428
[    0.260663]  r4:00000000
[    0.260675] [<c0a29428>] (kernel_init) from [<c02010d8>] (ret_from_fork+0x14/0x3c)
[    0.260683] Exception stack(0xee89bfb0 to 0xee89bff8)
[    0.260694] bfa0:                                     00000000 00000000 00000000 00000000
[    0.260705] bfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    0.260716] bfe0: 00000000 00000000 00000000 00000000 00000013 00000000
[    0.260725]  r5:c0a29428 r4:00000000
[    0.260734] ---[ end trace b11d5f38a71584ee ]---
[    0.290920] omap_hwmod: smartreflex_core: no dt node
[    0.290930] ------------[ cut here ]------------
[    0.290944] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2409 _init.constprop.22+0x1b0/0x4dc
[    0.290953] omap_hwmod: smartreflex_core: doesn't have mpu register target base
[    0.290960] Modules linked in:
[    0.290974] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.94-gbe5389fd85 #1
[    0.290983] Hardware name: Generic DRA74X (Flattened Device Tree)
[    0.290990] Backtrace: 
[    0.291004] [<c020ca34>] (dump_backtrace) from [<c020cd6c>] (show_stack+0x18/0x1c)
[    0.291016]  r7:c0dcd1d8 r6:60000013 r5:00000000 r4:c12506dc
[    0.291031] [<c020cd54>] (show_stack) from [<c0a15124>] (dump_stack+0x9c/0xb0)
[    0.291044] [<c0a15088>] (dump_stack) from [<c022e100>] (__warn+0xdc/0xf8)
[    0.291055]  r7:c0dcd1d8 r6:00000009 r5:00000000 r4:ee89bddc
[    0.291066] [<c022e024>] (__warn) from [<c022dd38>] (warn_slowpath_fmt+0x50/0x6c)
[    0.291078]  r9:c104b824 r8:00000000 r7:c120fd88 r6:00000000 r5:c0dcd7b4 r4:c1204c48
[    0.291091] [<c022dcec>] (warn_slowpath_fmt) from [<c100cef4>] (_init.constprop.22+0x1b0/0x4dc)
[    0.291100]  r3:c0dcf40c r2:c0dcd7b4
[    0.291109]  r5:00000000 r4:c120fd50
[    0.291122] [<c100cd44>] (_init.constprop.22) from [<c100d350>] (__omap_hwmod_setup_all+0x48/0x134)
[    0.291134]  r10:c10606e8 r9:c104b824 r8:00000000 r7:c100d308 r6:ffffe000 r5:c120a2e8
[    0.291142]  r4:c120fd50
[    0.291155] [<c100d308>] (__omap_hwmod_setup_all) from [<c02025b8>] (do_one_initcall+0x84/0x1b0)
[    0.291164]  r5:c1204c48 r4:c1253e00
[    0.291177] [<c0202534>] (do_one_initcall) from [<c1000fe8>] (kernel_init_freeable+0x1c4/0x258)
[    0.291188]  r8:c104b844 r7:c10004f0 r6:c1253e00 r5:c1253e00 r4:00000003
[    0.291200] [<c1000e24>] (kernel_init_freeable) from [<c0a29438>] (kernel_init+0x10/0x11c)
[    0.291212]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0a29428
[    0.291220]  r4:00000000
[    0.291231] [<c0a29428>] (kernel_init) from [<c02010d8>] (ret_from_fork+0x14/0x3c)
[    0.291239] Exception stack(0xee89bfb0 to 0xee89bff8)
[    0.291249] bfa0:                                     00000000 00000000 00000000 00000000
[    0.291261] bfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    0.291272] bfe0: 00000000 00000000 00000000 00000000 00000013 00000000
[    0.291281]  r5:c0a29428 r4:00000000
[    0.291289] ---[ end trace b11d5f38a71584ef ]---
[    0.292190] omap_hwmod: smartreflex_mpu: no dt node
[    0.292198] ------------[ cut here ]------------
[    0.292211] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2409 _init.constprop.22+0x1b0/0x4dc
[    0.292219] omap_hwmod: smartreflex_mpu: doesn't have mpu register target base
[    0.292226] Modules linked in:
[    0.292239] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.94-gbe5389fd85 #1
[    0.292248] Hardware name: Generic DRA74X (Flattened Device Tree)
[    0.292255] Backtrace: 
[    0.292269] [<c020ca34>] (dump_backtrace) from [<c020cd6c>] (show_stack+0x18/0x1c)
[    0.292279]  r7:c0dcd1d8 r6:60000013 r5:00000000 r4:c12506dc
[    0.292293] [<c020cd54>] (show_stack) from [<c0a15124>] (dump_stack+0x9c/0xb0)
[    0.292306] [<c0a15088>] (dump_stack) from [<c022e100>] (__warn+0xdc/0xf8)
[    0.292317]  r7:c0dcd1d8 r6:00000009 r5:00000000 r4:ee89bddc
[    0.292329] [<c022e024>] (__warn) from [<c022dd38>] (warn_slowpath_fmt+0x50/0x6c)
[    0.292340]  r9:c104b824 r8:00000000 r7:c120fd14 r6:00000000 r5:c0dcd7b4 r4:c1204c48
[    0.292353] [<c022dcec>] (warn_slowpath_fmt) from [<c100cef4>] (_init.constprop.22+0x1b0/0x4dc)
[    0.292362]  r3:c0dcf3fc r2:c0dcd7b4
[    0.292371]  r5:00000000 r4:c120fcdc
[    0.292384] [<c100cd44>] (_init.constprop.22) from [<c100d350>] (__omap_hwmod_setup_all+0x48/0x134)
[    0.292396]  r10:c10606e8 r9:c104b824 r8:00000000 r7:c100d308 r6:ffffe000 r5:c120a2e8
[    0.292404]  r4:c120fcdc
[    0.292416] [<c100d308>] (__omap_hwmod_setup_all) from [<c02025b8>] (do_one_initcall+0x84/0x1b0)
[    0.292425]  r5:c1204c48 r4:c1253e00
[    0.292439] [<c0202534>] (do_one_initcall) from [<c1000fe8>] (kernel_init_freeable+0x1c4/0x258)
[    0.292450]  r8:c104b844 r7:c10004f0 r6:c1253e00 r5:c1253e00 r4:00000003
[    0.292462] [<c1000e24>] (kernel_init_freeable) from [<c0a29438>] (kernel_init+0x10/0x11c)
[    0.292473]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0a29428
[    0.292481]  r4:00000000
[    0.292492] [<c0a29428>] (kernel_init) from [<c02010d8>] (ret_from_fork+0x14/0x3c)
[    0.292501] Exception stack(0xee89bfb0 to 0xee89bff8)
[    0.292511] bfa0:                                     00000000 00000000 00000000 00000000
[    0.292523] bfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    0.292534] bfe0: 00000000 00000000 00000000 00000000 00000013 00000000
[    0.292542]  r5:c0a29428 r4:00000000
[    0.292551] ---[ end trace b11d5f38a71584f0 ]---
[    0.314943] omap_hwmod: vpe: no dt node
[    0.314953] ------------[ cut here ]------------
[    0.314967] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2409 _init.constprop.22+0x1b0/0x4dc
[    0.314976] omap_hwmod: vpe: doesn't have mpu register target base
[    0.314984] Modules linked in:
[    0.314997] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.94-gbe5389fd85 #1
[    0.315006] Hardware name: Generic DRA74X (Flattened Device Tree)
[    0.315014] Backtrace: 
[    0.315029] [<c020ca34>] (dump_backtrace) from [<c020cd6c>] (show_stack+0x18/0x1c)
[    0.315041]  r7:c0dcd1d8 r6:60000013 r5:00000000 r4:c12506dc
[    0.315054] [<c020cd54>] (show_stack) from [<c0a15124>] (dump_stack+0x9c/0xb0)
[    0.315068] [<c0a15088>] (dump_stack) from [<c022e100>] (__warn+0xdc/0xf8)
[    0.315079]  r7:c0dcd1d8 r6:00000009 r5:00000000 r4:ee89bddc
[    0.315091] [<c022e024>] (__warn) from [<c022dd38>] (warn_slowpath_fmt+0x50/0x6c)
[    0.315103]  r9:c104b824 r8:00000000 r7:c1212e34 r6:00000000 r5:c0dcd7b4 r4:c1204c48
[    0.315115] [<c022dcec>] (warn_slowpath_fmt) from [<c100cef4>] (_init.constprop.22+0x1b0/0x4dc)
[    0.315125]  r3:c0dcfb68 r2:c0dcd7b4
[    0.315133]  r5:00000000 r4:c1212dfc
[    0.315146] [<c100cd44>] (_init.constprop.22) from [<c100d350>] (__omap_hwmod_setup_all+0x48/0x134)
[    0.315157]  r10:c10606e8 r9:c104b824 r8:00000000 r7:c100d308 r6:ffffe000 r5:c120a2e8
[    0.315165]  r4:c1212dfc
[    0.315178] [<c100d308>] (__omap_hwmod_setup_all) from [<c02025b8>] (do_one_initcall+0x84/0x1b0)
[    0.315187]  r5:c1204c48 r4:c1253e00
[    0.315200] [<c0202534>] (do_one_initcall) from [<c1000fe8>] (kernel_init_freeable+0x1c4/0x258)
[    0.315211]  r8:c104b844 r7:c10004f0 r6:c1253e00 r5:c1253e00 r4:00000003
[    0.315224] [<c1000e24>] (kernel_init_freeable) from [<c0a29438>] (kernel_init+0x10/0x11c)
[    0.315236]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0a29428
[    0.315243]  r4:00000000
[    0.315255] [<c0a29428>] (kernel_init) from [<c02010d8>] (ret_from_fork+0x14/0x3c)
[    0.315263] Exception stack(0xee89bfb0 to 0xee89bff8)
[    0.315273] bfa0:                                     00000000 00000000 00000000 00000000
[    0.315285] bfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    0.315296] bfe0: 00000000 00000000 00000000 00000000 00000013 00000000
[    0.315305]  r5:c0a29428 r4:00000000
[    0.315313] ---[ end trace b11d5f38a71584f1 ]---
[    0.316209] omap_hwmod: vip1: no dt node
[    0.316217] ------------[ cut here ]------------
[    0.316230] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2409 _init.constprop.22+0x1b0/0x4dc
[    0.316239] omap_hwmod: vip1: doesn't have mpu register target base
[    0.316246] Modules linked in:
[    0.316257] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.94-gbe5389fd85 #1
[    0.316266] Hardware name: Generic DRA74X (Flattened Device Tree)
[    0.316273] Backtrace: 
[    0.316288] [<c020ca34>] (dump_backtrace) from [<c020cd6c>] (show_stack+0x18/0x1c)
[    0.316299]  r7:c0dcd1d8 r6:60000013 r5:00000000 r4:c12506dc
[    0.316312] [<c020cd54>] (show_stack) from [<c0a15124>] (dump_stack+0x9c/0xb0)
[    0.316325] [<c0a15088>] (dump_stack) from [<c022e100>] (__warn+0xdc/0xf8)
[    0.316335]  r7:c0dcd1d8 r6:00000009 r5:00000000 r4:ee89bddc
[    0.316347] [<c022e024>] (__warn) from [<c022dd38>] (warn_slowpath_fmt+0x50/0x6c)
[    0.316359]  r9:c104b824 r8:00000000 r7:c1212d8c r6:00000000 r5:c0dcd7b4 r4:c1204c48
[    0.316371] [<c022dcec>] (warn_slowpath_fmt) from [<c100cef4>] (_init.constprop.22+0x1b0/0x4dc)
[    0.316380]  r3:c0dcfb4c r2:c0dcd7b4
[    0.316388]  r5:00000000 r4:c1212d54
[    0.316401] [<c100cd44>] (_init.constprop.22) from [<c100d350>] (__omap_hwmod_setup_all+0x48/0x134)
[    0.316413]  r10:c10606e8 r9:c104b824 r8:00000000 r7:c100d308 r6:ffffe000 r5:c120a2e8
[    0.316421]  r4:c1212d54
[    0.316434] [<c100d308>] (__omap_hwmod_setup_all) from [<c02025b8>] (do_one_initcall+0x84/0x1b0)
[    0.316443]  r5:c1204c48 r4:c1253e00
[    0.316456] [<c0202534>] (do_one_initcall) from [<c1000fe8>] (kernel_init_freeable+0x1c4/0x258)
[    0.316467]  r8:c104b844 r7:c10004f0 r6:c1253e00 r5:c1253e00 r4:00000003
[    0.316479] [<c1000e24>] (kernel_init_freeable) from [<c0a29438>] (kernel_init+0x10/0x11c)
[    0.316490]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0a29428
[    0.316497]  r4:00000000
[    0.316508] [<c0a29428>] (kernel_init) from [<c02010d8>] (ret_from_fork+0x14/0x3c)
[    0.316517] Exception stack(0xee89bfb0 to 0xee89bff8)
[    0.316527] bfa0:                                     00000000 00000000 00000000 00000000
[    0.316539] bfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    0.316549] bfe0: 00000000 00000000 00000000 00000000 00000013 00000000
[    0.316558]  r5:c0a29428 r4:00000000
[    0.316566] ---[ end trace b11d5f38a71584f2 ]---
[    0.324515] omap_hwmod: vip2: no dt node
[    0.324527] ------------[ cut here ]------------
[    0.324541] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2409 _init.constprop.22+0x1b0/0x4dc
[    0.324550] omap_hwmod: vip2: doesn't have mpu register target base
[    0.324557] Modules linked in:
[    0.324570] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.94-gbe5389fd85 #1
[    0.324578] Hardware name: Generic DRA74X (Flattened Device Tree)
[    0.324586] Backtrace: 
[    0.324600] [<c020ca34>] (dump_backtrace) from [<c020cd6c>] (show_stack+0x18/0x1c)
[    0.324613]  r7:c0dcd1d8 r6:60000013 r5:00000000 r4:c12506dc
[    0.324627] [<c020cd54>] (show_stack) from [<c0a15124>] (dump_stack+0x9c/0xb0)
[    0.324640] [<c0a15088>] (dump_stack) from [<c022e100>] (__warn+0xdc/0xf8)
[    0.324651]  r7:c0dcd1d8 r6:00000009 r5:00000000 r4:ee89bddc
[    0.324663] [<c022e024>] (__warn) from [<c022dd38>] (warn_slowpath_fmt+0x50/0x6c)
[    0.324674]  r9:c104b824 r8:00000000 r7:c1212d1c r6:00000000 r5:c0dcd7b4 r4:c1204c48
[    0.324688] [<c022dcec>] (warn_slowpath_fmt) from [<c100cef4>] (_init.constprop.22+0x1b0/0x4dc)
[    0.324697]  r3:c0dcfb44 r2:c0dcd7b4
[    0.324706]  r5:00000000 r4:c1212ce4
[    0.324718] [<c100cd44>] (_init.constprop.22) from [<c100d350>] (__omap_hwmod_setup_all+0x48/0x134)
[    0.324730]  r10:c10606e8 r9:c104b824 r8:00000000 r7:c100d308 r6:ffffe000 r5:c120a2e8
[    0.324739]  r4:c1212ce4
[    0.324751] [<c100d308>] (__omap_hwmod_setup_all) from [<c02025b8>] (do_one_initcall+0x84/0x1b0)
[    0.324761]  r5:c1204c48 r4:c1253e00
[    0.324774] [<c0202534>] (do_one_initcall) from [<c1000fe8>] (kernel_init_freeable+0x1c4/0x258)
[    0.324784]  r8:c104b844 r7:c10004f0 r6:c1253e00 r5:c1253e00 r4:00000003
[    0.324797] [<c1000e24>] (kernel_init_freeable) from [<c0a29438>] (kernel_init+0x10/0x11c)
[    0.324808]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0a29428
[    0.324815]  r4:00000000
[    0.324827] [<c0a29428>] (kernel_init) from [<c02010d8>] (ret_from_fork+0x14/0x3c)
[    0.324835] Exception stack(0xee89bfb0 to 0xee89bff8)
[    0.324846] bfa0:                                     00000000 00000000 00000000 00000000
[    0.324858] bfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    0.324869] bfe0: 00000000 00000000 00000000 00000000 00000013 00000000
[    0.324877]  r5:c0a29428 r4:00000000
[    0.324886] ---[ end trace b11d5f38a71584f3 ]---
[    0.325781] omap_hwmod: vip3: no dt node
[    0.325788] ------------[ cut here ]------------
[    0.325802] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2409 _init.constprop.22+0x1b0/0x4dc
[    0.325810] omap_hwmod: vip3: doesn't have mpu register target base
[    0.325816] Modules linked in:
[    0.325829] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.94-gbe5389fd85 #1
[    0.325837] Hardware name: Generic DRA74X (Flattened Device Tree)
[    0.325844] Backtrace: 
[    0.325859] [<c020ca34>] (dump_backtrace) from [<c020cd6c>] (show_stack+0x18/0x1c)
[    0.325870]  r7:c0dcd1d8 r6:60000013 r5:00000000 r4:c12506dc
[    0.325884] [<c020cd54>] (show_stack) from [<c0a15124>] (dump_stack+0x9c/0xb0)
[    0.325896] [<c0a15088>] (dump_stack) from [<c022e100>] (__warn+0xdc/0xf8)
[    0.325907]  r7:c0dcd1d8 r6:00000009 r5:00000000 r4:ee89bddc
[    0.325919] [<c022e024>] (__warn) from [<c022dd38>] (warn_slowpath_fmt+0x50/0x6c)
[    0.325930]  r9:c104b824 r8:00000000 r7:c1212cac r6:00000000 r5:c0dcd7b4 r4:c1204c48
[    0.325942] [<c022dcec>] (warn_slowpath_fmt) from [<c100cef4>] (_init.constprop.22+0x1b0/0x4dc)
[    0.325951]  r3:c0dcfb3c r2:c0dcd7b4
[    0.325959]  r5:00000000 r4:c1212c74
[    0.325972] [<c100cd44>] (_init.constprop.22) from [<c100d350>] (__omap_hwmod_setup_all+0x48/0x134)
[    0.325984]  r10:c10606e8 r9:c104b824 r8:00000000 r7:c100d308 r6:ffffe000 r5:c120a2e8
[    0.325991]  r4:c1212c74
[    0.326004] [<c100d308>] (__omap_hwmod_setup_all) from [<c02025b8>] (do_one_initcall+0x84/0x1b0)
[    0.326013]  r5:c1204c48 r4:c1253e00
[    0.326026] [<c0202534>] (do_one_initcall) from [<c1000fe8>] (kernel_init_freeable+0x1c4/0x258)
[    0.326037]  r8:c104b844 r7:c10004f0 r6:c1253e00 r5:c1253e00 r4:00000003
[    0.326050] [<c1000e24>] (kernel_init_freeable) from [<c0a29438>] (kernel_init+0x10/0x11c)
[    0.326061]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0a29428
[    0.326069]  r4:00000000
[    0.326080] [<c0a29428>] (kernel_init) from [<c02010d8>] (ret_from_fork+0x14/0x3c)
[    0.326089] Exception stack(0xee89bfb0 to 0xee89bff8)
[    0.326099] bfa0:                                     00000000 00000000 00000000 00000000
[    0.326111] bfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    0.326121] bfe0: 00000000 00000000 00000000 00000000 00000013 00000000
[    0.326130]  r5:c0a29428 r4:00000000
[    0.326138] ---[ end trace b11d5f38a71584f4 ]---
[    0.416765] cpuidle: using governor ladder
[    0.416801] cpuidle: using governor menu
[    0.418129] ------------[ cut here ]------------
[    0.418150] WARNING: CPU: 0 PID: 1 at drivers/bus/omap_l3_noc.c:147 l3_interrupt_handler+0x330/0x380
[    0.418161] 44000000.ocp:L3 Custom Error: MASTER MPU TARGET L4_PER1_P3 (Read): Data Access in User mode during Functional access
[    0.418169] Modules linked in:
[    0.418182] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.94-gbe5389fd85 #1
[    0.418191] Hardware name: Generic DRA74X (Flattened Device Tree)
[    0.418199] Backtrace: 
[    0.418215] [<c020ca34>] (dump_backtrace) from [<c020cd6c>] (show_stack+0x18/0x1c)
[    0.418228]  r7:c0dfdec4 r6:60000193 r5:00000000 r4:c12506dc
[    0.418243] [<c020cd54>] (show_stack) from [<c0a15124>] (dump_stack+0x9c/0xb0)
[    0.418256] [<c0a15088>] (dump_stack) from [<c022e100>] (__warn+0xdc/0xf8)
[    0.418267]  r7:c0dfdec4 r6:00000009 r5:00000000 r4:ee89b8ec
[    0.418279] [<c022e024>] (__warn) from [<c022dd38>] (warn_slowpath_fmt+0x50/0x6c)
[    0.418291]  r9:ee9e0bc0 r8:f0882164 r7:c0dfddf0 r6:c0dfdd30 r5:c0dfde94 r4:c1204c48
[    0.418305] [<c022dcec>] (warn_slowpath_fmt) from [<c056711c>] (l3_interrupt_handler+0x330/0x380)
[    0.418314]  r3:eea466c0 r2:c0dfde94
[    0.418322]  r5:00000002 r4:80080003
[    0.418339] [<c0566dec>] (l3_interrupt_handler) from [<c02895ec>] (__handle_irq_event_percpu+0x68/0x140)
[    0.418352]  r10:c12522f8 r9:ee9ebe00 r8:00000017 r7:ee89ba18 r6:00000000 r5:ee9ebe68
[    0.418360]  r4:eea46ac0
[    0.418374] [<c0289584>] (__handle_irq_event_percpu) from [<c02896f8>] (handle_irq_event_percpu+0x34/0x88)
[    0.418386]  r10:60000013 r9:ee89a000 r8:ee80c000 r7:00000001 r6:ee9ebe00 r5:ee9ebe68
[    0.418394]  r4:c1204c48
[    0.418408] [<c02896c4>] (handle_irq_event_percpu) from [<c028978c>] (handle_irq_event+0x40/0x64)
[    0.418418]  r6:c120a434 r5:ee9ebe68 r4:ee9ebe00
[    0.418431] [<c028974c>] (handle_irq_event) from [<c028d4dc>] (handle_fasteoi_irq+0xc0/0x168)
[    0.418441]  r7:00000001 r6:c120a434 r5:ee9ebe68 r4:ee9ebe00
[    0.418454] [<c028d41c>] (handle_fasteoi_irq) from [<c02887e8>] (generic_handle_irq+0x2c/0x3c)
[    0.418464]  r7:00000001 r6:00000000 r5:00000000 r4:c1068cfc
[    0.418478] [<c02887bc>] (generic_handle_irq) from [<c0288e4c>] (__handle_domain_irq+0x64/0xbc)
[    0.418491] [<c0288de8>] (__handle_domain_irq) from [<c0565458>] (gic_handle_irq+0x44/0x80)
[    0.418503]  r9:ee89a000 r8:fa213000 r7:ee89bae0 r6:fa212000 r5:fa21200c r4:c1205104
[    0.418516] [<c0565414>] (gic_handle_irq) from [<c02019f8>] (__irq_svc+0x58/0x8c)
[    0.418525] Exception stack(0xee89bae0 to 0xee89bb28)
[    0.418538] bae0: ee9ebe68 60000013 00000004 00000005 ee9ebe00 eea46ac0 00000000 00000017
[    0.418550] bb00: ee9ebed0 ee9ebe68 60000013 ee89bb3c ee89bb40 ee89bb30 c028b9ec c0a2f61c
[    0.418559] bb20: 60000013 ffffffff
[    0.418570]  r9:ee89a000 r8:ee9ebed0 r7:ee89bb14 r6:ffffffff r5:60000013 r4:c0a2f61c
[    0.418586] [<c0a2f5f4>] (_raw_spin_unlock_irqrestore) from [<c028b9ec>] (__setup_irq+0x3bc/0x718)
[    0.418601] [<c028b630>] (__setup_irq) from [<c028beb8>] (request_threaded_irq+0xe0/0x154)
[    0.418612]  r10:ee9ebe14 r9:00000000 r8:00000017 r7:00000000 r6:ee9ebe00 r5:00000000
[    0.418620]  r4:eea46ac0
[    0.418634] [<c028bdd8>] (request_threaded_irq) from [<c028e7d4>] (devm_request_threaded_irq+0x70/0xc4)
[    0.418646]  r10:00000000 r9:c0566dec r8:eea40e10 r7:00000017 r6:ee9e0bc0 r5:ee9e0ec0
[    0.418654]  r4:c0dfdc60 r3:00000000
[    0.418668] [<c028e764>] (devm_request_threaded_irq) from [<c0567340>] (omap_l3_probe+0x1d4/0x27c)
[    0.418679]  r10:00000002 r9:ee9e0bc0 r8:eea40e10 r7:c1288aec r6:00000008 r5:ee9e0bc0
[    0.418687]  r4:00000000
[    0.418704] [<c056716c>] (omap_l3_probe) from [<c06c8368>] (platform_drv_probe+0x50/0xa0)
[    0.418715]  r10:00000000 r9:c122425c r8:00000000 r7:00000000 r6:c122425c r5:00000000
[    0.418723]  r4:eea40e10
[    0.418736] [<c06c8318>] (platform_drv_probe) from [<c06c63b8>] (really_probe+0x204/0x2c0)
[    0.418746]  r7:00000000 r6:c128d988 r5:eea40e10 r4:c128d984
[    0.418759] [<c06c61b4>] (really_probe) from [<c06c6618>] (driver_probe_device+0x68/0x180)
[    0.418771]  r10:00000000 r9:c128d960 r8:00000001 r7:c06c6828 r6:eea40e10 r5:c122425c
[    0.418779]  r4:eea40e10 r3:00000000
[    0.418792] [<c06c65b0>] (driver_probe_device) from [<c06c68cc>] (__device_attach_driver+0xa4/0xc8)
[    0.418804]  r9:c128d960 r8:00000001 r7:c06c6828 r6:eea40e10 r5:ee89bd04 r4:c122425c
[    0.418816] [<c06c6828>] (__device_attach_driver) from [<c06c4570>] (bus_for_each_drv+0x88/0xcc)
[    0.418827]  r7:c06c6828 r6:ee89bd04 r5:c1204c48 r4:00000000
[    0.418839] [<c06c44e8>] (bus_for_each_drv) from [<c06c6134>] (__device_attach+0xd8/0x140)
[    0.418849]  r7:c1236f48 r6:eea40e44 r5:c1204c48 r4:eea40e10
[    0.418862] [<c06c605c>] (__device_attach) from [<c06c693c>] (device_initial_probe+0x14/0x18)
[    0.418872]  r8:eea40e10 r7:c1236f48 r6:c12370f0 r5:eea40e10 r4:eea40e18
[    0.418885] [<c06c6928>] (device_initial_probe) from [<c06c549c>] (bus_probe_device+0x8c/0x94)
[    0.418898] [<c06c5410>] (bus_probe_device) from [<c06c2000>] (device_add+0x37c/0x620)
[    0.418908]  r7:c1236f48 r6:00000000 r5:c1204c48 r4:eea40e18
[    0.418924] [<c06c1c84>] (device_add) from [<c0859c78>] (of_device_add+0x3c/0x44)
[    0.418935]  r10:00000000 r9:c1213418 r8:00000000 r7:eedadd68 r6:00000000 r5:00000000
[    0.418943]  r4:eea40e00
[    0.418958] [<c0859c3c>] (of_device_add) from [<c085a1fc>] (of_platform_device_create_pdata+0x98/0xc0)
[    0.418973] [<c085a164>] (of_platform_device_create_pdata) from [<c085a424>] (of_platform_bus_create+0x1a4/0x248)
[    0.418984]  r9:c1213418 r8:c1213418 r7:00000000 r6:00000000 r5:c1204c48 r4:eedadd18
[    0.418999] [<c085a280>] (of_platform_bus_create) from [<c085a640>] (of_platform_populate+0x74/0xd4)
[    0.419011]  r10:00000001 r9:00000000 r8:c1213418 r7:c1053ccc r6:00000000 r5:eedac500
[    0.419018]  r4:eedadd18
[    0.419033] [<c085a5cc>] (of_platform_populate) from [<c100f5c8>] (pdata_quirks_init+0x78/0x88)
[    0.419045]  r10:c1060768 r9:c104b828 r8:00000000 r7:c1003ca0 r6:ffffe000 r5:c1204c48
[    0.419052]  r4:c1053ccc
[    0.419066] [<c100f550>] (pdata_quirks_init) from [<c100f4d4>] (omap_generic_init+0x18/0x20)
[    0.419075]  r5:c1204c48 r4:c1253e00
[    0.419089] [<c100f4bc>] (omap_generic_init) from [<c1003cc8>] (customize_machine+0x28/0x30)
[    0.419103] [<c1003ca0>] (customize_machine) from [<c02025b8>] (do_one_initcall+0x84/0x1b0)
[    0.419117] [<c0202534>] (do_one_initcall) from [<c1000fe8>] (kernel_init_freeable+0x1c4/0x258)
[    0.419127]  r8:c104b848 r7:c10004f0 r6:c1253e00 r5:c1253e00 r4:00000004
[    0.419140] [<c1000e24>] (kernel_init_freeable) from [<c0a29438>] (kernel_init+0x10/0x11c)
[    0.419151]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0a29428
[    0.419159]  r4:00000000
[    0.419170] [<c0a29428>] (kernel_init) from [<c02010d8>] (ret_from_fork+0x14/0x3c)
[    0.419178] Exception stack(0xee89bfb0 to 0xee89bff8)
[    0.419189] bfa0:                                     00000000 00000000 00000000 00000000
[    0.419200] bfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    0.419210] bfe0: 00000000 00000000 00000000 00000000 00000013 00000000
[    0.419219]  r5:c0a29428 r4:00000000
[    0.419227] ---[ end trace b11d5f38a71584f5 ]---
[    0.425085] OMAP GPIO hardware version 0.1
[    0.443799] No ATAGs?
[    0.443871] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
[    0.443887] hw-breakpoint: maximum watchpoint size is 8 bytes.
[    0.443919] omap_device: omap_dma_system: build failed (-22)
[    0.443929] omap2_system_dma_init_dev: Can't build omap_device for omap_dma_system:dma_system.
[    0.455363] edma 43300000.edma: memcpy is disabled
[    0.458746] edma 43300000.edma: TI EDMA DMA engine driver
[    0.462088] ------------[ cut here ]------------
[    0.462110] WARNING: CPU: 0 PID: 1 at drivers/iommu/omap-iommu.c:1750 omap_iommu_add_device+0xcc/0x188
[    0.462119] Modules linked in:
[    0.462134] CPU: 0 PID: 1 Comm: swapper/0 Tainted: G        W         4.19.94-gbe5389fd85 #1
[    0.462143] Hardware name: Generic DRA74X (Flattened Device Tree)
[    0.462152] Backtrace: 
[    0.462169] [<c020ca34>] (dump_backtrace) from [<c020cd6c>] (show_stack+0x18/0x1c)
[    0.462182]  r7:c0e13a8c r6:60000013 r5:00000000 r4:c12506dc
[    0.462199] [<c020cd54>] (show_stack) from [<c0a15124>] (dump_stack+0x9c/0xb0)
[    0.462214] [<c0a15088>] (dump_stack) from [<c022e100>] (__warn+0xdc/0xf8)
[    0.462225]  r7:c0e13a8c r6:00000009 r5:00000000 r4:00000000
[    0.462238] [<c022e024>] (__warn) from [<c022e164>] (warn_slowpath_null+0x48/0x50)
[    0.462250]  r9:00000001 r8:c0e13a84 r7:eeac4210 r6:c063fd6c r5:000006d6 r4:c0e13a8c
[    0.462263] [<c022e11c>] (warn_slowpath_null) from [<c063fd6c>] (omap_iommu_add_device+0xcc/0x188)
[    0.462273]  r6:eeaecf80 r5:eeddedcc r4:ffffffea
[    0.462290] [<c063fca0>] (omap_iommu_add_device) from [<c063d824>] (add_iommu_group+0x34/0x5c)
[    0.462303]  r10:c1060884 r9:c104b82c r8:00000000 r7:c063d7f0 r6:ee89be88 r5:c0c4c3bc
[    0.462312]  r4:eeac4210 r3:c063fca0
[    0.462328] [<c063d7f0>] (add_iommu_group) from [<c06c4484>] (bus_for_each_dev+0x7c/0xbc)
[    0.462338]  r5:c1204c48 r4:eea96bb4
[    0.462352] [<c06c4408>] (bus_for_each_dev) from [<c063d910>] (bus_set_iommu+0xc4/0x100)
[    0.462362]  r7:00000000 r6:eeaecf40 r5:c1204c48 r4:c12370f0
[    0.462378] [<c063d84c>] (bus_set_iommu) from [<c10299c4>] (omap_iommu_init+0xac/0xe0)
[    0.462389]  r8:00000000 r7:c1029918 r6:ffffe000 r5:00000000 r4:c128d5c8
[    0.462403] [<c1029918>] (omap_iommu_init) from [<c02025b8>] (do_one_initcall+0x84/0x1b0)
[    0.462412]  r5:c1204c48 r4:c1253e00
[    0.462428] [<c0202534>] (do_one_initcall) from [<c1000fe8>] (kernel_init_freeable+0x1c4/0x258)
[    0.462440]  r8:c104b84c r7:c10004f0 r6:c1253e00 r5:c1253e00 r4:00000005
[    0.462453] [<c1000e24>] (kernel_init_freeable) from [<c0a29438>] (kernel_init+0x10/0x11c)
[    0.462465]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0a29428
[    0.462472]  r4:00000000
[    0.462485] [<c0a29428>] (kernel_init) from [<c02010d8>] (ret_from_fork+0x14/0x3c)
[    0.462494] Exception stack(0xee89bfb0 to 0xee89bff8)
[    0.462505] bfa0:                                     00000000 00000000 00000000 00000000
[    0.462517] bfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
[    0.462528] bfe0: 00000000 00000000 00000000 00000000 00000013 00000000
[    0.462537]  r5:c0a29428 r4:00000000
[    0.462545] ---[ end trace b11d5f38a71584f6 ]---
[    0.463724] SCSI subsystem initialized
[    0.464897] palmas 2-0058: IRQ missing: skipping irq request
[    0.491459] palmas 2-0058: Muxing GPIO 2b, PWM 0, LED 0
[    0.495115] SMPS12: supplied by regulator-dummy
[    0.499662] SMPS3: supplied by VMAIN
[    0.503869] SMPS45: supplied by regulator-dummy
[    0.508878] SMPS6: supplied by VMAIN
[    0.513415] SMPS7: supplied by VMAIN
[    0.518425] SMPS8: supplied by VMAIN
[    0.521715] SMPS9: supplied by VMAIN
[    0.523102] random: fast init done
[    0.524121] LDO1: supplied by VMAIN
[    0.532417] LDO2: supplied by VMAIN
[    0.541979] LDO3: supplied by VMAIN
[    0.551997] LDO4: supplied by VMAIN
[    0.562028] LDO5: supplied by regulator-dummy
[    0.563628] LDO6: supplied by regulator-dummy
[    0.565216] LDO7: supplied by regulator-dummy
[    0.566815] LDO8: supplied by regulator-dummy
[    0.568394] LDO9: supplied by VMAIN
[    0.572948] LDOLN: supplied by VMAIN
[    0.582045] LDOUSB: supplied by VMAIN
[    0.595492] omap_i2c 48060000.i2c: bus 2 rev0.12 at 100 kHz
[    0.595655] media: Linux media interface: v0.10
[    0.595699] videodev: Linux video capture interface: v2.00
[    0.595773] pps_core: LinuxPPS API ver. 1 registered
[    0.595783] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
[    0.595804] PTP clock support registered
[    0.595834] EDAC MC: Ver: 3.0.0
[    0.601195] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
[    0.601447] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
[    0.601906] Advanced Linux Sound Architecture Driver Initialized.
[    0.602701] clocksource: Switched to clocksource arch_sys_counter
[    0.610857] NET: Registered protocol family 2
[    0.611424] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes)
[    0.611454] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
[    0.611517] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
[    0.611644] TCP: Hash tables configured (established 8192 bind 8192)
[    0.611719] UDP hash table entries: 512 (order: 2, 16384 bytes)
[    0.611753] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
[    0.611885] NET: Registered protocol family 1
[    0.612313] RPC: Registered named UNIX socket transport module.
[    0.612324] RPC: Registered udp transport module.
[    0.612332] RPC: Registered tcp transport module.
[    0.612341] RPC: Registered tcp NFSv4.1 backchannel transport module.
[    0.613237] hw perfevents: no interrupt-affinity property for /pmu, guessing.
[    0.613423] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
[    0.614329] Initialise system trusted keyrings
[    0.614456] workingset: timestamp_bits=14 max_order=19 bucket_order=5
[    0.619418] squashfs: version 4.0 (2009/01/31) Phillip Lougher
[    0.619880] NFS: Registering the id_resolver key type
[    0.619904] Key type id_resolver registered
[    0.619914] Key type id_legacy registered
[    0.619952] ntfs: driver 2.1.32 [Flags: R/O].
[    0.621687] Key type asymmetric registered
[    0.621699] Asymmetric key parser 'x509' registered
[    0.621747] bounce: pool size: 64 pages
[    0.621780] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
[    0.621791] io scheduler noop registered
[    0.621801] io scheduler deadline registered
[    0.621896] io scheduler cfq registered (default)
[    0.621907] io scheduler mq-deadline registered
[    0.621916] io scheduler kyber registered
[    0.625473] pinctrl-single 4a003400.pinmux: 282 pins, size 1128
[    0.630992] V3_3D: supplied by smps9
[    0.631525] vtt_fixed: supplied by V3_3D
[    0.676519] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
[    0.679973] console [ttyS2] disabled
[    0.680027] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 43, base_baud = 3000000) is a 8250
[    4.410266] console [ttyS2] enabled
[    4.415502] omap_rng 48090000.rng: Random Number Generator ver. 20
[    4.416057] random: crng init done
[    4.433366] brd: module loaded
[    4.442688] loop: module loaded
[    4.448728] ti-qspi 4b300000.qspi: No Rx DMA available, trying mmap mode
[    4.456713] libphy: Fixed MDIO Bus: probed
[    4.522734] davinci_mdio 48485000.mdio: davinci mdio revision 1.6, bus freq 1000000
[    4.530429] davinci_mdio 48485000.mdio: detected phy mask fffffffc
[    4.541501] libphy: 48485000.mdio: probed
[    4.545559] davinci_mdio 48485000.mdio: phy[0]: device 48485000.mdio:00, driver Marvell 88E1510
[    4.554317] davinci_mdio 48485000.mdio: phy[1]: device 48485000.mdio:01, driver Marvell 88E1510
[    4.563722] cpsw 48484000.ethernet: Detected MACID = 88:3f:4a:5e:e6:8a
[    4.570332] cpsw 48484000.ethernet: initialized cpsw ale version 1.4
[    4.576739] cpsw 48484000.ethernet: ALE Table size 1024
[    4.582018] cpsw 48484000.ethernet: cpts: overflow check period 500 (jiffies)
[    4.590038] cpsw 48484000.ethernet: cpsw: Detected MACID = 88:3f:4a:5e:e6:8b
[    4.598334] i2c /dev entries driver
[    4.605851] cpu cpu0: dev_pm_opp_set_regulators: no regulator (vdd) found: -19
[    4.613556] sdhci: Secure Digital Host Controller Interface driver
[    4.619767] sdhci: Copyright(c) Pierre Ossman
[    4.624963] omap_gpio 4805d000.gpio: Could not set line 27 debounce to 200000 microseconds (-22)
[    4.633813] omap_hsmmc 4809c000.mmc: Got CD GPIO
[    4.638695] omap_hsmmc 4809c000.mmc: RX DMA channel request failed
[    4.645732] omap_hsmmc 480b4000.mmc: RX DMA channel request failed
[    4.652152] sdhci-pltfm: SDHCI platform and OF driver helper
[    4.658836] ledtrig-cpu: registered to indicate activity on CPUs
[    4.669486] NET: Registered protocol family 10
[    4.674917] Segment Routing with IPv6
[    4.678665] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
[    4.685108] NET: Registered protocol family 17
[    4.689733] Key type dns_resolver registered
[    4.694179] Registering SWP/SWPB emulation handler
[    4.698996] omap_voltage_late_init: Voltage driver support not added
[    4.705398] Power Management for TI OMAP4+ devices.
[    4.711004] Loading compiled-in X.509 certificates
[    4.733904] dmm 4e000000.dmm: failed to initialize work-around for i878
[    4.742066] dmm 4e000000.dmm: initialized all PAT entries
[    4.748860] hctosys: unable to open rtc device (rtc0)
[    4.754613] ALSA device list:
[    4.757595]   No soundcards found.
[    4.761835] Waiting for root device PARTUUID=41d4c7bc-02...
[   35.033301] pbias_mmc_omap5: disabling

  • Hi Greg,

    There could be some settings missing in the dts, there are lot of failures.

    Could you convert the finally generated dtb to dts and share here? Use below command from Kernel folder to convert dtb file to dts file and share the temp.dts file.

    ./scripts/dtc/dtc -I dtb -O dts -o temp.dts {your board dtb file}


    Regards,
    Vishal

  • Attached is the temp.dts.  Thank you for your help.temp.dts.txt

  • - Are you using the prebuilt Kernel image from the release and only updating the Kernel dtb?
    - The converted dts file doesn't look correct, are you sure you gave the correct file?

  • You can similarly generate dts out of the default am572x-idk.dtb and check for comparison.

  • Hi Vishal,

    - I am using a rootfs and uImage/zImage that are copied from a microSD that boots the am574x IDK.

    - I have also tried using the rootfs and zImage from bitbaking Linux RT, and creating the microSD card with the TI script create-sdcard.sh.

    Maybe my process is wrong? I have been compiling the dts into dtb using the makefile provided for compiling u-boot, and manually copying the dtb into /rootfs/boot.

    Am I wrongly building a u-boot version of the dtb file for use in the Linux Kernel? 

    The dtb files in /rootfs/boot look somewhat different than those built when making u-boot.  Is this because of different dts and dtsi files are used when building the Linux versions, or different invocation of the dtc?

    Is there a quick way to build a Linux Kernel version of the dtb from the command line like:  dtc -O dtb -o my_devicetree.dtb my_devicetree.dts

    Thank you for your help.

    Greg

  • The problem was using the u-boot generated dtb instead of the kernel dtb.
    There are still some errors in the attached boot log, but I can now login.

    U-Boot SPL 2019.01-g4fd17df956-dirty (Jun 24 2020 - 21:58:47 -0600)
    DRA752-GP ES2.0
    Firmware loading failed
    Trying to boot from MMC1
    no pinctrl state for default mode
    Timed out in wait_for_event: status=0000
    Check if pads/pull-ups of bus are properly configured
    unable to get I2C bus. ret 1
    tps65903x: could not set LDO1 voltage.
    no pinctrl state for default mode
    Loading Environment from FAT... OK
    
    
    U-Boot 2019.01-g4fd17df956-dirty (Jun 24 2020 - 21:57:56 -0600)
    
    CPU  : DRA752-GP ES2.0
    Model: SKF Controller Board
    Board: SKF Control Board REV 1a
    DRAM:  2 GiB
    MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1
    Loading Environment from FAT... OK
    Net:   No ethernet found.
    Hit any key to stop autoboot:  0 
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    ** Unable to read file boot.scr **
    1526 bytes read in 2 ms (745.1 KiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc0 ...
    Running uenvcmd ...
    1 bytes read in 1 ms (1000 Bytes/s)
    Already setup.
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    4448768 bytes read in 206 ms (20.6 MiB/s)
    90944 bytes read in 7 ms (12.4 MiB/s)
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       Loading Device Tree to 8ffe6000, end 8ffff33f ... OK
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Linux version 4.19.94-gbe5389fd85 (oe-user@oe-host) (gcc version 8.3.0 (GNU Toolchain for the A-profile Architecture 8.3-2019.03 (arm-rel-8.36))) #1 SMP PREEMPT Sun Ap
    r 19 02:36:36 UTC 2020
    [    0.000000] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), cr=30c5387d
    [    0.000000] CPU: div instructions available: patching division code
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
    [    0.000000] OF: fdt: Machine model: SKF Controller Board
    [    0.000000] Memory policy: Data cache writealloc
    [    0.000000] efi: Getting EFI parameters from FDT:
    [    0.000000] efi: UEFI not found.
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000095800000, size 56 MiB
    [    0.000000] OF: reserved mem: initialized node ipu2-memory@95800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000099000000, size 64 MiB
    [    0.000000] OF: reserved mem: initialized node dsp1-memory@99000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created DMA memory pool at 0x000000009d000000, size 32 MiB
    [    0.000000] OF: reserved mem: initialized node ipu1-memory@9d000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x000000009f000000, size 8 MiB
    [    0.000000] OF: reserved mem: initialized node dsp2-memory@9f000000, compatible id shared-dma-pool
    [    0.000000] cma: Reserved 24 MiB at 0x00000000fe400000
    [    0.000000] OMAP4: Map 0x00000000ffd00000 to (ptrval) for dram barrier
    [    0.000000] Hit pending asynchronous external abort (FSR=0x00001211) during first unmask, this is most likely caused by a firmware/bootloader bug.
    [    0.000000] DRA752 ES2.0
    [    0.000000] random: get_random_bytes called from start_kernel+0xb4/0x470 with crng_init=0
    [    0.000000] percpu: Embedded 15 pages/cpu s32396 r8192 d20852 u61440
    [    0.000000] Built 1 zonelists, mobility grouping on.  Total pages: 382848
    [    0.000000] Kernel command line: console=ttyS2,115200n8 root=PARTUUID=c6985351-02 rw rootfstype=ext4 rootwait
    [    0.000000] Dentry cache hash table entries: 65536 (order: 6, 262144 bytes)
    [    0.000000] Inode-cache hash table entries: 32768 (order: 5, 131072 bytes)
    [    0.000000] Memory: 1348636K/1536000K available (10240K kernel code, 335K rwdata, 2800K rodata, 2048K init, 268K bss, 31716K reserved, 155648K cma-reserved, 1020928K highmem)
    [    0.000000] Virtual kernel memory layout:
    [    0.000000]     vector  : 0xffff0000 - 0xffff1000   (   4 kB)
    [    0.000000]     fixmap  : 0xffc00000 - 0xfff00000   (3072 kB)
    [    0.000000]     vmalloc : 0xe0800000 - 0xff800000   ( 496 MB)
    [    0.000000]     lowmem  : 0xc0000000 - 0xe0000000   ( 512 MB)
    [    0.000000]     pkmap   : 0xbfe00000 - 0xc0000000   (   2 MB)
    [    0.000000]     modules : 0xbf000000 - 0xbfe00000   (  14 MB)
    [    0.000000]       .text : 0x(ptrval) - 0x(ptrval)   (12256 kB)
    [    0.000000]       .init : 0x(ptrval) - 0x(ptrval)   (2048 kB)
    [    0.000000]       .data : 0x(ptrval) - 0x(ptrval)   ( 336 kB)
    [    0.000000]        .bss : 0x(ptrval) - 0x(ptrval)   ( 269 kB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] rcu: Preemptible hierarchical RCU implementation.
    [    0.000000]  Tasks RCU enabled.
    [    0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16
    [    0.000000] GIC: Using split EOI/Deactivate mode
    [    0.000000] OMAP clockevent source: timer1 at 32786 Hz
    [    0.000000] arch_timer: cp15 timer(s) running at 6.14MHz (phys).
    [    0.000000] clocksource: arch_sys_counter: mask: 0xffffffffffffff max_cycles: 0x16af5adb9, max_idle_ns: 440795202250 ns
    [    0.000005] sched_clock: 56 bits at 6MHz, resolution 162ns, wraps every 4398046511023ns
    [    0.000018] Switching to timer-based delay loop, resolution 162ns
    [    0.000293] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns
    [    0.000303] OMAP clocksource: 32k_counter at 32768 Hz
    [    0.000738] Console: colour dummy device 80x30
    [    0.000783] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.29 BogoMIPS (lpj=61475)
    [    0.000797] pid_max: default: 32768 minimum: 301
    [    0.000918] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [    0.000931] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)
    [    0.001480] CPU: Testing write buffer coherency: ok
    [    0.001517] CPU0: Spectre v2: using ICIALLU workaround
    [    0.001734] /cpus/cpu@0 missing clock-frequency property
    [    0.001755] /cpus/cpu@1 missing clock-frequency property
    [    0.001768] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
    [    0.059922] Setting up static identity map for 0x80200000 - 0x80200060
    [    0.079934] rcu: Hierarchical SRCU implementation.
    [    0.100131] EFI services will not be available.
    [    0.120000] smp: Bringing up secondary CPUs ...
    [    0.200386] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
    [    0.200392] CPU1: Spectre v2: using ICIALLU workaround
    [    0.200514] smp: Brought up 1 node, 2 CPUs
    [    0.200526] SMP: Total of 2 processors activated (24.59 BogoMIPS).
    [    0.200535] CPU: All CPU(s) started in HYP mode.
    [    0.200543] CPU: Virtualization extensions available.
    [    0.200988] devtmpfs: initialized
    [    0.217543] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
    [    0.217822] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [    0.217839] futex hash table entries: 512 (order: 3, 32768 bytes)
    [    0.220476] pinctrl core: initialized pinctrl subsystem
    [    0.220990] DMI not present or invalid.
    [    0.221266] NET: Registered protocol family 16
    [    0.222395] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.223341] omap_hwmod: l3_main_2 using broken dt data from ocp
    [    0.407118] cpuidle: using governor ladder
    [    0.407154] cpuidle: using governor menu
    [    0.408536] ------------[ cut here ]------------
    [    0.408558] WARNING: CPU: 0 PID: 1 at drivers/bus/omap_l3_noc.c:147 l3_interrupt_handler+0x330/0x380
    [    0.408570] 44000000.ocp:L3 Custom Error: MASTER MPU TARGET L4_PER1_P3 (Read): Data Access in User mode during Functional access
    [    0.408578] Modules linked in:
    [    0.408593] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 4.19.94-gbe5389fd85 #1
    [    0.408602] Hardware name: Generic DRA74X (Flattened Device Tree)
    [    0.408610] Backtrace: 
    [    0.408628] [<c020ca34>] (dump_backtrace) from [<c020cd6c>] (show_stack+0x18/0x1c)
    [    0.408641]  r7:c0dfdec4 r6:60000193 r5:00000000 r4:c12506dc
    [    0.408658] [<c020cd54>] (show_stack) from [<c0a15124>] (dump_stack+0x9c/0xb0)
    [    0.408673] [<c0a15088>] (dump_stack) from [<c022e100>] (__warn+0xdc/0xf8)
    [    0.408684]  r7:c0dfdec4 r6:00000009 r5:00000000 r4:df87b8ec
    [    0.408697] [<c022e024>] (__warn) from [<c022dd38>] (warn_slowpath_fmt+0x50/0x6c)
    [    0.408709]  r9:df9d39c0 r8:e0882164 r7:c0dfddf0 r6:c0dfdd30 r5:c0dfde94 r4:c1204c48
    [    0.408724] [<c022dcec>] (warn_slowpath_fmt) from [<c056711c>] (l3_interrupt_handler+0x330/0x380)
    [    0.408733]  r3:dfa00f00 r2:c0dfde94
    [    0.408743]  r5:00000002 r4:80080003
    [    0.408759] [<c0566dec>] (l3_interrupt_handler) from [<c02895ec>] (__handle_irq_event_percpu+0x68/0x140)
    [    0.408772]  r10:c12522f8 r9:dfa02f00 r8:00000017 r7:df87ba18 r6:00000000 r5:dfa02f68
    [    0.408780]  r4:dfa073c0
    [    0.408795] [<c0289584>] (__handle_irq_event_percpu) from [<c02896f8>] (handle_irq_event_percpu+0x34/0x88)
    [    0.408808]  r10:60000013 r9:df87a000 r8:df80c000 r7:00000001 r6:dfa02f00 r5:dfa02f68
    [    0.408816]  r4:c1204c48
    [    0.408830] [<c02896c4>] (handle_irq_event_percpu) from [<c028978c>] (handle_irq_event+0x40/0x64)
    [    0.408840]  r6:c120a434 r5:dfa02f68 r4:dfa02f00
    [    0.408854] [<c028974c>] (handle_irq_event) from [<c028d4dc>] (handle_fasteoi_irq+0xc0/0x168)
    [    0.408864]  r7:00000001 r6:c120a434 r5:dfa02f68 r4:dfa02f00
    [    0.408877] [<c028d41c>] (handle_fasteoi_irq) from [<c02887e8>] (generic_handle_irq+0x2c/0x3c)
    [    0.408888]  r7:00000001 r6:00000000 r5:00000000 r4:c1068cfc
    [    0.408902] [<c02887bc>] (generic_handle_irq) from [<c0288e4c>] (__handle_domain_irq+0x64/0xbc)
    [    0.408916] [<c0288de8>] (__handle_domain_irq) from [<c0565458>] (gic_handle_irq+0x44/0x80)
    [    0.408928]  r9:df87a000 r8:fa213000 r7:df87bae0 r6:fa212000 r5:fa21200c r4:c1205104
    [    0.408941] [<c0565414>] (gic_handle_irq) from [<c02019f8>] (__irq_svc+0x58/0x8c)
    [    0.408950] Exception stack(0xdf87bae0 to 0xdf87bb28)
    [    0.408962] bae0: dfa02f68 60000013 00000004 00000005 dfa02f00 dfa073c0 00000000 00000017
    [    0.408974] bb00: dfa02fd0 dfa02f68 60000013 df87bb3c df87bb40 df87bb30 c028b9ec c0a2f61c
    [    0.408983] bb20: 60000013 ffffffff
    [    0.408994]  r9:df87a000 r8:dfa02fd0 r7:df87bb14 r6:ffffffff r5:60000013 r4:c0a2f61c
    [    0.409011] [<c0a2f5f4>] (_raw_spin_unlock_irqrestore) from [<c028b9ec>] (__setup_irq+0x3bc/0x718)
    [    0.409026] [<c028b630>] (__setup_irq) from [<c028beb8>] (request_threaded_irq+0xe0/0x154)
    [    0.409038]  r10:dfa02f14 r9:00000000 r8:00000017 r7:00000000 r6:dfa02f00 r5:00000000
    [    0.409047]  r4:dfa073c0
    [    0.409062] [<c028bdd8>] (request_threaded_irq) from [<c028e7d4>] (devm_request_threaded_irq+0x70/0xc4)
    [    0.409074]  r10:00000000 r9:c0566dec r8:df9f4e10 r7:00000017 r6:df9d39c0 r5:df9d3cc0
    [    0.409082]  r4:c0dfdc60 r3:00000000
    [    0.409096] [<c028e764>] (devm_request_threaded_irq) from [<c0567340>] (omap_l3_probe+0x1d4/0x27c)
    [    0.409108]  r10:00000002 r9:df9d39c0 r8:df9f4e10 r7:c1288aec r6:00000008 r5:df9d39c0
    [    0.409116]  r4:00000000
    [    0.409132] [<c056716c>] (omap_l3_probe) from [<c06c8368>] (platform_drv_probe+0x50/0xa0)
    [    0.409144]  r10:00000000 r9:c122425c r8:00000000 r7:00000000 r6:c122425c r5:00000000
    [    0.409151]  r4:df9f4e10
    [    0.409165] [<c06c8318>] (platform_drv_probe) from [<c06c63b8>] (really_probe+0x204/0x2c0)
    [    0.409176]  r7:00000000 r6:c128d988 r5:df9f4e10 r4:c128d984
    [    0.409189] [<c06c61b4>] (really_probe) from [<c06c6618>] (driver_probe_device+0x68/0x180)
    [    0.409201]  r10:00000000 r9:c128d960 r8:00000001 r7:c06c6828 r6:df9f4e10 r5:c122425c
    [    0.409209]  r4:df9f4e10 r3:00000000
    [    0.409222] [<c06c65b0>] (driver_probe_device) from [<c06c68cc>] (__device_attach_driver+0xa4/0xc8)
    [    0.409234]  r9:c128d960 r8:00000001 r7:c06c6828 r6:df9f4e10 r5:df87bd04 r4:c122425c
    [    0.409247] [<c06c6828>] (__device_attach_driver) from [<c06c4570>] (bus_for_each_drv+0x88/0xcc)
    [    0.409257]  r7:c06c6828 r6:df87bd04 r5:c1204c48 r4:00000000
    [    0.409270] [<c06c44e8>] (bus_for_each_drv) from [<c06c6134>] (__device_attach+0xd8/0x140)
    [    0.409280]  r7:c1236f48 r6:df9f4e44 r5:c1204c48 r4:df9f4e10
    [    0.409294] [<c06c605c>] (__device_attach) from [<c06c693c>] (device_initial_probe+0x14/0x18)
    [    0.409305]  r8:df9f4e10 r7:c1236f48 r6:c12370f0 r5:df9f4e10 r4:df9f4e18
    [    0.409318] [<c06c6928>] (device_initial_probe) from [<c06c549c>] (bus_probe_device+0x8c/0x94)
    [    0.409331] [<c06c5410>] (bus_probe_device) from [<c06c2000>] (device_add+0x37c/0x620)
    [    0.409341]  r7:c1236f48 r6:00000000 r5:c1204c48 r4:df9f4e18
    [    0.409357] [<c06c1c84>] (device_add) from [<c0859c78>] (of_device_add+0x3c/0x44)
    [    0.409368]  r10:00000000 r9:c1213418 r8:00000000 r7:dff75874 r6:00000000 r5:00000000
    [    0.409376]  r4:df9f4e00
    [    0.409391] [<c0859c3c>] (of_device_add) from [<c085a1fc>] (of_platform_device_create_pdata+0x98/0xc0)
    [    0.409406] [<c085a164>] (of_platform_device_create_pdata) from [<c085a424>] (of_platform_bus_create+0x1a4/0x248)
    [    0.409418]  r9:c1213418 r8:c1213418 r7:00000000 r6:00000000 r5:c1204c48 r4:dff75824
    [    0.409432] [<c085a280>] (of_platform_bus_create) from [<c085a640>] (of_platform_populate+0x74/0xd4)
    [    0.409444]  r10:00000001 r9:00000000 r8:c1213418 r7:c1053ccc r6:00000000 r5:dff73d84
    [    0.409452]  r4:dff75824
    [    0.409468] [<c085a5cc>] (of_platform_populate) from [<c100f5c8>] (pdata_quirks_init+0x78/0x88)
    [    0.409480]  r10:c1060768 r9:c104b828 r8:00000000 r7:c1003ca0 r6:ffffe000 r5:c1204c48
    [    0.409488]  r4:c1053ccc
    [    0.409501] [<c100f550>] (pdata_quirks_init) from [<c100f4d4>] (omap_generic_init+0x18/0x20)
    [    0.409510]  r5:c1204c48 r4:c1253e00
    [    0.409525] [<c100f4bc>] (omap_generic_init) from [<c1003cc8>] (customize_machine+0x28/0x30)
    [    0.409540] [<c1003ca0>] (customize_machine) from [<c02025b8>] (do_one_initcall+0x84/0x1b0)
    [    0.409553] [<c0202534>] (do_one_initcall) from [<c1000fe8>] (kernel_init_freeable+0x1c4/0x258)
    [    0.409564]  r8:c104b848 r7:c10004f0 r6:c1253e00 r5:c1253e00 r4:00000004
    [    0.409577] [<c1000e24>] (kernel_init_freeable) from [<c0a29438>] (kernel_init+0x10/0x11c)
    [    0.409589]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0a29428
    [    0.409596]  r4:00000000
    [    0.409608] [<c0a29428>] (kernel_init) from [<c02010d8>] (ret_from_fork+0x14/0x3c)
    [    0.409616] Exception stack(0xdf87bfb0 to 0xdf87bff8)
    [    0.409627] bfa0:                                     00000000 00000000 00000000 00000000
    [    0.409638] bfc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000
    [    0.409648] bfe0: 00000000 00000000 00000000 00000000 00000013 00000000
    [    0.409657]  r5:c0a29428 r4:00000000
    [    0.409669] ---[ end trace 37d6ea1a2b950291 ]---
    [    0.418761] OMAP GPIO hardware version 0.1
    [    0.443727] No ATAGs?
    [    0.443799] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
    [    0.443814] hw-breakpoint: maximum watchpoint size is 8 bytes.
    [    0.444660] OMAP DMA hardware revision 0.0
    [    0.456159] edma 43300000.edma: memcpy is disabled
    [    0.459564] edma 43300000.edma: TI EDMA DMA engine driver
    [    0.466842] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver (LinkedList1/2/3 supported)
    [    0.470358] omap-iommu 40d01000.mmu: 40d01000.mmu registered
    [    0.470584] omap-iommu 40d02000.mmu: 40d02000.mmu registered
    [    0.470842] omap-iommu 58882000.mmu: 58882000.mmu registered
    [    0.471076] omap-iommu 55082000.mmu: 55082000.mmu registered
    [    0.471457] omap-iommu 41501000.mmu: 41501000.mmu registered
    [    0.471644] omap-iommu 41502000.mmu: 41502000.mmu registered
    [    0.471913] iommu: Adding device 58820000.ipu to group 1
    [    0.471992] iommu: Adding device 55020000.ipu to group 2
    [    0.472118] iommu: Adding device 40800000.dsp to group 0
    [    0.472350] iommu: Adding device 41000000.dsp to group 3
    [    0.473598] SCSI subsystem initialized
    [    0.474618] omap_i2c 48070000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.475479] palmas 2-0058: IRQ missing: skipping irq request
    [    0.501486] palmas 2-0058: Muxing GPIO 2b, PWM 0, LED 0
    [    0.505139] SMPS12: supplied by regulator-dummy
    [    0.509694] SMPS3: supplied by regulator-dummy
    [    0.513902] SMPS45: supplied by regulator-dummy
    [    0.518908] SMPS6: supplied by regulator-dummy
    [    0.523457] SMPS7: supplied by regulator-dummy
    [    0.528463] SMPS8: supplied by regulator-dummy
    [    0.533012] SMPS9: supplied by regulator-dummy
    [    0.533073] random: fast init done
    [    0.535393] LDO1: supplied by regulator-dummy
    [    0.542482] LDO2: supplied by regulator-dummy
    [    0.552047] LDO3: supplied by regulator-dummy
    [    0.562066] LDO4: supplied by regulator-dummy
    [    0.572070] LDO5: supplied by regulator-dummy
    [    0.573669] LDO6: supplied by regulator-dummy
    [    0.575257] LDO7: supplied by regulator-dummy
    [    0.576851] LDO8: supplied by regulator-dummy
    [    0.578449] LDO9: supplied by regulator-dummy
    [    0.582094] LDOLN: supplied by regulator-dummy
    [    0.592109] LDOUSB: supplied by regulator-dummy
    [    0.605890] omap_i2c 48060000.i2c: bus 2 rev0.12 at 100 kHz
    [    0.606100] media: Linux media interface: v0.10
    [    0.606139] videodev: Linux video capture interface: v2.00
    [    0.606212] pps_core: LinuxPPS API ver. 1 registered
    [    0.606222] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.606243] PTP clock support registered
    [    0.606274] EDAC MC: Ver: 3.0.0
    [    0.611314] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
    [    0.611563] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
    [    0.612069] Advanced Linux Sound Architecture Driver Initialized.
    [    0.612871] clocksource: Switched to clocksource arch_sys_counter
    [    0.621099] NET: Registered protocol family 2
    [    0.621661] tcp_listen_portaddr_hash hash table entries: 512 (order: 0, 6144 bytes)
    [    0.621691] TCP established hash table entries: 4096 (order: 2, 16384 bytes)
    [    0.621729] TCP bind hash table entries: 4096 (order: 3, 32768 bytes)
    [    0.621797] TCP: Hash tables configured (established 4096 bind 4096)
    [    0.621871] UDP hash table entries: 256 (order: 1, 8192 bytes)
    [    0.621896] UDP-Lite hash table entries: 256 (order: 1, 8192 bytes)
    [    0.622023] NET: Registered protocol family 1
    [    0.622448] RPC: Registered named UNIX socket transport module.
    [    0.622459] RPC: Registered udp transport module.
    [    0.622468] RPC: Registered tcp transport module.
    [    0.622477] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.623536] hw perfevents: no interrupt-affinity property for /pmu, guessing.
    [    0.623725] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
    [    0.624702] Initialise system trusted keyrings
    [    0.624829] workingset: timestamp_bits=14 max_order=19 bucket_order=5
    [    0.629925] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.630383] NFS: Registering the id_resolver key type
    [    0.630404] Key type id_resolver registered
    [    0.630413] Key type id_legacy registered
    [    0.630456] ntfs: driver 2.1.32 [Flags: R/O].
    [    0.632129] Key type asymmetric registered
    [    0.632141] Asymmetric key parser 'x509' registered
    [    0.632196] bounce: pool size: 64 pages
    [    0.632230] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245)
    [    0.632242] io scheduler noop registered
    [    0.632251] io scheduler deadline registered
    [    0.632349] io scheduler cfq registered (default)
    [    0.632359] io scheduler mq-deadline registered
    [    0.632369] io scheduler kyber registered
    [    0.638025] pinctrl-single 4a003400.pinmux: 282 pins, size 1128
    [    0.641895] dra7-pcie 51000000.pcie: Linked as a consumer to phy-4a094000.pciephy.1
    [    0.642295] dra7-pcie 51000000.pcie: host bridge /ocp/axi@0/pcie@51000000 ranges:
    [    0.642336] dra7-pcie 51000000.pcie:    IO 0x20003000..0x20012fff -> 0x00000000
    [    0.642362] dra7-pcie 51000000.pcie:   MEM 0x20013000..0x2fffffff -> 0x20013000
    [    1.642646] dra7-pcie 51000000.pcie: Phy link never came up
    [    1.642777] dra7-pcie 51000000.pcie: PCI host bridge to bus 0000:00
    [    1.642792] pci_bus 0000:00: root bus resource [bus 00-ff]
    [    1.642804] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
    [    1.642815] pci_bus 0000:00: root bus resource [mem 0x20013000-0x2fffffff]
    [    1.648720] PCI: bus0: Fast back to back transfers disabled
    [    1.654125] PCI: bus1: Fast back to back transfers enabled
    [    1.654168] pci 0000:00:00.0: BAR 0: assigned [mem 0x20100000-0x201fffff 64bit]
    [    1.654188] pci 0000:00:00.0: PCI bridge to [bus 01-ff]
    [    1.654512] pcieport 0000:00:00.0: Signaling PME with IRQ 170
    [    1.654644] pcieport 0000:00:00.0: AER enabled with IRQ 170
    [    1.658282] V3_3D: supplied by smps9
    [    1.658824] vtt_fixed: supplied by V3_3D
    [    1.704028] Serial: 8250/16550 driver, 10 ports, IRQ sharing enabled
    [    1.707594] console [ttyS2] disabled
    [    1.707652] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 45, base_baud = 3000000) is a 8250
    [    3.440769] console [ttyS2] enabled
    [    3.446426] omap_rng 48090000.rng: Random Number Generator ver. 20
    [    3.446964] random: crng init done
    [    3.453856] omapdss_dss 58000000.dss: Linked as a consumer to regulator.20
    [    3.463155] DSS: OMAP DSS rev 6.1
    [    3.469707] omapdss_hdmi5 58040000.encoder: Linked as a consumer to regulator.13
    [    3.477238] omapdss_hdmi5 58040000.encoder: Dropping the link to regulator.13
    [    3.497308] brd: module loaded
    [    3.506682] loop: module loaded
    [    3.514996] m25p80 spi0.0: unrecognized JEDEC id bytes: ff, ff, ff
    [    3.521773] libphy: Fixed MDIO Bus: probed
    [    3.582902] davinci_mdio 48485000.mdio: davinci mdio revision 1.6, bus freq 1000000
    [    3.590599] davinci_mdio 48485000.mdio: detected phy mask fffffffc
    [    3.601009] libphy: 48485000.mdio: probed
    [    3.605065] davinci_mdio 48485000.mdio: phy[0]: device 48485000.mdio:00, driver Marvell 88E1510
    [    3.613824] davinci_mdio 48485000.mdio: phy[1]: device 48485000.mdio:01, driver Marvell 88E1510
    [    3.623317] cpsw 48484000.ethernet: Detected MACID = 88:3f:4a:5e:e6:8a
    [    3.629929] cpsw 48484000.ethernet: initialized cpsw ale version 1.4
    [    3.636337] cpsw 48484000.ethernet: ALE Table size 1024
    [    3.641636] cpsw 48484000.ethernet: cpts: overflow check period 500 (jiffies)
    [    3.649658] cpsw 48484000.ethernet: cpsw: Detected MACID = 88:3f:4a:5e:e6:8b
    [    3.658002] i2c /dev entries driver
    [    3.667180] cpu cpu0: Linked as a consumer to regulator.4
    [    3.672686] cpu cpu0: Linked as a consumer to regulator.27
    [    3.679867] sdhci: Secure Digital Host Controller Interface driver
    [    3.686121] sdhci: Copyright(c) Pierre Ossman
    [    3.691610] sdhci-pltfm: SDHCI platform and OF driver helper
    [    3.698498] omap_gpio 4805d000.gpio: Could not set line 27 debounce to 200000 microseconds (-22)
    [    3.707690] sdhci-omap 4809c000.mmc: Got CD GPIO
    [    3.712482] sdhci-omap 4809c000.mmc: Linked as a consumer to regulator.26
    [    3.719848] sdhci-omap 4809c000.mmc: Linked as a consumer to regulator.11
    [    3.726728] sdhci-omap 4809c000.mmc: Dropping the link to regulator.11
    [    3.733356] sdhci-omap 4809c000.mmc: Linked as a consumer to regulator.2
    [    3.740571] sdhci-omap 4809c000.mmc: Linked as a consumer to regulator.11
    [    3.747492] sdhci-omap 4809c000.mmc: no pinctrl state for ddr_3_3v mode
    [    3.781639] mmc0: SDHCI controller on 4809c000.mmc [4809c000.mmc] using ADMA
    [    3.789432] sdhci-omap 480b4000.mmc: Linked as a consumer to regulator.2
    [    3.796249] sdhci-omap 480b4000.mmc: Dropping the link to regulator.2
    [    3.802802] sdhci-omap 480b4000.mmc: Linked as a consumer to regulator.2
    [    3.835652] mmc1: SDHCI controller on 480b4000.mmc [480b4000.mmc] using ADMA
    [    3.843736] ledtrig-cpu: registered to indicate activity on CPUs
    [    3.849816] mmc0: host does not support reading read-only switch, assuming write-enable
    [    3.860894] mmc0: new high speed SDHC card at address 0001
    [    3.867623] NET: Registered protocol family 10
    [    3.877053] mmcblk0: mmc0:0001 SD16G 14.5 GiB 
    [    3.882818] Segment Routing with IPv6
    [    3.882964]  mmcblk0: p1 p2
    [    3.886604] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver
    [    3.895689] NET: Registered protocol family 17
    [    3.900347] Key type dns_resolver registered
    [    3.904772] Registering SWP/SWPB emulation handler
    [    3.908038] mmc1: new DDR MMC card at address 0001
    [    3.909586] omap_voltage_late_init: Voltage driver support not added
    [    3.920792] Power Management for TI OMAP4+ devices.
    [    3.924983] mmcblk1: mmc1:0001 IS008G 7.28 GiB 
    [    3.930619] Loading compiled-in X.509 certificates
    [    3.930729] mmcblk1boot0: mmc1:0001 IS008G partition 1 4.00 MiB
    [    3.941812] mmcblk1boot1: mmc1:0001 IS008G partition 2 4.00 MiB
    [    3.947922] mmcblk1rpmb: mmc1:0001 IS008G partition 3 4.00 MiB, chardev (244:0)
    [    3.957781] dmm 4e000000.dmm: workaround for errata i878 in use
    [    3.965078] dmm 4e000000.dmm: initialized all PAT entries
    [    3.971682] omapdss_hdmi5 58040000.encoder: Linked as a consumer to regulator.13
    [    3.979189] omapdss_hdmi5 58040000.encoder: Dropping the link to regulator.13
    [    3.987784] omapdss_hdmi5 58040000.encoder: Linked as a consumer to regulator.13
    [    3.995551] omapdss_dss 58000000.dss: bound 58001000.dispc (ops dispc_component_ops)
    [    4.003547] omapdss_dss 58000000.dss: bound 58040000.encoder (ops hdmi5_component_ops)
    [    4.012267] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [    4.018926] [drm] No driver support for vblank timestamp query.
    [    4.024905] [drm] Cannot find any crtc or sizes
    [    4.030164] [drm] Initialized omapdrm 1.0.0 20110917 for omapdrm.0 on minor 0
    [    4.037731] hctosys: unable to open rtc device (rtc0)
    [    4.043355] ALSA device list:
    [    4.046335]   No soundcards found.
    [    4.078845] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
    [    4.087034] VFS: Mounted root (ext4 filesystem) on device 179:2.
    [    4.101497] devtmpfs: mounted
    [    4.105405] Freeing unused kernel memory: 2048K
    [    4.110050] Run /sbin/init as init process
    [    4.458941] systemd[1]: System time before build time, advancing clock.
    [    4.488805] systemd[1]: systemd 239 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT -GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKI
    D -ELFUTILS +KMOD -IDN2 -IDN -PCRE2 default-hierarchy=hybrid)
    [    4.510611] systemd[1]: Detected architecture arm.
    
    Welcome to Arago 2019.11!
    
    [    4.554227] systemd[1]: Set hostname to <am57xx-evm>.
    [    4.743894] systemd[1]: File /lib/systemd/system/systemd-journald.service:36 configures an IP firewall (IPAddressDeny=any), but the local system does not support BPF/cgroup based 
    firewalling.
    [    4.761063] systemd[1]: Proceeding WITHOUT firewalling in effect! (This warning is only shown for the first loaded unit using IP firewalling.)
    [    4.995445] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    5.023309] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Dir[    5.032949] [drm] Cannot find any crtc or sizes
    ectory Watch.
    [    5.063152] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    5.118186] systemd[1]: Listening on Process Core Dump Socket.
    [  OK  ] Listening on Process Core Dump Socket.
    [    5.153342] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [  OK  ] Reached target Swap.
    [  OK  ] Reached target Paths.
    [  OK  ] Created slice system-serial\x2dgetty.slice.
    [  OK  ] Listening on Journal Socket (/dev/log).
    [  OK  ] Created slice User and Session Slice.
    [  OK  ] Reached target Slices.
    [  OK  ] Listening on Journal Socket.
             Starting Remount Root and Kernel File Systems...
    [    5.470150] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
             Mounting Kernel Debug File System...
             Starting udev Coldplug all Devices...
             Mounting POSIX Message Queue File System...
             Starting Journal Service...
             Mounting Temporary Directory (/tmp)...
    [  OK  ] Started Hardware RNG Entropy Gatherer Daemon.
    [  OK  ] Reached target Remote File Systems.
             Mounting Kernel Configuration File System...
             Starting Apply Kernel Variables...
    [  OK  ] Listening on initctl Compatibility Named Pipe.
    [  OK  ] Created slice system-getty.slice.
    [  OK  ] Started Journal Service.
    [  OK  ] Started Remount Root and Kernel File Systems.
    [  OK  ] Mounted Kernel Debug File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [  OK  ] Mounted Temporary Directory (/tmp).
    [  OK  ] Mounted Kernel Configuration File System.
    [  OK  ] Started Apply Kernel Variables.
             Starting Create Static Device Nodes in /dev...
             Starting Flush Journal to Persistent Storage...
    [  OK  ] Started Create Static Device Nodes in /dev.
    [    6.180454] systemd-journald[101]: Received request to flush runtime journal from PID 1
             Starting udev Kernel Device Manager...
    [  OK  ] Reached target Local File Systems (Pre).
    [  OK  ] Reached target Containers.
             Mounting /media/ram...
             Mounting /var/volatile...
    [  OK  ] Started udev Kernel Device Manager.
    [  OK  ] Started Flush Journal to Persistent Storage.
    [  OK  ] Mounted /media/ram.
    [  OK  ] Mounted /var/volatile.
    [  OK  ] Started udev Coldplug all Devices.
             Starting Load/Save Random Seed...
    [  OK  ] Reached target Local File Systems.
             Starting Create Volatile Files and Directories...
    [  OK  ] Started Load/Save Random Seed.
    [  OK  ] Found device /dev/ttyS2.
    [  OK  ] Started Create Volatile Files and Directories.
             Starting Network Time Synchronization...
             Starting Network Service...
             Starting Update UTMP about System Boot/Shutdown...
    [  OK  ] Started Update UTMP about System Boot/Shutdown.
    [  OK  ] Started Network Service.
    [    7.062024] net eth1: initializing cpsw version 1.15 (0)
    [    7.208931] Marvell 88E1510 48485000.mdio:01: attached PHY driver [Marvell 88E1510] (mii_bus:phy_addr=48485000.mdio:01, irq=POLL)
    [  OK  ] Started Network Time Synchronization.
    [    7.281610] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
    [  OK  ] Reached target System Time Synchronized.
    [  OK  ] Reached target System Initialization.
    [    7.337040] net eth0: initializing cpsw version 1.15 (0)
    [  OK  ] Listening on RPCbind Server Activation Socket.
    [  OK  ] Started Daily rotation of log files.
    [  OK  ] Started Daily Cleanup of Temporary Directories.
    [  OK  ] Reached target Timers.
    [  OK  ] Listening on D-Bus System Message Bus Socket.
    [    7.478807] Marvell 88E1510 48485000.mdio:00: attached PHY driver [Marvell 88E1510] (mii_bus:phy_addr=48485000.mdio:00, irq=POLL)
    [  OK  ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
    [  OK  ] Reached target Sockets.
    [    7.526691] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
    [  OK  ] Reached target Basic System.
    [  OK  ] Started D-Bus System Message Bus.
             Starting RPC Bind Service...
    [  OK  ] Started Periodic Command Scheduler.
             Starting Print notice about GPLv3 packages...
    [  OK  ] Started Job spooling tools.
             Starting telnetd.service...
             Starting TI IPC Daemon...
             Starting Login Service...
             Starting Network Name Resolution...
             Starting Wait for Network to be Configured...
    [  OK  ] Started RPC Bind Service.
    [  OK  ] Started telnetd.service.
    [  OK  ] Started TI IPC Daemon.
    [  OK  ] Started Network Name Resolution.
    ***************************************************************
    ***************************************************************
    NOTICE: This file system contains the following GPLv3 packages:
            bash
            bc
            cifs-utils
            cpio
            dosfstools
            elfutils
            gawk
            gzip
            libbfd
            libdw1
            libelf1
            libreadline7
            which
    
    If you do not wish to distribute GPLv3 components please remove
    the above packages prior to distribution.  This can be done using
    the opkg remove command.  i.e.:
        opkg remove <package>
    Where <package> is the name printed in the list above
    
    NOTE: If the package is a dependency of another package you
          will be notified of the dependent packages.  You should
          use the --force-removal-of-dependent-packages option to
          also remove the dependent packages as well
    ***************************************************************
    ***************************************************************
    [  OK  ] Started Print notice about GPLv3 packages.
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [  OK  ] Created slice system-systemd\x2dfsck.slice.
             Starting File System Check on /dev/mmcblk0p1...
    [  OK  ] Reached target Network.
             Starting Permit User Sessions...
             Starting Avahi mDNS/DNS-SD Stack...
    [  OK  ] Reached target Host and Network Name Lookups.
             Starting thttpd.service...
    [  OK  ] Started NFS status monitor for NFSv2/3 locking..
    [  OK  ] Started Login Service.
    [  OK  ] Started Permit User Sessions.
    [  OK  ] Started Serial Getty on ttyS2.
    [  OK  ] Started Getty on tty1.
    [  OK  ] Reached target Login Prompts.
             Starting Synchronize System and HW clocks...
    [FAILED] Failed to start Synchronize System and HW clocks.
    See 'systemctl status sync-clocks.service' for details.
    [  OK  ] Started thttpd.service.
    [  OK  ] Started Avahi mDNS/DNS-SD Stack.
    [  OK  ] Started File System Check on /dev/mmcblk0p1.
             Mounting /run/media/mmcblk0p1...
    [  OK  ] Mounted /run/media/mmcblk0p1.
    
     _____                    _____           _         _   
    |  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_ 
    |     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
    |__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|  
                  |___|                    |___|            
    
    Arago Project http://arago-project.org am57xx-evm ttyS2
    
    Arago 2019.11 am57xx-evm ttyS2
    
    am57xx-evm login: [   34.393457] ldousb: disabling
    
    

  • Ok, thanks for the update. So board is booting now.
    Please open a new e2e forum entry for other questions.