Quantcast
Channel: Processors forum - Recent Threads
Viewing all 17527 articles
Browse latest View live

CCS/TMS320C5505: java.lang.StackOverflowError in CCStudio.

$
0
0

Part Number:TMS320C5505

Tool/software: Code Composer Studio

Hi TIers,

I am running test programs from BSL (board Support libraries) for TMS320C5505 eZDSP USB stick and I keep getting the below Internal Stack overflow Error when I try to build the project. (Nothing extra other than building the project is running while trying to build the project).

Environment: Win 10+ DSP BIOSv5.42.2.10 + CCSv8

Code Compiler: Project describes/is configured to use C5500 (TI v4.3.2) but is using TIv4.4.1 as this is the only C5500 compiler version installed on the PC.

Any help would be appreciated to resolve this. Please suggest. Thank you. in advance for your time and patience.


Compiler/TDA2PXEVM: Need Information/clarity on compiling Linux applications for TI using Vision SDK framework

$
0
0

Part Number:TDA2PXEVM

Tool/software: TI C/C++ Compiler

Hi ,

I have got couple of qeries regarding porting Linux Application on to Vision SDK framework for which I request you to provide your inputs on it.

  1. We have got an Linux application say Sample(which is designed and working for Linux platform) which is not complete POSIX compliant but has got support for most of the POSIX features in it. Namely
  • Pthread,
  • Semphores,
  • Sockets,
  • FileSystem calls
    • File(OPEN …), Directory(MKDIR…) and Link(UNLINK..) operations
    • Basic(CHMOD,UMASK…) file attributes
    • File descriptor(FCNTL..) manipulations
    • Read/Write(READ,WIRTE..) operations
    • Synchronized(SYNC,FSYNC..), Asynchronous(IO_SETUP,IO_DESTROY..) and Multiplexed(SELECT,EPOLL…) I/O
    • Monitoring(INOTIFY_INIT) file events and
    • FIFO(mkfifo..) operations
  • IPC communications(Shared memory).

 

As SYBIOS provides pthread support for A15 core and also NDK(Yet to explore) is built for A15 we were trying to compile/build our Linux application(Sample) for A15 core alone on Vision SDK framework.

Are we on the right direction? Do you foresee any issues with it?

Recent conversation with TI Engineer states we need to Port Linux on to A15 core? Does it mean porting complete Linux platform on to A15 core and post to which we should start porting our Sample on to A15?

       As mentioned Linux application Sample has got FileSystem calls in place. Do we have support for FileSystem on SYSBIOS? If So, how could we make use of it or do we need to look for corresponding alternatives in it?

  1. And Sample being the server component, there are the other application which communicates to Sample via Sockets or through PIPES or any file based operations. Being Sample built for A15 core, does the other applications which has to communicate to Sample should also be built for A15?

Request you to pour in your inputs/thoughts on it.

TMS320C6655: Ramp-up timing

$
0
0

Part Number:TMS320C6655

Hi, expert,

I'd like to get confirmation regarding supply ramp up (core before IO) as like this :

According to EVM design, it use FPGA to control ramp up sequence and reset signals by using 5 ms delay between state transition. In some E2E discusion, some design use 8 ms or 11 ms delays. But I did not find the timing specification for this in the datasheet except 100 us + 16 us delay before releasing PORn for the time of device initialization phase. Is there any special reasion to use several miliseconds delay in every state transition ?

Regard,

Sympson

AM3358: How to set register R30 of the PRU from within the startup javascript

$
0
0

Part Number:AM3358

The startup script bbb_pru_startup.js contains memory writes like this:

   //red led  = pru0 r30_3  ARM pin c12
   dsDAP_mem.writeData(0, 0x44e1099c, AM335X_PIN_OUTPUT | 5, 32); //mode 5

to setup pin muxing amongst others.

I would like to write to the address of R30 (GPout) in order to set all outputs to L before the PRU starts executing code.

The ref man of AM335x says (p.218):

"NOTE: R30 is not initialized after reset. To avoid unintended output signals, R30 should be initialized before pinmux configuration of PRU signals."

But is this possible from the Debug Server ? And if yes, what is the address of register R30 ?

Thanks

Peter

RTOS/TDA2: TDA2x: Invalid MultiProc id

$
0
0

Part Number:TDA2

Tool/software: TI-RTOS

Hello,

I'm working with a TDA2EVM5777 and use Vision SDK version 2.5 (old Version because of legacy reason). I wrote a new link and wanted to test it in a usecase. After compiling i try  to load the program but got this message in the console:

[Cortex_M4_IPU1_C0] IPU1-0 Remote Log Shared Memory @ 0xa0d00000
IPU1-1 Remote Log Shared Memory @ 0xa0d04010
HOST Remote Log Shared Memory @ 0xa0d08020
DSP1 Remote Log Shared Memory @ 0xa0d0c030
DSP2 Remote Log Shared Memory @ 0xa0d10040
EVE1 Remote Log Shared Memory @ 0xa0d14050
EVE2 Remote Log Shared Memory @ 0xa0d18060
EVE3 Remote Log Shared Memory @ 0xa0d1c070
EVE4 Remote Log Shared Memory @ 0xa0d20080
ti.sdo.ipc.Ipc: line 102: ti.sdo.ipc.Ipc: line 102: assertion failure: A_invalidMultiProcId: Invalid MultiProc id
xdc.runtime.Error.raise: terminating execution
[C66xx_DSP1] ti.sdo.ipc.Ipc: line 101: ti.sdo.ipc.Ipc: line 101: assertion failure: A_invalidMultiProcId: Invalid MultiProc id
xdc.runtime.Error.raise: terminating execution

What is the reason for this failure and how can i fix this?

RTOS/OMAP-L138: Linker Error undefined Symbol Hwi_disable

$
0
0

Part Number:OMAP-L138

Tool/software: TI-RTOS

I try to compile the audioSample_io application on the OMAP-L138. I was successful in compiling it for the ARM processor. I have set up an application for the C6700 DSP as well but here the linker fails:

undefined first referenced
symbol in file
--------- ----------------
Hwi_disable E:\wsAudioProject\AudioProjectC6700\src\sysbios\sysbios.ae674<BIOS.obj>
Hwi_restore E:\wsAudioProject\AudioProjectC6700\src\sysbios\sysbios.ae674<BIOS.obj>

error #10234-D: unresolved symbols remain

I included the Hwi module and the EventCombiner in the app.cfg file:

var Memory = xdc.useModule('xdc.runtime.Memory');
var BIOS = xdc.useModule('ti.sysbios.BIOS');
var Task = xdc.useModule('ti.sysbios.knl.Task');
var Clock = xdc.useModule ('ti.sysbios.knl.Clock');
var HeapMem = xdc.useModule('ti.sysbios.heaps.HeapMem');
var Hwi = xdc.useModule('ti.sysbios.family.c64p.Hwi');
var EventCombiner = xdc.useModule('ti.sysbios.family.c64p.EventCombiner');

var Edma = xdc.loadPackage ("ti.sdo.edma3.drv.sample");
var drv = xdc.loadPackage ("ti.sdo.edma3.drv");
var rm = xdc.loadPackage ("ti.sdo.edma3.rm");
var Cache = xdc.useModule('ti.sysbios.hal.Cache');

Can someone give me a hint what I have to do to get the linker to link the missing functions?

I am running CCS 8.0 and TI v8.2.2 Compiler version for the C6000.

TMS320C5505: Issue with TI's USCIF driver or utilities

$
0
0

Part Number:TMS320C5505

The LED on the board is blinking and I get the 1 and 2 kHz sound. I am using CCSv8 on a windows 10 system. The connection type being used is Texas Instruments XDS100vx USB Debug Probe, USBSTK5505. I have tried to test different combinations, but they all reply with the below error. I have also updated the drivers and still the same outcome. I am new to this process if you can help guide me to communicating with the board. The board appears to be working and I can get CCSv8 to run but unable to communicate with the board.

Manuel

 

[Start: Texas Instruments XDS100v2 USB Debug Probe_0]

Execute the command:

%ccs_base%/common/uscif/dbgjtag -f %boarddatafile% -rv -o -F inform,logfile=yes -S pathlength -S integrity

[Result]

-----[Print the board config pathname(s)]------------------------------------

C:\Users\herna\AppData\Local\TEXASI~1\CCS\

   ti\0\0\BrdDat\testBoard.dat

-----[Print the reset-command software log-file]-----------------------------

This utility has selected a 100- or 510-class product.

This utility will load the adapter 'jioserdesusb.dll'.

An error occurred while soft opening the controller.

-----[An error has occurred and this utility has aborted]--------------------

This error is generated by TI's USCIF driver or utilities.

The value is '-151' (0xffffff69).

The title is 'SC_ERR_FTDI_OPEN'.

The explanation is:

One of the FTDI driver functions used during the connect

returned bad status or an error. The cause may be one or

more of: no XDS100 is plugged in, invalid XDS100 serial number,

blank XDS100 EEPROM, missing FTDI drivers, faulty USB cable.

Use the xds100serial command-line utility in the 'common/uscif'

folder to verify the XDS100 can be located.

 

[End: Texas Instruments XDS100v2 USB Debug Probe_0]

TMDSEVM6657: Does C66x DSP kits or any evaluation module supports Audio interface ?

$
0
0

Part Number:TMDSEVM6657

Hi. Does C66x DSP kits or any evaluation module supports Audio interface ? I need DSP kit with internal memory near 1MB. Also, i nee audio interface and UART for RS-232 protocol communication

Regards


AM5718: Spread Spectrum Clocking support

$
0
0

Part Number:AM5718

Hello Sitara Team,

With regards to appnote SPRABY0, "DRA7xx, AM57xx, TDA2x, TDA3x Spread Spectrum Clocking Configuration"

http://www.ti.com/lit/an/spraby0a/spraby0a.pdf

1) In the abstract, it states that "The spreadsheet discussed in this application report is available upon request."  How can I obtain this spreadsheet.

2) Can you confirm that the spread spectrum clocking applies to the AM5718 on the VOUT1 port of the display subsystem?

3) Is there any configuration code/driver available for Linux that supports this?

Thanks and Regards,

David

Linux/AM3352: Adapting CCS projects for inclusion via Bitbake build

$
0
0

Part Number:AM3352

Tool/software: Linux


Hi

I have been writing my application code for the linux SDK via cross compilation within CCS; this works really well for development and debug.
At present there are 3 projects I am using (one of which is a shared library).

I am at the stage where I am looking to bundle these up using bitbake recipes for inclusion in to my rootfs for deployment on my target hardware.

I am wondering what the most practical, or preferred, way of doing this might be.

I can imagine several ways to do it:
- manually converting to autoconf or make
- making use of the CCS generated makefiles
- calling CCS from the command line (if this were available to bitbake)
- or compiling elsewhere, archiving the artifacts and treating these as files to install

Does anyone have any suggestions as to an approach that has worked for them?
- or know of any example projects that work both in CCS and bitbake?

Thanks for any help

Best regards,
- Richard

RTOS/AM5728: MCASP_Audio Example on C66x DSP

$
0
0

Part Number:AM5728

Tool/software: TI-RTOS

Hi experts,

I want to use MCASP_Audio example to perform the FFT on RX samples. So in processing part I copy samples from the buffer to array 'x'.

memcpy((void*)(px),(void *)((uint8_t *)appBuf_ptr_rx->buf),rx_frame_size);

Then I can see that always 4 samples both from left and right channels are the same, for example:

0x8006A478: 0150C35E 017CD506 0150C35E 017CD506 0150C35E 017CD506 0150C35E

so the graf looks like (4 left and 4 right samples are on the same level always):

So I don't really can get FFT without harmonic distortion for pure sin. Do you have any suggestions?

Compiler/AM3359: Type #395 pointer to incomplete class type is not allowed/incomplete type is not allowed

$
0
0

Part Number:AM3359

Tool/software: TI C/C++ Compiler

Compiler: TI v5.2.5

Payload_Manager.c:

struct __attribute__((__packed__))ATEIS_Payload	//payload
{
	u32 Addr;
	u16 Cmd;
	u16 Len;
	u8 Data[];	// If the expression is a constant expression, it shall have a value greater than zero. 所以裡面不能填0
};

Payload_Manager.h:

typedef struct ATEIS_Payload ATEIS_Payload_s;

DNM_PktXcvr.c:

#include "Payload_Manager.h"
ATEIS_Payload_s* pl_p = Payload_Manager_New(PAYLOAD_SIZE+dataLen); //incomplete type is not allowed

DNM_CmdHndlr.c:

#include "Payload_Manager.h"

ATEIS_Payload_s* pl_p = NULL;    //no problem

pl_p = OSTaskQPend(0, OS_OPT_PEND_BLOCKING, &msgSize, &ts, &err);	//wait for a message


DNM_temp = DNMManager_Ctor(DNM_temp,
                           &pl_p->Data[NAME],            //pointer to incomplete class type is not allowed
			   pl_p->Addr,                   //ditto
			   *(u32*)&pl_p->Data[SN],       //ditto
  			   *(u32*)&pl_p->Data[SUBMASK]); //ditto

I deliberately hide struct member in source file and only give enough information via header file.

I don't know why this doesn't work.

Thanks

TMS320C6678: Which UART interface to use

$
0
0

Part Number:TMS320C6678

Hi,

I am working on a real-time processing project using TMS320C6678L DSP. Can you recommend which UART interface should I use, the mini USB or the onboard RS232? Thanks!

DRA77P: Custom Board Clock details

$
0
0

Part Number:DRA77P

Hi,

We are building a custom board based on DRA77p, I wanted to know a way analyze the clock details of its peripherals.

From my previous post it says looking into the gel file DRA7xxP_PRCM_Get_Config.gel we get the clock details. So to update the clock details of the custom board is it enough to edit these gel scripts and apply it through ccs.

Regards,

Padmesh

RTOS/TDA3: VSDK 3.0 : TDA3 user guide : run 3.5 Load using QSPI

$
0
0

Part Number:TDA3

Tool/software: TI-RTOS

Hi, experts,

I want to load appimage via QSPI, and reger to TDA3 userguide: Loading using QSPI , but I can load but I cannot run.

The image name is different from the compiled image. I can only see Appimage_BE and LE. 

 ************QSPI flash completed sucessfully************** 

QSPI Flash writer application
Enter Device type to use                
1 - 1 bit read from flash                
2 - 4 bit (Quad) read from flash                
$ > 2

MID - 1
DID - 18
Enter 0 for Erase-Only (without flashing any image)
Note : File size should be less than 33554432 Bytes.
Enter the file path to flash: /home/fredy/install/work/valeo/vsdk_3_0_mp4enc/vsdk_3_0_mp4enc/vision_sdk/binaries/apps/tda3xx_evm_bios_all/sbl/qspi/opp_nom/tda3xx-evm/sbl_qspi_opp_nom_ipu1_0_release.tiimage
Enter the Offset in bytes (HEX): 0x00
Erase Options:
---------------
    0 -> Erase Only Required Region
    1 -> Erase Whole Flash
    2 -> Skip Erase 
Enter Erase Option: 
1
Load Options:
-------------
    0 -> fread using code (RTS Library)
    1 -> load raw using CCS (Scripting console)
Enter Load Option: 
0
Reading 66080 bytes from file...
Read 16384 bytes [24%] from file...
Read 32768 bytes [49%] from file...
Read 49152 bytes [74%] from file...
Read 65536 bytes [99%] from file...
Read 66080 bytes [100%] from file. Done!!

 QSPI whole chip erase in progress

 QSPI Erase completed

 QSPI file write started 
file size to write: 66080 Bytes 

 QSPI file write completed. Verifying 

 ************QSPI flash completed sucessfully************** 
QSPI Flash writer application
Enter Device type to use                
1 - 1 bit read from flash                
2 - 4 bit (Quad) read from flash                
$ > 2

MID - 1
DID - 18
Enter 0 for Erase-Only (without flashing any image)
Note : File size should be less than 33554432 Bytes.
Enter the file path to flash: /home/fredy/install/work/valeo/vsdk_3_0_mp4enc/vsdk_3_0_mp4enc/vision_sdk/binaries/apps/tda3xx_evm_bios_all/vision_sdk/bin/tda3xx-evm/sbl_boot/AppImage_LE
Enter the Offset in bytes (HEX): 0x80000
Erase Options:
---------------
    0 -> Erase Only Required Region
    1 -> Erase Whole Flash
    2 -> Skip Erase 
Enter Erase Option: 
0
Load Options:
-------------
    0 -> fread using code (RTS Library)
    1 -> load raw using CCS (Scripting console)
Enter Load Option: 
1
Use below command in CCS scripting console...
loadRaw(0x80500000, 0, "/home/fredy/install/work/valeo/vsdk_3_0_mp4enc/vsdk_3_0_mp4enc/vision_sdk/binaries/apps/tda3xx_evm_bios_all/vision_sdk/bin/tda3xx-evm/sbl_boot/AppImage_LE", 32, false);
Kindly use '/' (forward slash) in the file path
Enter any alpha-numeric key once loadraw is complete...
1

 QSPI Erase started

 QSPI Erase completed

 QSPI file write started 
file size to write: 18606348 Bytes 
written 1024000 Bytes: [5%] 
written 2048000 Bytes: [11%] 
written 3072000 Bytes: [16%] 
written 4096000 Bytes: [22%] 
written 5120000 Bytes: [27%] 
written 6144000 Bytes: [33%] 
written 7168000 Bytes: [38%] 
written 8192000 Bytes: [44%] 
written 9216000 Bytes: [49%] 
written 10240000 Bytes: [55%] 
written 11264000 Bytes: [60%] 
written 12288000 Bytes: [66%] 
written 13312000 Bytes: [71%] 
written 14336000 Bytes: [77%] 
written 15360000 Bytes: [82%] 
written 16384000 Bytes: [88%] 
written 17408000 Bytes: [93%] 
written 18432000 Bytes: [99%] 

 QSPI file write completed. Verifying 

 ************QSPI flash completed sucessfully************** 

and run:

TDA3xx SBL Boot

Identified 15X15 Silicon

DPLL Configuration Completed

Clock Domain Configuration Completed

Module Enable Configuration Completed

TI EVM PAD Configuration Completed

DDR Configuration Completed

TDA3xx SOC Init Completed

App Image Download Begins

Manufacturer ID - 0x1
Device ID - 0x18
Invalid Magic String in MultiCore Image

Valid App Image is not Available

EVE MMU configuration completed

*****************************************************************

32K Timer is used to measure cycles, divide by 32K to get time in seconds

Reset to SBL Init Cycles - 1753 (53.49 ms)

SBL Initial Config Cycles - 230 (7.01 ms)

SOC Init Cycles - 469 (14.31 ms)

DDR Config Clock Cycles - 230 (7.01 ms)

App Image Load Cycles - 462 (14.09 ms)

Slave Core Bootup Cycles - 113 (3.44 ms)

SBL Boot-up Cycles - 1507 (45.98 ms)

*****************************************************************

No IPU1 CPU1 App Found, Switching to while Loop

Please guide me to completed the case.

thanks,

Widic


Linux/TMDSCSK388: Support For GUI Development

$
0
0

Part Number:TMDSCSK388

Tool/software: Linux

Hi,

i am developing GUI using QT5.9. My GUI requires graph plot, but it seems graph plot is not supported in the Linux SDK. Could you please advice how to achieve graph plot in QT.

Hardware: AM335X

Linux : 5.01.00.11

Thanks,

Aditya

RTOS/TDA2P-ACD: Query Regarding Bitmap Image Overlay using Draw2d in Vision SDK

$
0
0

Part Number:TDA2P-ACD

Tool/software: TI-RTOS

Hello All,

I am currently exploring how to overlay a bitmap image on video buffer in Vision SDK. I have gone through the different files inside "draw2d" module of Vision SDK. For bitmap image I found that a static char array with hex values are being used. So do I need to convert my bitmap image file into similar array of hex values or is there any other way to do it. Is there any tool in vision sdk to convert bitmap image to hex. Please suggest.

Also I want to know in what data format (32-bit ARGB, 32-bit RGBA, 24-bit RGB or any other data format) bitmap image is represented in vision sdk ?

Thanks,

Abhay

DRA75: Early boot/ Late attach

$
0
0

Part Number:DRA75

Hi,

I'm trying to do the early boot feature. I have followed the instructions provided in .

I am trying to early boot the csl example i2c led blink in ipu1. But  i get the following log :

\00\00\00\00\00
U-Boot SPL 2016.05-dirty (Jan 10 2019 - 12:56:27)
DRA752-GP ES2.0
no pinctrl for hs200_1_8v
no pinctrl for ddr_1_8v
*** Warning - bad CRC, using default environment
 
Trying to boot from MMC1
reading dra7-ipu1-fw.xem4
spl_load_file_fat: error reading file dra7-ipu1-fw.xem4, err - -1
spl: error reading image dra7-ipu1-fw.xem4, err - -1
Error loading remotecore IPU1!,Continuing with boot ...
*** Warning - bad CRC, using default environment
 
reading u-boot.img
reading u-boot.img
reading u-boot.img
reading u-boot.img
 
 
U-Boot 2016.05-dirty (Jan 10 2019 - 12:56:27 +0530)
 
CPU  : DRA752-GP ES2.0
Model: TI DRA742
Board: DRA74x EVM REV H.0
DRAM:  4 GiB
MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1
*** Warning - bad CRC, 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:  2 1 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
234 bytes read in 2 ms (114.3 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
3553104 bytes read in 117 ms (29 MiB/s)
108307 bytes read in 19 ms (5.4 MiB/s)
Booting from mmc0 ...
Kernel image @ 0x82000000 [ 0x000000 - 0x363750 ]
## Flattened Device Tree blob at 88000000
   Booting using the fdt blob at 0x88000000
   Loading Device Tree to 8ffe2000, end 8ffff712 ... 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.84-g742f84423d (tiiappadmin@swubn03) (gcc version 5.3.1 20160113 (Linaro GCC 5.3-2016.02) ) #1 SMP PREEMPT Thu Jan 18 05:02:56 IST 2018
 [    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 DRA742
 [    0.000000] bootconsole [earlycon0] enabled
 [    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 128 MiB at 0x00000000b0000000
 [    0.000000] Forcing write-allocate cache policy for SMP
 [    0.000000] Memory policy: Data cache writealloc
 [    0.000000] OMAP4: Map 0x000000027fd00000 to fe600000 for dram barrier
 [    0.000000] DRA752 ES2.0
 [    0.000000] PERCPU: Embedded 11 pages/cpu @eb726000 s14912 r8192 d21952 u45056
 [    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 1040704
 [    0.000000] Kernel command line: console=ttyO0,115200n8 elevator=noop root=PARTUUID=dccee334-02 rw rootwait earlyprintk fixrtc omapdrm.num_crtc=2 consoleblank=0 cma=128M@0xB0000000 rootfstype=ext4 snd.slots_reserved=1,1
 [    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: 3826320K/4169728K available (6615K kernel code, 319K rwdata, 2456K rodata, 340K init, 290K bss, 48496K reserved, 294912K cma-reserved, 3256320K 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 : 0xc0008000 - 0xc08e402c   (9073 kB)
 [    0.000000]       .init : 0xc08e5000 - 0xc093a000   ( 340 kB)
 [    0.000000]       .data : 0xc093a000 - 0xc0989ee0   ( 320 kB)
 [    0.000000]        .bss : 0xc098b000 - 0xc09d3800   ( 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.000005] sched_clock: 56 bits at 6MHz, resolution 162ns, wraps every 4398046511023ns
 [    0.008306] Switching to timer-based delay loop, resolution 162ns
 [    0.014972] clocksource: 32k_counter: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 58327039986419 ns
 [    0.025234] OMAP clocksource: 32k_counter at 32768 Hz
 [    0.030979] Console: colour dummy device 80x30
 [    0.035632] WARNING: Your 'console=ttyO0' has been replaced by 'ttyS0'
 [    0.042425] This ensures that you still see kernel messages. Please
 [    0.048941] update your kernel commandline.
 [    0.053333] Calibrating delay loop (skipped), value calculated using timer frequency.. 12.29 BogoMIPS (lpj=61475)
 [    0.063968] pid_max: default: 32768 minimum: 301
 [    0.068884] Mount-cache hash table entries: 2048 (order: 1, 8192 bytes)
 [    0.075771] Mountpoint-cache hash table entries: 2048 (order: 1, 8192 bytes)
 [    0.083631] Initializing cgroup subsys io
 [    0.087852] Initializing cgroup subsys memory
 [    0.092426] Initializing cgroup subsys devices
 [    0.097078] Initializing cgroup subsys freezer
 [    0.101734] Initializing cgroup subsys perf_event
 [    0.106652] Initializing cgroup subsys pids
 [    0.111049] CPU: Testing write buffer coherency: ok
 [    0.116343] /cpus/cpu@0 missing clock-frequency property
 [    0.121888] /cpus/cpu@1 missing clock-frequency property
 [    0.127442] CPU0: thread -1, cpu 0, socket 0, mpidr 80000000
 [    0.133367] Setting up static identity map for 0x80008380 - 0x800083e0
 [    0.220452] CPU1: thread -1, cpu 1, socket 0, mpidr 80000001
 [    0.220520] Brought up 2 CPUs
 [    0.229537] SMP: Total of 2 processors activated (24.59 BogoMIPS).
 [    0.235977] CPU: All CPU(s) started in HYP mode.
 [    0.240798] CPU: Virtualization extensions available.
 [    0.246449] devtmpfs: initialized
 [    0.279270] VFP support v0.3: implementor 41 architecture 4 part 30 variant f rev 0
 [    0.288184] omap_hwmod: l3_main_2 using broken dt data from ocp
 [    0.499703] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns
 [    0.509901] futex hash table entries: 512 (order: 3, 32768 bytes)
 [    0.522303] pinctrl core: initialized pinctrl subsystem
 [    0.528623] NET: Registered protocol family 16
 [    0.534271] DMA: preallocated 256 KiB pool for atomic coherent allocations
 [    0.563359] cpuidle: using governor ladder
 [    0.593386] cpuidle: using governor menu
 [    0.606401] OMAP GPIO hardware version 0.1
 [    0.614839] GPIO line 161 (radio_rst) hogged as output/low
 [    0.622930] irq: no irq domain found for /ocp/l4@4a000000/scm@2000/pinmux@1400 !
 [    0.648174] omap-gpmc 50000000.gpmc: GPMC revision 6.0
 [    0.653555] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000
 [    0.671916] hw-breakpoint: found 5 (+1 reserved) breakpoint and 4 watchpoint registers.
 [    0.680236] hw-breakpoint: maximum watchpoint size is 8 bytes.
 [    0.686774] omap4_sram_init:Unable to allocate sram needed to handle errata I688
 [    0.694467] omap4_sram_init:Unable to get sram pool needed to handle errata I688
 [    0.702718] OMAP DMA hardware revision 0.0
 [    0.748337] omap-dma-engine 4a056000.dma-controller: OMAP DMA engine driver (LinkedList1/2/3 supported)
 [    0.759305] edma 43300000.edma: memcpy is disabled
 [    0.769092] edma 43300000.edma: TI EDMA DMA engine driver
 [    0.779317] omap-iommu 40d01000.mmu: 40d01000.mmu registered
 [    0.785378] omap-iommu 40d02000.mmu: 40d02000.mmu registered
 [    0.791437] omap-iommu 58882000.mmu: 58882000.mmu registered
 [    0.797479] omap-iommu 55082000.mmu: 55082000.mmu registered
 [    0.803681] omap-iommu 41501000.mmu: 41501000.mmu registered
 [    0.809758] omap-iommu 41502000.mmu: 41502000.mmu registered
 [    0.818908] palmas 0-0058: IRQ missing: skipping irq request
 [    0.836029] palmas 0-0058: Muxing GPIO 2e, PWM 0, LED 0
 [    0.908386] pcf857x 0-0020: probed
 [    0.912522] pcf857x 0-0021: probed
 [    0.916259] omap_i2c 48070000.i2c: bus 0 rev0.12 at 400 kHz
 [    0.936374] GPIO line 463 (vin6_sel_s0) hogged as output/low
 [    0.942355] pcf857x 1-0026: probed
 [    0.946537] omap_i2c 48072000.i2c: bus 1 rev0.12 at 400 kHz
 [    0.952711] omap_i2c 48060000.i2c: bus 2 rev0.12 at 400 kHz
 [    0.978636] pcf857x: probe of 3-0021 failed with error -121
 [    0.984469] omap_i2c 4807a000.i2c: bus 3 rev0.12 at 400 kHz
 [    0.990507] media: Linux media interface: v0.10
 [    0.995287] Linux video capture interface: v2.00
 [    1.000145] pps_core: LinuxPPS API ver. 1 registered
 [    1.005340] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>
 [    1.014821] PTP clock support registered
 [    1.018984] EDAC MC: Ver: 3.0.0
 [    1.023066] omap-mailbox 48840000.mailbox: omap mailbox rev 0x400
 [    1.029712] omap-mailbox 48842000.mailbox: omap mailbox rev 0x400
 [    1.036416] Advanced Linux Sound Architecture Driver Initialized.
 [    1.043643] clocksource: Switched to clocksource arch_sys_counter
 [    1.060479] NET: Registered protocol family 2
 [    1.065550] TCP established hash table entries: 8192 (order: 3, 32768 bytes)
 [    1.072925] TCP bind hash table entries: 8192 (order: 4, 65536 bytes)
 [    1.079758] TCP: Hash tables configured (established 8192 bind 8192)
 [    1.086420] UDP hash table entries: 512 (order: 2, 16384 bytes)
 [    1.092602] UDP-Lite hash table entries: 512 (order: 2, 16384 bytes)
 [    1.099424] NET: Registered protocol family 1
 [    1.104251] RPC: Registered named UNIX socket transport module.
 [    1.110412] RPC: Registered udp transport module.
 [    1.115339] RPC: Registered tcp transport module.
 [    1.120250] RPC: Registered tcp NFSv4.1 backchannel transport module.
 [    1.128033] hw perfevents: enabled with armv7_cortex_a15 PMU driver, 7 counters available
 [    1.146650] squashfs: version 4.0 (2009/01/31) Phillip Lougher
 [    1.153368] NFS: Registering the id_resolver key type
 [    1.158718] Key type id_resolver registered
 [    1.163097] Key type id_legacy registered
 [    1.167377] ntfs: driver 2.1.32 [Flags: R/O].
 [    1.173282] bounce: pool size: 64 pages
 [    1.177490] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 247)
 [    1.185211] io scheduler noop registered (default)
 [    1.190217] io scheduler deadline registered
 [    1.194740] io scheduler cfq registered
 [    1.203728] pinctrl-single 4a003400.pinmux: 282 pins at pa fc003400 size 1128
 [    1.214437] PCI host bridge /ocp/axi@0/pcie_rc@51000000 ranges:
 [    1.220600]   No bus range found for /ocp/axi@0/pcie_rc@51000000, using [bus 00-ff]
 [    1.228606]    IO 0x20003000..0x20012fff -> 0x00000000
 [    1.233988]   MEM 0x20013000..0x2fffffff -> 0x20013000
 [    1.272017] dra7-pcie 51000000.pcie_rc: link is not up
 [    1.277551] dra7-pcie 51000000.pcie_rc: PCI host bridge to bus 0000:00
 [    1.284357] pci_bus 0000:00: root bus resource [bus 00-ff]
 [    1.290074] pci_bus 0000:00: root bus resource [io  0x0000-0xffff]
 [    1.296518] pci_bus 0000:00: root bus resource [mem 0x20013000-0x2fffffff]
 [    1.304081] PCI: bus0: Fast back to back transfers disabled
 [    1.310003] PCI: bus1: Fast back to back transfers enabled
 [    1.315814] pci 0000:00:00.0: BAR 0: assigned [mem 0x20100000-0x201fffff]
 [    1.322872] pci 0000:00:00.0: BAR 1: assigned [mem 0x20020000-0x2002ffff]
 [    1.329945] pci 0000:00:00.0: PCI bridge to [bus 01]
 [    1.335354] pcieport 0000:00:00.0: Signaling PME through PCIe PME interrupt
 [    1.404561] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled
 [    1.414640] 4806a000.serial: ttyS0 at MMIO 0x4806a000 (irq = 301, base_baud = 3000000) is a 8250
 [    1.423858] console [ttyS0] enabled
[    1.423858] console [ttyS0] enabled
 [    1.431023] bootconsole [earlycon0] disabled
[    1.431023] bootconsole [earlycon0] disabled
 [    1.440693] 4806c000.serial: ttyS1 at MMIO 0x4806c000 (irq = 302, base_baud = 3000000) is a 8250
[    1.450397] 48020000.serial: ttyS2 at MMIO 0x48020000 (irq = 303, base_baud = 3000000) is a 8250
[    1.460528] [drm] Initialized drm 1.1.0 20060810
[    1.467255] OMAP DSS rev 6.1
[    1.471011] omapdss_dss 58000000.dss: bound 58001000.dispc (ops dispc_component_ops)
[    1.479497] omapdss_dss 58000000.dss: bound 58040000.encoder (ops hdmi5_component_ops)
[    1.489398] connector-hdmi connector@1: failed to find video source
[    1.502107] loop: module loaded
[    1.506279] nand: No NAND device found
[    1.510049] omap2-nand 8000000.nand: scan failed, may be bus-width mismatch
[    1.520018] m25p80 spi32766.0: s25fl256s1 (32768 Kbytes)
[    1.525434] 7 ofpart partitions found on MTD device spi32766.0
[    1.531293] Creating 7 MTD partitions on "spi32766.0":
[    1.536476] 0x000000000000-0x000000040000 : "QSPI.SPL"
[    1.542535] 0x000000040000-0x000000140000 : "QSPI.u-boot"
[    1.548846] 0x000000140000-0x0000001c0000 : "QSPI.u-boot-spl-os"
[    1.555783] 0x0000001c0000-0x0000001d0000 : "QSPI.u-boot-env"
[    1.562415] 0x0000001d0000-0x0000001e0000 : "QSPI.u-boot-env.backup1"
[    1.569773] 0x0000001e0000-0x0000009e0000 : "QSPI.kernel"
[    1.576096] 0x0000009e0000-0x000002000000 : "QSPI.file-system"
[    1.583810] libphy: Fixed MDIO Bus: probed
[    1.633676] davinci_mdio 48485000.mdio: davinci mdio revision 1.6
[    1.639802] davinci_mdio 48485000.mdio: detected phy mask fffffff3
[    1.650382] libphy: 48485000.mdio: probed
[    1.654455] davinci_mdio 48485000.mdio: phy[2]: device 48485000.mdio:02, driver unknown
[    1.662495] davinci_mdio 48485000.mdio: phy[3]: device 48485000.mdio:03, driver unknown
[    1.671226] cpsw 48484000.ethernet: Detected MACID = fc:0f:4b:af:21:ac
[    1.677924] cpsw 48484000.ethernet: cpts: overflow check period 800
[    1.684930] cpsw 48484000.ethernet: cpsw: Detected MACID = fc:0f:4b:af:21:ad
[    1.693617] mousedev: PS/2 mouse device common for all mice
[    1.699931] i2c /dev entries driver
[    1.704183] tvp5158 1-0058: Unable to of_probe
[    1.708990] ov1063x 1-0037: Failed writing register 0x0103!
[    1.714642] ov1063x: probe of 1-0037 failed with error -121
[    1.721014] vpe 489d0000.vpe: loading firmware vpdma-1b8.bin
[    1.728113] vip 48970000.vip: loading firmware vpdma-1b8.bin
[    1.738513] omap_hsmmc 4809c000.mmc: Got CD GPIO
[    1.743884] vpe 489d0000.vpe: Device registered as /dev/video0
[    1.744411] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr25 mode
[    1.744417] omap_hsmmc 480b4000.mmc: no pinctrl state for sdr12 mode
[    1.749883] evm_3v3_sw: supplied by sysen1
[    1.766730] vip 48970000.vip: VPDMA firmware loaded
[    1.847425] mmc0: MAN_BKOPS_EN bit is not set
[    1.859306] mmc0: new HS200 MMC card at address 0001
[    1.864755] mmcblk0: mmc0:0001 MMC08G 7.25 GiB  
[    1.869540] mmcblk0boot0: mmc0:0001 MMC08G partition 1 8.00 MiB
[    1.875715] mmcblk0boot1: mmc0:0001 MMC08G partition 2 8.00 MiB
[    1.884472]  mmcblk0: p1 p2 p3 p4 p5 p6 p7 p8 p9 p10 p11 p12 p13 p14 p15
[    1.925572] ledtrig-cpu: registered to indicate activity on CPUs
[    1.936802] hwspinlock_user gatemp: requested 20 hwspinlocks
[    1.943818] aic_dvdd: supplied by evm_3v3_sw
[    1.950597] davinci-mcasp 48464000.mcasp: DAI is shared
[    1.956757] davinci-mcasp 48474000.mcasp: DAI is shared
[    1.962208] davinci-mcasp 4847c000.mcasp: invalid tdm slots: 0
[    1.969364] omap-hdmi-audio omap-hdmi-audio.0.auto: snd-soc-dummy-dai <-> 58040000.encoder mapping ok
[    1.980197] NET: Registered protocol family 10
[    1.995480] sit: IPv6 over IPv4 tunneling driver
[    2.000680] NET: Registered protocol family 17
[    2.005432] Key type dns_resolver registered
[    2.009876] omap_voltage_late_init: Voltage driver support not added
[    2.016796] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
[    2.023004] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
[    2.029755] Adding alias for supply vdd,cpu0 -> vdd,4a003b20.oppdm
[    2.036011] Adding alias for supply vbb,cpu0 -> vbb,4a003b20.oppdm
[    2.044215] Power Management for TI OMAP4+ devices.
[    2.049320] Registering SWP/SWPB emulation handler
[    2.055102] dmm 4e000000.dmm: workaround for errata i878 in use
[    2.062334] dmm 4e000000.dmm: initialized all PAT entries
[    2.079571] tvp5158 1-0058: Unable to of_probe
[    2.084505] omap_hsmmc 4809c000.mmc: Got CD GPIO
[    2.124890] asoc-simple-card sound0: tlv320aic3x-hifi <-> 48468000.mcasp mapping ok
[    2.144436] asoc-simple-card jamr3_sound: tlv320aic3x-hifi <-> 48474000.mcasp mapping ok
[    2.176304] [drm] Supports vblank timestamp caching Rev 2 (21.10.2013).
[    2.182945] [drm] No driver support for vblank timestamp query.
[    2.188930] omapdrm omapdrm.0: No connectors reported connected with modes
[    2.195864] [drm] Cannot find any crtc or sizes - going 1024x768
[    2.204625] [drm] Enabling DMM ywrap scrolling
[    2.213421] Console: switching to colour frame buffer device 128x48
[    2.223477] omapdrm omapdrm.0: fb0: omapdrm frame buffer device
[    2.264403] [drm] Initialized omapdrm 1.0.0 20110917 on minor 0
[    2.270512] tvp5158 1-0058: Unable to of_probe
[    2.275822] input: gpio_keys as /devices/platform/gpio_keys/input/input0
[    2.282714] hctosys: unable to open rtc device (rtc0)
[    2.283800] tvp5158 1-0058: Unable to of_probe
[    2.300519] evm_1v8: disabling
[    2.303590] aic_dvdd: disabling
[    2.306753] vmmcwl_fixed: disabling
[    2.310424] ldousb: disabling
[    2.313819] ALSA device list:
[    2.316796]   #0: DRA7xx-EVM
[    2.319685]   #1: HDMI 58040000.encoder
[    2.323531]   #2: DRA7xx-JAMR3
[    2.327287] Waiting for root device PARTUUID=dccee334-02...
[    2.432254] mmc2: host does not support reading read-only switch, assuming write-enable
[    2.445337] mmc2: new ultra high speed DDR50 SDHC card at address aaaa
[    2.462316] mmcblk1: mmc2:aaaa ABLCD 29.7 GiB  
[    2.470880]  mmcblk1: p1 p2
[    2.474341] tvp5158 1-0058: Unable to of_probe
[    2.763325] EXT4-fs (mmcblk1p2): recovery complete
[    2.771416] EXT4-fs (mmcblk1p2): mounted filesystem with ordered data mode. Opts: (null)
[    2.779595] VFS: Mounted root (ext4 filesystem) on device 179:50.
[    2.792026] devtmpfs: mounted
[    2.795236] Freeing unused kernel memory: 340K
[    2.799697] This architecture does not have kernel memory protection.
[    2.937595] systemd[1]: System time before build time, advancing clock.
[    2.969594] random: systemd: uninitialized urandom read (16 bytes read, 23 bits of entropy available)
[    2.984133] random: systemd: uninitialized urandom read (16 bytes read, 24 bits of entropy available)
[    2.999081] systemd[1]: systemd 229 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPTSETUP -GCRYPT +GNUTLS +ACL +XZ -LZ4 -SECCOMP +BLKID -ELFUTILS +KMOD -IDN)
[    3.017632] systemd[1]: Detected architecture arm.
 
Welcome to [1mArago 2016.12[0m!
 
[    3.046678] systemd[1]: Set hostname to <dra7xx-evm>.
[    3.104863] random: systemd-gpt-aut: uninitialized urandom read (16 bytes read, 25 bits of entropy available)
[    3.115234] random: systemd-gpt-aut: uninitialized urandom read (16 bytes read, 25 bits of entropy available)
[    3.128920] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 25 bits of entropy available)
[    3.151593] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 26 bits of entropy available)
[    3.165983] random: systemd-sysv-ge: uninitialized urandom read (16 bytes read, 27 bits of entropy available)
[    3.233881] random: systemd: uninitialized urandom read (16 bytes read, 30 bits of entropy available)
[    3.243353] random: systemd: uninitialized urandom read (16 bytes read, 30 bits of entropy available)
[    3.254062] random: systemd: uninitialized urandom read (16 bytes read, 30 bits of entropy available)
[    3.664925] systemd[1]: sysinit.target: Found ordering cycle on sysinit.target/start
[    3.672712] systemd[1]: sysinit.target: Found dependency on alignment.service/start
[    3.680430] systemd[1]: sysinit.target: Found dependency on basic.target/start
[    3.687727] systemd[1]: sysinit.target: Found dependency on sockets.target/start
[    3.695174] systemd[1]: sysinit.target: Found dependency on dropbear.socket/stop
[    3.702606] systemd[1]: sysinit.target: Found dependency on sysinit.target/start
[    3.710080] systemd[1]: sysinit.target: Breaking ordering cycle by deleting job alignment.service/start
[    3.719538] systemd[1]: alignment.service: Job alignment.service/start deleted to break ordering cycle starting with sysinit.target/start
[[0;1;31m SKIP [0m] Ordering cycle found, skipping alignment.service
[    3.756169] systemd[1]: Reached target Swap.
[[0;32m  OK  [0m] Reached target Swap.
[    3.794553] systemd[1]: Created slice System Slice.
[[0;32m  OK  [0m] Created slice System Slice.
[    3.824459] systemd[1]: Created slice system-serial\x2dgetty.slice.
[[0;32m  OK  [0m] Created slice system-serial\x2dgetty.slice.
[    3.853890] systemd[1]: Reached target Remote File Systems.
[[0;32m  OK  [0m] Reached target Remote File Systems.
[    3.873945] systemd[1]: Listening on Syslog Socket.
[[0;32m  OK  [0m] Listening on Syslog Socket.
[    3.894029] systemd[1]: Listening on Network Service Netlink Socket.
[[0;32m  OK  [0m] Listening on Network Service Netlink Socket.
[    3.913928] systemd[1]: Listening on Journal Socket.
[[0;32m  OK  [0m] Listening on Journal Socket.
[    3.964055] systemd[1]: Starting Setup Virtual Console...
         Starting Setup Virtual Console...
[    3.984300] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe.
[[0;32m  OK  [0m] Listening on /dev/initctl Compatibility Named Pipe.
[    4.014063] systemd[1]: Started Dispatch Password Requests to Console Directory Watch.
[[0;32m  OK  [0m] Started Dispatch Password Requests to Console Directory Watch.
[    4.073894] systemd[1]: Mounting Debug File System...
         Mounting Debug File System...
[    4.094027] systemd[1]: Listening on udev Control Socket.
[[0;32m  OK  [0m] Listening on udev Control Socket.
[    4.115987] systemd[1]: Starting Remount Root and Kernel File Systems...
         Starting Remount Root and Kernel File Systems...
[    4.137038] EXT4-fs (mmcblk1p2): re-mounted. Opts: (null)
[    4.146376] systemd[1]: Mounting POSIX Message Queue File System...
         Mounting POSIX Message Queue File System...
[    4.174051] systemd[1]: Started Forward Password Requests to Wall Directory Watch.
[[0;32m  OK  [0m] Started Forward Password Requests to Wall Directory Watch.
[    4.204457] systemd[1]: Created slice User and Session Slice.
[[0;32m  OK  [0m] Created slice User and Session Slice.
[    4.233821] systemd[1]: Reached target Slices.
[[0;32m  OK  [0m] Reached target Slices.
[    4.253918] systemd[1]: Listening on Journal Socket (/dev/log).
[[0;32m  OK  [0m] Listening on Journal Socket (/dev/log).
[    4.314027] systemd[1]: Starting Journal Service...
         Starting Journal Service...
[    4.340888] systemd[1]: Starting Load Kernel Modules...
         Starting Load Kernel Modules...
[    4.361797] CMEMK module: reference Linux version 4.4.84
[    4.370221] systemd[1]: Mounting Temporary Directory...
[    4.375775] no physical memory specified
[    4.379722] cmemk initialized
         Mounting Temporary Directory...
[    4.401106] cryptodev: driver 1.8 loaded.
[    4.405521] systemd[1]: Reached target Paths.
[[0;32m  OK  [0m] Reached target Paths.
[    4.416257] systemd[1]: Created slice system-getty.slice.
[[0;32m  OK  [0m] Created slice system-getty.slice.
[    4.474063] systemd[1]: Starting Create list of required static device nodes for the current kernel...
         Starting Create list of required st... nodes for the current kernel...
[    4.503937] systemd[1]: Listening on udev Kernel Socket.
[[0;32m  OK  [0m] Listening on udev Kernel Socket.
[    4.568224] systemd[1]: Mounted Debug File System.
[[0;32m  OK  [0m] Mounted Debug File System.
[    4.593955] systemd[1]: Mounted POSIX Message Queue File System.
[[0;32m  OK  [0m] Mounted POSIX Message Queue File System.
[    4.613892] systemd[1]: Mounted Temporary Directory.
[[0;32m  OK  [0m] Mounted Temporary Directory.
[    4.634081] systemd[1]: Started Journal Service.
[[0;32m  OK  [0m] Started Journal Service.
[[0;32m  OK  [0m] Started Setup Virtual Console.
[[0;32m  OK  [0m] Started Remount Root and Kernel File Systems.
[[0;32m  OK  [0m] Started Load Kernel Modules.
[[0;32m  OK  [0m] Started Create list of required sta...ce nodes for the current kernel.
         Starting Create Static Device Nodes in /dev...
         Starting Apply Kernel Variables...
         Starting udev Coldplug all Devices...
         Starting Flush Journal to Persistent Storage...
[[0;32m  OK  [0m] Started Create Static Device Nodes in /dev.
[[0;32m  OK  [0m] Started Apply Kernel Variables.
[    5.280975] systemd-journald[144]: Received request to flush runtime journal from PID 1
[[0;32m  OK  [0m] Started Flush Journal to Persistent Storage.
         Starting udev Kernel Device Manager...
[[0;32m  OK  [0m] Reached target Local File Systems (Pre).
         Mounting /media/ram...
         Mounting /var/volatile...
[[0;32m  OK  [0m] Mounted /var/volatile.
[[0;32m  OK  [0m] Mounted /media/ram.
[[0;32m  OK  [0m] Started udev Kernel Device Manager.
[    5.710860] omap-rproc 58820000.ipu: assigned reserved memory node ipu1_cma@9d000000
[[0;32m  OK  [0m] Reached target Local File Systems.
[    5.734988]  remoteproc0: 58820000.ipu is available
[    5.769856]  remoteproc0: Note: remoteproc is still under development and considered experimental.
         Starting Create Volatile Files and Directories...
[    5.787086]  remoteproc0: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
[    5.809100] tvp5158 1-0058: Unable to of_probe
[    5.809158] omap-rproc 55020000.ipu: assigned reserved memory node ipu2_cma@95800000
[    5.809206]  remoteproc1: 55020000.ipu is available
[    5.809209]  remoteproc1: Note: remoteproc is still under development and considered experimental.
[    5.809211]  remoteproc1: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
[    5.810000] omap-rproc 40800000.dsp: assigned reserved memory node dsp1_cma@99000000
[    5.810037]  remoteproc2: 40800000.dsp is available
[    5.810039]  remoteproc2: Note: remoteproc is still under development and considered experimental.
[    5.810041]  remoteproc2: THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
[    5.810391] omap-rproc 41000000.dsp: assigned reserved memory node dsp2_cma@9f000000
[    5.810430]  remoteproc3: 41000000.dsp is available
[    5.810433]  remoteproc3: Note: remoteproc is still under development and considered experimental.
[    5.810435]  remoteproc3 THE BINARY FORMAT IS NOT YET FINALIZED, and backward compatibility isn't yet guaranteed.
[    5.821477]  remoteproc0: Direct firmware load for dra7-ipu1-fw.xem4 failed with error -2
[    5.821486]  remoteproc0: failed to load dra7-ipu1-fw.xem4
         Starting Load/Save Random Seed...
[    5.928671] tvp5158 1-0058: Unable to of_probe
[[0;32m  OK  [0m] Started udev Coldplug all Devices.
[[0;32m  OK  [0m] Started Load/Save Random Seed.
[[0;32m  OK  [0m] Started Create Volatile Files and Directories.
[[0;32m  OK  [0m] Found device /dev/ttyS0.
[    6.161629] omap_rng 48090000.rng: OMAP Random Number Generator ver. 20
[    6.173763] tvp5158 1-0058: Unable to of_probe
[    6.220382] omap-des 480a5000.des: OMAP DES hw accel rev: 2.2
[    6.234596]  remoteproc1: registered virtio0 (type 7)
[    6.292607] tvp5158 1-0058: Unable to of_probe
[    6.298683] omap_rtc 48838000.rtc: rtc core: registered 48838000.rtc as rtc0
[    6.307756] tvp5158 1-0058: Unable to of_probe
         Starting Update UTMP about System Boot/Shutdown...
         Starting Network Time Synchronization...
[    6.422308]  remoteproc2: registered virtio1 (type 7)
[    6.431426]  remoteproc3: registered virtio2 (type 7)
[    6.448248] SCSI subsystem initialized
[[0;32m  OK  [0m] Started Network Time Synchronization.
[    6.531713] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec
[    6.554780] tvp5158 1-0058: Unable to of_probe
[    6.560214] ahci 4a140000.sata: SSS flag set, parallel bus scan disabled
[    6.569127] CAN device driver interface
[    6.596072] ahci 4a140000.sata: Enable 32-bit DMA instead of 64-bit.
[[0;32m  OK  [0m] Reached target System Time Synchronized.
[    6.624014] ahci 4a140000.sata: AHCI 0001.0300 32 slots 1 ports 3 Gbps 0x1 impl platform mode
[    6.632608] ahci 4a140000.sata: flags: 64bit ncq sntf stag pm led clo only pmp pio slum part ccc apst  
         Starting Synchronize System and HW clocks...
[[0;32m  OK  [0m] Started Update UTMP about System Boot/Shutdown.
[[0;32m  OK  [0m] Started Synchronize System and HW clocks.
[    6.734530] scsi host0: ahci
[    6.745025] ata1: SATA max UDMA/133 mmio [mem 0x4a140000-0x4a1410ff] port 0x100 irq 345
[    6.753507] omap-sham 4b101000.sham: hw accel on OMAP rev 4.3
[    6.760762] tvp5158 1-0058: Unable to of_probe
[[0;32m  OK  [0m] Reached target System Initialization.
[[0;32m  OK  [0m] Started Daily Cleanup of Temporary Directories.[    6.871931] omap-aes 4b500000.aes: OMAP AES hw accel rev: 3.3
 
[    6.872602] tvp5158 1-0058: Unable to of_probe
[[0;32m  OK  [0m] Reached target Timers.
[[0;32m  OK  [0m] Listening on D-Bus System Message Bus Socket.
[    6.933249] omap-aes 4b700000.aes: OMAP AES hw accel rev: 3.3
[    6.933325] tvp5158 1-0058: Unable to of_probe
[[0;32m  OK  [0m] Listening on RPCbind Server Activation Socket.
[    6.966141] tvp5158 1-0058: Unable to of_probe
[    6.972168] c_can_platform 4ae3c000.can: c_can_platform device registered (regs=fce3c000, irq=365)
[[0;32m  OK  [0m] Listening on Avahi mDNS/DNS-SD Stack Activation Socket.
[    6.995148] tvp5158 1-0058: Unable to of_probe
[[0;32m  OK  [0m] Listening on dropbear.socket.
[    7.045752] FAT-fs (mmcblk1p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck.
[    7.064776] EXT4-fs (mmcblk0p10): recovery complete
[    7.072279] EXT4-fs (mmcblk0p10): mounted filesystem with ordered data mode. Opts: (null)
[[0;32m  OK  [0m] Reached target Sockets.
[[0;32m  OK  [0m] Reached target Basic System.
[    7.114137] ata1: SATA link down (SStatus 0 SControl 300)
         Starting Permit User Sessions...
[    7.179702] EXT4-fs (mmcblk0p11): recovery complete
[    7.186888] EXT4-fs (mmcblk0p11): mounted filesystem with ordered data mode. Opts: (null)
[[0;32m  OK  [0m] Started System Logging Service.
         Starting Avahi mDNS/DNS-SD Stack...
[[0;32m  OK  [0m] Started strongSwan IPsec IKEv1/IKEv2 daemon using ipsec.conf.
[[0;32m  OK  [0m] Started D-Bus System Message Bus.
[    7.504382] [drm] Initialized pvr 1.14.3699939 20110701 on minor 1
[    7.527675] tvp5158 1-0058: Unable to of_probe
[    7.533160] EXT4-fs (mmcblk0p6): recovery complete
[    7.538890] EXT4-fs (mmcblk0p6): mounted filesystem with ordered data mode. Opts: (null)
[    7.549306] NET: Registered protocol family 15
[[0;32m  OK  [0m] Started Avahi mDNS/DNS-SD Stack.
[    7.589065] tvp5158 1-0058: Unable to of_probe
[    7.600079] tvp5158 1-0058: Unable to of_probe
         Starting Network Service...
         Starting Telephony service...
         Starting Save/Restore Sound Card State...
[    7.739365] net eth1: initializing cpsw version 1.15 (0)
[[0;32m  OK  [0m] Started Kernel Logging Service.
[    7.770263] net eth0: initialized cpsw ale version 1.4
[    7.790942] random: nonblocking pool is initialized
         Starting Login Service...
[    7.805846] net eth0: ALE Table size 1024
         Starting TI MultiCore Tools Daemon...
[    7.843393] tvp5158 1-0058: Unable to of_probe
[    7.865596] Bluetooth: Core ver 2.21
[    7.867698] neteth1: phy found : id is : 0x20005c7a
         Starting uim-sysfs.service...
[    7.890898] Initializing XFRM netlink socket
         Starting Print notice about GPLv3 packages...
[    7.933877] NET: Registered protocol family 31
[    7.950029] IPv6: ADDRCONF(NETDEV_UP): eth1: link is not ready
[    7.981106] Bluetooth: HCI device and connection manager initialized
[[0;32m  OK  [0m] Started Network Service.
[    8.019567] net eth0: initializing cpsw version 1.15 (0)
[    8.046421] Bluetooth: HCI socket layer initialized
[[0;32m  OK  [0m] Started Permit User Sessions.
[[0;32m  OK  [0m] Started Save/Restore Sound Card State.
[[0;1;31mFAILED[0m] Failed to start TI MultiCore Tools Daemon.
See 'systemctl status ti-mct-daemon.service' for details.[    8.089689] Bluetooth: L2CAP socket layer initialized
 
[    8.107054] tvp5158 1-0058: Unable to of_probe
[    8.117707] net eth0: phy found : id is : 0x20005c7a
[    8.183027] Bluetooth: SCO socket layer initialized
[    8.198980] IPv6: ADDRCONF(NETDEV_UP): eth0: link is not ready
[    8.826247]  remoteproc1: powering up 55020000.ipu
[    8.884261]  remoteproc1: Booting fw image dra7-ipu2-fw.xem4, size 3743112
[    8.945390] omap-iommu 55082000.mmu: 55082000.mmu: version 2.1
[    9.146778]  remoteproc1: remote processor 55020000.ipu is now up
[    9.164524] virtio_rpmsg_bus virtio0: rpmsg host is online
[    9.170411] virtio_rpmsg_bus virtio0: creating channel rpmsg-rpc addr 0x65
[    9.179080] virtio_rpmsg_bus virtio0: creating channel rpmsg-rpc addr 0x66
[    9.213989] tvp5158 1-0058: Unable to of_probe
[    9.242245]  remoteproc2: powering up 40800000.dsp
[    9.263538]  remoteproc2: Booting fw image dra7-dsp1-fw.xe66, size 5635840
[    9.292841] omap_hwmod: mmu0_dsp1: _wait_target_disable failed
[    9.298738] omap-iommu 40d01000.mmu: 40d01000.mmu: version 3.0
[    9.304688] omap-iommu 40d02000.mmu: 40d02000.mmu: version 3.0
[    9.362928]  remoteproc2: remote processor 40800000.dsp is now up
[    9.382802] tvp5158 1-0058: Unable to of_probe
[    9.388793] virtio_rpmsg_bus virtio1: rpmsg host is online
[    9.394378] virtio_rpmsg_bus virtio1: creating channel rpmsg-client-sample addr 0x32
[    9.409433] tvp5158 1-0058: Unable to of_probe
[    9.412055] virtio_rpmsg_bus virtio1: creating channel rpmsg-client-sample addr 0x33
[    9.412296] virtio_rpmsg_bus virtio1: creating channel rpmsg-omx addr 0x3c
[    9.412522] virtio_rpmsg_bus virtio1: creating channel rpmsg-rpc addr 0x65
[    9.442943]  remoteproc3: powering up 41000000.dsp
[    9.471240]  remoteproc3: Booting fw image dra7-dsp2-fw.xe66, size 5635844
[    9.509205] omap_hwmod: mmu0_dsp2: _wait_target_disable failed
[    9.515101] omap-iommu 41501000.mmu: 41501000.mmu: version 3.0
[    9.521037] omap-iommu 41502000.mmu: 41502000.mmu: version 3.0
[    9.569624]  remoteproc3: remote processor 41000000.dsp is now up
[    9.604592] virtio_rpmsg_bus virtio2: rpmsg host is online
[    9.610144] virtio_rpmsg_bus virtio2: creating channel rpmsg-client-sample addr 0x32
[    9.620048] virtio_rpmsg_bus virtio2: creating channel rpmsg-client-sample addr 0x33
[    9.620120] tvp5158 1-0058: Unable to of_probe
[    9.646524] rpmsg_rpc rpmsg0: probing service dce-callback with src 1024 dst 101
[    9.666595] virtio_rpmsg_bus virtio2: creating channel rpmsg-omx addr 0x3c
[    9.680833] tvp5158 1-0058: Unable to of_probe
[    9.686165] rpmsg_rpc rpmsg1: probing service rpmsg-dce with src 1025 dst 102
[    9.696246] virtio_rpmsg_bus virtio2: creating channel rpmsg-rpc addr 0x65
[    9.717650] rpmsg_rpc rpmsg9: probing service rpc_example_3 with src 1024 dst 101
[    9.724110] tvp5158 1-0058: Unable to of_probe
[    9.724186] rpmsg_rpc rpmsg5: probing service rpc_example_4 with src 1024 dst 101
[    9.724443] tvp5158 1-0058: Unable to of_probe
[    9.775621] rpmsg_rpc rpmsg0: published functions = 4
[    9.781118] rpmsg_rpc rpmsg1: published functions = 9
[    9.787774] rpmsg_rpc rpmsg5: published functions = 8
[    9.788418] tvp5158 1-0058: Unable to of_probe
[    9.834583] rpmsg_rpc rpmsg9: published functions = 8
[    9.978466] tvp5158 1-0058: Unable to of_probe
[   10.002617] usbcore: registered new interface driver usbfs
[   10.015823] usbcore: registered new interface driver hub
[   10.037036] usbcore: registered new device driver usb
[   10.087581] dwc3 48890000.usb: otg: primary host xhci-hcd.1.auto registered
[   10.103103] dwc3 48890000.usb: otg: shared host xhci-hcd.1.auto registered
[   10.133771] dwc3 48890000.usb: otg: can't start till gadget registers
[   10.157974] tvp5158 1-0058: Unable to of_probe
[   10.162617] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
[   10.185955] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 1
[   10.208651] xhci-hcd xhci-hcd.2.auto: hcc params 0x0220f04c hci version 0x100 quirks 0x00210010
[   10.237470] xhci-hcd xhci-hcd.2.auto: irq 511, io mem 0x488d0000
[   10.270927] hub 1-0:1.0: USB hub found
[   10.286724] hub 1-0:1.0: 1 port detected
[   10.297584] tvp5158 1-0058: Unable to of_probe
[   10.302253] xhci-hcd xhci-hcd.2.auto: xHCI Host Controller
***************************************************************
 **************************************************************
NOTICE: This file system contains the following GPLv3 packages:
[   10.309922] tvp5158 1-0058: Unable to of_probe
a    utoconf
     binutils-dev
     binutils
     bison-dev
     bison
     cpp-symlnks[   10.347493] xhci-hcd xhci-hcd.2.auto: new USB bus registered, assigned bus number 2
 
    cpp
    dosfstools
    g++-symlinks
    g++
    gawk-dev
    gawk
    gcc-symlinks
    gcc
    gdb
    gdbc6x
    gdbserver
    gstreamer1.0-libav
    libcairo-perf-utils
    libgmp10
    libidn11
    libmpc3
    libmpfr4
    m4-dev
    m4
    make
    nettle
    parted
    swig-dev
    swig
 
[   10.371017] usb usb2: We don't know the algorithms for LPM for this host, disabling LPM.
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
***************************************************************
***************************************************************
   10.407854] hub 2-0:1.0: USB hub found
[   10.449126] hub 2-0:1.0: 1 port detected
[[0;32m  OK  [0m] Started Telephony service.[   10.456235] tvp5158 1-0058: Unable to of_probe
 
[   10.473973] tvp5158 1-0058: Unable to of_probe
[[0;32m  OK  [0m] Started Print notice about GPLv3 packages.
[[0;32m  OK  [0m] Started Login Service.
[[0;32m  OK  [0m] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch.
[[0;32m  OK  [0m] Reached target Sound Card.
[[0;32m  OK  [0m] Started Getty on tty1.
[[0;32m  OK  [0m] Started Serial Getty on ttyS0.
[[0;32m  OK  [0m] Reached target Network.
         Starting Network Name Resolution...
         Starting Lightning Fast Webserver With Light System Requirements...
[[0;32m  OK  [0m] Started Network Name Resolution.
[[0;32m  OK  [0m] Started uim-sysfs.service.
[[0;32m  OK  [0m] Started Lightning Fast Webserver With Light System Requirements.
         Starting rc.pvr.service...
[   11.010114] PVR_K: UM DDK-(3699939) and KM DDK-(3699939) match. [ OK ]
[[0;32m  OK  [0m] Started rc.pvr.service.
         Starting weston.service...
[[0;32m  OK  [0m] Started weston.service.
         Starting telnetd.service...
         Starting tiipclad-daemon.service...
[[0;32m  OK  [0m] Started telnetd.service.
[[0;32m  OK  [0m] Started tiipclad-daemon.service.
         Starting thttpd.service...
[[0;32m  OK  [0m] Started thttpd.service.
         Starting rng-tools.service...
[[0;32m  OK  [0m] Started rng-tools.service.
         Starting gdbserverproxy.service...
[[0;32m  OK  [0m] Started gdbserverproxy.service.
         Starting matrix-gui-2.0.service...
[[0;32m  OK  [0m] Started matrix-gui-2.0.service.
         Starting thermal-zone-init.service...
[[0;32m  OK  [0m] Started thermal-zone-init.service.
 
 _____                    _____           _         _    
|  _  |___ ___ ___ ___   |  _  |___ ___  |_|___ ___| |_  
|     |  _| .'| . | . |  |   __|  _| . | | | -_|  _|  _|
|__|__|_| |__,|_  |___|  |__|  |_| |___|_| |___|___|_|   
              |___|                    |___|             
 
Arago Project http://arago-project.org dra7xx-evm ttyS0
 
Arago 2016.12 dra7xx-evm ttyS0
 
dra7xx-evm login: [   20.151461] omap_hwmod: mmu1_dsp1: _wait_target_disable failed
[   20.164439] omap_hwmod: mmu0_dsp1: _wait_target_disable failed
[   20.191522] omap_hwmod: mmu1_dsp2: _wait_target_disable failed
[   20.204519] omap_hwmod: mmu0_dsp2: _wait_target_disable failed

I tried cat /sys/kernel/debug/remoteproc/remoteproc0/trace0 to verify early boot, but no trace0 file has been created.

What am I missing to configure this feature? Waht example do I run to see the early boot feature ?

Regards,

Padmesh

Linux/AM5718: Qt Version not properly installed

$
0
0

Part Number:AM5718

Tool/software: Linux

Hi,

I am working on AM5718 Linux Qt, i installed Qt Creator 4.3.1 Based on Qt 5.9.0.

I followed this steps http://processors.wiki.ti.com/index.php/Sitara_Linux_Training:_Hands_on_with_QT  to configure Qt for AM5718, but i getting this following error

Project ERROR: Qmake spec does not set MAKEFILE_GENERATOR.

Could not find qmake spec 'default'.

Error while parsing file /opt/Qt5.9.0/Examples/Qt-5.9/multimedia/audioinput/audioinput.pro. Giving up.

Kindly help me out on this.

Regards,

Ravi

Linux/AM3358: Linux/AM33XX: TI OMAP Jacinto 5 support for wake up resource from DeepSleep[Suspend to RAM]

$
0
0

Part Number:AM3358

Tool/software: Linux

Hi TI Team,

We are able to put the system in standby and wake-up with UART and USB interrupt sources.

Commands for enabling the wake sources:

echo enabled > /sys/devices/platform/ocp/44e09000.serial/tty/ttyO0/power/wakeup

echo enabled > /sys/devices/platform/ocp/47400000.usb/47401300.usb-phy/power/wakeup

echo 1 > /sys/power/pm_debug_messages

echo standby > /sys/power/state

with the above commands system is going to suspend & resuming (when we insert pendrive or any key press keyborad)

Same steps followed to put the system in deepsleep with the command

echo mem > /sys/power/state

System is going to suspend but it is not resuming from the deep sleep ,though configured UART & USB as a wake up resource 

In TRM it is observed that wake up functionality is supported from deep sleep

But in one of the TI wiki it is mentioned wake up from deep sleep is not supported yet()

Could you please confirm whether the wake up from deep sleep is supported or not?

If it is supported what are the configuration/changes are required?

Note:- we used CM3 firmware version (am335x-pm-firmware.elf)0x192 & am335x-bone-scale-data.bin firmware.

Viewing all 17527 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>