blob: 16dcd1c76baf58971f37b6975b0a82a8d5f15d56 [file] [log] [blame]
Alexey Korolevc6826472008-12-16 18:20:03 +00001/*
2 * LPDDR flash memory device operations. This module provides read, write,
3 * erase, lock/unlock support for LPDDR flash memories
4 * (C) 2008 Korolev Alexey <akorolev@infradead.org>
5 * (C) 2008 Vasiliy Leonenko <vasiliy.leonenko@gmail.com>
Lucas De Marchi25985ed2011-03-30 22:57:33 -03006 * Many thanks to Roman Borisov for initial enabling
Alexey Korolevc6826472008-12-16 18:20:03 +00007 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * as published by the Free Software Foundation; either version 2
11 * of the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
21 * 02110-1301, USA.
22 * TODO:
23 * Implement VPP management
24 * Implement XIP support
25 * Implement OTP support
26 */
27#include <linux/mtd/pfow.h>
28#include <linux/mtd/qinfo.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
Alexey Korolevc6826472008-12-16 18:20:03 +000030
31static int lpddr_read(struct mtd_info *mtd, loff_t adr, size_t len,
32 size_t *retlen, u_char *buf);
33static int lpddr_write_buffers(struct mtd_info *mtd, loff_t to,
34 size_t len, size_t *retlen, const u_char *buf);
35static int lpddr_writev(struct mtd_info *mtd, const struct kvec *vecs,
36 unsigned long count, loff_t to, size_t *retlen);
37static int lpddr_erase(struct mtd_info *mtd, struct erase_info *instr);
38static int lpddr_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
39static int lpddr_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len);
40static int lpddr_point(struct mtd_info *mtd, loff_t adr, size_t len,
41 size_t *retlen, void **mtdbuf, resource_size_t *phys);
42static void lpddr_unpoint(struct mtd_info *mtd, loff_t adr, size_t len);
43static int get_chip(struct map_info *map, struct flchip *chip, int mode);
44static int chip_ready(struct map_info *map, struct flchip *chip, int mode);
45static void put_chip(struct map_info *map, struct flchip *chip);
46
47struct mtd_info *lpddr_cmdset(struct map_info *map)
48{
49 struct lpddr_private *lpddr = map->fldrv_priv;
50 struct flchip_shared *shared;
51 struct flchip *chip;
52 struct mtd_info *mtd;
53 int numchips;
54 int i, j;
55
56 mtd = kzalloc(sizeof(*mtd), GFP_KERNEL);
57 if (!mtd) {
58 printk(KERN_ERR "Failed to allocate memory for MTD device\n");
59 return NULL;
60 }
61 mtd->priv = map;
62 mtd->type = MTD_NORFLASH;
63
64 /* Fill in the default mtd operations */
65 mtd->read = lpddr_read;
66 mtd->type = MTD_NORFLASH;
67 mtd->flags = MTD_CAP_NORFLASH;
68 mtd->flags &= ~MTD_BIT_WRITEABLE;
69 mtd->erase = lpddr_erase;
70 mtd->write = lpddr_write_buffers;
71 mtd->writev = lpddr_writev;
72 mtd->read_oob = NULL;
73 mtd->write_oob = NULL;
74 mtd->sync = NULL;
75 mtd->lock = lpddr_lock;
76 mtd->unlock = lpddr_unlock;
77 mtd->suspend = NULL;
78 mtd->resume = NULL;
79 if (map_is_linear(map)) {
80 mtd->point = lpddr_point;
81 mtd->unpoint = lpddr_unpoint;
82 }
83 mtd->block_isbad = NULL;
84 mtd->block_markbad = NULL;
85 mtd->size = 1 << lpddr->qinfo->DevSizeShift;
86 mtd->erasesize = 1 << lpddr->qinfo->UniformBlockSizeShift;
87 mtd->writesize = 1 << lpddr->qinfo->BufSizeShift;
88
89 shared = kmalloc(sizeof(struct flchip_shared) * lpddr->numchips,
90 GFP_KERNEL);
91 if (!shared) {
92 kfree(lpddr);
93 kfree(mtd);
94 return NULL;
95 }
96
97 chip = &lpddr->chips[0];
98 numchips = lpddr->numchips / lpddr->qinfo->HWPartsNum;
99 for (i = 0; i < numchips; i++) {
100 shared[i].writing = shared[i].erasing = NULL;
Stefani Seibold8ae66412010-08-05 09:19:26 +0200101 mutex_init(&shared[i].lock);
Alexey Korolevc6826472008-12-16 18:20:03 +0000102 for (j = 0; j < lpddr->qinfo->HWPartsNum; j++) {
103 *chip = lpddr->chips[i];
104 chip->start += j << lpddr->chipshift;
105 chip->oldstate = chip->state = FL_READY;
106 chip->priv = &shared[i];
107 /* those should be reset too since
108 they create memory references. */
109 init_waitqueue_head(&chip->wq);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200110 mutex_init(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000111 chip++;
112 }
113 }
114
115 return mtd;
116}
117EXPORT_SYMBOL(lpddr_cmdset);
118
119static int wait_for_ready(struct map_info *map, struct flchip *chip,
120 unsigned int chip_op_time)
121{
122 unsigned int timeo, reset_timeo, sleep_time;
123 unsigned int dsr;
124 flstate_t chip_state = chip->state;
125 int ret = 0;
126
127 /* set our timeout to 8 times the expected delay */
128 timeo = chip_op_time * 8;
129 if (!timeo)
130 timeo = 500000;
131 reset_timeo = timeo;
132 sleep_time = chip_op_time / 2;
133
134 for (;;) {
135 dsr = CMDVAL(map_read(map, map->pfow_base + PFOW_DSR));
136 if (dsr & DSR_READY_STATUS)
137 break;
138 if (!timeo) {
139 printk(KERN_ERR "%s: Flash timeout error state %d \n",
140 map->name, chip_state);
141 ret = -ETIME;
142 break;
143 }
144
145 /* OK Still waiting. Drop the lock, wait a while and retry. */
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200146 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000147 if (sleep_time >= 1000000/HZ) {
148 /*
149 * Half of the normal delay still remaining
150 * can be performed with a sleeping delay instead
151 * of busy waiting.
152 */
153 msleep(sleep_time/1000);
154 timeo -= sleep_time;
155 sleep_time = 1000000/HZ;
156 } else {
157 udelay(1);
158 cond_resched();
159 timeo--;
160 }
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200161 mutex_lock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000162
163 while (chip->state != chip_state) {
164 /* Someone's suspended the operation: sleep */
165 DECLARE_WAITQUEUE(wait, current);
166 set_current_state(TASK_UNINTERRUPTIBLE);
167 add_wait_queue(&chip->wq, &wait);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200168 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000169 schedule();
170 remove_wait_queue(&chip->wq, &wait);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200171 mutex_lock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000172 }
173 if (chip->erase_suspended || chip->write_suspended) {
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300174 /* Suspend has occurred while sleep: reset timeout */
Alexey Korolevc6826472008-12-16 18:20:03 +0000175 timeo = reset_timeo;
176 chip->erase_suspended = chip->write_suspended = 0;
177 }
178 }
179 /* check status for errors */
180 if (dsr & DSR_ERR) {
181 /* Clear DSR*/
182 map_write(map, CMD(~(DSR_ERR)), map->pfow_base + PFOW_DSR);
183 printk(KERN_WARNING"%s: Bad status on wait: 0x%x \n",
184 map->name, dsr);
185 print_drs_error(dsr);
186 ret = -EIO;
187 }
188 chip->state = FL_READY;
189 return ret;
190}
191
192static int get_chip(struct map_info *map, struct flchip *chip, int mode)
193{
194 int ret;
195 DECLARE_WAITQUEUE(wait, current);
196
197 retry:
198 if (chip->priv && (mode == FL_WRITING || mode == FL_ERASING)
199 && chip->state != FL_SYNCING) {
200 /*
201 * OK. We have possibility for contension on the write/erase
202 * operations which are global to the real chip and not per
203 * partition. So let's fight it over in the partition which
204 * currently has authority on the operation.
205 *
206 * The rules are as follows:
207 *
208 * - any write operation must own shared->writing.
209 *
210 * - any erase operation must own _both_ shared->writing and
211 * shared->erasing.
212 *
213 * - contension arbitration is handled in the owner's context.
214 *
215 * The 'shared' struct can be read and/or written only when
216 * its lock is taken.
217 */
218 struct flchip_shared *shared = chip->priv;
219 struct flchip *contender;
Stefani Seibold8ae66412010-08-05 09:19:26 +0200220 mutex_lock(&shared->lock);
Alexey Korolevc6826472008-12-16 18:20:03 +0000221 contender = shared->writing;
222 if (contender && contender != chip) {
223 /*
224 * The engine to perform desired operation on this
225 * partition is already in use by someone else.
226 * Let's fight over it in the context of the chip
227 * currently using it. If it is possible to suspend,
228 * that other partition will do just that, otherwise
229 * it'll happily send us to sleep. In any case, when
230 * get_chip returns success we're clear to go ahead.
231 */
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200232 ret = mutex_trylock(&contender->mutex);
Stefani Seibold8ae66412010-08-05 09:19:26 +0200233 mutex_unlock(&shared->lock);
Alexey Korolevc6826472008-12-16 18:20:03 +0000234 if (!ret)
235 goto retry;
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200236 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000237 ret = chip_ready(map, contender, mode);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200238 mutex_lock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000239
240 if (ret == -EAGAIN) {
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200241 mutex_unlock(&contender->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000242 goto retry;
243 }
244 if (ret) {
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200245 mutex_unlock(&contender->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000246 return ret;
247 }
Stefani Seibold8ae66412010-08-05 09:19:26 +0200248 mutex_lock(&shared->lock);
Alexey Korolevc6826472008-12-16 18:20:03 +0000249
250 /* We should not own chip if it is already in FL_SYNCING
251 * state. Put contender and retry. */
252 if (chip->state == FL_SYNCING) {
253 put_chip(map, contender);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200254 mutex_unlock(&contender->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000255 goto retry;
256 }
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200257 mutex_unlock(&contender->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000258 }
259
260 /* Check if we have suspended erase on this chip.
261 Must sleep in such a case. */
262 if (mode == FL_ERASING && shared->erasing
263 && shared->erasing->oldstate == FL_ERASING) {
Stefani Seibold8ae66412010-08-05 09:19:26 +0200264 mutex_unlock(&shared->lock);
Alexey Korolevc6826472008-12-16 18:20:03 +0000265 set_current_state(TASK_UNINTERRUPTIBLE);
266 add_wait_queue(&chip->wq, &wait);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200267 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000268 schedule();
269 remove_wait_queue(&chip->wq, &wait);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200270 mutex_lock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000271 goto retry;
272 }
273
274 /* We now own it */
275 shared->writing = chip;
276 if (mode == FL_ERASING)
277 shared->erasing = chip;
Stefani Seibold8ae66412010-08-05 09:19:26 +0200278 mutex_unlock(&shared->lock);
Alexey Korolevc6826472008-12-16 18:20:03 +0000279 }
280
281 ret = chip_ready(map, chip, mode);
282 if (ret == -EAGAIN)
283 goto retry;
284
285 return ret;
286}
287
288static int chip_ready(struct map_info *map, struct flchip *chip, int mode)
289{
290 struct lpddr_private *lpddr = map->fldrv_priv;
291 int ret = 0;
292 DECLARE_WAITQUEUE(wait, current);
293
294 /* Prevent setting state FL_SYNCING for chip in suspended state. */
295 if (FL_SYNCING == mode && FL_READY != chip->oldstate)
296 goto sleep;
297
298 switch (chip->state) {
299 case FL_READY:
300 case FL_JEDEC_QUERY:
301 return 0;
302
303 case FL_ERASING:
304 if (!lpddr->qinfo->SuspEraseSupp ||
305 !(mode == FL_READY || mode == FL_POINT))
306 goto sleep;
307
308 map_write(map, CMD(LPDDR_SUSPEND),
309 map->pfow_base + PFOW_PROGRAM_ERASE_SUSPEND);
310 chip->oldstate = FL_ERASING;
311 chip->state = FL_ERASE_SUSPENDING;
312 ret = wait_for_ready(map, chip, 0);
313 if (ret) {
314 /* Oops. something got wrong. */
315 /* Resume and pretend we weren't here. */
Tadashi Abe100f2342011-05-19 15:58:15 +0900316 put_chip(map, chip);
Alexey Korolevc6826472008-12-16 18:20:03 +0000317 printk(KERN_ERR "%s: suspend operation failed."
318 "State may be wrong \n", map->name);
319 return -EIO;
320 }
321 chip->erase_suspended = 1;
322 chip->state = FL_READY;
323 return 0;
324 /* Erase suspend */
325 case FL_POINT:
326 /* Only if there's no operation suspended... */
327 if (mode == FL_READY && chip->oldstate == FL_READY)
328 return 0;
329
330 default:
331sleep:
332 set_current_state(TASK_UNINTERRUPTIBLE);
333 add_wait_queue(&chip->wq, &wait);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200334 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000335 schedule();
336 remove_wait_queue(&chip->wq, &wait);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200337 mutex_lock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000338 return -EAGAIN;
339 }
340}
341
342static void put_chip(struct map_info *map, struct flchip *chip)
343{
344 if (chip->priv) {
345 struct flchip_shared *shared = chip->priv;
Stefani Seibold8ae66412010-08-05 09:19:26 +0200346 mutex_lock(&shared->lock);
Alexey Korolevc6826472008-12-16 18:20:03 +0000347 if (shared->writing == chip && chip->oldstate == FL_READY) {
348 /* We own the ability to write, but we're done */
349 shared->writing = shared->erasing;
350 if (shared->writing && shared->writing != chip) {
351 /* give back the ownership */
352 struct flchip *loaner = shared->writing;
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200353 mutex_lock(&loaner->mutex);
Stefani Seibold8ae66412010-08-05 09:19:26 +0200354 mutex_unlock(&shared->lock);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200355 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000356 put_chip(map, loaner);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200357 mutex_lock(&chip->mutex);
358 mutex_unlock(&loaner->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000359 wake_up(&chip->wq);
360 return;
361 }
362 shared->erasing = NULL;
363 shared->writing = NULL;
364 } else if (shared->erasing == chip && shared->writing != chip) {
365 /*
366 * We own the ability to erase without the ability
367 * to write, which means the erase was suspended
368 * and some other partition is currently writing.
369 * Don't let the switch below mess things up since
370 * we don't have ownership to resume anything.
371 */
Stefani Seibold8ae66412010-08-05 09:19:26 +0200372 mutex_unlock(&shared->lock);
Alexey Korolevc6826472008-12-16 18:20:03 +0000373 wake_up(&chip->wq);
374 return;
375 }
Stefani Seibold8ae66412010-08-05 09:19:26 +0200376 mutex_unlock(&shared->lock);
Alexey Korolevc6826472008-12-16 18:20:03 +0000377 }
378
379 switch (chip->oldstate) {
380 case FL_ERASING:
381 chip->state = chip->oldstate;
382 map_write(map, CMD(LPDDR_RESUME),
383 map->pfow_base + PFOW_COMMAND_CODE);
384 map_write(map, CMD(LPDDR_START_EXECUTION),
385 map->pfow_base + PFOW_COMMAND_EXECUTE);
386 chip->oldstate = FL_READY;
387 chip->state = FL_ERASING;
388 break;
389 case FL_READY:
390 break;
391 default:
392 printk(KERN_ERR "%s: put_chip() called with oldstate %d!\n",
393 map->name, chip->oldstate);
394 }
395 wake_up(&chip->wq);
396}
397
398int do_write_buffer(struct map_info *map, struct flchip *chip,
399 unsigned long adr, const struct kvec **pvec,
400 unsigned long *pvec_seek, int len)
401{
402 struct lpddr_private *lpddr = map->fldrv_priv;
403 map_word datum;
404 int ret, wbufsize, word_gap, words;
405 const struct kvec *vec;
406 unsigned long vec_seek;
407 unsigned long prog_buf_ofs;
408
409 wbufsize = 1 << lpddr->qinfo->BufSizeShift;
410
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200411 mutex_lock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000412 ret = get_chip(map, chip, FL_WRITING);
413 if (ret) {
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200414 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000415 return ret;
416 }
417 /* Figure out the number of words to write */
418 word_gap = (-adr & (map_bankwidth(map)-1));
419 words = (len - word_gap + map_bankwidth(map) - 1) / map_bankwidth(map);
420 if (!word_gap) {
421 words--;
422 } else {
423 word_gap = map_bankwidth(map) - word_gap;
424 adr -= word_gap;
425 datum = map_word_ff(map);
426 }
427 /* Write data */
428 /* Get the program buffer offset from PFOW register data first*/
429 prog_buf_ofs = map->pfow_base + CMDVAL(map_read(map,
430 map->pfow_base + PFOW_PROGRAM_BUFFER_OFFSET));
431 vec = *pvec;
432 vec_seek = *pvec_seek;
433 do {
434 int n = map_bankwidth(map) - word_gap;
435
436 if (n > vec->iov_len - vec_seek)
437 n = vec->iov_len - vec_seek;
438 if (n > len)
439 n = len;
440
441 if (!word_gap && (len < map_bankwidth(map)))
442 datum = map_word_ff(map);
443
444 datum = map_word_load_partial(map, datum,
445 vec->iov_base + vec_seek, word_gap, n);
446
447 len -= n;
448 word_gap += n;
449 if (!len || word_gap == map_bankwidth(map)) {
450 map_write(map, datum, prog_buf_ofs);
451 prog_buf_ofs += map_bankwidth(map);
452 word_gap = 0;
453 }
454
455 vec_seek += n;
456 if (vec_seek == vec->iov_len) {
457 vec++;
458 vec_seek = 0;
459 }
460 } while (len);
461 *pvec = vec;
462 *pvec_seek = vec_seek;
463
464 /* GO GO GO */
465 send_pfow_command(map, LPDDR_BUFF_PROGRAM, adr, wbufsize, NULL);
466 chip->state = FL_WRITING;
467 ret = wait_for_ready(map, chip, (1<<lpddr->qinfo->ProgBufferTime));
468 if (ret) {
469 printk(KERN_WARNING"%s Buffer program error: %d at %lx; \n",
470 map->name, ret, adr);
471 goto out;
472 }
473
474 out: put_chip(map, chip);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200475 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000476 return ret;
477}
478
479int do_erase_oneblock(struct mtd_info *mtd, loff_t adr)
480{
481 struct map_info *map = mtd->priv;
482 struct lpddr_private *lpddr = map->fldrv_priv;
483 int chipnum = adr >> lpddr->chipshift;
484 struct flchip *chip = &lpddr->chips[chipnum];
485 int ret;
486
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200487 mutex_lock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000488 ret = get_chip(map, chip, FL_ERASING);
489 if (ret) {
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200490 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000491 return ret;
492 }
493 send_pfow_command(map, LPDDR_BLOCK_ERASE, adr, 0, NULL);
494 chip->state = FL_ERASING;
495 ret = wait_for_ready(map, chip, (1<<lpddr->qinfo->BlockEraseTime)*1000);
496 if (ret) {
497 printk(KERN_WARNING"%s Erase block error %d at : %llx\n",
498 map->name, ret, adr);
499 goto out;
500 }
501 out: put_chip(map, chip);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200502 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000503 return ret;
504}
505
506static int lpddr_read(struct mtd_info *mtd, loff_t adr, size_t len,
507 size_t *retlen, u_char *buf)
508{
509 struct map_info *map = mtd->priv;
510 struct lpddr_private *lpddr = map->fldrv_priv;
511 int chipnum = adr >> lpddr->chipshift;
512 struct flchip *chip = &lpddr->chips[chipnum];
513 int ret = 0;
514
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200515 mutex_lock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000516 ret = get_chip(map, chip, FL_READY);
517 if (ret) {
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200518 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000519 return ret;
520 }
521
522 map_copy_from(map, buf, adr, len);
523 *retlen = len;
524
525 put_chip(map, chip);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200526 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000527 return ret;
528}
529
530static int lpddr_point(struct mtd_info *mtd, loff_t adr, size_t len,
531 size_t *retlen, void **mtdbuf, resource_size_t *phys)
532{
533 struct map_info *map = mtd->priv;
534 struct lpddr_private *lpddr = map->fldrv_priv;
535 int chipnum = adr >> lpddr->chipshift;
536 unsigned long ofs, last_end = 0;
537 struct flchip *chip = &lpddr->chips[chipnum];
538 int ret = 0;
539
540 if (!map->virt || (adr + len > mtd->size))
541 return -EINVAL;
542
543 /* ofs: offset within the first chip that the first read should start */
544 ofs = adr - (chipnum << lpddr->chipshift);
545
546 *mtdbuf = (void *)map->virt + chip->start + ofs;
547 *retlen = 0;
548
549 while (len) {
550 unsigned long thislen;
551
552 if (chipnum >= lpddr->numchips)
553 break;
554
555 /* We cannot point across chips that are virtually disjoint */
556 if (!last_end)
557 last_end = chip->start;
558 else if (chip->start != last_end)
559 break;
560
561 if ((len + ofs - 1) >> lpddr->chipshift)
562 thislen = (1<<lpddr->chipshift) - ofs;
563 else
564 thislen = len;
565 /* get the chip */
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200566 mutex_lock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000567 ret = get_chip(map, chip, FL_POINT);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200568 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000569 if (ret)
570 break;
571
572 chip->state = FL_POINT;
573 chip->ref_point_counter++;
574 *retlen += thislen;
575 len -= thislen;
576
577 ofs = 0;
578 last_end += 1 << lpddr->chipshift;
579 chipnum++;
580 chip = &lpddr->chips[chipnum];
581 }
582 return 0;
583}
584
585static void lpddr_unpoint (struct mtd_info *mtd, loff_t adr, size_t len)
586{
587 struct map_info *map = mtd->priv;
588 struct lpddr_private *lpddr = map->fldrv_priv;
589 int chipnum = adr >> lpddr->chipshift;
590 unsigned long ofs;
591
592 /* ofs: offset within the first chip that the first read should start */
593 ofs = adr - (chipnum << lpddr->chipshift);
594
595 while (len) {
596 unsigned long thislen;
597 struct flchip *chip;
598
599 chip = &lpddr->chips[chipnum];
600 if (chipnum >= lpddr->numchips)
601 break;
602
603 if ((len + ofs - 1) >> lpddr->chipshift)
604 thislen = (1<<lpddr->chipshift) - ofs;
605 else
606 thislen = len;
607
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200608 mutex_lock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000609 if (chip->state == FL_POINT) {
610 chip->ref_point_counter--;
611 if (chip->ref_point_counter == 0)
612 chip->state = FL_READY;
613 } else
614 printk(KERN_WARNING "%s: Warning: unpoint called on non"
615 "pointed region\n", map->name);
616
617 put_chip(map, chip);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200618 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000619
620 len -= thislen;
621 ofs = 0;
622 chipnum++;
623 }
624}
625
626static int lpddr_write_buffers(struct mtd_info *mtd, loff_t to, size_t len,
627 size_t *retlen, const u_char *buf)
628{
629 struct kvec vec;
630
631 vec.iov_base = (void *) buf;
632 vec.iov_len = len;
633
634 return lpddr_writev(mtd, &vec, 1, to, retlen);
635}
636
637
638static int lpddr_writev(struct mtd_info *mtd, const struct kvec *vecs,
639 unsigned long count, loff_t to, size_t *retlen)
640{
641 struct map_info *map = mtd->priv;
642 struct lpddr_private *lpddr = map->fldrv_priv;
643 int ret = 0;
644 int chipnum;
645 unsigned long ofs, vec_seek, i;
646 int wbufsize = 1 << lpddr->qinfo->BufSizeShift;
647
648 size_t len = 0;
649
650 for (i = 0; i < count; i++)
651 len += vecs[i].iov_len;
652
653 *retlen = 0;
654 if (!len)
655 return 0;
656
657 chipnum = to >> lpddr->chipshift;
658
659 ofs = to;
660 vec_seek = 0;
661
662 do {
663 /* We must not cross write block boundaries */
664 int size = wbufsize - (ofs & (wbufsize-1));
665
666 if (size > len)
667 size = len;
668
669 ret = do_write_buffer(map, &lpddr->chips[chipnum],
670 ofs, &vecs, &vec_seek, size);
671 if (ret)
672 return ret;
673
674 ofs += size;
675 (*retlen) += size;
676 len -= size;
677
678 /* Be nice and reschedule with the chip in a usable
679 * state for other processes */
680 cond_resched();
681
682 } while (len);
683
684 return 0;
685}
686
687static int lpddr_erase(struct mtd_info *mtd, struct erase_info *instr)
688{
689 unsigned long ofs, len;
690 int ret;
691 struct map_info *map = mtd->priv;
692 struct lpddr_private *lpddr = map->fldrv_priv;
693 int size = 1 << lpddr->qinfo->UniformBlockSizeShift;
694
695 ofs = instr->addr;
696 len = instr->len;
697
698 if (ofs > mtd->size || (len + ofs) > mtd->size)
699 return -EINVAL;
700
701 while (len > 0) {
702 ret = do_erase_oneblock(mtd, ofs);
703 if (ret)
704 return ret;
705 ofs += size;
706 len -= size;
707 }
708 instr->state = MTD_ERASE_DONE;
709 mtd_erase_callback(instr);
710
711 return 0;
712}
713
714#define DO_XXLOCK_LOCK 1
715#define DO_XXLOCK_UNLOCK 2
716int do_xxlock(struct mtd_info *mtd, loff_t adr, uint32_t len, int thunk)
717{
718 int ret = 0;
719 struct map_info *map = mtd->priv;
720 struct lpddr_private *lpddr = map->fldrv_priv;
721 int chipnum = adr >> lpddr->chipshift;
722 struct flchip *chip = &lpddr->chips[chipnum];
723
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200724 mutex_lock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000725 ret = get_chip(map, chip, FL_LOCKING);
726 if (ret) {
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200727 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000728 return ret;
729 }
730
731 if (thunk == DO_XXLOCK_LOCK) {
732 send_pfow_command(map, LPDDR_LOCK_BLOCK, adr, adr + len, NULL);
733 chip->state = FL_LOCKING;
734 } else if (thunk == DO_XXLOCK_UNLOCK) {
735 send_pfow_command(map, LPDDR_UNLOCK_BLOCK, adr, adr + len, NULL);
736 chip->state = FL_UNLOCKING;
737 } else
738 BUG();
739
740 ret = wait_for_ready(map, chip, 1);
741 if (ret) {
742 printk(KERN_ERR "%s: block unlock error status %d \n",
743 map->name, ret);
744 goto out;
745 }
746out: put_chip(map, chip);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200747 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000748 return ret;
749}
750
751static int lpddr_lock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
752{
753 return do_xxlock(mtd, ofs, len, DO_XXLOCK_LOCK);
754}
755
756static int lpddr_unlock(struct mtd_info *mtd, loff_t ofs, uint64_t len)
757{
758 return do_xxlock(mtd, ofs, len, DO_XXLOCK_UNLOCK);
759}
760
761int word_program(struct map_info *map, loff_t adr, uint32_t curval)
762{
763 int ret;
764 struct lpddr_private *lpddr = map->fldrv_priv;
765 int chipnum = adr >> lpddr->chipshift;
766 struct flchip *chip = &lpddr->chips[chipnum];
767
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200768 mutex_lock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000769 ret = get_chip(map, chip, FL_WRITING);
770 if (ret) {
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200771 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000772 return ret;
773 }
774
775 send_pfow_command(map, LPDDR_WORD_PROGRAM, adr, 0x00, (map_word *)&curval);
776
777 ret = wait_for_ready(map, chip, (1<<lpddr->qinfo->SingleWordProgTime));
778 if (ret) {
779 printk(KERN_WARNING"%s word_program error at: %llx; val: %x\n",
780 map->name, adr, curval);
781 goto out;
782 }
783
784out: put_chip(map, chip);
Stefani Seiboldc4e77372010-04-18 22:46:44 +0200785 mutex_unlock(&chip->mutex);
Alexey Korolevc6826472008-12-16 18:20:03 +0000786 return ret;
787}
788
789MODULE_LICENSE("GPL");
790MODULE_AUTHOR("Alexey Korolev <akorolev@infradead.org>");
791MODULE_DESCRIPTION("MTD driver for LPDDR flash chips");