diff options
author | Adrian Hunter <adrian.hunter@nokia.com> | 2010-12-09 10:22:50 +0100 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2010-12-21 21:05:34 +0100 |
commit | 4931445b94f49672028b81ace9d4eee8ddf19ab2 (patch) | |
tree | 46d760c854ec0cf63fe6d5d5ef166478933dbc3a /arch/arm/mach-omap2/gpmc-onenand.c | |
parent | OMAP2/3: GPMC: put sync_clk value in picoseconds instead of nanoseconds (diff) | |
download | linux-4931445b94f49672028b81ace9d4eee8ddf19ab2.tar.xz linux-4931445b94f49672028b81ace9d4eee8ddf19ab2.zip |
OMAP2/3: OneNAND: add 104MHz support
Add GPMC timings for 104MHz OneNAND.
Signed-off-by: Adrian Hunter <adrian.hunter@nokia.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/gpmc-onenand.c')
-rw-r--r-- | arch/arm/mach-omap2/gpmc-onenand.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/gpmc-onenand.c b/arch/arm/mach-omap2/gpmc-onenand.c index 1db606ca007e..3a7d25fb00ef 100644 --- a/arch/arm/mach-omap2/gpmc-onenand.c +++ b/arch/arm/mach-omap2/gpmc-onenand.c @@ -173,6 +173,15 @@ static int omap2_onenand_set_sync_mode(struct omap_onenand_platform_data *cfg, } switch (freq) { + case 104: + min_gpmc_clk_period = 9600; /* 104 MHz */ + t_ces = 3; + t_avds = 4; + t_avdh = 2; + t_ach = 3; + t_aavdh = 6; + t_rdyo = 9; + break; case 83: min_gpmc_clk_period = 12000; /* 83 MHz */ t_ces = 5; |