Quantcast
Channel: Forums - Recent Threads
Viewing all 262198 articles
Browse latest View live

CC2650EM-4XS-RD: Unable to shift the Stack image location(ICALL_STACK0_ADDR ) in flash

$
0
0

Part Number:CC2650EM-4XS-RD

Hello All,

Currently my configuration uses ICALL_STACK0_ADDR as 0x9000.

My application image size has increased and would like to shift the stack image. If i change ICALL_STACK0_ADDR to anything else(say 0xA000). The application and stack images correctly gets loaded in the Flash at their respective configured addresses(stack = 0xA0000) however the Application and stack images doesn't interact.

I have made the linker config settings for the application and stack as below:

Environment :CC26504xs custom board, IAR Workbench version - 7.40.2.8570, TIMAC - 1.5.2, TIRTOS - 2.11.01.09.

Am i missing anything here. 

Please suggest.

Best regards

Naveen


CC2650MODA: Program stuck in RFCDoorbellSendTo on unexpected disconnect

$
0
0

Part Number:CC2650MODA

Hi,

We are developing a product based on the CC2650MODA (both for central and peripheral). While testing we found that sometimes the BLE Central application becomes unresponsive when the wireless connection gets very bad. The only way to get it back up is through a hard reset.

After a bit of investigation, it looks like the BLE stack itself gets stuck in a call to RFCDoorbellSendTo, which is is described as "Send command to doorbell and wait for ack.". So it looks like the Ack is never received. Since I have happily used the BLE stack without delving too much into the details of the implementation and the doorbell mechanism it uses to communicate with the RF core, I'm at a loss as to how to debug this further. What can I do wrong that makes the RF core crash?

If more information is required to analyze this issue, please let me know.

Thanks in advance,

Jeroen

DRV8871: H-Level period and the L-Level period of PWM

$
0
0

Part Number:DRV8871

HI,

Pulse input up to 200kHz is recommended for fPWM of DRV8871-Q1.
(1) has comments, but I can not understand the contents.

Please tell me the H-Level period and the L-Level period of PWM.

Q1.
If fPWM=200kHz and duty=50%, consider H-Level=2.5μs and L-Level=2.5μs.
16% think that H-Level=2.9us, L-Level=2.1us Is there a problem?
Also
Is 84% in H-Level=4.6us, L-Level=0.4us, is there no problem?

Q2.
"Typical devices require at least 400ns.".......
Although it is written in the comment.
Is 400ns the min period of L=level?

Q3.
Is 800ns min during H=level?

best regards
cafain(Please visit the site to view this file)

RTOS/MSP430F5529: SPI slave mode: the SPI_transfer() funtion issue

$
0
0

Part Number:MSP430F5529

Tool/software: TI-RTOS

hi 

my version:

ccsv7.4

tidriver_msp43x_2_20_00_08

bios_6_46_00_23

I'm still using the EXP_MSP430F5529LP development board to verify SPI communication, Recently , I'm stuck in the SPI_transfer() function. config spi slave mode under TI-RTOS.

target: SPI master sends a byte, spi slave  judge the byte and to continue receiving or sending data.

here is my config

    /* Create I2C for usage */
    SPI_Params_init(&spiB1_slave_Params);
    spiB1_slave_Params.transferMode          = SPI_MODE_BLOCKING;
    spiB1_slave_Params.mode                       = SPI_SLAVE;
    spiB1_slave_Params.dataSize                 = 8;

    spiB1_slave = SPI_open(Board_SPIB1_SLAVE, &spiB1_slave_Params);
    if (spiB1_slave == NULL) {
        System_abort("Error Initializing SPI B1\n");
    }else {
        System_printf("SPI B1 Initialized!\n");
    }
    System_flush();


issue    I use the following two pieces of code for data reception validation

	//code 1
	//disposable recept 3 bytes
        SPI_Transaction spiTransaction;        
		
	spiTransaction.txBuf = NULL;
	spiTransaction.rxBuf = rxBuf;
	spiTransaction.count = 3;

	if (SPI_transfer(spiB1_slave, &spiTransaction) == NULL) {
		System_printf("SPIB1_SendData SPI Bus fault\n");
		System_flush();
	}
	System_printf("%s\r\n",rxBuf);
	System_flush();
	
	
	
	//code 2
	//first recept 1 bytes
        SPI_Transaction spiTransaction;        
		
	spiTransaction.txBuf = NULL;
	spiTransaction.rxBuf = rxBuf;
	spiTransaction.count = 1;

	if (SPI_transfer(spiB1_slave, &spiTransaction) == NULL) {
		System_printf("SPIB1_SendData SPI Bus fault\n");
		System_flush();
	}
	
	//continue recept 2 bytes
	spiTransaction.txBuf = NULL;
	spiTransaction.rxBuf = rxBuf+1;
	spiTransaction.count = 2;

	if (SPI_transfer(spiB1_slave, &spiTransaction) == NULL) {
		System_printf("SPIB1_SendData SPI Bus fault\n");
		System_flush();
	}
	System_printf("%s\r\n",rxBuf);
	System_flush();	

result  

When I using the spi master send three bytes at a time, code 1 receive data is ok,  buf code 1  will block in the second SPI_transfer();

When I using the spi master send three bytes each byte is one second apart,  code 1 2 receive data both is ok.

Why is this problem?

best wishes

xc.mo

LMX2581: the types of input OSC

$
0
0

Part Number:LMX2581

Dear Specialists,

My customer is considering LMX2581 and has a question.

I would be grateful if you could advise.

---

Regarding OSCin of LMX 2851, which accepts signals of input level of maximum frequency 900 MHz and 1.7 Vpp.

What kind of device does it intend to supply?

I think the oscillator cannot output such a high level, so I'd like to know why.

---

I appreciate your great help in advance.

Best regards,

Shinichi

AM4376: McASP Slave mode connections

$
0
0

Part Number:AM4376

Hi,

In my design I have connected a DSP (master) to McASP0 of the AM4376 (slave). The clock and frame sync are provided to pins L23 (McASP0_ACLKR) resp. K23 (McASP0_FSR) by the DSP. I am, however, unable to get any data out of the processor. I read a post with the same issue where they had solved the problem by using Transmit pins (ACLX and FSX) instead of receive pins.

My question is if my connections are correct and in that case why the setup with CLKR and FSR does not work? Is there something else to be considered?

Attach a part of the schematics for your reference.

/BR

Namini

RTOS/CC2640: No restart after hard reset watchdog timer

$
0
0

Part Number:CC2640

Tool/software: TI-RTOS

Hi,

I've implemented a watchdog timer to perform a hard reset after it triggers. The watchdog callback is called and does perform a hard reset but the system is not booting afterwards. 

BLE SDK version 2.2.1

TI_RTOS version 2_20_01_08 (with the watchdog bug patched, interrupt typed changed to WATCH_DOG_TYPE_INT in WatchdogCC26xx.c) 

void multi_role_watchdogCallback(UArg handle)
{
    Watchdog_clear(_watchdogHandle);
    // Perform the equivalent of a PIN Reset (hard reset).
    // The cc26xx system has not been design to handle soft reset.
    // Making a soft reset can make the system unstable.
    // All soft reset needs to be replace by Hard reset.
    
    HAL_SYSTEM_RESET();
}

Watchdog_init();
Watchdog_Params params;

Watchdog_Params_init(&params);
params.resetMode   = Watchdog_RESET_OFF;
params.callbackFxn = multi_role_watchdogCallback;
params.debugStallMode = Watchdog_DEBUG_STALL_ON;
_watchdogHandle = Watchdog_open(CC2650_WATCHDOG0, &params);
uint32_t watchdogTicks = Watchdog_convertMsToTicks(_watchdogHandle, 15000);
Watchdog_setReload(_watchdogHandle, watchdogTicks);

CCS/TMS320F28379D: Limits of memory

$
0
0

Part Number:TMS320F28379D

Tool/software: Code Composer Studio

When loading our program into the microcontoller, we are limited at 8kB of RAM beyond, the software informs us an error loading program due to memory.

error #10099-D: program will not fit into available memory.

 

We realized the test by putting an empty program and coding an array of 4096 integers either (4096 * 16bits = 65536 bits ie 8192 bytes or 8kB).

How can we change this threshold because we don't use whole memory.

In Which function do we must take action to change this threshold ?

Do we must take action of the memory map directly ? Is there a risk to modify memory adress in a file memory map ?

Best regards.


TIOL111: Power consumption @ TIOL111 in IO-Link mode

$
0
0

Part Number:TIOL111

Hi,

my name is Marion, I am currently looking into the TIOL111 to prepare for a meeting.

It is hard to find a standardized power consumption what a slave IO-Link device is allowed to take from the point to point 24 V level.

What if a customer feeds his device only through this voltage level?

Is our part appropriate then?

I found those calculations in the datasheet:

but I understand, that it is only for the given case. Why do you calculate 250mA, if the current limit is 200mA?

Kind regards, Marion

AM3352: Getting Kernel Panic when I reboot

$
0
0

Part Number:AM3352

When I flash am335x-shgc300.dtb, zImage, MLO, u-boot and ubi files and write to nand chip. Device boots correctly but when I reboot it again gives kernel Panic 

U-Boot 2013.10-g233e888 (Jun 21 2017 - 15:01:07)

I2C:   ready

DRAM:  256 MiB

NAND:  512 MiB

MMC:   OMAP SD/MMC: 0, OMAP SD/MMC: 1

*** Warning - bad CRC, using default environment

Net:   <ethaddr> not set. Validating first E-fuse MAC

Could not get PHY for cpsw: addr 0

cpsw, usb_ether

Standard mode

Hit any key to stop autoboot:  0

Card did not respond to voltage select!

mmc0(part 0) is current device

Scanning mmc 0...

Card did not respond to voltage select!

** Bad device mmc 0 **

Card did not respond to voltage select!

mmc0(part 0) is current device

Card did not respond to voltage select!

Card did not respond to voltage select!

mmc1(part 0) is current device

Card did not respond to voltage select!

Booting from nand ...

NAND read: device 0 offset 0x80000, size 0x40000

262144 bytes read: OK

NAND read: device 0 offset 0x200000, size 0x800000

8388608 bytes read: OK

Kernel image @ 0x80200000 [ 0x000000 - 0x3eb518 ]

## Flattened Device Tree blob at 80f80000

  Booting using the fdt blob at 0x80f80000

  Loading Device Tree to 8f320000, end 8f32bdd1 ... OK

Starting kernel ...

[    0.000000] Booting Linux on physical CPU 0x0

[    0.000000] Linux version 3.14.26-g2dde1c3 (yfan@scs-2-66) (gcc version 4.7.3 20130226 (prerelease) (crosstool-NG linaro-1.13.1-4.7-2013.03-20130313 - Linaro GCC 2013.03) ) #1 Wed Jun 21 14:41:24 CST 2017

[    0.000000] CPU: ARMv7 Processor [413fc082] revision 2 (ARMv7), cr=10c5387d

[    0.000000] CPU: PIPT / VIPT nonaliasing data cache, VIPT aliasing instruction cache

[    0.000000] Machine model: TI AM335x SHGC300

[    0.000000] cma: CMA: reserved 24 MiB at 8d800000

[    0.000000] Memory policy: Data cache writeback

[    0.000000] CPU: All CPU(s) started in SVC mode.

[    0.000000] AM335X ES2.1 (neon )

[    0.000000] Built 1 zonelists in Zone order, mobility grouping on.  Total pages: 64512

[    0.000000] Kernel command line: console=ttyO0,115200n8 root=ubi0:rootfs rw ubi.mtd=NAND.file-system,2048 rootfstype=ubifs rootwait=1

[    0.000000] PID hash table entries: 1024 (order: 0, 4096 bytes)

[    0.000000] Dentry cache hash table entries: 32768 (order: 5, 131072 bytes)

[    0.000000] Inode-cache hash table entries: 16384 (order: 4, 65536 bytes)

[    0.000000] Memory: 224692K/260096K available (5551K kernel code, 296K rwdata, 2004K rodata, 265K init, 230K bss, 35404K reserved, 0K highmem)

[    0.000000] Virtual kernel memory layout:

[    0.000000]     vector : 0xffff0000 - 0xffff1000   ( 4 kB)

[    0.000000]     fixmap : 0xfff00000 - 0xfffe0000   ( 896 kB)

[    0.000000]     vmalloc : 0xd0800000 - 0xff000000   ( 744 MB)

[    0.000000]     lowmem : 0xc0000000 - 0xd0000000   ( 256 MB)

[    0.000000]     pkmap : 0xbfe00000 - 0xc0000000   ( 2 MB)

[    0.000000]     modules : 0xbf000000 - 0xbfe00000   ( 14 MB)

[    0.000000]       .text : 0xc0008000 - 0xc0769054   (7557 kB)

[    0.000000]       .init : 0xc076a000 - 0xc07ac644   ( 266 kB)

[    0.000000]       .data : 0xc07ae000 - 0xc07f8160   ( 297 kB)

[    0.000000]        .bss : 0xc07f8160 - 0xc0831b80   ( 231 kB)

[    0.000000] NR_IRQS:16 nr_irqs:16 16

[    0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts

[    0.000000] Total of 128 interrupts on 1 active controller

[    0.000000] OMAP clockevent source: timer2 at 24000000 Hz

[    0.000017] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 178956969942ns

[    0.000042] OMAP clocksource: timer1 at 24000000 Hz

[    0.000357] Console: colour dummy device 80x30

[    0.000394] Calibrating delay loop... 597.60 BogoMIPS (lpj=2988032)

[    0.059200] pid_max: default: 32768 minimum: 301

[    0.059324] Security Framework initialized

[    0.059391] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes)

[    0.059404] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes)

[    0.068873] CPU: Testing write buffer coherency: ok

[    0.069384] Setting up static identity map for 0x80572020 - 0x80572078

[    0.070537] devtmpfs: initialized

[    0.072763] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3

[    0.081976] omap_hwmod: tptc0 using broken dt data from edma

[    0.082081] omap_hwmod: tptc1 using broken dt data from edma

[    0.082175] omap_hwmod: tptc2 using broken dt data from edma

[    0.086708] omap_hwmod: debugss: _wait_target_disable failed

[    0.143830] pinctrl core: initialized pinctrl subsystem

[    0.145091] regulator-dummy: no parameters

[    0.147832] NET: Registered protocol family 16

[    0.150400] DMA: preallocated 256 KiB pool for atomic coherent allocations

[    0.153602] cpuidle: using governor ladder

[    0.153623] cpuidle: using governor menu

[    0.162337] syscon 44e10000.control_module: regmap [mem 0x44e10000-0x44e107fb] registered

[    0.164208] platform 49000000.edma: alias fck already exists

[    0.164239] platform 49000000.edma: alias fck already exists

[    0.164258] platform 49000000.edma: alias fck already exists

[    0.165678] OMAP GPIO hardware version 0.1

[    0.180213] omap-gpmc 50000000.gpmc: could not find pctldev for node /pinmux@44e10800/nandflash_pins_default, deferring probe

[    0.180254] platform 50000000.gpmc: Driver omap-gpmc requests probe deferral

[    0.184301] No ATAGs?

[    0.184325] hw-breakpoint: debug architecture 0x4 unsupported.

[    0.213812] bio: create slab <bio-0> at 0

[    0.234055] edma-dma-engine edma-dma-engine.0: TI EDMA DMA engine driver

[    0.235463] wlan-en-regulator: 1800 mV

[    0.236007] vmmcsd_fixed: 3300 mV

[    0.239938] vgaarb: loaded

[    0.240602] i2c-core: driver [palmas] using legacy suspend method

[    0.240616] i2c-core: driver [palmas] using legacy resume method

[    0.241522] SCSI subsystem initialized

[    0.243901] omap_i2c 44e0b000.i2c: could not find pctldev for node /pinmux@44e10800/pinmux_i2c0_pins, deferring probe

[    0.243936] platform 44e0b000.i2c: Driver omap_i2c requests probe deferral

[    0.243971] omap_i2c 4802a000.i2c: could not find pctldev for node /pinmux@44e10800/pinmux_i2c1_pins, deferring probe

[    0.243990] platform 4802a000.i2c: Driver omap_i2c requests probe deferral

[    0.244463] pps_core: LinuxPPS API ver. 1 registered

[    0.244476] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it>

[    0.244644] PTP clock support registered

[    0.247101] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400

[    0.248168] Advanced Linux Sound Architecture Driver Initialized.

[    0.250215] Switched to clocksource timer1

[    0.274892] NET: Registered protocol family 2

[    0.275963] TCP established hash table entries: 2048 (order: 1, 8192 bytes)

[    0.276007] TCP bind hash table entries: 2048 (order: 1, 8192 bytes)

[    0.276044] TCP: Hash tables configured (established 2048 bind 2048)

[    0.276127] TCP: reno registered

[    0.276144] UDP hash table entries: 256 (order: 0, 4096 bytes)

[    0.276168] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes)

[    0.276404] NET: Registered protocol family 1

[    0.276834] RPC: Registered named UNIX socket transport module.

[    0.276850] RPC: Registered udp transport module.

[    0.276858] RPC: Registered tcp transport module.

[    0.276867] RPC: Registered tcp NFSv4.1 backchannel transport module.

[    0.277531] hw perfevents: enabled with ARMv7 Cortex-A8 PMU driver, 5 counters available

[    0.281194] futex hash table entries: 256 (order: -1, 3072 bytes)

[    0.494701] VFS: Disk quotas dquot_6.5.2

[    0.494782] Dquot-cache hash table entries: 1024 (order 0, 4096 bytes)

[    0.495422] NFS: Registering the id_resolver key type

[    0.495513] Key type id_resolver registered

[    0.495525] Key type id_legacy registered

[    0.495573] jffs2: version 2.2. (NAND) (SUMMARY)  © 2001-2006 Red Hat, Inc.

[    0.495785] msgmni has been set to 486

[    0.497655] NET: Registered protocol family 38

[    0.497706] io scheduler noop registered

[    0.497716] io scheduler deadline registered

[    0.497744] io scheduler cfq registered (default)

[    0.499822] pinctrl-single 44e10800.pinmux: 142 pins at pa f9e10800 size 568

[    0.508093] Serial: 8250/16550 driver, 4 ports, IRQ sharing enabled

[    0.512092] omap_uart 44e09000.serial: no wakeirq for uart0

[    0.512292] 44e09000.serial: ttyO0 at MMIO 0x44e09000 (irq = 88, base_baud = 3000000) is a OMAP UART0

[    1.180743] console [ttyO0] enabled

[    1.185282] omap_uart 48022000.serial: no wakeirq for uart0

[    1.191466] 48022000.serial: ttyO1 at MMIO 0x48022000 (irq = 89, base_baud = 3000000) is a OMAP UART1

[    1.201917] omap_uart 48024000.serial: no wakeirq for uart0

[    1.207999] 48024000.serial: ttyO2 at MMIO 0x48024000 (irq = 90, base_baud = 3000000) is a OMAP UART2

[    1.218461] omap_uart 481a6000.serial: no wakeirq for uart0

[    1.224587] 481a6000.serial: ttyO3 at MMIO 0x481a6000 (irq = 60, base_baud = 3000000) is a OMAP UART3

[    1.234979] omap_uart 481a8000.serial: no wakeirq for uart0

[    1.241093] 481a8000.serial: ttyO4 at MMIO 0x481a8000 (irq = 61, base_baud = 3000000) is a OMAP UART4

[    1.252460] omap_rng 48310000.rng: OMAP Random Number Generator ver. 20

[    1.259902] [drm] Initialized drm 1.1.0 20060810

[    1.278643] brd: module loaded

[    1.289021] loop: module loaded

[    1.292874] (hci_tty): inside hci_tty_init

[    1.297773] (hci_tty): allocated 249, 0

[    1.305202] mtdoops: mtd device (mtddev=name/number) must be supplied

[    1.318073] mousedev: PS/2 mouse device common for all mice

[    1.326431] i2c-core: driver [rtc-ds1307] using legacy suspend method

[    1.333274] i2c-core: driver [rtc-ds1307] using legacy resume method

[    1.341015] i2c /dev entries driver

[    1.344879] Driver for 1-wire Dallas network protocol.

[    1.353064] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec

[    1.521097] pinctrl-single 44e10800.pinmux: pin 44e10978.0 already requested by 48022000.serial; cannot claim for leds.4

[    1.532618] pinctrl-single 44e10800.pinmux: pin-94 (leds.4) status -22

[    1.539499] pinctrl-single 44e10800.pinmux: could not request pin 94 (44e10978.0) from group user_leds_default  on device pinctrl-single

[    1.552428] leds-gpio leds.4: Error applying setting, reverse things back

[    1.564091] omap_hsmmc 481d8000.mmc: card claims to support voltages below defined range

[    1.574095] ledtrig-cpu: registered to indicate activity on CPUs

[    1.580943] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2

[    1.588632] omap-sham 53100000.sham: hw accel on OMAP rev 4.3

[    1.596836] platform 44d00000.wkup_m3: Driver wkup_m3 requests probe deferral

[    1.608587] oprofile: using arm/armv7

[    1.612987] TCP: cubic registered

[    1.616496] Initializing XFRM netlink socket

[    1.621069] NET: Registered protocol family 17

[    1.625813] NET: Registered protocol family 15

[    1.630679] Key type dns_resolver registered

[    1.636668] cpu cpu0: of_pm_voltdm_notifier_register: Failed to get cpu0 regulator/voltdm: -517

[    1.645882] cpu cpu0: cpu0 clock notifier not ready, retry

[    1.651722] platform cpufreq-cpu0.0: Driver cpufreq-cpu0 requests probe deferral

[    1.660428] PM: could not locate rtc hwmod

[    1.664754] ThumbEE CPU extension supported.

[    1.669285] Registering SWP/SWPB emulation handler

[    1.674625] mmc1: queuing unknown CIS tuple 0x91 (3 bytes)

[    1.682520] vmmcsd_fixed: disabling

[    1.686210] regulator-dummy: disabling

[    1.691226] mmc1: new high speed SDIO card at address 0001

[    1.701261] omap-gpmc 50000000.gpmc: GPMC revision 6.0

[    1.706691] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000

[    1.714234] nand: device found, Manufacturer ID: 0x98, Chip ID: 0xdc

[    1.720984] nand: Toshiba NAND 512MiB 3,3V 8-bit

[    1.725847] nand: 512MiB, SLC, page size: 2048, OOB size: 128

[    1.731911] NAND_OMAP_PREFETCH_POLLED

[    1.735763] nand: using OMAP_ECC_BCH8_CODE_HW ECC scheme

[    1.741561] 10 ofpart partitions found on MTD device omap2-nand.0

[    1.747983] Creating 10 MTD partitions on "omap2-nand.0":

[    1.753699] 0x000000000000-0x000000020000 : "NAND.SPL"

[    1.761369] 0x000000020000-0x000000040000 : "NAND.SPL.backup1"

[    1.769417] 0x000000040000-0x000000060000 : "NAND.SPL.backup2"

[    1.777530] 0x000000060000-0x000000080000 : "NAND.SPL.backup3"

[    1.785664] 0x000000080000-0x0000000c0000 : "NAND.u-boot-spl-os"

[    1.794137] 0x0000000c0000-0x0000001c0000 : "NAND.u-boot"

[    1.802632] 0x0000001c0000-0x0000001e0000 : "NAND.u-boot-env"

[    1.810552] 0x0000001e0000-0x000000200000 : "NAND.u-boot-env.backup1"

[    1.819221] 0x000000200000-0x000000a00000 : "NAND.kernel"

[    1.833383] 0x000000a00000-0x000020000000 : "NAND.file-system"

[    2.260202] DCDC1: at 1500 mV

[    2.264773] vdd_mpu: 900 <--> 1225 mV at 1200 mV

[    2.270966] vdd_core: 900 <--> 1150 mV at 1100 mV

[    2.277176] LDO1: at 1800 mV

[    2.281510] LDO2: at 3300 mV

[    2.285798] LDO3: 1800 mV

[    2.289847] LDO4: at 3300 mV

[    2.294277] tps65217 0-0024: TPS65217 ID 0xe version 1.2

[    2.299917] omap_i2c 44e0b000.i2c: bus 0 rev0.11 at 400 kHz

[    2.309195] rtc-ds1307 1-006f: rtc core: registered mcp7941x as rtc0

[    2.316029] rtc-ds1307 1-006f: 64 bytes nvram

[    2.320669] omap_i2c 4802a000.i2c: bus 1 rev0.11 at 400 kHz

[    2.327048] platform 44d00000.wkup_m3: Driver wkup_m3 requests probe deferral

[    2.335091] cpu cpu0: of_pm_voltdm_notifier_register: Fail calculating voltage latency[950000<->1100000]:-22

[    2.346204] platform 44d00000.wkup_m3: Driver wkup_m3 requests probe deferral

[    2.354660] UBI: attaching mtd9 to ubi0

[    4.820951] UBI: scanning is finished

[    4.840397] UBI: attached mtd9 (name "NAND.file-system", size 502 MiB) to ubi0

[    4.848019] UBI: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes

[    4.855189] UBI: min./max. I/O unit sizes: 2048/2048, sub-page size 512

[    4.862167] UBI: VID header offset: 2048 (aligned 2048), data offset: 4096

[    4.869399] UBI: good PEBs: 4012, bad PEBs: 4, corrupted PEBs: 0

[    4.875733] UBI: user volume: 1, internal volumes: 1, max. volumes count: 128

[    4.883258] UBI: max/mean erase counter: 2/0, WL threshold: 4096, image sequence number: 0

[    4.891972] UBI: available PEBs: 215, total reserved PEBs: 3797, PEBs reserved for bad PEB handling: 76

[    4.901887] UBI: background thread "ubi_bgt0d" started, PID 779

[    4.970287] davinci_mdio 4a101000.mdio: davinci mdio revision 1.6

[    4.976726] davinci_mdio 4a101000.mdio: detected phy mask fffffffd

[    4.984122] libphy: 4a101000.mdio: probed

[    4.988362] davinci_mdio 4a101000.mdio: phy[1]: device 4a101000.mdio:01, driver Atheros 8031 ethernet

[    4.998539] platform 44d00000.wkup_m3: Driver wkup_m3 requests probe deferral

[    5.006552] platform 44d00000.wkup_m3: Driver wkup_m3 requests probe deferral

[    5.015084] cpsw 4a100000.ethernet: Detected MACID = 04:a3:16:b6:67:28

[    5.022487] platform 44d00000.wkup_m3: Driver wkup_m3 requests probe deferral

[    5.031532] cpsw 4a100000.ethernet: cpsw: Detected MACID = 04:a3:16:b6:67:2a

[    5.040490] platform 44d00000.wkup_m3: Driver wkup_m3 requests probe deferral

[    5.049986] input: gpio_buttons.5 as /devices/gpio_buttons.5/input/input0

[    5.058364] platform 44d00000.wkup_m3: Driver wkup_m3 requests probe deferral

[    5.066685] rtc-ds1307 1-006f: setting system clock to 2018-05-24 07:56:23 UTC (1527148583)

[    5.079124] ALSA device list:

[    5.082335]   No soundcards found.

[    5.088550] UBIFS: background thread "ubifs_bgt0_0" started, PID 795

[    5.111512] UBI warning: ubi_io_read: error -74 (ECC error) while reading 126976 bytes from PEB 3:4096, read only 126976 bytes, retry

[    5.141009] UBI warning: ubi_io_read: error -74 (ECC error) while reading 126976 bytes from PEB 3:4096, read only 126976 bytes, retry

[    5.170485] UBI warning: ubi_io_read: error -74 (ECC error) while reading 126976 bytes from PEB 3:4096, read only 126976 bytes, retry

[    5.199957] UBI error: ubi_io_read: error -74 (ECC error) while reading 126976 bytes from PEB 3:4096, read 126976 bytes

[    5.211345] CPU: 0 PID: 1 Comm: swapper Not tainted 3.14.26-g2dde1c3 #1

[    5.218309] Backtrace:

[    5.220947] [<c0011268>] (dump_backtrace) from [<c0011404>] (show_stack+0x18/0x1c)

[    5.228917]  r6:cd2ae000 r5:0001f000 r4:ffffffb6 r3:00000000

[    5.234929] [<c00113ec>] (show_stack) from [<c056a7b8>] (dump_stack+0x20/0x28)

[    5.242564] [<c056a798>] (dump_stack) from [<c03d4b58>] (ubi_io_read+0x128/0x2ec)

[    5.250464] [<c03d4a30>] (ubi_io_read) from [<c03d2924>] (ubi_eba_read_leb+0x134/0x3c8)

[    5.258884]  r10:00000003 r9:d093b000 r8:00000001 r7:00000000 r6:cd342800 r5:cd2ae000

[    5.267167]  r4:cd342800

[    5.269853] [<c03d27f0>] (ubi_eba_read_leb) from [<c03d1ee8>] (ubi_leb_read+0xb0/0x124)

[    5.278295]  r10:00000001 r9:cd2f97a0 r8:00000003 r7:d093b000 r6:00000e85 r5:00000000

[    5.286577]  r4:cd342800

[    5.289262] [<c03d1e38>] (ubi_leb_read) from [<c01f7f24>] (ubifs_leb_read+0x30/0x94)

[    5.297430]  r8:cd2f9000 r7:00000001 r6:00000000 r5:0001f000 r4:cd3f1f80

[    5.304534] [<c01f7ef4>] (ubifs_leb_read) from [<c01ff4b4>] (ubifs_start_scan+0x78/0xec)

[    5.313059]  r7:00000001 r6:d093b000 r5:00000000 r4:cd3f1f80

[    5.319043] [<c01ff43c>] (ubifs_start_scan) from [<c01ff7c0>] (ubifs_scan+0x30/0x350)

[    5.327288]  r8:00000001 r7:cd2f9000 r6:d093b000 r5:00000000 r4:0001f000

[    5.334390] [<c01ff790>] (ubifs_scan) from [<c01fe88c>] (ubifs_read_master+0x48/0x8e4)

[    5.342739]  r10:00000000 r9:cd2f97a0 r8:cd2f9000 r7:00000001 r6:cd370540 r5:cd2f9000

[    5.351026]  r4:cd2fe000

[    5.353701] [<c01fe844>] (ubifs_read_master) from [<c01f5f0c>] (ubifs_mount+0xcb4/0x15ac)

[    5.362322]  r10:00000000 r9:cd2f97a0 r8:cd2f9008 r7:cd39ca00 r6:cd370540 r5:cd2f9000

[    5.370611]  r4:cd2fe000

[    5.373301] [<c01f5258>] (ubifs_mount) from [<c00ce314>] (mount_fs+0x4c/0x180)

[    5.380918]  r10:00000000 r9:00008000 r8:c07cd09c r7:c07cd09c r6:cd3705c0 r5:00000000

[    5.389183]  r4:00008000

[    5.391879] [<c00ce2c8>] (mount_fs) from [<c00e50b4>] (vfs_kern_mount+0x54/0xd4)

[    5.399669]  r10:cd370600 r9:00008000 r8:00000000 r7:c07cd09c r6:00008000 r5:cd3705c0

[    5.407953]  r4:cd01f200

[    5.410646] [<c00e5060>] (vfs_kern_mount) from [<c00e746c>] (do_mount+0x1fc/0x964)

[    5.418619]  r8:00000020 r7:cd3705c0 r6:00000000 r5:c07c5b0c r4:c07cd09c r3:00000000

[    5.426819] [<c00e7270>] (do_mount) from [<c00e7f18>] (SyS_mount+0x8c/0xc0)

[    5.434161]  r10:c079e7c8 r9:c079e7a0 r8:cfd952e0 r7:00008000 r6:c079e7d4 r5:cd094000

[    5.442446]  r4:00000000

[    5.445136] [<c00e7e8c>] (SyS_mount) from [<c076afc4>] (mount_block_root+0x10c/0x240)

[    5.453394]  r7:c079e7d4 r6:cd397000 r5:00008000 r4:cd397000

[    5.459381] [<c076aeb8>] (mount_block_root) from [<c076b394>] (prepare_namespace+0x94/0x1cc)

[    5.468279]  r10:c079e7a8 r9:c079e7a0 r8:c076a4d0 r7:000000b0 r6:c07f8180 r5:c079e7d4

[    5.476560]  r4:c079e7c8

[    5.479238] [<c076b300>] (prepare_namespace) from [<c076ac74>] (kernel_init_freeable+0x174/0x1b8)

[    5.488580]  r5:00000007 r4:c07ac598

[    5.492389] [<c076ab00>] (kernel_init_freeable) from [<c0565834>] (kernel_init+0x14/0xf4)

[    5.501011]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0565820

[    5.509287]  r4:c07f8180

[    5.511980] [<c0565820>] (kernel_init) from [<c000e878>] (ret_from_fork+0x14/0x3c)

[    5.519949]  r4:00000000 r3:cd06c000

[    5.541507] UBI warning: ubi_io_read: error -74 (ECC error) while reading 126976 bytes from PEB 4:4096, read only 126976 bytes, retry

[    5.571005] UBI warning: ubi_io_read: error -74 (ECC error) while reading 126976 bytes from PEB 4:4096, read only 126976 bytes, retry

[    5.600486] UBI warning: ubi_io_read: error -74 (ECC error) while reading 126976 bytes from PEB 4:4096, read only 126976 bytes, retry

[    5.629942] UBI error: ubi_io_read: error -74 (ECC error) while reading 126976 bytes from PEB 4:4096, read 126976 bytes

[    5.641326] CPU: 0 PID: 1 Comm: swapper Not tainted 3.14.26-g2dde1c3 #1

[    5.648282] Backtrace:

[    5.650905] [<c0011268>] (dump_backtrace) from [<c0011404>] (show_stack+0x18/0x1c)

[    5.658868]  r6:cd2ae000 r5:0001f000 r4:ffffffb6 r3:00000000

[    5.664881] [<c00113ec>] (show_stack) from [<c056a7b8>] (dump_stack+0x20/0x28)

[    5.672504] [<c056a798>] (dump_stack) from [<c03d4b58>] (ubi_io_read+0x128/0x2ec)

[    5.680407] [<c03d4a30>] (ubi_io_read) from [<c03d2924>] (ubi_eba_read_leb+0x134/0x3c8)

[    5.688835]  r10:00000004 r9:d093b000 r8:00000002 r7:00000000 r6:cd342800 r5:cd2ae000

[    5.697118]  r4:cd342800

[    5.699798] [<c03d27f0>] (ubi_eba_read_leb) from [<c03d1ee8>] (ubi_leb_read+0xb0/0x124)

[    5.708242]  r10:00000002 r9:cd2f97a0 r8:00000003 r7:d093b000 r6:00000e85 r5:00000000

[    5.716526]  r4:cd342800

[    5.719207] [<c03d1e38>] (ubi_leb_read) from [<c01f7f24>] (ubifs_leb_read+0x30/0x94)

[    5.727367]  r8:cd2f9000 r7:00000002 r6:00000000 r5:0001f000 r4:cd3f1f80

[    5.734469] [<c01f7ef4>] (ubifs_leb_read) from [<c01ff4b4>] (ubifs_start_scan+0x78/0xec)

[    5.742998]  r7:00000002 r6:d093b000 r5:00000000 r4:cd3f1f80

[    5.748981] [<c01ff43c>] (ubifs_start_scan) from [<c01ff7c0>] (ubifs_scan+0x30/0x350)

[    5.757235]  r8:00000001 r7:cd2f9000 r6:d093b000 r5:00000000 r4:0001f000

[    5.764336] [<c01ff790>] (ubifs_scan) from [<c01fe8ec>] (ubifs_read_master+0xa8/0x8e4)

[    5.772677]  r10:00000000 r9:cd2f97a0 r8:cd2f9000 r7:00003000 r6:00000007 r5:cd3f1dc0

[    5.780958]  r4:cd3f1f80

[    5.783638] [<c01fe844>] (ubifs_read_master) from [<c01f5f0c>] (ubifs_mount+0xcb4/0x15ac)

[    5.792253]  r10:00000000 r9:cd2f97a0 r8:cd2f9008 r7:cd39ca00 r6:cd370540 r5:cd2f9000

[    5.800535]  r4:cd2fe000

[    5.803214] [<c01f5258>] (ubifs_mount) from [<c00ce314>] (mount_fs+0x4c/0x180)

[    5.810828]  r10:00000000 r9:00008000 r8:c07cd09c r7:c07cd09c r6:cd3705c0 r5:00000000

[    5.819097]  r4:00008000

[    5.821804] [<c00ce2c8>] (mount_fs) from [<c00e50b4>] (vfs_kern_mount+0x54/0xd4)

[    5.829591]  r10:cd370600 r9:00008000 r8:00000000 r7:c07cd09c r6:00008000 r5:cd3705c0

[    5.837869]  r4:cd01f200

[    5.840559] [<c00e5060>] (vfs_kern_mount) from [<c00e746c>] (do_mount+0x1fc/0x964)

[    5.848532]  r8:00000020 r7:cd3705c0 r6:00000000 r5:c07c5b0c r4:c07cd09c r3:00000000

[    5.856733] [<c00e7270>] (do_mount) from [<c00e7f18>] (SyS_mount+0x8c/0xc0)

[    5.864069]  r10:c079e7c8 r9:c079e7a0 r8:cfd952e0 r7:00008000 r6:c079e7d4 r5:cd094000

[    5.872352]  r4:00000000

[    5.875037] [<c00e7e8c>] (SyS_mount) from [<c076afc4>] (mount_block_root+0x10c/0x240)

[    5.883292]  r7:c079e7d4 r6:cd397000 r5:00008000 r4:cd397000

[    5.889285] [<c076aeb8>] (mount_block_root) from [<c076b394>] (prepare_namespace+0x94/0x1cc)

[    5.898178]  r10:c079e7a8 r9:c079e7a0 r8:c076a4d0 r7:000000b0 r6:c07f8180 r5:c079e7d4

[    5.906461]  r4:c079e7c8

[    5.909138] [<c076b300>] (prepare_namespace) from [<c076ac74>] (kernel_init_freeable+0x174/0x1b8)

[    5.918485]  r5:00000007 r4:c07ac598

[    5.922289] [<c076ab00>] (kernel_init_freeable) from [<c0565834>] (kernel_init+0x14/0xf4)

[    5.930910]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0565820

[    5.939176]  r4:c07f8180

[    5.941876] [<c0565820>] (kernel_init) from [<c000e878>] (ret_from_fork+0x14/0x3c)

[    5.949844]  r4:00000000 r3:cd06c000

[    5.954660] UBI warning: ubi_io_read: error -74 (ECC error) while reading 108 bytes from PEB 949:76072, read only 108 bytes, retry

[    5.967429] UBI warning: ubi_io_read: error -74 (ECC error) while reading 108 bytes from PEB 949:76072, read only 108 bytes, retry

[    5.980185] UBI warning: ubi_io_read: error -74 (ECC error) while reading 108 bytes from PEB 949:76072, read only 108 bytes, retry

[    5.992933] UBI error: ubi_io_read: error -74 (ECC error) while reading 108 bytes from PEB 949:76072, read 108 bytes

[    6.004034] CPU: 0 PID: 1 Comm: swapper Not tainted 3.14.26-g2dde1c3 #1

[    6.011008] Backtrace:

[    6.013612] [<c0011268>] (dump_backtrace) from [<c0011404>] (show_stack+0x18/0x1c)

[    6.021597]  r6:cd2ae000 r5:0000006c r4:ffffffb6 r3:00000000

[    6.027583] [<c00113ec>] (show_stack) from [<c056a7b8>] (dump_stack+0x20/0x28)

[    6.035211] [<c056a798>] (dump_stack) from [<c03d4b58>] (ubi_io_read+0x128/0x2ec)

[    6.043130] [<c03d4a30>] (ubi_io_read) from [<c03d2924>] (ubi_eba_read_leb+0x134/0x3c8)

[    6.051573]  r10:000003b5 r9:cd337680 r8:000003b3 r7:00000000 r6:cd342800 r5:cd2ae000

[    6.059847]  r4:cd342800

[    6.062544] [<c03d27f0>] (ubi_eba_read_leb) from [<c03d1ee8>] (ubi_leb_read+0xb0/0x124)

[    6.070984]  r10:cd337680 r9:00000009 r8:00000003 r7:cd337680 r6:00000e85 r5:00000000

[    6.079256]  r4:cd342800

[    6.081949] [<c03d1e38>] (ubi_leb_read) from [<c01f7f24>] (ubifs_leb_read+0x30/0x94)

[    6.090097]  r8:0000006c r7:000003b3 r6:00011928 r5:0000006c r4:cd39c600

[    6.097198] [<c01f7ef4>] (ubifs_leb_read) from [<c01f98f8>] (ubifs_read_node+0xa0/0x284)

[    6.105730]  r7:000003b3 r6:cd2f9000 r5:00011928 r4:cd39c600

[    6.111739] [<c01f9858>] (ubifs_read_node) from [<c02021f0>] (dbg_old_index_check_init+0x6c/0xac)

[    6.121093]  r10:0000006c r9:00000800 r8:000003b3 r7:00011928 r6:cd2f9000 r5:cd337680

[    6.129368]  r4:cd39c600

[    6.132062] [<c0202184>] (dbg_old_index_check_init) from [<c01fef2c>] (ubifs_read_master+0x6e8/0x8e4)

[    6.141775]  r10:00000000 r8:cd2f9000 r7:00000000 r6:00000000 r5:00000000 r4:150eb740

[    6.150056] [<c01fe844>] (ubifs_read_master) from [<c01f5f0c>] (ubifs_mount+0xcb4/0x15ac)

[    6.158678]  r10:00000000 r9:cd2f97a0 r8:cd2f9008 r7:cd39ca00 r6:cd370540 r5:cd2f9000

[    6.166956]  r4:cd2fe000

[    6.169637] [<c01f5258>] (ubifs_mount) from [<c00ce314>] (mount_fs+0x4c/0x180)

[    6.177245]  r10:00000000 r9:00008000 r8:c07cd09c r7:c07cd09c r6:cd3705c0 r5:00000000

[    6.185528]  r4:00008000

[    6.188203] [<c00ce2c8>] (mount_fs) from [<c00e50b4>] (vfs_kern_mount+0x54/0xd4)

[    6.196000]  r10:cd370600 r9:00008000 r8:00000000 r7:c07cd09c r6:00008000 r5:cd3705c0

[    6.204285]  r4:cd01f200

[    6.206964] [<c00e5060>] (vfs_kern_mount) from [<c00e746c>] (do_mount+0x1fc/0x964)

[    6.214945]  r8:00000020 r7:cd3705c0 r6:00000000 r5:c07c5b0c r4:c07cd09c r3:00000000

[    6.223150] [<c00e7270>] (do_mount) from [<c00e7f18>] (SyS_mount+0x8c/0xc0)

[    6.230489]  r10:c079e7c8 r9:c079e7a0 r8:cfd952e0 r7:00008000 r6:c079e7d4 r5:cd094000

[    6.238755]  r4:00000000

[    6.241452] [<c00e7e8c>] (SyS_mount) from [<c076afc4>] (mount_block_root+0x10c/0x240)

[    6.249693]  r7:c079e7d4 r6:cd397000 r5:00008000 r4:cd397000

[    6.255697] [<c076aeb8>] (mount_block_root) from [<c076b394>] (prepare_namespace+0x94/0x1cc)

[    6.264598]  r10:c079e7a8 r9:c079e7a0 r8:c076a4d0 r7:000000b0 r6:c07f8180 r5:c079e7d4

[    6.272881]  r4:c079e7c8

[    6.275560] [<c076b300>] (prepare_namespace) from [<c076ac74>] (kernel_init_freeable+0x174/0x1b8)

[    6.284911]  r5:00000007 r4:c07ac598

[    6.288695] [<c076ab00>] (kernel_init_freeable) from [<c0565834>] (kernel_init+0x14/0xf4)

[    6.297316]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0565820

[    6.305600]  r4:c07f8180

[    6.308277] [<c0565820>] (kernel_init) from [<c000e878>] (ret_from_fork+0x14/0x3c)

[    6.316261]  r4:00000000 r3:cd06c000

[    6.320809] UBI warning: ubi_io_read: error -74 (ECC error) while reading 11 bytes from PEB 10:16384, read only 11 bytes, retry

[    6.333313] UBI warning: ubi_io_read: error -74 (ECC error) while reading 11 bytes from PEB 10:16384, read only 11 bytes, retry

[    6.345776] UBI warning: ubi_io_read: error -74 (ECC error) while reading 11 bytes from PEB 10:16384, read only 11 bytes, retry

[    6.358241] UBI error: ubi_io_read: error -74 (ECC error) while reading 11 bytes from PEB 10:16384, read 11 bytes

[    6.369060] CPU: 0 PID: 1 Comm: swapper Not tainted 3.14.26-g2dde1c3 #1

[    6.376036] Backtrace:

[    6.378640] [<c0011268>] (dump_backtrace) from [<c0011404>] (show_stack+0x18/0x1c)

[    6.386621]  r6:cd2ae000 r5:0000000b r4:ffffffb6 r3:00000000

[    6.392623] [<c00113ec>] (show_stack) from [<c056a7b8>] (dump_stack+0x20/0x28)

[    6.400253] [<c056a798>] (dump_stack) from [<c03d4b58>] (ubi_io_read+0x128/0x2ec)

[    6.408137] [<c03d4a30>] (ubi_io_read) from [<c03d2924>] (ubi_eba_read_leb+0x134/0x3c8)

[    6.416569]  r10:0000000a r9:d097d000 r8:00000008 r7:00000000 r6:cd342800 r5:cd2ae000

[    6.424854]  r4:cd342800

[    6.427532] [<c03d27f0>] (ubi_eba_read_leb) from [<c03d1ee8>] (ubi_leb_read+0xb0/0x124)

[    6.435962]  r10:00000003 r9:d097d000 r8:00000003 r7:d097d000 r6:00000e85 r5:00000000

[    6.444239]  r4:cd342800

[    6.446917] [<c03d1e38>] (ubi_leb_read) from [<c01f7f24>] (ubifs_leb_read+0x30/0x94)

[    6.455083]  r8:c0810b7c r7:00000008 r6:00003000 r5:0000000b r4:cd2f9000

[    6.462191] [<c01f7ef4>] (ubifs_leb_read) from [<c020c360>] (ubifs_lpt_init+0x250/0x498)

[    6.470718]  r7:00000001 r6:00000001 r5:cd2f9024 r4:cd2f9000

[    6.476705] [<c020c110>] (ubifs_lpt_init) from [<c01f5fd8>] (ubifs_mount+0xd80/0x15ac)

[    6.485046]  r10:00000e7a r9:00000000 r8:0001e5a0 r7:cd39ca00 r6:cd370540 r5:cd2f9000

[    6.493324]  r4:000008f8

[    6.496005] [<c01f5258>] (ubifs_mount) from [<c00ce314>] (mount_fs+0x4c/0x180)

[    6.503615]  r10:00000000 r9:00008000 r8:c07cd09c r7:c07cd09c r6:cd3705c0 r5:00000000

[    6.511901]  r4:00008000

[    6.514578] [<c00ce2c8>] (mount_fs) from [<c00e50b4>] (vfs_kern_mount+0x54/0xd4)

[    6.522376]  r10:cd370600 r9:00008000 r8:00000000 r7:c07cd09c r6:00008000 r5:cd3705c0

[    6.530653]  r4:cd01f200

[    6.533332] [<c00e5060>] (vfs_kern_mount) from [<c00e746c>] (do_mount+0x1fc/0x964)

[    6.541316]  r8:00000020 r7:cd3705c0 r6:00000000 r5:c07c5b0c r4:c07cd09c r3:00000000

[    6.549501] [<c00e7270>] (do_mount) from [<c00e7f18>] (SyS_mount+0x8c/0xc0)

[    6.556837]  r10:c079e7c8 r9:c079e7a0 r8:cfd952e0 r7:00008000 r6:c079e7d4 r5:cd094000

[    6.565116]  r4:00000000

[    6.567796] [<c00e7e8c>] (SyS_mount) from [<c076afc4>] (mount_block_root+0x10c/0x240)

[    6.576054]  r7:c079e7d4 r6:cd397000 r5:00008000 r4:cd397000

[    6.582054] [<c076aeb8>] (mount_block_root) from [<c076b394>] (prepare_namespace+0x94/0x1cc)

[    6.590938]  r10:c079e7a8 r9:c079e7a0 r8:c076a4d0 r7:000000b0 r6:c07f8180 r5:c079e7d4

[    6.599209]  r4:c079e7c8

[    6.601898] [<c076b300>] (prepare_namespace) from [<c076ac74>] (kernel_init_freeable+0x174/0x1b8)

[    6.611247]  r5:00000007 r4:c07ac598

[    6.615033] [<c076ab00>] (kernel_init_freeable) from [<c0565834>] (kernel_init+0x14/0xf4)

[    6.623662]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0565820

[    6.631950]  r4:c07f8180

[    6.634631] [<c0565820>] (kernel_init) from [<c000e878>] (ret_from_fork+0x14/0x3c)

[    6.642605]  r4:00000000 r3:cd06c000

[    6.646383] UBIFS error (pid 1): ubifs_leb_read: reading 11 bytes from LEB 8:12288 failed, error -74

[    6.656012] CPU: 0 PID: 1 Comm: swapper Not tainted 3.14.26-g2dde1c3 #1

[    6.662980] Backtrace:

[    6.665569] [<c0011268>] (dump_backtrace) from [<c0011404>] (show_stack+0x18/0x1c)

[    6.673549]  r6:00003000 r5:0000000b r4:ffffffb6 r3:00000000

[    6.679539] [<c00113ec>] (show_stack) from [<c056a7b8>] (dump_stack+0x20/0x28)

[    6.687157] [<c056a798>] (dump_stack) from [<c01f7f7c>] (ubifs_leb_read+0x88/0x94)

[    6.695141] [<c01f7ef4>] (ubifs_leb_read) from [<c020c360>] (ubifs_lpt_init+0x250/0x498)

[    6.703666]  r7:00000001 r6:00000001 r5:cd2f9024 r4:cd2f9000

[    6.709650] [<c020c110>] (ubifs_lpt_init) from [<c01f5fd8>] (ubifs_mount+0xd80/0x15ac)

[    6.717990]  r10:00000e7a r9:00000000 r8:0001e5a0 r7:cd39ca00 r6:cd370540 r5:cd2f9000

[    6.726269]  r4:000008f8

[    6.728947] [<c01f5258>] (ubifs_mount) from [<c00ce314>] (mount_fs+0x4c/0x180)

[    6.736554]  r10:00000000 r9:00008000 r8:c07cd09c r7:c07cd09c r6:cd3705c0 r5:00000000

[    6.744844]  r4:00008000

[    6.747523] [<c00ce2c8>] (mount_fs) from [<c00e50b4>] (vfs_kern_mount+0x54/0xd4)

[    6.755318]  r10:cd370600 r9:00008000 r8:00000000 r7:c07cd09c r6:00008000 r5:cd3705c0

[    6.763607]  r4:cd01f200

[    6.766277] [<c00e5060>] (vfs_kern_mount) from [<c00e746c>] (do_mount+0x1fc/0x964)

[    6.774259]  r8:00000020 r7:cd3705c0 r6:00000000 r5:c07c5b0c r4:c07cd09c r3:00000000

[    6.782460] [<c00e7270>] (do_mount) from [<c00e7f18>] (SyS_mount+0x8c/0xc0)

[    6.789788]  r10:c079e7c8 r9:c079e7a0 r8:cfd952e0 r7:00008000 r6:c079e7d4 r5:cd094000

[    6.798074]  r4:00000000

[    6.800766] [<c00e7e8c>] (SyS_mount) from [<c076afc4>] (mount_block_root+0x10c/0x240)

[    6.809008]  r7:c079e7d4 r6:cd397000 r5:00008000 r4:cd397000

[    6.815010] [<c076aeb8>] (mount_block_root) from [<c076b394>] (prepare_namespace+0x94/0x1cc)

[    6.823894]  r10:c079e7a8 r9:c079e7a0 r8:c076a4d0 r7:000000b0 r6:c07f8180 r5:c079e7d4

[    6.832173]  r4:c079e7c8

[    6.834853] [<c076b300>] (prepare_namespace) from [<c076ac74>] (kernel_init_freeable+0x174/0x1b8)

[    6.844202]  r5:00000007 r4:c07ac598

[    6.847988] [<c076ab00>] (kernel_init_freeable) from [<c0565834>] (kernel_init+0x14/0xf4)

[    6.856608]  r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c0565820

[    6.864888]  r4:c07f8180

[    6.867566] [<c0565820>] (kernel_init) from [<c000e878>] (ret_from_fork+0x14/0x3c)

[    6.875549]  r4:00000000 r3:cd06c000

[    6.879384] UBIFS: background thread "ubifs_bgt0_0" stops

[    6.885838] VFS: Cannot open root device "ubi0:rootfs" or unknown-block(0,0): error -74

[    6.894319] Please append a correct "root=" boot option; here are the available partitions:

[    6.903162] 1f00             128 mtdblock0 (driver?)

[    6.908493] 1f01             128 mtdblock1 (driver?)

[    6.913836] 1f02             128 mtdblock2 (driver?)

[    6.919159] 1f03             128 mtdblock3 (driver?)

[    6.924496] 1f04             256 mtdblock4 (driver?)

[    6.929822] 1f05            1024 mtdblock5 (driver?)

[    6.935160] 1f06             128 mtdblock6 (driver?)

[    6.940500] 1f07             128 mtdblock7 (driver?)

[    6.945824] 1f08            8192 mtdblock8 (driver?)

[    6.951164] 1f09          514048 mtdblock9 (driver?)

[    6.956490] Kernel panic - not syncing: VFS: Unable to mount root fs on unknown-block(0,0)

AWR1443BOOST: I cannot record data using the mmwave demo visualizer

$
0
0

Part Number:AWR1443BOOST

Hello,

I am using the Evaluation module AWR 1443 and we would like to record dat a through the mmwave Demo Visualizer. We are able to record a .dat file, but the format is completely unknown for us and for the matlab file capture_demo.m.

We are using the SDK version mmwave_sdk_01_01_00_02. We are able to savet his version in the flash memory, but we are not able to uncode the final .dat file.

Alternatively, I have followed the TI guide "ADC Data Capture using Capture Demo and CCS Memory Browser IWR14xx/AWR14xx example" in order to capture the data using the Code Composer Studio 8.0. This option works perfectly but it is a tedious process and it is suitable to capture one measurement. I would like to automate the process in order to capture measurements every 2 minutes and save all these measurements in an only .dat file. Since the mmwave Demo Visualizer has the option to record data, maybe it is the best choice to do this. The problem is that the final format is coded.

Could anybody help me?

 Best regards,

 Carlos.

Compiler/TMS320F28335: Check if program is using flash memory

$
0
0

Part Number:TMS320F28335

Tool/software: TI C/C++ Compiler

Hello everyone,

I just inherited a project for the TMS320F28335.
The project is supposed to be a custom kernel to program Flash of the DSP over SCI.

The people who worked on the project always flashed the custom kernel via JTAG and afterwards send the "real" programm over SCI, that wokred quite well.
But if  the developement phase will be over some day the users of the kernel won't have access to the JTAG port and can only programm via the SCI-Interface.
So the kernel must only operate on the DSPs RAM.

Here is my question,
can I somehow get information about which code parts are stored in RAM and which will be stored in the Flash so I can move the kernel step by step from flash into RAM.

Is it possible to generate a warning, Error or something else that shows that the project will be using flash memory.

Regards,

Marcel Kummer.

MSP430F249: Example code for restoration TLV structure in MSP430F249

$
0
0

Part Number:MSP430F249

Hello,

Does there exist example code for restoration TLV structure in MSP430F249? Customer erased TLV structure in his chips and now he wants to restore original TLV.

Thank you.

BR,

Frantisek

DS90UB954-Q1: CSI-2 data rate

$
0
0

Part Number:DS90UB954-Q1

Hi, E2E members

We are planing to use some sensers that CSI-2 data rate are 184 ~ 506Mbps.

- Can we use the following setting DS90UB953 and DS90UB954?
DS90UB953-Q1 input : 184Mbps x 1 lane → DS90UB954-Q1 output : 800Mbps x 1 lane
DS90UB953-Q1 input : 506Mbps x 1 lane → DS90UB954-Q1 output : 800Mbps x 1 lane

1) Can the DS90UB954-Q1 use the setting of CSI-2 data rate of 800Mbps, regardless of CSI-2 data rate of DS90UB953-Q1 side?

2) Dose DS90UB954-Q1 have to change CSI-2 data rate of 400Mbps, if DS90UB953-Q1 input data rate below the 400Mbps?

Regards,
Nao

MSP430FR2433: Very long term LPM 4.5

$
0
0

Part Number:MSP430FR2433

Hello.

I would like to keep MSP430FR2433 in LPM4.5 keeping state of I/O output  for 2 to 3 years.

Is the above possible?
Is there anything to watch out for?

I am worried that I/O status will change or wakeup will not happen by I/O because the period of LPM4.5 is very long.

Do you need to monitor that MSP430 is functional with watch dog timer?

Regards,

U-SK


ULN2003A: ULN2003A

$
0
0

Part Number:ULN2003A

When I use ULN2803A to drive the motor, I only need 5V to drive the motor. The current is 300~250mA.However, when I used UNL2003A, it required 5.8V to drive the motor, and the current was the same 300~250mA.Why is that?

CCS/F28M35H52C: LOW SPEED ACCURACY USING QEP?

$
0
0

Part Number:F28M35H52C

Tool/software: Code Composer Studio

The precondition is : encoder is 2500 lines and MCU is F28M35H52C1.

We use qep to test a pmsm motor,we find the speed accuracy when low  is very bad : +/-20rpm for 50rpm.

So we want to know what is the low speed accuracy for this IC using qep? do you have example code or inner block for qep?

Thanks for your help

Longfei

TPA2011D1: Temp case (Tc) value

TMS320F28374S: Design Verification

$
0
0

Part Number:TMS320F28374S

Need someone urgently to review a general schematic for TMS320F28374S.

My mail ID:development@sydlerelectro.com

Please guide me where to send or post.

Thanks and regards

Nikhil

ADS1299: Does the ADS1299 capture EEG signals require an external amplification circuit?

$
0
0

Part Number:ADS1299

Hello TI engineers! I have recently encountered several technical problems with TI's chips. TI's evaluation board is to directly acquire EEG signals without an external amplifier circuit, but the EEG signal is a very weak signal, and the voltage amplitude is only uV level. The PGA of the chip has a maximum gain of 24, and if the EEG signal is 20uV, the amplitude after amplification is 20*24=480uV, so the voltage captured by the ADC is less than 1mV. My question is: Can EEG signals be  captured without an external amplifier circuit? Is an external amplifier circuit necessary? Do you have any suggestions? thank you very much!

Viewing all 262198 articles
Browse latest View live


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