This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Hi,
We are trying to port from U-boot V2013.10 to V2018.01 and Kernel from V3.2 to V4.14.
Hardware remains the same.
TI SDK Used: V05.03.00.07.confg_dts_old_and_new_kernel_log.zip
Hardware Info:
Processor is AM3352 and it is interfaced to parallel NOR flash from Cypress (part number :S70GL02GS) via GPMC CS0.
Cypress guys provided an excellent support and here is the full discussion from the bootloader till the kernel problem. (First part of the discussion is on U-boot and next is on Kernel).
https://community.cypress.com/message/206271#206271
We have successfully ported u-boot and all features are working at the u-boot level.
NOR flash info from u-boot:
=> fli
Bank # 1: CFI conformant flash (16 x 16) Size: 256 MB in 1024 Sectors
AMD Standard command set, Manufacturer ID: 0x01, Device ID: 0x227E4801
Advanced Sector Protection (PPB) enabled
Erase timeout: 2048 ms, write timeout: 1 ms
Buffer write timeout: 3 ms, buffer size: 512 bytes
Other commands erase and cp are working at u-boot level.
Problem Statement: We have problem in bringing the NOR flash up in kernel.
Old Kernel (3.2.0): All below commands did not work as expected. No concept of dts here and we have .config file.
cat /proc/partitions
ls -la /dev/mtd*
mtdinfo
mount
mtd_debug info /dev/mtd0
My modifications in new Kernel
Observation 1:
Since CONFIG_MTD_CHAR is not available in new kernel and to understand the importance of CONFIG_MTD_CHAR, I have disabled this configuration in the old kernel and tested:
Below commands are not working.
cat /proc/partitions
ls -la /dev/mtd*
mtdinfo
mount
mtd_debug info /dev/mtd0
CONFIG_MTD_CHAR is a must parameter.
Observation 2:
In old kernel mtdchar.c is being compiled based on CONFIG_MTD_CHAR.
In the new kernel drivers/mtd/mtdchar.c is being compiled even though we don’t have CONFIG_MTD_CHAR enabled, it is taken care if CONFIG_MTD is enabled.
Additional changes:
Since code was not entering "drivers/mtd/chips/cfi_probe.c", I have enabled MTD_PHYSMAP_OF and tested.
I have attached kernel configuration of old and new kernel.
Please find attached kernel log file for old kernel (working) and new kernel (not working).
Can you please let me know what is that I am missing?
If you need any more input from my side please let me know.
Regards
Srinivasa
Hi,
I have very interesting observation and little progress on this.
I have enabled only “CONFIG_MTD_OF_PARTS” in the kernel configuration under location:
Prompt: OpenFirmware partitioning information support
Location:
-> Device Drivers
-> Memory Technology Device (MTD) support (MTD [=y])
I can see partitions during kernel boot as below:
[ 2.994890]
[ 3.012704] 6 ofpart partitions found on MTD device SPX, SPX_partitions
[ 3.019553] Creating 6 MTD partitions on "SPX, SPX_partitions":
[ 3.025637] 0x000000000000-0x000000080000 : "uboot"
[ 3.032845] 0x000000080000-0x0000000a0000 : "uboot-env"
[ 3.040386] 0x0000000a0000-0x0000005a0000 : "Current kernel"
[ 3.048175] 0x0000005a0000-0x000000aa0000 : "Backup kernel"
[ 3.055885] 0x000000aa0000-0x000000fa0000 : "Failsafe kernel"
[ 3.063597] 0x000000fa0000-0x000010000000 : "File System"
[ 3.071011]
[ 3.071011]
Please refer the attached file Kernel log “NOR_FLASH_MOUNTED_AS_ROM_kernel_log.txt”
Problem:
It has mouted NOR flash as MTD_ROM as shown below:
root@am335x-evm:~# mtd_debug info /dev/mtd0
mtd.type = MTD_ROM
mtd.flags = MTD_CAP_ROM
mtd.size = 524288 (512K)
mtd.erasesize = 268435456 (256M)
mtd.writesize = 1
mtd.oobsize = 0
regions = 0
In the old Kernel (which is working fine) it is mounted as below:
root@spx-vanguard:~# mtd_debug info /dev/mtd0
mtd.type = MTD_NORFLASH
mtd.flags = MTD_CAP_NORFLASH
mtd.size = 524288 (512K)
mtd.erasesize = 131072 (128K)
mtd.writesize = 1
mtd.oobsize = 0
regions = 0
Now I feel DTS file is fine. I need to work only on Kernel configuration. Is my understanding correct?
How to make it to (MTD_NORFLASH/ MTD_CAP_NORFLASH)? What changes I must do in the configuration?
I have attached kernel log and update configuration file of new kernelNOR_FLASH_mounted_as_ROM.zip
Regards
Srinivasa
Hello Srinivasa,
I am wondering if Uboot is detecting the type correctly because you could compare the Cypress patches to ensure the same logic is applied in Kernel.
Regards,
Krunal
Hi,
As explained before, we had a problem of NOR flash being mounted as “MTD_ROM”. This is resolved now.
Fix: On powerup, kernel was not able to detect the NOR FLASH because it was failing in the probe function. Since the hardware is good, my suspect was on GPMC. Updated GPMC config registers similar to old kernel (or U-boot) and later cfi_flash_probe function was success.
Now kernel is able to detect the NOR FLASH and all the partitions are mounted as MTD_NORFLASH (as below).
root@spx-vanguard:~# mtd_debug info /dev/mtd5
mtd.type = MTD_NORFLASH
mtd.flags = MTD_CAP_NORFLASH
mtd.size = 252051456 (240M)
mtd.erasesize = 131072 (128K)
mtd.writesize = 1
mtd.oobsize = 0
regions = 0
root@am335x-evm:~#
Next question: During flash write operation, it is able to write only one sector completely and later the system hangs. I need to a power cycle the board.
Since we have old working kernel, I have compared the code flow. Code flow is the same. Please find logs of old and new kernel attached.
If you can give any hint on this will be of great help.
Regards
Srinivasa
Hi Krunal,
Sorry, missed your message.
I once again verified u-boot. In u-boot only 128 MB is being detected. S70GL02GS part as two chips, 128 MB each (256 MB total).
In Old kernel during bootup message states "number of CFI chips: 2" but in new kernel, "number of CFI chips: 1"
Since old u-boot is configured for 128 MB, in the old kernel, they have reconfigured the GPMC by writing 0x50 to GPMC_CONFIG7_0 (0x5000_0078) as below in file arch/arm/mach-omap2/board.c.
void __iomem *io = ioremap(0x50000078, 4);
writel(0, io);
writel(0x50, io);
Old kernel is able to access complete 256 MBytes of flash.
Since we don't have board specific functionally in new kernel (because of DTS file). I am trying to write 0x50 to GPMC_CONFIG7_0 in dts file as below:
reg = <0x50000078 0x00000050>; /* Adding this is causing Kernel panic*/
My understanding: In dts file, since status = “okay”; which indicates that the device is operational and it is causing Kernel panic.
If I comment “Status = okay”, GPMC is never enabled and flash is not detected.
Trial 1:
Since u-boot is configured for 128 MB, tried configuring u-boot for 256 MB by writing 0x50 to GPMC_CONFIG7_0 (0x50000078)
New uboot (V2018.01) is not coming up!!!.
Old uboot (V2013.10), is having below error and it keeps rebooting.
Flash: data abort
MAYBE you should read doc/README.arm-unaligned-accesses
pc : [<8f7770b0>] lr : [<8f776c48>]
sp : 8f637e38 ip : 00000000 fp : 8f79207c
r10: 8081487c r9 : 8f637f38 r8 : 00000000
r7 : 0000140c r6 : 8ffbaa48 r5 : 00000000 r4 : 08000000
r3 : 0000f0f0 r2 : 000000f0 r1 : 8ffbaa48 r0 : 00000001
Flags: Nzcv IRQs off FIQs on Mode SVC_32
Resetting CPU ...
Trial 2:
As suggested in below link (which has similar problem but it is for NAND), tried various options but did not workout.
https://e2e.ti.com/support/processors/f/791/t/783310
Trial 3:
Similar to old kernel tried to write 0x50 to GPMC_CONFIG7_0, but this is causing kernel pannic.
Question:
Attached log for kernel boot log for below scenarios.
1. Writing 0x50 to reg GPMC_CONFIG7_0 (Kernel_panic.txt)
2. Writing 0x50 to reg GPMC_CONFIG7_0 is commented. (Kernel_booting.txt)
3. "Status = Okay" commented.(status_okay_ommented.txt)
4. dts node of gpmc.
Regards
Srinivasa
From the old kernel board specific file, here are few inputs:
#define NOR_BASE 0x10000000
#define SZ_256M 0x10000000
#define IORESOURCE_MEM 0x00000200 (defined in include/linux/ioport.h)
static struct resource norflash_resource = {
.start = NOR_BASE,
.end = NOR_BASE + SZ_256M - 1,
.flags = IORESOURCE_MEM,
};
Update from DTS file from my end as below (changed the base address from 0x08000000 to 0x10000000), but still kernel panic.
ranges = <0 0 0x10000000 0x0FFFFFFF>;
Question:
How do we take care of IORESOURCE_MEM flag in new kernel?
Regards
Srinivasa
Hi,
static struct physmap_flash_data norflash_data = {
.width = 2,
.parts = nor_partitions,
.nr_parts = ARRAY_SIZE(nor_partitions),
};
static struct platform_device norflash = {
.name = "physmap-flash",
.id = 0,
.dev = {
.platform_data = &norflash_data,
},
.num_resources = 1,
.resource = &norflash_resource,
};
static struct mtd_partition nor_partitions[] = {
{
.name = "uboot",
.offset = 0,
.size = 4 * SZ_128K,
},
}
Please find "platform_device" information added.
Regards
Srinivasa
Hello Srinivasa,
I am wondering if you could please refer to the following documents to ensure required properties are configured correctly: <kernel_dir>/Documentation/devicetree/bindings/mtd/gpmc-nor.txt
<kernel_dir>/Documentation/devicetree/bindings/memory-controllers/omap-gpmc.txt
Regards,
Krunal
Hi Krunal,
Probe function in platform driver is not being called. Below is the output of old and new kernel.
Old kernel:
Platform driver init function "physmap_init" is being called followed by physical map probe function "physmap_flash_probe" successfully as below:
[ 4.703106] Srini debug @ line 239 in function physmap_init in file drivers/mtd/maps/physmap.c
[ 4.703113]
[ 4.719892] Srini debug @ line 92 in function physmap_flash_probe in file drivers/mtd/maps/physmap.c
[ 4.719903]
[ 4.737156] physmap platform flash device: 10000000 at 10000000
New Kernel:
Platform driver init function "physmap_init" is being called but physical map probe function "physmap_flash_probe" is not being called!!!
[ 2.017770] Srini debug @ line 251 in function physmap_init in file drivers/mtd/maps/physmap.c
[ 2.017770]
[ 2.017770]
[ 2.034215] Value of err is 0
Result:
GMPC is not able to see full external memory available and gpmc_mem_init() function fails to get memory configuration information.
Verified:
CONFIG_MTD_PHYSMAP is enabled in both old and new kernel. Even though init function "physmap_init" is being called, I am not sure why physical map probe function "physmap_flash_probe()" is not being called?
| Symbol: MTD_PHYSMAP [=y] |
| Type : tristate |
| Prompt: Flash device in physical memory map |
| Location: |
| -> Device Drivers |
| -> Memory Technology Device (MTD) support (MTD [=y]) |
| (1) -> Mapping drivers for chip access |
| Defined at drivers/mtd/maps/Kconfig:11 |
| Depends on: MTD [=y] && HAS_IOMEM [=y] && (MTD_CFI [=y] || MTD_JEDECPROBE [=n] || MTD_ROM [=y] || MTD_LPDDR [=n]) |
| Selected by: MACH_XCEP [=n] && ARCH_PXA [=n]
In configuration, I have taken care of
"MTD [=y] && HAS_IOMEM [=y] && (MTD_CFI [=y] || MTD_JEDECPROBE [=n] || MTD_ROM [=y] || MTD_LPDDR [=n]) "
However MACH_XCEP and ARCH_PXA is not found in old and new kernel.
I have attached dts, old and new kernel log files.
Any input/suggestion will be helpful.
Regards
Srinivasa
Hi ,
Further exploring on why physmap_flash_probe() is not being called, here is my observation.
Old Kernel:
gpmc_driver is being registered using module_platform_driver(gpmc_driver) and hence not being called in old kernel.
physmap_flash_driver is also being registered using platform_driver_register() and hence physmap_flash_probe() is being called.
New Kernel:
gpmc_driver is being registered using platform_driver_register(), __init int gpmc_init is being invoked, followed by gpmc_probe is being called.
physmap_flash_driver is also being registered using platform_driver_register(), __init physmap_init() is being called but not physmap_flash_probe()
Question: Why gpmc_probe() is taken precedence over physmap_flash_probe() in new kernel?
Since gpmc driver is being used as probe function, started debugging gpmc_probe() from file drivers/memory/omap-gpmc.c
Here we have below problems
Please find new_kernel_log attached.
=> => fatload mmc 0:1 0x88000000 am335x-evmsk.dtb 35338 bytes read in 8 ms (4.2 MiB/s) => setenv bootargs console=ttyS0,115200n8 root=/dev/mmcblk0p2 rw rootfstype=ext3 rootwait => fatload mmc 0:1 0x82000000 uImage 3834432 bytes read in 530 ms (6.9 MiB/s) => bootm 0x82000000 - 0x88000000 ## Booting kernel from Legacy Image at 82000000 ... Image Name: Linux-4.14.79-ge669d52447 Created: 2019-09-25 7:44:11 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 3834368 Bytes = 3.7 MiB Load Address: 82000000 Entry Point: 82000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 88000000 Booting using the fdt blob at 0x88000000 Loading Kernel Image ... OK Loading Device Tree to 8df33000, end 8df3ea09 ... OK Starting kernel ... Srini machid : 3589 Srini r2 : 8df33000 Jumping to 82000000 Bye bye u-boot :( [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 4.14.79-ge669d52447 (pcadmin@pcadmin-OptiPlex-790) (gcc version 7.2.1 20171011 (Linaro GCC 7.2-2017.11)9 [ 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] OF: fdt: Machine model: TI AM335x EVM-SK [ 0.000000] Memory policy: Data cache writeback [ 0.000000] efi: Getting EFI parameters from FDT: [ 0.000000] efi: UEFI not found. [ 0.000000] cma: Reserved 48 MiB at 0x8a800000 [ 0.000000] CPU: All CPU(s) started in SVC mode. [ 0.000000] AM335X ES2.1 (neon) [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 64960 [ 0.000000] Kernel command line: console=ttyS0,115200n8 root=/dev/mmcblk0p2 rw rootfstype=ext3 rootwait [ 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: 197296K/262144K available (8192K kernel code, 315K rwdata, 2460K rodata, 1024K init, 267K bss, 15696K reserve) [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB) [ 0.000000] vmalloc : 0xd0800000 - 0xff800000 ( 752 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 - 0xc0900000 (9184 kB) [ 0.000000] .init : 0xc0c00000 - 0xc0d00000 (1024 kB) [ 0.000000] .data : 0xc0d00000 - 0xc0d4ed40 ( 316 kB) [ 0.000000] .bss : 0xc0d4ed40 - 0xc0d91bec ( 268 kB) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] Tasks RCU enabled. [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts [ 0.000000] GPMC_REVISION = 60 [ 0.000000] GPMC_SYSCONFIG = 8 [ 0.000000] GPMC_SYSSTATUS = 1 [ 0.000000] GPMC_IRQSTATUS = 0 [ 0.000000] GPMC_IRQENABLE = 0 [ 0.000000] GPMC_TIMEOUT_CONTROL = 1ff0 [ 0.000000] GPMC_ERR_ADDRESS = 0 [ 0.000000] GPMC_ERR_TYPE = 0 [ 0.000000] GPMC_CONFIG = 200 [ 0.000000] GPMC_STATUS = 101 [ 0.000000] GPMC_CONFIG1_0 = 1210 [ 0.000000] GPMC_CONFIG2_0 = 101000 [ 0.000000] GPMC_CONFIG3_0 = 30301 [ 0.000000] GPMC_CONFIG4_0 = 10041004 [ 0.000000] GPMC_CONFIG5_0 = c1010 [ 0.000000] GPMC_CONFIG6_0 = 8070280 [ 0.000000] GPMC_CONFIG7_0 = 848 [ 0.000000] GPMC_NAND_COMMAND_0 = 31313131 [ 0.000000] GPMC_NAND_ADDRESS_0 = 31313131 [ 0.000000] GPMC_NAND_DATA_0 = 310a3131 [ 0.000000] GPMC_CONFIG1_1 = 1000 [ 0.000000] GPMC_CONFIG2_1 = 101001 [ 0.000000] GPMC_CONFIG3_1 = 22060514 [ 0.000000] GPMC_CONFIG4_1 = 10057016 [ 0.000000] GPMC_CONFIG5_1 = 10f1111 [ 0.000000] GPMC_CONFIG6_1 = 8f070000 [ 0.000000] GPMC_CONFIG7_1 = f00 [ 0.000000] GPMC_CONFIG1_2 = 1000 [ 0.000000] GPMC_CONFIG2_2 = 101001 [ 0.000000] GPMC_CONFIG3_2 = 22060514 [ 0.000000] GPMC_CONFIG4_2 = 10057016 [ 0.000000] GPMC_CONFIG5_2 = 10f1111 [ 0.000000] GPMC_CONFIG6_2 = 8f070000 [ 0.000000] GPMC_CONFIG7_2 = f00 [ 0.000000] GPMC_CONFIG1_3 = 1000 [ 0.000000] GPMC_CONFIG2_3 = 101001 [ 0.000000] GPMC_CONFIG3_3 = 22060514 [ 0.000000] GPMC_CONFIG4_3 = 10057016 [ 0.000000] GPMC_CONFIG5_3 = 10f1111 [ 0.000000] GPMC_CONFIG6_3 = 8f070000 [ 0.000000] GPMC_CONFIG7_3 = f00 [ 0.000000] GPMC_CONFIG1_4 = 1000 [ 0.000000] GPMC_CONFIG2_4 = 101001 [ 0.000000] GPMC_CONFIG3_4 = 22060514 [ 0.000000] GPMC_CONFIG4_4 = 10057016 [ 0.000000] GPMC_CONFIG5_4 = 10f1111 [ 0.000000] GPMC_CONFIG6_4 = 8f070000 [ 0.000000] GPMC_CONFIG7_4 = f00 [ 0.000000] GPMC_CONFIG1_5 = 1000 [ 0.000000] GPMC_CONFIG2_5 = 101001 [ 0.000000] GPMC_CONFIG3_5 = 22060514 [ 0.000000] GPMC_CONFIG4_5 = 10057016 [ 0.000000] GPMC_CONFIG5_5 = 10f1111 [ 0.000000] GPMC_CONFIG6_5 = 8f070000 [ 0.000000] GPMC_CONFIG7_5 = f00 [ 0.000000] GPMC_CONFIG1_6 = 1000 [ 0.000000] GPMC_CONFIG2_6 = 101001 [ 0.000000] GPMC_CONFIG3_6 = 22060514 [ 0.000000] GPMC_CONFIG4_6 = 10057016 [ 0.000000] GPMC_CONFIG5_6 = 10f1111 [ 0.000000] GPMC_CONFIG6_6 = 8f070000 [ 0.000000] GPMC_CONFIG7_6 = f00 [ 0.000000] GPMC_PREFETCH_CONFIG1 = 4000 [ 0.000000] GPMC_PREFETCH_CONFIG2 = 0 [ 0.000000] GPMC_PREFETCH_CONTROL = 0 [ 0.000000] GPMC_PREFETCH_STATUS = 0 [ 0.000000] GPMC_ECC_CONFIG = 1030 [ 0.000000] GPMC_ECC_CONTROL = 0 [ 0.000000] GPMC_ECC_SIZE_CONFIG = fffff000 [ 0.000000] GPMC_ECC1_RESULT = 0 [ 0.000000] GPMC_ECC2_RESULT = 0 [ 0.000000] GPMC_ECC3_RESULT = 0 [ 0.000000] GPMC_ECC4_RESULT = 0 [ 0.000000] GPMC_ECC5_RESULT = 0 [ 0.000000] GPMC_ECC6_RESULT = 0 [ 0.000000] GPMC_ECC7_RESULT = 0 [ 0.000000] GPMC_ECC8_RESULT = 0 [ 0.000000] GPMC_ECC9_RESULT = 0 [ 0.000000] GPMC_BCH_RESULT0_0 = 0 [ 0.000000] GPMC_BCH_RESULT1_0 = 0 [ 0.000000] GPMC_BCH_RESULT2_0 = 0 [ 0.000000] GPMC_BCH_RESULT3_0 = 0 [ 0.000000] GPMC_BCH_RESULT0_1 = 0 [ 0.000000] GPMC_BCH_RESULT1_1 = 0 [ 0.000000] GPMC_BCH_RESULT2_1 = 0 [ 0.000000] GPMC_BCH_RESULT3_1 = 0 [ 0.000000] GPMC_BCH_RESULT0_2 = 0 [ 0.000000] GPMC_BCH_RESULT1_2 = 0 [ 0.000000] GPMC_BCH_RESULT2_2 = 0 [ 0.000000] GPMC_BCH_RESULT3_2 = 0 [ 0.000000] GPMC_BCH_RESULT0_3 = 0 [ 0.000000] GPMC_BCH_RESULT1_3 = 0 [ 0.000000] GPMC_BCH_RESULT2_3 = 0 [ 0.000000] GPMC_BCH_RESULT3_3 = 0 [ 0.000000] GPMC_BCH_RESULT0_4 = 0 [ 0.000000] GPMC_BCH_RESULT1_4 = 0 [ 0.000000] GPMC_BCH_RESULT2_4 = 0 [ 0.000000] GPMC_BCH_RESULT3_4 = 0 [ 0.000000] GPMC_BCH_RESULT0_5 = 0 [ 0.000000] GPMC_BCH_RESULT1_5 = 0 [ 0.000000] GPMC_BCH_RESULT2_5 = 0 [ 0.000000] GPMC_BCH_RESULT3_5 = 0 [ 0.000000] GPMC_BCH_RESULT0_6 = 0 [ 0.000000] GPMC_BCH_RESULT1_6 = 0 [ 0.000000] GPMC_BCH_RESULT2_6 = 0 [ 0.000000] GPMC_BCH_RESULT3_6 = 0 [ 0.000000] GPMC_BCH_RESULT0_7 = 0 [ 0.000000] GPMC_BCH_RESULT1_7 = 0 [ 0.000000] GPMC_BCH_RESULT2_7 = 0 [ 0.000000] GPMC_BCH_RESULT3_7 = 0 [ 0.000000] GPMC_BCH_SWDATA = 0 [ 0.000000] GPMC_BCH_RESULT4_0 = 0 [ 0.000000] GPMC_BCH_RESULT5_0 = 0 [ 0.000000] GPMC_BCH_RESULT6_0 = 0 [ 0.000000] GPMC_BCH_RESULT4_1 = 0 [ 0.000000] GPMC_BCH_RESULT5_1 = 0 [ 0.000000] GPMC_BCH_RESULT6_1 = 0 [ 0.000000] GPMC_BCH_RESULT4_2 = 0 [ 0.000000] GPMC_BCH_RESULT5_2 = 0 [ 0.000000] GPMC_BCH_RESULT6_2 = 0 [ 0.000000] GPMC_BCH_RESULT4_3 = 0 [ 0.000000] GPMC_BCH_RESULT5_3 = 0 [ 0.000000] GPMC_BCH_RESULT6_3 = 0 [ 0.000000] GPMC_BCH_RESULT4_4 = 0 [ 0.000000] GPMC_BCH_RESULT5_4 = 0 [ 0.000000] GPMC_BCH_RESULT6_4 = 0 [ 0.000000] GPMC_BCH_RESULT4_5 = 0 [ 0.000000] GPMC_BCH_RESULT5_5 = 0 [ 0.000000] GPMC_BCH_RESULT6_5 = 0 [ 0.000000] GPMC_BCH_RESULT4_6 = 0 [ 0.000000] GPMC_BCH_RESULT5_6 = 0 [ 0.000000] GPMC_BCH_RESULT6_6 = 0 [ 0.000000] GPMC_BCH_RESULT4_7 = 0 [ 0.000000] GPMC_BCH_RESULT5_7 = 0 [ 0.000000] GPMC_BCH_RESULT6_7 = 0 [ 0.000000] print_hardware_sfrs [ 0.000000] [ 0.000000] Value of AD0 at location 0x44e10800 is 0x20 [ 0.000000] Value of AD1 at location 0x44e10804 is 0x20 [ 0.000000] Value of AD2 at location 0x44e10808 is 0x20 [ 0.000000] Value of AD3 at location 0x44e1080c is 0x20 [ 0.000000] Value of AD4 at location 0x44e10810 is 0x20 [ 0.000000] Value of AD5 at location 0x44e10814 is 0x20 [ 0.000000] Value of AD6 at location 0x44e10818 is 0x20 [ 0.000000] Value of AD7 at location 0x44e1081c is 0x20 [ 0.000000] Value of AD8 at location 0x44e10820 is 0x20 [ 0.000000] Value of AD9 at location 0x44e10824 is 0x20 [ 0.000000] Value of AD10 at location 0x44e10828 is 0x20 [ 0.000000] Value of AD11 at location 0x44e1082c is 0x20 [ 0.000000] Value of AD12 at location 0x44e10830 is 0x20 [ 0.000000] Value of AD13 at location 0x44e10834 is 0x20 [ 0.000000] Value of AD14 at location 0x44e10838 is 0x20 [ 0.000000] Value of AD15 at location 0x44e1083c is 0x20 [ 0.000000] Value of A16 at location 0x44e108a4 is 0x21 [ 0.000000] Value of A17 at location 0x44e108a8 is 0x21 [ 0.000000] Value of A18 at location 0x44e108ac is 0x21 [ 0.000000] Value of A19 at location 0x44e108b0 is 0x21 [ 0.000000] Value of A20 at location 0x44e108b4 is 0x21 [ 0.000000] Value of A21 at location 0x44e108b8 is 0x21 [ 0.000000] Value of A22 at location 0x44e108bc is 0x21 [ 0.000000] Value of A23 at location 0x44e108e0 is 0x21 [ 0.000000] Value of A24 at location 0x44e108e4 is 0x21 [ 0.000000] Value of A25 at location 0x44e108e8 is 0x21 [ 0.000000] Value of A26 at location 0x44e1086c is 0x24 [ 0.000000] Value of CS0 at location 0x44e1087c is 0x20 [ 0.000000] Value of ALE at location 0x44e10890 is 0x20 [ 0.000000] Value of OEN_REN at location 0x44e10894 is 0x20 [ 0.000000] Value of BEN0_CLE at location 0x44e1089c is 0x20 [ 0.000000] Value of WEN at location 0x44e10898 is 0x20 [ 0.000000] Value of WAIT0 at location 0x44e10870 is 0x20 [ 0.000000] End of print_hardware_sfrs... [ 0.000000] OMAP clockevent source: timer2 at 24000000 Hz [ 0.000033] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns [ 0.000083] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns [ 0.000110] OMAP clocksource: timer1 at 24000000 Hz [ 0.000509] timer_probe: no matching timers found [ 0.000955] Console: colour dummy device 80x30 [ 0.001058] Calibrating delay loop... 289.99 BogoMIPS (lpj=1449984) [ 0.067768] pid_max: default: 32768 minimum: 301 [ 0.068227] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.068264] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.070001] CPU: Testing write buffer coherency: ok [ 0.070117] CPU0: Spectre v2: using BPIALL workaround [ 0.071583] Setting up static identity map for 0x80100000 - 0x80100060 [ 0.071955] Hierarchical SRCU implementation. [ 0.072825] EFI services will not be available. [ 0.076506] devtmpfs: initialized [ 0.096621] random: get_random_u32 called from bucket_table_alloc+0x8c/0x1ac with crng_init=0 [ 0.097572] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3 [ 0.098378] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.098432] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.105857] pinctrl core: initialized pinctrl subsystem [ 0.107392] DMI not present or invalid. [ 0.108537] NET: Registered protocol family 16 [ 0.113828] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.145387] omap_hwmod: debugss: _wait_target_disable failed [ 0.206658] cpuidle: using governor ladder [ 0.206749] cpuidle: using governor menu [ 0.206868] [ 0.206868] [ 0.206868] [ 0.206868] Srini debug @ line 2496 in function gpmc_init in file drivers/memory/omap-gpmc.c [ 0.206868] [ 0.206868] [ 0.217847] OMAP GPIO hardware version 0.1 [ 0.232937] omap-gpmc 50000000.gpmc: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/nor_pins, deferre [ 0.237884] No ATAGs? [ 0.237914] hw-breakpoint: debug architecture 0x4 unsupported. [ 0.271991] edma 49000000.edma: TI EDMA DMA engine driver [ 0.281046] omap_i2c 44e0b000.i2c: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/pinmux_i2c0_pins, e [ 0.281317] media: Linux media interface: v0.10 [ 0.281423] Linux video capture interface: v2.00 [ 0.281679] pps_core: LinuxPPS API ver. 1 registered [ 0.281704] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.281771] PTP clock support registered [ 0.281863] EDAC MC: Ver: 3.0.0 [ 0.282840] dmi: Firmware registration failed. [ 0.283715] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400 [ 0.284418] Advanced Linux Sound Architecture Driver Initialized. [ 0.286918] clocksource: Switched to clocksource timer1 [ 0.308170] NET: Registered protocol family 2 [ 0.309854] TCP established hash table entries: 2048 (order: 1, 8192 bytes) [ 0.309947] TCP bind hash table entries: 2048 (order: 1, 8192 bytes) [ 0.310021] TCP: Hash tables configured (established 2048 bind 2048) [ 0.310245] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.310301] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.310676] NET: Registered protocol family 1 [ 0.311620] RPC: Registered named UNIX socket transport module. [ 0.311657] RPC: Registered udp transport module. [ 0.311677] RPC: Registered tcp transport module. [ 0.311695] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.313465] hw perfevents: no interrupt-affinity property for /pmu, guessing. [ 0.313728] hw perfevents: enabled with armv7_cortex_a8 PMU driver, 5 counters available [ 0.317219] workingset: timestamp_bits=14 max_order=16 bucket_order=2 [ 0.328823] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.330676] NFS: Registering the id_resolver key type [ 0.330765] Key type id_resolver registered [ 0.330786] Key type id_legacy registered [ 0.330895] ntfs: driver 2.1.32 [Flags: R/O]. [ 0.335724] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 0.335770] io scheduler noop registered [ 0.335793] io scheduler deadline registered [ 0.336329] io scheduler cfq registered (default) [ 0.336358] io scheduler mq-deadline registered [ 0.336379] io scheduler kyber registered [ 0.339495] pinctrl-single 44e10800.pinmux: 142 pins at pa f9e10800 size 568 [ 0.471886] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled [ 0.479240] console [ttyS0] disabled [ 0.479433] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 30, base_baud = 3000000) is a 8250 [ 1.772783] console [ttyS0] enabled [ 1.779936] omap_rng 48310000.rng: Random Number Generator ver. 20 [ 1.815771] brd: module loaded [ 1.835213] loop: module loaded [ 1.839741] mtdoops: mtd device (mtddev=name/number) must be supplied [ 1.848682] libphy: Fixed MDIO Bus: probed [ 1.857619] i2c /dev entries driver [ 1.861942] IR NEC protocol handler initialized [ 1.866515] IR RC5(x/sz) protocol handler initialized [ 1.871836] IR RC6 protocol handler initialized [ 1.876407] IR JVC protocol handler initialized [ 1.881016] IR Sony protocol handler initialized [ 1.885668] IR SANYO protocol handler initialized [ 1.890441] IR Sharp protocol handler initialized [ 1.895178] IR MCE Keyboard/mouse protocol handler initialized [ 1.901082] IR XMP protocol handler initialized [ 1.909108] cpuidle: enable-method property 'ti,am3352' found operations [ 1.916611] sdhci: Secure Digital Host Controller Interface driver [ 1.922960] sdhci: Copyright(c) Pierre Ossman [ 1.928536] omap_hsmmc 48060000.mmc: Got CD GPIO [ 1.934866] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.942110] ledtrig-cpu: registered to indicate activity on CPUs [ 1.955219] NET: Registered protocol family 10 [ 1.962308] Segment Routing with IPv6 [ 1.966201] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 1.973993] NET: Registered protocol family 17 [ 1.979189] Key type dns_resolver registered [ 1.983977] omap_voltage_late_init: Voltage driver support not added [ 2.002779] omap-gpmc 50000000.gpmc: GPMC revision 6.0 [ 2.008286] [ 2.008286] [ 2.008286] Srini -> Value read from GPMC_CS_CONFIG7 for CS0 is 0xf40 [ 2.008286] [ 2.008286] [ 2.020833] Srini -> Value of cs is 0 [ 2.024524] Srini -> Value of base is 0 [ 2.028431] Srini -> Value of size is 16777216 [ 2.028431] [ 2.028431] [ 2.035887] Srini -> Value returned from request_resource is -16 [ 2.035887] [ 2.035887] [ 2.044952] gpmc_mem_init: disabling cs 0 mapped at 0x0-0x1000000 [ 2.051127] [ 2.051127] [ 2.051127] [ 2.051127] Srini debug @ line 842 in function gpmc_cs_disable_mem in file drivers/memory/omap-gpmc.c [ 2.051127] [ 2.051127] [ 2.068795] Srini -> gpmc_gpio_init success [ 2.073104] Srini -> gpmc_setup_irq success [ 2.077412] [ 2.077412] [ 2.077412] [ 2.077412] Srini debug @ line 2240 in function gpmc_probe_dt_children in file drivers/memory/omap-gpmc.c [ 2.077412] [ 2.077412] [ 2.094522] Srini -> Name of child node is LnT_Cypress_NOR [ 2.100081] Srini -> child->name is generic [ 2.104360] Srini -> gpmc_cs_get_name success [ 2.108803] [ 2.108803] [ 2.108803] [ 2.108803] Srini debug @ line 842 in function gpmc_cs_disable_mem in file drivers/memory/omap-gpmc.c [ 2.108803] [ 2.108803] [ 2.125553] Srini -> gpmc_cs_request success [ 2.129893] [ 2.129893] [ 2.129893] [ 2.129893] Srini debug @ line 1833 in function gpmc_read_settings_dt in file drivers/memory/omap-gpmc.c [ 2.129893] [ 2.129893] [ 2.146963] gpmc_read_settings_dt: page/burst-length set but not used! [ 2.153554] [ 2.153554] [ 2.153554] [ 2.153554] Srini debug @ line 1865 in function gpmc_read_timings_dt in file drivers/memory/omap-gpmc.c [ 2.153554] [ 2.153554] [ 2.170666] [ 2.170666] [ 2.170666] [ 2.170666] Srini debug @ line 2054 in function gpmc_probe_generic_child in file drivers/memory/omap-gpmc.c [ 2.170666] [ 2.170666] [ 2.187941] [ 2.187941] [ 2.187941] [ 2.187941] Srini debug @ line 842 in function gpmc_cs_disable_mem in file drivers/memory/omap-gpmc.c [ 2.187941] [ 2.187941] [ 2.204691] [ 2.204691] [ 2.204691] Srini -> Value read from GPMC_CS_CONFIG7 for CS0 is 0x10 [ 2.204691] [ 2.204691] [ 2.217072] Srini -> child-name is not nand!!! [ 2.221552] Srini -> Child compatible is not ti,omap2-nand [ 2.221552] [ 2.228604] [ 2.228604] [ 2.228604] [ 2.228604] Srini debug @ line 1742 in function gpmc_cs_program_settings in file drivers/memory/omap-gpmc.c [ 2.228604] [ 2.228604] [ 2.245929] [ 2.245929] [ 2.245929] [ 2.245929] Srini debug @ line 2165 in function gpmc_probe_generic_child in file drivers/memory/omap-gpmc.c [ 2.245929] [ 2.245929] [ 2.279307] [ 2.279307] [ 2.279307] [ 2.279307] Srini debug @ line 404 in function cfi_probe in file drivers/mtd/chips/cfi_probe.c [ 2.279307] [ 2.279307] [ 2.295468] Value of map->name : physmap-flash.0 [ 2.300157] Value of map->size : 268435456 [ 2.304283] Value of map->phys : 268435456 [ 2.304283] [ 2.304283] [ 2.304283] [ 2.304283] [ 2.314532] of-flash 10000000.LnT_Cypress_NOR: do_map_probe() failed for type cfi_probe [ 2.323521] 6 ofpart partitions found on MTD device physmap-flash.0 [ 2.330032] Creating 6 MTD partitions on "physmap-flash.0": [ 2.335671] 0x000000000000-0x000000080000 : "uboot" [ 2.342954] 0x000000080000-0x0000000a0000 : "uboot-env" [ 2.350465] 0x0000000a0000-0x0000005a0000 : "Current kernel" [ 2.358251] 0x0000005a0000-0x000000aa0000 : "Backup kernel" [ 2.365803] 0x000000aa0000-0x000000fa0000 : "Failsafe kernel" [ 2.373689] 0x000000fa0000-0x000010000000 : "File System" [ 2.381250] [ 2.381250] [ 2.381250] [ 2.381250] Srini debug @ line 2185 in function gpmc_probe_generic_child in file drivers/memory/omap-gpmc.c [ 2.381250] [ 2.381250] [ 2.398602] [ 2.398602] [ 2.398602] [ 2.398602] Srini debug @ line 2442 in function gpmc_probe in file drivers/memory/omap-gpmc.c [ 2.398602] [ 2.398602] [ 2.447340] tps65910 0-002d: No interrupt support, no core IRQ [ 2.457095] vrtc: supplied by vbat [ 2.460865] random: fast init done [ 2.468642] vio: supplied by vbat [ 2.474214] vdd1: supplied by vbat [ 2.480456] vdd2: supplied by vbat [ 2.488901] vdig1: supplied by vbat [ 2.494543] vdig2: supplied by vbat [ 2.500262] vpll: supplied by vbat [ 2.505844] vdac: supplied by vbat [ 2.511476] vaux1: supplied by vbat [ 2.517156] vaux2: supplied by vbat [ 2.522858] vaux33: supplied by vbat [ 2.528610] vmmc: supplied by vbat [ 2.534196] vbb: supplied by vbat [ 2.539770] omap_i2c 44e0b000.i2c: bus 0 rev0.11 at 400 kHz [ 2.547971] cpufreq: cpufreq_online: CPU0: Running at unlisted freq: 290880 KHz [ 2.555838] cpufreq: cpufreq_online: CPU0: Unlisted initial frequency changed to: 300000 KHz [ 2.566306] omap_hsmmc 48060000.mmc: Got CD GPIO [ 2.628923] hctosys: unable to open rtc device (rtc0) [ 2.634928] lis3_reg: disabling [ 2.640187] ALSA device list: [ 2.645214] No soundcards found. [ 2.649716] GPMC_REVISION = 60 [ 2.652944] GPMC_SYSCONFIG = 11 [ 2.656239] GPMC_SYSSTATUS = 1 [ 2.659495] GPMC_IRQSTATUS = 0 [ 2.663679] GPMC_IRQENABLE = 0 [ 2.668896] GPMC_TIMEOUT_CONTROL = 1ff0 [ 2.672770] GPMC_ERR_ADDRESS = 0 [ 2.676025] GPMC_ERR_TYPE = 0 [ 2.679161] GPMC_CONFIG = a00 [ 2.682227] GPMC_STATUS = 101 [ 2.685290] GPMC_CONFIG1_0 = 1210 [ 2.688721] GPMC_CONFIG2_0 = 100100 [ 2.692308] GPMC_CONFIG3_0 = 30301 [ 2.695808] GPMC_CONFIG4_0 = 10041004 [ 2.699584] GPMC_CONFIG5_0 = c1010 [ 2.703084] GPMC_CONFIG6_0 = 88070280 [ 2.706845] GPMC_CONFIG7_0 = 50 [ 2.710132] GPMC_NAND_COMMAND_0 = 3f003e [ 2.714089] GPMC_NAND_ADDRESS_0 = 410040 [ 2.718063] GPMC_NAND_DATA_0 = 430042 [ 2.721771] GPMC_CONFIG1_1 = 1000 [ 2.725203] GPMC_CONFIG2_1 = 101001 [ 2.728844] GPMC_CONFIG3_1 = 22060514 [ 2.732629] GPMC_CONFIG4_1 = 10057016 [ 2.736452] GPMC_CONFIG5_1 = 10f1111 [ 2.740211] GPMC_CONFIG6_1 = 8f070000 [ 2.744004] GPMC_CONFIG7_1 = f00 [ 2.747426] GPMC_CONFIG1_2 = 1000 [ 2.750867] mmc0: host does not support reading read-only switch, assuming write-enable [ 2.759029] mmc0: new high speed SDHC card at address 59b4 [ 2.765140] GPMC_CONFIG2_2 = 101001 [ 2.768846] mmcblk0: mmc0:59b4 USDU1 14.7 GiB [ 2.774281] mmcblk0: p1 p2 [ 2.778222] GPMC_CONFIG3_2 = 22060514 [ 2.781990] GPMC_CONFIG4_2 = 10057016 [ 2.785751] GPMC_CONFIG5_2 = 10f1111 [ 2.789478] GPMC_CONFIG6_2 = 8f070000 [ 2.793241] GPMC_CONFIG7_2 = f00 [ 2.796567] GPMC_CONFIG1_3 = 1000 [ 2.800033] GPMC_CONFIG2_3 = 101001 [ 2.803622] GPMC_CONFIG3_3 = 22060514 [ 2.807402] GPMC_CONFIG4_3 = 10057016 [ 2.811164] GPMC_CONFIG5_3 = 10f1111 [ 2.814837] GPMC_CONFIG6_3 = 8f070000 [ 2.818613] GPMC_CONFIG7_3 = f00 [ 2.821939] GPMC_CONFIG1_4 = 1000 [ 2.825351] GPMC_CONFIG2_4 = 101001 [ 2.828969] GPMC_CONFIG3_4 = 22060514 [ 2.832731] GPMC_CONFIG4_4 = 10057016 [ 2.836492] GPMC_CONFIG5_4 = 10f1111 [ 2.840182] GPMC_CONFIG6_4 = 8f070000 [ 2.843944] GPMC_CONFIG7_4 = f00 [ 2.847299] GPMC_CONFIG1_5 = 1000 [ 2.850711] GPMC_CONFIG2_5 = 101001 [ 2.854298] GPMC_CONFIG3_5 = 22060514 [ 2.858075] GPMC_CONFIG4_5 = 10057016 [ 2.861836] GPMC_CONFIG5_5 = 10f1111 [ 2.865510] GPMC_CONFIG6_5 = 8f070000 [ 2.869345] GPMC_CONFIG7_5 = f00 [ 2.872671] GPMC_CONFIG1_6 = 1000 [ 2.876084] GPMC_CONFIG2_6 = 101001 [ 2.879707] GPMC_CONFIG3_6 = 22060514 [ 2.883470] GPMC_CONFIG4_6 = 10057016 [ 2.887248] GPMC_CONFIG5_6 = 10f1111 [ 2.890923] GPMC_CONFIG6_6 = 8f070000 [ 2.894683] GPMC_CONFIG7_6 = f00 [ 2.898024] GPMC_PREFETCH_CONFIG1 = 4000 [ 2.901959] GPMC_PREFETCH_CONFIG2 = 0 [ 2.905633] GPMC_PREFETCH_CONTROL = 0 [ 2.909337] GPMC_PREFETCH_STATUS = 0 [ 2.912926] GPMC_ECC_CONFIG = 1030 [ 2.916424] GPMC_ECC_CONTROL = 0 [ 2.919677] GPMC_ECC_SIZE_CONFIG = fffff000 [ 2.923875] GPMC_ECC1_RESULT = 0 [ 2.927143] GPMC_ECC2_RESULT = 0 [ 2.930381] GPMC_ECC3_RESULT = 0 [ 2.933618] GPMC_ECC4_RESULT = 0 [ 2.936855] GPMC_ECC5_RESULT = 0 [ 2.940108] GPMC_ECC6_RESULT = 0 [ 2.943346] GPMC_ECC7_RESULT = 0 [ 2.946582] GPMC_ECC8_RESULT = 0 [ 2.949850] GPMC_ECC9_RESULT = 0 [ 2.953088] GPMC_BCH_RESULT0_0 = 0 [ 2.956500] GPMC_BCH_RESULT1_0 = 0 [ 2.959929] GPMC_BCH_RESULT2_0 = 0 [ 2.963343] GPMC_BCH_RESULT3_0 = 0 [ 2.966754] GPMC_BCH_RESULT0_1 = 0 [ 2.970182] GPMC_BCH_RESULT1_1 = 0 [ 2.973595] GPMC_BCH_RESULT2_1 = 0 [ 2.977037] GPMC_BCH_RESULT3_1 = 0 [ 2.980451] GPMC_BCH_RESULT0_2 = 0 [ 2.983863] GPMC_BCH_RESULT1_2 = 0 [ 2.987290] GPMC_BCH_RESULT2_2 = 0 [ 2.990703] GPMC_BCH_RESULT3_2 = 0 [ 2.994115] GPMC_BCH_RESULT0_3 = 0 [ 2.997542] GPMC_BCH_RESULT1_3 = 0 [ 3.000953] GPMC_BCH_RESULT2_3 = 0 [ 3.004366] GPMC_BCH_RESULT3_3 = 0 [ 3.007812] GPMC_BCH_RESULT0_4 = 0 [ 3.011225] GPMC_BCH_RESULT1_4 = 0 [ 3.014636] GPMC_BCH_RESULT2_4 = 0 [ 3.018065] GPMC_BCH_RESULT3_4 = 0 [ 3.021476] GPMC_BCH_RESULT0_5 = 0 [ 3.024889] GPMC_BCH_RESULT1_5 = 0 [ 3.028331] GPMC_BCH_RESULT2_5 = 0 [ 3.031745] GPMC_BCH_RESULT3_5 = 0 [ 3.035158] GPMC_BCH_RESULT0_6 = 0 [ 3.038584] GPMC_BCH_RESULT1_6 = 0 [ 3.041998] GPMC_BCH_RESULT2_6 = 0 [ 3.045410] GPMC_BCH_RESULT3_6 = 0 [ 3.048851] GPMC_BCH_RESULT0_7 = 0 [ 3.052265] GPMC_BCH_RESULT1_7 = 0 [ 3.055677] GPMC_BCH_RESULT2_7 = 0 [ 3.059105] GPMC_BCH_RESULT3_7 = 0 [ 3.062517] GPMC_BCH_SWDATA = 0 [ 3.065753] GPMC_BCH_RESULT4_0 = 0 [ 3.069197] GPMC_BCH_RESULT5_0 = 0 [ 3.072611] GPMC_BCH_RESULT6_0 = 0 [ 3.076023] GPMC_BCH_RESULT4_1 = 0 [ 3.079450] GPMC_BCH_RESULT5_1 = 0 [ 3.082864] GPMC_BCH_RESULT6_1 = 0 [ 3.086276] GPMC_BCH_RESULT4_2 = 0 [ 3.089718] GPMC_BCH_RESULT5_2 = 0 [ 3.093131] GPMC_BCH_RESULT6_2 = 0 [ 3.096544] GPMC_BCH_RESULT4_3 = 0 [ 3.099971] GPMC_BCH_RESULT5_3 = 0 [ 3.103383] GPMC_BCH_RESULT6_3 = 0 [ 3.106794] GPMC_BCH_RESULT4_4 = 0 [ 3.110235] GPMC_BCH_RESULT5_4 = 0 [ 3.113649] GPMC_BCH_RESULT6_4 = 0 [ 3.117076] GPMC_BCH_RESULT4_5 = 0 [ 3.120489] GPMC_BCH_RESULT5_5 = 0 [ 3.123900] GPMC_BCH_RESULT6_5 = 0 [ 3.127327] GPMC_BCH_RESULT4_6 = 0 [ 3.130738] GPMC_BCH_RESULT5_6 = 0 [ 3.134151] GPMC_BCH_RESULT6_6 = 0 [ 3.137592] GPMC_BCH_RESULT4_7 = 0 [ 3.141007] GPMC_BCH_RESULT5_7 = 0 [ 3.144418] GPMC_BCH_RESULT6_7 = 0 [ 3.147844] print_hardware_sfrs [ 3.147844] [ 3.152486] Value of AD0 at location 0x44e10800 is 0x20 [ 3.157763] Value of AD1 at location 0x44e10804 is 0x20 [ 3.163010] Value of AD2 at location 0x44e10808 is 0x20 [ 3.168271] Value of AD3 at location 0x44e1080c is 0x20 [ 3.173517] Value of AD4 at location 0x44e10810 is 0x20 [ 3.178790] Value of AD5 at location 0x44e10814 is 0x20 [ 3.184035] Value of AD6 at location 0x44e10818 is 0x20 [ 3.189295] Value of AD7 at location 0x44e1081c is 0x20 [ 3.194542] Value of AD8 at location 0x44e10820 is 0x20 [ 3.199814] Value of AD9 at location 0x44e10824 is 0x20 [ 3.205061] Value of AD10 at location 0x44e10828 is 0x20 [ 3.210410] Value of AD11 at location 0x44e1082c is 0x20 [ 3.215743] Value of AD12 at location 0x44e10830 is 0x20 [ 3.221105] Value of AD13 at location 0x44e10834 is 0x20 [ 3.226438] Value of AD14 at location 0x44e10838 is 0x20 [ 3.231786] Value of AD15 at location 0x44e1083c is 0x20 [ 3.237157] Value of A16 at location 0x44e108a4 is 0x21 [ 3.242402] Value of A17 at location 0x44e108a8 is 0x21 [ 3.247663] Value of A18 at location 0x44e108ac is 0x21 [ 3.252910] Value of A19 at location 0x44e108b0 is 0x21 [ 3.258169] Value of A20 at location 0x44e108b4 is 0x21 [ 3.263415] Value of A21 at location 0x44e108b8 is 0x21 [ 3.268690] Value of A22 at location 0x44e108bc is 0x21 [ 3.273935] Value of A23 at location 0x44e108e0 is 0x21 [ 3.279195] Value of A24 at location 0x44e108e4 is 0x21 [ 3.284441] Value of A25 at location 0x44e108e8 is 0x21 [ 3.289715] Value of A26 at location 0x44e1086c is 0x24 [ 3.294962] Value of CS0 at location 0x44e1087c is 0x20 [ 3.300310] Value of ALE at location 0x44e10890 is 0x20 [ 3.305730] Value of OEN_REN at location 0x44e10894 is 0x20 [ 3.311353] Value of BEN0_CLE at location 0x44e1089c is 0x20 [ 3.317050] Value of WEN at location 0x44e10898 is 0x20 [ 3.322383] Value of WAIT0 at location 0x44e10870 is 0x20 [ 3.327902] End of print_hardware_sfrs... [ 3.333710] EXT4-fs (mmcblk0p2): mounting ext3 file system using the ext4 subsystem [ 3.446495] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null) [ 3.454981] VFS: Mounted root (ext3 filesystem) on device 179:2. [ 3.471800] devtmpfs: mounted [ 3.476568] Freeing unused kernel memory: 1024K [ 3.931099] systemd[1]: System time before build time, advancing clock. [ 4.004120] systemd[1]: systemd 234 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPT) [ 4.025937] systemd[1]: Detected architecture arm. Welcome to Arago 2018.10! [ 4.059643] systemd[1]: Set hostname to <am335x-evm>. [ 4.753395] random: systemd: uninitialized urandom read (16 bytes read) [ 4.760483] systemd[1]: Reached target Swap. [ OK ] Reached target Swap. [ 4.787479] random: systemd: uninitialized urandom read (16 bytes read) [ 4.794600] systemd[1]: Listening on udev Control Socket. [ OK ] Listening on udev Control Socket. [ 4.827491] random: systemd: uninitialized urandom read (16 bytes read) [ 4.835090] systemd[1]: Started Forward Password Requests to Wall Directory Watch. [ OK ] Started Forward Password Requests to Wall Directory Watch. [ 4.878557] systemd[1]: Listening on Journal Socket. [ OK ] Listening on Journal Socket. [ 4.908595] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ OK ] Started Dispatch Password Requests to Console Directory Watch. [ 4.947739] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe. [ OK ] Listening on /dev/initctl Compatibility Named Pipe. [ 4.988029] systemd[1]: Listening on udev Kernel Socket. [ OK ] Listening on udev Kernel Socket. [ OK ] Listening on Process Core Dump Socket. [ OK ] Created slice System Slice. Mounting Temporary Directory (/tmp)... Starting Load Kernel Modules... [ OK ] Created slice system-serial\x2dgetty.slice. [ OK ] Listening on Journal Socket (/dev/log). [ 5.244154] cryptodev: loading out-of-tree module taints kernel. [ 5.255394] cryptodev: driver 1.9 loaded. [ OK ] Created slice system-getty.slice. Mounting POSIX Message Queue File System... Mounting Kernel Debug File System... Starting Remount Root and Kernel File Systems... [ OK ] Reached target Remote File Systems. [ OK ] Listening on Syslog Socket. [ 5.396034] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null) Starting Create list of required st��…ce nodes for the current kernel... [ OK ] Listening on Network Service Netlink Socket. [ OK ] Reached target Paths. [ OK ] Created slice User and Session Slice. [ OK ] Reached target Slices. Starting Journal Service... [ OK ] Mounted Kernel Debug File System. [ OK ] Mounted POSIX Message Queue File System. [ OK ] Mounted Temporary Directory (/tmp). [ OK ] Started Load Kernel Modules. [ OK ] Started Remount Root and Kernel File Systems. [ OK ] Started Create list of required sta��…vice nodes for the current kernel. [ OK ] Started Journal Service. Starting udev Coldplug all Devices... Starting Create Static Device Nodes in /dev... Starting Flush Journal to Persistent Storage... Mounting Kernel Configuration File System... Starting Apply Kernel Variables... [ OK ] Mounted Kernel Configuration File System. [ OK ] Started Create Static Device Nodes in /dev. [ OK ] Started Apply Kernel Variables. [ 6.382651] systemd-journald[68]: Received request to flush runtime journal from PID 1 Starting udev Kernel Device Manager... [ OK ] Reached target Local File Systems (Pre). Mounting /var/volatile... Mounting /media/ram... [ OK ] Mounted /var/volatile. [ OK ] Mounted /media/ram. [ OK ] Started udev Kernel Device Manager. [ OK ] Started Flush Journal to Persistent Storage. Starting Load/Save Random Seed... [ OK ] Reached target Local File Systems. Starting Create Volatile Files and Directories... [ OK ] Started Load/Save Random Seed. [ OK ] Started Create Volatile Files and Directories. Starting Network Time Synchronization... Starting Update UTMP about System Boot/Shutdown... [ OK ] Started Update UTMP about System Boot/Shutdown. [ OK ] Started Network Time Synchronization. [ OK ] Reached target System Time Synchronized. [ 8.507539] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec [ OK ] Found device /dev/ttyS0. [ OK ] Started udev Coldplug all Devices. [ OK ] Reached target System Initialization. [ OK ] Listening on D-Bus System Message Bus Socket. [ OK ] Started Daily rotation of log files. [ OK ] Started Daily Cleanup of Temporary Directories. [ OK ] Reached target Timers. [ OK ] Listening on RPCbind Server Activation Socket. [ OK ] Reached target Sockets. [ OK ] Reached target Basic System. [ OK ] Reached target Containers. Starting telnetd.service... [ OK ] Started Kernel Logging Service. [ OK ] Started Job spooling tools. [ OK ] Started D-Bus System Message Bus. [ 9.552772] omap-sham 53100000.sham: hw accel on OMAP rev 4.3 [ 9.692003] wkup_m3_ipc 44e11324.wkup_m3_ipc: could not get rproc handle [ 9.723697] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2 [ 9.745428] omap-aes 53500000.aes: will run requests pump with realtime priority [ 9.978328] wkup_m3_ipc 44e11324.wkup_m3_ipc: could not get rproc handle [ 10.013662] PM: Cannot get wkup_m3_ipc handle [ 10.238499] remoteproc remoteproc0: wkup_m3 is available [ 10.272290] PM: Cannot get wkup_m3_ipc handle [ 10.278834] remoteproc remoteproc0: powering up wkup_m3 [ 10.321170] remoteproc remoteproc0: Booting fw image am335x-pm-firmware.elf, size 224628 [ 10.321449] remoteproc remoteproc0: remote processor wkup_m3 is now up [ 10.321477] wkup_m3_ipc 44e11324.wkup_m3_ipc: CM3 Firmware Version = 0x192 Starting RPC Bind Service... Starting Print notice about GPLv3 packages... Starting Login Service... [ OK ] Started Periodic Command Scheduler. [ OK ] Started System Logging Service. Starting Network Service... [ OK ] Started Hardware RNG Entropy Gatherer Daemon. [ OK ] Started telnetd.service. [ 11.605241] random: crng init done [ OK ] Started RPC Bind Service. [ 11.737060] random: 7 urandom warning(s) missed due to ratelimiting [ OK ] Started Network Service. [ OK ] Found device /dev/ttyS3. [ 13.291187] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. [ OK ] Started Login Service. [ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. [ OK ] Reached target Network. Starting Permit User Sessions... Starting Network Name Resolution... Starting thttpd.service... [ OK ] Started Permit User Sessions. [ OK ] Started Serial Getty on ttyS0. [ OK ] Started Getty on tty1. [ OK ] Started Serial Getty on ttyS3. [ OK ] Reached target Login Prompts. Starting Synchronize System and HW clocks... [ OK ] Started thttpd.service. Starting rng-tools.service... [FAILED] Failed to start Synchronize System and HW clocks. See 'systemctl status sync-clocks.service' for details. [ OK ] Started rng-tools.service. [ OK ] Started Network Name Resolution. [ OK ] Reached target Host and Network Name Lookups. [ OK ] Started NFS status monitor for NFSv2/3 locking.. Starting thermal-zone-init.service... [ OK ] Started thermal-zone-init.service. *************************************************************** *************************************************************** NOTICE: This file system contains the following GPLv3 packages: bash binutils cifs-utils cpio dosfstools elfutils gawk gzip libdw1 libelf1 libreadline7 m4 which If you do not wish to distribute GPLv3 components please remove the above packages prior to distribution. This can be done using the opkg remove command. i.e.: opkg remove <package> Where <package> is the name printed in the list above NOTE: If the package is a dependency of another package you will be notified of the dependent packages. You should use the --force-removal-of-dependent-packages option to also remove the dependent packages as well *************************************************************** *************************************************************** [ OK ] Started Print notice about GPLv3 packages. _____ _____ _ _ | _ |___ ___ ___ ___ | _ |___ ___ |_|___ ___| |_ | | _| .'| . | . | | __| _| . | | | -_| _| _| |__|__|_| |__,|_ |___| |__| |_| |___|_| |___|___|_| |___| |___| Arago Project http://arago-project.org am335x-evm ttyS0 Arago 2018.10 am335x-evm ttyS0 am335x-evm login:
Any input/suggestion will be helpful.
Regards
Srinivasa
Hi All,
We are using Kernel V4.14 (From TI SDK 5.03.00.07)
Please provide your input to below questions. It will be helpful for further debugging.
Regards
Srinivasa
Hello Srinivasa,
1. Our EVMs do not really support parallel NOR boot but please feel free to refer to the following document as a reference to setup parallel nor. Also, could you please share where you are copying kernel from (are you doing XIP?)?
2/3. Both Uboot and Kernel use different DTS files. For example, if you navigate to the <u_boot_dir>/arch/arm/dts/am335x-evm.dts, it will define all the peripherals needed for Uboot to execute. Similarly, if you navigate to the <kernel_dir>/arch/arm/boot/dts/am335x-evm.dts, Kernel defines all the peripherals needed for successful Linux boot.
Regards,
Krunal
Hi Krunal,
My partitons are being created and I am using flashcp command to copy the file to partitons.
flashcp -v uImage /dev/mtd2.
In gpmc driver, under gpmc_probe function:
First gpmc_mem_init is done.
and parsing of dts file is done in gpmc_probe_dt_children() later.
Now for gpmc_mem_init() the input is only from bootloader. I am not sure how what is done before gpmc_probe() is being called.
So I want to know if Kernel depends on Bootloader?
Regards
Srinivasa
Regards
Srinivasa
Hello Srinivasa,
Kernel inherits the changes made in Uboot but Kernel will initialize various components based on the properties defined in the DT files. In the omap-gpmc driver, before the function "gpmc_mem_init" is called, the function "gpmc_probe_dt" is executed to extract a couple of properties from the DT files.
Regards,
Krunal
Hi Krunal,
http://processors.wiki.ti.com/index.php/AM335x_General_Purpose_EVM_HW_User_Guide#NOR_Flash_Memory
From the above link, TI has GP daughter board which has NOR flash Numonyx pn#M29W128GL (which is parallel NOR) interfaced to GPMC.
However, it states “boot from NOR is currently not supported on EVM”.
It not "boot from NOR", does TI have tried to write the u-boot and uImage to NOR flash?
What are the features currently TI supports for GP daughter board with NOR flash (Numonyx pn#M29W128GL)?
http://processors.wiki.ti.com/index.php/AM335x_General_Purpose_EVM_HW_User_Guide#SPI_Flash_Memory
Same link has a section for SPI flash memory.
Which is the platform driver used for SPI flash in Kernel V4.14?
I am finding hard to find schematics and other details of GP daughter board (Numonyx pn#M29W128GL & Winbond W25Q64CV) on the net. Please share the details.
Regards
Srinivasa
Hello Srinivasa,
Please refer to the "Design files" section on the following page: http://www.ti.com/tool/TMDXEVM3358#technicaldocuments and the zip files contains all the schematics.
Unfortunately, TI does not support booting from NOR flash and SPI flash. The supported features are listed on the following page: http://software-dl.ti.com/processor-sdk-linux/esd/docs/latest/linux/Foundational_Components_U-Boot.html#supported-features-in-u-boot. In the past, SPI flash was used for booting the board to the Uboot prompt. The flash is only 64Mb and it is not possible to load the filesystem+Kernel into a small memory.
Regards,
Krunal
Hi Krunal,
In my previous post on Sep 25, 2019 4:21 PM, I have mentioned below statements:
New Kernel:
gpmc_driver is being registered using platform_driver_register(), __init int gpmc_init is being invoked, followed by _probe is being called.
physmap_flash_driver is also being registered using platform_driver_register(), __init physmap_init() is being called but not physmap_flash_probe()
Question: Why gpmc_probe() is taken precedence over physmap_flash_probe() in new kernel?
Solution:
In new kernel after enabling below options in kernel configurtions (of course which was not done in old kernel), now I am able to enter physmap_flash_probe(), able to below statment in Kernel log
[ 1.560353] physmap platform flash device: 10000000 at 10000000
CONFIG_MTD_PHYSMAP_COMPAT=y
CONFIG_MTD_PHYSMAP_START=0x10000000
CONFIG_MTD_PHYSMAP_LEN=0x10000000
CONFIG_MTD_PHYSMAP_BANKWIDTH=2
However, I have kernel panic. Find the kernel log attached.
physmap_flash_probe() should be the right platform driver for this, I should fix this kernel panic to proceed further.
Looking for your opinion/suggestions on this please.
Regards
Srinivasa
U-Boot SPL 2018.01-00569-g7b4e473-dirty (Oct 04 2019 - 03:55:19) Trying to boot from MMC1 *** Warning - bad CRC, using default environment U-Boot 2018.01-00569-g7b4e473-dirty (Oct 04 2019 - 03:55:19 +0530) CPU : AM335X-GP rev 2.1 Model: TI AM335x EVM-SK DRAM: 256 MiB 256 MiB OF: translating address: 0070e044 OF: parent translation for: 00000000 OF: one level translation: 0070e044 OF: translating address: 00c00448 OF: parent translation for: 00000000 OF: one level translation: 00c00448 OF: translating address: 00c01a48 OF: parent translation for: 00000000 OF: one level translation: 00c01a48 OF: translating address: 00e01a48 OF: parent translation for: 00000000 OF: one level translation: 00e01a48 OF: translating address: 0090e044 OF: parent translation for: 00000000 OF: one level translation: 0090e044 Flash: OF: translating address: 00000448 OF: parent translation for: 00000000 OF: one level translation: 00000448 device interface is 1 found port 2 chip 2 port 16 bits chip 16 bits ERROR: too many flash sectors [CKR] flash_real_protect() - something tried to protect - but disregarded. Sector#: 0 [CKR] flash_real_protect() - something tried to protect - but disregarded. Sector#: 1 [CKR] flash_real_protect() - something tried to protect - but disregarded. Sector#: 2 256 MiB Srini MMC: OF: translating address: 00000648 OF: parent translation for: 00000000 OF: one level translation: 00000648 OMAP SD/MMC: 0 *** Warning - bad CRC, using default environment Net: No ethernet found. TI-SDK U-Boot Hit any key to stop autoboot: 0 => => => fatload mmc 0:1 0x88000000 am335x-evmsk.dtb 35237 bytes read in 9 ms (3.7 MiB/s) => setenv bootargs console=ttyS0,115200n8 root=/dev/mmcblk0p2 rw rootfstype=ext3 rootwait => fatload mmc 0:1 0x82000000 uImage 3838528 bytes read in 530 ms (6.9 MiB/s) => bootm 0x82000000 - 0x88000000 ## Booting kernel from Legacy Image at 82000000 ... Image Name: Linux-4.14.79-ge669d52447 Created: 2019-10-04 1:39:00 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 3838464 Bytes = 3.7 MiB Load Address: 82000000 Entry Point: 82000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 88000000 Booting using the fdt blob at 0x88000000 Loading Kernel Image ... OK Loading Device Tree to 8df33000, end 8df3e9a4 ... OK Starting kernel ... Srini machid : 3589 Srini r2 : 8df33000 Jumping to 82000000 Bye bye u-boot :( [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 4.14.79-ge669d52447 (pcadmin@pcadmin-OptiPlex-790) (gcc version 7.2.1 20171011 (Linaro GCC 7.2-2017.11)9 [ 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] OF: fdt: Machine model: TI AM335x EVM-SK [ 0.000000] Memory policy: Data cache writeback [ 0.000000] efi: Getting EFI parameters from FDT: [ 0.000000] efi: UEFI not found. [ 0.000000] cma: Reserved 48 MiB at 0x8a800000 [ 0.000000] CPU: All CPU(s) started in SVC mode. [ 0.000000] AM335X ES2.1 (neon) [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 64960 [ 0.000000] Kernel command line: console=ttyS0,115200n8 root=/dev/mmcblk0p2 rw rootfstype=ext3 rootwait [ 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: 197300K/262144K available (8192K kernel code, 315K rwdata, 2464K rodata, 1024K init, 267K bss, 15692K reserve) [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB) [ 0.000000] vmalloc : 0xd0800000 - 0xff800000 ( 752 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 - 0xc0900000 (9184 kB) [ 0.000000] .init : 0xc0c00000 - 0xc0d00000 (1024 kB) [ 0.000000] .data : 0xc0d00000 - 0xc0d4ef80 ( 316 kB) [ 0.000000] .bss : 0xc0d4ef80 - 0xc0d91df4 ( 268 kB) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] Tasks RCU enabled. [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts [ 0.000000] OMAP clockevent source: timer2 at 24000000 Hz [ 0.000032] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns [ 0.000081] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns [ 0.000108] OMAP clocksource: timer1 at 24000000 Hz [ 0.000506] timer_probe: no matching timers found [ 0.000951] Console: colour dummy device 80x30 [ 0.001053] Calibrating delay loop... 289.99 BogoMIPS (lpj=1449984) [ 0.067750] pid_max: default: 32768 minimum: 301 [ 0.068210] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.068249] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.069977] CPU: Testing write buffer coherency: ok [ 0.070115] CPU0: Spectre v2: using BPIALL workaround [ 0.071562] Setting up static identity map for 0x80100000 - 0x80100060 [ 0.071927] Hierarchical SRCU implementation. [ 0.072788] EFI services will not be available. [ 0.076460] devtmpfs: initialized [ 0.096138] random: get_random_u32 called from bucket_table_alloc+0x8c/0x1ac with crng_init=0 [ 0.097083] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3 [ 0.097869] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.097924] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.105383] pinctrl core: initialized pinctrl subsystem [ 0.106917] DMI not present or invalid. [ 0.108070] NET: Registered protocol family 16 [ 0.113408] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.122422] omap_hwmod: rtc: no dt node [ 0.122459] ------------[ cut here ]------------ [ 0.122525] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2494 _init.constprop.20+0x1e0/0x4a4 [ 0.122546] omap_hwmod: rtc: doesn't have mpu register target base [ 0.122565] Modules linked in: [ 0.122612] CPU: 0 PID: 1 Comm: swapper Not tainted 4.14.79-ge669d52447 #1 [ 0.122631] Hardware name: Generic AM33XX (Flattened Device Tree) [ 0.122650] Backtrace: [ 0.122726] [<c010b6f0>] (dump_backtrace) from [<c010b9d4>] (show_stack+0x18/0x1c) [ 0.122760] r7:00000009 r6:00000000 r5:c0a9891c r4:cf03fe20 [ 0.122809] [<c010b9bc>] (show_stack) from [<c08251a8>] (dump_stack+0x24/0x28) [ 0.122857] [<c0825184>] (dump_stack) from [<c0128aa8>] (__warn+0xe8/0x100) [ 0.122896] [<c01289c0>] (__warn) from [<c0128b00>] (warn_slowpath_fmt+0x40/0x48) [ 0.122931] r9:000000d5 r8:c0c3b820 r7:00000000 r6:c0d0ae84 r5:00000000 r4:c0a98bd0 [ 0.122968] [<c0128ac4>] (warn_slowpath_fmt) from [<c0c0ac00>] (_init.constprop.20+0x1e0/0x4a4) [ 0.122993] r3:c0acfb14 r2:c0a98bd0 [ 0.123012] r4:c0d0ae40 [ 0.123047] [<c0c0aa20>] (_init.constprop.20) from [<c0c0b3f8>] (__omap_hwmod_setup_all+0x48/0x108) [ 0.123083] r10:c0d4ef80 r9:000000d5 r8:c0c3b820 r7:c0d4ef80 r6:c0c0b3b0 r5:c0d07ee0 [ 0.123103] r4:c0d0ae40 [ 0.123137] [<c0c0b3b0>] (__omap_hwmod_setup_all) from [<c0101974>] (do_one_initcall+0x4c/0x170) [ 0.123161] r5:00000000 r4:ffffe000 [ 0.123203] [<c0101928>] (do_one_initcall) from [<c0c00eb4>] (kernel_init_freeable+0x148/0x1e4) [ 0.123236] r8:c0c3b820 r7:c0d4ef80 r6:00000003 r5:c0c4c3b4 r4:c0b666fc [ 0.123286] [<c0c00d6c>] (kernel_init_freeable) from [<c08381d8>] (kernel_init+0x10/0x114) [ 0.123322] r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c08381c8 [ 0.123341] r4:00000000 [ 0.123378] [<c08381c8>] (kernel_init) from [<c0107d28>] (ret_from_fork+0x14/0x2c) [ 0.123402] r5:c08381c8 r4:00000000 [ 0.123441] ---[ end trace 63ea1ca06bbd7840 ]--- [ 0.146645] omap_hwmod: debugss: _wait_target_disable failed [ 0.208057] cpuidle: using governor ladder [ 0.208147] cpuidle: using governor menu [ 0.208260] [ 0.208260] [ 0.208260] [ 0.208260] Srini debug @ line 2726 in function gpmc_init in file drivers/memory/omap-gpmc.c [ 0.208260] [ 0.208260] [ 0.219111] OMAP GPIO hardware version 0.1 [ 0.234140] omap-gpmc 50000000.gpmc: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/nor_pins, deferre [ 0.239111] No ATAGs? [ 0.239140] hw-breakpoint: debug architecture 0x4 unsupported. [ 0.273107] edma 49000000.edma: TI EDMA DMA engine driver [ 0.282026] omap_i2c 44e0b000.i2c: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/pinmux_i2c0_pins, e [ 0.282295] media: Linux media interface: v0.10 [ 0.282398] Linux video capture interface: v2.00 [ 0.282664] pps_core: LinuxPPS API ver. 1 registered [ 0.282689] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.282755] PTP clock support registered [ 0.282848] EDAC MC: Ver: 3.0.0 [ 0.283825] dmi: Firmware registration failed. [ 0.284698] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400 [ 0.285408] Advanced Linux Sound Architecture Driver Initialized. [ 0.288021] clocksource: Switched to clocksource timer1 [ 0.308957] NET: Registered protocol family 2 [ 0.310655] TCP established hash table entries: 2048 (order: 1, 8192 bytes) [ 0.310746] TCP bind hash table entries: 2048 (order: 1, 8192 bytes) [ 0.310821] TCP: Hash tables configured (established 2048 bind 2048) [ 0.311036] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.311091] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.311460] NET: Registered protocol family 1 [ 0.312403] RPC: Registered named UNIX socket transport module. [ 0.312435] RPC: Registered udp transport module. [ 0.312454] RPC: Registered tcp transport module. [ 0.312473] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.314245] hw perfevents: no interrupt-affinity property for /pmu, guessing. [ 0.314501] hw perfevents: enabled with armv7_cortex_a8 PMU driver, 5 counters available [ 0.317764] workingset: timestamp_bits=14 max_order=16 bucket_order=2 [ 0.329464] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.331317] NFS: Registering the id_resolver key type [ 0.331428] Key type id_resolver registered [ 0.331450] Key type id_legacy registered [ 0.331562] ntfs: driver 2.1.32 [Flags: R/O]. [ 0.336342] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 0.336388] io scheduler noop registered [ 0.336412] io scheduler deadline registered [ 0.336936] io scheduler cfq registered (default) [ 0.336966] io scheduler mq-deadline registered [ 0.336988] io scheduler kyber registered [ 0.340045] pinctrl-single 44e10800.pinmux: 142 pins at pa f9e10800 size 568 [ 0.470509] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled [ 0.477565] console [ttyS0] disabled [ 0.477757] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 30, base_baud = 3000000) is a 8250 [ 1.298276] console [ttyS0] enabled [ 1.305331] omap_rng 48310000.rng: Random Number Generator ver. 20 [ 1.341334] brd: module loaded [ 1.360736] loop: module loaded [ 1.365017] mtdoops: mtd device (mtddev=name/number) must be supplied [ 1.371721] [ 1.371721] [ 1.371721] [ 1.371721] Srini debug @ line 457 in function cfi_probe_init in file drivers/mtd/chips/cfi_probe.c [ 1.371721] [ 1.371721] [ 1.388359] GPMC_REVISION = 60 [ 1.392313] GPMC_SYSCONFIG = 11 [ 1.396262] GPMC_SYSSTATUS = 1 [ 1.400165] GPMC_IRQSTATUS = 0 [ 1.404030] GPMC_IRQENABLE = 0 [ 1.407893] GPMC_TIMEOUT_CONTROL = 1ff0 [ 1.412051] GPMC_ERR_ADDRESS = 0 [ 1.415914] GPMC_ERR_TYPE = 0 [ 1.419809] GPMC_CONFIG = 200 [ 1.423847] GPMC_STATUS = 101 [ 1.427884] GPMC_CONFIG1_0 = 1210 [ 1.432041] GPMC_CONFIG2_0 = 101000 [ 1.436342] GPMC_CONFIG3_0 = 30301 [ 1.440589] GPMC_CONFIG4_0 = 10041004 [ 1.445064] GPMC_CONFIG5_0 = c1010 [ 1.449308] GPMC_CONFIG6_0 = 8070280 [ 1.453695] GPMC_CONFIG7_0 = 848 [ 1.457737] [ 1.457737] [ 1.457737] [ 1.457737] Srini debug @ line 19 in function register_mtd_chip_driver in file drivers/mtd/chips/chipreg.c [ 1.457737] [ 1.457737] [ 1.474927] [ 1.474927] [ 1.474927] [ 1.474927] Srini debug @ line 19 in function register_mtd_chip_driver in file drivers/mtd/chips/chipreg.c [ 1.474927] [ 1.474927] [ 1.492116] [ 1.492116] [ 1.492116] [ 1.492116] Srini debug @ line 19 in function register_mtd_chip_driver in file drivers/mtd/chips/chipreg.c [ 1.492116] [ 1.492116] [ 1.510005] [ 1.510005] [ 1.510005] [ 1.510005] Srini debug @ line 105 in function physmap_flash_probe in file drivers/mtd/maps/physmap.c [ 1.510005] [ 1.510005] [ 1.526815] [ 1.526815] [ 1.526815] [ 1.526815] Srini debug @ line 106 in function physmap_flash_probe in file drivers/mtd/maps/physmap.c [ 1.526815] [ 1.526815] [ 1.543576] [ 1.543576] [ 1.543576] [ 1.543576] Srini debug @ line 107 in function physmap_flash_probe in file drivers/mtd/maps/physmap.c [ 1.543576] [ 1.543576] [ 1.560353] physmap platform flash device: 10000000 at 10000000 [ 1.581131] [ 1.581131] [ 1.581131] [ 1.581131] Srini debug @ line 64 in function do_map_probe in file drivers/mtd/chips/chipreg.c [ 1.581131] [ 1.581131] [ 1.597275] [ 1.597275] [ 1.597275] [ 1.597275] Srini debug @ line 37 in function get_mtd_chip_driver in file drivers/mtd/chips/chipreg.c [ 1.597275] [ 1.597275] [ 1.614033] [ 1.614033] [ 1.614033] [ 1.614033] Srini debug @ line 445 in function cfi_probe in file drivers/mtd/chips/cfi_probe.c [ 1.614033] [ 1.614033] [ 1.630179] [ 1.630179] [ 1.630179] [ 1.630179] Srini debug @ line 53 in function mtd_do_chip_probe in file drivers/mtd/chips/gen_probe.c [ 1.630179] [ 1.630179] [ 1.646940] GPMC_REVISION = 60 [ 1.650928] GPMC_SYSCONFIG = 11 [ 1.654879] GPMC_SYSSTATUS = 1 [ 1.658776] GPMC_IRQSTATUS = 0 [ 1.662640] GPMC_IRQENABLE = 0 [ 1.666501] GPMC_TIMEOUT_CONTROL = 1ff0 [ 1.670657] GPMC_ERR_ADDRESS = 0 [ 1.674520] GPMC_ERR_TYPE = 0 [ 1.678415] GPMC_CONFIG = 200 [ 1.682454] GPMC_STATUS = 101 [ 1.686490] GPMC_CONFIG1_0 = 1210 [ 1.690647] GPMC_CONFIG2_0 = 101000 [ 1.694946] GPMC_CONFIG3_0 = 30301 [ 1.699191] GPMC_CONFIG4_0 = 10041004 [ 1.703664] GPMC_CONFIG5_0 = c1010 [ 1.707874] GPMC_CONFIG6_0 = 8070280 [ 1.712291] GPMC_CONFIG7_0 = 848 [ 1.716335] [ 1.716335] [ 1.716335] [ 1.716335] Srini debug @ line 108 in function genprobe_ident_chips in file drivers/mtd/chips/gen_probe.c [ 1.716335] [ 1.716335] [ 1.733434] [ 1.733434] [ 1.733434] [ 1.733434] Srini debug @ line 226 in function genprobe_new_chip in file drivers/mtd/chips/gen_probe.c [ 1.733434] [ 1.733434] [ 1.750275] [ 1.750275] [ 1.750275] [ 1.750275] Srini debug @ line 243 in function genprobe_new_chip in file drivers/mtd/chips/gen_probe.c [ 1.750275] [ 1.750275] [ 1.767113] [ 1.767113] [ 1.767113] [ 1.767113] Srini debug @ line 101 in function cfi_probe_chip in file drivers/mtd/chips/cfi_probe.c [ 1.767113] [ 1.767113] [ 1.783706] Unhandled fault: external abort on non-linefetch (0x1028) at 0xd1000020 [ 1.791413] pgd = c0004000 [ 1.794143] [d1000020] *pgd=10011452(bad) [ 1.798214] Internal error: : 1028 [#1] PREEMPT ARM [ 1.803125] Modules linked in: [ 1.806228] CPU: 0 PID: 1 Comm: swapper Tainted: G W 4.14.79-ge669d52447 #1 [ 1.814365] Hardware name: Generic AM33XX (Flattened Device Tree) [ 1.820499] task: cf040000 task.stack: cf03e000 [ 1.825098] PC is at cfi_qry_present+0xdc/0x140 [ 1.829670] LR is at cfi_build_cmd+0x38/0xb8 [ 1.833972] pc : [<c0586694>] lr : [<c0586264>] psr: 60000013 [ 1.840278] sp : cf03fbb8 ip : 00000006 fp : cf03fbe4 [ 1.845538] r10: c0967678 r9 : c0ae66d4 r8 : 00000000 [ 1.850799] r7 : cf03fc64 r6 : cf4f6024 r5 : 00000002 r4 : 00000000 [ 1.857369] r3 : d1000000 r2 : d1000020 r1 : 00000020 r0 : 00005959 [ 1.863943] Flags: nZCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment none [ 1.871125] Control: 10c5387d Table: 80004019 DAC: 00000051 [ 1.876909] Process swapper (pid: 1, stack limit = 0xcf03e208) [ 1.882782] Stack: (0xcf03fbb8 to 0xcf040000) [ 1.887179] fba0: c0586460 00005151 [ 1.895423] fbc0: 00005252 00005959 cf03fc64 cf4f6024 00000000 00000000 cf03fc14 cf03fbe8 [ 1.903667] fbe0: c0586770 c05865c4 cf03fc64 00000001 00000000 cf03fc0c 00000001 cf03fc64 [ 1.911911] fc00: 00000000 cf4f6024 cf03fc54 cf03fc18 c05852ac c0586704 00000002 c0ae5284 [ 1.920155] fc20: cf03fc44 cf03fc30 c01690bc 00000001 00000001 cf4f6024 00000002 c0ae5284 [ 1.928399] fc40: c0ae66d4 c0967678 cf03fccc cf03fc58 c058d9a4 c0585254 c0168458 c0d2f694 [ 1.936642] fc60: c0ae5284 00000000 00000000 00000002 00000001 00000000 00000000 00000000 [ 1.944883] fc80: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 1.953126] fca0: c01690bc cf4f6024 c0ae5cbc cf4f6024 c0d2f848 00000000 cf4f6010 cf4f6024 [ 1.961370] fcc0: cf03fce4 cf03fcd0 c0585240 c058d678 c0d2f69c c0ae5cbc cf03fd04 cf03fce8 [ 1.969613] fce0: c058514c c0585210 c09676b0 c0d2fa5c cf4f6010 c0d2f848 cf03fd54 cf03fd08 [ 1.977856] fd00: c058e650 c058510c cf49a600 00000000 cf03fd44 cf4f6010 c058e290 c0d0d60c [ 1.986101] fd20: c0ae68d8 c0d2f838 c0d2f850 c0d2f848 ffffffed c0d2f9f4 fffffdfb c0d2f9f4 [ 1.994343] fd40: 00000000 00000000 cf03fd74 cf03fd58 c0548b6c c058e358 c0d2f848 c0d88b48 [ 2.002587] fd60: c0d88b4c 00000000 cf03fda4 cf03fd78 c0547038 c0548b20 00000000 c0d2f9f4 [ 2.010830] fd80: c0d2f848 cf03fdf0 00000001 c0d88b24 00000000 00000000 cf03fdc4 cf03fda8 [ 2.019074] fda0: c0547254 c0546e2c 00000000 cf03fdf0 c05471b4 00000001 cf03fdec cf03fdc8 [ 2.027317] fdc0: c05452ec c05471c0 cf003e9c cf4f45b4 c082a8d4 c0d2f848 c0d2f87c c0d2f848 [ 2.035562] fde0: cf03fe14 cf03fdf0 c0546cfc c05452ac c0d2f848 00000001 c0d2f850 c0d2d408 [ 2.043805] fe00: c0d2f848 c0d2f848 cf03fe24 cf03fe18 c05472d4 c0546c50 cf03fe44 cf03fe28 [ 2.052049] fe20: c0546260 c05472cc c0d2f850 00000000 c0d2d288 c0d2f848 cf03fe84 cf03fe48 [ 2.060292] fe40: c05443f4 c05461e0 cf03fe74 cf03fe58 c012e158 c012ce2c c0541e48 00000001 [ 2.068537] fe60: c0d2fa3c c0d2f838 c0d0d60c c0d0d62c c0d2f848 c0d4ef80 cf03feac cf03fe88 [ 2.076780] fe80: c0548968 c0544048 c0d2f838 00000000 c0c2367c c0d4ef80 c0c3b830 000000d5 [ 2.085023] fea0: cf03fec4 cf03feb0 c054952c c054885c 00000000 00000000 cf03fedc cf03fec8 [ 2.093266] fec0: c0c236a8 c0549510 ffffe000 00000000 cf03ff4c cf03fee0 c0101974 c0c23688 [ 2.101511] fee0: cf03ff4c cf03fef0 c0145400 c0c00624 c0a9c3d4 c0a9c3b4 c0a9c400 c0aa654c [ 2.109755] ff00: 00000000 c0a9c38c 00000006 00000006 c0aeddac c0b666fc cffffc7e 00000000 [ 2.117999] ff20: 00000000 c0b666fc 00000007 c0b666fc c0c4c930 00000007 c0d4ef80 c0c3b830 [ 2.126242] ff40: cf03ff94 cf03ff50 c0c00eb4 c0101934 00000006 00000006 00000000 c0c00618 [ 2.134486] ff60: 00000000 c0c00618 00000000 00000000 c08381c8 00000000 00000000 00000000 [ 2.142729] ff80: 00000000 00000000 cf03ffac cf03ff98 c08381d8 c0c00d78 00000000 c08381c8 [ 2.150971] ffa0: 00000000 cf03ffb0 c0107d28 c08381d4 00000000 00000000 00000000 00000000 [ 2.159212] ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 2.167455] ffe0: 00000000 00000000 00000000 00000000 00000013 00000000 00000000 00000000 [ 2.175674] Backtrace: [ 2.178179] [<c05865b8>] (cfi_qry_present) from [<c0586770>] (cfi_qry_mode_on+0x78/0x2c4) [ 2.186416] r7:00000000 r6:00000000 r5:cf4f6024 r4:cf03fc64 [ 2.192133] [<c05866f8>] (cfi_qry_mode_on) from [<c05852ac>] (cfi_probe_chip+0x64/0xb1c) [ 2.200281] r7:cf4f6024 r6:00000000 r5:cf03fc64 r4:00000001 [ 2.205997] [<c0585248>] (cfi_probe_chip) from [<c058d9a4>] (mtd_do_chip_probe+0x338/0x748) [ 2.214412] r10:c0967678 r9:c0ae66d4 r8:c0ae5284 r7:00000002 r6:cf4f6024 r5:00000001 [ 2.222287] r4:00000001 [ 2.224858] [<c058d66c>] (mtd_do_chip_probe) from [<c0585240>] (cfi_probe+0x3c/0x44) [ 2.232663] r10:cf4f6024 r9:cf4f6010 r8:00000000 r7:c0d2f848 r6:cf4f6024 r5:c0ae5cbc [ 2.240539] r4:cf4f6024 [ 2.243112] [<c0585204>] (cfi_probe) from [<c058514c>] (do_map_probe+0x4c/0xa0) [ 2.250469] r5:c0ae5cbc r4:c0d2f69c [ 2.254088] [<c0585100>] (do_map_probe) from [<c058e650>] (physmap_flash_probe+0x304/0x354) [ 2.262496] r7:c0d2f848 r6:cf4f6010 r5:c0d2fa5c r4:c09676b0 [ 2.268215] [<c058e34c>] (physmap_flash_probe) from [<c0548b6c>] (platform_drv_probe+0x58/0xb4) [ 2.276979] r10:00000000 r9:00000000 r8:c0d2f9f4 r7:fffffdfb r6:c0d2f9f4 r5:ffffffed [ 2.284855] r4:c0d2f848 [ 2.287426] [<c0548b14>] (platform_drv_probe) from [<c0547038>] (driver_probe_device+0x218/0x2e4) [ 2.296358] r7:00000000 r6:c0d88b4c r5:c0d88b48 r4:c0d2f848 [ 2.302069] [<c0546e20>] (driver_probe_device) from [<c0547254>] (__device_attach_driver+0xa0/0xd4) [ 2.311183] r10:00000000 r9:00000000 r8:c0d88b24 r7:00000001 r6:cf03fdf0 r5:c0d2f848 [ 2.319061] r4:c0d2f9f4 r3:00000000 [ 2.322694] [<c05471b4>] (__device_attach_driver) from [<c05452ec>] (bus_for_each_drv+0x4c/0x9c) [ 2.331540] r7:00000001 r6:c05471b4 r5:cf03fdf0 r4:00000000 [ 2.337252] [<c05452a0>] (bus_for_each_drv) from [<c0546cfc>] (__device_attach+0xb8/0x11c) [ 2.345571] r6:c0d2f848 r5:c0d2f87c r4:c0d2f848 [ 2.350233] [<c0546c44>] (__device_attach) from [<c05472d4>] (device_initial_probe+0x14/0x18) [ 2.358819] r7:c0d2f848 r6:c0d2f848 r5:c0d2d408 r4:c0d2f850 [ 2.364528] [<c05472c0>] (device_initial_probe) from [<c0546260>] (bus_probe_device+0x8c/0x94) [ 2.373206] [<c05461d4>] (bus_probe_device) from [<c05443f4>] (device_add+0x3b8/0x5a8) [ 2.381179] r7:c0d2f848 r6:c0d2d288 r5:00000000 r4:c0d2f850 [ 2.386893] [<c054403c>] (device_add) from [<c0548968>] (platform_device_add+0x118/0x22c) [ 2.395135] r10:c0d4ef80 r9:c0d2f848 r8:c0d0d62c r7:c0d0d60c r6:c0d2f838 r5:c0d2fa3c [ 2.403011] r4:00000001 [ 2.405584] [<c0548850>] (platform_device_add) from [<c054952c>] (platform_device_register+0x28/0x2c) [ 2.414871] r9:000000d5 r8:c0c3b830 r7:c0d4ef80 r6:c0c2367c r5:00000000 r4:c0d2f838 [ 2.422678] [<c0549504>] (platform_device_register) from [<c0c236a8>] (physmap_init+0x2c/0x48) [ 2.431343] r5:00000000 r4:00000000 [ 2.434962] [<c0c2367c>] (physmap_init) from [<c0101974>] (do_one_initcall+0x4c/0x170) [ 2.442931] r5:00000000 r4:ffffe000 [ 2.446556] [<c0101928>] (do_one_initcall) from [<c0c00eb4>] (kernel_init_freeable+0x148/0x1e4) [ 2.455318] r8:c0c3b830 r7:c0d4ef80 r6:00000007 r5:c0c4c930 r4:c0b666fc [ 2.462093] [<c0c00d6c>] (kernel_init_freeable) from [<c08381d8>] (kernel_init+0x10/0x114) [ 2.470422] r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c08381c8 [ 2.478297] r4:00000000 [ 2.480878] [<c08381c8>] (kernel_init) from [<c0107d28>] (ret_from_fork+0x14/0x2c) [ 2.488496] r5:c08381c8 r4:00000000 [ 2.492115] Code: e24bd01c e89da8f0 e596300c e0832001 (e1d220b0) [ 2.498270] ---[ end trace 63ea1ca06bbd7841 ]--- [ 2.503086] Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b [ 2.503086] [ 2.512297] ---[ end Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b [ 2.512297] [ 3.438022] random: fast init done [ 134.628118] random: crng init done
Hello Srinivasa,
Based on your kernel logs, I am observing two kernel panics and lets ensure they are not related to each other. The first panic is at the following location:
[ 0.122422] omap_hwmod: rtc: no dt node [ 0.122459] ------------[ cut here ]------------ [ 0.122525] WARNING: CPU: 0 PID: 1 at arch/arm/mach-omap2/omap_hwmod.c:2494 _init.constprop.20+0x1e0/0x4a4 [ 0.122546] omap_hwmod: rtc: doesn't have mpu register target base [ 0.122565] Modules linked in: [ 0.122612] CPU: 0 PID: 1 Comm: swapper Not tainted 4.14.79-ge669d52447 #1 [ 0.122631] Hardware name: Generic AM33XX (Flattened Device Tree) [ 0.122650] Backtrace: [ 0.122726] [<c010b6f0>] (dump_backtrace) from [<c010b9d4>] (show_stack+0x18/0x1c) [ 0.122760] r7:00000009 r6:00000000 r5:c0a9891c r4:cf03fe20 [ 0.122809] [<c010b9bc>] (show_stack) from [<c08251a8>] (dump_stack+0x24/0x28) [ 0.122857] [<c0825184>] (dump_stack) from [<c0128aa8>] (__warn+0xe8/0x100) [ 0.122896] [<c01289c0>] (__warn) from [<c0128b00>] (warn_slowpath_fmt+0x40/0x48) [ 0.122931] r9:000000d5 r8:c0c3b820 r7:00000000 r6:c0d0ae84 r5:00000000 r4:c0a98bd0 [ 0.122968] [<c0128ac4>] (warn_slowpath_fmt) from [<c0c0ac00>] (_init.constprop.20+0x1e0/0x4a4) [ 0.122993] r3:c0acfb14 r2:c0a98bd0 [ 0.123012] r4:c0d0ae40 [ 0.123047] [<c0c0aa20>] (_init.constprop.20) from [<c0c0b3f8>] (__omap_hwmod_setup_all+0x48/0x108) [ 0.123083] r10:c0d4ef80 r9:000000d5 r8:c0c3b820 r7:c0d4ef80 r6:c0c0b3b0 r5:c0d07ee0 [ 0.123103] r4:c0d0ae40 [ 0.123137] [<c0c0b3b0>] (__omap_hwmod_setup_all) from [<c0101974>] (do_one_initcall+0x4c/0x170) [ 0.123161] r5:00000000 r4:ffffe000 [ 0.123203] [<c0101928>] (do_one_initcall) from [<c0c00eb4>] (kernel_init_freeable+0x148/0x1e4) [ 0.123236] r8:c0c3b820 r7:c0d4ef80 r6:00000003 r5:c0c4c3b4 r4:c0b666fc [ 0.123286] [<c0c00d6c>] (kernel_init_freeable) from [<c08381d8>] (kernel_init+0x10/0x114) [ 0.123322] r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c08381c8 [ 0.123341] r4:00000000 [ 0.123378] [<c08381c8>] (kernel_init) from [<c0107d28>] (ret_from_fork+0x14/0x2c) [ 0.123402] r5:c08381c8 r4:00000000 [ 0.123441] ---[ end trace 63ea1ca06bbd7840 ]---
In order to fix the above issue, please refer to the following response from my colleague. Also, if we disable the gpmc/nor entry from the dts file, are you able to boot to kernel without any problems? Based on the kernel command line, I am assuming you are booting kernel from the SD card.
Regards,
Krunal
Hi Krunal,
I have disabled in "am33xx_l4_wkup__rtc entry" in "arch/arm/mach-omap2/omap_hwmod_33xx_data.c". RTC related error in kernel log "omap_hwmod: rtc: no dt node" is not found.
I have disabled the gpmc/nor entry from the dts file by addeing below statement to nor child node. (dts file attached: nor_child_node_disabled.dts)
status = "disabled";
still we have Kernel panic problem.
I have deleted the gpmc/nor entry from the dts file (dts file attached: nor_child_node_deleted.dts)
still we have Kernel panic problem.
Find the kernel log file attached.
Yes, we are booting kernel from SD card.
Regards
Srinivasa
Hi,
This thread has undergone a very long discussion.
In my post on "8/30/2019 2:45:00 PM", we had problem of "NOR falsh is mounted as MTD_ROM". This was resolved by making GPMC config registers similar to old kernel (or U-boot) and later cfi_flash_probe function was success.
Here we are able to boot the kernel without any problem.
Still we had below problems:
Becasue of below reason, updated the kernel configuration.
Old kernel:
Platform driver init function "physmap_init" is being called followed by physical map probe function "physmap_flash_probe".
New Kernel:
Platform driver init function "physmap_init" is being called but physical map probe function "physmap_flash_probe" is not being called!!!
After updting the Kernel configuration with below parameters, physmap_flash_probe() is being called.
New kernel configurtion is updated with below options:
CONFIG_MTD_PHYSMAP_COMPAT=y
CONFIG_MTD_PHYSMAP_START=0x10000000
CONFIG_MTD_PHYSMAP_LEN=0x10000000
CONFIG_MTD_PHYSMAP_BANKWIDTH=2
Now I have kernel panic with above configuration enabled.
I have attached the brief overview of our discussion in the attached spreadsheet.
I have printed GPMC and control registers (pin mux registers) at u-boot and at diffrent stages in kernel. Please find the log attached.
Note: GPMC_CONFIG7_0 = 0x848.
In u-boot we have NOR FLASH configured for 128 Mb and later in kernel we are trying to make it as 256 MB (ie. GPMC_CONFIG7_0 = 0x50).
Atlease with this configuration, we expect erase/write should be fine.
Question:
Also, will you boot Kernel (XIP) from the NOR device and are you using a muxed or non-muxed flash device?
Currently we are booting kernel from SD-card and trying to write u-boot and kernel to NOR flash.
Flash is non-muxed whereas the interface logic has muxed based addressing.
Regards
Srinivasa
U-Boot SPL 2018.01-00569-g7b4e473-dirty (Oct 10 2019 - 03:06:53) Trying to boot from MMC1 *** Warning - bad CRC, using default environment U-Boot 2018.01-00569-g7b4e473-dirty (Oct 10 2019 - 03:06:53 +0530) CPU : AM335X-GP rev 2.1 Model: TI AM335x EVM-SK DRAM: 256 MiB 256 MiB OF: translating address: 0070e044 OF: parent translation for: 00000000 OF: one level translation: 0070e044 OF: translating address: 00c00448 OF: parent translation for: 00000000 OF: one level translation: 00c00448 OF: translating address: 00c01a48 OF: parent translation for: 00000000 OF: one level translation: 00c01a48 OF: translating address: 00e01a48 OF: parent translation for: 00000000 OF: one level translation: 00e01a48 OF: translating address: 0090e044 OF: parent translation for: 00000000 OF: one level translation: 0090e044 Flash: OF: translating address: 00000448 OF: parent translation for: 00000000 OF: one level translation: 00000448 device interface is 1 found port 2 chip 2 port 16 bits chip 16 bits ERROR: too many flash sectors [CKR] flash_real_protect() - something tried to protect - but disregarded. Sector#: 0 [CKR] flash_real_protect() - something tried to protect - but disregarded. Sector#: 1 [CKR] flash_real_protect() - something tried to protect - but disregarded. Sector#: 2 256 MiB Srini MMC: OF: translating address: 00000648 OF: parent translation for: 00000000 OF: one level translation: 00000648 OMAP SD/MMC: 0 *** Warning - bad CRC, using default environment Net: No ethernet found. TI-SDK U-Boot Hit any key to stop autoboot: 0 => => => print_gpmc_regs GPMC_REVISION = 60 GPMC_SYSCONFIG = 8 GPMC_SYSSTATUS = 1 GPMC_IRQSTATUS = 0 GPMC_IRQENABLE = 0 GPMC_TIMEOUT_CONTROL = 1ff0 GPMC_ERR_ADDRESS = 0 GPMC_ERR_TYPE = 0 GPMC_CONFIG = 200 GPMC_STATUS = 101 GPMC_CONFIG1_0 = 1210 GPMC_CONFIG2_0 = 101000 GPMC_CONFIG3_0 = 30301 GPMC_CONFIG4_0 = 10041004 GPMC_CONFIG5_0 = c1010 GPMC_CONFIG6_0 = 8070280 GPMC_CONFIG7_0 = 848 GPMC_NAND_COMMAND_0 = 0 GPMC_NAND_ADDRESS_0 = 0 GPMC_NAND_DATA_0 = 0 GPMC_CONFIG1_1 = 1000 GPMC_CONFIG2_1 = 101001 GPMC_CONFIG3_1 = 22060514 GPMC_CONFIG4_1 = 10057016 GPMC_CONFIG5_1 = 10f1111 GPMC_CONFIG6_1 = 8f070000 GPMC_CONFIG7_1 = f00 GPMC_CONFIG1_2 = 1000 GPMC_CONFIG2_2 = 101001 GPMC_CONFIG3_2 = 22060514 GPMC_CONFIG4_2 = 10057016 GPMC_CONFIG5_2 = 10f1111 GPMC_CONFIG6_2 = 8f070000 GPMC_CONFIG7_2 = f00 GPMC_CONFIG1_3 = 1000 GPMC_CONFIG2_3 = 101001 GPMC_CONFIG3_3 = 22060514 GPMC_CONFIG4_3 = 10057016 GPMC_CONFIG5_3 = 10f1111 GPMC_CONFIG6_3 = 8f070000 GPMC_CONFIG7_3 = f00 GPMC_CONFIG1_4 = 1000 GPMC_CONFIG2_4 = 101001 GPMC_CONFIG3_4 = 22060514 GPMC_CONFIG4_4 = 10057016 GPMC_CONFIG5_4 = 10f1111 GPMC_CONFIG6_4 = 8f070000 GPMC_CONFIG7_4 = f00 GPMC_CONFIG1_5 = 1000 GPMC_CONFIG2_5 = 101001 GPMC_CONFIG3_5 = 22060514 GPMC_CONFIG4_5 = 10057016 GPMC_CONFIG5_5 = 10f1111 GPMC_CONFIG6_5 = 8f070000 GPMC_CONFIG7_5 = f00 GPMC_CONFIG1_6 = 1000 GPMC_CONFIG2_6 = 101001 GPMC_CONFIG3_6 = 22060514 GPMC_CONFIG4_6 = 10057016 GPMC_CONFIG5_6 = 10f1111 GPMC_CONFIG6_6 = 8f070000 GPMC_CONFIG7_6 = f00 GPMC_PREFETCH_CONFIG1 = 4000 GPMC_PREFETCH_CONFIG2 = 0 GPMC_PREFETCH_CONTROL = 0 GPMC_PREFETCH_STATUS = 0 GPMC_ECC_CONFIG = 1030 GPMC_ECC_CONTROL = 0 GPMC_ECC_SIZE_CONFIG = fffff000 GPMC_ECC1_RESULT = 0 GPMC_ECC2_RESULT = 0 GPMC_ECC3_RESULT = 0 GPMC_ECC4_RESULT = 0 GPMC_ECC5_RESULT = 0 GPMC_ECC6_RESULT = 0 GPMC_ECC7_RESULT = 0 GPMC_ECC8_RESULT = 0 GPMC_ECC9_RESULT = 0 GPMC_BCH_RESULT0_0 = 0 GPMC_BCH_RESULT1_0 = 0 GPMC_BCH_RESULT2_0 = 0 GPMC_BCH_RESULT3_0 = 0 GPMC_BCH_RESULT0_1 = 0 GPMC_BCH_RESULT1_1 = 0 GPMC_BCH_RESULT2_1 = 0 GPMC_BCH_RESULT3_1 = 0 GPMC_BCH_RESULT0_2 = 0 GPMC_BCH_RESULT1_2 = 0 GPMC_BCH_RESULT2_2 = 0 GPMC_BCH_RESULT3_2 = 0 GPMC_BCH_RESULT0_3 = 0 GPMC_BCH_RESULT1_3 = 0 GPMC_BCH_RESULT2_3 = 0 GPMC_BCH_RESULT3_3 = 0 GPMC_BCH_RESULT0_4 = 0 GPMC_BCH_RESULT1_4 = 0 GPMC_BCH_RESULT2_4 = 0 GPMC_BCH_RESULT3_4 = 0 GPMC_BCH_RESULT0_5 = 0 GPMC_BCH_RESULT1_5 = 0 GPMC_BCH_RESULT2_5 = 0 GPMC_BCH_RESULT3_5 = 0 GPMC_BCH_RESULT0_6 = 0 GPMC_BCH_RESULT1_6 = 0 GPMC_BCH_RESULT2_6 = 0 GPMC_BCH_RESULT3_6 = 0 GPMC_BCH_RESULT0_7 = 0 GPMC_BCH_RESULT1_7 = 0 GPMC_BCH_RESULT2_7 = 0 GPMC_BCH_RESULT3_7 = 0 GPMC_BCH_SWDATA = 0 GPMC_BCH_RESULT4_0 = 0 GPMC_BCH_RESULT5_0 = 0 GPMC_BCH_RESULT6_0 = 0 GPMC_BCH_RESULT4_1 = 0 GPMC_BCH_RESULT5_1 = 0 GPMC_BCH_RESULT6_1 = 0 GPMC_BCH_RESULT4_2 = 0 GPMC_BCH_RESULT5_2 = 0 GPMC_BCH_RESULT6_2 = 0 GPMC_BCH_RESULT4_3 = 0 GPMC_BCH_RESULT5_3 = 0 GPMC_BCH_RESULT6_3 = 0 GPMC_BCH_RESULT4_4 = 0 GPMC_BCH_RESULT5_4 = 0 GPMC_BCH_RESULT6_4 = 0 GPMC_BCH_RESULT4_5 = 0 GPMC_BCH_RESULT5_5 = 0 GPMC_BCH_RESULT6_5 = 0 GPMC_BCH_RESULT4_6 = 0 GPMC_BCH_RESULT5_6 = 0 GPMC_BCH_RESULT6_6 = 0 GPMC_BCH_RESULT4_7 = 0 GPMC_BCH_RESULT5_7 = 0 GPMC_BCH_RESULT6_7 = 0 => print_norpins_regs Value of AD0 at location 0x44e10800 is 0x20 Value of AD1 at location 0x44e10804 is 0x20 Value of AD2 at location 0x44e10808 is 0x20 Value of AD3 at location 0x44e1080c is 0x20 Value of AD4 at location 0x44e10810 is 0x20 Value of AD5 at location 0x44e10814 is 0x20 Value of AD6 at location 0x44e10818 is 0x20 Value of AD7 at location 0x44e1081c is 0x20 Value of AD8 at location 0x44e10820 is 0x20 Value of AD9 at location 0x44e10824 is 0x20 Value of AD10 at location 0x44e10828 is 0x20 Value of AD11 at location 0x44e1082c is 0x20 Value of AD12 at location 0x44e10830 is 0x20 Value of AD13 at location 0x44e10834 is 0x20 Value of AD14 at location 0x44e10838 is 0x20 Value of AD15 at location 0x44e1083c is 0x20 Value of A16 at location 0x44e108a4 is 0x21 Value of A17 at location 0x44e108a8 is 0x21 Value of A18 at location 0x44e108ac is 0x21 Value of A19 at location 0x44e108b0 is 0x21 Value of A20 at location 0x44e108b4 is 0x21 Value of A21 at location 0x44e108b8 is 0x21 Value of A22 at location 0x44e108bc is 0x21 Value of A23 at location 0x44e108e0 is 0x21 Value of A24 at location 0x44e108e4 is 0x21 Value of A25 at location 0x44e108e8 is 0x21 Value of A26 at location 0x44e1086c is 0x24 Value of CS0 at location 0x44e1087c is 0x20 Value of ALE at location 0x44e10890 is 0x20 Value of OEN_REN at location 0x44e10894 is 0x20 Value of BEN0_CLE at location 0x44e1089c is 0x20 Value of WEN at location 0x44e10898 is 0x20 Value of WAIT0 at location 0x44e10870 is 0x20 => fatload mmc 0:1 0x88000000 am335x-evmsk.dtb 33629 bytes read in 8 ms (4 MiB/s) => setenv bootargs console=ttyS0,115200n8 root=/dev/mmcblk0p2 rw rootfstype=ext3 rootwait => fatload mmc 0:1 0x82000000 uImage 3842624 bytes read in 532 ms (6.9 MiB/s) => bootm 0x82000000 - 0x88000000 ## Booting kernel from Legacy Image at 82000000 ... Image Name: Linux-4.14.79-ge669d52447 Created: 2019-10-10 2:20:40 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 3842560 Bytes = 3.7 MiB Load Address: 82000000 Entry Point: 82000000 Verifying Checksum ... OK ## Flattened Device Tree blob at 88000000 Booting using the fdt blob at 0x88000000 Loading Kernel Image ... OK Loading Device Tree to 8df33000, end 8df3e35c ... OK Starting kernel ... Srini machid : 3589 Srini r2 : 8df33000 Jumping to 82000000 Bye bye u-boot :( [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 4.14.79-ge669d52447 (pcadmin@pcadmin-OptiPlex-790) (gcc version 7.2.1 20171011 (Linaro GCC 7.2-2017.11)9 [ 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] OF: fdt: Machine model: TI AM335x EVM-SK [ 0.000000] Memory policy: Data cache writeback [ 0.000000] efi: Getting EFI parameters from FDT: [ 0.000000] efi: UEFI not found. [ 0.000000] cma: Reserved 48 MiB at 0x8a800000 [ 0.000000] CPU: All CPU(s) started in SVC mode. [ 0.000000] AM335X ES2.1 (neon) [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 64960 [ 0.000000] Kernel command line: console=ttyS0,115200n8 root=/dev/mmcblk0p2 rw rootfstype=ext3 rootwait [ 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: 197300K/262144K available (8192K kernel code, 315K rwdata, 2468K rodata, 1024K init, 267K bss, 15692K reserve) [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB) [ 0.000000] vmalloc : 0xd0800000 - 0xff800000 ( 752 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 - 0xc0900000 (9184 kB) [ 0.000000] .init : 0xc0c00000 - 0xc0d00000 (1024 kB) [ 0.000000] .data : 0xc0d00000 - 0xc0d4ef80 ( 316 kB) [ 0.000000] .bss : 0xc0d4ef80 - 0xc0d91e04 ( 268 kB) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] Tasks RCU enabled. [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts [ 0.000000] OMAP clockevent source: timer2 at 24000000 Hz [ 0.000033] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns [ 0.000082] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns [ 0.000109] OMAP clocksource: timer1 at 24000000 Hz [ 0.000512] timer_probe: no matching timers found [ 0.000960] Console: colour dummy device 80x30 [ 0.001063] Calibrating delay loop... 289.99 BogoMIPS (lpj=1449984) [ 0.067677] pid_max: default: 32768 minimum: 301 [ 0.068135] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.068174] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.069922] CPU: Testing write buffer coherency: ok [ 0.070056] CPU0: Spectre v2: using BPIALL workaround [ 0.071528] Setting up static identity map for 0x80100000 - 0x80100060 [ 0.071889] Hierarchical SRCU implementation. [ 0.072757] EFI services will not be available. [ 0.076433] devtmpfs: initialized [ 0.095438] random: get_random_u32 called from bucket_table_alloc+0x8c/0x1ac with crng_init=0 [ 0.096378] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3 [ 0.097019] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.097069] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.104659] pinctrl core: initialized pinctrl subsystem [ 0.106173] DMI not present or invalid. [ 0.107044] NET: Registered protocol family 16 [ 0.112610] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.144297] omap_hwmod: debugss: _wait_target_disable failed [ 0.219933] cpuidle: using governor ladder [ 0.220020] cpuidle: using governor menu [ 0.220135] [ 0.220135] [ 0.220135] [ 0.220135] Srini debug @ line 2995 in function gpmc_init in file drivers/memory/omap-gpmc.c [ 0.220135] [ 0.220135] [ 0.220211] GPMC_REVISION = 60 [ 0.220230] GPMC_SYSCONFIG = 8 [ 0.220246] GPMC_SYSSTATUS = 1 [ 0.220262] GPMC_IRQSTATUS = 0 [ 0.220279] GPMC_IRQENABLE = 0 [ 0.220295] GPMC_TIMEOUT_CONTROL = 1ff0 [ 0.220311] GPMC_ERR_ADDRESS = 0 [ 0.220327] GPMC_ERR_TYPE = 0 [ 0.220343] GPMC_CONFIG = 200 [ 0.220360] GPMC_STATUS = 101 [ 0.220376] GPMC_CONFIG1_0 = 1210 [ 0.220393] GPMC_CONFIG2_0 = 101000 [ 0.220409] GPMC_CONFIG3_0 = 30301 [ 0.220426] GPMC_CONFIG4_0 = 10041004 [ 0.220443] GPMC_CONFIG5_0 = c1010 [ 0.220460] GPMC_CONFIG6_0 = 8070280 [ 0.220476] GPMC_CONFIG7_0 = 848 [ 0.220492] GPMC_NAND_COMMAND_0 = 0 [ 0.220509] GPMC_NAND_ADDRESS_0 = 0 [ 0.220525] GPMC_NAND_DATA_0 = 0 [ 0.220541] GPMC_CONFIG1_1 = 1000 [ 0.220557] GPMC_CONFIG2_1 = 101001 [ 0.220572] GPMC_CONFIG3_1 = 22060514 [ 0.220589] GPMC_CONFIG4_1 = 10057016 [ 0.220605] GPMC_CONFIG5_1 = 10f1111 [ 0.220621] GPMC_CONFIG6_1 = 8f070000 [ 0.220637] GPMC_CONFIG7_1 = f00 [ 0.220654] GPMC_CONFIG1_2 = 1000 [ 0.220669] GPMC_CONFIG2_2 = 101001 [ 0.220685] GPMC_CONFIG3_2 = 22060514 [ 0.220702] GPMC_CONFIG4_2 = 10057016 [ 0.220718] GPMC_CONFIG5_2 = 10f1111 [ 0.220734] GPMC_CONFIG6_2 = 8f070000 [ 0.220750] GPMC_CONFIG7_2 = f00 [ 0.220766] GPMC_CONFIG1_3 = 1000 [ 0.220782] GPMC_CONFIG2_3 = 101001 [ 0.220798] GPMC_CONFIG3_3 = 22060514 [ 0.220814] GPMC_CONFIG4_3 = 10057016 [ 0.220830] GPMC_CONFIG5_3 = 10f1111 [ 0.220847] GPMC_CONFIG6_3 = 8f070000 [ 0.220862] GPMC_CONFIG7_3 = f00 [ 0.220878] GPMC_CONFIG1_4 = 1000 [ 0.220894] GPMC_CONFIG2_4 = 101001 [ 0.220910] GPMC_CONFIG3_4 = 22060514 [ 0.220926] GPMC_CONFIG4_4 = 10057016 [ 0.220942] GPMC_CONFIG5_4 = 10f1111 [ 0.220959] GPMC_CONFIG6_4 = 8f070000 [ 0.220974] GPMC_CONFIG7_4 = f00 [ 0.220990] GPMC_CONFIG1_5 = 1000 [ 0.221006] GPMC_CONFIG2_5 = 101001 [ 0.221022] GPMC_CONFIG3_5 = 22060514 [ 0.221039] GPMC_CONFIG4_5 = 10057016 [ 0.221055] GPMC_CONFIG5_5 = 10f1111 [ 0.221071] GPMC_CONFIG6_5 = 8f070000 [ 0.221087] GPMC_CONFIG7_5 = f00 [ 0.221103] GPMC_CONFIG1_6 = 1000 [ 0.221119] GPMC_CONFIG2_6 = 101001 [ 0.221135] GPMC_CONFIG3_6 = 22060514 [ 0.221151] GPMC_CONFIG4_6 = 10057016 [ 0.221168] GPMC_CONFIG5_6 = 10f1111 [ 0.221184] GPMC_CONFIG6_6 = 8f070000 [ 0.221199] GPMC_CONFIG7_6 = f00 [ 0.221216] GPMC_PREFETCH_CONFIG1 = 4000 [ 0.221231] GPMC_PREFETCH_CONFIG2 = 0 [ 0.221247] GPMC_PREFETCH_CONTROL = 0 [ 0.221262] GPMC_PREFETCH_STATUS = 0 [ 0.221278] GPMC_ECC_CONFIG = 1030 [ 0.221293] GPMC_ECC_CONTROL = 0 [ 0.221310] GPMC_ECC_SIZE_CONFIG = fffff000 [ 0.221325] GPMC_ECC1_RESULT = 0 [ 0.221341] GPMC_ECC2_RESULT = 0 [ 0.221357] GPMC_ECC3_RESULT = 0 [ 0.221372] GPMC_ECC4_RESULT = 0 [ 0.221387] GPMC_ECC5_RESULT = 0 [ 0.221402] GPMC_ECC6_RESULT = 0 [ 0.221418] GPMC_ECC7_RESULT = 0 [ 0.221432] GPMC_ECC8_RESULT = 0 [ 0.221448] GPMC_ECC9_RESULT = 0 [ 0.221464] GPMC_BCH_RESULT0_0 = 0 [ 0.221479] GPMC_BCH_RESULT1_0 = 0 [ 0.221494] GPMC_BCH_RESULT2_0 = 0 [ 0.221510] GPMC_BCH_RESULT3_0 = 0 [ 0.221526] GPMC_BCH_RESULT0_1 = 0 [ 0.221541] GPMC_BCH_RESULT1_1 = 0 [ 0.221557] GPMC_BCH_RESULT2_1 = 0 [ 0.221572] GPMC_BCH_RESULT3_1 = 0 [ 0.221588] GPMC_BCH_RESULT0_2 = 0 [ 0.221603] GPMC_BCH_RESULT1_2 = 0 [ 0.221619] GPMC_BCH_RESULT2_2 = 0 [ 0.221634] GPMC_BCH_RESULT3_2 = 0 [ 0.221650] GPMC_BCH_RESULT0_3 = 0 [ 0.221666] GPMC_BCH_RESULT1_3 = 0 [ 0.221681] GPMC_BCH_RESULT2_3 = 0 [ 0.221697] GPMC_BCH_RESULT3_3 = 0 [ 0.221713] GPMC_BCH_RESULT0_4 = 0 [ 0.221728] GPMC_BCH_RESULT1_4 = 0 [ 0.221744] GPMC_BCH_RESULT2_4 = 0 [ 0.221759] GPMC_BCH_RESULT3_4 = 0 [ 0.221775] GPMC_BCH_RESULT0_5 = 0 [ 0.221790] GPMC_BCH_RESULT1_5 = 0 [ 0.221806] GPMC_BCH_RESULT2_5 = 0 [ 0.221821] GPMC_BCH_RESULT3_5 = 0 [ 0.221837] GPMC_BCH_RESULT0_6 = 0 [ 0.221852] GPMC_BCH_RESULT1_6 = 0 [ 0.221868] GPMC_BCH_RESULT2_6 = 0 [ 0.221883] GPMC_BCH_RESULT3_6 = 0 [ 0.221898] GPMC_BCH_RESULT0_7 = 0 [ 0.221915] GPMC_BCH_RESULT1_7 = 0 [ 0.221929] GPMC_BCH_RESULT2_7 = 0 [ 0.221945] GPMC_BCH_RESULT3_7 = 0 [ 0.221961] GPMC_BCH_SWDATA = 0 [ 0.221976] GPMC_BCH_RESULT4_0 = 0 [ 0.221992] GPMC_BCH_RESULT5_0 = 0 [ 0.222007] GPMC_BCH_RESULT6_0 = 0 [ 0.222023] GPMC_BCH_RESULT4_1 = 0 [ 0.222038] GPMC_BCH_RESULT5_1 = 0 [ 0.222054] GPMC_BCH_RESULT6_1 = 0 [ 0.222069] GPMC_BCH_RESULT4_2 = 0 [ 0.222085] GPMC_BCH_RESULT5_2 = 0 [ 0.222101] GPMC_BCH_RESULT6_2 = 0 [ 0.222116] GPMC_BCH_RESULT4_3 = 0 [ 0.222131] GPMC_BCH_RESULT5_3 = 0 [ 0.222147] GPMC_BCH_RESULT6_3 = 0 [ 0.222163] GPMC_BCH_RESULT4_4 = 0 [ 0.222178] GPMC_BCH_RESULT5_4 = 0 [ 0.222193] GPMC_BCH_RESULT6_4 = 0 [ 0.222209] GPMC_BCH_RESULT4_5 = 0 [ 0.222224] GPMC_BCH_RESULT5_5 = 0 [ 0.222240] GPMC_BCH_RESULT6_5 = 0 [ 0.222255] GPMC_BCH_RESULT4_6 = 0 [ 0.222271] GPMC_BCH_RESULT5_6 = 0 [ 0.222286] GPMC_BCH_RESULT6_6 = 0 [ 0.222302] GPMC_BCH_RESULT4_7 = 0 [ 0.222317] GPMC_BCH_RESULT5_7 = 0 [ 0.222332] GPMC_BCH_RESULT6_7 = 0 [ 0.222353] [ 0.222353] [ 0.222353] Srini debug @ line 422 in function print_hardware_sfrs in file drivers/memory/omap-gpmc.c [ 0.222353] [ 0.222387] print_hardware_sfrs [ 0.222387] [ 0.222413] Value of AD0 at location 0x44e10800 is 0x20 [ 0.222433] Value of AD1 at location 0x44e10804 is 0x20 [ 0.222453] Value of AD2 at location 0x44e10808 is 0x20 [ 0.222472] Value of AD3 at location 0x44e1080c is 0x20 [ 0.222491] Value of AD4 at location 0x44e10810 is 0x20 [ 0.222510] Value of AD5 at location 0x44e10814 is 0x20 [ 0.222529] Value of AD6 at location 0x44e10818 is 0x20 [ 0.222548] Value of AD7 at location 0x44e1081c is 0x20 [ 0.222568] Value of AD8 at location 0x44e10820 is 0x20 [ 0.222587] Value of AD9 at location 0x44e10824 is 0x20 [ 0.222607] Value of AD10 at location 0x44e10828 is 0x20 [ 0.222626] Value of AD11 at location 0x44e1082c is 0x20 [ 0.222645] Value of AD12 at location 0x44e10830 is 0x20 [ 0.222665] Value of AD13 at location 0x44e10834 is 0x20 [ 0.222683] Value of AD14 at location 0x44e10838 is 0x20 [ 0.222703] Value of AD15 at location 0x44e1083c is 0x20 [ 0.222717] [ 0.222736] Value of A16 at location 0x44e108a4 is 0x21 [ 0.222756] Value of A17 at location 0x44e108a8 is 0x21 [ 0.222775] Value of A18 at location 0x44e108ac is 0x21 [ 0.222795] Value of A19 at location 0x44e108b0 is 0x21 [ 0.222814] Value of A20 at location 0x44e108b4 is 0x21 [ 0.222833] Value of A21 at location 0x44e108b8 is 0x21 [ 0.222853] Value of A22 at location 0x44e108bc is 0x21 [ 0.222867] [ 0.222885] Value of A23 at location 0x44e108e0 is 0x21 [ 0.222904] Value of A24 at location 0x44e108e4 is 0x21 [ 0.222924] Value of A25 at location 0x44e108e8 is 0x21 [ 0.222938] [ 0.222955] Value of A26 at location 0x44e1086c is 0x24 [ 0.222955] [ 0.222979] Value of CS0 at location 0x44e1087c is 0x20 [ 0.222979] [ 0.223003] Value of ALE at location 0x44e10890 is 0x20 [ 0.223003] [ 0.223027] Value of OEN_REN at location 0x44e10894 is 0x20 [ 0.223027] [ 0.223051] Value of BEN0_CLE at location 0x44e1089c is 0x20 [ 0.223051] [ 0.223076] Value of WEN at location 0x44e10898 is 0x20 [ 0.223076] [ 0.223100] Value of WAIT0 at location 0x44e10870 is 0x20 [ 0.223100] [ 0.223125] [ 0.223125] [ 0.223125] Srini debug @ line 486 in function print_hardware_sfrs in file drivers/memory/omap-gpmc.c [ 0.223125] [ 0.223156] End of print_hardware_sfrs... [ 0.223156] [ 0.234101] OMAP GPIO hardware version 0.1 [ 0.249464] omap-gpmc 50000078.gpmc: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/nor_pins, deferre [ 0.254315] No ATAGs? [ 0.254345] hw-breakpoint: debug architecture 0x4 unsupported. [ 0.288544] edma 49000000.edma: TI EDMA DMA engine driver [ 0.297274] omap_i2c 44e0b000.i2c: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/pinmux_i2c0_pins, e [ 0.297538] media: Linux media interface: v0.10 [ 0.297789] Linux video capture interface: v2.00 [ 0.298070] pps_core: LinuxPPS API ver. 1 registered [ 0.298095] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.298161] PTP clock support registered [ 0.298250] EDAC MC: Ver: 3.0.0 [ 0.299247] dmi: Firmware registration failed. [ 0.300127] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400 [ 0.300824] Advanced Linux Sound Architecture Driver Initialized. [ 0.303325] clocksource: Switched to clocksource timer1 [ 0.324393] NET: Registered protocol family 2 [ 0.326080] TCP established hash table entries: 2048 (order: 1, 8192 bytes) [ 0.326172] TCP bind hash table entries: 2048 (order: 1, 8192 bytes) [ 0.326247] TCP: Hash tables configured (established 2048 bind 2048) [ 0.326475] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.326529] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.326900] NET: Registered protocol family 1 [ 0.327842] RPC: Registered named UNIX socket transport module. [ 0.327877] RPC: Registered udp transport module. [ 0.327896] RPC: Registered tcp transport module. [ 0.327914] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.329718] hw perfevents: no interrupt-affinity property for /pmu, guessing. [ 0.329972] hw perfevents: enabled with armv7_cortex_a8 PMU driver, 5 counters available [ 0.333251] workingset: timestamp_bits=14 max_order=16 bucket_order=2 [ 0.344946] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.346775] NFS: Registering the id_resolver key type [ 0.346885] Key type id_resolver registered [ 0.346906] Key type id_legacy registered [ 0.347012] ntfs: driver 2.1.32 [Flags: R/O]. [ 0.351868] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 0.351911] io scheduler noop registered [ 0.351934] io scheduler deadline registered [ 0.352479] io scheduler cfq registered (default) [ 0.352508] io scheduler mq-deadline registered [ 0.352528] io scheduler kyber registered [ 0.355625] pinctrl-single 44e10800.pinmux: 142 pins at pa f9e10800 size 568 [ 0.487219] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled [ 0.494472] console [ttyS0] disabled [ 0.494667] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 30, base_baud = 3000000) is a 8250 [ 1.842486] console [ttyS0] enabled [ 1.849613] omap_rng 48310000.rng: Random Number Generator ver. 20 [ 1.885562] brd: module loaded [ 1.905038] loop: module loaded [ 1.909331] mtdoops: mtd device (mtddev=name/number) must be supplied [ 1.916032] [ 1.916032] [ 1.916032] [ 1.916032] Srini debug @ line 619 in function cfi_probe_init in file drivers/mtd/chips/cfi_probe.c [ 1.916032] [ 1.916032] [ 1.932665] GPMC_REVISION = 60 [ 1.936659] GPMC_SYSCONFIG = 8 [ 1.940523] GPMC_SYSSTATUS = 1 [ 1.944419] GPMC_IRQSTATUS = 0 [ 1.948283] GPMC_IRQENABLE = 0 [ 1.952144] GPMC_TIMEOUT_CONTROL = 1ff0 [ 1.956300] GPMC_ERR_ADDRESS = 0 [ 1.960163] GPMC_ERR_TYPE = 0 [ 1.964058] GPMC_CONFIG = 200 [ 1.968096] GPMC_STATUS = 101 [ 1.972131] GPMC_CONFIG1_0 = 1210 [ 1.976291] GPMC_CONFIG2_0 = 101000 [ 1.980592] GPMC_CONFIG3_0 = 30301 [ 1.984836] GPMC_CONFIG4_0 = 10041004 [ 1.989310] GPMC_CONFIG5_0 = c1010 [ 1.993554] GPMC_CONFIG6_0 = 8070280 [ 1.997941] GPMC_CONFIG7_0 = 848 [ 2.001977] GPMC_NAND_COMMAND_0 = 0 [ 2.005527] GPMC_NAND_ADDRESS_0 = 0 [ 2.009042] GPMC_NAND_DATA_0 = 0 [ 2.012291] GPMC_CONFIG1_1 = 1000 [ 2.015748] GPMC_CONFIG2_1 = 101001 [ 2.019349] GPMC_CONFIG3_1 = 22060514 [ 2.023122] GPMC_CONFIG4_1 = 10057016 [ 2.026930] GPMC_CONFIG5_1 = 10f1111 [ 2.030619] GPMC_CONFIG6_1 = 8f070000 [ 2.034424] GPMC_CONFIG7_1 = f00 [ 2.037763] GPMC_CONFIG1_2 = 1000 [ 2.041188] GPMC_CONFIG2_2 = 101001 [ 2.044820] GPMC_CONFIG3_2 = 22060514 [ 2.048597] GPMC_CONFIG4_2 = 10057016 [ 2.052371] GPMC_CONFIG5_2 = 10f1111 [ 2.056090] GPMC_CONFIG6_2 = 8f070000 [ 2.059867] GPMC_CONFIG7_2 = f00 [ 2.063204] GPMC_CONFIG1_3 = 1000 [ 2.066662] GPMC_CONFIG2_3 = 101001 [ 2.070263] GPMC_CONFIG3_3 = 22060514 [ 2.074070] GPMC_CONFIG4_3 = 10057016 [ 2.077844] GPMC_CONFIG5_3 = 10f1111 [ 2.081531] GPMC_CONFIG6_3 = 8f070000 [ 2.085336] GPMC_CONFIG7_3 = f00 [ 2.088675] GPMC_CONFIG1_4 = 1000 [ 2.092099] GPMC_CONFIG2_4 = 101001 [ 2.095732] GPMC_CONFIG3_4 = 22060514 [ 2.099509] GPMC_CONFIG4_4 = 10057016 [ 2.103283] GPMC_CONFIG5_4 = 10f1111 [ 2.107001] GPMC_CONFIG6_4 = 8f070000 [ 2.110778] GPMC_CONFIG7_4 = f00 [ 2.114148] GPMC_CONFIG1_5 = 1000 [ 2.117575] GPMC_CONFIG2_5 = 101001 [ 2.121175] GPMC_CONFIG3_5 = 22060514 [ 2.124982] GPMC_CONFIG4_5 = 10057016 [ 2.128758] GPMC_CONFIG5_5 = 10f1111 [ 2.132445] GPMC_CONFIG6_5 = 8f070000 [ 2.136252] GPMC_CONFIG7_5 = f00 [ 2.139592] GPMC_CONFIG1_6 = 1000 [ 2.143017] GPMC_CONFIG2_6 = 101001 [ 2.146648] GPMC_CONFIG3_6 = 22060514 [ 2.150424] GPMC_CONFIG4_6 = 10057016 [ 2.154231] GPMC_CONFIG5_6 = 10f1111 [ 2.157919] GPMC_CONFIG6_6 = 8f070000 [ 2.161692] GPMC_CONFIG7_6 = f00 [ 2.165065] GPMC_PREFETCH_CONFIG1 = 4000 [ 2.169015] GPMC_PREFETCH_CONFIG2 = 0 [ 2.172702] GPMC_PREFETCH_CONTROL = 0 [ 2.176420] GPMC_PREFETCH_STATUS = 0 [ 2.180022] GPMC_ECC_CONFIG = 1030 [ 2.183565] GPMC_ECC_CONTROL = 0 [ 2.186818] GPMC_ECC_SIZE_CONFIG = fffff000 [ 2.191029] GPMC_ECC1_RESULT = 0 [ 2.194311] GPMC_ECC2_RESULT = 0 [ 2.197562] GPMC_ECC3_RESULT = 0 [ 2.200812] GPMC_ECC4_RESULT = 0 [ 2.204093] GPMC_ECC5_RESULT = 0 [ 2.207346] GPMC_ECC6_RESULT = 0 [ 2.210595] GPMC_ECC7_RESULT = 0 [ 2.213877] GPMC_ECC8_RESULT = 0 [ 2.217130] GPMC_ECC9_RESULT = 0 [ 2.220379] GPMC_BCH_RESULT0_0 = 0 [ 2.223835] GPMC_BCH_RESULT1_0 = 0 [ 2.227263] GPMC_BCH_RESULT2_0 = 0 [ 2.230687] GPMC_BCH_RESULT3_0 = 0 [ 2.234144] GPMC_BCH_RESULT0_1 = 0 [ 2.237570] GPMC_BCH_RESULT1_1 = 0 [ 2.240995] GPMC_BCH_RESULT2_1 = 0 [ 2.244453] GPMC_BCH_RESULT3_1 = 0 [ 2.247879] GPMC_BCH_RESULT0_2 = 0 [ 2.251303] GPMC_BCH_RESULT1_2 = 0 [ 2.254759] GPMC_BCH_RESULT2_2 = 0 [ 2.258186] GPMC_BCH_RESULT3_2 = 0 [ 2.261610] GPMC_BCH_RESULT0_3 = 0 [ 2.265067] GPMC_BCH_RESULT1_3 = 0 [ 2.268494] GPMC_BCH_RESULT2_3 = 0 [ 2.271917] GPMC_BCH_RESULT3_3 = 0 [ 2.275374] GPMC_BCH_RESULT0_4 = 0 [ 2.278801] GPMC_BCH_RESULT1_4 = 0 [ 2.282225] GPMC_BCH_RESULT2_4 = 0 [ 2.285682] GPMC_BCH_RESULT3_4 = 0 [ 2.289108] GPMC_BCH_RESULT0_5 = 0 [ 2.292533] GPMC_BCH_RESULT1_5 = 0 [ 2.295990] GPMC_BCH_RESULT2_5 = 0 [ 2.299415] GPMC_BCH_RESULT3_5 = 0 [ 2.302840] GPMC_BCH_RESULT0_6 = 0 [ 2.306297] GPMC_BCH_RESULT1_6 = 0 [ 2.309723] GPMC_BCH_RESULT2_6 = 0 [ 2.313147] GPMC_BCH_RESULT3_6 = 0 [ 2.316603] GPMC_BCH_RESULT0_7 = 0 [ 2.320030] GPMC_BCH_RESULT1_7 = 0 [ 2.323487] GPMC_BCH_RESULT2_7 = 0 [ 2.326914] GPMC_BCH_RESULT3_7 = 0 [ 2.330339] GPMC_BCH_SWDATA = 0 [ 2.333619] GPMC_BCH_RESULT4_0 = 0 [ 2.337047] GPMC_BCH_RESULT5_0 = 0 [ 2.340471] GPMC_BCH_RESULT6_0 = 0 [ 2.343929] GPMC_BCH_RESULT4_1 = 0 [ 2.347356] GPMC_BCH_RESULT5_1 = 0 [ 2.350780] GPMC_BCH_RESULT6_1 = 0 [ 2.354238] GPMC_BCH_RESULT4_2 = 0 [ 2.357665] GPMC_BCH_RESULT5_2 = 0 [ 2.361088] GPMC_BCH_RESULT6_2 = 0 [ 2.364545] GPMC_BCH_RESULT4_3 = 0 [ 2.367971] GPMC_BCH_RESULT5_3 = 0 [ 2.371394] GPMC_BCH_RESULT6_3 = 0 [ 2.374852] GPMC_BCH_RESULT4_4 = 0 [ 2.378278] GPMC_BCH_RESULT5_4 = 0 [ 2.381702] GPMC_BCH_RESULT6_4 = 0 [ 2.385158] GPMC_BCH_RESULT4_5 = 0 [ 2.388584] GPMC_BCH_RESULT5_5 = 0 [ 2.392009] GPMC_BCH_RESULT6_5 = 0 [ 2.395464] GPMC_BCH_RESULT4_6 = 0 [ 2.398891] GPMC_BCH_RESULT5_6 = 0 [ 2.402315] GPMC_BCH_RESULT6_6 = 0 [ 2.405773] GPMC_BCH_RESULT4_7 = 0 [ 2.409199] GPMC_BCH_RESULT5_7 = 0 [ 2.412624] GPMC_BCH_RESULT6_7 = 0 [ 2.416086] [ 2.416086] [ 2.416086] [ 2.416086] Srini debug @ line 19 in function register_mtd_chip_driver in file drivers/mtd/chips/chipreg.c [ 2.416086] [ 2.416086] [ 2.433272] [ 2.433272] [ 2.433272] [ 2.433272] Srini debug @ line 19 in function register_mtd_chip_driver in file drivers/mtd/chips/chipreg.c [ 2.433272] [ 2.433272] [ 2.450462] [ 2.450462] [ 2.450462] [ 2.450462] Srini debug @ line 19 in function register_mtd_chip_driver in file drivers/mtd/chips/chipreg.c [ 2.450462] [ 2.450462] [ 2.467650] [ 2.467650] [ 2.467650] [ 2.467650] Srini debug @ line 316 in function physmap_init in file drivers/mtd/maps/physmap.c [ 2.467650] [ 2.467650] [ 2.484516] [ 2.484516] [ 2.484516] [ 2.484516] Srini debug @ line 108 in function physmap_flash_probe in file drivers/mtd/maps/physmap.c [ 2.484516] [ 2.484516] [ 2.501319] 1 SUCCESS [ 2.503667] 2 SUCCESS [ 2.505960] 3 SUCCESS [ 2.508252] Srini Value of i is 0 [ 2.511682] physmap platform flash device: 10000000 at 10000000 [ 2.517683] 4. SUCCESS [ 2.520067] Srini -> Value of info->map[i].name: physmap-flash.0 [ 2.526147] Srini -> Value of info->map[i].phys : 268435456 [ 2.531756] Srini -> Value of info->map[i].size: 268435456 [ 2.537309] Srini -> Value of info->map[i].bankwidth : 2 [ 2.557450] 5. SUCCESS [ 2.559841] [ 2.559841] [ 2.559841] [ 2.559841] Srini debug @ line 193 in function physmap_flash_probe in file drivers/mtd/maps/physmap.c [ 2.559841] [ 2.559841] [ 2.576589] Value of probe_type is cfi_probe [ 2.580895] [ 2.580895] [ 2.580895] [ 2.580895] Srini debug @ line 64 in function do_map_probe in file drivers/mtd/chips/chipreg.c [ 2.580895] [ 2.580895] [ 2.597034] [ 2.597034] [ 2.597034] [ 2.597034] Srini debug @ line 37 in function get_mtd_chip_driver in file drivers/mtd/chips/chipreg.c [ 2.597034] [ 2.597034] [ 2.613787] [ 2.613787] [ 2.613787] [ 2.613787] Srini debug @ line 607 in function cfi_probe in file drivers/mtd/chips/cfi_probe.c [ 2.613787] [ 2.613787] [ 2.629926] [ 2.629926] [ 2.629926] [ 2.629926] Srini debug @ line 263 in function mtd_do_chip_probe in file drivers/mtd/chips/gen_probe.c [ 2.629926] [ 2.629926] [ 2.646773] GPMC_REVISION = 60 [ 2.650725] GPMC_SYSCONFIG = 8 [ 2.654620] GPMC_SYSSTATUS = 1 [ 2.658484] GPMC_IRQSTATUS = 0 [ 2.662344] GPMC_IRQENABLE = 0 [ 2.666239] GPMC_TIMEOUT_CONTROL = 1ff0 [ 2.670363] GPMC_ERR_ADDRESS = 0 [ 2.674256] GPMC_ERR_TYPE = 0 [ 2.678120] GPMC_CONFIG = 200 [ 2.682157] GPMC_STATUS = 101 [ 2.686223] random: fast init done [ 2.689658] GPMC_CONFIG1_0 = 1210 [ 2.693816] GPMC_CONFIG2_0 = 101000 [ 2.698115] GPMC_CONFIG3_0 = 30301 [ 2.702325] GPMC_CONFIG4_0 = 10041004 [ 2.706830] GPMC_CONFIG5_0 = c1010 [ 2.711042] GPMC_CONFIG6_0 = 8070280 [ 2.715460] GPMC_CONFIG7_0 = 848 [ 2.719497] GPMC_NAND_COMMAND_0 = 0 [ 2.723010] GPMC_NAND_ADDRESS_0 = 0 [ 2.726555] GPMC_NAND_DATA_0 = 0 [ 2.729808] GPMC_CONFIG1_1 = 1000 [ 2.733234] GPMC_CONFIG2_1 = 101001 [ 2.736865] GPMC_CONFIG3_1 = 22060514 [ 2.740641] GPMC_CONFIG4_1 = 10057016 [ 2.744447] GPMC_CONFIG5_1 = 10f1111 [ 2.748135] GPMC_CONFIG6_1 = 8f070000 [ 2.751909] GPMC_CONFIG7_1 = f00 [ 2.755278] GPMC_CONFIG1_2 = 1000 [ 2.758705] GPMC_CONFIG2_2 = 101001 [ 2.762304] GPMC_CONFIG3_2 = 22060514 [ 2.766110] GPMC_CONFIG4_2 = 10057016 [ 2.769887] GPMC_CONFIG5_2 = 10f1111 [ 2.773608] GPMC_CONFIG6_2 = 8f070000 [ 2.777383] GPMC_CONFIG7_2 = f00 [ 2.780720] GPMC_CONFIG1_3 = 1000 [ 2.784177] GPMC_CONFIG2_3 = 101001 [ 2.787778] GPMC_CONFIG3_3 = 22060514 [ 2.791552] GPMC_CONFIG4_3 = 10057016 [ 2.795359] GPMC_CONFIG5_3 = 10f1111 [ 2.799047] GPMC_CONFIG6_3 = 8f070000 [ 2.802821] GPMC_CONFIG7_3 = f00 [ 2.806192] GPMC_CONFIG1_4 = 1000 [ 2.809619] GPMC_CONFIG2_4 = 101001 [ 2.813218] GPMC_CONFIG3_4 = 22060514 [ 2.817024] GPMC_CONFIG4_4 = 10057016 [ 2.820801] GPMC_CONFIG5_4 = 10f1111 [ 2.824520] GPMC_CONFIG6_4 = 8f070000 [ 2.828297] GPMC_CONFIG7_4 = f00 [ 2.831635] GPMC_CONFIG1_5 = 1000 [ 2.835092] GPMC_CONFIG2_5 = 101001 [ 2.838693] GPMC_CONFIG3_5 = 22060514 [ 2.842468] GPMC_CONFIG4_5 = 10057016 [ 2.846273] GPMC_CONFIG5_5 = 10f1111 [ 2.849961] GPMC_CONFIG6_5 = 8f070000 [ 2.853767] GPMC_CONFIG7_5 = f00 [ 2.857108] GPMC_CONFIG1_6 = 1000 [ 2.860532] GPMC_CONFIG2_6 = 101001 [ 2.864163] GPMC_CONFIG3_6 = 22060514 [ 2.867939] GPMC_CONFIG4_6 = 10057016 [ 2.871713] GPMC_CONFIG5_6 = 10f1111 [ 2.875434] GPMC_CONFIG6_6 = 8f070000 [ 2.879210] GPMC_CONFIG7_6 = f00 [ 2.882548] GPMC_PREFETCH_CONFIG1 = 4000 [ 2.886528] GPMC_PREFETCH_CONFIG2 = 0 [ 2.890216] GPMC_PREFETCH_CONTROL = 0 [ 2.893935] GPMC_PREFETCH_STATUS = 0 [ 2.897537] GPMC_ECC_CONFIG = 1030 [ 2.901048] GPMC_ECC_CONTROL = 0 [ 2.904332] GPMC_ECC_SIZE_CONFIG = fffff000 [ 2.908545] GPMC_ECC1_RESULT = 0 [ 2.911794] GPMC_ECC2_RESULT = 0 [ 2.915077] GPMC_ECC3_RESULT = 0 [ 2.918329] GPMC_ECC4_RESULT = 0 [ 2.921579] GPMC_ECC5_RESULT = 0 [ 2.924860] GPMC_ECC6_RESULT = 0 [ 2.928112] GPMC_ECC7_RESULT = 0 [ 2.931362] GPMC_ECC8_RESULT = 0 [ 2.934643] GPMC_ECC9_RESULT = 0 [ 2.937895] GPMC_BCH_RESULT0_0 = 0 [ 2.941319] GPMC_BCH_RESULT1_0 = 0 [ 2.944776] GPMC_BCH_RESULT2_0 = 0 [ 2.948202] GPMC_BCH_RESULT3_0 = 0 [ 2.951626] GPMC_BCH_RESULT0_1 = 0 [ 2.955083] GPMC_BCH_RESULT1_1 = 0 [ 2.958509] GPMC_BCH_RESULT2_1 = 0 [ 2.961934] GPMC_BCH_RESULT3_1 = 0 [ 2.965391] GPMC_BCH_RESULT0_2 = 0 [ 2.968817] GPMC_BCH_RESULT1_2 = 0 [ 2.972242] GPMC_BCH_RESULT2_2 = 0 [ 2.975699] GPMC_BCH_RESULT3_2 = 0 [ 2.979125] GPMC_BCH_RESULT0_3 = 0 [ 2.982549] GPMC_BCH_RESULT1_3 = 0 [ 2.986005] GPMC_BCH_RESULT2_3 = 0 [ 2.989433] GPMC_BCH_RESULT3_3 = 0 [ 2.992856] GPMC_BCH_RESULT0_4 = 0 [ 2.996314] GPMC_BCH_RESULT1_4 = 0 [ 2.999741] GPMC_BCH_RESULT2_4 = 0 [ 3.003165] GPMC_BCH_RESULT3_4 = 0 [ 3.006625] GPMC_BCH_RESULT0_5 = 0 [ 3.010051] GPMC_BCH_RESULT1_5 = 0 [ 3.013508] GPMC_BCH_RESULT2_5 = 0 [ 3.016934] GPMC_BCH_RESULT3_5 = 0 [ 3.020359] GPMC_BCH_RESULT0_6 = 0 [ 3.023815] GPMC_BCH_RESULT1_6 = 0 [ 3.027242] GPMC_BCH_RESULT2_6 = 0 [ 3.030666] GPMC_BCH_RESULT3_6 = 0 [ 3.034123] GPMC_BCH_RESULT0_7 = 0 [ 3.037550] GPMC_BCH_RESULT1_7 = 0 [ 3.040974] GPMC_BCH_RESULT2_7 = 0 [ 3.044432] GPMC_BCH_RESULT3_7 = 0 [ 3.047858] GPMC_BCH_SWDATA = 0 [ 3.051107] GPMC_BCH_RESULT4_0 = 0 [ 3.054564] GPMC_BCH_RESULT5_0 = 0 [ 3.057991] GPMC_BCH_RESULT6_0 = 0 [ 3.061415] GPMC_BCH_RESULT4_1 = 0 [ 3.064873] GPMC_BCH_RESULT5_1 = 0 [ 3.068299] GPMC_BCH_RESULT6_1 = 0 [ 3.071723] GPMC_BCH_RESULT4_2 = 0 [ 3.075180] GPMC_BCH_RESULT5_2 = 0 [ 3.078607] GPMC_BCH_RESULT6_2 = 0 [ 3.082031] GPMC_BCH_RESULT4_3 = 0 [ 3.085488] GPMC_BCH_RESULT5_3 = 0 [ 3.088915] GPMC_BCH_RESULT6_3 = 0 [ 3.092339] GPMC_BCH_RESULT4_4 = 0 [ 3.095795] GPMC_BCH_RESULT5_4 = 0 [ 3.099222] GPMC_BCH_RESULT6_4 = 0 [ 3.102646] GPMC_BCH_RESULT4_5 = 0 [ 3.106103] GPMC_BCH_RESULT5_5 = 0 [ 3.109530] GPMC_BCH_RESULT6_5 = 0 [ 3.112955] GPMC_BCH_RESULT4_6 = 0 [ 3.116412] GPMC_BCH_RESULT5_6 = 0 [ 3.119839] GPMC_BCH_RESULT6_6 = 0 [ 3.123263] GPMC_BCH_RESULT4_7 = 0 [ 3.126721] GPMC_BCH_RESULT5_7 = 0 [ 3.130148] GPMC_BCH_RESULT6_7 = 0 [ 3.133610] [ 3.133610] [ 3.133610] Srini debug @ line 190 in function print_hardware_sfrs in file drivers/mtd/chips/gen_probe.c [ 3.133610] [ 3.147638] print_hardware_sfrs [ 3.147638] [ 3.152296] Value of AD0 at location 0x44e10800 is 0x20 [ 3.157591] Value of AD1 at location 0x44e10804 is 0x20 [ 3.162852] Value of AD2 at location 0x44e10808 is 0x20 [ 3.168144] Value of AD3 at location 0x44e1080c is 0x20 [ 3.173437] Value of AD4 at location 0x44e10810 is 0x20 [ 3.178699] Value of AD5 at location 0x44e10814 is 0x20 [ 3.183992] Value of AD6 at location 0x44e10818 is 0x20 [ 3.189255] Value of AD7 at location 0x44e1081c is 0x20 [ 3.194547] Value of AD8 at location 0x44e10820 is 0x20 [ 3.199808] Value of AD9 at location 0x44e10824 is 0x20 [ 3.205100] Value of AD10 at location 0x44e10828 is 0x20 [ 3.210450] Value of AD11 at location 0x44e1082c is 0x20 [ 3.215830] Value of AD12 at location 0x44e10830 is 0x20 [ 3.221178] Value of AD13 at location 0x44e10834 is 0x20 [ 3.226557] Value of AD14 at location 0x44e10838 is 0x20 [ 3.231905] Value of AD15 at location 0x44e1083c is 0x20 [ 3.237278] [ 3.238791] Value of A16 at location 0x44e108a4 is 0x21 [ 3.244084] Value of A17 at location 0x44e108a8 is 0x21 [ 3.249346] Value of A18 at location 0x44e108ac is 0x21 [ 3.254638] Value of A19 at location 0x44e108b0 is 0x21 [ 3.259898] Value of A20 at location 0x44e108b4 is 0x21 [ 3.265190] Value of A21 at location 0x44e108b8 is 0x21 [ 3.270452] Value of A22 at location 0x44e108bc is 0x21 [ 3.275738] [ 3.277251] Value of A23 at location 0x44e108e0 is 0x21 [ 3.282510] Value of A24 at location 0x44e108e4 is 0x21 [ 3.287803] Value of A25 at location 0x44e108e8 is 0x21 [ 3.293059] [ 3.294600] Value of A26 at location 0x44e1086c is 0x24 [ 3.294600] [ 3.301348] Value of CS0 at location 0x44e1087c is 0x20 [ 3.301348] [ 3.308214] Value of ALE at location 0x44e10890 is 0x20 [ 3.308214] [ 3.315171] Value of OEN_REN at location 0x44e10894 is 0x20 [ 3.315171] [ 3.322357] Value of BEN0_CLE at location 0x44e1089c is 0x20 [ 3.322357] [ 3.329588] Value of WEN at location 0x44e10898 is 0x20 [ 3.329588] [ 3.336546] Value of WAIT0 at location 0x44e10870 is 0x20 [ 3.336546] [ 3.343679] [ 3.343679] [ 3.343679] Srini debug @ line 254 in function print_hardware_sfrs in file drivers/mtd/chips/gen_probe.c [ 3.343679] [ 3.357706] End of print_hardware_sfrs... [ 3.357706] [ 3.363236] [ 3.363236] [ 3.363236] [ 3.363236] Srini debug @ line 321 in function genprobe_ident_chips in file drivers/mtd/chips/gen_probe.c [ 3.363236] [ 3.363236] [ 3.380334] [ 3.380334] [ 3.380334] [ 3.380334] Srini debug @ line 459 in function genprobe_new_chip in file drivers/mtd/chips/gen_probe.c [ 3.380334] [ 3.380334] [ 3.397174] [ 3.397174] [ 3.397174] [ 3.397174] Srini debug @ line 476 in function genprobe_new_chip in file drivers/mtd/chips/gen_probe.c [ 3.397174] [ 3.397174] [ 3.414009] [ 3.414009] [ 3.414009] [ 3.414009] Srini debug @ line 239 in function cfi_probe_chip in file drivers/mtd/chips/cfi_probe.c [ 3.414009] [ 3.414009] [ 3.430576] Value of base : 0 [ 3.433600] Value of map->size : 268435456 [ 3.437725] Value of cfi->numchips : 0 [ 3.441499] Value of cfi->chipshift : 0 [ 3.445396] Value of map : cf53b024 [ 3.448907] 1. cfi_probe.c SUCCESS [ 3.452330] 2. cfi_probe.c SUCCESS [ 3.455794] [ 3.455794] [ 3.455794] [ 3.455794] Srini debug @ line 138 in function cfi_send_gen_cmd in file drivers/mtd/chips/cfi_util.c [ 3.455794] [ 3.455794] [ 3.472456] [ 3.472456] [ 3.472456] [ 3.472456] Srini debug @ line 336 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.472456] [ 3.472456] [ 3.488850] Size of map_word: 4 [ 3.492021] [ 3.492021] [ 3.492021] [ 3.492021] Srini debug @ line 349 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.492021] [ 3.492021] [ 3.508415] Value of words_per_bus: 1 [ 3.512103] Value of chips_per_word: 2 [ 3.515910] Value of chip_mode: 1 [ 3.519255] [ 3.519255] [ 3.519255] [ 3.519255] Srini debug @ line 366 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.519255] [ 3.519255] [ 3.535654] [ 3.535654] [ 3.535654] [ 3.535654] Srini debug @ line 392 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.535654] [ 3.535654] [ 3.552051] [ 3.552051] [ 3.552051] [ 3.552051] Srini debug @ line 395 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.552051] [ 3.552051] [ 3.568451] [ 3.568451] [ 3.568451] [ 3.568451] Srini debug @ line 402 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.568451] [ 3.568451] [ 3.584845] Value of val.x[i]: 61680 [ 3.588452] [ 3.588452] [ 3.588452] [ 3.588452] Srini debug @ line 408 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.588452] [ 3.588452] [ 3.604852] [ 3.604852] [ 3.604852] [ 3.604852] Srini debug @ line 138 in function cfi_send_gen_cmd in file drivers/mtd/chips/cfi_util.c [ 3.604852] [ 3.604852] [ 3.621510] [ 3.621510] [ 3.621510] [ 3.621510] Srini debug @ line 336 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.621510] [ 3.621510] [ 3.637904] Size of map_word: 4 [ 3.641074] [ 3.641074] [ 3.641074] [ 3.641074] Srini debug @ line 349 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.641074] [ 3.641074] [ 3.657468] Value of words_per_bus: 1 [ 3.661157] Value of chips_per_word: 2 [ 3.664962] Value of chip_mode: 1 [ 3.668306] [ 3.668306] [ 3.668306] [ 3.668306] Srini debug @ line 366 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.668306] [ 3.668306] [ 3.684705] [ 3.684705] [ 3.684705] [ 3.684705] Srini debug @ line 392 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.684705] [ 3.684705] [ 3.701103] [ 3.701103] [ 3.701103] [ 3.701103] Srini debug @ line 395 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.701103] [ 3.701103] [ 3.717501] [ 3.717501] [ 3.717501] [ 3.717501] Srini debug @ line 402 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.717501] [ 3.717501] [ 3.733895] Value of val.x[i]: 39064 [ 3.737501] [ 3.737501] [ 3.737501] [ 3.737501] Srini debug @ line 408 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.737501] [ 3.737501] [ 3.753901] [ 3.753901] [ 3.753901] [ 3.753901] Srini debug @ line 155 in function cfi_qry_present in file drivers/mtd/chips/cfi_util.c [ 3.753901] [ 3.753901] [ 3.770469] Value of cfi->interleave is 2 [ 3.774539] Value of cfi->device_type is 1 [ 3.778668] [ 3.778668] [ 3.778668] [ 3.778668] Srini debug @ line 336 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.778668] [ 3.778668] [ 3.795060] Size of map_word: 4 [ 3.798230] [ 3.798230] [ 3.798230] [ 3.798230] Srini debug @ line 349 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.798230] [ 3.798230] [ 3.814622] Value of words_per_bus: 1 [ 3.818309] Value of chips_per_word: 2 [ 3.822081] Value of chip_mode: 1 [ 3.825455] [ 3.825455] [ 3.825455] [ 3.825455] Srini debug @ line 366 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.825455] [ 3.825455] [ 3.841853] [ 3.841853] [ 3.841853] [ 3.841853] Srini debug @ line 392 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.841853] [ 3.841853] [ 3.858253] [ 3.858253] [ 3.858253] [ 3.858253] Srini debug @ line 395 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.858253] [ 3.858253] [ 3.874651] [ 3.874651] [ 3.874651] [ 3.874651] Srini debug @ line 402 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.874651] [ 3.874651] [ 3.891045] Value of val.x[i]: 20817 [ 3.894682] [ 3.894682] [ 3.894682] [ 3.894682] Srini debug @ line 408 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.894682] [ 3.894682] [ 3.911080] [ 3.911080] [ 3.911080] [ 3.911080] Srini debug @ line 336 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.911080] [ 3.911080] [ 3.927474] Size of map_word: 4 [ 3.930643] [ 3.930643] [ 3.930643] [ 3.930643] Srini debug @ line 349 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.930643] [ 3.930643] [ 3.947036] Value of words_per_bus: 1 [ 3.950725] Value of chips_per_word: 2 [ 3.954532] Value of chip_mode: 1 [ 3.957876] [ 3.957876] [ 3.957876] [ 3.957876] Srini debug @ line 366 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.957876] [ 3.957876] [ 3.974273] [ 3.974273] [ 3.974273] [ 3.974273] Srini debug @ line 392 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.974273] [ 3.974273] [ 3.990671] [ 3.990671] [ 3.990671] [ 3.990671] Srini debug @ line 395 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 3.990671] [ 3.990671] [ 4.007072] [ 4.007072] [ 4.007072] [ 4.007072] Srini debug @ line 402 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 4.007072] [ 4.007072] [ 4.023467] Value of val.x[i]: 21074 [ 4.027073] [ 4.027073] [ 4.027073] [ 4.027073] Srini debug @ line 408 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 4.027073] [ 4.027073] [ 4.043471] [ 4.043471] [ 4.043471] [ 4.043471] Srini debug @ line 336 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 4.043471] [ 4.043471] [ 4.059863] Size of map_word: 4 [ 4.063032] [ 4.063032] [ 4.063032] [ 4.063032] Srini debug @ line 349 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 4.063032] [ 4.063032] [ 4.079426] Value of words_per_bus: 1 [ 4.083113] Value of chips_per_word: 2 [ 4.086919] Value of chip_mode: 1 [ 4.090262] [ 4.090262] [ 4.090262] [ 4.090262] Srini debug @ line 366 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 4.090262] [ 4.090262] [ 4.106660] [ 4.106660] [ 4.106660] [ 4.106660] Srini debug @ line 392 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 4.106660] [ 4.106660] [ 4.123058] [ 4.123058] [ 4.123058] [ 4.123058] Srini debug @ line 395 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 4.123058] [ 4.123058] [ 4.139457] [ 4.139457] [ 4.139457] [ 4.139457] Srini debug @ line 402 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 4.139457] [ 4.139457] [ 4.155853] Value of val.x[i]: 22873 [ 4.159459] [ 4.159459] [ 4.159459] [ 4.159459] Srini debug @ line 408 in function cfi_build_cmd in file drivers/mtd/chips/cfi_util.c [ 4.159459] [ 4.159459] [ 4.175857] [ 4.175857] [ 4.175857] [ 4.175857] Srini debug @ line 166 in function cfi_qry_present in file drivers/mtd/chips/cfi_util.c [ 4.175857] [ 4.175857] [ 4.192429] [ 4.192429] [ 4.192429] [ 4.192429] Srini debug @ line 406 in function inline_map_read in file ./include/linux/mtd/map.h [ 4.192429] [ 4.192429] [ 4.208742] [ 4.208742] [ 4.208742] [ 4.208742] Srini debug @ line 415 in function inline_map_read in file ./include/linux/mtd/map.h [ 4.208742] [ 4.208742] [ 4.225050] Value of map->vart: 0xd1000000 [ 4.229177] Value of ofs: 0x20 [ 4.232265] Unhandled fault: external abort on non-linefetch (0x1028) at 0xd1000020 [ 4.239965] pgd = c0004000 [ 4.242695] [d1000020] *pgd=10011452(bad) [ 4.246764] Internal error: : 1028 [#1] PREEMPT ARM [ 4.251677] Modules linked in: [ 4.254777] CPU: 0 PID: 1 Comm: swapper Not tainted 4.14.79-ge669d52447 #65 [ 4.261781] Hardware name: Generic AM33XX (Flattened Device Tree) [ 4.267915] task: cf040000 task.stack: cf03e000 [ 4.272516] PC is at cfi_qry_present+0x2f0/0x3fc [ 4.277191] LR is at console_unlock+0x3b0/0x3d4 [ 4.281756] pc : [<c058700c>] lr : [<c0168150>] psr: 60000013 [ 4.288063] sp : cf03fb90 ip : cf03fa80 fp : cf03fbc4 [ 4.293322] r10: c0967700 r9 : c0ae7760 r8 : 00000000 [ 4.298584] r7 : 00000002 r6 : 00000020 r5 : cf03fc64 r4 : cf53b024 [ 4.305155] r3 : d1000020 r2 : 00000000 r1 : 60000093 r0 : 00000012 [ 4.311729] Flags: nZCv IRQs on FIQs on Mode SVC_32 ISA ARM Segment none [ 4.318910] Control: 10c5387d Table: 80004019 DAC: 00000051 [ 4.324695] Process swapper (pid: 1, stack limit = 0xcf03e208) [ 4.330567] Stack: (0xcf03fb90 to 0xcf040000) [ 4.334969] fb80: cf03fbc4 00005151 00005252 00005959 [ 4.343215] fba0: cf03fc64 cf03fc64 cf53b024 00000000 00000000 00000000 cf03fbf4 cf03fbc8 [ 4.351457] fbc0: c0587190 c0586d28 cf03fc64 00000001 00000000 cf03fbec cf03fc64 cf53b024 [ 4.359702] fbe0: cf53b024 00000000 cf03fc54 cf03fbf8 c0585484 c0587124 c016975c c016843c [ 4.367944] fc00: 00000800 cf53b024 00000000 00000001 00000001 cf53b024 00000002 c0ae54a4 [ 4.376188] fc20: cf03fc44 cf03fc30 c01690bc 00000001 00000001 cf53b024 00000002 c0ae54a4 [ 4.384430] fc40: c0ae7760 c0967700 cf03fccc cf03fc58 c058ff74 c05853c0 c0168458 c0d2f694 [ 4.392672] fc60: c0ae54a4 00000000 00000000 00000002 00000001 00000000 00000000 00000000 [ 4.400913] fc80: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 4.409158] fca0: c01690bc cf53b024 c0ae6c18 cf53b024 cf53b010 c0ae7d34 c0d2f848 c0d2fa40 [ 4.417403] fcc0: cf03fce4 cf03fcd0 c05853ac c058f0fc c0d2f69c c0ae6c18 cf03fd04 cf03fce8 [ 4.425645] fce0: c058514c c058537c c0d2f838 c0d2fa80 00000000 cf53b010 cf03fd54 cf03fd08 [ 4.433889] fd00: c0590e30 c058510c cf485900 00000000 c05908c4 c0ae7c48 c0d0d60c c0ae7bf0 [ 4.442133] fd20: c0ae7bd4 cf53b024 c0d2f850 c0d2f848 ffffffed c0d2f9f4 fffffdfb c0d2f9f4 [ 4.450377] fd40: 00000000 00000000 cf03fd74 cf03fd58 c0548b6c c059098c c0d2f848 c0d88b48 [ 4.458619] fd60: c0d88b4c 00000000 cf03fda4 cf03fd78 c0547038 c0548b20 00000000 c0d2f9f4 [ 4.466863] fd80: c0d2f848 cf03fdf0 00000001 c0d88b24 00000000 00000000 cf03fdc4 cf03fda8 [ 4.475107] fda0: c0547254 c0546e2c 00000000 cf03fdf0 c05471b4 00000001 cf03fdec cf03fdc8 [ 4.483350] fdc0: c05452ec c05471c0 cf003e9c cf5385b4 c082dab4 c0d2f848 c0d2f87c c0d2f848 [ 4.491594] fde0: cf03fe14 cf03fdf0 c0546cfc c05452ac c0d2f848 00000001 c0d2f850 c0d2d408 [ 4.499836] fe00: c0d2f848 c0d2f848 cf03fe24 cf03fe18 c05472d4 c0546c50 cf03fe44 cf03fe28 [ 4.508081] fe20: c0546260 c05472cc c0d2f850 00000000 c0d2d288 c0d2f848 cf03fe84 cf03fe48 [ 4.516324] fe40: c05443f4 c05461e0 cf03fe74 cf03fe58 c012e158 c012ce2c c0541e48 00000001 [ 4.524568] fe60: c0d2fa60 c0d2f838 c0d0d60c c0d0d62c c0d2f848 c0d4ef80 cf03feac cf03fe88 [ 4.532812] fe80: c0548968 c0544048 c0d2f838 00000000 c0c23fb4 c0d4ef80 c0c3c830 000000d5 [ 4.541054] fea0: cf03fec4 cf03feb0 c054952c c054885c 00000000 00000000 cf03fedc cf03fec8 [ 4.549298] fec0: c0c23ffc c0549510 ffffe000 00000000 cf03ff4c cf03fee0 c0101974 c0c23fc0 [ 4.557542] fee0: cf03ff4c cf03fef0 c0145400 c0c00624 c0a9c5f4 c0a9c5d4 c0a9c620 c0aa676c [ 4.565785] ff00: 00000000 c0a9c5ac 00000006 00000006 c0aef22c c0b67ba4 cffffc7e 00000000 [ 4.574029] ff20: 00000000 c0b67ba4 00000007 c0b67ba4 c0c4d930 00000007 c0d4ef80 c0c3c830 [ 4.582272] ff40: cf03ff94 cf03ff50 c0c00eb4 c0101934 00000006 00000006 00000000 c0c00618 [ 4.590514] ff60: 00000000 c0c00618 00000000 00000000 c083b3a8 00000000 00000000 00000000 [ 4.598758] ff80: 00000000 00000000 cf03ffac cf03ff98 c083b3b8 c0c00d78 00000000 c083b3a8 [ 4.607000] ffa0: 00000000 cf03ffb0 c0107d28 c083b3b4 00000000 00000000 00000000 00000000 [ 4.615241] ffc0: 00000000 00000000 00000000 00000000 00000000 00000000 00000000 00000000 [ 4.623482] ffe0: 00000000 00000000 00000000 00000000 00000013 00000000 00000000 00000000 [ 4.631702] Backtrace: [ 4.634207] [<c0586d1c>] (cfi_qry_present) from [<c0587190>] (cfi_qry_mode_on+0x78/0x2c4) [ 4.642449] r8:00000000 r7:00000000 r6:00000000 r5:cf53b024 r4:cf03fc64 [ 4.649212] [<c0587118>] (cfi_qry_mode_on) from [<c0585484>] (cfi_probe_chip+0xd0/0x1024) [ 4.657448] r7:00000000 r6:cf53b024 r5:cf53b024 r4:cf03fc64 [ 4.663161] [<c05853b4>] (cfi_probe_chip) from [<c058ff74>] (mtd_do_chip_probe+0xe84/0x12f8) [ 4.671663] r10:c0967700 r9:c0ae7760 r8:c0ae54a4 r7:00000002 r6:cf53b024 r5:00000001 [ 4.679538] r4:00000001 [ 4.682109] [<c058f0f0>] (mtd_do_chip_probe) from [<c05853ac>] (cfi_probe+0x3c/0x44) [ 4.689914] r10:c0d2fa40 r9:c0d2f848 r8:c0ae7d34 r7:cf53b010 r6:cf53b024 r5:c0ae6c18 [ 4.697790] r4:cf53b024 [ 4.700363] [<c0585370>] (cfi_probe) from [<c058514c>] (do_map_probe+0x4c/0xa0) [ 4.707720] r5:c0ae6c18 r4:c0d2f69c [ 4.711338] [<c0585100>] (do_map_probe) from [<c0590e30>] (physmap_flash_probe+0x4b0/0x510) [ 4.719748] r7:cf53b010 r6:00000000 r5:c0d2fa80 r4:c0d2f838 [ 4.725466] [<c0590980>] (physmap_flash_probe) from [<c0548b6c>] (platform_drv_probe+0x58/0xb4) [ 4.734230] r10:00000000 r9:00000000 r8:c0d2f9f4 r7:fffffdfb r6:c0d2f9f4 r5:ffffffed [ 4.742105] r4:c0d2f848 [ 4.744676] [<c0548b14>] (platform_drv_probe) from [<c0547038>] (driver_probe_device+0x218/0x2e4) [ 4.753608] r7:00000000 r6:c0d88b4c r5:c0d88b48 r4:c0d2f848 [ 4.759316] [<c0546e20>] (driver_probe_device) from [<c0547254>] (__device_attach_driver+0xa0/0xd4) [ 4.768429] r10:00000000 r9:00000000 r8:c0d88b24 r7:00000001 r6:cf03fdf0 r5:c0d2f848 [ 4.776308] r4:c0d2f9f4 r3:00000000 [ 4.779942] [<c05471b4>] (__device_attach_driver) from [<c05452ec>] (bus_for_each_drv+0x4c/0x9c) [ 4.788787] r7:00000001 r6:c05471b4 r5:cf03fdf0 r4:00000000 [ 4.794499] [<c05452a0>] (bus_for_each_drv) from [<c0546cfc>] (__device_attach+0xb8/0x11c) [ 4.802818] r6:c0d2f848 r5:c0d2f87c r4:c0d2f848 [ 4.807479] [<c0546c44>] (__device_attach) from [<c05472d4>] (device_initial_probe+0x14/0x18) [ 4.816063] r7:c0d2f848 r6:c0d2f848 r5:c0d2d408 r4:c0d2f850 [ 4.821772] [<c05472c0>] (device_initial_probe) from [<c0546260>] (bus_probe_device+0x8c/0x94) [ 4.830449] [<c05461d4>] (bus_probe_device) from [<c05443f4>] (device_add+0x3b8/0x5a8) [ 4.838421] r7:c0d2f848 r6:c0d2d288 r5:00000000 r4:c0d2f850 [ 4.844133] [<c054403c>] (device_add) from [<c0548968>] (platform_device_add+0x118/0x22c) [ 4.852374] r10:c0d4ef80 r9:c0d2f848 r8:c0d0d62c r7:c0d0d60c r6:c0d2f838 r5:c0d2fa60 [ 4.860249] r4:00000001 [ 4.862822] [<c0548850>] (platform_device_add) from [<c054952c>] (platform_device_register+0x28/0x2c) [ 4.872108] r9:000000d5 r8:c0c3c830 r7:c0d4ef80 r6:c0c23fb4 r5:00000000 r4:c0d2f838 [ 4.879917] [<c0549504>] (platform_device_register) from [<c0c23ffc>] (physmap_init+0x48/0x98) [ 4.888581] r5:00000000 r4:00000000 [ 4.892202] [<c0c23fb4>] (physmap_init) from [<c0101974>] (do_one_initcall+0x4c/0x170) [ 4.900168] r5:00000000 r4:ffffe000 [ 4.903794] [<c0101928>] (do_one_initcall) from [<c0c00eb4>] (kernel_init_freeable+0x148/0x1e4) [ 4.912554] r8:c0c3c830 r7:c0d4ef80 r6:00000007 r5:c0c4d930 r4:c0b67ba4 [ 4.919328] [<c0c00d6c>] (kernel_init_freeable) from [<c083b3b8>] (kernel_init+0x10/0x114) [ 4.927653] r10:00000000 r9:00000000 r8:00000000 r7:00000000 r6:00000000 r5:c083b3a8 [ 4.935529] r4:00000000 [ 4.938110] [<c083b3a8>] (kernel_init) from [<c0107d28>] (ret_from_fork+0x14/0x2c) [ 4.945727] r5:c083b3a8 r4:00000000 [ 4.949345] Code: e34c00ae ebef8823 e594300c e0833006 (e1d350b0) [ 4.955521] ---[ end trace af325dc64b651274 ]--- [ 4.960335] Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b [ 4.960335] [ 4.969550] ---[ end Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b [ 4.969550]
Hello Srinivasa,
Thank you for summarizing the results in an excel file and we are currently reviewing the information you have shared. I will get back to you within 24 hours.
Regards,
Krunal
Hello Srinivasa,
While reviewing the logs, we noticed that the GPMC_CONFIG7_0 register is set to the following value: 0x848. This translates into chip-select size of 128 Mbytes and the BASEADDRESS to 0x8000000 (bit for A27=1, all other Ax=0). Please update the CONFIG_MTD_PHYSMAP_START to 0x8000000 and the CONFIG_MTD_PHYSMAP_LEN to 0x8000000.
Regards,
Krunal
Hi Krunal,
Thanks for your input.
Experiment 1:
I have updated the CONFIG_MTD_PHYSMAP_START and CONFIG_MTD_PHYSMAP_LEN as below:
Modification 1 -> Configuration:
CONFIG_MTD_PHYSMAP_COMPAT=y
CONFIG_MTD_PHYSMAP_START=0x8000000
CONFIG_MTD_PHYSMAP_LEN=0x8000000
CONFIG_MTD_PHYSMAP_BANKWIDTH=2
CONFIG_MTD_PHYSMAP_OF=y
Also, updted the dts file of gpmc node and NOR child node accordingly as below:
Modification 2 -> DTS:
&gpmc {
. . .
/* <cs-number> 0 <physical address of mapping> <size> */
ranges = <0 0 0x08000000 0x08000000>;
nor@0,0 {
/* reg = <0 0x00000000 0x10000000>; */
reg = <0 0x00000000 0x08000000>;
. . .
}
Modification 3 -> C Code:
Since old kernel (version 3.2.0) is working file, I have made all *.C files in new kernel under "drivers/mtd/chips" same as old kernel. (except for some naming conventions) and introduced printk.
Observations:
[ 6.042219] Srini debug @ line 386 in function genprobe_ident_chips in file drivers/mtd/chips/gen_probe.c
[ 6.042227]
[ 6.042230]
[ 6.059930]
[ 6.059933]
[ 6.059935]
[ 6.059938] Srini debug @ line 75 in function cfi_probe_chip in file drivers/mtd/chips/cfi_probe.c
[ 6.059945]
[ 6.059948]
[ 6.077022] physmap-flash.0: Found 1 x16 devices at 0x8000000 in 16-bit bank
[ 6.084384] CFI Success
Please find the logs attached as below:
Old Kernel: Old_Kernel_log.txt
New Kernel: New_Kernel_log_with_CONFIG_MTD_PHYSMAP_COMPAT_enabled.txt
DTS File: gmpc_node_dts.txt
Experiment 2:
Disabled CONFIG_MTD_PHYSMAP_COMPAT, recompiled the kernel, and tested.
Observations:
root@am335x-evm:~# cat /proc/mtd
dev: size erasesize name
mtd0: 00080000 00020000 "uboot"
mtd1: 00020000 00020000 "uboot-env"
mtd2: 00500000 00020000 "Current kernel"
mtd3: 00500000 00020000 "Backup kernel"
mtd4: 00500000 00020000 "Failsafe kernel"
In summary, now I have verified modules:
Next suspect:
From the kernel log it is noticed that GPMC configurations especially (GPMC_CONFIG7_0 = 0x848) is carry forwarded to kernel.
In the old kernel, they are updating 0x50 (256 MB and base address of 0x10000000) to GPMC_CONFIG7_0 in the baord file and we don't have this option in new kernel.
Next option I will be looking is to configure bootloader for 256 MB with base address of 0x10000000. I have tried this earlier, writing 0x50 to GPMC_CONFIG7_0 causes the system to hang and I have to do a pwoer cycle.
Any suggestions/input please let us know.
Regards
Srinivasa
Hello Srinivasa,
In the driver file, <u-boot>/arch/arm/mach-omap2/mem-common.c, there are two relevant CONFIG options that would need to be modified to describe NOR flash size and memory address: CONFIG_SYS_FLASH_SIZE and CONFIG_SYS_FLASH_BASE. The default values are defined in the am335x_evm.h file and please update the values based on your setup.
Regards,
Krunal
Hi Krunal,
Thanks for your input. Now I am able to configure u-boot for 256 MB and NOR FLASH base address to 0x10000000.
At u-boot, I am able to make GPMC_CONFIG7_0 to 0x50 and this is carry forwarded to Kernel.
With u-boot being made as 256 MB and NOR FLASH base address to 0x10000000, I have carried few tests as per the spreadsheet attached. Overall, I have covered below blocks & it is made similar to old kernel:
Surprisingly none of the test cases is working. Towards this I have below questions:
I have attached kernel logs for all test cases, dts and kernel configuration files. If you need anything from my end, let me know.
Any suggestions/input, please let us know.
Regards
Srinivasa
Hello Srinivasa,
The flash chip according to the datasheet (https://www.cypress.com/file/177991/download) has a non-multiplexed memory interface, meaning 27 address lines and 16 data lines. However, the GPMC_CONFIG1_0 register is configured to 0x1210 in all of the logs provided. In the TRM, Table 7-59. GPMC_CONFIG1_0 Register Field Descriptions, it says bits 9 and 8 define the MUXADDDATA as follows:
0h = Non-multiplexed attached device
1h = AAD-multiplexed protocol device
2h = Address and data multiplexed attached device
3h = Reserved
It appears the GPMC is configured for “Address and data multiplexed attached device” which would be incorrect, as it should be configured for “Non-multiplexed attached device” operation. I would try updating STNOR_GPMC_CONFIG1 in u-boot/arch/arm/include/asm/arch-am33xx/mem.h accordingly by removing the 2.
Regards,
Krunal
Hi Krunal,
We have a D latch (sn74cbtlv16212) between AM3352 and NOR flash and ALE signal connected to D latch.
From NOR flash point of view it is not multiplexed. As far as processor is concerned it is multiplexed. We discussed this in below link.
https://community.cypress.com/thread/48218 (Aug 15, 2019 11:26 PM).
In the old working kernel log, GPMC_CONFIG1_0 is also 0x1210.
Please let me know your thought on this.
Regards
Srinivasa
Krunal,
I have set my GPMC timing parameters in DTS file based on below approach:
I have seen below statement in kernel log messages
"enable GPMC debug to configure .dts timings for CS0"
Towards this I have enabled below option:
CONFIG_OMAP_GPMC_DEBUG=y
Since NOR flash write is working at Bootloader level and gpmc parameters are carry forwared from bootlader to Kernel. Based on the GPMC dump (kernel_log attached), I have added the same timings to my .dts file.
Attachment: New_kernel_log_with_NOR_with_gpmc_dump.txt
Next Step:
Since we don’t have any board which supports booting from NOR or SPI flash, I was trying to compare new Kernel with that of NAND flash (I am not sure if this is really correct).
Towards this I have MitySOM-335x board with 256 MB NAND connected to AM3359 processor using GPMC.
We have same kernel version from TI-SDK (V 05.03.00.07) up and running on this board. Here NAND write is working fine.
Here the dts file is being provided by MitySOM team.
As mentioned in approach 1, I did enable CONFIG_OMAP_GPMC_DEBUG=y and cross verfied the timings of GPMC dump with the DTS file provided by MitySOM. It is not matching and also they have other line items like "gpmc,sync-clk-ps = <0>;" added which are not present in GPMC dump.
Attachment:
New_kernel_log_with_NAND_with_gpmc_dump.txt
am335x-mitysom-256M.dtsi (DTS file from MitySOM)
Other observations:
Only GPMC driver being called in approach 2.
PHYSMAP driver from physmap.c is not being called.
Inference:
Considering this now I suspect the GPMC timings in DTS file.
How do I cross verify all the timings in NOR dts file?
How do I make sure that I have not missed any line items with respect to GPMC timings?
Please let us know your input on this.
Regards
Srinivasa
Hello Srinivasa,
With regards to the DTS timing, I will get back to you within 24 hours. The "gpmc,sync-clk-ps" is defined in the following document and is only needed for synchronous mode. As mentioned in the past, the following documents give a reference for setting up GPMC-NOR: Document1 and Document2.
Regards,
Krunal
Hi,
I am using an excel sheet provided by TI team to calculate all the timing parameters for GPMC.
It calculates all parameters for GPMC_CONFIG1_0 to GPMC_CONFIG6_0 (cs is 0).
With below values, I was able to detect the CFI flash as 128 MB and qry command was passing.
GPMC_CONFIG1_0 0x00001210
GPMC_CONFIG2_0 0x00101000
GPMC_CONFIG3_0 0x00030301
GPMC_CONFIG4_0 0x10041004
GPMC_CONFIG5_0 0x000c1010
GPMC_CONFIG6_0 0x08070280
In the excel sheet, I have updated "Reg Dump" with above values and from "Reg Parse" tab, I have updated all fields as per below page.
After, gpmc driver the values are being changed as below:
[ 3.273921] GPMC_CONFIG1_0 = 601210
[ 3.278219] GPMC_CONFIG2_0 = 20280
[ 3.282462] GPMC_CONFIG3_0 = 10181
[ 3.286675] GPMC_CONFIG4_0 = 2810281
[ 3.291094] GPMC_CONFIG5_0 = 1020202
[ 3.295482] GPMC_CONFIG6_0 = 10101c0
Later CFI flash is not being detected because qry command fails. I have attached kernel log for refernce and dts file.
I have used GPMC clk as 100 MHz because of below understanding:
From Table 7.3.
GPMC_FCLK = CORE_CLKOUTM4/2
From Figure 8-10
CORE_CLKOUTM4 = (200 MHz)
Therefore GPMC_FCLK = (200 MHz/2) = 100 MHz.
GPMC_CLK = GPMC_FCLK = 100 MHz(Becasue GPMC_CONFIG1_i[1-0] is 00).
From the excel file, dts and kernel log, if you have any comments, please let us know.
Regards
Srinivasa
Hi Srinivasa,
I've noticed there is no movement on this thread for about a month now.
Can you please let us know where this stands, and if any progress has been made since your last post on 09/25. I'll be happy to give this another set of eyes in case you still have any issues.
Thanks and Regards,
Andreas
Hi,
This issue is not resloved & very much active and we are looking for your help. I think it is duplicated with below thread with the same name:
https://e2e.ti.com/support/processors/f/791/p/834972/3137466#3137466
If you can give any input on this will be great.
Regards
Srinivasa
Hi Srinivasa,
Srinivasa Wunnimani1 said:This issue is not resolved & very much active and we are looking for your help.
I spent some more time looking at the register values but have not found an explanation for what you are seeing but it might be timing related. All the memory timing values are very different from what you had used in your older working system, presumably because to accommodate some clock tree setup differences(?). If we could somehow get the clock setup aligned with your older solution then all the memory related timing parameters should align too, or you could force them to be aligned by writing the register values directly.
I also wonder if the time might have come where it might be a good idea to re-do the entire porting effort from scratch, possibly from a different starting point. It sounds like a lot of modifications were made to the Kernel tree throughout the effort getting this working including transplanting entire driver files, and frankly I am not convinced that such a large-scope change and effort should even be required to get access to a memory working. From my own past I recall sometimes you miss a detail porting changes or make modifications intentionally or unintentionally and that will introduce additional problems down the road, making things harder than they need to be.
Nevertheless it's on top of my queue now to look at tomorrow, so I'll let you know if there is something else I find reviewing the data and the code.
Srinivasa Wunnimani1 said:I think it is duplicated with below thread with the same name:
https://e2e.ti.com/support/processors/f/791/p/834972/3137466#3137466
This is actually the same thread, just another view of it. As you have noted yourself the thread has gotten very long and it now spans multiple pages . If you look at the number embedded in the URL '834972' this is what we refer to as Thread ID and it is the same this thread vs. the one you were referencing above.
Thanks and Regards,
Andreas
Hi Andreas,
Thank you very much for your time.
All the memory timing values are very different from what you had used in your older working system, presumably because to accommodate some clock tree setup differences(?). |
First, we tried with the values same as working system but it was not working:
Not working means we have two problems:
Our suspect was on the timing parameters which is being passed from DTS to the kernel. So, we started trying out with various options to accommodate some clock tree setup differences.
If we could somehow get the clock setup aligned with your older solution then all the memory related timing parameters should align too, or you could force them to be aligned by writing the register values directly. |
Yes, we are aiming for this. Towards this we have done below steps but still we have the NOR flash write problem.
We have made the values of GPMC registers same as old kernel at various all stages of booting.
I also wonder if the time might have come where it might be a good idea to re-do the entire porting effort from scratch, possibly from a different starting point. It sounds like a lot of modifications were made to the Kernel tree throughout the effort getting this working including transplanting entire driver files, and frankly I am not convinced that such a large-scope change and effort should even be required to get access to a memory working. From my own past I recall sometimes you miss a detail porting changes or make modifications intentionally or unintentionally and that will introduce additional problems down the road, making things harder than they need to be. |
I completely agree with your suggestion. I have re-done the porting activity by installing new TI-SDK and followed below steps:
Applied the patch provided by Cypress team:
patch -p1 < linux-3.14.27-s70gl02gs.patch
Deleted the RTC block from arch/arm/boot/dts/am33xx.dtsi file.
rtc: rtc@44e3e000 {
compatible = "ti,am3352-rtc", "ti,da830-rtc";
reg = <0x44e3e000 0x1000>;
interrupts = <75
76>;
ti,hwmods = "rtc";
clocks = <&clkdiv32k_ick>;
clock-names = "int-clk";
};
Edited arch/arm/mach-omap2/omap_hwmod_33xx_data.c and commented below line
am33xx_l4_wkup__rtc entry from am33xx_hwmod_ocp_ifs array.
Copy the latest configuration file to Linux folder and rename it as .config
Build Kernel.
Compile the DTS file.
As mentioned above, I have added only debug statements to print all GPMC register and control registers related NOR flash interface at various all stages of booting.
I have enabled below debug statement in GPMC driver to make sure that it is using CS0 and my GPMC clock is 100 MHz.
printk("GPMC CS%d CLK period is %lu ns (div %d)\n", cs, (div * gpmc_get_fclk_period()) / 1000, div);
I have verified by creating a patch file and patch file contains only above-mentioned changes. (attached patch file for reference (“debug_changes.patch”).
In summary:
Still we have NOR flash write problem as mentioned above.
If you have any other suggestion or any queries on the steps I have mentioned, please let me know.
Further questions:
Recently we have received GPMC tool intended to assist debugging GPMC issues (“GPMC+tool.xlsm”) from TI team.
In “How To” tab, they have suggested below point:
7. Observe waveforms of the output signals and events for read and write cycles in the Waveform tab.
There are no pins for below signals, how can we bring out below signals?
Attachments:
Hi Srinivasa,
I appreciate the "fresh start" and new baseline of the issue you provided. I think it must be a bit frustrating thinking the solution should be quite close yet it is not working. Let me dig through your latest snapshot in detail and also see if there is opportunity to consult with others on the team for additional ideas. Please allow 2 days for this process.
Regards, Andreas
Hi Srinivasa,
As mentioned above, I have added only debug statements to print all GPMC register and control registers related NOR flash interface at various all stages of booting.
- Booloader.
- Start of Kernel.
- Beginning of gpmc driver.
- End of gpmc driver.
- After all drivers are inserted and just before file system is mounted.
You have probably noticed this already but in your new setup the GPMC_SYSCONFIG register always has the SOFTRESET bit set. This bit is supposed to get reset to 0 by hardware according to the TRM, so I wonder why it is always set during all of the stages of your Kernel log (New_Kernel_Log.txt), with the first occurrence being at:
[ 2.042524] Srini debug @ line 2518 in function gpmc_probe in file drivers/memory/omap-gpmc.c
I suspect there is no way the GPMC module can actually operate while SOFTRESET is set. Have you looked into this further why this bit stays at '1'?
I'm still digging through your materials.
Regards, Andreas
Hi Andreas,
All values in excel file "GPMC_values_compare_old_with_new" is in hexadecimal.
So GOMC_SYSCONFIG value is 0x11.
Regards
Srinivasa
Hi Srinivasa,
oh right those were in hex, pls ignore my comment.
Anyways, reviewing your changes and also some of the discussions you had with the folks from Cypress I noticed one anomaly that might be worth looking into further.
Old (working) Kernel log:
[ 4.829487] physmap-flash.0: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x000001 Chip ID 0x004801 [ 4.840213] physmap-flash.0: Found 1 x16 devices at 0x8000000 in 16-bit bank
New Kernel log:
[ 2.814887] physmap-flash.0: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x000001 Chip ID 0x004801
So I was looking at the Kernel's drivers/mtd/chips/cfi_probe.c function to see what is going on, and it seems like the function cfi_probe_chip() is not running to the end, which is where the second print with the old Kernel would have gotten emitted. It appears that normally cfi_probe_chip() would need to get called twice for this second print to happen (you can add debug prints to confirm this behavior with old and new Kernel and your HW). So there is something going on with the current DTS-based setup not triggering the same code flow as the old platform data-based setup.
Then, the patch you got from Cypress forces the memory size to 128MB with this line...
cfi->cfiq->DevSize = 0x1B;
...to accommodate for the internal 2-die architecture of the Flash chip. So to get your full 256MB visible it does seem to rely on cfi_probe_chip() getting called twice.
So we need to find a way to invoke cfi_probe_chip() twice. I have not looked into how to do that in the context of DTS (if it is even possible, since both dies would share the same CS signal), but one way to work this could be my modifying cfi_probe(). Rather than calling mtd_do_chip_probe() once, I would suggest try updating it to call mtd_do_chip_probe() twice, while in-between the two calls updating the "map" data for the two different memory regions. You could print the map data elements, and then figure out what parameters you need to update before calling mtd_do_chip_probe() again. You could also cross-check against the old Kernel which map data is passed there for the two calls to mtd_do_chip_probe().
While you hopefully get a chance to experiment with this some more I'll look into if/how this can be accomplished with DTS on my end.
Regards, Andreas
Hi Andreas,
Function mtd_do_chip_probe() is being called once both in old and new kernel.
mtd_do_chip_probe() calls genprobe_ident_chips() and there is for loop as shown below. This is location in old kernel it is probing the chip for the second time.
for (i = 1; i < max_chips; i++) {
printk("Value of i is %d & i << cfi.chipshift is %d\n", i, i << cfi.chipshift);
cp->probe_chip(map, i << cfi.chipshift, chip_map, &cfi);
}
cp->probe_chip() is nothing but cfi_probe_chip() which is present in “drivers/mtd/chips/cfi_probe.c”
I have added debug statements in genprobe_ident_chips() for both old and new kernel before and after for loop. Values are as below:
[ 4.979006] Srini -> Value of cfi.numchips is 1
[ 4.986821] Srini -> Value of max_chips is 2
[ 4.991277] Srini -> Value of map->size is 268435456
[ 4.996451] Srini -> Value of mapsize is 4
[ 5.000728] Srini -> Value of chip_map is 1
[ 5.005088] Value of i is 1 & i << cfi.chipshift is 134217728
I am noticing all above values are same in old and new kernel except for below variables.
Value of map->set_vpp.
Value of map->map_priv_1
As per my understanding above variables should not affect CFI probe.
I am not sure why “cfi_probe_chip()” is being called in old kernel but NOT in new kernel? I have attached kernel logs and code for your analysis.
Attachments:
Regards
Srinivasa
Hi Andreas,
Upon looking at cfi_probe_chip() function, I found that it was failing in below block:
if (!cfi_qry_present(map, start, cfi)) {
xip_allowed(base, map);
printk(KERN_DEBUG "%s: Found an alias at 0x%x for the chip at 0x%lx\n",
map->name, base, start);
printk("%s: Found an alias at 0x%x for the chip at 0x%lx\n",
map->name, base, start);
printk("\n\n\nSrini debug @ line %d in function %s in file %s\n\n\n",__LINE__, __FUNCTION__, __FILE__);
return 0;
}
I have commented the above block and now it is able to detect 2 chips and in partition 5, I am able to see 240M as below:
root@am335x-evm:~# mtd_debug info /dev/mtd5
mtd.type = MTD_NORFLASH
mtd.flags = MTD_CAP_NORFLASH
mtd.size = 252051456 (240M)
mtd.erasesize = 131072 (128K)
mtd.writesize = 1
mtd.oobsize = 0
regions = 0
[ 3.107323] number of CFI chips: 2
I have attached new kernel log and file and cfi_probe.c from new kernel with my modifications for reference.
Questions:
Can we go ahead with this modification?
Regards
Srinivasa
Hi Srinivasa,
well looks like we are making progress that's great. But what you have essentially done is having disabled the alias check which is meant to be a safeguard against mis-configuration. Now, the 2-die S70GL02GS is somewhat special as we know, so it is a bit difficult to say without a deep dive into the CFI/MTD code and framework if this is indeed a valid modification in this specific case. What you could do however is testing your change to see if you can go through several erase and re-write cycles of your entire 256MB of memory, each time populating different contents to see if the flash operates as expected. Also if I was to make this hack permanent I would probably remove the entire alias-checking for(;;) loop from cfi_probe_chip() rather than just a portion of it, and do that through using #ifdef/#endif preprocessor statements tied to a definition unique to your board.
I also had a look at the current upstream Kernel and saw that official modifications were made for S70GL02GS using the below two patches:
"mtd: cfi: Support early CFI fixups"
https://github.com/torvalds/linux/commit/b1c97e2335f24dbdcc26cfdc882b8b5a0bad25c2#diff-99928f5adecf367549570fc3c88e0b64
"mtd: cfi: Add early fixup for S70GL02GS"
https://github.com/torvalds/linux/commit/0fe3ede7941dfcd6fd540fc2b086453d3ee8f236#diff-99928f5adecf367549570fc3c88e0b64
Those patches combined do something very similar than the patch you received from Cypress, although there are slight differences in how cfi->cfiq is being modified. You could experiment with these two patches and using them instead of the Cypress patch if you see any issues and see if those result in a different behavior.
I also found the below thread, where the support staff insists that the S70GL02GS needs to be treated as two separate devices from a software point of view using different DTS regions otherwise there could be issues with certain commands such as lock/unlock, however does not provide any Linux-based example. But since you had this working in the older Kernel to your satisfaction already that tells me that either you are using the flash chip in a way that doesn't expose any such specific limitations for what you are doing (that would be my guess), or that the Linux driver is able to handle the device just fine solely based on the changes made to cfi_probe.c by the patches under discussion.
https://community.cypress.com/thread/34845?start=0&tstart=0
Regards, Andreas
Hi Andreas,
Test Case 1:
Result: This is like our old problem definitions.
Test Case 2:
Result: This is like our latest fix towards 2 chip detection.
Considering above two test cases new two patches behavior is same as old one patch. I have attached the kernel log file for both cases.
https://community.cypress.com/thread/34845?start=0&tstart=0
In the above link since they have not provided Linux example we cannot implement or modify anything as of now in the current kernel. Also, the same chip is working with the old kernel I don’t think we need to modify at the command level which is being discussed.
Next step:
If we can go ahead of fix by disabling alias check still we have problem of single sector write.
Not working means we have two problems:
In both cases we can write only one sector. What would be your suggestion towards this for second problem.
Which modules do I need to look up for this?
Regards
Srinivasa
Hi Srinivasa,
the results of your test 1 and test 2 are what I expected after reviewing the new patch, as the effective differences looked very minor. But thanks for running those tests.
Srinivasa Wunnimani1 said:If we can go ahead of fix by disabling alias check still we have problem of single sector write.
Not working means we have two problems:
- Flash is detected as only 128 MB.
- We can write only one sector or data. Writing any file more than one sector size causes failure in verification.
In both cases we can write only one sector. What would be your suggestion towards this for second problem.
Which modules do I need to look up for this?
I was thinking about this, in the old Kernel the alias check was still active (that code hasn't really changed for quite a while it seems), and you still had everything working: 256MB and multi-sector write. To me that means you probably want to find a way to probe the memory with the new Kernel in a way that still works with the alias check *enabled* (as it is probably a valid safeguard that should be left active), by investigating the data structures and call sequences that happen during probe. Once you know what those need to be then you can work backwards to see the best way how to provide those, whether it be through DTS updates or through probably some minor surgical change to the driver stack. So I'd start checking if you can "transplant" working data structures describing the flash device read out from the old Kernel during runtime into the new Kernel in a hard-coded fashion and get it working this way.
I'm going to have tomorrow another closer look at the driver framework to see if there is something that spikes out.
Regards, Andreas
Hi Andreas,
Going back to my post on Nov 6, 2019 2:16 PM, I mentioned it was failing in the below alias check.
if (!cfi_qry_present(map, start, cfi)) {
xip_allowed(base, map);
printk(KERN_DEBUG "%s: Found an alias at 0x%x for the chip at 0x%lx\n",
map->name, base, start);
printk("%s: Found an alias at 0x%x for the chip at 0x%lx\n",
map->name, base, start);
printk("\n\n\nSrini debug @ line %d in function %s in file %s\n\n\n",__LINE__, __FUNCTION__, __FILE__);
return 0;
}
Another observation, I would like to bring to your notice:
Before this block, we have below statement.
// cfi_qry_mode_off(start, map, cfi);
I have commented above statement with the alias check *enabled*. With this change, we are good, kernel prints "number of CFI chips: 2" and
we have 256 MB flash detected!!! I feel this should give us some hint.
Any comments/input from this?
By investigating the data structures and call sequences that happen during probe. |
We have doen this considering two suspect scenarios:
Suspect 1:
As far as CFI drivers is concerneed, old and new kernel it is the same. Only the code is recorganized. In old Kernel, many functions are static and inline and are present in "include/linux/mtd/cfi.h", whereas in new kernel it is not static and iniline and all functions are present in "drivers/mtd/chips/cfi_util.c".
To rule out this, we made complete CFI driver same as old by replacing old in the new kernel. (if you rememeber after your suggestion, we started from installation again), but we could not find any solution here.
Suspect 2:
Major difference between old and new kernel is in the map drivers.
In old kernel, map driver is from "drivers/mtd/maps/physmap.c" and probe function called is "physmap_flash_probe()".
In new kernel, map driver is from "drivers/memory/omap-gpmc.c" and probe function called is "gpmc_probe()".
Please refer to my post from "Oct 4, 2019 9:46 AM", where I have attempted to make physmap_flash_probe() as my map driver but still no solution.
We are not sure if anything going on in map drivers (suspect 2).
Regards
Srinivasa
Hi Srinivasa,
Srinivasa Wunnimani1 said:I have commented above statement with the alias check *enabled*. With this change, we are good, kernel prints "number of CFI chips: 2" and
we have 256 MB flash detected!!! I feel this should give us some hint.Any comments/input from this?
Well this is still working around the "safeguard", albeit in a different way. As mentioned before the fact that it works with those checks on your old Kernel tells me this is probably not the place to dig further for now. This being said, these issues suggest that somehow the memory seems to get mapped differently in old vs new, and we need to find out how/why.
Srinivasa Wunnimani1 said:Please refer to my post from "Oct 4, 2019 9:46 AM", where I have attempted to make physmap_flash_probe() as my map driver but still no solution.
We are not sure if anything going on in map drivers (suspect 2).
This aspect needs to be double checked further I think. You mentioned earlier that writing more than one sector of data fails.
Is the memory area you are writing to completely erased?
Can you try writing to a different memory area/mtd partition (one you know that's erased) to see if you can write more than one sector?
I'm going to dig a bit deeper into the mapping driver to see if the behavior can be explained. I wonder if somehow your next sector (where the write fails) incorrectly gets mapped to the second die in the Flash chip which is not expecting this access and is not in the right state for a write/erase operation. According to the datasheet, section "Second Die Access", the way the Cypress S70GL02GS device works is that it effectively uses the highest-numbered A26 address signal to select between die 1 and die 2 which will need to be comprehended in how the device is accessed during unlock/write.
(Datasheet for reference: https://www.cypress.com/file/177991/download
Regards, Andreas
Hi Andreas,
In the old kernel (Linux version 3.2.0), mapping driver is from “drivers/mtd/maps/physmap.c” and physmap_flash_probe() is being called().
We are seeing below line in old kernel log:
physmap platform flash device: 10000000 at 10000000
Whereas in new kernel Linux version 4.14, map probe function is different. Above mentioned fun physmap_flash_probe() is not being called but gpmc_probe() from drivers/memory/omap-gpmc.c is being called.
Considering these two different implementations, I have tried introducing debug statements in GPMC driver, but I could not find any failure case which I can link to our problem.
I am not sure how memory is getting mapped in old and new implementation. Please let me the code implementation part where this is done. I can add debug statement in old and new kernel for comparison and further debugging.
I'm going to dig a bit deeper into the mapping driver to see if the behavior can be explained. |
Which part of the code (file/function) will you be looking at? If you need any debug statements to be introduced, please let me know.
Regards
Srinivasa
Hi Srinivasa,
I was looking today at some of the aspects regarding the Flash erase sector size (128KB) as well as how the two different Flash dies are mapped (to make sure they both get their unlock commands as needed) but then found this thread here:
https://community.cypress.com/thread/48218?start=30&tstart=0
In the provided ZIP file from Sept 6th there is a log in there named Not_Working_Kernel_log_and_flash_erase.txt with Kernel 4.14 that shows you successfully erasing all mtdX partitions which is a good step, as I think that validates a lot of the memory mapping and unlock/lock command handling aspects. Then, it also shows what looks like you attempting to write those mtdx partitions partially, but only what looks like the first 128KB each, just like you described earlier here on the E2E. I don't think I had seen those more complete logs before but there is something interesting about them like this...
[ 51.220005] MTD do_write_buffer(): WRITE 0x000bd600(0x0000d9c7) [ 51.226347] MTD do_write_buffer(): WRITE 0x000bd800(0x0000cbd5) [ 51.237365] MTD do_write_buffer(): WRITE 0x000bda00(0x0000eb74) [ 51.246407] MTD do_write_buffer(): WRITE 0x000bdc00(0x00006b4c) [ 51.255395] MTD do_write_buffer(): WRITE 0x000bde00(0x000061b1) Writing data: 130k/3748k (3%)[ 51.264685] [ 51.264685] [ 51.264685] [ 51.264685] Srini debug @ line 1984 in function cfi_amdstd_write_buffers in file drivers/mtd/chips/cfi_cmdset_0002.c [ 51.264685] [ 51.264685] [ 51.289860] MTD do_write_buffer(): WRITE 0x000be000(0x0000ab6b) [ 51.296207] MTD do_write_buffer(): WRITE 0x000be200(0x0000df1c) [ 51.312934] MTD do_write_buffer(): WRITE 0x000be400(0x000002bc) [ 51.319295] MTD do_write_buffer(): WRITE 0x000be600(0x0000c401) [ 51.330111] MTD do_write_buffer(): WRITE 0x000be800(0x00003f79) [ 51.336470] MTD do_write_buffer(): WRITE 0x000bea00(0x00001329) [ 51.347888] MTD do_write_buffer(): WRITE 0x000bec00(0x000001c3) [ 51.357016] MTD do_write_buffer(): WRITE 0x000bee00(0x00009e60) [ 51.365974] MTD do_write_buffer(): WRITE 0x000bf000(0x00005dd6) [ 51.375012] MTD do_write_buffer(): WRITE 0x000bf200(0x00003909) [ 51.384082] MTD do_write_buffer(): WRITE 0x000bf400(0x0000fc85) [ 51.393076] MTD do_write_buffer(): WRITE 0x000bf600(0x000089ab) [ 51.402079] MTD do_write_buffer(): WRITE 0x000bf800(0x0000c25e) [ 51.408443] MTD do_write_buffer(): WRITE 0x000bfa00(0x00007733) [ 51.419340] MTD do_write_buffer(): WRITE 0x000bfc00(0x00004038) [ 51.428375] MTD do_write_buffer(): WRITE 0x000bfe00(0x000046e0) [ 51.437472] MTD do_write_buffer(): WRITE 0x000c0000(0x0000fa9f) root@am335x-evm:~# root@am335x-evm:~#
So what exactly happens after the debug prints belonging to the "Writing data: 130k/3748k (3%)[ 51.264685]" step as in the above extract from your log? It seems like you just get back to the Linux prompt each time without any further prints, error messages, or anything at all?
Then, what happens if you read back those ~130KB that got programmed into the different partitions? Did that data get programmed correctly?
Regards, Andreas
Hi Andreas,
So what exactly happens after the debug prints belonging to the "Writing data: 130k/3748k (3%)[ 51.264685]" step as in the above extract from your log? It seems like you just get back to the Linux prompt each time without any further prints, error messages, or anything at all? |
In the newly installed TI SDK, system hangs and I need to do a power cycle. I understand your point in the above logs, what you are noticing was after our modifications.
Then, what happens if you read back those ~130KB that got programmed into the different partitions? Did that data get programmed correctly? |
We are able to erase/write/read one sector on all partitions and we are writing a known data.
We are just doing "cat /dev/mtdx" and we are able to see the data back.
If you need any more info, please let me know.
Regards
Srinivasa
Hi Srinivasa,
Srinivasa Wunnimani1 said:In the newly installed TI SDK, system hangs and I need to do a power cycle. I understand your point in the above logs, what you are noticing was after our modifications.
So basically with your current setup after 128KB are written those commands just stopped and you return to prompt?
If that's the case maybe something is wrong with your userspace utilities then, and not the Kernel level setup?
Can you try and build the latest set of MTD utilities like 'flashcp' from the source available at: http://www.linux-mtd.infradead.org/source.html (http://git.infradead.org/mtd-utils.git/tree) and see if the behavior changes.
I would also like you to try a different angle to see what results this gives us. As you know the Linux kernel including the various subsystems undergo constant changes and improvements, so I'd like to see what happens when you try booting your platform on the latest kernel, specifically the TI pre-integrated ti-linux-5.4.y tree (this will be the base for next year's SDK nevertheless you can use it already for experiments) available here:
Can you please clone this repo and check out the ti-linux-5.4.y branch.
See that you can port over your device tree and defconfig files using the usual methods, and then build the Kernel. Note that this Kernel already has the equivalent of the patch you received from Cypress which we discussed earlier (so you won't need to apply this patch):
0fe3ede7941 ("mtd: cfi: Add early fixup for S70GL02GS")
https://git.ti.com/gitweb?p=ti-linux-kernel/ti-linux-kernel.git;a=commit;h=0fe3ede7941dfcd6fd540fc2b086453d3ee8f236
But it also has other interesting changes which may or may not bring improvements for the issue you are seeing, like this one:
37c673ade35 ("mtd: cfi_cmdset_0002: Use chip_good() to retry in do_write_oneword()")
https://git.ti.com/gitweb?p=ti-linux-kernel/ti-linux-kernel.git;a=commit;h=37c673ade35c707d50583b5b25091ff8ebdeafd7
Can you please experiment with this ti-linux-5.4.y branch and see how this changes the behavior and if any improvements can be seen. Note that you probably still need to apply the HACK you found disabling the alias check (but please try also without it).
Thanks and Regards,
Andreas
Hi Andreas,
Just an update.
Upon executing below command and after writing one sector of data, system is not hanging.
flashcp -v hello_200K.txt /dev/mtd2
Since there are no kernel messages, terminal goes blank. Above command is not even responding to "Ctrl + C".
Just to prove above scenario, I removed the SD card while the system is up and running. I could see the mmc error messages.
Please find the logs attached. (New_kernel_log_20_Nov_2019.txt)
Can you try and build the latest set of MTD utilities like 'flashcp' from the source available at: http://www.linux-mtd.infradead.org/source.html (http://git.infradead.org/mtd-utils.git/tree) and see if the behavior changes. |
That's a good thought and we have never done this before. I did download the "mtd-utils-57b6d16.tar.gz" from above link but haveing hard time in configuring the cross compiling for ARM architecture.
If you have done this, please share the steps for the same.
I am not tried this yet. Tomorrow I am not working. Will update you on friday on this.
Regards
Srinivasa
U-Boot SPL 2018.01-00569-g7b4e473-dirty (Nov 11 2019 - 06:30:02) Trying to boot from MMC1 *** Warning - bad CRC, using default environment U-Boot 2018.01-00569-g7b4e473-dirty (Nov 11 2019 - 06:30:02 +0530) CPU : AM335X-GP rev 2.1 Model: TI AM335x EVM-SK DRAM: 256 MiB 256 MiB OF: translating address: 0070e044 OF: parent translation for: 00000000 OF: one level translation: 0070e044 OF: translating address: 00c00448 OF: parent translation for: 00000000 OF: one level translation: 00c00448 OF: translating address: 00c01a48 OF: parent translation for: 00000000 OF: one level translation: 00c01a48 OF: translating address: 00e01a48 OF: parent translation for: 00000000 OF: one level translation: 00e01a48 OF: translating address: 0090e044 OF: parent translation for: 00000000 OF: one level translation: 0090e044 Flash: OF: translating address: 00000448 OF: parent translation for: 00000000 OF: one level translation: 00000448 device interface is 1 found port 2 chip 2 port 16 bits chip 16 bits ERROR: too many flash sectors [CKR] flash_real_protect() - something tried to protect - but disregarded. Sector#: 0 [CKR] flash_real_protect() - something tried to protect - but disregarded. Sector#: 1 [CKR] flash_real_protect() - something tried to protect - but disregarded. Sector#: 2 256 MiB Srini MMC: OF: translating address: 00000648 OF: parent translation for: 00000000 OF: one level translation: 00000648 OF: translating address: 00801d48 OF: parent translation for: 00000000 OF: one level translation: 00801d48 OMAP SD/MMC: 0, OMAP SD/MMC: 1 *** Warning - bad CRC, using default environment Net: No ethernet found. TI-SDK U-Boot Hit any key to stop autoboot: 0 => => => => fatload mmc 0:1 0x88000000 am335x-evmsk.dtb 35335 bytes read in 8 ms (4.2 MiB/s) => setenv bootargs console=ttyS0,115200n8 root=/dev/mmcblk0p2 rw rootfstype=ext3 rootwait => fatload mmc 0:1 0x82000000 zImage 3834368 bytes read in 526 ms (7 MiB/s) => bootz 0x82000000 - 0x88000000 ## Flattened Device Tree blob at 88000000 Booting using the fdt blob at 0x88000000 Loading Device Tree to 8df31000, end 8df3ca06 ... OK Starting kernel ... Srini machid : 3589 Srini r2 : 8df31000 Jumping to 82000000 Bye bye u-boot :( [ 0.000000] Booting Linux on physical CPU 0x0 [ 0.000000] Linux version 4.14.79-ge669d52447 (pcadmin@pcadmin-OptiPlex-790) (gcc version 7.2.1 20171011 (Linaro GCC 7.2-2017.11)9 [ 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] OF: fdt: Machine model: TI AM335x EVM-SK [ 0.000000] Memory policy: Data cache writeback [ 0.000000] efi: Getting EFI parameters from FDT: [ 0.000000] efi: UEFI not found. [ 0.000000] cma: Reserved 48 MiB at 0x8a800000 [ 0.000000] CPU: All CPU(s) started in SVC mode. [ 0.000000] AM335X ES2.1 (neon) [ 0.000000] Built 1 zonelists, mobility grouping on. Total pages: 64960 [ 0.000000] Kernel command line: console=ttyS0,115200n8 root=/dev/mmcblk0p2 rw rootfstype=ext3 rootwait [ 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: 197296K/262144K available (8192K kernel code, 315K rwdata, 2456K rodata, 1024K init, 267K bss, 15696K reserve) [ 0.000000] Virtual kernel memory layout: [ 0.000000] vector : 0xffff0000 - 0xffff1000 ( 4 kB) [ 0.000000] fixmap : 0xffc00000 - 0xfff00000 (3072 kB) [ 0.000000] vmalloc : 0xd0800000 - 0xff800000 ( 752 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 - 0xc0900000 (9184 kB) [ 0.000000] .init : 0xc0c00000 - 0xc0d00000 (1024 kB) [ 0.000000] .data : 0xc0d00000 - 0xc0d4ed80 ( 316 kB) [ 0.000000] .bss : 0xc0d4ed80 - 0xc0d91bec ( 268 kB) [ 0.000000] SLUB: HWalign=64, Order=0-3, MinObjects=0, CPUs=1, Nodes=1 [ 0.000000] Preemptible hierarchical RCU implementation. [ 0.000000] Tasks RCU enabled. [ 0.000000] NR_IRQS: 16, nr_irqs: 16, preallocated irqs: 16 [ 0.000000] IRQ: Found an INTC at 0xfa200000 (revision 5.0) with 128 interrupts [ 0.000000] OMAP clockevent source: timer2 at 24000000 Hz [ 0.000033] sched_clock: 32 bits at 24MHz, resolution 41ns, wraps every 89478484971ns [ 0.000082] clocksource: timer1: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 79635851949 ns [ 0.000110] OMAP clocksource: timer1 at 24000000 Hz [ 0.000518] timer_probe: no matching timers found [ 0.000968] Console: colour dummy device 80x30 [ 0.001072] Calibrating delay loop... 289.99 BogoMIPS (lpj=1449984) [ 0.067723] pid_max: default: 32768 minimum: 301 [ 0.068189] Mount-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.068228] Mountpoint-cache hash table entries: 1024 (order: 0, 4096 bytes) [ 0.069970] CPU: Testing write buffer coherency: ok [ 0.070101] CPU0: Spectre v2: using BPIALL workaround [ 0.071566] Setting up static identity map for 0x80100000 - 0x80100060 [ 0.071933] Hierarchical SRCU implementation. [ 0.072810] EFI services will not be available. [ 0.076492] devtmpfs: initialized [ 0.096626] random: get_random_u32 called from bucket_table_alloc+0x8c/0x1ac with crng_init=0 [ 0.097591] VFP support v0.3: implementor 41 architecture 3 part 30 variant c rev 3 [ 0.098391] clocksource: jiffies: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 19112604462750000 ns [ 0.098442] futex hash table entries: 256 (order: -1, 3072 bytes) [ 0.105937] pinctrl core: initialized pinctrl subsystem [ 0.107466] DMI not present or invalid. [ 0.108644] NET: Registered protocol family 16 [ 0.113965] DMA: preallocated 256 KiB pool for atomic coherent allocations [ 0.145759] omap_hwmod: debugss: _wait_target_disable failed [ 0.207064] cpuidle: using governor ladder [ 0.207149] cpuidle: using governor menu [ 0.218219] OMAP GPIO hardware version 0.1 [ 0.233347] omap-gpmc 50000000.gpmc: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/nor_pins, deferre [ 0.238332] No ATAGs? [ 0.238364] hw-breakpoint: debug architecture 0x4 unsupported. [ 0.272429] edma 49000000.edma: TI EDMA DMA engine driver [ 0.281422] omap_i2c 44e0b000.i2c: could not find pctldev for node /ocp/l4_wkup@44c00000/scm@210000/pinmux@800/pinmux_i2c0_pins, e [ 0.281693] media: Linux media interface: v0.10 [ 0.281801] Linux video capture interface: v2.00 [ 0.282063] pps_core: LinuxPPS API ver. 1 registered [ 0.282086] pps_core: Software ver. 5.3.6 - Copyright 2005-2007 Rodolfo Giometti <giometti@linux.it> [ 0.282151] PTP clock support registered [ 0.282242] EDAC MC: Ver: 3.0.0 [ 0.283217] dmi: Firmware registration failed. [ 0.284090] omap-mailbox 480c8000.mailbox: omap mailbox rev 0x400 [ 0.284790] Advanced Linux Sound Architecture Driver Initialized. [ 0.287307] clocksource: Switched to clocksource timer1 [ 0.308551] NET: Registered protocol family 2 [ 0.310241] TCP established hash table entries: 2048 (order: 1, 8192 bytes) [ 0.310336] TCP bind hash table entries: 2048 (order: 1, 8192 bytes) [ 0.310411] TCP: Hash tables configured (established 2048 bind 2048) [ 0.310627] UDP hash table entries: 256 (order: 0, 4096 bytes) [ 0.310682] UDP-Lite hash table entries: 256 (order: 0, 4096 bytes) [ 0.311072] NET: Registered protocol family 1 [ 0.312017] RPC: Registered named UNIX socket transport module. [ 0.312050] RPC: Registered udp transport module. [ 0.312071] RPC: Registered tcp transport module. [ 0.312090] RPC: Registered tcp NFSv4.1 backchannel transport module. [ 0.313871] hw perfevents: no interrupt-affinity property for /pmu, guessing. [ 0.314133] hw perfevents: enabled with armv7_cortex_a8 PMU driver, 5 counters available [ 0.317636] workingset: timestamp_bits=14 max_order=16 bucket_order=2 [ 0.329209] squashfs: version 4.0 (2009/01/31) Phillip Lougher [ 0.331052] NFS: Registering the id_resolver key type [ 0.331139] Key type id_resolver registered [ 0.331161] Key type id_legacy registered [ 0.331269] ntfs: driver 2.1.32 [Flags: R/O]. [ 0.336082] Block layer SCSI generic (bsg) driver version 0.4 loaded (major 245) [ 0.336129] io scheduler noop registered [ 0.336153] io scheduler deadline registered [ 0.336693] io scheduler cfq registered (default) [ 0.336724] io scheduler mq-deadline registered [ 0.336747] io scheduler kyber registered [ 0.339905] pinctrl-single 44e10800.pinmux: 142 pins at pa f9e10800 size 568 [ 0.472566] Serial: 8250/16550 driver, 10 ports, IRQ sharing disabled [ 0.479907] console [ttyS0] disabled [ 0.480094] 44e09000.serial: ttyS0 at MMIO 0x44e09000 (irq = 30, base_baud = 3000000) is a 8250 [ 1.101526] console [ttyS0] enabled [ 1.108732] omap_rng 48310000.rng: Random Number Generator ver. 20 [ 1.144867] brd: module loaded [ 1.164336] loop: module loaded [ 1.168856] mtdoops: mtd device (mtddev=name/number) must be supplied [ 1.177949] libphy: Fixed MDIO Bus: probed [ 1.186802] i2c /dev entries driver [ 1.191401] IR NEC protocol handler initialized [ 1.195979] IR RC5(x/sz) protocol handler initialized [ 1.201147] IR RC6 protocol handler initialized [ 1.205713] IR JVC protocol handler initialized [ 1.210315] IR Sony protocol handler initialized [ 1.214967] IR SANYO protocol handler initialized [ 1.219738] IR Sharp protocol handler initialized [ 1.224477] IR MCE Keyboard/mouse protocol handler initialized [ 1.230381] IR XMP protocol handler initialized [ 1.238482] cpuidle: enable-method property 'ti,am3352' found operations [ 1.246003] sdhci: Secure Digital Host Controller Interface driver [ 1.252346] sdhci: Copyright(c) Pierre Ossman [ 1.257955] omap_hsmmc 48060000.mmc: Got CD GPIO [ 1.264289] sdhci-pltfm: SDHCI platform and OF driver helper [ 1.271588] ledtrig-cpu: registered to indicate activity on CPUs [ 1.284717] NET: Registered protocol family 10 [ 1.291787] Segment Routing with IPv6 [ 1.295688] sit: IPv6, IPv4 and MPLS over IPv4 tunneling driver [ 1.303471] NET: Registered protocol family 17 [ 1.308669] Key type dns_resolver registered [ 1.313465] omap_voltage_late_init: Voltage driver support not added [ 1.332305] omap-gpmc 50000000.gpmc: GPMC revision 6.0 [ 1.338895] gpmc_read_settings_dt: page/burst-length set but not used! [ 1.362077] Correcting S70GL02GS CFI data [ 1.366154] physmap-flash.0: Found 1 x16 devices at 0x0 in 16-bit bank. Manufacturer ID 0x000001 Chip ID 0x004801 [ 1.376578] Amd/Fujitsu Extended Query Table at 0x0040 [ 1.381814] Amd/Fujitsu Extended Query version 1.5. [ 1.386923] number of CFI chips: 1 [ 1.391260] 6 ofpart partitions found on MTD device physmap-flash.0 [ 1.397767] Creating 6 MTD partitions on "physmap-flash.0": [ 1.403403] 0x000000000000-0x000000080000 : "uboot" [ 1.410664] 0x000000080000-0x0000000a0000 : "uboot-env" [ 1.418164] 0x0000000a0000-0x0000005a0000 : "Current kernel" [ 1.425764] 0x0000005a0000-0x000000aa0000 : "Backup kernel" [ 1.433465] 0x000000aa0000-0x000000fa0000 : "Failsafe kernel" [ 1.441301] 0x000000fa0000-0x000010000000 : "File System" [ 1.446756] mtd: partition "File System" extends beyond the end of device "physmap-flash.0" -- size truncated to 0x7060000 [ 1.487770] tps65910 0-002d: No interrupt support, no core IRQ [ 1.497522] vrtc: supplied by vbat [ 1.505610] vio: supplied by vbat [ 1.511275] vdd1: supplied by vbat [ 1.517495] vdd2: supplied by vbat [ 1.524885] random: fast init done [ 1.529330] vdig1: supplied by vbat [ 1.534974] vdig2: supplied by vbat [ 1.540691] vpll: supplied by vbat [ 1.546268] vdac: supplied by vbat [ 1.551914] vaux1: supplied by vbat [ 1.557548] vaux2: supplied by vbat [ 1.563249] vaux33: supplied by vbat [ 1.569017] vmmc: supplied by vbat [ 1.574606] vbb: supplied by vbat [ 1.580186] omap_i2c 44e0b000.i2c: bus 0 rev0.11 at 400 kHz [ 1.588369] cpufreq: cpufreq_online: CPU0: Running at unlisted freq: 290880 KHz [ 1.596237] cpufreq: cpufreq_online: CPU0: Unlisted initial frequency changed to: 300000 KHz [ 1.606700] omap_hsmmc 48060000.mmc: Got CD GPIO [ 1.669335] hctosys: unable to open rtc device (rtc0) [ 1.675334] lis3_reg: disabling [ 1.680610] ALSA device list: [ 1.685637] No soundcards found. [ 1.690432] Waiting for root device /dev/mmcblk0p2... [ 1.803106] mmc0: new high speed SDHC card at address e624 [ 1.810146] mmcblk0: mmc0:e624 SS08G 7.40 GiB [ 1.820924] mmcblk0: p1 p2 [ 1.841573] EXT4-fs (mmcblk0p2): mounting ext3 file system using the ext4 subsystem [ 3.227915] EXT4-fs (mmcblk0p2): recovery complete [ 3.233977] EXT4-fs (mmcblk0p2): mounted filesystem with ordered data mode. Opts: (null) [ 3.242338] VFS: Mounted root (ext3 filesystem) on device 179:2. [ 3.256140] devtmpfs: mounted [ 3.260859] Freeing unused kernel memory: 1024K [ 3.599654] systemd[1]: System time before build time, advancing clock. [ 3.674092] systemd[1]: systemd 234 running in system mode. (+PAM -AUDIT -SELINUX +IMA -APPARMOR +SMACK +SYSVINIT +UTMP -LIBCRYPT) [ 3.696299] systemd[1]: Detected architecture arm. Welcome to Arago 2018.10! [ 3.742197] systemd[1]: Set hostname to <am335x-evm>. [ 4.160194] systemd[1]: /lib/systemd/system/gadget-init.service:15: Unknown lvalue 'ExecStopPre' in section 'Service' [ 4.494124] random: systemd: uninitialized urandom read (16 bytes read) [ 4.501454] systemd[1]: Listening on udev Kernel Socket. [ OK ] Listening on udev Kernel Socket. [ 4.537809] random: systemd: uninitialized urandom read (16 bytes read) [ 4.548545] systemd[1]: Created slice System Slice. [ OK ] Created slice System Slice. [ 4.577991] random: systemd: uninitialized urandom read (16 bytes read) [ 4.585149] systemd[1]: Listening on /dev/initctl Compatibility Named Pipe. [ OK ] Listening on /dev/initctl Compatibility Named Pipe. [ 4.639389] systemd[1]: Mounting POSIX Message Queue File System... Mounting POSIX Message Queue File System... [ 4.659597] systemd[1]: Listening on Journal Socket. [ OK ] Listening on Journal Socket. [ 4.688690] systemd[1]: Started Dispatch Password Requests to Console Directory Watch. [ OK ] Started Dispatch Password Requests to Console Directory Watch. [ OK ] Created slice system-getty.slice. [ OK ] Reached target Swap. Starting Load Kernel Modules... [ OK ] Created slice system-serial\x2dgetty.slice. [ OK ] Listening on Network Service Netlink Socket. Mounting Kernel Debug File System... [ 4.900630] cryptodev: loading out-of-tree module taints kernel. [ OK ] Created slice User and Session Slice. [ 4.922951] cryptodev: driver 1.9 loaded. [ OK ] Reached target Slices. [ 4.975540] usbcore: registered new interface driver usbfs [ 4.988155] usbcore: registered new interface driver hub Starting Remount Root and Kernel File Systems... [ 5.000294] usbcore: registered new device driver usb Starting Create list of required st…ce nodes for the current kernel... [ 5.044756] usbcore: registered new interface driver usbserial [ OK ] Reached target Remote File Systems. [ 5.082439] usbcore: registered new interface driver ftdi_sio [ 5.134330] EXT4-fs (mmcblk0p2): re-mounted. Opts: (null) [ OK ] Listening on Process Core Dump Socket. [ 5.153795] usbserial: USB Serial support registered for FTDI USB Serial Device [ OK ] Started Forward Password Requests to Wall Directory Watch. [ OK ] Reached target Paths. [ OK ] Listening on Journal Socket (/dev/log). [ OK ] Listening on Syslog Socket. [ OK ] Listening on udev Control Socket. Starting Journal Service... Mounting Temporary Directory (/tmp)... [ OK ] Mounted Kernel Debug File System. [ OK ] Mounted POSIX Message Queue File System. [ OK ] Mounted Temporary Directory (/tmp). [ OK ] Started Load Kernel Modules. [ OK ] Started Remount Root and Kernel File Systems. [ OK ] Started Create list of required sta…vice nodes for the current kernel. [ OK ] Started Journal Service. Starting Create System Users... Starting Rebuild Hardware Database... Starting Flush Journal to Persistent Storage... Starting Apply Kernel Variables... Mounting Kernel Configuration File System... [ OK ] Mounted Kernel Configuration File System. [ OK ] Started Create System Users. [ OK ] Started Apply Kernel Variables. [ 6.061756] systemd-journald[67]: Received request to flush runtime journal from PID 1 Starting Create Static Device Nodes in /dev... [ OK ] Started Flush Journal to Persistent Storage. [ OK ] Started Create Static Device Nodes in /dev. [ OK ] Reached target Local File Systems (Pre). Mounting /media/ram... Mounting /var/volatile... Starting udev Kernel Device Manager... [ OK ] Mounted /var/volatile. [ OK ] Mounted /media/ram. Starting Load/Save Random Seed... [ OK ] Reached target Local File Systems. Starting Rebuild Dynamic Linker Cache... Starting Rebuild Journal Catalog... Starting Create Volatile Files and Directories... [ OK ] Started Load/Save Random Seed. [ OK ] Started udev Kernel Device Manager. [ OK ] Started Rebuild Journal Catalog. [ OK ] Started Create Volatile Files and Directories. Starting Update UTMP about System Boot/Shutdown... Starting Network Time Synchronization... [ OK ] Started Update UTMP about System Boot/Shutdown. [ OK ] Started Rebuild Dynamic Linker Cache. [ OK ] Started Network Time Synchronization. [ OK ] Reached target System Time Synchronized. [ OK ] Started Rebuild Hardware Database. Starting udev Coldplug all Devices... Starting Update is Completed... [ OK ] Started Update is Completed. [ 11.522078] omap_wdt: OMAP Watchdog Timer Rev 0x01: initial timeout 60 sec [ OK ] Found device /dev/ttyS0. [ OK ] Started udev Coldplug all Devices. [ OK ] Reached target System Initialization. [ OK ] Started Daily Cleanup of Temporary Directories. [ OK ] Listening on RPCbind Server Activation Socket. [ OK ] Listening on Avahi mDNS/DNS-SD Stack Activation Socket. [ OK ] Listening on D-Bus System Message Bus Socket. Starting Network Service... [ OK ] Listening on dropbear.socket. [ OK ] Reached target Sockets. [ OK ] Reached target Basic System. [ OK ] Reached target Containers. [ OK ] Started Periodic Command Scheduler. [ OK ] Started Hardware RNG Entropy Gatherer Daemon. Starting Avahi mDNS/DNS-SD Stack... [ 12.483495] omap-sham 53100000.sham: hw accel on OMAP rev 4.3 [ 12.501304] random: crng init done [ 12.501315] random: 7 urandom warning(s) missed due to ratelimiting Starting Print notice about GPLv3 packages... [ 12.733050] wkup_m3_ipc 44e11324.wkup_m3_ipc: could not get rproc handle [ 12.782692] remoteproc remoteproc0: wkup_m3 is available [ 12.843279] omap-aes 53500000.aes: OMAP AES hw accel rev: 3.2 [ 12.875069] omap-aes 53500000.aes: will run requests pump with realtime priority [ OK ] Started D-Bus System Message Bus. [ 13.172560] remoteproc remoteproc0: powering up wkup_m3 [ 13.184984] PM: Cannot get wkup_m3_ipc handle [ 14.062308] remoteproc remoteproc0: Booting fw image am335x-pm-firmware.elf, size 224628 [ 14.137005] wkup_m3_ipc 44e11324.wkup_m3_ipc: CM3 Firmware Version = 0x192 [ 14.257596] remoteproc remoteproc0: remote processor wkup_m3 is now up [ OK ] Started Avahi mDNS/DNS-SD Stack. Starting RPC Bind Service... [ OK ] Started Kernel Logging Service. Starting Login Service... [ OK ] Started System Logging Service. [ OK ] Started Daily rotation of log files. [ OK ] Reached target Timers. [ OK ] Started Job spooling tools. Starting uim-sysfs.service... [ OK ] Started Network Service. [ OK ] Started RPC Bind Service. [ OK ] Found device /dev/ttyS3. [ 17.796129] FAT-fs (mmcblk0p1): Volume was not properly unmounted. Some data may be corrupt. Please run fsck. [ OK ] Found device /dev/mmcblk0p1. [ OK ] Started uim-sysfs.service. [ OK ] Started Login Service. Starting rc.pvr.service... Starting Start USB gadget... [ OK ] Listening on Load/Save RF Kill Switch Status /dev/rfkill Watch. Starting Wait for Network to be Configured... [ OK ] Reached target Network. Starting Permit User Sessions... Starting Lightning Fast Webserver With Light System Requirements... [ OK ] Started Redis In-Memory Data Store. Starting Simple Network Management Protocol (SNMP) Daemon.... [ 25.279173] udc-core: couldn't find an available UDC - added [g_multi] to list of pending drivers Starting Network Name Resolution... Starting Enable and configure wl18xx bluetooth stack... [ OK ] Started rc.pvr.service. [ OK ] Started Permit User Sessions. [ OK ] Started Lightning Fast Webserver With Light System Requirements. [ OK ] Started Getty on tty1. [ OK ] Started Serial Getty on ttyS0. [ OK ] Started Serial Getty on ttyS3. Starting weston.service... [FAILED] Failed to start Start USB gadget. See 'systemctl status gadget-init.service' for details. [ OK ] Started Network Name Resolution. [ OK ] Reached target Host and Network Name Lookups. [ OK ] Started NFS status monitor for NFSv2/3 locking.. *************************************************************** *************************************************************** NOTICE: This file system contains the following GPLv3 packages: autoconf bash-dev bash binutils cifs-utils cpio cpp-symlinks cpp dosfstools elfutils findutils g++-symlinks g++ gawk gcc-symlinks gcc gdb gdbserver gettext glmark2 gstreamer1.0-libav gzip hidapi libdw1 libelf1 libgdbm-compat4 libgdbm-dev libgdbm4 libgettextlib libgettextsrc libgmp10 libidn11 libmavconn libmpc3 libmpfr4 libreadline-dev libreadline7 libunistring2 m4-dev m4 make mavlink mavros-extras mavros-msgs mavros nettle python3-pycairo socketcan-interface which If you do not wish to distribute GPLv3 components please remove the above packages prior to distribution. This can be done using the opkg remove command. i.e.: opkg remove <package> Where <package> is the name printed in the list above NOTE: If the package is a dependency of another package you will be notified of the dependent packages. You should use the --force-removal-of-dependent-packages option to also remove the dependent packages as well *************************************************************** *************************************************************** [ OK ] Started Print notice about GPLv3 packages. [ OK ] Started Simple Network Management Protocol (SNMP) Daemon.. [ OK ] Started Enable and configure wl18xx bluetooth stack. [ OK ] Started weston.service. Starting telnetd.service... Starting Matrix GUI... [ OK ] Started telnetd.service. Starting thttpd.service... Starting busybox-udhcpd.service... [ OK ] Started Matrix GUI. [ OK ] Started busybox-udhcpd.service. [ OK ] Started thttpd.service. Starting rng-tools.service... [ OK ] Started rng-tools.service. _____ _____ _ _ | _ |___ ___ ___ ___ | _ |___ ___ |_|___ ___| |_ | | _| .'| . | . | | __| _| . | | | -_| _| _| |__|__|_| |__,|_ |___| |__| |_| |___|_| |___|___|_| |___| |___| Arago Project http://arago-project.org am335x-evm ttyS0 Arago 2018.10 am335x-evm ttyS0 am335x-evm login: root ^[[56;133Rroot@am335x-evm:~# 6;133R -sh: 6: command not found -sh: 133R: command not found root@am335x-evm:~# root@am335x-evm:~# root@am335x-evm:~# root@am335x-evm:~# cd /home/ root@am335x-evm:/home# ls 1.txt hello_300K.txt hello_700K.txt commands.txt hello_400K.txt log_boot_debug_52.txt hello_100K.txt hello_500K.txt root hello_200K.txt hello_600K.txt root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# flashcp -v hello_100K.txt /dev/mtd0 Erasing blocks: 1/1 (100%) Writing data: 100k/100k (100%) Verifying data: 100k/100k (100%) root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# flashcp -v hello_100K.txt /dev/mtd1 Erasing blocks: 1/1 (100%) Writing data: 100k/100k (100%) Verifying data: 100k/100k (100%) root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# flashcp -v hello_100K.txt /dev/mtd2 Erasing blocks: 1/1 (100%) Writing data: 100k/100k (100%) Verifying data: 100k/100k (100%) root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# flashcp -v hello_100K.txt /dev/mtd3 Erasing blocks: 1/1 (100%) Writing data: 100k/100k (100%) Verifying data: 100k/100k (100%) root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# flashcp -v hello_100K.txt /dev/mtd4 Erasing blocks: 1/1 (100%) Writing data: 100k/100k (100%) Verifying data: 100k/100k (100%) root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# flashcp -v hello_100K.txt /dev/mtd5 Erasing blocks: 1/1 (100%) Writing data: 100k/100k (100%) Verifying data: 100k/100k (100%) root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# flashcp -v hello_100K.txt /dev/mtd6 While trying to open /dev/mtd6 for read/write access: No such file or directory root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# cat /dev/mtd0 Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklf^C root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# cat /dev/mtd1 Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjl^C root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# cat /dev/mtd2 Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambasha^C root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# cat /dev/mtd3 Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdk^C root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# cat /dev/mtd4 Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambas^C root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# cat /dev/mtd5 Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srini Srini Sambashare Sambashare fdfdjlfjdklfjdklfjdklfjdklfjdklfjd Srin^C root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# root@am335x-evm:/home# flashcp -v hello_[ 145.686753] NET: Registered protocol family 15 [ 145.940659] Initializing XFRM netlink socket 2^C root@am335x-evm:/home# root@am335x-evm:/home# flashcp -v hello_200K.txt /dev/mtd6 While trying to open /dev/mtd6 for read/write access: No such file or directory root@am335x-evm:/home# flashcp -v hello_200K.txt /dev/mtd0 Erasing blocks: 2/2 (100%) Writing data: 130k/200k (65%) ^C^C ^C^C^C^C[ 525.337378] mmcblk0: error -110 sending status command, retrying [ 525.367933] mmcblk0: error -110 sending status command, retrying [ 525.408962] mmcblk0: error -110 sending status command, aborting [ 525.478745] mmc0: tried to reset card, got error -110 [ 525.483849] print_req_error: I/O error, dev mmcblk0, sector 7502800 [ 525.507405] print_req_error: I/O error, dev mmcblk0, sector 7502808 [ 525.513723] print_req_error: I/O error, dev mmcblk0, sector 7502816 [ 525.537419] print_req_error: I/O error, dev mmcblk0, sector 7502824 [ 525.543739] print_req_error: I/O error, dev mmcblk0, sector 7502832 [ 525.567397] print_req_error: I/O error, dev mmcblk0, sector 7502840 [ 525.573716] print_req_error: I/O error, dev mmcblk0, sector 7502848 [ 525.597453] print_req_error: I/O error, dev mmcblk0, sector 7502856 [ 525.603769] print_req_error: I/O error, dev mmcblk0, sector 7502864 [ 525.627464] print_req_error: I/O error, dev mmcblk0, sector 7502872 [ 525.633836] Aborting journal on device mmcblk0p2-8. [ 525.657864] mmcblk0: error -110 sending status command, retrying [ 525.670084] mmcblk0: error -110 sending status command, retrying [ 525.687494] mmcblk0: error -110 sending status command, aborting [ 525.693579] Buffer I/O error on dev mmcblk0p2, logical block 918014, lost sync page write [ 525.723704] JBD2: Error -5 detected when updating journal superblock for mmcblk0p2-8. [ 530.389203] mmcblk0: error -110 sending status command, retrying [ 530.407533] mmcblk0: error -110 sending status command, retrying [ 530.419908] mmcblk0: error -110 sending status command, aborting [ 530.425994] Buffer I/O error on dev mmcblk0p2, logical block 0, lost sync page write [ 530.457403] EXT4-fs error (device mmcblk0p2): ext4_journal_check_start:61: Detected aborted journal [ 530.466512] EXT4-fs (mmcblk0p2): Remounting filesystem read-only [ 530.487410] EXT4-fs (mmcblk0p2): previous I/O error to superblock detected [ 530.495310] mmcblk0: error -110 sending status command, retrying [ 530.517782] mmcblk0: error -110 sending status command, retrying [ 530.529834] mmcblk0: error -110 sending status command, aborting [ 530.547352] print_req_error: 3 callbacks suppressed [ 530.547361] print_req_error: I/O error, dev mmcblk0, sector 145408 [ 530.577510] Buffer I/O error on dev mmcblk0p2, logical block 0, lost sync page write