mirror of
https://xff.cz/git/u-boot/
synced 2025-09-25 04:21:18 +02:00
mtd: rawnand: brcmnand: rename page sizes
Current pages sizes apply to controllers after v3.4 Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> Acked-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20200522121524.4161539-4-noltari@gmail.com [Ported to U-Boot from the Linux kernel] Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Acked-by: William Zhang <william.zhang@broadcom.com> Signed-off-by: Dario Binacchi <dario.binacchi@amarulasolutions.com>
This commit is contained in:
committed by
Dario Binacchi
parent
baeb0a8578
commit
3c6ed98c7f
@@ -526,7 +526,7 @@ static int brcmnand_revision_init(struct brcmnand_controller *ctrl)
|
||||
{
|
||||
static const unsigned int block_sizes_v6[] = { 8, 16, 128, 256, 512, 1024, 2048, 0 };
|
||||
static const unsigned int block_sizes_v4[] = { 16, 128, 8, 512, 256, 1024, 2048, 0 };
|
||||
static const unsigned int page_sizes[] = { 512, 2048, 4096, 8192, 0 };
|
||||
static const unsigned int page_sizes_v3_4[] = { 512, 2048, 4096, 8192, 0 };
|
||||
|
||||
ctrl->nand_version = nand_readreg(ctrl, 0) & 0xffff;
|
||||
|
||||
@@ -573,7 +573,7 @@ static int brcmnand_revision_init(struct brcmnand_controller *ctrl)
|
||||
ctrl->max_page_size = 16 * 1024;
|
||||
ctrl->max_block_size = 2 * 1024 * 1024;
|
||||
} else {
|
||||
ctrl->page_sizes = page_sizes;
|
||||
ctrl->page_sizes = page_sizes_v3_4;
|
||||
if (ctrl->nand_version >= 0x0600)
|
||||
ctrl->block_sizes = block_sizes_v6;
|
||||
else
|
||||
|
Reference in New Issue
Block a user