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

Commit 98619dcb authored by Jean-Christophe PLAGNIOL-VILLARD's avatar Jean-Christophe PLAGNIOL-VILLARD
Browse files

ARM: at91: enable on flash bbt for Atmel Reference and DT boards



Enable it on Calao board too as they are in DT too.

Signed-off-by: default avatarJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
parent 3dcb7ea1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -48,6 +48,7 @@ static struct atmel_nand_data __initdata ek_nand_data = {
	.rdy_pin	= AT91_PIN_PC8,
	.enable_pin	= AT91_PIN_PC14,
	.ecc_mode	= NAND_ECC_SOFT,
	.on_flash_bbt	= 1,
};

static struct sam9_smc_config __initdata ek_nand_smc_config = {
+1 −0
Original line number Diff line number Diff line
@@ -139,6 +139,7 @@ static struct atmel_nand_data __initdata ek_nand_data = {
	.rdy_pin	= AT91_PIN_PC13,
	.enable_pin	= AT91_PIN_PC14,
	.ecc_mode	= NAND_ECC_SOFT,
	.on_flash_bbt	= 1,
	.parts		= ek_nand_partition,
	.num_parts	= ARRAY_SIZE(ek_nand_partition),
};
+1 −0
Original line number Diff line number Diff line
@@ -151,6 +151,7 @@ static struct atmel_nand_data __initdata dk_nand_data = {
	.rdy_pin	= AT91_PIN_PC2,
	.enable_pin	= -EINVAL,
	.ecc_mode	= NAND_ECC_SOFT,
	.on_flash_bbt	= 1,
	.parts		= dk_nand_partition,
	.num_parts	= ARRAY_SIZE(dk_nand_partition),
};
+1 −0
Original line number Diff line number Diff line
@@ -182,6 +182,7 @@ static struct atmel_nand_data __initdata ek_nand_data = {
	.rdy_pin	= AT91_PIN_PC13,
	.enable_pin	= AT91_PIN_PC14,
	.ecc_mode	= NAND_ECC_SOFT,
	.on_flash_bbt	= 1,
	.parts		= ek_nand_partition,
	.num_parts	= ARRAY_SIZE(ek_nand_partition),
};
+1 −0
Original line number Diff line number Diff line
@@ -188,6 +188,7 @@ static struct atmel_nand_data __initdata ek_nand_data = {
	.rdy_pin	= AT91_PIN_PC15,
	.enable_pin	= AT91_PIN_PC14,
	.ecc_mode	= NAND_ECC_SOFT,
	.on_flash_bbt	= 1,
	.parts		= ek_nand_partition,
	.num_parts	= ARRAY_SIZE(ek_nand_partition),
};
Loading