Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 49141
b: refs/heads/master
c: 81f38e1
h: refs/heads/master
i:
  49139: 5a9238c
v: v3
  • Loading branch information
Adrian Hunter authored and Kyungmin Park committed Feb 7, 2007
1 parent 426a01b commit b0fe02e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 12 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 52e4200a6da2d98c537b95f7c502ddadf96a6934
refs/heads/master: 81f38e11233dae671c0673bbdcea01194b75d68f
20 changes: 9 additions & 11 deletions trunk/drivers/mtd/onenand/onenand_base.c
Original file line number Diff line number Diff line change
Expand Up @@ -1051,40 +1051,37 @@ static int onenand_write(struct mtd_info *mtd, loff_t to, size_t len,
}

column = to & (mtd->writesize - 1);
subpage = column || (len & (mtd->writesize - 1));

/* Grab the lock and see if the device is available */
onenand_get_device(mtd, FL_WRITING);

/* Loop until all data write */
while (written < len) {
int bytes = mtd->writesize;
int thislen = min_t(int, bytes, len - written);
int thislen = min_t(int, mtd->writesize - column, len - written);
u_char *wbuf = (u_char *) buf;

cond_resched();

this->command(mtd, ONENAND_CMD_BUFFERRAM, to, bytes);
this->command(mtd, ONENAND_CMD_BUFFERRAM, to, thislen);

/* Partial page write */
subpage = thislen < mtd->writesize;
if (subpage) {
bytes = min_t(int, bytes - column, (int) len);
memset(this->page_buf, 0xff, mtd->writesize);
memcpy(this->page_buf + column, buf, bytes);
memcpy(this->page_buf + column, buf, thislen);
wbuf = this->page_buf;
/* Even though partial write, we need page size */
thislen = mtd->writesize;
}

this->write_bufferram(mtd, ONENAND_DATARAM, wbuf, 0, thislen);
this->write_bufferram(mtd, ONENAND_DATARAM, wbuf, 0, mtd->writesize);
this->write_bufferram(mtd, ONENAND_SPARERAM, ffchars, 0, mtd->oobsize);

this->command(mtd, ONENAND_CMD_PROG, to, mtd->writesize);

ret = this->wait(mtd, FL_WRITING);

/* In partial page write we don't update bufferram */
onenand_update_bufferram(mtd, to, !subpage);
onenand_update_bufferram(mtd, to, !ret && !subpage);

ret = this->wait(mtd, FL_WRITING);
if (ret) {
DEBUG(MTD_DEBUG_LEVEL0, "onenand_write: write filaed %d\n", ret);
break;
Expand All @@ -1098,6 +1095,7 @@ static int onenand_write(struct mtd_info *mtd, loff_t to, size_t len,
}

written += thislen;

if (written == len)
break;

Expand Down

0 comments on commit b0fe02e

Please sign in to comment.