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.

Linux/AM5728: Custom camera connection not detected

Part Number: AM5728

Tool/software: Linux

HI All,

We are using AM5728 for our development and for trying out camera use cases using VIP module we develop custom connector which connects to P16 header of the board.

We using same camera which connects with LCD module . (http://www.ti.com/tool/TMDSCM572X  as the driver(mt9t11x.ko) for this camera is already available in PSDK.

Below are the changes done by PCB designer so that we can connect this camera directly to the P16 header

Existing Pin Configuration I2C5_SCL I2C5_SDA OSC_EN BUFF_EN GPIO CAM_PWR
Ball name mcasp1_axr1 mcasp1_axr0 mcasp1_axr8 mcasp1_axr10 mcasp1_axr11 mcasp1_axr9
Signal Name I2C5_SCL I2C5_SDA Gpio5_10 Gpio5_12 Gpio4_17 Gpio5_11
Pin Lable in Beagalboard Expansion P18_4 P18_3 P16_34 P16_33 P16_3 P16_4
Am5728 Pad F12 G12 B12 B13 A12 A11
New Pin Configuration I2C5_SCL I2C5_SDA OSC_EN BUFF_EN GPIO CAM_PWR
Ball name gpmc_a4 gpmc_a5 gpmc_ad12 gpmc_ad13 gpmc_ad14 gpmc_ad15
Signal Name I2C5_SCL I2C5_SDA Gpio1_18 Gpio1_19 Gpio1_20 Gpio1_21
Pin Lable in Beagalboard Expansion P16_10 P16_13 P16_24 P16_26 P16_27 P16_25
Pin lable in AM5728 P6 R9 H1 J3 H2 H3
Extra Pin Added CAM_EN
Ball name gpmc_a13
Signal Name Gpio2_3
Pin Lable in Beagalboard Expansion P16_7
Pin lable in AM5728 R3

 Based on above details I have updated  the Dts file as below

1. am57xx-evm.dts

&dra7_pmx_core {

----

// Added for new EVM cam module
i2c5_pins_default: i2c5_pins_default {
pinctrl-single,pins = <
//DRA7XX_CORE_IOPAD(0x3450, (PIN_INPUT_PULLUP | MUX_MODE7)) /* gpmc_a4.i2c5_sda TRM 4226*/
//DRA7XX_CORE_IOPAD(0x3454, (PIN_INPUT_PULLUP | MUX_MODE7)) /* gpmc_a5.i2c5_scl */
0x50 (PIN_INPUT_PULLUP | MUX_MODE7) /* gpmc_a4.i2c5_sda TRM 4226 new method*/
0x54 (PIN_INPUT_PULLUP | MUX_MODE7) /* gpmc_a5.i2c5_scl */

>;
};

---

2.  am57xx-evm-common.dtsi

&i2c5 {
status = "okay";
pinctrl-names = "default";
pinctrl-0 = <&i2c5_pins_default>;
clock-frequency = <400000>;
mt9t11x@3C {
compatible = "aptina,mt9t111";
reg = <0x3C>;

/*Original definitions*/
//reset-gpios = <&gpio4 17 GPIO_ACTIVE_LOW>;
//oscen-gpios = <&gpio5 10 GPIO_ACTIVE_HIGH>;
//powerdown-gpios = <&gpio5 11 GPIO_ACTIVE_LOW>;
//bufen-gpios = <&gpio5 12 GPIO_ACTIVE_LOW>;
//camen-gpios = <&gpio6 11 GPIO_ACTIVE_LOW>;

/*New Definitaions 27-March-2017*/
reset-gpios = <&gpio1 20 GPIO_ACTIVE_LOW>;
oscen-goios = <&gpio1 18 GPIO_ACTIVE_HIGH>;
powerdown-gpios = <&gpio1 21 GPIO_ACTIVE_LOW>;
bufen-gpios = <&gpio1 19 GPIO_ACTIVE_LOW>;

port {
cam: endpoint {
remote-endpoint = <&vin3a>;
hsync-active = <1>;
vsync-active = <1>;
pclk-sample = <0>;
input-clock-freq = <32000000>;
pixel-clock-freq = <96000000>;
};
};
};
};

Then compiled the  am57xx-evm.dtb file and pushed in /boot folder and rebooted. But still in pinmux info still its remains  UNCLAIMED

root@am57xx-evm:/sys/kernel/debug/pinctrl/4a003400.pinmux# cat pinmux-pins
Pinmux settings per pin

pin 20 (4a003450.0): (MUX UNCLAIMED) (GPIO UNCLAIMED)
pin 21 (4a003454.0): (MUX UNCLAIMED) (GPIO UNCLAIMED)

 As I am new to this device tree concepts . Anyone can please guide me where we are going wrong .

Any pointer will be great !!!

  • Hi,

    I don't understand. Are you using the AM572x GP EVM with a custom camera board, or the EVM camera with a custom AM572x board?
  • Hi ,

    We are using camera module and processor module of AM572x GP EVM.

    processors.wiki.ti.com/.../AM572x_GP_EVM_Hardware_Setup

    As camera module can only be connected via LCD module , which we do not want to use, we developed custom camera connection board which can help us to directly connect camera module with processor module without the need of LCD module.

    I hope now it helps !!
    Regards
  • Hi,
    Are you using the latest sdk? If so, there are multiple padconf definitions for I2C5. In latest sdks pad configuration is done in u-boot.

    So youhave I2C5 padconf definitions from mux_data.h, as:
    const struct pad_conf_entry core_padconf_array_essential_x15[] = {
    .............
    .............
    {MCASP1_AXR0, (M10 | PIN_INPUT_PULLUP)}, /* mcasp1_axr0.i2c5_sda */
    {MCASP1_AXR1, (M10 | PIN_INPUT_PULLUP)}, /* mcasp1_axr1.i2c5_scl */

    And the gpmc_a4 & gpmc_a5 are used for vin pin muxing:
    {GPMC_A0, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)}, /* gpmc_a0.vin3a_d16 */
    {GPMC_A1, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)}, /* gpmc_a1.vin3a_d17 */
    {GPMC_A2, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)}, /* gpmc_a2.vin3a_d18 */
    {GPMC_A3, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)}, /* gpmc_a3.vin3a_d19 */
    {GPMC_A4, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)}, /* gpmc_a4.vin3a_d20 */
    {GPMC_A5, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)}, /* gpmc_a5.vin3a_d21 */
    {GPMC_A6, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)}, /* gpmc_a6.vin3a_d22 */
    {GPMC_A7, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)}, /* gpmc_a7.vin3a_d23 */
    {GPMC_A8, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)}, /* gpmc_a8.vin3a_hsync0 */
    {GPMC_A9, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)}, /* gpmc_a9.vin3a_vsync0 */
    {GPMC_A10, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)}, /* gpmc_a10.vin3a_de0 */
    {GPMC_A11, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)}, /* gpmc_a11.vin3a_fld0 */

    And as I see VIN3a is also used in the dts:
    &vin3a {
    status = "okay";
    endpoint {
    slave-mode;
    remote-endpoint = <&cam>;
    };
    };

    So this is most likely messing up your pinmux settings. You need to reconfigure both u-boot & kernel.

    Best Regards,
    Yordan
  • HI Yordan Kovachev,

    Thanks for your pointer. We tried to do below change as per your suggestion in mux_data.h

    const struct pad_conf_entry core_padconf_array_essential_x15[] = {

    //Changing GPMC A4&A5 from vin3a to i2c5

    /*{GPMC_A4, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)},*/ /* gpmc_a4.vin3a_d20 */
    /*{GPMC_A5, (M2 | PIN_INPUT_PULLDOWN | MANUAL_MODE)},*/ /* gpmc_a5.vin3a_d21 */
    {GPMC_A4, (M7 | PIN_INPUT_PULLUP )}, /* gpmc_a4..i2c5_sda */
    {GPMC_A5, (M7 | PIN_INPUT_PULLUP )}, /* gpmc_a5..i2c5_scl */

    -----

    //Removing mcasp1_axr0/mcasp1_axr1 as i2c5

    /*{MCASP1_AXR0, (M10 | PIN_INPUT_PULLUP)},*/ /* mcasp1_axr0.i2c5_sda */
    /*{MCASP1_AXR1, (M10 | PIN_INPUT_PULLUP)},*/ /* mcasp1_axr1.i2c5_scl */

    -----

    Additionally we also kept the changes earlier done in  dts files as below

    am57xx-evm-reva3.dts and am57xx-evm.dts

    &dra7_pmx_core {

    -----

    i2c5_pins_default: i2c5_pins_default {
    pinctrl-single,pins = <
    DRA7XX_CORE_IOPAD(0x3450, (PIN_INPUT_PULLUP | MUX_MODE7)) /* gpmc_a4.i2c5_sda TRM 4226*/
    DRA7XX_CORE_IOPAD(0x3454, (PIN_INPUT_PULLUP | MUX_MODE7)) /* gpmc_a5.i2c5_scl */
    >;
    };

    }

    But after compiling and installing zimage , uboot and dtb file , we are getting below bootup error.

    _wait_target_disable failed
    [ 21.058250] omap_hwmod: mmu0_dsp2: _wait_target_disable failed
    [ 21.084971] omap_hwmod: mmu1_dsp1: _wait_target_disable failed
    [ 21.104523] omap_hwmod: mmu0_dsp1: _wait_target_disable failed
    [** ] (2 of 2) A start job is running for...al Service (1min 29s / 1min 30s)[ 94.413213] systemd[1]: dev-ttyO2.device: Job dev-ttyO2.devi.
    [ 94.420641] systemd[1]: Timed out waiting for device dev-ttyO2.device.
    [ TIME ] Timed out waiting for device dev-ttyO2.device.
    [ 94.448752] systemd[1]: Dependency failed for Serial Getty on ttyO2.
    [DEPEND] Dependency failed for Serial Getty on ttyO2.
    [ 94.478723] systemd[1]: serial-getty@ttyO2.service: Job serial-getty@ttyO2.service/start failed with result 'dependency'.
    [ 94.489836] systemd[1]: dev-ttyO2.device: Job dev-ttyO2.device/start failed with result 'timeout'.
    [ 94.913209] systemd[1]: systemd-journald.service: Start operation timed out. Terminating.
    [ *** ] A start job is running for Journal Service (1min 42s / 3min)[ 107.176065] irq 246: nobody cared (try booting with the "irqpoll" opti)
    [ 107.182910] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G O 4.4.32-gadde2ca9f8 #2
    [ 107.191144] Hardware name: Generic DRA74X (Flattened Device Tree)
    [ 107.197281] Backtrace:
    [ 107.199564]
    [ 107.201252] [<c00130e4>] (dump_backtrace) from [<c00132e0>] (show_stack+0x18/0x1c)
    [ 107.208873] r7:000000f6
    [ 107.211245] r6:200e0193[ 107.213794] r5:00000000
    [ 107.216164] r4:c0954dcc[ 107.218713]
    [ 107.220216] [<c00132c8>] (show_stack) from [<c02b420c>] (dump_stack+0x8c/0xa0)
    [ 107.227497] [<c02b4180>] (dump_stack) from [<c00827dc>] (__report_bad_irq+0x30/0xd4)
    [ 107.235291] r7:000000f6
    [ 107.237661] r6:00000002[ 107.240212] r5:00000000
    [ 107.242581] r4:eea2bd80[ 107.245130]
    [ 107.246631] [<c00827ac>] (__report_bad_irq) from [<c0082c10>] (note_interrupt+0x2ac/0x2fc)
    [ 107.254952] r9:eea2bd80
    [ 107.257321] r8:000000f6[ 107.259872] r7:000000f6
    [ 107.262244] r6:00000002[ 107.264796] r5:00000000
    [ 107.267165] r4:eea2bd80
    [ 107.269897] [<c0082964>] (note_interrupt) from [<c0080058>] (handle_irq_event_percpu+0x104/0x160)
    [ 107.278831] r10:c0981832
    [ 107.281289] r9:eea2bd80[ 107.283839] r8:000000f6
    [ 107.286209] r7:00002003[ 107.288758] r6:00000002
    [ 107.291127] r5:00000002
    [ 107.293853] r4:00000000
    [ 107.296224] r3:00000000[ 107.298775]
    [ 107.300276] [<c007ff54>] (handle_irq_event_percpu) from [<c00800f4>] (handle_irq_event+0x40/0x64)
    [ 107.309208] r10:00000000
    [ 107.311665] r9:200e0193[ 107.314215] r8:00000001
    [ 107.316584] r7:eea45210[ 107.319134] r6:eea2bd90
    [ 107.321508] r5:eea2bde0
    [ 107.324234] r4:eea2bd80
    [ 107.326603]
    [ 107.328284] [<c00800b4>] (handle_irq_event) from [<c00835e0>] (handle_edge_irq+0xec/0x198)
    [ 107.336603] r7:eea45210
    [ 107.338973] r6:eea2bd90[ 107.341523] r5:eea2bde0
    [ 107.343891] r4:eea2bd80[ 107.346440]
    [ 107.347943] [<c00834f4>] (handle_edge_irq) from [<c007f634>] (generic_handle_irq+0x2c/0x3c)
    [ 107.356350] r7:eea45210
    [ 107.358719] r6:eea45268[ 107.361269] r5:eea45264
    [ 107.363639] r4:0000000c[ 107.366188]
    [ 107.367694] [<c007f608>] (generic_handle_irq) from [<c02f2110>] (omap_gpio_irq_handler+0x134/0x174)
    [ 107.376805] [<c02f1fdc>] (omap_gpio_irq_handler) from [<c0080008>] (handle_irq_event_percpu+0xb4/0x160)
    [ 107.386263] r10:c0981832
    [ 107.388720] r9:eea2b240[ 107.391270] r8:000000e9
    [ 107.393640] r7:00000000[ 107.396189] r6:00000000
    [ 107.398559] r5:eea2b2a0
    [ 107.401283] r4:eea2d140
    [ 107.403653]
    [ 107.405332] [<c007ff54>] (handle_irq_event_percpu) from [<c00800f4>] (handle_irq_event+0x40/0x64)
    [ 107.414262] r10:c092a50c
    [ 107.416720] r9:c067a214[ 107.419269] r8:ee808000
    [ 107.421638] r7:00000000[ 107.424187] r6:c0955024
    [ 107.426557] r5:eea2b2a0
    [ 107.429282] r4:eea2b240
    [ 107.431652]
    [ 107.433333] [<c00800b4>] (handle_irq_event) from [<c0083420>] (handle_fasteoi_irq+0xc0/0x194)
    [ 107.441914] r7:00000000
    [ 107.444284] r6:c0955024[ 107.446834] r5:eea2b2a0
    [ 107.449204] r4:eea2b240[ 107.451753]
    [ 107.453253] [<c0083360>] (handle_fasteoi_irq) from [<c007f634>] (generic_handle_irq+0x2c/0x3c)
    [ 107.461924] r7:00000000
    [ 107.464297] r6:00000000[ 107.466846] r5:000000e9
    [ 107.469217] r4:c0924424[ 107.471766]
    [ 107.473265] [<c007f608>] (generic_handle_irq) from [<c007f90c>] (__handle_domain_irq+0x64/0xbc)
    [ 107.482030] [<c007f8a8>] (__handle_domain_irq) from [<c000948c>] (gic_handle_irq+0x40/0x7c)
    [ 107.490437] r9:c067a214
    [ 107.492808] r8:fa213000[ 107.495358] r7:fa212000
    [ 107.497728] r6:c0929ef0[ 107.500281] r5:fa21200c
    [ 107.502651] r4:c092a8e0
    [ 107.505380] [<c000944c>] (gic_handle_irq) from [<c0013dc0>] (__irq_svc+0x40/0x74)
    [ 107.512916] Exception stack(0xc0929ef0 to 0xc0929f38)
    [ 107.518003] 9ee0: 00000001 00000000 fe600000 00000000
    [ 107.526237] 9f00: c0928000 c092a4ac 00000000 00000000 c0929f60 c067a214 c092a50c c0929f4c
    [ 107.534471] 9f20: c0929f2c c0929f40 c0027ae8 c0010540 600e0013 ffffffff
    [ 107.541129] r9:c067a214
    [ 107.543499] r8:c0929f60[ 107.546051] r7:c0929f24
    [ 107.548420] r6:ffffffff[ 107.550970] r5:600e0013
    [ 107.553341] r4:c0010540
    [ 107.556075] [<c0010518>] (arch_cpu_idle) from [<c00708b8>] (default_idle_call+0x28/0x34)
    [ 107.564228] [<c0070890>] (default_idle_call) from [<c0070b18>] (cpu_startup_entry+0x200/0x260)
    [ 107.572903] [<c0070918>] (cpu_startup_entry) from [<c0671498>] (rest_init+0x90/0x94)
    [ 107.580696] r7:00000000
    [ 107.583066]
    [ 107.584749] [<c0671408>] (rest_init) from [<c08d4d88>] (start_kernel+0x400/0x40c)
    [ 107.592281] r5:c0984000
    [ 107.594652] r4:c0984040[ 107.597201]
    [ 107.598700] [<c08d4988>] (start_kernel) from [<80008090>] (0x80008090)
    [ 107.605270] handlers:
    [ 107.607556] [<c008016c>] irq_default_primary_handler
    [ 107.612383] threaded [<c03ce6b0>] tpd_hpd_isr[ 107.616857]
    [ 107.618353] Disabling IRQ #246
    [ *** ] A start job is running for Journal Service (3min / 3min)[ 185.163204] systemd[1]: systemd-journald.service: State 'stop-final-sigter.
    [ *** ] A start job is running for Journal Service (3min / 4min 30s)[ 185.188966] systemd[1]: systemd-journald.service: Main process exited,L
    [ 185.198490] systemd[1]: Failed to start Journal Service.
    [FAILED] Failed to start Journal Service.

    Can you help out in reason on anything we are missing !!

    Regards

    boot_log_30_match_12_30_pm.txt
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    
    Welcome to minicom 2.7
    
    OPTIONS: I18n                                                                
    Compiled on Feb  7 2016, 13:37:27.                                           
    Port /dev/ttyACM1, 12:27:52                                                  
                                                                                 
    Press CTRL-A Z for help on special keys                                      
                                                                                 
                                                                                 
    U-Boot SPL 2016.05-00304-g323bf10-dirty (Mar 30 2017 - 11:43:44)             
    DRA752-GP ES1.1                                                              
    Trying to boot from MMC1                                                     
    reading args                                                                 
    spl_load_image_fat_os: error reading image args, err - -1
    reading u-boot.img                      
    reading u-boot.img                      
    reading u-boot.img                      
    reading u-boot.img                      
                                            
    
    U-Boot 2016.05-00304-g323bf10-dirty (Mar 30 2017 - 11:43:44 +0530)
    
    CPU  : DRA752-GP ES1.1
    Model: TI AM5728 BeagleBoard-X15
    Board: BeagleBoard X15 REV A.20
    DRAM:  2 GiB
    MMC:   no pinctrl for ddr50
    no pinctrl for sdr25
    no pinctrl for sdr12
    OMAP SD/MMC: 0, OMAP SD/MMC: 1
    reading uboot.env
    
    ** Unable to read "uboot.env" from mmc0:1 **
    Using default environment
    
    SCSI:  SATA link 0 timeout.
    AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl SATA mode
    flags: 64bit ncq stag pm led clo only pmp pio slum part ccc apst 
    scanning bus for devices...
    Found 0 device(s).
    Net:   
    Warning: ethernet@48484000 using MAC address from ROM
    eth0: ethernet@48484000
    Hit any key to stop autoboot:  0 
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    reading boot.scr
    ** Unable to read file boot.scr **
    reading uEnv.txt
    574 bytes read in 3 ms (186.5 KiB/s)
    Loaded env from uEnv.txt
    Importing environment from mmc0 ...
    switch to partitions #0, OK
    mmc0 is current device
    SD/MMC found on device 0
    3603256 bytes read in 172 ms (20 MiB/s)
    97618 bytes read in 15 ms (6.2 MiB/s)
    Kernel image @ 0x82000000 [ 0x000000 - 0x36fb38 ]
    ## Flattened Device Tree blob at 88000000
       Booting using the fdt blob at 0x88000000
       Loading Device Tree to 8ffe5000, end 8ffffd51 ... OK
    
    Starting kernel ...
    
    [    0.000000] Booting Linux on physical CPU 0x0
    [    0.000000] Initializing cgroup subsys cpuset
    [    0.000000] Initializing cgroup subsys cpu
    [    0.000000] Initializing cgroup subsys cpuacct
    [    0.000000] Linux version 4.4.32-gadde2ca9f8 (root@xink1) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #2 SMP PREEMPT Thu Mar 30 7
    [    0.000000] CPU: ARMv7 Processor [412fc0f2] revision 2 (ARMv7), cr=30c5387d
    [    0.000000] CPU: PIPT / VIPT nonaliasing data cache, PIPT instruction cache
    [    0.000000] Machine model: TI AM5728 BeagleBoard-X15
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000095800000, size 56 MiB
    [    0.000000] Reserved memory: initialized node ipu2_cma@95800000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x0000000099000000, size 64 MiB
    [    0.000000] Reserved memory: initialized node dsp1_cma@99000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x000000009d000000, size 32 MiB
    [    0.000000] Reserved memory: initialized node ipu1_cma@9d000000, compatible id shared-dma-pool
    [    0.000000] Reserved memory: created CMA memory pool at 0x000000009f000000, size 8 MiB
    [    0.000000] Reserved memory: initialized node dsp2_cma@9f000000, compatible id shared-dma-pool
    [    0.000000] cma: Reserved 24 MiB at 0x00000000fe400000
    [    0.000000] Forcing write-allocate cache policy for SMP
    [    0.000000] Memory policy: Data cache writealloc
    [    0.000000] OMAP4: Map 0x00000000ffd00000 to fe600000 for dram barrier
    [    0.000000] DRA752 ES1.1
    [    0.000000] PERCPU: Embedded 11 pages/cpu @eed33000 s14848 r8192 d22016 u45056
    [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 472640
    [    0.000000] Kernel command line: console=ttyO2,115200n8 root=PARTUUID=9d7be76b-02 rw rootfstype=ext4 rootwait
    [    0.000000] PID hash table entries: 4096 (order: 2, 16384 bytes)
    [    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: 1680636K/1897472K available (6591K kernel code, 361K rwdata, 2412K rodata, 336K init, 289K bss, 28420K reserved, 188416)
    [    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 : 0xc0008000 - 0xc08d3044   (9005 kB)
    [    0.000000]       .init : 0xc08d4000 - 0xc0928000   ( 336 kB)
    [    0.000000]       .data : 0xc0928000 - 0xc09825b0   ( 362 kB)
    [    0.000000]        .bss : 0xc0984000 - 0xc09cc6c0   ( 290 kB)
    [    0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=2, Nodes=1
    [    0.000000] Preemptible hierarchical RCU implementation.
    [    0.000000]  Build-time adjustment of leaf fanout to 32.
    [    0.000000] NR_IRQS:16 nr_irqs:16 16
    [    0.000000] ti_dt_clocks_register: failed to lookup clock node gmac_gmii_ref_clk_div
    [    0.000000] OMAP clockevent source: timer1 at 32786 Hz
    [    0.000000] Architected 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.000004] sched_clock: 56 bits at 6MHz, resolution 162ns, wraps every 4398046511023ns
    [    0.000015] Switching to timer-based delay loop, resolution 162ns
    [    0.000323] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns
    [    0.000330] OMAP clocksource: 32k_counter at 32768 Hz
    [    0.000730] Console: colour dummy device 80x30
    [    0.000745] WARNING: Your 'console=ttyO2' has been replaced by 'ttyS2'
    [    0.000751] This ensures that you still see kernel messages. Please
    [    0.000756] update your kernel commandline.
    [    0.000769] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.29 BogoMIPS (lpj=61475)
    [    0.000781] pid_max: default: 32768 minimum: 301
    [    0.000873] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.000883] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
    [    0.001422] Initializing cgroup subsys io
    [    0.001439] Initializing cgroup subsys memory
    [    0.001462] Initializing cgroup subsys devices
    [    0.001474] Initializing cgroup subsys freezer
    [    0.001484] Initializing cgroup subsys perf_event
    [    0.001496] Initializing cgroup subsys pids
    [    0.001521] CPU: Testing write buffer coherency: ok
    [    0.001718] /cpus/cpu@0 missing clock-frequency property
    [    0.001734] /cpus/cpu@1 missing clock-frequency property
    [    0.001744] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
    [    0.001782] Setting up static identity map for 0x800082c0 - 0x80008318
    [    0.080078] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
    [    0.080137] Brought up 2 CPUs
    [    0.080150] SMP: Total of 2 processors activated (24.59 BogoMIPS).
    [    0.080156] CPU: All CPU(s) started in HYP mode.
    [    0.080161] CPU: Virtualization extensions available.
    [    0.080537] devtmpfs: initialized
    [    0.107697] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
    [    0.108603] omap_hwmod: l3_main_2 using broken dt data from ocp
    [    0.308491] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
    [    0.312439] pinctrl core: initialized pinctrl subsystem
    [    0.313270] NET: Registered protocol family 16
    [    0.314174] DMA: preallocated 256 KiB pool for atomic coherent allocations
    [    0.340236] cpuidle: using governor ladder
    [    0.370258] cpuidle: using governor menu
    [    0.378379] OMAP GPIO hardware version 0.1
    [    0.384831] irq: no irq domain found for /ocp/l4@4a000000/scm@2000/pinmux@1400 !
    [    0.408233] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
    [    0.408244] hw-breakpoint: maximum watchpoint size is 8 bytes.
    [    0.408684] omap4_sram_init:Unable to allocate sram needed to handle errata I688
    [    0.408693] omap4_sram_init:Unable to get sram pool needed to handle errata I688
    [    0.409252] OMAP DMA hardware revision 0.0
    [    0.451252] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver (LinkedList1/2/3 supported)
    [    0.452378] edma 43300000.edma: memcpy is disabled
    [    0.457063] edma 43300000.edma: TI EDMA DMA engine driver
    [    0.460829] omap-iommu 40d01000.mmu: 40d01000.mmu registered
    [    0.461010] omap-iommu 40d02000.mmu: 40d02000.mmu registered
    [    0.461167] omap-iommu 58882000.mmu: 58882000.mmu registered
    [    0.461325] omap-iommu 55082000.mmu: 55082000.mmu registered
    [    0.461588] omap-iommu 41501000.mmu: 41501000.mmu registered
    [    0.461764] omap-iommu 41502000.mmu: 41502000.mmu registered
    [    0.464676] palmas 0-0058: Irq flag is 0x00000008
    [    0.482591] palmas 0-0058: Muxing GPIO 2f, PWM 0, LED 0
    [    0.564896] omap_i2c 48070000.i2c: bus 0 rev0.12 at 400 kHz
    [    0.565442] omap_i2c 48060000.i2c: bus 2 rev0.12 at 400 kHz
    [    0.565636] media: Linux media interface: v0.10
    [    0.565687] Linux video capture interface: v2.00
    [    0.565727] pps_core: LinuxPPS API ver. 1 registered
    [    0.565733] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
    [    0.565757] PTP clock support registered
    [    0.565808] EDAC MC: Ver: 3.0.0
    [    0.566543] omap-mailbox 4883c000.mailbox: omap mailbox rev 0x400
    [    0.566821] omap-mailbox 4883e000.mailbox: omap mailbox rev 0x400
    [    0.567107] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
    [    0.567384] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
    [    0.567725] Advanced Linux Sound Architecture Driver Initialized.
    [    0.568544] clocksource: Switched to clocksource arch_sys_counter
    [    0.579514] NET: Registered protocol family 2
    [    0.580006] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
    [    0.580069] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
    [    0.580194] TCP: Hash tables configured (established 8192 bind 8192)
    [    0.580242] UDP hash table entries: 512 (order: 2, 16384 bytes)
    [    0.580273] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
    [    0.580482] NET: Registered protocol family 1
    [    0.580747] RPC: Registered named UNIX socket transport module.
    [    0.580756] RPC: Registered udp transport module.
    [    0.580763] RPC: Registered tcp transport module.
    [    0.580769] RPC: Registered tcp NFSv4.1 backchannel transport module.
    [    0.581699] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
    [    0.584082] futex hash table entries: 512 (order: 3, 32768 bytes)
    [    0.591671] squashfs: version 4.0 (2009/01/31) Phillip Lougher
    [    0.592318] NFS: Registering the id_resolver key type
    [    0.592342] Key type id_resolver registered
    [    0.592350] Key type id_legacy registered
    [    0.592417] ntfs: driver 2.1.32 [Flags: R/O].
    [    0.594387] bounce: pool size: 64 pages
    [    0.594540] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
    [    0.594558] io scheduler noop registered
    [    0.594573] io scheduler deadline registered
    [    0.594608] io scheduler cfq registered (default)
    [    0.599505] pinctrl-single 4a003400.pinmux: 282 pins at pa fc003400 size 1128
    [    0.660158] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
    [    0.663492] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 299, base_baud = 3000000) is a 8250
    [    1.522792] console [ttyS2] enabled
    [    1.527458] [drm] Initialized drm 1.1.0 20060810
    [    1.534101] OMAP DSS rev 6.1
    [    1.537867] omapdss_dss 58000000.dss: bound 58001000.dispc (ops dispc_component_ops)
    [    1.546334] omapdss_dss 58000000.dss: bound 58040000.encoder (ops hdmi5_component_ops)
    [    1.562272] loop: module loaded
    [    1.568247] libphy: Fixed MDIO Bus: probed
    [    1.618577] davinci_mdio 48485000.mdio: davinci mdio revision 1.6
    [    1.624703] davinci_mdio 48485000.mdio: detected phy mask fffffff9
    [    1.635100] libphy: 48485000.mdio: probed
    [    1.639174] davinci_mdio 48485000.mdio: phy[1]: device 48485000.mdio:01, driver Micrel KSZ9031 Gigabit PHY
    [    1.648907] davinci_mdio 48485000.mdio: phy[2]: device 48485000.mdio:02, driver Micrel KSZ9031 Gigabit PHY
    [    1.659288] cpsw 48484000.ethernet: Detected MACID = 74:da:ea:4c:ee:aa
    [    1.665938] cpsw 48484000.ethernet: cpts: overflow check period 800
    [    1.672939] cpsw 48484000.ethernet: cpsw: Detected MACID = 74:da:ea:4c:ee:ab
    [    1.681417] mousedev: PS/2 mouse device common for all mice
    [    1.687466] i2c /dev entries driver
    [    1.694900] gpio-fan gpio_fan: GPIO fan initialized
    [    1.701038] tmp102 0-0048: initialized
    [    1.707658] omap_hsmmc 4809c000.mmc: Got CD GPIO
    [    1.759046] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
    [    1.765430] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
    [    1.788680] vdd_3v3: supplied by regen1
    [    1.829865] ledtrig-cpu: registered to indicate activity on CPUs
    [    1.839896] davinci-mcasp 48468000.mcasp: ERRATA i868 workaround is enabled
    [    1.847977] NET: Registered protocol family 10
    [    1.863338] sit: IPv6 over IPv4 tunneling driver
    [    1.868510] NET: Registered protocol family 17
    [    1.873226] Key type dns_resolver registered
    [    1.877627] omap_voltage_late_init: Voltage driver support not added
    [    1.884518] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    1.890744] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    1.897513] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
    [    1.903745] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
    [    1.912255] Power Management for TI OMAP4+ devices.
    [    1.917354] Registering SWP/SWPB emulation handler
    [    1.924163] dmm 4e000000.dmm: initialized all PAT entries
    [    1.933008] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
    [    1.939661] [drm] No driver support for vblank timestamp query.
    [    2.006683] mmc0: host does not support reading read-only switch, assuming write-enable
    [    2.017517] mmc0: new high speed SDHC card at address aaaa
    [    2.033375] mmcblk0: mmc0:aaaa SL08G 7.40 GiB 
    [    2.038955]  mmcblk0: p1 p2
    [    2.103159] mmc1: MAN_BKOPS_EN bit is not set
    [    2.116281] mmc1: new DDR MMC card at address 0001
    [    2.121405] mmcblk1: mmc1:0001 S10004 3.56 GiB 
    [    2.126120] mmcblk1boot0: mmc1:0001 S10004 partition 1 4.00 MiB
    [    2.132240] mmcblk1boot1: mmc1:0001 S10004 partition 2 4.00 MiB
    [    2.138849]  mmcblk1: p1
    [    2.209685] [drm] Enabling DMM ywrap scrolling
    [    2.220064] Console: switching to colour frame buffer device 170x48
    [    2.231471] omapdrm omapdrm.0: fb0: omapdrm frame buffer device
    [    2.258883] [drm] Initialized omapdrm 1.0.0 20110917 on minor 0
    [    2.265448] hctosys: unable to open rtc device (rtc0)
    [    2.280975] aic_dvdd_fixed: disabling
    [    2.284949] ldousb: disabling
    [    2.288478] ALSA device list:
    [    2.291496]   No soundcards found.
    [    3.096088] EXT4-fs (mmcblk0p2): recovery complete
    [    3.102486] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null)
    [    3.110677] VFS: Mounted root (ext4 filesystem) on device 179:2.
    [    3.119848] devtmpfs: mounted
    [    3.123050] Freeing unused kernel memory: 336K (c08d4000 - c0928000)
    [    3.129525] This architecture does not have kernel memory protection.
    [    3.365164] systemd[1]: System time before build time, advancing clock.
    [    3.420691] random: systemd: uninitialized urandom read (16 bytes read, 102 bits of entropy available)
    [    3.433530] random: systemd: uninitialized urandom read (16 bytes read, 102 bits of entropy available)
    [    3.445435] systemd[1]: systemd 229 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCR)
    [    3.463972] systemd[1]: Detected architecture arm.
    
    Welcome to Arago 2016.10!
    
    [    3.489599] systemd[1]: Set hostname to <am57xx-evm>.
    [    3.571699] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 110 bits of entropy available)
    [    3.588888] random: systemd-gpt-aut: uninitialized urandom read (16 bytes read, 111 bits of entropy available)
    [    3.599244] random: systemd-gpt-aut: uninitialized urandom read (16 bytes read, 111 bits of entropy available)
    [    3.611517] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 111 bits of entropy available)
    [    3.626780] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 112 bits of entropy available)
    [    3.724003] random: systemd: uninitialized urandom read (16 bytes read, 121 bits of entropy available)
    [    3.733608] random: systemd: uninitialized urandom read (16 bytes read, 121 bits of entropy available)
    [    3.743585] random: systemd: uninitialized urandom read (16 bytes read, 121 bits of entropy available)
    [    3.836678] random: nonblocking pool is initialized
    [    4.104511] systemd[1]: sysinit.target: Found ordering cycle on sysinit.target/start
    [    4.112347] systemd[1]: sysinit.target: Found dependency on alignment.service/start
    [    4.120074] systemd[1]: sysinit.target: Found dependency on basic.target/start
    [    4.127338] systemd[1]: sysinit.target: Found dependency on sockets.target/start
    [    4.134817] systemd[1]: sysinit.target: Found dependency on dropbear.socket/stop
    [    4.142277] systemd[1]: sysinit.target: Found dependency on sysinit.target/start
    [    4.149744] systemd[1]: sysinit.target: Breaking ordering cycle by deleting job alignment.service/start
    [    4.159210] systemd[1]: alignment.service: Job alignment.service/start deleted to break ordering cycle starting with sysinit.target/start
    [ SKIP ] Ordering cycle found, skipping alignment.service
    [    4.201306] systemd[1]: Listening on Journal Socket.
    [  OK  ] Listening on Journal Socket.
    [    4.218828] systemd[1]: Listening on udev Kernel Socket.
    [  OK  ] Listening on udev Kernel Socket.
    [    4.240118] systemd[1]: Created slice System Slice.
    [  OK  ] Created slice System Slice.
    [    4.288894] systemd[1]: Starting Setup Virtual Console...
             Starting Setup Virtual Console...
    [    4.321114] systemd[1]: Mounting Debug File System...
             Mounting Debug File System...
    [    4.332049] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
    [  OK  ] Started Forward Password Requests to Wall Directory Watch.
    [    4.358839] systemd[1]: Reached target Remote File Systems.
    [  OK  ] Reached target Remote File Systems.
    [    4.389372] systemd[1]: Created slice User and Session Slice.
    [  OK  ] Created slice User and Session Slice.
    [    4.429117] systemd[1]: Listening on Syslog Socket.
    [  OK  ] Listening on Syslog Socket.
    [    4.458762] systemd[1]: Reached target Slices.
    [  OK  ] Reached target Slices.
    [    4.478926] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
    [  OK  ] Started Dispatch Password Requests to Console Directory Watch.
    [    4.508920] systemd[1]: Listening on Network Service Netlink Socket.
    [  OK  ] Listening on Network Service Netlink Socket.
    [    4.578931] systemd[1]: Starting Load Kernel Modules...
             Starting Load Kernel Modules...
    [    4.597129] CMEMK module: reference Linux version 4.4.32
    [    4.603123] allocated heap buffer 0x40500000 of size 0x100000
    [    4.608971] cmemk initialized
    [    4.621167] systemd[1]: Starting Create list of required static device nodes for the current kernel...
    [    4.627984] cryptodev: driver 1.8 loaded.
             Starting Create list of required st... nodes for the current kernel...
    [    4.659557] systemd[1]: Created slice system-getty.slice.
    [  OK  ] Created slice system-getty.slice.
    [    4.688882] systemd[1]: Listening on Journal Socket (/dev/log).
    [  OK  ] Listening on Journal Socket (/dev/log).
    [    4.748975] systemd[1]: Starting Journal Service...
             Starting Journal Service...
    [    4.792460] systemd[1]: Mounting Temporary Directory...
             Mounting Temporary Directory...
    [    4.819581] systemd[1]: Created slice system-serial\x2dgetty.slice.
    [  OK  ] Created slice system-serial\x2dgetty.slice.
    [    4.841033] systemd[1]: Starting Remount Root and Kernel File Systems...
             Starting Remount Root and Kernel File Systems...
    [    4.864495] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null)
    [    4.872244] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
    [  OK  ] Listening on /dev/initctl Compatibility Named Pipe.
    [    4.909048] systemd[1]: Reached target Swap.
    [  OK  ] Reached target Swap.
    [    4.958791] systemd[1]: Mounting POSIX Message Queue File System...
             Mounting POSIX Message Queue File System...
    [    4.988931] systemd[1]: Listening on udev Control Socket.
    [  OK  ] Listening on udev Control Socket.
    [    5.008829] systemd[1]: Reached target Paths.
    [  OK  ] Reached target Paths.
    [    5.063024] systemd[1]: Mounted Debug File System.
    [  OK  ] Mounted Debug File System.
    [    5.088904] systemd[1]: Mounted POSIX Message Queue File System.
    [  OK  ] Mounted POSIX Message Queue File System.
    [    5.108806] systemd[1]: Mounted Temporary Directory.
    [  OK  ] Mounted Temporary Directory.
    [    5.129684] systemd[1]: Started Setup Virtual Console.
    [  OK  ] Started Setup Virtual Console.
    [    5.149760] systemd[1]: Started Load Kernel Modules.
    [  OK  ] Started Load Kernel Modules.
    [    5.169513] systemd[1]: Started Create list of required static device nodes for the current kernel.
    [  OK  ] Started Create list of required sta...ce nodes for the current kernel.
    [    5.200015] systemd[1]: Started Remount Root and Kernel File Systems.
    [  OK  ] Started Remount Root and Kernel File Systems.
    [    5.418874] systemd[1]: Starting udev Coldplug all Devices...
             Starting udev Coldplug all Devices...
    [    5.440776] systemd[1]: Starting Create Static Device Nodes in /dev...
             Starting Create Static Device Nodes in /dev...
    [    5.499227] systemd[1]: Starting Apply Kernel Variables...
             Starting Apply Kernel Variables...
    [    5.536095] systemd[1]: Started Create Static Device Nodes in /dev.
    [  OK  ] Started Create Static Device Nodes in /dev.
    [    5.560271] systemd[1]: Started Apply Kernel Variables.
    [  OK  ] Started Apply Kernel Variables.
    [    5.758947] systemd[1]: Starting udev Kernel Device Manager...
             Starting udev Kernel Device Manager...
    [    5.789113] systemd[1]: Reached target Local File Systems (Pre).
    [  OK  ] Reached target Local File Systems (Pre).
    [    5.849208] systemd[1]: Mounting /var/volatile...
             Mounting /var/volatile...
    [    5.890688] systemd[1]: Mounting /media/ram...
             Mounting /media/ram...
    [    5.941999] systemd[1]: Mounted /var/volatile.
    [  OK  ] Mounted /var/volatile.
    [    5.980388] systemd[1]: Mounted /media/ram.
    [  OK  ] Mounted /media/ram.
    [    6.009579] systemd[1]: Started udev Kernel Device Manager.
    [  OK  ] Started udev Kernel Device Manager.
    [    6.113901] omap-rproc 58820000.ipu: assigned reserved memory node ipu1_cma@9d000000
    [    6.141685]  remoteproc0: 58820000.ipu is available
    [    6.167235] systemd[1]: Starting Load/Save Random Seed...
    [    6.169117]  remoteproc0: Note: remoteproc is still under development and considered experimental.
    [    6.169120]  remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    6.169533] omap-rproc 55020000.ipu: assigned reserved memory node ipu2_cma@95800000
    [    6.170487]  remoteproc1: 55020000.ipu is available
    [    6.170490]  remoteproc1: Note: remoteproc is still under development and considered experimental.
    [    6.170493]  remoteproc1: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    6.172131] omap-rproc 40800000.dsp: assigned reserved memory node dsp1_cma@99000000
    [    6.172172]  remoteproc2: 40800000.dsp is available
    [    6.172175]  remoteproc2: Note: remoteproc is still under development and considered experimental.
    [    6.172177]  remoteproc2: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    6.174278] omap-rproc 41000000.dsp: assigned reserved memory node dsp2_cma@9f000000
    [    6.174313]  remoteproc3: 41000000.dsp is available
    [    6.174316]  remoteproc3: Note: remoteproc is still under development and considered experimental.
    [    6.174318]  remoteproc3: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    6.478156] omap_rng 48090000.rng: OMAP Random Number Generator ver. 20
    [    6.521789] palmas-rtc 48070000.i2c:tps659038@58:tps659038_rtc: rtc core: registered 48070000.i2c:tps659 as rtc1
    [    6.553594]  remoteproc1: registered virtio0 (type 7)
    [    6.559339] rtc-ds1307 2-006f: SET TIME!
    [    6.564742] omap_rtc 48838000.rtc: rtc core: registered 48838000.rtc as rtc2
    [    6.576095] rtc-ds1307 2-006f: rtc core: registered mcp7941x as rtc0
    [    6.590146] aic_dvdd_fixed: supplied by vdd_3v3
    [    6.610439] rtc-ds1307 2-006f: 64 bytes nvram
    [    6.612871] omap-des 480a5000.des: OMAP DES hw accel rev: 2.2
    [    6.618241] alg: skcipher: setkey failed on test 5 for ecb-des-omap: flags=100
    [    6.618504] alg: skcipher-ddst: setkey failed on test 5 for ecb-des-omap: flags=100
    [    6.618819] alg: skcipher-ddst: setkey failed on test 5 for ecb-des-omap: flags=100
             Starting Load/Save Random Seed...[    6.659092]  remoteproc0: registered virtio1 (type 7)
    
    [    6.665092] systemd[1]: Reached target Local File Systems.
    [  OK  ] Reached target Local File Systems.
    [    6.721954] systemd[1]: Started udev Coldplug all Devices.
    [  OK  ] Started udev Coldplug all Devices.
    [    6.739203] systemd[1]: Started Load/Save Random Seed.
    [  OK  ] Started Load/Save Random Seed.
    [    6.783226] systemd[1]: Found device /dev/ttyS2.
    [  OK  ] Found device /dev/ttyS2.
    [    6.932522] vpe 489d0000.vpe: loading firmware vpdma-1b8.bin
    [    6.968769] vpe 489d0000.vpe: Device registered as /dev/video0
    [    7.056681] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
    [    7.105588] omap-sham 4b101000.sham: hw accel on OMAP rev 4.3
    [    7.311059] omap-hdmi-audio omap-hdmi-audio.0.auto: snd-soc-dummy-dai <-> 58040000.encoder mapping ok
    [    7.343884] SCSI subsystem initialized
    [    8.402153] systemd[1]: dev-disk-by\x2dpath-platform\x2d480b4000.mmc.device: Dev dev-disk-by\x2dpath-platform\x2d480b4000.mmc.device appear0
    [    8.550727] systemd[1]: dev-disk-by\x2dpath-platform\x2d480b4000.mmc.device: Dev dev-disk-by\x2dpath-platform\x2d480b4000.mmc.device appear1
    [    8.588886] ti-pruss 4b200000.pruss: creating PRU cores and other child platform devices
    [    8.598231] irq: no irq domain found for /ocp/pruss@4b200000/intc@4b220000 !
    [    8.629947] irq: no irq domain found for /ocp/pruss@4b200000/intc@4b220000 !
    [    8.650011] ti-pruss 4b280000.pruss: creating PRU cores and other child platform devices
    [    8.666781] irq: no irq domain found for /ocp/pruss@4b280000/intc@4b2a0000 !
    [    8.679580] irq: no irq domain found for /ocp/pruss@4b280000/intc@4b2a0000 !
    [    8.716935] [drm] Initialized pvr 1.14.3699939 20110701 on minor 1
    [    8.740853] omap-aes 4b500000.aes: OMAP AES hw accel rev: 3.3
    [    8.777591] asoc-simple-card sound@0: tlv320aic3x-hifi <-> 48468000.mcasp mapping ok
    [    8.929629]  remoteproc3: registered virtio2 (type 7)
    [    8.946011]  remoteproc2: registered virtio3 (type 7)
    [    8.952402]  remoteproc4: 4b234000.pru0 is available
    [    8.959521]  remoteproc4: Note: remoteproc is still under development and considered experimental.
    [    8.995336]  remoteproc4: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    9.018838]  remoteproc4: registered virtio4 (type 7)
    [    9.026200] pru-rproc 4b234000.pru0: PRU rproc node /ocp/pruss@4b200000/pru0@4b234000 probed successfully
    [    9.026514]  remoteproc5: 4b238000.pru1 is available
    [    9.026517]  remoteproc5: Note: remoteproc is still under development and considered experimental.
    [    9.026519]  remoteproc5: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    9.037072]  remoteproc5: registered virtio5 (type 7)
    [    9.037105] pru-rproc 4b238000.pru1: PRU rproc node /ocp/pruss@4b200000/pru1@4b238000 probed successfully
    [    9.037367]  remoteproc6: 4b2b4000.pru0 is available
    [    9.037370]  remoteproc6: Note: remoteproc is still under development and considered experimental.
    [    9.037372]  remoteproc6: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    9.042592]  remoteproc6: registered virtio6 (type 7)
    [    9.042625] pru-rproc 4b2b4000.pru0: PRU rproc node /ocp/pruss@4b280000/pru0@4b2b4000 probed successfully
    [    9.042863]  remoteproc7: 4b2b8000.pru1 is available
    [    9.042865]  remoteproc7: Note: remoteproc is still under development and considered experimental.
    [    9.042867]  remoteproc7: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
    [    9.047996]  remoteproc7: registered virtio7 (type 7)
    [    9.048026] pru-rproc 4b2b8000.pru1: PRU rproc node /ocp/pruss@4b280000/pru1@4b2b8000 probed successfully
    [    9.153451] omap-aes 4b700000.aes: OMAP AES hw accel rev: 3.3
    [    9.159940] ahci 4a140000.sata: SSS flag set, parallel bus scan disabled
    [    9.173701] ahci 4a140000.sata: AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl platform mode
    [    9.197572] ahci 4a140000.sata: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part ccc apst 
    [    9.231273] systemd[1]: Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
    [    9.248762] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
    [  OK  ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.[    9.275275] scsi host0: ahci
    
    [    9.281466] ata1: SATA max UDMA/133 mmio [mem 0x4a140000-0x4a1410ff] port 0x100 irq 343
    [    9.429972] EXT4-fs (mmcblk1p1): recovery complete
    [    9.434851] EXT4-fs (mmcblk1p1): mounted filesystem with ordered data mode. Opts: (null)
    [    9.658583] ata1: SATA link down (SStatus 0 SControl 300)
    [    9.953161]  remoteproc1: powering up 55020000.ipu
    [    9.992798]  remoteproc1: Booting fw image dra7-ipu2-fw.xem4, size 3743072
    [   10.037368] omap-iommu 55082000.mmu: 55082000.mmu: version 2.1
    [   10.165709]  remoteproc1: remote processor 55020000.ipu is now up
    [   10.189342] virtio_rpmsg_bus virtio0: rpmsg host is online
    [   10.192410] virtio_rpmsg_bus virtio0: creating channel rpmsg-rpc addr 0x65
    [   10.193311] virtio_rpmsg_bus virtio0: creating channel rpmsg-rpc addr 0x66
    [   10.230208]  remoteproc0: powering up 58820000.ipu
    [   10.250145]  remoteproc0: Booting fw image dra7-ipu1-fw.xem4, size 4890352
    [   10.257156] omap-iommu 58882000.mmu: 58882000.mmu: version 2.1
    [   10.283237]  remoteproc0: remote processor 58820000.ipu is now up
    [   10.299591] virtio_rpmsg_bus virtio1: rpmsg host is online
    [   10.301255] virtio_rpmsg_bus virtio1: creating channel rpmsg-client-sample addr 0x32
    [   10.301402] virtio_rpmsg_bus virtio1: creating channel rpmsg-client-sample addr 0x33
    [   10.301572] virtio_rpmsg_bus virtio1: creating channel rpmsg-omx addr 0x3c
    [   10.301731] virtio_rpmsg_bus virtio1: creating channel rpmsg-rpc addr 0x65
    [   10.379358]  remoteproc3: powering up 41000000.dsp
    [   10.423279] systemd[1]: Reached target Sound Card.
    [   10.426697]  remoteproc3: Booting fw image dra7-dsp2-fw.xe66, size 21998880
    [   10.433363] omap_hwmod: mmu0_dsp2: _wait_target_disable failed
    [   10.433401] omap-iommu 41501000.mmu: 41501000.mmu: version 3.0
    [   10.433475] omap-iommu 41502000.mmu: 41502000.mmu: version 3.0
    [   10.470456]  remoteproc3: remote processor 41000000.dsp is now up
    [  OK  ] Reached target Sound Card.
    [   10.491157] virtio_rpmsg_bus virtio2: rpmsg host is online
    [   10.491234] virtio_rpmsg_bus virtio2: creating channel rpmsg-proto addr 0x3d
    [   10.518285]  remoteproc2: powering up 40800000.dsp
    [   10.565096]  remoteproc2: Booting fw image dra7-dsp1-fw.xe66, size 21998880
    [   10.591270] omap_hwmod: mmu0_dsp1: _wait_target_disable failed
    [   10.597178] omap-iommu 40d01000.mmu: 40d01000.mmu: version 3.0
    [   10.603119] omap-iommu 40d02000.mmu: 40d02000.mmu: version 3.0
    [   10.652493]  remoteproc2: remote processor 40800000.dsp is now up
    [   10.669255] virtio_rpmsg_bus virtio3: rpmsg host is online
    [   10.674832] virtio_rpmsg_bus virtio3: creating channel rpmsg-proto addr 0x3d
    [   10.688706]  remoteproc4: powering up 4b234000.pru0
    [   10.698722]  remoteproc4: Booting fw image am57xx-pru1_0-fw, size 74900
    [   10.718730] ti-pruss 4b200000.pruss: configured system_events = 0x0000000000030000 intr_channels = 0x00000005 host_intr = 0x00000005
    [   10.743651]  remoteproc4: remote processor 4b234000.pru0 is now up
    [   10.752745] virtio_rpmsg_bus virtio4: rpmsg host is online
    [   10.752773] virtio_rpmsg_bus virtio4: creating channel rpmsg-pru addr 0x1e
    [   10.767020]  remoteproc5: powering up 4b238000.pru1
    [   10.772191]  remoteproc5: Booting fw image am57xx-pru1_1-fw, size 74900
    [   10.779122] ti-pruss 4b200000.pruss: configured system_events = 0x00000000000c0000 intr_channels = 0x0000000a host_intr = 0x0000000a
    [   10.791480]  remoteproc5: remote processor 4b238000.pru1 is now up
    [   10.797961] virtio_rpmsg_bus virtio5: rpmsg host is online
    [   10.803520] virtio_rpmsg_bus virtio5: creating channel rpmsg-pru addr 0x1f
    [   10.810925]  remoteproc6: powering up 4b2b4000.pru0
    [   10.819554] usbcore: registered new interface driver usbfs
    [   10.825129] usbcore: registered new interface driver hub
    [   10.830660]  remoteproc6: Booting fw image am57xx-pru2_0-fw, size 74900
    [   10.837443] ti-pruss 4b280000.pruss: configured system_events = 0x0000000000030000 intr_channels = 0x00000005 host_intr = 0x00000005
    [   10.849544] usbcore: registered new device driver usb
    [   10.854935]  remoteproc6: remote processor 4b2b4000.pru0 is now up
    [   10.861450] virtio_rpmsg_bus virtio6: rpmsg host is online
    [   10.866990] virtio_rpmsg_bus virtio6: creating channel rpmsg-pru addr 0x20
    [   10.874302]  remoteproc7: powering up 4b2b8000.pru1
    [   10.880645]  remoteproc7: Booting fw image am57xx-pru2_1-fw, size 74900
    [   10.888131] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
    [   10.893816] ti-pruss 4b280000.pruss: configured system_events = 0x00000000000c0000 intr_channels = 0x0000000a host_intr = 0x0000000a
    [   10.905864] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 1
    [   10.914326] xhci-hcd xhci-hcd.1.auto: hcc params 0x0220f04c hci version 0x100 quirks 0x00010010
    [   10.923191] xhci-hcd xhci-hcd.1.auto: irq 435, io mem 0x48890000
    [   10.929347]  remoteproc7: remote processor 4b2b8000.pru1 is now up
    [   10.935647] virtio_rpmsg_bus virtio7: rpmsg host is online
    [   10.941209] virtio_rpmsg_bus virtio7: creating channel rpmsg-pru addr 0x21
    [   10.948848] hub 1-0:1.0: USB hub found
    [   10.955823] hub 1-0:1.0: 1 port detected
    [   10.962341] NET: Registered protocol family 41
    [   10.972503] xhci-hcd xhci-hcd.1.auto: xHCI Host Controller
    [   10.978096] rpmsg_pru rpmsg8: new rpmsg_pru device: /dev/rpmsg_pru30
    [   10.985775] rpmsg_rpc rpmsg0: probing service dce-callback with src 1024 dst 101
    [   10.994139] xhci-hcd xhci-hcd.1.auto: new USB bus registered, assigned bus number 2
    [   11.002108] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
    [   11.011856] rpmsg_pru rpmsg9: new rpmsg_pru device: /dev/rpmsg_pru31
    [   11.015728] hub 2-0:1.0: USB hub found
    [   11.015754] hub 2-0:1.0: 1 port detected
    [   11.047803] rpmsg_rpc rpmsg1: probing service rpmsg-dce with src 1025 dst 102
    [   11.047823] rpmsg_pru rpmsg10: new rpmsg_pru device: /dev/rpmsg_pru32
    [   11.047967] rpmsg_pru rpmsg11: new rpmsg_pru device: /dev/rpmsg_pru33
    [   11.068048] rpmsg_rpc rpmsg0: published functions = 4
    [   11.074744] rpmsg_rpc rpmsg5: probing service rpc_example_2 with src 1024 dst 101
    [   11.075097] rpmsg_rpc rpmsg1: published functions = 9
    [   11.088726] rpmsg_rpc rpmsg5: published functions = 8
    [   11.288566] usb 1-1: new high-speed USB device number 2 using xhci-hcd
    [   11.328592] usb 2-1: new SuperSpeed USB device number 2 using xhci-hcd
    [   11.354244] hub 2-1:1.0: USB hub found
    [   11.358321] hub 2-1:1.0: 4 ports detected
    [   11.450280] hub 1-1:1.0: USB hub found
    [   11.454363] hub 1-1:1.0: 4 ports detected
    [   11.758564] usb 1-1.1: new low-speed USB device number 3 using xhci-hcd
    [   11.861926] usb 1-1.1: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [   11.912629] input: USB Optical Mouse as /devices/platform/44000000.ocp/48880000.omap_dwc3_1/48890000.usb/xhci-hcd.1.auto/usb1/1-1/1-1.1/1-10
    [   11.929724] hid-generic 0003:0461:4D81.0001: input: USB HID v1.11 Mouse [USB Optical Mouse] on usb-xhci-hcd.1.auto-1.1/input0
    [   11.941883] usbcore: registered new interface driver usbhid
    [   11.947513] usbhid: USB HID core driver
    [   11.988561] usb 1-1.2: new low-speed USB device number 4 using xhci-hcd
    [   12.104300] usb 1-1.2: ep 0x81 - rounding interval to 64 microframes, ep desc says 80 microframes
    [   12.128686] usb 1-1.2: ep 0x82 - rounding interval to 64 microframes, ep desc says 80 microframes
    [   12.157452] input: NOVATEK USB Keyboard as /devices/platform/44000000.ocp/48880000.omap_dwc3_1/48890000.usb/xhci-hcd.1.auto/usb1/1-1/1-1.2/1
    [   12.228945] hid-generic 0003:0461:0010.0002: input: USB HID v1.10 Keyboard [NOVATEK USB Keyboard] on usb-xhci-hcd.1.auto-1.2/input0
    [   12.246574] input: NOVATEK USB Keyboard as /devices/platform/44000000.ocp/48880000.omap_dwc3_1/48890000.usb/xhci-hcd.1.auto/usb1/1-1/1-1.2/2
    [   12.318693] hid-generic 0003:0461:0010.0003: input: USB HID v1.10 Device [NOVATEK USB Keyboard] on usb-xhci-hcd.1.auto-1.2/input1
    [   ***] (2 of 2) A start job is running for Journal Service (16s / 1min 30s)[   21.045448] omap_hwmod: mmu1_dsp2: _wait_target_disable failed
    [   21.058250] omap_hwmod: mmu0_dsp2: _wait_target_disable failed
    [   21.084971] omap_hwmod: mmu1_dsp1: _wait_target_disable failed
    [   21.104523] omap_hwmod: mmu0_dsp1: _wait_target_disable failed
    [**    ] (2 of 2) A start job is running for...al Service (1min 29s / 1min 30s)[   94.413213] systemd[1]: dev-ttyO2.device: Job dev-ttyO2.devi.
    [   94.420641] systemd[1]: Timed out waiting for device dev-ttyO2.device.
    [ TIME ] Timed out waiting for device dev-ttyO2.device.
    [   94.448752] systemd[1]: Dependency failed for Serial Getty on ttyO2.
    [DEPEND] Dependency failed for Serial Getty on ttyO2.
    [   94.478723] systemd[1]: serial-getty@ttyO2.service: Job serial-getty@ttyO2.service/start failed with result 'dependency'.
    [   94.489836] systemd[1]: dev-ttyO2.device: Job dev-ttyO2.device/start failed with result 'timeout'.
    [   94.913209] systemd[1]: systemd-journald.service: Start operation timed out. Terminating.
    [ ***  ] A start job is running for Journal Service (1min 42s / 3min)[  107.176065] irq 246: nobody cared (try booting with the "irqpoll" opti)
    [  107.182910] CPU: 0 PID: 0 Comm: swapper/0 Tainted: G           O    4.4.32-gadde2ca9f8 #2
    [  107.191144] Hardware name: Generic DRA74X (Flattened Device Tree)
    [  107.197281] Backtrace: 
    [  107.199564] 
    [  107.201252] [<c00130e4>] (dump_backtrace) from [<c00132e0>] (show_stack+0x18/0x1c)
    [  107.208873]  r7:000000f6
    [  107.211245]  r6:200e0193[  107.213794]  r5:00000000
    [  107.216164]  r4:c0954dcc[  107.218713] 
    [  107.220216] [<c00132c8>] (show_stack) from [<c02b420c>] (dump_stack+0x8c/0xa0)
    [  107.227497] [<c02b4180>] (dump_stack) from [<c00827dc>] (__report_bad_irq+0x30/0xd4)
    [  107.235291]  r7:000000f6
    [  107.237661]  r6:00000002[  107.240212]  r5:00000000
    [  107.242581]  r4:eea2bd80[  107.245130] 
    [  107.246631] [<c00827ac>] (__report_bad_irq) from [<c0082c10>] (note_interrupt+0x2ac/0x2fc)
    [  107.254952]  r9:eea2bd80
    [  107.257321]  r8:000000f6[  107.259872]  r7:000000f6
    [  107.262244]  r6:00000002[  107.264796]  r5:00000000
    [  107.267165]  r4:eea2bd80
    [  107.269897] [<c0082964>] (note_interrupt) from [<c0080058>] (handle_irq_event_percpu+0x104/0x160)
    [  107.278831]  r10:c0981832
    [  107.281289]  r9:eea2bd80[  107.283839]  r8:000000f6
    [  107.286209]  r7:00002003[  107.288758]  r6:00000002
    [  107.291127]  r5:00000002
    [  107.293853]  r4:00000000
    [  107.296224]  r3:00000000[  107.298775] 
    [  107.300276] [<c007ff54>] (handle_irq_event_percpu) from [<c00800f4>] (handle_irq_event+0x40/0x64)
    [  107.309208]  r10:00000000
    [  107.311665]  r9:200e0193[  107.314215]  r8:00000001
    [  107.316584]  r7:eea45210[  107.319134]  r6:eea2bd90
    [  107.321508]  r5:eea2bde0
    [  107.324234]  r4:eea2bd80
    [  107.326603] 
    [  107.328284] [<c00800b4>] (handle_irq_event) from [<c00835e0>] (handle_edge_irq+0xec/0x198)
    [  107.336603]  r7:eea45210
    [  107.338973]  r6:eea2bd90[  107.341523]  r5:eea2bde0
    [  107.343891]  r4:eea2bd80[  107.346440] 
    [  107.347943] [<c00834f4>] (handle_edge_irq) from [<c007f634>] (generic_handle_irq+0x2c/0x3c)
    [  107.356350]  r7:eea45210
    [  107.358719]  r6:eea45268[  107.361269]  r5:eea45264
    [  107.363639]  r4:0000000c[  107.366188] 
    [  107.367694] [<c007f608>] (generic_handle_irq) from [<c02f2110>] (omap_gpio_irq_handler+0x134/0x174)
    [  107.376805] [<c02f1fdc>] (omap_gpio_irq_handler) from [<c0080008>] (handle_irq_event_percpu+0xb4/0x160)
    [  107.386263]  r10:c0981832
    [  107.388720]  r9:eea2b240[  107.391270]  r8:000000e9
    [  107.393640]  r7:00000000[  107.396189]  r6:00000000
    [  107.398559]  r5:eea2b2a0
    [  107.401283]  r4:eea2d140
    [  107.403653] 
    [  107.405332] [<c007ff54>] (handle_irq_event_percpu) from [<c00800f4>] (handle_irq_event+0x40/0x64)
    [  107.414262]  r10:c092a50c
    [  107.416720]  r9:c067a214[  107.419269]  r8:ee808000
    [  107.421638]  r7:00000000[  107.424187]  r6:c0955024
    [  107.426557]  r5:eea2b2a0
    [  107.429282]  r4:eea2b240
    [  107.431652] 
    [  107.433333] [<c00800b4>] (handle_irq_event) from [<c0083420>] (handle_fasteoi_irq+0xc0/0x194)
    [  107.441914]  r7:00000000
    [  107.444284]  r6:c0955024[  107.446834]  r5:eea2b2a0
    [  107.449204]  r4:eea2b240[  107.451753] 
    [  107.453253] [<c0083360>] (handle_fasteoi_irq) from [<c007f634>] (generic_handle_irq+0x2c/0x3c)
    [  107.461924]  r7:00000000
    [  107.464297]  r6:00000000[  107.466846]  r5:000000e9
    [  107.469217]  r4:c0924424[  107.471766] 
    [  107.473265] [<c007f608>] (generic_handle_irq) from [<c007f90c>] (__handle_domain_irq+0x64/0xbc)
    [  107.482030] [<c007f8a8>] (__handle_domain_irq) from [<c000948c>] (gic_handle_irq+0x40/0x7c)
    [  107.490437]  r9:c067a214
    [  107.492808]  r8:fa213000[  107.495358]  r7:fa212000
    [  107.497728]  r6:c0929ef0[  107.500281]  r5:fa21200c
    [  107.502651]  r4:c092a8e0
    [  107.505380] [<c000944c>] (gic_handle_irq) from [<c0013dc0>] (__irq_svc+0x40/0x74)
    [  107.512916] Exception stack(0xc0929ef0 to 0xc0929f38)
    [  107.518003] 9ee0:                                     00000001 00000000 fe600000 00000000
    [  107.526237] 9f00: c0928000 c092a4ac 00000000 00000000 c0929f60 c067a214 c092a50c c0929f4c
    [  107.534471] 9f20: c0929f2c c0929f40 c0027ae8 c0010540 600e0013 ffffffff
    [  107.541129]  r9:c067a214
    [  107.543499]  r8:c0929f60[  107.546051]  r7:c0929f24
    [  107.548420]  r6:ffffffff[  107.550970]  r5:600e0013
    [  107.553341]  r4:c0010540
    [  107.556075] [<c0010518>] (arch_cpu_idle) from [<c00708b8>] (default_idle_call+0x28/0x34)
    [  107.564228] [<c0070890>] (default_idle_call) from [<c0070b18>] (cpu_startup_entry+0x200/0x260)
    [  107.572903] [<c0070918>] (cpu_startup_entry) from [<c0671498>] (rest_init+0x90/0x94)
    [  107.580696]  r7:00000000
    [  107.583066] 
    [  107.584749] [<c0671408>] (rest_init) from [<c08d4d88>] (start_kernel+0x400/0x40c)
    [  107.592281]  r5:c0984000
    [  107.594652]  r4:c0984040[  107.597201] 
    [  107.598700] [<c08d4988>] (start_kernel) from [<80008090>] (0x80008090)
    [  107.605270] handlers:
    [  107.607556] [<c008016c>] irq_default_primary_handler
    [  107.612383]  threaded [<c03ce6b0>] tpd_hpd_isr[  107.616857] 
    [  107.618353] Disabling IRQ #246
    [ ***  ] A start job is running for Journal Service (3min / 3min)[  185.163204] systemd[1]: systemd-journald.service: State 'stop-final-sigter.
    [  *** ] A start job is running for Journal Service (3min / 4min 30s)[  185.188966] systemd[1]: systemd-journald.service: Main process exited,L
    [  185.198490] systemd[1]: Failed to start Journal Service.
    [FAILED] Failed to start Journal Service.
    See 'systemctl status systemd-journald.service' for details.
    [  185.248661] systemd[1]: Dependency failed for Flush Journal to Persistent Storage.
    [DEPEND] Dependency failed for Flush Journal to Persistent Storage.
    [  185.268648] systemd[1]: systemd-journal-flush.service: Job systemd-journal-flush.service/start failed with result 'dependency'.
    [  185.280235] systemd[1]: systemd-journald.service: Unit entered failed state.
    [  185.287332] systemd[1]: systemd-journald.service: Failed with result 'signal'.
    [  185.299930] systemd[1]: systemd-journald.service: Service has no hold-off time, scheduling restart.
    [  185.311621] systemd[1]: Stopped Journal Service.
    [  OK  ] Stopped Journal Service.
    [  185.368875] systemd[1]: Starting Journal Service...
    [  185.373010] systemd-journald[1226]: File /run/log/journal/5cf315c6d72642d98484734d8fcf9db9/system.journal corrupted or uncleanly shut down,.
             Starting Journal Service...
    [  185.410544] systemd[1]: Starting Create Volatile Files and Directories...
             Starting Create Volatile Files and Directories...
    [  185.451809] systemd[1]: Started Create Volatile Files and Directories.
    [  OK  ] Started Create Volatile Files and Directories.
    [  185.539038] systemd[1]: Starting Update UTMP about System Boot/Shutdown...
             Starting Update UTMP about System Boot/Shutdown...
    [  185.572417] systemd[1]: Starting Network Time Synchronization...
             Starting Network Time Synchronization...
    [  185.610610] systemd[1]: Started Network Time Synchronization.
    [  OK  ] Started Network Time Synchronization.
    [  185.682298] systemd[1]: Started Update UTMP about System Boot/Shutdown.
    [  OK  ] Started Update UTMP about System Boot/Shutdown.
    [  185.732028] systemd[1]: Reached target System Time Synchronized.
    [  OK  ] Reached target System Time Synchronized.
    [  185.788929] systemd[1]: Starting Synchronize System and HW clocks...
             Starting Synchronize System and HW clocks...
    [  185.821140] systemd[1]: Started Synchronize System and HW clocks.
    [  OK  ] Started Synchronize System and HW clocks.
    

  • HI Yordan Kovachev,

    Thanks for suggesting the u-boot side change.

    on linux side the file dts file need to be changed is am57xx-beagle-x15-common.dtsi. After this pinmux is working.

    root@am57xx-evm:~# ls /dev/i2c-
    i2c-0 i2c-2 i2c-4

    root@am57xx-evm:/sys/kernel/debug/pinctrl/4a003400.pinmux# cat pinmux-pins
    pin 20 (4a003450.0): 4807c000.i2c (GPIO UNCLAIMED) function i2c5_pins_default group i2c5_pins_default
    pin 21 (4a003454.0): 4807c000.i2c (GPIO UNCLAIMED) function i2c5_pins_default group i2c5_pins_default

    root@am57xx-evm:/proc/device-tree/ocp# cat i2c\@480*/status
    okay okay disabled disabled okay

    Now when I load the driver I can see below issues

    =============================================

    [ 296.715179] mt9t11x: disagrees about version of symbol v4l2_i2c_subdev_init
    [ 296.722192] mt9t11x: Unknown symbol v4l2_i2c_subdev_init (err -22)
    [ 296.728717] mt9t11x: disagrees about version of symbol i2c_register_driver
    [ 296.735743] mt9t11x: Unknown symbol i2c_register_driver (err -22)
    [ 296.741970] mt9t11x: disagrees about version of symbol i2c_transfer
    [ 296.748358] mt9t11x: Unknown symbol i2c_transfer (err -22)
    [ 296.753972] mt9t11x: disagrees about version of symbol i2c_del_driver
    [ 296.760579] mt9t11x: Unknown symbol i2c_del_driver (err -22)

    ============================================

    I am debugging this and if needed will open an new e2e post 

    Thanks for your help !!

    Regards

    Pallab Sarkar

  • Thanks for updating the thread.

    Best Regards,
    Yordan