]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mtd: nand: pxa3xx: Split FIFO size from to-be-read FIFO count
authorEzequiel Garcia <ezequiel.garcia@free-electrons.com>
Thu, 7 Nov 2013 15:17:16 +0000 (12:17 -0300)
committerBrian Norris <computersforpeace@gmail.com>
Fri, 3 Jan 2014 19:22:11 +0000 (11:22 -0800)
Introduce a fifo_size field to represent the size of the controller's
FIFO buffer, and use it to distinguish that size from the amount
of data bytes to be read from the FIFO.

This is important to support devices with pages larger than the
controller's internal FIFO, that need to read the pages in FIFO-sized
chunks.

In particular, the current code is at least confusing, for it mixes
all the different sizes involved: FIFO size, page size and data size.

This commit starts the cleaning by removing the info->page_size field
that is not currently used. The host->page_size field should also
be removed and use always mtd->writesize instead. Follow up commits
will clean this up.

Signed-off-by: Ezequiel Garcia <ezequiel.garcia@free-electrons.com>
Tested-by: Daniel Mack <zonque@gmail.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
drivers/mtd/nand/pxa3xx_nand.c

index 5f0265de22bcf197a81b99d467ea9a30c405a3f3..d6e96210c25122b48ea71a8aed6a01ddf6d255cc 100644 (file)
@@ -201,8 +201,8 @@ struct pxa3xx_nand_info {
        int                     use_spare;      /* use spare ? */
        int                     is_ready;
 
-       unsigned int            page_size;      /* page size of attached chip */
-       unsigned int            data_size;      /* data size in FIFO */
+       unsigned int            fifo_size;      /* max. data size in the FIFO */
+       unsigned int            data_size;      /* data to be read from FIFO */
        unsigned int            oob_size;
        int                     retcode;
 
@@ -303,16 +303,15 @@ static void pxa3xx_nand_set_timing(struct pxa3xx_nand_host *host,
 
 static void pxa3xx_set_datasize(struct pxa3xx_nand_info *info)
 {
-       struct pxa3xx_nand_host *host = info->host[info->cs];
        int oob_enable = info->reg_ndcr & NDCR_SPARE_EN;
 
-       info->data_size = host->page_size;
+       info->data_size = info->fifo_size;
        if (!oob_enable) {
                info->oob_size = 0;
                return;
        }
 
-       switch (host->page_size) {
+       switch (info->fifo_size) {
        case 2048:
                info->oob_size = (info->use_ecc) ? 40 : 64;
                break;
@@ -929,9 +928,12 @@ static int pxa3xx_nand_detect_config(struct pxa3xx_nand_info *info)
        uint32_t ndcr = nand_readl(info, NDCR);
 
        if (ndcr & NDCR_PAGE_SZ) {
+               /* Controller's FIFO size */
+               info->fifo_size = 2048;
                host->page_size = 2048;
                host->read_id_bytes = 4;
        } else {
+               info->fifo_size = 512;
                host->page_size = 512;
                host->read_id_bytes = 2;
        }