diff options
author | Rafał Miłecki <zajec5@gmail.com> | 2014-08-19 03:14:16 -0400 |
---|---|---|
committer | Brian Norris <computersforpeace@gmail.com> | 2014-09-18 02:25:01 -0400 |
commit | dfbd7dda0b8dc0bb2b255d173f4e8ffbe24c5764 (patch) | |
tree | 4af3ed65752f3e128d662a24563ab971d5b4253f /drivers/mtd/nand | |
parent | 90de63324f0abc84f8c1ba56b2848c338cfda1cd (diff) |
mtd: bcm47xxnflash: NAND_CMD_RESET support
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/nand')
-rw-r--r-- | drivers/mtd/nand/bcm47xxnflash/ops_bcm4706.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/drivers/mtd/nand/bcm47xxnflash/ops_bcm4706.c b/drivers/mtd/nand/bcm47xxnflash/ops_bcm4706.c index 30df67a914b2..82844efcf189 100644 --- a/drivers/mtd/nand/bcm47xxnflash/ops_bcm4706.c +++ b/drivers/mtd/nand/bcm47xxnflash/ops_bcm4706.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/module.h> | 14 | #include <linux/module.h> |
15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
16 | #include <linux/slab.h> | 16 | #include <linux/slab.h> |
17 | #include <linux/delay.h> | ||
17 | #include <linux/bcma/bcma.h> | 18 | #include <linux/bcma/bcma.h> |
18 | 19 | ||
19 | /* Broadcom uses 1'000'000 but it seems to be too many. Tests on WNDR4500 has | 20 | /* Broadcom uses 1'000'000 but it seems to be too many. Tests on WNDR4500 has |
@@ -226,7 +227,10 @@ static void bcm47xxnflash_ops_bcm4706_cmdfunc(struct mtd_info *mtd, | |||
226 | 227 | ||
227 | switch (command) { | 228 | switch (command) { |
228 | case NAND_CMD_RESET: | 229 | case NAND_CMD_RESET: |
229 | pr_warn("Chip reset not implemented yet\n"); | 230 | nand_chip->cmd_ctrl(mtd, command, NAND_CTRL_CLE); |
231 | |||
232 | ndelay(100); | ||
233 | nand_wait_ready(mtd); | ||
230 | break; | 234 | break; |
231 | case NAND_CMD_READID: | 235 | case NAND_CMD_READID: |
232 | ctlcode = NCTL_CSA | 0x01000000 | NCTL_CMD1W | NCTL_CMD0; | 236 | ctlcode = NCTL_CSA | 0x01000000 | NCTL_CMD1W | NCTL_CMD0; |