Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 1 | /* |
| 2 | * GPMC support functions |
| 3 | * |
| 4 | * Copyright (C) 2005-2006 Nokia Corporation |
| 5 | * |
| 6 | * Author: Juha Yrjola |
| 7 | * |
Santosh Shilimkar | 4416907 | 2009-05-28 14:16:04 -0700 | [diff] [blame] | 8 | * Copyright (C) 2009 Texas Instruments |
| 9 | * Added OMAP4 support - Santosh Shilimkar <santosh.shilimkar@ti.com> |
| 10 | * |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License version 2 as |
| 13 | * published by the Free Software Foundation. |
| 14 | */ |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 15 | #undef DEBUG |
| 16 | |
Sukumar Ghorai | db97eb7d | 2011-01-28 15:42:05 +0530 | [diff] [blame] | 17 | #include <linux/irq.h> |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 18 | #include <linux/kernel.h> |
| 19 | #include <linux/init.h> |
| 20 | #include <linux/err.h> |
| 21 | #include <linux/clk.h> |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 22 | #include <linux/ioport.h> |
| 23 | #include <linux/spinlock.h> |
Russell King | fced80c | 2008-09-06 12:10:45 +0100 | [diff] [blame] | 24 | #include <linux/io.h> |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 25 | #include <linux/module.h> |
Sukumar Ghorai | db97eb7d | 2011-01-28 15:42:05 +0530 | [diff] [blame] | 26 | #include <linux/interrupt.h> |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 27 | #include <linux/platform_device.h> |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 28 | |
Afzal Mohammed | bc3668e | 2012-09-29 12:26:13 +0530 | [diff] [blame] | 29 | #include <linux/platform_data/mtd-nand-omap2.h> |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 30 | |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 31 | #include <asm/mach-types.h> |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 32 | |
Tony Lindgren | dbc0416 | 2012-08-31 10:59:07 -0700 | [diff] [blame] | 33 | #include "soc.h" |
Tony Lindgren | 7d7e1eb | 2012-08-27 17:43:01 -0700 | [diff] [blame] | 34 | #include "common.h" |
Tony Lindgren | 25c7d49 | 2012-10-02 17:25:48 -0700 | [diff] [blame] | 35 | #include "omap_device.h" |
Afzal Mohammed | 3ef5d00 | 2012-10-05 10:37:27 +0530 | [diff] [blame] | 36 | #include "gpmc.h" |
Tony Lindgren | 7d7e1eb | 2012-08-27 17:43:01 -0700 | [diff] [blame] | 37 | |
Afzal Mohammed | 4be48fd | 2012-09-23 17:28:24 -0600 | [diff] [blame] | 38 | #define DEVICE_NAME "omap-gpmc" |
| 39 | |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 40 | /* GPMC register offsets */ |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 41 | #define GPMC_REVISION 0x00 |
| 42 | #define GPMC_SYSCONFIG 0x10 |
| 43 | #define GPMC_SYSSTATUS 0x14 |
| 44 | #define GPMC_IRQSTATUS 0x18 |
| 45 | #define GPMC_IRQENABLE 0x1c |
| 46 | #define GPMC_TIMEOUT_CONTROL 0x40 |
| 47 | #define GPMC_ERR_ADDRESS 0x44 |
| 48 | #define GPMC_ERR_TYPE 0x48 |
| 49 | #define GPMC_CONFIG 0x50 |
| 50 | #define GPMC_STATUS 0x54 |
| 51 | #define GPMC_PREFETCH_CONFIG1 0x1e0 |
| 52 | #define GPMC_PREFETCH_CONFIG2 0x1e4 |
Thara Gopinath | 15e02a3 | 2008-04-28 16:55:01 +0530 | [diff] [blame] | 53 | #define GPMC_PREFETCH_CONTROL 0x1ec |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 54 | #define GPMC_PREFETCH_STATUS 0x1f0 |
| 55 | #define GPMC_ECC_CONFIG 0x1f4 |
| 56 | #define GPMC_ECC_CONTROL 0x1f8 |
| 57 | #define GPMC_ECC_SIZE_CONFIG 0x1fc |
Sukumar Ghorai | 948d38e | 2010-07-09 09:14:44 +0000 | [diff] [blame] | 58 | #define GPMC_ECC1_RESULT 0x200 |
Ivan Djelic | 8d602cf | 2012-04-26 14:17:49 +0200 | [diff] [blame] | 59 | #define GPMC_ECC_BCH_RESULT_0 0x240 /* not available on OMAP2 */ |
Afzal Mohammed | 2fdf0c9 | 2012-10-04 15:49:04 +0530 | [diff] [blame] | 60 | #define GPMC_ECC_BCH_RESULT_1 0x244 /* not available on OMAP2 */ |
| 61 | #define GPMC_ECC_BCH_RESULT_2 0x248 /* not available on OMAP2 */ |
| 62 | #define GPMC_ECC_BCH_RESULT_3 0x24c /* not available on OMAP2 */ |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 63 | |
Yegor Yefremov | 2c65e74 | 2012-05-09 08:32:49 -0700 | [diff] [blame] | 64 | /* GPMC ECC control settings */ |
| 65 | #define GPMC_ECC_CTRL_ECCCLEAR 0x100 |
| 66 | #define GPMC_ECC_CTRL_ECCDISABLE 0x000 |
| 67 | #define GPMC_ECC_CTRL_ECCREG1 0x001 |
| 68 | #define GPMC_ECC_CTRL_ECCREG2 0x002 |
| 69 | #define GPMC_ECC_CTRL_ECCREG3 0x003 |
| 70 | #define GPMC_ECC_CTRL_ECCREG4 0x004 |
| 71 | #define GPMC_ECC_CTRL_ECCREG5 0x005 |
| 72 | #define GPMC_ECC_CTRL_ECCREG6 0x006 |
| 73 | #define GPMC_ECC_CTRL_ECCREG7 0x007 |
| 74 | #define GPMC_ECC_CTRL_ECCREG8 0x008 |
| 75 | #define GPMC_ECC_CTRL_ECCREG9 0x009 |
| 76 | |
Afzal Mohammed | 559d94b | 2012-05-28 17:51:37 +0530 | [diff] [blame] | 77 | #define GPMC_CONFIG2_CSEXTRADELAY BIT(7) |
| 78 | #define GPMC_CONFIG3_ADVEXTRADELAY BIT(7) |
| 79 | #define GPMC_CONFIG4_OEEXTRADELAY BIT(7) |
| 80 | #define GPMC_CONFIG4_WEEXTRADELAY BIT(23) |
| 81 | #define GPMC_CONFIG6_CYCLE2CYCLEDIFFCSEN BIT(6) |
| 82 | #define GPMC_CONFIG6_CYCLE2CYCLESAMECSEN BIT(7) |
| 83 | |
Sukumar Ghorai | 948d38e | 2010-07-09 09:14:44 +0000 | [diff] [blame] | 84 | #define GPMC_CS0_OFFSET 0x60 |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 85 | #define GPMC_CS_SIZE 0x30 |
Afzal Mohammed | 2fdf0c9 | 2012-10-04 15:49:04 +0530 | [diff] [blame] | 86 | #define GPMC_BCH_SIZE 0x10 |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 87 | |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 88 | #define GPMC_MEM_START 0x00000000 |
| 89 | #define GPMC_MEM_END 0x3FFFFFFF |
| 90 | #define BOOT_ROM_SPACE 0x100000 /* 1MB */ |
| 91 | |
| 92 | #define GPMC_CHUNK_SHIFT 24 /* 16 MB */ |
| 93 | #define GPMC_SECTION_SHIFT 28 /* 128 MB */ |
| 94 | |
vimal singh | 59e9c5a | 2009-07-13 16:26:24 +0530 | [diff] [blame] | 95 | #define CS_NUM_SHIFT 24 |
| 96 | #define ENABLE_PREFETCH (0x1 << 7) |
| 97 | #define DMA_MPU_MODE 2 |
| 98 | |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 99 | #define GPMC_REVISION_MAJOR(l) ((l >> 4) & 0xf) |
| 100 | #define GPMC_REVISION_MINOR(l) (l & 0xf) |
| 101 | |
| 102 | #define GPMC_HAS_WR_ACCESS 0x1 |
| 103 | #define GPMC_HAS_WR_DATA_MUX_BUS 0x2 |
| 104 | |
Afzal Mohammed | 6b6c32f | 2012-08-30 12:53:23 -0700 | [diff] [blame] | 105 | /* XXX: Only NAND irq has been considered,currently these are the only ones used |
| 106 | */ |
| 107 | #define GPMC_NR_IRQ 2 |
| 108 | |
| 109 | struct gpmc_client_irq { |
| 110 | unsigned irq; |
| 111 | u32 bitmask; |
| 112 | }; |
| 113 | |
Rajendra Nayak | a2d3e7b | 2008-09-26 17:47:33 +0530 | [diff] [blame] | 114 | /* Structure to save gpmc cs context */ |
| 115 | struct gpmc_cs_config { |
| 116 | u32 config1; |
| 117 | u32 config2; |
| 118 | u32 config3; |
| 119 | u32 config4; |
| 120 | u32 config5; |
| 121 | u32 config6; |
| 122 | u32 config7; |
| 123 | int is_valid; |
| 124 | }; |
| 125 | |
| 126 | /* |
| 127 | * Structure to save/restore gpmc context |
| 128 | * to support core off on OMAP3 |
| 129 | */ |
| 130 | struct omap3_gpmc_regs { |
| 131 | u32 sysconfig; |
| 132 | u32 irqenable; |
| 133 | u32 timeout_ctrl; |
| 134 | u32 config; |
| 135 | u32 prefetch_config1; |
| 136 | u32 prefetch_config2; |
| 137 | u32 prefetch_control; |
| 138 | struct gpmc_cs_config cs_context[GPMC_CS_NUM]; |
| 139 | }; |
| 140 | |
Afzal Mohammed | 6b6c32f | 2012-08-30 12:53:23 -0700 | [diff] [blame] | 141 | static struct gpmc_client_irq gpmc_client_irq[GPMC_NR_IRQ]; |
| 142 | static struct irq_chip gpmc_irq_chip; |
| 143 | static unsigned gpmc_irq_start; |
| 144 | |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 145 | static struct resource gpmc_mem_root; |
| 146 | static struct resource gpmc_cs_mem[GPMC_CS_NUM]; |
Thomas Gleixner | 87b247c | 2007-05-10 22:33:04 -0700 | [diff] [blame] | 147 | static DEFINE_SPINLOCK(gpmc_mem_lock); |
Sukumar Ghorai | 948d38e | 2010-07-09 09:14:44 +0000 | [diff] [blame] | 148 | static unsigned int gpmc_cs_map; /* flag for cs which are initialized */ |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 149 | static struct device *gpmc_dev; |
| 150 | static int gpmc_irq; |
| 151 | static resource_size_t phys_base, mem_size; |
| 152 | static unsigned gpmc_capability; |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 153 | static void __iomem *gpmc_base; |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 154 | |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 155 | static struct clk *gpmc_l3_clk; |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 156 | |
Sukumar Ghorai | db97eb7d | 2011-01-28 15:42:05 +0530 | [diff] [blame] | 157 | static irqreturn_t gpmc_handle_irq(int irq, void *dev); |
| 158 | |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 159 | static void gpmc_write_reg(int idx, u32 val) |
| 160 | { |
| 161 | __raw_writel(val, gpmc_base + idx); |
| 162 | } |
| 163 | |
| 164 | static u32 gpmc_read_reg(int idx) |
| 165 | { |
| 166 | return __raw_readl(gpmc_base + idx); |
| 167 | } |
| 168 | |
| 169 | void gpmc_cs_write_reg(int cs, int idx, u32 val) |
| 170 | { |
| 171 | void __iomem *reg_addr; |
| 172 | |
Sukumar Ghorai | 948d38e | 2010-07-09 09:14:44 +0000 | [diff] [blame] | 173 | reg_addr = gpmc_base + GPMC_CS0_OFFSET + (cs * GPMC_CS_SIZE) + idx; |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 174 | __raw_writel(val, reg_addr); |
| 175 | } |
| 176 | |
| 177 | u32 gpmc_cs_read_reg(int cs, int idx) |
| 178 | { |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 179 | void __iomem *reg_addr; |
| 180 | |
Sukumar Ghorai | 948d38e | 2010-07-09 09:14:44 +0000 | [diff] [blame] | 181 | reg_addr = gpmc_base + GPMC_CS0_OFFSET + (cs * GPMC_CS_SIZE) + idx; |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 182 | return __raw_readl(reg_addr); |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 183 | } |
| 184 | |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 185 | /* TODO: Add support for gpmc_fck to clock framework and use it */ |
David Brownell | 1c22cc1 | 2006-12-06 17:13:55 -0800 | [diff] [blame] | 186 | unsigned long gpmc_get_fclk_period(void) |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 187 | { |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 188 | unsigned long rate = clk_get_rate(gpmc_l3_clk); |
| 189 | |
| 190 | if (rate == 0) { |
| 191 | printk(KERN_WARNING "gpmc_l3_clk not enabled\n"); |
| 192 | return 0; |
| 193 | } |
| 194 | |
| 195 | rate /= 1000; |
| 196 | rate = 1000000000 / rate; /* In picoseconds */ |
| 197 | |
| 198 | return rate; |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 199 | } |
| 200 | |
| 201 | unsigned int gpmc_ns_to_ticks(unsigned int time_ns) |
| 202 | { |
| 203 | unsigned long tick_ps; |
| 204 | |
| 205 | /* Calculate in picosecs to yield more exact results */ |
| 206 | tick_ps = gpmc_get_fclk_period(); |
| 207 | |
| 208 | return (time_ns * 1000 + tick_ps - 1) / tick_ps; |
| 209 | } |
| 210 | |
Adrian Hunter | a3551f5 | 2010-12-09 10:48:27 +0200 | [diff] [blame] | 211 | unsigned int gpmc_ps_to_ticks(unsigned int time_ps) |
| 212 | { |
| 213 | unsigned long tick_ps; |
| 214 | |
| 215 | /* Calculate in picosecs to yield more exact results */ |
| 216 | tick_ps = gpmc_get_fclk_period(); |
| 217 | |
| 218 | return (time_ps + tick_ps - 1) / tick_ps; |
| 219 | } |
| 220 | |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 221 | unsigned int gpmc_ticks_to_ns(unsigned int ticks) |
| 222 | { |
| 223 | return ticks * gpmc_get_fclk_period() / 1000; |
| 224 | } |
| 225 | |
Kai Svahn | 2330059 | 2007-01-26 12:29:40 -0800 | [diff] [blame] | 226 | unsigned int gpmc_round_ns_to_ticks(unsigned int time_ns) |
| 227 | { |
| 228 | unsigned long ticks = gpmc_ns_to_ticks(time_ns); |
| 229 | |
| 230 | return ticks * gpmc_get_fclk_period() / 1000; |
| 231 | } |
| 232 | |
Afzal Mohammed | 246da26 | 2012-08-02 20:02:10 +0530 | [diff] [blame^] | 233 | static unsigned int gpmc_ticks_to_ps(unsigned int ticks) |
| 234 | { |
| 235 | return ticks * gpmc_get_fclk_period(); |
| 236 | } |
| 237 | |
| 238 | static unsigned int gpmc_round_ps_to_ticks(unsigned int time_ps) |
| 239 | { |
| 240 | unsigned long ticks = gpmc_ps_to_ticks(time_ps); |
| 241 | |
| 242 | return ticks * gpmc_get_fclk_period(); |
| 243 | } |
| 244 | |
Afzal Mohammed | 559d94b | 2012-05-28 17:51:37 +0530 | [diff] [blame] | 245 | static inline void gpmc_cs_modify_reg(int cs, int reg, u32 mask, bool value) |
| 246 | { |
| 247 | u32 l; |
| 248 | |
| 249 | l = gpmc_cs_read_reg(cs, reg); |
| 250 | if (value) |
| 251 | l |= mask; |
| 252 | else |
| 253 | l &= ~mask; |
| 254 | gpmc_cs_write_reg(cs, reg, l); |
| 255 | } |
| 256 | |
| 257 | static void gpmc_cs_bool_timings(int cs, const struct gpmc_bool_timings *p) |
| 258 | { |
| 259 | gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG1, |
| 260 | GPMC_CONFIG1_TIME_PARA_GRAN, |
| 261 | p->time_para_granularity); |
| 262 | gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG2, |
| 263 | GPMC_CONFIG2_CSEXTRADELAY, p->cs_extra_delay); |
| 264 | gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG3, |
| 265 | GPMC_CONFIG3_ADVEXTRADELAY, p->adv_extra_delay); |
| 266 | gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG4, |
| 267 | GPMC_CONFIG4_OEEXTRADELAY, p->oe_extra_delay); |
| 268 | gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG4, |
| 269 | GPMC_CONFIG4_OEEXTRADELAY, p->we_extra_delay); |
| 270 | gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG6, |
| 271 | GPMC_CONFIG6_CYCLE2CYCLESAMECSEN, |
| 272 | p->cycle2cyclesamecsen); |
| 273 | gpmc_cs_modify_reg(cs, GPMC_CS_CONFIG6, |
| 274 | GPMC_CONFIG6_CYCLE2CYCLEDIFFCSEN, |
| 275 | p->cycle2cyclediffcsen); |
| 276 | } |
| 277 | |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 278 | #ifdef DEBUG |
| 279 | static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit, |
Juha Yrjola | 2aab646 | 2006-06-26 16:16:21 -0700 | [diff] [blame] | 280 | int time, const char *name) |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 281 | #else |
| 282 | static int set_gpmc_timing_reg(int cs, int reg, int st_bit, int end_bit, |
| 283 | int time) |
| 284 | #endif |
| 285 | { |
| 286 | u32 l; |
| 287 | int ticks, mask, nr_bits; |
| 288 | |
| 289 | if (time == 0) |
| 290 | ticks = 0; |
| 291 | else |
| 292 | ticks = gpmc_ns_to_ticks(time); |
| 293 | nr_bits = end_bit - st_bit + 1; |
David Brownell | 1c22cc1 | 2006-12-06 17:13:55 -0800 | [diff] [blame] | 294 | if (ticks >= 1 << nr_bits) { |
| 295 | #ifdef DEBUG |
| 296 | printk(KERN_INFO "GPMC CS%d: %-10s* %3d ns, %3d ticks >= %d\n", |
| 297 | cs, name, time, ticks, 1 << nr_bits); |
| 298 | #endif |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 299 | return -1; |
David Brownell | 1c22cc1 | 2006-12-06 17:13:55 -0800 | [diff] [blame] | 300 | } |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 301 | |
| 302 | mask = (1 << nr_bits) - 1; |
| 303 | l = gpmc_cs_read_reg(cs, reg); |
| 304 | #ifdef DEBUG |
David Brownell | 1c22cc1 | 2006-12-06 17:13:55 -0800 | [diff] [blame] | 305 | printk(KERN_INFO |
| 306 | "GPMC CS%d: %-10s: %3d ticks, %3lu ns (was %3i ticks) %3d ns\n", |
Juha Yrjola | 2aab646 | 2006-06-26 16:16:21 -0700 | [diff] [blame] | 307 | cs, name, ticks, gpmc_get_fclk_period() * ticks / 1000, |
David Brownell | 1c22cc1 | 2006-12-06 17:13:55 -0800 | [diff] [blame] | 308 | (l >> st_bit) & mask, time); |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 309 | #endif |
| 310 | l &= ~(mask << st_bit); |
| 311 | l |= ticks << st_bit; |
| 312 | gpmc_cs_write_reg(cs, reg, l); |
| 313 | |
| 314 | return 0; |
| 315 | } |
| 316 | |
| 317 | #ifdef DEBUG |
| 318 | #define GPMC_SET_ONE(reg, st, end, field) \ |
| 319 | if (set_gpmc_timing_reg(cs, (reg), (st), (end), \ |
| 320 | t->field, #field) < 0) \ |
| 321 | return -1 |
| 322 | #else |
| 323 | #define GPMC_SET_ONE(reg, st, end, field) \ |
| 324 | if (set_gpmc_timing_reg(cs, (reg), (st), (end), t->field) < 0) \ |
| 325 | return -1 |
| 326 | #endif |
| 327 | |
Afzal Mohammed | 1b47ca1 | 2012-08-19 18:29:45 +0530 | [diff] [blame] | 328 | int gpmc_calc_divider(unsigned int sync_clk) |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 329 | { |
| 330 | int div; |
| 331 | u32 l; |
| 332 | |
Adrian Hunter | a3551f5 | 2010-12-09 10:48:27 +0200 | [diff] [blame] | 333 | l = sync_clk + (gpmc_get_fclk_period() - 1); |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 334 | div = l / gpmc_get_fclk_period(); |
| 335 | if (div > 4) |
| 336 | return -1; |
David Brownell | 1c22cc1 | 2006-12-06 17:13:55 -0800 | [diff] [blame] | 337 | if (div <= 0) |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 338 | div = 1; |
| 339 | |
| 340 | return div; |
| 341 | } |
| 342 | |
| 343 | int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t) |
| 344 | { |
| 345 | int div; |
| 346 | u32 l; |
| 347 | |
Afzal Mohammed | 1b47ca1 | 2012-08-19 18:29:45 +0530 | [diff] [blame] | 348 | div = gpmc_calc_divider(t->sync_clk); |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 349 | if (div < 0) |
Paul Walmsley | a032d33 | 2012-08-03 09:21:10 -0600 | [diff] [blame] | 350 | return div; |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 351 | |
| 352 | GPMC_SET_ONE(GPMC_CS_CONFIG2, 0, 3, cs_on); |
| 353 | GPMC_SET_ONE(GPMC_CS_CONFIG2, 8, 12, cs_rd_off); |
| 354 | GPMC_SET_ONE(GPMC_CS_CONFIG2, 16, 20, cs_wr_off); |
| 355 | |
| 356 | GPMC_SET_ONE(GPMC_CS_CONFIG3, 0, 3, adv_on); |
| 357 | GPMC_SET_ONE(GPMC_CS_CONFIG3, 8, 12, adv_rd_off); |
| 358 | GPMC_SET_ONE(GPMC_CS_CONFIG3, 16, 20, adv_wr_off); |
| 359 | |
| 360 | GPMC_SET_ONE(GPMC_CS_CONFIG4, 0, 3, oe_on); |
| 361 | GPMC_SET_ONE(GPMC_CS_CONFIG4, 8, 12, oe_off); |
| 362 | GPMC_SET_ONE(GPMC_CS_CONFIG4, 16, 19, we_on); |
| 363 | GPMC_SET_ONE(GPMC_CS_CONFIG4, 24, 28, we_off); |
| 364 | |
| 365 | GPMC_SET_ONE(GPMC_CS_CONFIG5, 0, 4, rd_cycle); |
| 366 | GPMC_SET_ONE(GPMC_CS_CONFIG5, 8, 12, wr_cycle); |
| 367 | GPMC_SET_ONE(GPMC_CS_CONFIG5, 16, 20, access); |
| 368 | |
| 369 | GPMC_SET_ONE(GPMC_CS_CONFIG5, 24, 27, page_burst_access); |
| 370 | |
Afzal Mohammed | 559d94b | 2012-05-28 17:51:37 +0530 | [diff] [blame] | 371 | GPMC_SET_ONE(GPMC_CS_CONFIG6, 0, 3, bus_turnaround); |
| 372 | GPMC_SET_ONE(GPMC_CS_CONFIG6, 8, 11, cycle2cycle_delay); |
| 373 | |
| 374 | GPMC_SET_ONE(GPMC_CS_CONFIG1, 18, 19, wait_monitoring); |
| 375 | GPMC_SET_ONE(GPMC_CS_CONFIG1, 25, 26, clk_activation); |
| 376 | |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 377 | if (gpmc_capability & GPMC_HAS_WR_DATA_MUX_BUS) |
Syed Mohammed, Khasim | cc26b3b | 2008-10-09 17:51:41 +0300 | [diff] [blame] | 378 | GPMC_SET_ONE(GPMC_CS_CONFIG6, 16, 19, wr_data_mux_bus); |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 379 | if (gpmc_capability & GPMC_HAS_WR_ACCESS) |
Syed Mohammed, Khasim | cc26b3b | 2008-10-09 17:51:41 +0300 | [diff] [blame] | 380 | GPMC_SET_ONE(GPMC_CS_CONFIG6, 24, 28, wr_access); |
Syed Mohammed, Khasim | cc26b3b | 2008-10-09 17:51:41 +0300 | [diff] [blame] | 381 | |
David Brownell | 1c22cc1 | 2006-12-06 17:13:55 -0800 | [diff] [blame] | 382 | /* caller is expected to have initialized CONFIG1 to cover |
| 383 | * at least sync vs async |
| 384 | */ |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 385 | l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1); |
David Brownell | 1c22cc1 | 2006-12-06 17:13:55 -0800 | [diff] [blame] | 386 | if (l & (GPMC_CONFIG1_READTYPE_SYNC | GPMC_CONFIG1_WRITETYPE_SYNC)) { |
| 387 | #ifdef DEBUG |
| 388 | printk(KERN_INFO "GPMC CS%d CLK period is %lu ns (div %d)\n", |
| 389 | cs, (div * gpmc_get_fclk_period()) / 1000, div); |
| 390 | #endif |
| 391 | l &= ~0x03; |
| 392 | l |= (div - 1); |
| 393 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, l); |
| 394 | } |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 395 | |
Afzal Mohammed | 559d94b | 2012-05-28 17:51:37 +0530 | [diff] [blame] | 396 | gpmc_cs_bool_timings(cs, &t->bool_timings); |
| 397 | |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 398 | return 0; |
| 399 | } |
| 400 | |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 401 | static void gpmc_cs_enable_mem(int cs, u32 base, u32 size) |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 402 | { |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 403 | u32 l; |
| 404 | u32 mask; |
| 405 | |
| 406 | mask = (1 << GPMC_SECTION_SHIFT) - size; |
| 407 | l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7); |
| 408 | l &= ~0x3f; |
| 409 | l = (base >> GPMC_CHUNK_SHIFT) & 0x3f; |
| 410 | l &= ~(0x0f << 8); |
| 411 | l |= ((mask >> GPMC_CHUNK_SHIFT) & 0x0f) << 8; |
Rajendra Nayak | a2d3e7b | 2008-09-26 17:47:33 +0530 | [diff] [blame] | 412 | l |= GPMC_CONFIG7_CSVALID; |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 413 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG7, l); |
| 414 | } |
| 415 | |
| 416 | static void gpmc_cs_disable_mem(int cs) |
| 417 | { |
| 418 | u32 l; |
| 419 | |
| 420 | l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7); |
Rajendra Nayak | a2d3e7b | 2008-09-26 17:47:33 +0530 | [diff] [blame] | 421 | l &= ~GPMC_CONFIG7_CSVALID; |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 422 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG7, l); |
| 423 | } |
| 424 | |
| 425 | static void gpmc_cs_get_memconf(int cs, u32 *base, u32 *size) |
| 426 | { |
| 427 | u32 l; |
| 428 | u32 mask; |
| 429 | |
| 430 | l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7); |
| 431 | *base = (l & 0x3f) << GPMC_CHUNK_SHIFT; |
| 432 | mask = (l >> 8) & 0x0f; |
| 433 | *size = (1 << GPMC_SECTION_SHIFT) - (mask << GPMC_CHUNK_SHIFT); |
| 434 | } |
| 435 | |
| 436 | static int gpmc_cs_mem_enabled(int cs) |
| 437 | { |
| 438 | u32 l; |
| 439 | |
| 440 | l = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG7); |
Rajendra Nayak | a2d3e7b | 2008-09-26 17:47:33 +0530 | [diff] [blame] | 441 | return l & GPMC_CONFIG7_CSVALID; |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 442 | } |
| 443 | |
Tony Lindgren | c40fae95 | 2006-12-07 13:58:10 -0800 | [diff] [blame] | 444 | int gpmc_cs_set_reserved(int cs, int reserved) |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 445 | { |
Tony Lindgren | c40fae95 | 2006-12-07 13:58:10 -0800 | [diff] [blame] | 446 | if (cs > GPMC_CS_NUM) |
| 447 | return -ENODEV; |
| 448 | |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 449 | gpmc_cs_map &= ~(1 << cs); |
| 450 | gpmc_cs_map |= (reserved ? 1 : 0) << cs; |
Tony Lindgren | c40fae95 | 2006-12-07 13:58:10 -0800 | [diff] [blame] | 451 | |
| 452 | return 0; |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 453 | } |
| 454 | |
Tony Lindgren | c40fae95 | 2006-12-07 13:58:10 -0800 | [diff] [blame] | 455 | int gpmc_cs_reserved(int cs) |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 456 | { |
Tony Lindgren | c40fae95 | 2006-12-07 13:58:10 -0800 | [diff] [blame] | 457 | if (cs > GPMC_CS_NUM) |
| 458 | return -ENODEV; |
| 459 | |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 460 | return gpmc_cs_map & (1 << cs); |
| 461 | } |
| 462 | |
| 463 | static unsigned long gpmc_mem_align(unsigned long size) |
| 464 | { |
| 465 | int order; |
| 466 | |
| 467 | size = (size - 1) >> (GPMC_CHUNK_SHIFT - 1); |
| 468 | order = GPMC_CHUNK_SHIFT - 1; |
| 469 | do { |
| 470 | size >>= 1; |
| 471 | order++; |
| 472 | } while (size); |
| 473 | size = 1 << order; |
| 474 | return size; |
| 475 | } |
| 476 | |
| 477 | static int gpmc_cs_insert_mem(int cs, unsigned long base, unsigned long size) |
| 478 | { |
| 479 | struct resource *res = &gpmc_cs_mem[cs]; |
| 480 | int r; |
| 481 | |
| 482 | size = gpmc_mem_align(size); |
| 483 | spin_lock(&gpmc_mem_lock); |
| 484 | res->start = base; |
| 485 | res->end = base + size - 1; |
| 486 | r = request_resource(&gpmc_mem_root, res); |
| 487 | spin_unlock(&gpmc_mem_lock); |
| 488 | |
| 489 | return r; |
| 490 | } |
| 491 | |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 492 | static int gpmc_cs_delete_mem(int cs) |
| 493 | { |
| 494 | struct resource *res = &gpmc_cs_mem[cs]; |
| 495 | int r; |
| 496 | |
| 497 | spin_lock(&gpmc_mem_lock); |
| 498 | r = release_resource(&gpmc_cs_mem[cs]); |
| 499 | res->start = 0; |
| 500 | res->end = 0; |
| 501 | spin_unlock(&gpmc_mem_lock); |
| 502 | |
| 503 | return r; |
| 504 | } |
| 505 | |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 506 | int gpmc_cs_request(int cs, unsigned long size, unsigned long *base) |
| 507 | { |
| 508 | struct resource *res = &gpmc_cs_mem[cs]; |
| 509 | int r = -1; |
| 510 | |
| 511 | if (cs > GPMC_CS_NUM) |
| 512 | return -ENODEV; |
| 513 | |
| 514 | size = gpmc_mem_align(size); |
| 515 | if (size > (1 << GPMC_SECTION_SHIFT)) |
| 516 | return -ENOMEM; |
| 517 | |
| 518 | spin_lock(&gpmc_mem_lock); |
| 519 | if (gpmc_cs_reserved(cs)) { |
| 520 | r = -EBUSY; |
| 521 | goto out; |
| 522 | } |
| 523 | if (gpmc_cs_mem_enabled(cs)) |
| 524 | r = adjust_resource(res, res->start & ~(size - 1), size); |
| 525 | if (r < 0) |
| 526 | r = allocate_resource(&gpmc_mem_root, res, size, 0, ~0, |
| 527 | size, NULL, NULL); |
| 528 | if (r < 0) |
| 529 | goto out; |
| 530 | |
Tobias Klauser | 6d13524 | 2009-11-10 18:55:19 -0800 | [diff] [blame] | 531 | gpmc_cs_enable_mem(cs, res->start, resource_size(res)); |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 532 | *base = res->start; |
| 533 | gpmc_cs_set_reserved(cs, 1); |
| 534 | out: |
| 535 | spin_unlock(&gpmc_mem_lock); |
| 536 | return r; |
| 537 | } |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 538 | EXPORT_SYMBOL(gpmc_cs_request); |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 539 | |
| 540 | void gpmc_cs_free(int cs) |
| 541 | { |
| 542 | spin_lock(&gpmc_mem_lock); |
Roel Kluin | e7fdc60 | 2009-11-17 14:39:06 -0800 | [diff] [blame] | 543 | if (cs >= GPMC_CS_NUM || cs < 0 || !gpmc_cs_reserved(cs)) { |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 544 | printk(KERN_ERR "Trying to free non-reserved GPMC CS%d\n", cs); |
| 545 | BUG(); |
| 546 | spin_unlock(&gpmc_mem_lock); |
| 547 | return; |
| 548 | } |
| 549 | gpmc_cs_disable_mem(cs); |
| 550 | release_resource(&gpmc_cs_mem[cs]); |
| 551 | gpmc_cs_set_reserved(cs, 0); |
| 552 | spin_unlock(&gpmc_mem_lock); |
| 553 | } |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 554 | EXPORT_SYMBOL(gpmc_cs_free); |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 555 | |
vimal singh | 59e9c5a | 2009-07-13 16:26:24 +0530 | [diff] [blame] | 556 | /** |
Sukumar Ghorai | 948d38e | 2010-07-09 09:14:44 +0000 | [diff] [blame] | 557 | * gpmc_cs_configure - write request to configure gpmc |
| 558 | * @cs: chip select number |
| 559 | * @cmd: command type |
| 560 | * @wval: value to write |
| 561 | * @return status of the operation |
| 562 | */ |
| 563 | int gpmc_cs_configure(int cs, int cmd, int wval) |
| 564 | { |
| 565 | int err = 0; |
| 566 | u32 regval = 0; |
| 567 | |
| 568 | switch (cmd) { |
Sukumar Ghorai | db97eb7d | 2011-01-28 15:42:05 +0530 | [diff] [blame] | 569 | case GPMC_ENABLE_IRQ: |
| 570 | gpmc_write_reg(GPMC_IRQENABLE, wval); |
| 571 | break; |
| 572 | |
Sukumar Ghorai | 948d38e | 2010-07-09 09:14:44 +0000 | [diff] [blame] | 573 | case GPMC_SET_IRQ_STATUS: |
| 574 | gpmc_write_reg(GPMC_IRQSTATUS, wval); |
| 575 | break; |
| 576 | |
| 577 | case GPMC_CONFIG_WP: |
| 578 | regval = gpmc_read_reg(GPMC_CONFIG); |
| 579 | if (wval) |
| 580 | regval &= ~GPMC_CONFIG_WRITEPROTECT; /* WP is ON */ |
| 581 | else |
| 582 | regval |= GPMC_CONFIG_WRITEPROTECT; /* WP is OFF */ |
| 583 | gpmc_write_reg(GPMC_CONFIG, regval); |
| 584 | break; |
| 585 | |
| 586 | case GPMC_CONFIG_RDY_BSY: |
| 587 | regval = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1); |
| 588 | if (wval) |
| 589 | regval |= WR_RD_PIN_MONITORING; |
| 590 | else |
| 591 | regval &= ~WR_RD_PIN_MONITORING; |
| 592 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, regval); |
| 593 | break; |
| 594 | |
| 595 | case GPMC_CONFIG_DEV_SIZE: |
| 596 | regval = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1); |
Yegor Yefremov | 8ef5d84 | 2012-01-23 08:32:23 +0100 | [diff] [blame] | 597 | |
| 598 | /* clear 2 target bits */ |
| 599 | regval &= ~GPMC_CONFIG1_DEVICESIZE(3); |
| 600 | |
| 601 | /* set the proper value */ |
Sukumar Ghorai | 948d38e | 2010-07-09 09:14:44 +0000 | [diff] [blame] | 602 | regval |= GPMC_CONFIG1_DEVICESIZE(wval); |
Yegor Yefremov | 8ef5d84 | 2012-01-23 08:32:23 +0100 | [diff] [blame] | 603 | |
Sukumar Ghorai | 948d38e | 2010-07-09 09:14:44 +0000 | [diff] [blame] | 604 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, regval); |
| 605 | break; |
| 606 | |
| 607 | case GPMC_CONFIG_DEV_TYPE: |
| 608 | regval = gpmc_cs_read_reg(cs, GPMC_CS_CONFIG1); |
| 609 | regval |= GPMC_CONFIG1_DEVICETYPE(wval); |
| 610 | if (wval == GPMC_DEVICETYPE_NOR) |
| 611 | regval |= GPMC_CONFIG1_MUXADDDATA; |
| 612 | gpmc_cs_write_reg(cs, GPMC_CS_CONFIG1, regval); |
| 613 | break; |
| 614 | |
| 615 | default: |
| 616 | printk(KERN_ERR "gpmc_configure_cs: Not supported\n"); |
| 617 | err = -EINVAL; |
| 618 | } |
| 619 | |
| 620 | return err; |
| 621 | } |
| 622 | EXPORT_SYMBOL(gpmc_cs_configure); |
| 623 | |
Afzal Mohammed | 52bd138 | 2012-08-30 12:53:22 -0700 | [diff] [blame] | 624 | void gpmc_update_nand_reg(struct gpmc_nand_regs *reg, int cs) |
| 625 | { |
Afzal Mohammed | 2fdf0c9 | 2012-10-04 15:49:04 +0530 | [diff] [blame] | 626 | int i; |
| 627 | |
Afzal Mohammed | 52bd138 | 2012-08-30 12:53:22 -0700 | [diff] [blame] | 628 | reg->gpmc_status = gpmc_base + GPMC_STATUS; |
| 629 | reg->gpmc_nand_command = gpmc_base + GPMC_CS0_OFFSET + |
| 630 | GPMC_CS_NAND_COMMAND + GPMC_CS_SIZE * cs; |
| 631 | reg->gpmc_nand_address = gpmc_base + GPMC_CS0_OFFSET + |
| 632 | GPMC_CS_NAND_ADDRESS + GPMC_CS_SIZE * cs; |
| 633 | reg->gpmc_nand_data = gpmc_base + GPMC_CS0_OFFSET + |
| 634 | GPMC_CS_NAND_DATA + GPMC_CS_SIZE * cs; |
| 635 | reg->gpmc_prefetch_config1 = gpmc_base + GPMC_PREFETCH_CONFIG1; |
| 636 | reg->gpmc_prefetch_config2 = gpmc_base + GPMC_PREFETCH_CONFIG2; |
| 637 | reg->gpmc_prefetch_control = gpmc_base + GPMC_PREFETCH_CONTROL; |
| 638 | reg->gpmc_prefetch_status = gpmc_base + GPMC_PREFETCH_STATUS; |
| 639 | reg->gpmc_ecc_config = gpmc_base + GPMC_ECC_CONFIG; |
| 640 | reg->gpmc_ecc_control = gpmc_base + GPMC_ECC_CONTROL; |
| 641 | reg->gpmc_ecc_size_config = gpmc_base + GPMC_ECC_SIZE_CONFIG; |
| 642 | reg->gpmc_ecc1_result = gpmc_base + GPMC_ECC1_RESULT; |
Afzal Mohammed | 2fdf0c9 | 2012-10-04 15:49:04 +0530 | [diff] [blame] | 643 | |
| 644 | for (i = 0; i < GPMC_BCH_NUM_REMAINDER; i++) { |
| 645 | reg->gpmc_bch_result0[i] = gpmc_base + GPMC_ECC_BCH_RESULT_0 + |
| 646 | GPMC_BCH_SIZE * i; |
| 647 | reg->gpmc_bch_result1[i] = gpmc_base + GPMC_ECC_BCH_RESULT_1 + |
| 648 | GPMC_BCH_SIZE * i; |
| 649 | reg->gpmc_bch_result2[i] = gpmc_base + GPMC_ECC_BCH_RESULT_2 + |
| 650 | GPMC_BCH_SIZE * i; |
| 651 | reg->gpmc_bch_result3[i] = gpmc_base + GPMC_ECC_BCH_RESULT_3 + |
| 652 | GPMC_BCH_SIZE * i; |
| 653 | } |
Afzal Mohammed | 52bd138 | 2012-08-30 12:53:22 -0700 | [diff] [blame] | 654 | } |
| 655 | |
Afzal Mohammed | 6b6c32f | 2012-08-30 12:53:23 -0700 | [diff] [blame] | 656 | int gpmc_get_client_irq(unsigned irq_config) |
| 657 | { |
| 658 | int i; |
| 659 | |
| 660 | if (hweight32(irq_config) > 1) |
| 661 | return 0; |
| 662 | |
| 663 | for (i = 0; i < GPMC_NR_IRQ; i++) |
| 664 | if (gpmc_client_irq[i].bitmask & irq_config) |
| 665 | return gpmc_client_irq[i].irq; |
| 666 | |
| 667 | return 0; |
| 668 | } |
| 669 | |
| 670 | static int gpmc_irq_endis(unsigned irq, bool endis) |
| 671 | { |
| 672 | int i; |
| 673 | u32 regval; |
| 674 | |
| 675 | for (i = 0; i < GPMC_NR_IRQ; i++) |
| 676 | if (irq == gpmc_client_irq[i].irq) { |
| 677 | regval = gpmc_read_reg(GPMC_IRQENABLE); |
| 678 | if (endis) |
| 679 | regval |= gpmc_client_irq[i].bitmask; |
| 680 | else |
| 681 | regval &= ~gpmc_client_irq[i].bitmask; |
| 682 | gpmc_write_reg(GPMC_IRQENABLE, regval); |
| 683 | break; |
| 684 | } |
| 685 | |
| 686 | return 0; |
| 687 | } |
| 688 | |
| 689 | static void gpmc_irq_disable(struct irq_data *p) |
| 690 | { |
| 691 | gpmc_irq_endis(p->irq, false); |
| 692 | } |
| 693 | |
| 694 | static void gpmc_irq_enable(struct irq_data *p) |
| 695 | { |
| 696 | gpmc_irq_endis(p->irq, true); |
| 697 | } |
| 698 | |
| 699 | static void gpmc_irq_noop(struct irq_data *data) { } |
| 700 | |
| 701 | static unsigned int gpmc_irq_noop_ret(struct irq_data *data) { return 0; } |
| 702 | |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 703 | static int gpmc_setup_irq(void) |
Afzal Mohammed | 6b6c32f | 2012-08-30 12:53:23 -0700 | [diff] [blame] | 704 | { |
| 705 | int i; |
| 706 | u32 regval; |
| 707 | |
| 708 | if (!gpmc_irq) |
| 709 | return -EINVAL; |
| 710 | |
| 711 | gpmc_irq_start = irq_alloc_descs(-1, 0, GPMC_NR_IRQ, 0); |
| 712 | if (IS_ERR_VALUE(gpmc_irq_start)) { |
| 713 | pr_err("irq_alloc_descs failed\n"); |
| 714 | return gpmc_irq_start; |
| 715 | } |
| 716 | |
| 717 | gpmc_irq_chip.name = "gpmc"; |
| 718 | gpmc_irq_chip.irq_startup = gpmc_irq_noop_ret; |
| 719 | gpmc_irq_chip.irq_enable = gpmc_irq_enable; |
| 720 | gpmc_irq_chip.irq_disable = gpmc_irq_disable; |
| 721 | gpmc_irq_chip.irq_shutdown = gpmc_irq_noop; |
| 722 | gpmc_irq_chip.irq_ack = gpmc_irq_noop; |
| 723 | gpmc_irq_chip.irq_mask = gpmc_irq_noop; |
| 724 | gpmc_irq_chip.irq_unmask = gpmc_irq_noop; |
| 725 | |
| 726 | gpmc_client_irq[0].bitmask = GPMC_IRQ_FIFOEVENTENABLE; |
| 727 | gpmc_client_irq[1].bitmask = GPMC_IRQ_COUNT_EVENT; |
| 728 | |
| 729 | for (i = 0; i < GPMC_NR_IRQ; i++) { |
| 730 | gpmc_client_irq[i].irq = gpmc_irq_start + i; |
| 731 | irq_set_chip_and_handler(gpmc_client_irq[i].irq, |
| 732 | &gpmc_irq_chip, handle_simple_irq); |
| 733 | set_irq_flags(gpmc_client_irq[i].irq, |
| 734 | IRQF_VALID | IRQF_NOAUTOEN); |
| 735 | } |
| 736 | |
| 737 | /* Disable interrupts */ |
| 738 | gpmc_write_reg(GPMC_IRQENABLE, 0); |
| 739 | |
| 740 | /* clear interrupts */ |
| 741 | regval = gpmc_read_reg(GPMC_IRQSTATUS); |
| 742 | gpmc_write_reg(GPMC_IRQSTATUS, regval); |
| 743 | |
| 744 | return request_irq(gpmc_irq, gpmc_handle_irq, 0, "gpmc", NULL); |
| 745 | } |
| 746 | |
Afzal Mohammed | 61687c6 | 2012-10-04 14:01:57 +0530 | [diff] [blame] | 747 | static __devexit int gpmc_free_irq(void) |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 748 | { |
| 749 | int i; |
| 750 | |
| 751 | if (gpmc_irq) |
| 752 | free_irq(gpmc_irq, NULL); |
| 753 | |
| 754 | for (i = 0; i < GPMC_NR_IRQ; i++) { |
| 755 | irq_set_handler(gpmc_client_irq[i].irq, NULL); |
| 756 | irq_set_chip(gpmc_client_irq[i].irq, &no_irq_chip); |
| 757 | irq_modify_status(gpmc_client_irq[i].irq, 0, 0); |
| 758 | } |
| 759 | |
| 760 | irq_free_descs(gpmc_irq_start, GPMC_NR_IRQ); |
| 761 | |
| 762 | return 0; |
| 763 | } |
| 764 | |
| 765 | static void __devexit gpmc_mem_exit(void) |
| 766 | { |
| 767 | int cs; |
| 768 | |
| 769 | for (cs = 0; cs < GPMC_CS_NUM; cs++) { |
| 770 | if (!gpmc_cs_mem_enabled(cs)) |
| 771 | continue; |
| 772 | gpmc_cs_delete_mem(cs); |
| 773 | } |
| 774 | |
| 775 | } |
| 776 | |
Jon Hunter | 8119024 | 2012-10-17 09:41:25 -0500 | [diff] [blame] | 777 | static int __devinit gpmc_mem_init(void) |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 778 | { |
Jon Hunter | 8119024 | 2012-10-17 09:41:25 -0500 | [diff] [blame] | 779 | int cs, rc; |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 780 | unsigned long boot_rom_space = 0; |
| 781 | |
Kyungmin Park | 7f24516 | 2006-12-29 16:48:51 -0800 | [diff] [blame] | 782 | /* never allocate the first page, to facilitate bug detection; |
| 783 | * even if we didn't boot from ROM. |
| 784 | */ |
| 785 | boot_rom_space = BOOT_ROM_SPACE; |
| 786 | /* In apollon the CS0 is mapped as 0x0000 0000 */ |
| 787 | if (machine_is_omap_apollon()) |
| 788 | boot_rom_space = 0; |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 789 | gpmc_mem_root.start = GPMC_MEM_START + boot_rom_space; |
| 790 | gpmc_mem_root.end = GPMC_MEM_END; |
| 791 | |
| 792 | /* Reserve all regions that has been set up by bootloader */ |
| 793 | for (cs = 0; cs < GPMC_CS_NUM; cs++) { |
| 794 | u32 base, size; |
| 795 | |
| 796 | if (!gpmc_cs_mem_enabled(cs)) |
| 797 | continue; |
| 798 | gpmc_cs_get_memconf(cs, &base, &size); |
Jon Hunter | 8119024 | 2012-10-17 09:41:25 -0500 | [diff] [blame] | 799 | rc = gpmc_cs_insert_mem(cs, base, size); |
| 800 | if (IS_ERR_VALUE(rc)) { |
| 801 | while (--cs >= 0) |
| 802 | if (gpmc_cs_mem_enabled(cs)) |
| 803 | gpmc_cs_delete_mem(cs); |
| 804 | return rc; |
| 805 | } |
Imre Deak | f37e458 | 2006-09-25 12:41:33 +0300 | [diff] [blame] | 806 | } |
Jon Hunter | 8119024 | 2012-10-17 09:41:25 -0500 | [diff] [blame] | 807 | |
| 808 | return 0; |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 809 | } |
| 810 | |
Afzal Mohammed | 246da26 | 2012-08-02 20:02:10 +0530 | [diff] [blame^] | 811 | static u32 gpmc_round_ps_to_sync_clk(u32 time_ps, u32 sync_clk) |
| 812 | { |
| 813 | u32 temp; |
| 814 | int div; |
| 815 | |
| 816 | div = gpmc_calc_divider(sync_clk); |
| 817 | temp = gpmc_ps_to_ticks(time_ps); |
| 818 | temp = (temp + div - 1) / div; |
| 819 | return gpmc_ticks_to_ps(temp * div); |
| 820 | } |
| 821 | |
| 822 | /* XXX: can the cycles be avoided ? */ |
| 823 | static int gpmc_calc_sync_read_timings(struct gpmc_timings *gpmc_t, |
| 824 | struct gpmc_device_timings *dev_t) |
| 825 | { |
| 826 | bool mux = dev_t->mux; |
| 827 | u32 temp; |
| 828 | |
| 829 | /* adv_rd_off */ |
| 830 | temp = dev_t->t_avdp_r; |
| 831 | /* XXX: mux check required ? */ |
| 832 | if (mux) { |
| 833 | /* XXX: t_avdp not to be required for sync, only added for tusb |
| 834 | * this indirectly necessitates requirement of t_avdp_r and |
| 835 | * t_avdp_w instead of having a single t_avdp |
| 836 | */ |
| 837 | temp = max_t(u32, temp, gpmc_t->clk_activation + dev_t->t_avdh); |
| 838 | temp = max_t(u32, gpmc_t->adv_on + gpmc_ticks_to_ps(1), temp); |
| 839 | } |
| 840 | gpmc_t->adv_rd_off = gpmc_round_ps_to_ticks(temp); |
| 841 | |
| 842 | /* oe_on */ |
| 843 | temp = dev_t->t_oeasu; /* XXX: remove this ? */ |
| 844 | if (mux) { |
| 845 | temp = max_t(u32, temp, gpmc_t->clk_activation + dev_t->t_ach); |
| 846 | temp = max_t(u32, temp, gpmc_t->adv_rd_off + |
| 847 | gpmc_ticks_to_ps(dev_t->cyc_aavdh_oe)); |
| 848 | } |
| 849 | gpmc_t->oe_on = gpmc_round_ps_to_ticks(temp); |
| 850 | |
| 851 | /* access */ |
| 852 | /* XXX: any scope for improvement ?, by combining oe_on |
| 853 | * and clk_activation, need to check whether |
| 854 | * access = clk_activation + round to sync clk ? |
| 855 | */ |
| 856 | temp = max_t(u32, dev_t->t_iaa, dev_t->cyc_iaa * gpmc_t->sync_clk); |
| 857 | temp += gpmc_t->clk_activation; |
| 858 | if (dev_t->cyc_oe) |
| 859 | temp = max_t(u32, temp, gpmc_t->oe_on + |
| 860 | gpmc_ticks_to_ps(dev_t->cyc_oe)); |
| 861 | gpmc_t->access = gpmc_round_ps_to_ticks(temp); |
| 862 | |
| 863 | gpmc_t->oe_off = gpmc_t->access + gpmc_ticks_to_ps(1); |
| 864 | gpmc_t->cs_rd_off = gpmc_t->oe_off; |
| 865 | |
| 866 | /* rd_cycle */ |
| 867 | temp = max_t(u32, dev_t->t_cez_r, dev_t->t_oez); |
| 868 | temp = gpmc_round_ps_to_sync_clk(temp, gpmc_t->sync_clk) + |
| 869 | gpmc_t->access; |
| 870 | /* XXX: barter t_ce_rdyz with t_cez_r ? */ |
| 871 | if (dev_t->t_ce_rdyz) |
| 872 | temp = max_t(u32, temp, gpmc_t->cs_rd_off + dev_t->t_ce_rdyz); |
| 873 | gpmc_t->rd_cycle = gpmc_round_ps_to_ticks(temp); |
| 874 | |
| 875 | return 0; |
| 876 | } |
| 877 | |
| 878 | static int gpmc_calc_sync_write_timings(struct gpmc_timings *gpmc_t, |
| 879 | struct gpmc_device_timings *dev_t) |
| 880 | { |
| 881 | bool mux = dev_t->mux; |
| 882 | u32 temp; |
| 883 | |
| 884 | /* adv_wr_off */ |
| 885 | temp = dev_t->t_avdp_w; |
| 886 | if (mux) { |
| 887 | temp = max_t(u32, temp, |
| 888 | gpmc_t->clk_activation + dev_t->t_avdh); |
| 889 | temp = max_t(u32, gpmc_t->adv_on + gpmc_ticks_to_ps(1), temp); |
| 890 | } |
| 891 | gpmc_t->adv_wr_off = gpmc_round_ps_to_ticks(temp); |
| 892 | |
| 893 | /* wr_data_mux_bus */ |
| 894 | temp = max_t(u32, dev_t->t_weasu, |
| 895 | gpmc_t->clk_activation + dev_t->t_rdyo); |
| 896 | /* XXX: shouldn't mux be kept as a whole for wr_data_mux_bus ?, |
| 897 | * and in that case remember to handle we_on properly |
| 898 | */ |
| 899 | if (mux) { |
| 900 | temp = max_t(u32, temp, |
| 901 | gpmc_t->adv_wr_off + dev_t->t_aavdh); |
| 902 | temp = max_t(u32, temp, gpmc_t->adv_wr_off + |
| 903 | gpmc_ticks_to_ps(dev_t->cyc_aavdh_we)); |
| 904 | } |
| 905 | gpmc_t->wr_data_mux_bus = gpmc_round_ps_to_ticks(temp); |
| 906 | |
| 907 | /* we_on */ |
| 908 | if (gpmc_capability & GPMC_HAS_WR_DATA_MUX_BUS) |
| 909 | gpmc_t->we_on = gpmc_round_ps_to_ticks(dev_t->t_weasu); |
| 910 | else |
| 911 | gpmc_t->we_on = gpmc_t->wr_data_mux_bus; |
| 912 | |
| 913 | /* wr_access */ |
| 914 | /* XXX: gpmc_capability check reqd ? , even if not, will not harm */ |
| 915 | gpmc_t->wr_access = gpmc_t->access; |
| 916 | |
| 917 | /* we_off */ |
| 918 | temp = gpmc_t->we_on + dev_t->t_wpl; |
| 919 | temp = max_t(u32, temp, |
| 920 | gpmc_t->wr_access + gpmc_ticks_to_ps(1)); |
| 921 | temp = max_t(u32, temp, |
| 922 | gpmc_t->we_on + gpmc_ticks_to_ps(dev_t->cyc_wpl)); |
| 923 | gpmc_t->we_off = gpmc_round_ps_to_ticks(temp); |
| 924 | |
| 925 | gpmc_t->cs_wr_off = gpmc_round_ps_to_ticks(gpmc_t->we_off + |
| 926 | dev_t->t_wph); |
| 927 | |
| 928 | /* wr_cycle */ |
| 929 | temp = gpmc_round_ps_to_sync_clk(dev_t->t_cez_w, gpmc_t->sync_clk); |
| 930 | temp += gpmc_t->wr_access; |
| 931 | /* XXX: barter t_ce_rdyz with t_cez_w ? */ |
| 932 | if (dev_t->t_ce_rdyz) |
| 933 | temp = max_t(u32, temp, |
| 934 | gpmc_t->cs_wr_off + dev_t->t_ce_rdyz); |
| 935 | gpmc_t->wr_cycle = gpmc_round_ps_to_ticks(temp); |
| 936 | |
| 937 | return 0; |
| 938 | } |
| 939 | |
| 940 | static int gpmc_calc_async_read_timings(struct gpmc_timings *gpmc_t, |
| 941 | struct gpmc_device_timings *dev_t) |
| 942 | { |
| 943 | bool mux = dev_t->mux; |
| 944 | u32 temp; |
| 945 | |
| 946 | /* adv_rd_off */ |
| 947 | temp = dev_t->t_avdp_r; |
| 948 | if (mux) |
| 949 | temp = max_t(u32, gpmc_t->adv_on + gpmc_ticks_to_ps(1), temp); |
| 950 | gpmc_t->adv_rd_off = gpmc_round_ps_to_ticks(temp); |
| 951 | |
| 952 | /* oe_on */ |
| 953 | temp = dev_t->t_oeasu; |
| 954 | if (mux) |
| 955 | temp = max_t(u32, temp, |
| 956 | gpmc_t->adv_rd_off + dev_t->t_aavdh); |
| 957 | gpmc_t->oe_on = gpmc_round_ps_to_ticks(temp); |
| 958 | |
| 959 | /* access */ |
| 960 | temp = max_t(u32, dev_t->t_iaa, /* XXX: remove t_iaa in async ? */ |
| 961 | gpmc_t->oe_on + dev_t->t_oe); |
| 962 | temp = max_t(u32, temp, |
| 963 | gpmc_t->cs_on + dev_t->t_ce); |
| 964 | temp = max_t(u32, temp, |
| 965 | gpmc_t->adv_on + dev_t->t_aa); |
| 966 | gpmc_t->access = gpmc_round_ps_to_ticks(temp); |
| 967 | |
| 968 | gpmc_t->oe_off = gpmc_t->access + gpmc_ticks_to_ps(1); |
| 969 | gpmc_t->cs_rd_off = gpmc_t->oe_off; |
| 970 | |
| 971 | /* rd_cycle */ |
| 972 | temp = max_t(u32, dev_t->t_rd_cycle, |
| 973 | gpmc_t->cs_rd_off + dev_t->t_cez_r); |
| 974 | temp = max_t(u32, temp, gpmc_t->oe_off + dev_t->t_oez); |
| 975 | gpmc_t->rd_cycle = gpmc_round_ps_to_ticks(temp); |
| 976 | |
| 977 | return 0; |
| 978 | } |
| 979 | |
| 980 | static int gpmc_calc_async_write_timings(struct gpmc_timings *gpmc_t, |
| 981 | struct gpmc_device_timings *dev_t) |
| 982 | { |
| 983 | bool mux = dev_t->mux; |
| 984 | u32 temp; |
| 985 | |
| 986 | /* adv_wr_off */ |
| 987 | temp = dev_t->t_avdp_w; |
| 988 | if (mux) |
| 989 | temp = max_t(u32, gpmc_t->adv_on + gpmc_ticks_to_ps(1), temp); |
| 990 | gpmc_t->adv_wr_off = gpmc_round_ps_to_ticks(temp); |
| 991 | |
| 992 | /* wr_data_mux_bus */ |
| 993 | temp = dev_t->t_weasu; |
| 994 | if (mux) { |
| 995 | temp = max_t(u32, temp, gpmc_t->adv_wr_off + dev_t->t_aavdh); |
| 996 | temp = max_t(u32, temp, gpmc_t->adv_wr_off + |
| 997 | gpmc_ticks_to_ps(dev_t->cyc_aavdh_we)); |
| 998 | } |
| 999 | gpmc_t->wr_data_mux_bus = gpmc_round_ps_to_ticks(temp); |
| 1000 | |
| 1001 | /* we_on */ |
| 1002 | if (gpmc_capability & GPMC_HAS_WR_DATA_MUX_BUS) |
| 1003 | gpmc_t->we_on = gpmc_round_ps_to_ticks(dev_t->t_weasu); |
| 1004 | else |
| 1005 | gpmc_t->we_on = gpmc_t->wr_data_mux_bus; |
| 1006 | |
| 1007 | /* we_off */ |
| 1008 | temp = gpmc_t->we_on + dev_t->t_wpl; |
| 1009 | gpmc_t->we_off = gpmc_round_ps_to_ticks(temp); |
| 1010 | |
| 1011 | gpmc_t->cs_wr_off = gpmc_round_ps_to_ticks(gpmc_t->we_off + |
| 1012 | dev_t->t_wph); |
| 1013 | |
| 1014 | /* wr_cycle */ |
| 1015 | temp = max_t(u32, dev_t->t_wr_cycle, |
| 1016 | gpmc_t->cs_wr_off + dev_t->t_cez_w); |
| 1017 | gpmc_t->wr_cycle = gpmc_round_ps_to_ticks(temp); |
| 1018 | |
| 1019 | return 0; |
| 1020 | } |
| 1021 | |
| 1022 | static int gpmc_calc_sync_common_timings(struct gpmc_timings *gpmc_t, |
| 1023 | struct gpmc_device_timings *dev_t) |
| 1024 | { |
| 1025 | u32 temp; |
| 1026 | |
| 1027 | gpmc_t->sync_clk = gpmc_calc_divider(dev_t->clk) * |
| 1028 | gpmc_get_fclk_period(); |
| 1029 | |
| 1030 | gpmc_t->page_burst_access = gpmc_round_ps_to_sync_clk( |
| 1031 | dev_t->t_bacc, |
| 1032 | gpmc_t->sync_clk); |
| 1033 | |
| 1034 | temp = max_t(u32, dev_t->t_ces, dev_t->t_avds); |
| 1035 | gpmc_t->clk_activation = gpmc_round_ps_to_ticks(temp); |
| 1036 | |
| 1037 | if (gpmc_calc_divider(gpmc_t->sync_clk) != 1) |
| 1038 | return 0; |
| 1039 | |
| 1040 | if (dev_t->ce_xdelay) |
| 1041 | gpmc_t->bool_timings.cs_extra_delay = true; |
| 1042 | if (dev_t->avd_xdelay) |
| 1043 | gpmc_t->bool_timings.adv_extra_delay = true; |
| 1044 | if (dev_t->oe_xdelay) |
| 1045 | gpmc_t->bool_timings.oe_extra_delay = true; |
| 1046 | if (dev_t->we_xdelay) |
| 1047 | gpmc_t->bool_timings.we_extra_delay = true; |
| 1048 | |
| 1049 | return 0; |
| 1050 | } |
| 1051 | |
| 1052 | static int gpmc_calc_common_timings(struct gpmc_timings *gpmc_t, |
| 1053 | struct gpmc_device_timings *dev_t) |
| 1054 | { |
| 1055 | u32 temp; |
| 1056 | |
| 1057 | /* cs_on */ |
| 1058 | gpmc_t->cs_on = gpmc_round_ps_to_ticks(dev_t->t_ceasu); |
| 1059 | |
| 1060 | /* adv_on */ |
| 1061 | temp = dev_t->t_avdasu; |
| 1062 | if (dev_t->t_ce_avd) |
| 1063 | temp = max_t(u32, temp, |
| 1064 | gpmc_t->cs_on + dev_t->t_ce_avd); |
| 1065 | gpmc_t->adv_on = gpmc_round_ps_to_ticks(temp); |
| 1066 | |
| 1067 | if (dev_t->sync_write || dev_t->sync_read) |
| 1068 | gpmc_calc_sync_common_timings(gpmc_t, dev_t); |
| 1069 | |
| 1070 | return 0; |
| 1071 | } |
| 1072 | |
| 1073 | /* TODO: remove this function once all peripherals are confirmed to |
| 1074 | * work with generic timing. Simultaneously gpmc_cs_set_timings() |
| 1075 | * has to be modified to handle timings in ps instead of ns |
| 1076 | */ |
| 1077 | static void gpmc_convert_ps_to_ns(struct gpmc_timings *t) |
| 1078 | { |
| 1079 | t->cs_on /= 1000; |
| 1080 | t->cs_rd_off /= 1000; |
| 1081 | t->cs_wr_off /= 1000; |
| 1082 | t->adv_on /= 1000; |
| 1083 | t->adv_rd_off /= 1000; |
| 1084 | t->adv_wr_off /= 1000; |
| 1085 | t->we_on /= 1000; |
| 1086 | t->we_off /= 1000; |
| 1087 | t->oe_on /= 1000; |
| 1088 | t->oe_off /= 1000; |
| 1089 | t->page_burst_access /= 1000; |
| 1090 | t->access /= 1000; |
| 1091 | t->rd_cycle /= 1000; |
| 1092 | t->wr_cycle /= 1000; |
| 1093 | t->bus_turnaround /= 1000; |
| 1094 | t->cycle2cycle_delay /= 1000; |
| 1095 | t->wait_monitoring /= 1000; |
| 1096 | t->clk_activation /= 1000; |
| 1097 | t->wr_access /= 1000; |
| 1098 | t->wr_data_mux_bus /= 1000; |
| 1099 | } |
| 1100 | |
| 1101 | int gpmc_calc_timings(struct gpmc_timings *gpmc_t, |
| 1102 | struct gpmc_device_timings *dev_t) |
| 1103 | { |
| 1104 | memset(gpmc_t, 0, sizeof(*gpmc_t)); |
| 1105 | |
| 1106 | gpmc_calc_common_timings(gpmc_t, dev_t); |
| 1107 | |
| 1108 | if (dev_t->sync_read) |
| 1109 | gpmc_calc_sync_read_timings(gpmc_t, dev_t); |
| 1110 | else |
| 1111 | gpmc_calc_async_read_timings(gpmc_t, dev_t); |
| 1112 | |
| 1113 | if (dev_t->sync_write) |
| 1114 | gpmc_calc_sync_write_timings(gpmc_t, dev_t); |
| 1115 | else |
| 1116 | gpmc_calc_async_write_timings(gpmc_t, dev_t); |
| 1117 | |
| 1118 | /* TODO: remove, see function definition */ |
| 1119 | gpmc_convert_ps_to_ns(gpmc_t); |
| 1120 | |
| 1121 | return 0; |
| 1122 | } |
| 1123 | |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 1124 | static __devinit int gpmc_probe(struct platform_device *pdev) |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 1125 | { |
Jon Hunter | 8119024 | 2012-10-17 09:41:25 -0500 | [diff] [blame] | 1126 | int rc; |
Afzal Mohammed | 6b6c32f | 2012-08-30 12:53:23 -0700 | [diff] [blame] | 1127 | u32 l; |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 1128 | struct resource *res; |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 1129 | |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 1130 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1131 | if (res == NULL) |
| 1132 | return -ENOENT; |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 1133 | |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 1134 | phys_base = res->start; |
| 1135 | mem_size = resource_size(res); |
Kevin Hilman | 8d08436 | 2010-01-29 14:20:06 -0800 | [diff] [blame] | 1136 | |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 1137 | gpmc_base = devm_request_and_ioremap(&pdev->dev, res); |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 1138 | if (!gpmc_base) { |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 1139 | dev_err(&pdev->dev, "error: request memory / ioremap\n"); |
| 1140 | return -EADDRNOTAVAIL; |
| 1141 | } |
| 1142 | |
| 1143 | res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
| 1144 | if (res == NULL) |
| 1145 | dev_warn(&pdev->dev, "Failed to get resource: irq\n"); |
| 1146 | else |
| 1147 | gpmc_irq = res->start; |
| 1148 | |
| 1149 | gpmc_l3_clk = clk_get(&pdev->dev, "fck"); |
| 1150 | if (IS_ERR(gpmc_l3_clk)) { |
| 1151 | dev_err(&pdev->dev, "error: clk_get\n"); |
| 1152 | gpmc_irq = 0; |
| 1153 | return PTR_ERR(gpmc_l3_clk); |
Paul Walmsley | fd1dc87 | 2008-10-06 15:49:17 +0300 | [diff] [blame] | 1154 | } |
| 1155 | |
Rajendra Nayak | 4d7cb45 | 2012-09-22 02:24:16 -0600 | [diff] [blame] | 1156 | clk_prepare_enable(gpmc_l3_clk); |
Olof Johansson | 1daa8c1 | 2010-01-20 22:39:29 +0000 | [diff] [blame] | 1157 | |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 1158 | gpmc_dev = &pdev->dev; |
| 1159 | |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 1160 | l = gpmc_read_reg(GPMC_REVISION); |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 1161 | if (GPMC_REVISION_MAJOR(l) > 0x4) |
| 1162 | gpmc_capability = GPMC_HAS_WR_ACCESS | GPMC_HAS_WR_DATA_MUX_BUS; |
| 1163 | dev_info(gpmc_dev, "GPMC revision %d.%d\n", GPMC_REVISION_MAJOR(l), |
| 1164 | GPMC_REVISION_MINOR(l)); |
| 1165 | |
Jon Hunter | 8119024 | 2012-10-17 09:41:25 -0500 | [diff] [blame] | 1166 | rc = gpmc_mem_init(); |
| 1167 | if (IS_ERR_VALUE(rc)) { |
| 1168 | clk_disable_unprepare(gpmc_l3_clk); |
| 1169 | clk_put(gpmc_l3_clk); |
| 1170 | dev_err(gpmc_dev, "failed to reserve memory\n"); |
| 1171 | return rc; |
| 1172 | } |
Sukumar Ghorai | db97eb7d | 2011-01-28 15:42:05 +0530 | [diff] [blame] | 1173 | |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 1174 | if (IS_ERR_VALUE(gpmc_setup_irq())) |
| 1175 | dev_warn(gpmc_dev, "gpmc_setup_irq failed\n"); |
| 1176 | |
| 1177 | return 0; |
Sukumar Ghorai | db97eb7d | 2011-01-28 15:42:05 +0530 | [diff] [blame] | 1178 | } |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 1179 | |
Afzal Mohammed | 61687c6 | 2012-10-04 14:01:57 +0530 | [diff] [blame] | 1180 | static __devexit int gpmc_remove(struct platform_device *pdev) |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 1181 | { |
| 1182 | gpmc_free_irq(); |
| 1183 | gpmc_mem_exit(); |
| 1184 | gpmc_dev = NULL; |
| 1185 | return 0; |
| 1186 | } |
| 1187 | |
| 1188 | static struct platform_driver gpmc_driver = { |
| 1189 | .probe = gpmc_probe, |
| 1190 | .remove = __devexit_p(gpmc_remove), |
| 1191 | .driver = { |
| 1192 | .name = DEVICE_NAME, |
| 1193 | .owner = THIS_MODULE, |
| 1194 | }, |
| 1195 | }; |
| 1196 | |
| 1197 | static __init int gpmc_init(void) |
| 1198 | { |
| 1199 | return platform_driver_register(&gpmc_driver); |
| 1200 | } |
| 1201 | |
| 1202 | static __exit void gpmc_exit(void) |
| 1203 | { |
| 1204 | platform_driver_unregister(&gpmc_driver); |
| 1205 | |
| 1206 | } |
| 1207 | |
Sukumar Ghorai | db97eb7d | 2011-01-28 15:42:05 +0530 | [diff] [blame] | 1208 | postcore_initcall(gpmc_init); |
Afzal Mohammed | da49687 | 2012-09-23 17:28:25 -0600 | [diff] [blame] | 1209 | module_exit(gpmc_exit); |
Sukumar Ghorai | db97eb7d | 2011-01-28 15:42:05 +0530 | [diff] [blame] | 1210 | |
Afzal Mohammed | 4be48fd | 2012-09-23 17:28:24 -0600 | [diff] [blame] | 1211 | static int __init omap_gpmc_init(void) |
| 1212 | { |
| 1213 | struct omap_hwmod *oh; |
| 1214 | struct platform_device *pdev; |
| 1215 | char *oh_name = "gpmc"; |
| 1216 | |
| 1217 | oh = omap_hwmod_lookup(oh_name); |
| 1218 | if (!oh) { |
| 1219 | pr_err("Could not look up %s\n", oh_name); |
| 1220 | return -ENODEV; |
| 1221 | } |
| 1222 | |
| 1223 | pdev = omap_device_build(DEVICE_NAME, -1, oh, NULL, 0, NULL, 0, 0); |
| 1224 | WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name); |
| 1225 | |
| 1226 | return IS_ERR(pdev) ? PTR_ERR(pdev) : 0; |
| 1227 | } |
| 1228 | postcore_initcall(omap_gpmc_init); |
| 1229 | |
Sukumar Ghorai | db97eb7d | 2011-01-28 15:42:05 +0530 | [diff] [blame] | 1230 | static irqreturn_t gpmc_handle_irq(int irq, void *dev) |
| 1231 | { |
Afzal Mohammed | 6b6c32f | 2012-08-30 12:53:23 -0700 | [diff] [blame] | 1232 | int i; |
| 1233 | u32 regval; |
Sukumar Ghorai | db97eb7d | 2011-01-28 15:42:05 +0530 | [diff] [blame] | 1234 | |
Afzal Mohammed | 6b6c32f | 2012-08-30 12:53:23 -0700 | [diff] [blame] | 1235 | regval = gpmc_read_reg(GPMC_IRQSTATUS); |
| 1236 | |
| 1237 | if (!regval) |
| 1238 | return IRQ_NONE; |
| 1239 | |
| 1240 | for (i = 0; i < GPMC_NR_IRQ; i++) |
| 1241 | if (regval & gpmc_client_irq[i].bitmask) |
| 1242 | generic_handle_irq(gpmc_client_irq[i].irq); |
| 1243 | |
| 1244 | gpmc_write_reg(GPMC_IRQSTATUS, regval); |
Sukumar Ghorai | db97eb7d | 2011-01-28 15:42:05 +0530 | [diff] [blame] | 1245 | |
| 1246 | return IRQ_HANDLED; |
Juha Yrjola | 4bbbc1a | 2006-06-26 16:16:16 -0700 | [diff] [blame] | 1247 | } |
Rajendra Nayak | a2d3e7b | 2008-09-26 17:47:33 +0530 | [diff] [blame] | 1248 | |
| 1249 | #ifdef CONFIG_ARCH_OMAP3 |
| 1250 | static struct omap3_gpmc_regs gpmc_context; |
| 1251 | |
Felipe Balbi | b2fa3b7 | 2010-02-15 10:03:33 -0800 | [diff] [blame] | 1252 | void omap3_gpmc_save_context(void) |
Rajendra Nayak | a2d3e7b | 2008-09-26 17:47:33 +0530 | [diff] [blame] | 1253 | { |
| 1254 | int i; |
Felipe Balbi | b2fa3b7 | 2010-02-15 10:03:33 -0800 | [diff] [blame] | 1255 | |
Rajendra Nayak | a2d3e7b | 2008-09-26 17:47:33 +0530 | [diff] [blame] | 1256 | gpmc_context.sysconfig = gpmc_read_reg(GPMC_SYSCONFIG); |
| 1257 | gpmc_context.irqenable = gpmc_read_reg(GPMC_IRQENABLE); |
| 1258 | gpmc_context.timeout_ctrl = gpmc_read_reg(GPMC_TIMEOUT_CONTROL); |
| 1259 | gpmc_context.config = gpmc_read_reg(GPMC_CONFIG); |
| 1260 | gpmc_context.prefetch_config1 = gpmc_read_reg(GPMC_PREFETCH_CONFIG1); |
| 1261 | gpmc_context.prefetch_config2 = gpmc_read_reg(GPMC_PREFETCH_CONFIG2); |
| 1262 | gpmc_context.prefetch_control = gpmc_read_reg(GPMC_PREFETCH_CONTROL); |
| 1263 | for (i = 0; i < GPMC_CS_NUM; i++) { |
| 1264 | gpmc_context.cs_context[i].is_valid = gpmc_cs_mem_enabled(i); |
| 1265 | if (gpmc_context.cs_context[i].is_valid) { |
| 1266 | gpmc_context.cs_context[i].config1 = |
| 1267 | gpmc_cs_read_reg(i, GPMC_CS_CONFIG1); |
| 1268 | gpmc_context.cs_context[i].config2 = |
| 1269 | gpmc_cs_read_reg(i, GPMC_CS_CONFIG2); |
| 1270 | gpmc_context.cs_context[i].config3 = |
| 1271 | gpmc_cs_read_reg(i, GPMC_CS_CONFIG3); |
| 1272 | gpmc_context.cs_context[i].config4 = |
| 1273 | gpmc_cs_read_reg(i, GPMC_CS_CONFIG4); |
| 1274 | gpmc_context.cs_context[i].config5 = |
| 1275 | gpmc_cs_read_reg(i, GPMC_CS_CONFIG5); |
| 1276 | gpmc_context.cs_context[i].config6 = |
| 1277 | gpmc_cs_read_reg(i, GPMC_CS_CONFIG6); |
| 1278 | gpmc_context.cs_context[i].config7 = |
| 1279 | gpmc_cs_read_reg(i, GPMC_CS_CONFIG7); |
| 1280 | } |
| 1281 | } |
| 1282 | } |
| 1283 | |
Felipe Balbi | b2fa3b7 | 2010-02-15 10:03:33 -0800 | [diff] [blame] | 1284 | void omap3_gpmc_restore_context(void) |
Rajendra Nayak | a2d3e7b | 2008-09-26 17:47:33 +0530 | [diff] [blame] | 1285 | { |
| 1286 | int i; |
Felipe Balbi | b2fa3b7 | 2010-02-15 10:03:33 -0800 | [diff] [blame] | 1287 | |
Rajendra Nayak | a2d3e7b | 2008-09-26 17:47:33 +0530 | [diff] [blame] | 1288 | gpmc_write_reg(GPMC_SYSCONFIG, gpmc_context.sysconfig); |
| 1289 | gpmc_write_reg(GPMC_IRQENABLE, gpmc_context.irqenable); |
| 1290 | gpmc_write_reg(GPMC_TIMEOUT_CONTROL, gpmc_context.timeout_ctrl); |
| 1291 | gpmc_write_reg(GPMC_CONFIG, gpmc_context.config); |
| 1292 | gpmc_write_reg(GPMC_PREFETCH_CONFIG1, gpmc_context.prefetch_config1); |
| 1293 | gpmc_write_reg(GPMC_PREFETCH_CONFIG2, gpmc_context.prefetch_config2); |
| 1294 | gpmc_write_reg(GPMC_PREFETCH_CONTROL, gpmc_context.prefetch_control); |
| 1295 | for (i = 0; i < GPMC_CS_NUM; i++) { |
| 1296 | if (gpmc_context.cs_context[i].is_valid) { |
| 1297 | gpmc_cs_write_reg(i, GPMC_CS_CONFIG1, |
| 1298 | gpmc_context.cs_context[i].config1); |
| 1299 | gpmc_cs_write_reg(i, GPMC_CS_CONFIG2, |
| 1300 | gpmc_context.cs_context[i].config2); |
| 1301 | gpmc_cs_write_reg(i, GPMC_CS_CONFIG3, |
| 1302 | gpmc_context.cs_context[i].config3); |
| 1303 | gpmc_cs_write_reg(i, GPMC_CS_CONFIG4, |
| 1304 | gpmc_context.cs_context[i].config4); |
| 1305 | gpmc_cs_write_reg(i, GPMC_CS_CONFIG5, |
| 1306 | gpmc_context.cs_context[i].config5); |
| 1307 | gpmc_cs_write_reg(i, GPMC_CS_CONFIG6, |
| 1308 | gpmc_context.cs_context[i].config6); |
| 1309 | gpmc_cs_write_reg(i, GPMC_CS_CONFIG7, |
| 1310 | gpmc_context.cs_context[i].config7); |
| 1311 | } |
| 1312 | } |
| 1313 | } |
| 1314 | #endif /* CONFIG_ARCH_OMAP3 */ |