summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/gpmc-onenand.c
diff options
context:
space:
mode:
authorAfzal Mohammed2012-10-05 08:09:54 +0200
committerAfzal Mohammed2012-10-15 11:11:59 +0200
commiteb77b6a78ac7f63985a3f592baf80ff33d213c48 (patch)
tree2e77450150a5db8f27f8a58efa954b5b9c97e353 /arch/arm/mach-omap2/gpmc-onenand.c
parentmtd: nand: omap: read nand using register address (diff)
downloadkernel-qcow2-linux-eb77b6a78ac7f63985a3f592baf80ff33d213c48.tar.gz
kernel-qcow2-linux-eb77b6a78ac7f63985a3f592baf80ff33d213c48.tar.xz
kernel-qcow2-linux-eb77b6a78ac7f63985a3f592baf80ff33d213c48.zip
ARM: OMAP2+: onenand: connected soc info in pdata
onenand driver needs to know whether soc is falling under 34xx family to properly handle onenand. But driver is not supposed to do cpu_is_* check, hence educate platform data with this information. Driver can make use of it to avoid cpu_is_* check. Signed-off-by: Afzal Mohammed <afzal@ti.com>
Diffstat (limited to 'arch/arm/mach-omap2/gpmc-onenand.c')
-rw-r--r--arch/arm/mach-omap2/gpmc-onenand.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/gpmc-onenand.c b/arch/arm/mach-omap2/gpmc-onenand.c
index 06fd84657218..4a1c0b7ab432 100644
--- a/arch/arm/mach-omap2/gpmc-onenand.c
+++ b/arch/arm/mach-omap2/gpmc-onenand.c
@@ -428,6 +428,11 @@ void __init gpmc_onenand_init(struct omap_onenand_platform_data *_onenand_data)
gpmc_onenand_data->flags |= ONENAND_SYNC_READ;
}
+ if (cpu_is_omap34xx())
+ gpmc_onenand_data->flags |= ONENAND_IN_OMAP34XX;
+ else
+ gpmc_onenand_data->flags &= ~ONENAND_IN_OMAP34XX;
+
err = gpmc_cs_request(gpmc_onenand_data->cs, ONENAND_IO_SIZE,
(unsigned long *)&gpmc_onenand_resource.start);
if (err < 0) {