Skip to content

Commit

Permalink
mxc_nand: remove TROP_US_DELAY
Browse files Browse the repository at this point in the history
wait_op_done is only called with the same timeout, so
code the timeout into the function itself.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
  • Loading branch information
Sascha Hauer committed Nov 12, 2009
1 parent f137205 commit c110eaf
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions drivers/mtd/nand/mxc_nand.c
Original file line number Diff line number Diff line change
Expand Up @@ -118,9 +118,6 @@ struct mxc_nand_host {
int spare_len;
};

/* Define delays in microsec for NAND device operations */
#define TROP_US_DELAY 2000

/* OOB placement block for use with hardware ecc generation */
static struct nand_ecclayout nandv1_hw_eccoob_smallpage = {
.eccbytes = 5,
Expand Down Expand Up @@ -185,10 +182,10 @@ static irqreturn_t mxc_nfc_irq(int irq, void *dev_id)
/* This function polls the NANDFC to wait for the basic operation to
* complete by checking the INT bit of config2 register.
*/
static void wait_op_done(struct mxc_nand_host *host, int max_retries,
int useirq)
static void wait_op_done(struct mxc_nand_host *host, int useirq)
{
uint32_t tmp;
int max_retries = 2000;

if (useirq) {
if ((readw(host->regs + NFC_CONFIG2) & NFC_INT) == 0) {
Expand Down Expand Up @@ -230,7 +227,7 @@ static void send_cmd(struct mxc_nand_host *host, uint16_t cmd, int useirq)
writew(NFC_CMD, host->regs + NFC_CONFIG2);

/* Wait for operation to complete */
wait_op_done(host, TROP_US_DELAY, useirq);
wait_op_done(host, useirq);
}

/* This function sends an address (or partial address) to the
Expand All @@ -244,7 +241,7 @@ static void send_addr(struct mxc_nand_host *host, uint16_t addr, int islast)
writew(NFC_ADDR, host->regs + NFC_CONFIG2);

/* Wait for operation to complete */
wait_op_done(host, TROP_US_DELAY, islast);
wait_op_done(host, islast);
}

static void send_page(struct mtd_info *mtd, unsigned int ops)
Expand All @@ -266,7 +263,7 @@ static void send_page(struct mtd_info *mtd, unsigned int ops)
writew(ops, host->regs + NFC_CONFIG2);

/* Wait for operation to complete */
wait_op_done(host, TROP_US_DELAY, true);
wait_op_done(host, true);
}
}

Expand All @@ -281,7 +278,7 @@ static void send_read_id(struct mxc_nand_host *host)
writew(NFC_ID, host->regs + NFC_CONFIG2);

/* Wait for operation to complete */
wait_op_done(host, TROP_US_DELAY, true);
wait_op_done(host, true);

if (this->options & NAND_BUSWIDTH_16) {
void __iomem *main_buf = host->main_area0;
Expand Down Expand Up @@ -313,7 +310,7 @@ static uint16_t get_dev_status(struct mxc_nand_host *host)
writew(NFC_STATUS, host->regs + NFC_CONFIG2);

/* Wait for operation to complete */
wait_op_done(host, TROP_US_DELAY, true);
wait_op_done(host, true);

/* Status is placed in first word of main buffer */
/* get status, then recovery area 1 data */
Expand Down

0 comments on commit c110eaf

Please sign in to comment.