Skip to content

Commit 2cb91d7

Browse files
committed
NAND: Corrected page sizes of 2GB chips.
1 parent 3b5b8a8 commit 2cb91d7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

hw/nand.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -198,10 +198,10 @@ static const struct {
198198
[0xc3] = { 1024, 16, 11, 6, LP_OPTIONS16 },
199199

200200
/* 16 Gigabit */
201-
[0xa5] = { 2048, 8, 11, 6, LP_OPTIONS },
202-
[0xd5] = { 2048, 8, 11, 6, LP_OPTIONS },
203-
[0xb5] = { 2048, 16, 11, 6, LP_OPTIONS16 },
204-
[0xc5] = { 2048, 16, 11, 6, LP_OPTIONS16 },
201+
[0xa5] = { 2048, 8, 12, 7, LP_OPTIONS },
202+
[0xd5] = { 2048, 8, 12, 7, LP_OPTIONS },
203+
[0xb5] = { 2048, 16, 12, 7, LP_OPTIONS16 },
204+
[0xc5] = { 2048, 16, 12, 7, LP_OPTIONS16 },
205205

206206
/* 32 Gigabit */
207207
[0xa7] = { 4096, 8, 12, 7, LP_OPTIONS },

0 commit comments

Comments
 (0)