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

Commit cb96cf1a authored by Sascha Hauer's avatar Sascha Hauer
Browse files

[ARM] MX3: add NAND support

parent 01f71a37
Loading
Loading
Loading
Loading
+19 −0
Original line number Diff line number Diff line
@@ -160,3 +160,22 @@ struct platform_device mxc_w1_master_device = {
	.num_resources = ARRAY_SIZE(mxc_w1_master_resources),
	.resource = mxc_w1_master_resources,
};

static struct resource mxc_nand_resources[] = {
	{
		.start	= NFC_BASE_ADDR,
		.end	= NFC_BASE_ADDR + 0xfff,
		.flags	= IORESOURCE_MEM
	}, {
		.start	= MXC_INT_NANDFC,
		.end	= MXC_INT_NANDFC,
		.flags	= IORESOURCE_IRQ
	},
};

struct platform_device mxc_nand_device = {
	.name = "mxc_nand",
	.id = 0,
	.num_resources = ARRAY_SIZE(mxc_nand_resources),
	.resource = mxc_nand_resources,
};
+1 −0
Original line number Diff line number Diff line
@@ -5,3 +5,4 @@ extern struct platform_device mxc_uart_device2;
extern struct platform_device mxc_uart_device3;
extern struct platform_device mxc_uart_device4;
extern struct platform_device mxc_w1_master_device;
extern struct platform_device mxc_nand_device;
+1 −1
Original line number Diff line number Diff line
@@ -408,7 +408,7 @@ config MTD_NAND_FSL_UPM

config MTD_NAND_MXC
	tristate "MXC NAND support"
	depends on ARCH_MX2
	depends on ARCH_MX2 || ARCH_MX3
	help
	  This enables the driver for the NAND flash controller on the
	  MXC processors.