Bug 106491 - MTD Nandsim driver fails when simulating the Allwinner R8M nand
Summary: MTD Nandsim driver fails when simulating the Allwinner R8M nand
Status: NEW
Alias: None
Product: Drivers
Classification: Unclassified
Component: Other (show other bugs)
Hardware: All Linux
: P1 normal
Assignee: drivers_other
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-10-22 18:57 UTC by Rikard Söderström
Modified: 2015-11-19 09:07 UTC (History)
1 user (show)

See Also:
Kernel Version: 4.2.3-1-ARCH
Subsystem:
Regression: No
Bisected commit-id:


Attachments
journalctl dump (85.35 KB, text/x-log)
2015-10-22 18:57 UTC, Rikard Söderström
Details

Description Rikard Söderström 2015-10-22 18:57:08 UTC
Created attachment 190911 [details]
journalctl dump

When trying to load the nandsim driver

sudo modprobe nandsim id_bytes=0xad,0xde,0x14,0xa7,0x42,0x4a

System hangs and remains unresponsive.

Snippet of interest from log

nand: device found, Manufacturer ID: 0xad, Chip ID: 0xde
nand: Hynix NAND 8GiB 3,3V 8-bit
nand: 8192 MiB, MLC, erase size: 4096 KiB, page size: 16384, OOB size: 224
nand: No oob scheme defined for oobsize 224
kernel BUG at drivers/mtd/nand/nand_base.c:3988!
invalid opcode: 0000 [#1] PREEMPT SMP

My guess is that the NAND (0xad,0xde,0x14,0xa7,0x42,0x4a) used by NextThingCo (Allwinner R8M) currently isn't supported by nandsim.

Cheers
soderstrom
Comment 1 Rikard Söderström 2015-10-23 11:40:44 UTC
Tried this in a virtual machine with kernel 4.2.2-1-ARCH.

Here the system does not hang. But the error is the same. Thus I think the priority can be lowered to normal.

Going to try with same kernel version as before in a virtual machine to see if I can reproduce it then.
Comment 2 Rikard Söderström 2015-10-23 12:01:59 UTC
Running this in a virtual machine with the same kernel (4.2.2-1-ARCH) does not cause the system to hang.

So I think the system hang is related to my hardware, going to try on my laptop tonight when I get home.

For now I will start by looking at the nandsim code to see what is needed for patching in support for NextThingCo C.H.I.P NANDs (Allwinner R8M).
Comment 3 Rikard Söderström 2015-10-27 11:43:39 UTC
Did not find anything useful in regards to the problem at hand in my initial scan of the sources, going to put this on hold for now.

Anyways, if someone else takes a look, some facts for you.

# Kernel bootup messages

    [    1.170000] nand: device found, Manufacturer ID: 0xad, Chip ID: 0xde
    [    1.180000] nand: chip id data: 0xad, 0xde, 0x14, 0xa7, 0x42, 0x4a; 0xad, 0xde

# mtdinfo - linux

    mtdinfo /dev/mtd0
    Name:                           env
    Type:                           mlc-nand
    Eraseblock size:                4194304 bytes, 4.0 MiB
    Amount of eraseblocks:          1 (4194304 bytes, 4.0 MiB)
    Minimum input/output unit size: 16384 bytes
    Sub-page size:                  16384 bytes
    OOB size:                       1664 bytes
    Character device major/minor:   90:6
    Bad blocks are allowed:         true
    Device is writable:             true

# mtdinfo - uboot

    sunxi# mtdinfo
    Page  Size     16384 b ( 0x    4000)
    OOB   Size      1664 b ( 0x     680)
    Erase Size   2097154 b ( 0x  200002)
    subpagesize    16384 b ( 0x    4000)
    Options     0x40000000
    bit options 0x   70000


------------------------------

So these are the properties of the nand to simulate.

Cheers
soderstrom
Comment 4 Vladimir Trubilov 2015-11-17 20:52:45 UTC
There is some difference in reported spare area size:

nandsim:  224 bytes
mtdinfo: 1664 bytes

and it looks like chip ID should be overridden. Could you please provide your exact NAND part number?
Comment 5 Rikard Söderström 2015-11-18 10:20:24 UTC
The nand I am trying to simulate is the one used in the Allwinner R8 SoC

CHIP BOM:
https://github.com/NextThingCo/CHIP-Hardware/raw/master/2015-08-11-CHIPv0_21-BOM.pdf

Allwinner R8 Datasheet:
https://github.com/NextThingCo/CHIP-Hardware/raw/master/CHIPv0_21-BOM-Datasheets/Allwinner%20R8%20Datasheet%20V1.2.pdf

So I am unable to find the NAND part number, since it is not a standalone part.

Or is there a way to check this from userspace?
Comment 6 Vladimir Trubilov 2015-11-19 09:07:51 UTC
Okay, here is the problem:

Looks like R8M has NAND with unsupported coding of 4th ID byte. Currently mainline MTD can't decode it correctly (another Hynix NAND generation?) and we need to add this particular chip into nand_flash_ids table.

As I can see from logs, your HW board runs custom kernel (https://linux-sunxi.org) and this commit https://github.com/bbrezillon/linux-sunxi/commit/8176c0934c125f076c03e6e95f726bbd781cc26a is exactly what we need here.

So there are two ways to solve the issue:
- integrate changes (see commit above) into mainline
- add another ID decoding scheme for Hynix NANDs regarding to their generation

Let me see what we can do for the 2nd case.

Note You need to log in before you can comment on or make changes to this bug.