summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--firmware/drivers/nand_id.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/firmware/drivers/nand_id.c b/firmware/drivers/nand_id.c
index ab10ecec07..4dc1ec1ceb 100644
--- a/firmware/drivers/nand_id.c
+++ b/firmware/drivers/nand_id.c
@@ -33,12 +33,14 @@ struct nand_manufacturer
33 33
34static const struct nand_info samsung[] = 34static const struct nand_info samsung[] =
35{ 35{
36 /* K9F4G08UOM */
37 {0xDC, 0x10, 64, 4096, 2048, 64, 2, 3},
36 /* K9K8G08UOM */ 38 /* K9K8G08UOM */
37 {0xD3, 0x51, 64, 8192, 2048, 64, 2, 3}, 39 {0xD3, 0x51, 64, 8192, 2048, 64, 2, 3},
38 /* K9LAG08UOM */ 40 /* K9LAG08UOM */
39 {0xD5, 0x55, 128, 8192, 2048, 64, 2, 3}, 41 {0xD5, 0x55, 128, 8192, 2048, 64, 2, 3},
40 /* K9LBG08UOM, K9HBG08U1M, K9MCG08U5M */ 42 /* K9LBG08UOM, K9HBG08U1M, K9MCG08U5M */
41 {0xD7, 0x55, 128, 8192, 4096, 128, 2, 3}, 43 {0xD7, 0x55, 128, 8192, 4096, 128, 2, 3}
42}; 44};
43 45
44#define M(id, x) {id, (struct nand_info*)x, (sizeof(x)/sizeof(struct nand_info))} 46#define M(id, x) {id, (struct nand_info*)x, (sizeof(x)/sizeof(struct nand_info))}