Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fa31274e authored by Krishna Konda's avatar Krishna Konda Committed by Gerrit - the friendly Code Review server
Browse files

mtd: nand_ids: Add Toshiba & Micron NAND devices details



Add 2K + 128 Toshiba NAND, 2K + 64 and 4K + 224 Micron parts which have
only 4 byte IDs available.

Change-Id: Ieeb72f4760c342a6e1c8b51ff0dba3d6663383d1
Signed-off-by: default avatarKrishna Konda <kkonda@codeaurora.org>
Signed-off-by: default avatarPavan Anamula <pavana@codeaurora.org>
parent 6b03f6ce
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -31,6 +31,15 @@ struct nand_flash_dev nand_flash_ids[] = {
	 * listed by full ID. We list them first so that we can easily identify
	 * the most specific match.
	 */
	{"TC58NYG1S3H 2G 1.8V 8-bit",
		{ .id = {0x98, 0xaa, 0x90, 0x15, 0x00, 0x00, 0x00, 0x00} },
		  SZ_2K, SZ_256, SZ_128K, 0, 4, 128, NAND_ECC_INFO(8, SZ_512)},
	{"MT29F4G08ABBDAHC 4G 3.3V 8-bit",
		{ .id = {0x2c, 0xac, 0x90, 0x15, 0x00, 0x00, 0x00, 0x00} },
		  SZ_2K, SZ_512, SZ_128K, 0, 4, 64, NAND_ECC_INFO(4, SZ_512)},
	{"MT29RZ4B2DZZHGSK 4G 3.3V 8-bit",
		{ .id = {0x2c, 0xac, 0x90, 0x26, 0x00, 0x00, 0x00, 0x00} },
		  SZ_4K, SZ_512, SZ_256K, 0, 4, 224, NAND_ECC_INFO(8, SZ_512)},
	{"TC58NVG2S0F 4G 3.3V 8-bit",
		{ .id = {0x98, 0xdc, 0x90, 0x26, 0x76, 0x15, 0x01, 0x08} },
		  SZ_4K, SZ_512, SZ_256K, 0, 8, 224, NAND_ECC_INFO(4, SZ_512) },