Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v4.6-rc5 886 lines 24 kB view raw
1/* 2 * Hisilicon NAND Flash controller driver 3 * 4 * Copyright © 2012-2014 HiSilicon Technologies Co., Ltd. 5 * http://www.hisilicon.com 6 * 7 * Author: Zhou Wang <wangzhou.bry@gmail.com> 8 * The initial developer of the original code is Zhiyong Cai 9 * <caizhiyong@huawei.com> 10 * 11 * This program is free software; you can redistribute it and/or modify 12 * it under the terms of the GNU General Public License as published by 13 * the Free Software Foundation; either version 2 of the License, or 14 * (at your option) any later version. 15 * 16 * This program is distributed in the hope that it will be useful, 17 * but WITHOUT ANY WARRANTY; without even the implied warranty of 18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 19 * GNU General Public License for more details. 20 */ 21#include <linux/of.h> 22#include <linux/of_mtd.h> 23#include <linux/mtd/mtd.h> 24#include <linux/sizes.h> 25#include <linux/clk.h> 26#include <linux/slab.h> 27#include <linux/module.h> 28#include <linux/delay.h> 29#include <linux/interrupt.h> 30#include <linux/mtd/nand.h> 31#include <linux/dma-mapping.h> 32#include <linux/platform_device.h> 33#include <linux/mtd/partitions.h> 34 35#define HINFC504_MAX_CHIP (4) 36#define HINFC504_W_LATCH (5) 37#define HINFC504_R_LATCH (7) 38#define HINFC504_RW_LATCH (3) 39 40#define HINFC504_NFC_TIMEOUT (2 * HZ) 41#define HINFC504_NFC_PM_TIMEOUT (1 * HZ) 42#define HINFC504_NFC_DMA_TIMEOUT (5 * HZ) 43#define HINFC504_CHIP_DELAY (25) 44 45#define HINFC504_REG_BASE_ADDRESS_LEN (0x100) 46#define HINFC504_BUFFER_BASE_ADDRESS_LEN (2048 + 128) 47 48#define HINFC504_ADDR_CYCLE_MASK 0x4 49 50#define HINFC504_CON 0x00 51#define HINFC504_CON_OP_MODE_NORMAL BIT(0) 52#define HINFC504_CON_PAGEISZE_SHIFT (1) 53#define HINFC504_CON_PAGESIZE_MASK (0x07) 54#define HINFC504_CON_BUS_WIDTH BIT(4) 55#define HINFC504_CON_READY_BUSY_SEL BIT(8) 56#define HINFC504_CON_ECCTYPE_SHIFT (9) 57#define HINFC504_CON_ECCTYPE_MASK (0x07) 58 59#define HINFC504_PWIDTH 0x04 60#define SET_HINFC504_PWIDTH(_w_lcnt, _r_lcnt, _rw_hcnt) \ 61 ((_w_lcnt) | (((_r_lcnt) & 0x0F) << 4) | (((_rw_hcnt) & 0x0F) << 8)) 62 63#define HINFC504_CMD 0x0C 64#define HINFC504_ADDRL 0x10 65#define HINFC504_ADDRH 0x14 66#define HINFC504_DATA_NUM 0x18 67 68#define HINFC504_OP 0x1C 69#define HINFC504_OP_READ_DATA_EN BIT(1) 70#define HINFC504_OP_WAIT_READY_EN BIT(2) 71#define HINFC504_OP_CMD2_EN BIT(3) 72#define HINFC504_OP_WRITE_DATA_EN BIT(4) 73#define HINFC504_OP_ADDR_EN BIT(5) 74#define HINFC504_OP_CMD1_EN BIT(6) 75#define HINFC504_OP_NF_CS_SHIFT (7) 76#define HINFC504_OP_NF_CS_MASK (3) 77#define HINFC504_OP_ADDR_CYCLE_SHIFT (9) 78#define HINFC504_OP_ADDR_CYCLE_MASK (7) 79 80#define HINFC504_STATUS 0x20 81#define HINFC504_READY BIT(0) 82 83#define HINFC504_INTEN 0x24 84#define HINFC504_INTEN_DMA BIT(9) 85#define HINFC504_INTEN_UE BIT(6) 86#define HINFC504_INTEN_CE BIT(5) 87 88#define HINFC504_INTS 0x28 89#define HINFC504_INTS_DMA BIT(9) 90#define HINFC504_INTS_UE BIT(6) 91#define HINFC504_INTS_CE BIT(5) 92 93#define HINFC504_INTCLR 0x2C 94#define HINFC504_INTCLR_DMA BIT(9) 95#define HINFC504_INTCLR_UE BIT(6) 96#define HINFC504_INTCLR_CE BIT(5) 97 98#define HINFC504_ECC_STATUS 0x5C 99#define HINFC504_ECC_16_BIT_SHIFT 12 100 101#define HINFC504_DMA_CTRL 0x60 102#define HINFC504_DMA_CTRL_DMA_START BIT(0) 103#define HINFC504_DMA_CTRL_WE BIT(1) 104#define HINFC504_DMA_CTRL_DATA_AREA_EN BIT(2) 105#define HINFC504_DMA_CTRL_OOB_AREA_EN BIT(3) 106#define HINFC504_DMA_CTRL_BURST4_EN BIT(4) 107#define HINFC504_DMA_CTRL_BURST8_EN BIT(5) 108#define HINFC504_DMA_CTRL_BURST16_EN BIT(6) 109#define HINFC504_DMA_CTRL_ADDR_NUM_SHIFT (7) 110#define HINFC504_DMA_CTRL_ADDR_NUM_MASK (1) 111#define HINFC504_DMA_CTRL_CS_SHIFT (8) 112#define HINFC504_DMA_CTRL_CS_MASK (0x03) 113 114#define HINFC504_DMA_ADDR_DATA 0x64 115#define HINFC504_DMA_ADDR_OOB 0x68 116 117#define HINFC504_DMA_LEN 0x6C 118#define HINFC504_DMA_LEN_OOB_SHIFT (16) 119#define HINFC504_DMA_LEN_OOB_MASK (0xFFF) 120 121#define HINFC504_DMA_PARA 0x70 122#define HINFC504_DMA_PARA_DATA_RW_EN BIT(0) 123#define HINFC504_DMA_PARA_OOB_RW_EN BIT(1) 124#define HINFC504_DMA_PARA_DATA_EDC_EN BIT(2) 125#define HINFC504_DMA_PARA_OOB_EDC_EN BIT(3) 126#define HINFC504_DMA_PARA_DATA_ECC_EN BIT(4) 127#define HINFC504_DMA_PARA_OOB_ECC_EN BIT(5) 128 129#define HINFC_VERSION 0x74 130#define HINFC504_LOG_READ_ADDR 0x7C 131#define HINFC504_LOG_READ_LEN 0x80 132 133#define HINFC504_NANDINFO_LEN 0x10 134 135struct hinfc_host { 136 struct nand_chip chip; 137 struct device *dev; 138 void __iomem *iobase; 139 void __iomem *mmio; 140 struct completion cmd_complete; 141 unsigned int offset; 142 unsigned int command; 143 int chipselect; 144 unsigned int addr_cycle; 145 u32 addr_value[2]; 146 u32 cache_addr_value[2]; 147 char *buffer; 148 dma_addr_t dma_buffer; 149 dma_addr_t dma_oob; 150 int version; 151 unsigned int irq_status; /* interrupt status */ 152}; 153 154static inline unsigned int hinfc_read(struct hinfc_host *host, unsigned int reg) 155{ 156 return readl(host->iobase + reg); 157} 158 159static inline void hinfc_write(struct hinfc_host *host, unsigned int value, 160 unsigned int reg) 161{ 162 writel(value, host->iobase + reg); 163} 164 165static void wait_controller_finished(struct hinfc_host *host) 166{ 167 unsigned long timeout = jiffies + HINFC504_NFC_TIMEOUT; 168 int val; 169 170 while (time_before(jiffies, timeout)) { 171 val = hinfc_read(host, HINFC504_STATUS); 172 if (host->command == NAND_CMD_ERASE2) { 173 /* nfc is ready */ 174 while (!(val & HINFC504_READY)) { 175 usleep_range(500, 1000); 176 val = hinfc_read(host, HINFC504_STATUS); 177 } 178 return; 179 } 180 181 if (val & HINFC504_READY) 182 return; 183 } 184 185 /* wait cmd timeout */ 186 dev_err(host->dev, "Wait NAND controller exec cmd timeout.\n"); 187} 188 189static void hisi_nfc_dma_transfer(struct hinfc_host *host, int todev) 190{ 191 struct nand_chip *chip = &host->chip; 192 struct mtd_info *mtd = nand_to_mtd(chip); 193 unsigned long val; 194 int ret; 195 196 hinfc_write(host, host->dma_buffer, HINFC504_DMA_ADDR_DATA); 197 hinfc_write(host, host->dma_oob, HINFC504_DMA_ADDR_OOB); 198 199 if (chip->ecc.mode == NAND_ECC_NONE) { 200 hinfc_write(host, ((mtd->oobsize & HINFC504_DMA_LEN_OOB_MASK) 201 << HINFC504_DMA_LEN_OOB_SHIFT), HINFC504_DMA_LEN); 202 203 hinfc_write(host, HINFC504_DMA_PARA_DATA_RW_EN 204 | HINFC504_DMA_PARA_OOB_RW_EN, HINFC504_DMA_PARA); 205 } else { 206 if (host->command == NAND_CMD_READOOB) 207 hinfc_write(host, HINFC504_DMA_PARA_OOB_RW_EN 208 | HINFC504_DMA_PARA_OOB_EDC_EN 209 | HINFC504_DMA_PARA_OOB_ECC_EN, HINFC504_DMA_PARA); 210 else 211 hinfc_write(host, HINFC504_DMA_PARA_DATA_RW_EN 212 | HINFC504_DMA_PARA_OOB_RW_EN 213 | HINFC504_DMA_PARA_DATA_EDC_EN 214 | HINFC504_DMA_PARA_OOB_EDC_EN 215 | HINFC504_DMA_PARA_DATA_ECC_EN 216 | HINFC504_DMA_PARA_OOB_ECC_EN, HINFC504_DMA_PARA); 217 218 } 219 220 val = (HINFC504_DMA_CTRL_DMA_START | HINFC504_DMA_CTRL_BURST4_EN 221 | HINFC504_DMA_CTRL_BURST8_EN | HINFC504_DMA_CTRL_BURST16_EN 222 | HINFC504_DMA_CTRL_DATA_AREA_EN | HINFC504_DMA_CTRL_OOB_AREA_EN 223 | ((host->addr_cycle == 4 ? 1 : 0) 224 << HINFC504_DMA_CTRL_ADDR_NUM_SHIFT) 225 | ((host->chipselect & HINFC504_DMA_CTRL_CS_MASK) 226 << HINFC504_DMA_CTRL_CS_SHIFT)); 227 228 if (todev) 229 val |= HINFC504_DMA_CTRL_WE; 230 231 init_completion(&host->cmd_complete); 232 233 hinfc_write(host, val, HINFC504_DMA_CTRL); 234 ret = wait_for_completion_timeout(&host->cmd_complete, 235 HINFC504_NFC_DMA_TIMEOUT); 236 237 if (!ret) { 238 dev_err(host->dev, "DMA operation(irq) timeout!\n"); 239 /* sanity check */ 240 val = hinfc_read(host, HINFC504_DMA_CTRL); 241 if (!(val & HINFC504_DMA_CTRL_DMA_START)) 242 dev_err(host->dev, "DMA is already done but without irq ACK!\n"); 243 else 244 dev_err(host->dev, "DMA is really timeout!\n"); 245 } 246} 247 248static int hisi_nfc_send_cmd_pageprog(struct hinfc_host *host) 249{ 250 host->addr_value[0] &= 0xffff0000; 251 252 hinfc_write(host, host->addr_value[0], HINFC504_ADDRL); 253 hinfc_write(host, host->addr_value[1], HINFC504_ADDRH); 254 hinfc_write(host, NAND_CMD_PAGEPROG << 8 | NAND_CMD_SEQIN, 255 HINFC504_CMD); 256 257 hisi_nfc_dma_transfer(host, 1); 258 259 return 0; 260} 261 262static int hisi_nfc_send_cmd_readstart(struct hinfc_host *host) 263{ 264 struct mtd_info *mtd = nand_to_mtd(&host->chip); 265 266 if ((host->addr_value[0] == host->cache_addr_value[0]) && 267 (host->addr_value[1] == host->cache_addr_value[1])) 268 return 0; 269 270 host->addr_value[0] &= 0xffff0000; 271 272 hinfc_write(host, host->addr_value[0], HINFC504_ADDRL); 273 hinfc_write(host, host->addr_value[1], HINFC504_ADDRH); 274 hinfc_write(host, NAND_CMD_READSTART << 8 | NAND_CMD_READ0, 275 HINFC504_CMD); 276 277 hinfc_write(host, 0, HINFC504_LOG_READ_ADDR); 278 hinfc_write(host, mtd->writesize + mtd->oobsize, 279 HINFC504_LOG_READ_LEN); 280 281 hisi_nfc_dma_transfer(host, 0); 282 283 host->cache_addr_value[0] = host->addr_value[0]; 284 host->cache_addr_value[1] = host->addr_value[1]; 285 286 return 0; 287} 288 289static int hisi_nfc_send_cmd_erase(struct hinfc_host *host) 290{ 291 hinfc_write(host, host->addr_value[0], HINFC504_ADDRL); 292 hinfc_write(host, (NAND_CMD_ERASE2 << 8) | NAND_CMD_ERASE1, 293 HINFC504_CMD); 294 295 hinfc_write(host, HINFC504_OP_WAIT_READY_EN 296 | HINFC504_OP_CMD2_EN 297 | HINFC504_OP_CMD1_EN 298 | HINFC504_OP_ADDR_EN 299 | ((host->chipselect & HINFC504_OP_NF_CS_MASK) 300 << HINFC504_OP_NF_CS_SHIFT) 301 | ((host->addr_cycle & HINFC504_OP_ADDR_CYCLE_MASK) 302 << HINFC504_OP_ADDR_CYCLE_SHIFT), 303 HINFC504_OP); 304 305 wait_controller_finished(host); 306 307 return 0; 308} 309 310static int hisi_nfc_send_cmd_readid(struct hinfc_host *host) 311{ 312 hinfc_write(host, HINFC504_NANDINFO_LEN, HINFC504_DATA_NUM); 313 hinfc_write(host, NAND_CMD_READID, HINFC504_CMD); 314 hinfc_write(host, 0, HINFC504_ADDRL); 315 316 hinfc_write(host, HINFC504_OP_CMD1_EN | HINFC504_OP_ADDR_EN 317 | HINFC504_OP_READ_DATA_EN 318 | ((host->chipselect & HINFC504_OP_NF_CS_MASK) 319 << HINFC504_OP_NF_CS_SHIFT) 320 | 1 << HINFC504_OP_ADDR_CYCLE_SHIFT, HINFC504_OP); 321 322 wait_controller_finished(host); 323 324 return 0; 325} 326 327static int hisi_nfc_send_cmd_status(struct hinfc_host *host) 328{ 329 hinfc_write(host, HINFC504_NANDINFO_LEN, HINFC504_DATA_NUM); 330 hinfc_write(host, NAND_CMD_STATUS, HINFC504_CMD); 331 hinfc_write(host, HINFC504_OP_CMD1_EN 332 | HINFC504_OP_READ_DATA_EN 333 | ((host->chipselect & HINFC504_OP_NF_CS_MASK) 334 << HINFC504_OP_NF_CS_SHIFT), 335 HINFC504_OP); 336 337 wait_controller_finished(host); 338 339 return 0; 340} 341 342static int hisi_nfc_send_cmd_reset(struct hinfc_host *host, int chipselect) 343{ 344 hinfc_write(host, NAND_CMD_RESET, HINFC504_CMD); 345 346 hinfc_write(host, HINFC504_OP_CMD1_EN 347 | ((chipselect & HINFC504_OP_NF_CS_MASK) 348 << HINFC504_OP_NF_CS_SHIFT) 349 | HINFC504_OP_WAIT_READY_EN, 350 HINFC504_OP); 351 352 wait_controller_finished(host); 353 354 return 0; 355} 356 357static void hisi_nfc_select_chip(struct mtd_info *mtd, int chipselect) 358{ 359 struct nand_chip *chip = mtd_to_nand(mtd); 360 struct hinfc_host *host = nand_get_controller_data(chip); 361 362 if (chipselect < 0) 363 return; 364 365 host->chipselect = chipselect; 366} 367 368static uint8_t hisi_nfc_read_byte(struct mtd_info *mtd) 369{ 370 struct nand_chip *chip = mtd_to_nand(mtd); 371 struct hinfc_host *host = nand_get_controller_data(chip); 372 373 if (host->command == NAND_CMD_STATUS) 374 return *(uint8_t *)(host->mmio); 375 376 host->offset++; 377 378 if (host->command == NAND_CMD_READID) 379 return *(uint8_t *)(host->mmio + host->offset - 1); 380 381 return *(uint8_t *)(host->buffer + host->offset - 1); 382} 383 384static u16 hisi_nfc_read_word(struct mtd_info *mtd) 385{ 386 struct nand_chip *chip = mtd_to_nand(mtd); 387 struct hinfc_host *host = nand_get_controller_data(chip); 388 389 host->offset += 2; 390 return *(u16 *)(host->buffer + host->offset - 2); 391} 392 393static void 394hisi_nfc_write_buf(struct mtd_info *mtd, const uint8_t *buf, int len) 395{ 396 struct nand_chip *chip = mtd_to_nand(mtd); 397 struct hinfc_host *host = nand_get_controller_data(chip); 398 399 memcpy(host->buffer + host->offset, buf, len); 400 host->offset += len; 401} 402 403static void hisi_nfc_read_buf(struct mtd_info *mtd, uint8_t *buf, int len) 404{ 405 struct nand_chip *chip = mtd_to_nand(mtd); 406 struct hinfc_host *host = nand_get_controller_data(chip); 407 408 memcpy(buf, host->buffer + host->offset, len); 409 host->offset += len; 410} 411 412static void set_addr(struct mtd_info *mtd, int column, int page_addr) 413{ 414 struct nand_chip *chip = mtd_to_nand(mtd); 415 struct hinfc_host *host = nand_get_controller_data(chip); 416 unsigned int command = host->command; 417 418 host->addr_cycle = 0; 419 host->addr_value[0] = 0; 420 host->addr_value[1] = 0; 421 422 /* Serially input address */ 423 if (column != -1) { 424 /* Adjust columns for 16 bit buswidth */ 425 if (chip->options & NAND_BUSWIDTH_16 && 426 !nand_opcode_8bits(command)) 427 column >>= 1; 428 429 host->addr_value[0] = column & 0xffff; 430 host->addr_cycle = 2; 431 } 432 if (page_addr != -1) { 433 host->addr_value[0] |= (page_addr & 0xffff) 434 << (host->addr_cycle * 8); 435 host->addr_cycle += 2; 436 /* One more address cycle for devices > 128MiB */ 437 if (chip->chipsize > (128 << 20)) { 438 host->addr_cycle += 1; 439 if (host->command == NAND_CMD_ERASE1) 440 host->addr_value[0] |= ((page_addr >> 16) & 0xff) << 16; 441 else 442 host->addr_value[1] |= ((page_addr >> 16) & 0xff); 443 } 444 } 445} 446 447static void hisi_nfc_cmdfunc(struct mtd_info *mtd, unsigned command, int column, 448 int page_addr) 449{ 450 struct nand_chip *chip = mtd_to_nand(mtd); 451 struct hinfc_host *host = nand_get_controller_data(chip); 452 int is_cache_invalid = 1; 453 unsigned int flag = 0; 454 455 host->command = command; 456 457 switch (command) { 458 case NAND_CMD_READ0: 459 case NAND_CMD_READOOB: 460 if (command == NAND_CMD_READ0) 461 host->offset = column; 462 else 463 host->offset = column + mtd->writesize; 464 465 is_cache_invalid = 0; 466 set_addr(mtd, column, page_addr); 467 hisi_nfc_send_cmd_readstart(host); 468 break; 469 470 case NAND_CMD_SEQIN: 471 host->offset = column; 472 set_addr(mtd, column, page_addr); 473 break; 474 475 case NAND_CMD_ERASE1: 476 set_addr(mtd, column, page_addr); 477 break; 478 479 case NAND_CMD_PAGEPROG: 480 hisi_nfc_send_cmd_pageprog(host); 481 break; 482 483 case NAND_CMD_ERASE2: 484 hisi_nfc_send_cmd_erase(host); 485 break; 486 487 case NAND_CMD_READID: 488 host->offset = column; 489 memset(host->mmio, 0, 0x10); 490 hisi_nfc_send_cmd_readid(host); 491 break; 492 493 case NAND_CMD_STATUS: 494 flag = hinfc_read(host, HINFC504_CON); 495 if (chip->ecc.mode == NAND_ECC_HW) 496 hinfc_write(host, 497 flag & ~(HINFC504_CON_ECCTYPE_MASK << 498 HINFC504_CON_ECCTYPE_SHIFT), HINFC504_CON); 499 500 host->offset = 0; 501 memset(host->mmio, 0, 0x10); 502 hisi_nfc_send_cmd_status(host); 503 hinfc_write(host, flag, HINFC504_CON); 504 break; 505 506 case NAND_CMD_RESET: 507 hisi_nfc_send_cmd_reset(host, host->chipselect); 508 break; 509 510 default: 511 dev_err(host->dev, "Error: unsupported cmd(cmd=%x, col=%x, page=%x)\n", 512 command, column, page_addr); 513 } 514 515 if (is_cache_invalid) { 516 host->cache_addr_value[0] = ~0; 517 host->cache_addr_value[1] = ~0; 518 } 519} 520 521static irqreturn_t hinfc_irq_handle(int irq, void *devid) 522{ 523 struct hinfc_host *host = devid; 524 unsigned int flag; 525 526 flag = hinfc_read(host, HINFC504_INTS); 527 /* store interrupts state */ 528 host->irq_status |= flag; 529 530 if (flag & HINFC504_INTS_DMA) { 531 hinfc_write(host, HINFC504_INTCLR_DMA, HINFC504_INTCLR); 532 complete(&host->cmd_complete); 533 } else if (flag & HINFC504_INTS_CE) { 534 hinfc_write(host, HINFC504_INTCLR_CE, HINFC504_INTCLR); 535 } else if (flag & HINFC504_INTS_UE) { 536 hinfc_write(host, HINFC504_INTCLR_UE, HINFC504_INTCLR); 537 } 538 539 return IRQ_HANDLED; 540} 541 542static int hisi_nand_read_page_hwecc(struct mtd_info *mtd, 543 struct nand_chip *chip, uint8_t *buf, int oob_required, int page) 544{ 545 struct hinfc_host *host = nand_get_controller_data(chip); 546 int max_bitflips = 0, stat = 0, stat_max = 0, status_ecc; 547 int stat_1, stat_2; 548 549 chip->read_buf(mtd, buf, mtd->writesize); 550 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize); 551 552 /* errors which can not be corrected by ECC */ 553 if (host->irq_status & HINFC504_INTS_UE) { 554 mtd->ecc_stats.failed++; 555 } else if (host->irq_status & HINFC504_INTS_CE) { 556 /* TODO: need add other ECC modes! */ 557 switch (chip->ecc.strength) { 558 case 16: 559 status_ecc = hinfc_read(host, HINFC504_ECC_STATUS) >> 560 HINFC504_ECC_16_BIT_SHIFT & 0x0fff; 561 stat_2 = status_ecc & 0x3f; 562 stat_1 = status_ecc >> 6 & 0x3f; 563 stat = stat_1 + stat_2; 564 stat_max = max_t(int, stat_1, stat_2); 565 } 566 mtd->ecc_stats.corrected += stat; 567 max_bitflips = max_t(int, max_bitflips, stat_max); 568 } 569 host->irq_status = 0; 570 571 return max_bitflips; 572} 573 574static int hisi_nand_read_oob(struct mtd_info *mtd, struct nand_chip *chip, 575 int page) 576{ 577 struct hinfc_host *host = nand_get_controller_data(chip); 578 579 chip->cmdfunc(mtd, NAND_CMD_READOOB, 0, page); 580 chip->read_buf(mtd, chip->oob_poi, mtd->oobsize); 581 582 if (host->irq_status & HINFC504_INTS_UE) { 583 host->irq_status = 0; 584 return -EBADMSG; 585 } 586 587 host->irq_status = 0; 588 return 0; 589} 590 591static int hisi_nand_write_page_hwecc(struct mtd_info *mtd, 592 struct nand_chip *chip, const uint8_t *buf, int oob_required, 593 int page) 594{ 595 chip->write_buf(mtd, buf, mtd->writesize); 596 if (oob_required) 597 chip->write_buf(mtd, chip->oob_poi, mtd->oobsize); 598 599 return 0; 600} 601 602static void hisi_nfc_host_init(struct hinfc_host *host) 603{ 604 struct nand_chip *chip = &host->chip; 605 unsigned int flag = 0; 606 607 host->version = hinfc_read(host, HINFC_VERSION); 608 host->addr_cycle = 0; 609 host->addr_value[0] = 0; 610 host->addr_value[1] = 0; 611 host->cache_addr_value[0] = ~0; 612 host->cache_addr_value[1] = ~0; 613 host->chipselect = 0; 614 615 /* default page size: 2K, ecc_none. need modify */ 616 flag = HINFC504_CON_OP_MODE_NORMAL | HINFC504_CON_READY_BUSY_SEL 617 | ((0x001 & HINFC504_CON_PAGESIZE_MASK) 618 << HINFC504_CON_PAGEISZE_SHIFT) 619 | ((0x0 & HINFC504_CON_ECCTYPE_MASK) 620 << HINFC504_CON_ECCTYPE_SHIFT) 621 | ((chip->options & NAND_BUSWIDTH_16) ? 622 HINFC504_CON_BUS_WIDTH : 0); 623 hinfc_write(host, flag, HINFC504_CON); 624 625 memset(host->mmio, 0xff, HINFC504_BUFFER_BASE_ADDRESS_LEN); 626 627 hinfc_write(host, SET_HINFC504_PWIDTH(HINFC504_W_LATCH, 628 HINFC504_R_LATCH, HINFC504_RW_LATCH), HINFC504_PWIDTH); 629 630 /* enable DMA irq */ 631 hinfc_write(host, HINFC504_INTEN_DMA, HINFC504_INTEN); 632} 633 634static struct nand_ecclayout nand_ecc_2K_16bits = { 635 .oobfree = { {2, 6} }, 636}; 637 638static int hisi_nfc_ecc_probe(struct hinfc_host *host) 639{ 640 unsigned int flag; 641 int size, strength, ecc_bits; 642 struct device *dev = host->dev; 643 struct nand_chip *chip = &host->chip; 644 struct mtd_info *mtd = nand_to_mtd(chip); 645 struct device_node *np = host->dev->of_node; 646 647 size = of_get_nand_ecc_step_size(np); 648 strength = of_get_nand_ecc_strength(np); 649 if (size != 1024) { 650 dev_err(dev, "error ecc size: %d\n", size); 651 return -EINVAL; 652 } 653 654 if ((size == 1024) && ((strength != 8) && (strength != 16) && 655 (strength != 24) && (strength != 40))) { 656 dev_err(dev, "ecc size and strength do not match\n"); 657 return -EINVAL; 658 } 659 660 chip->ecc.size = size; 661 chip->ecc.strength = strength; 662 663 chip->ecc.read_page = hisi_nand_read_page_hwecc; 664 chip->ecc.read_oob = hisi_nand_read_oob; 665 chip->ecc.write_page = hisi_nand_write_page_hwecc; 666 667 switch (chip->ecc.strength) { 668 case 16: 669 ecc_bits = 6; 670 if (mtd->writesize == 2048) 671 chip->ecc.layout = &nand_ecc_2K_16bits; 672 673 /* TODO: add more page size support */ 674 break; 675 676 /* TODO: add more ecc strength support */ 677 default: 678 dev_err(dev, "not support strength: %d\n", chip->ecc.strength); 679 return -EINVAL; 680 } 681 682 flag = hinfc_read(host, HINFC504_CON); 683 /* add ecc type configure */ 684 flag |= ((ecc_bits & HINFC504_CON_ECCTYPE_MASK) 685 << HINFC504_CON_ECCTYPE_SHIFT); 686 hinfc_write(host, flag, HINFC504_CON); 687 688 /* enable ecc irq */ 689 flag = hinfc_read(host, HINFC504_INTEN) & 0xfff; 690 hinfc_write(host, flag | HINFC504_INTEN_UE | HINFC504_INTEN_CE, 691 HINFC504_INTEN); 692 693 return 0; 694} 695 696static int hisi_nfc_probe(struct platform_device *pdev) 697{ 698 int ret = 0, irq, buswidth, flag, max_chips = HINFC504_MAX_CHIP; 699 struct device *dev = &pdev->dev; 700 struct hinfc_host *host; 701 struct nand_chip *chip; 702 struct mtd_info *mtd; 703 struct resource *res; 704 struct device_node *np = dev->of_node; 705 706 host = devm_kzalloc(dev, sizeof(*host), GFP_KERNEL); 707 if (!host) 708 return -ENOMEM; 709 host->dev = dev; 710 711 platform_set_drvdata(pdev, host); 712 chip = &host->chip; 713 mtd = nand_to_mtd(chip); 714 715 irq = platform_get_irq(pdev, 0); 716 if (irq < 0) { 717 dev_err(dev, "no IRQ resource defined\n"); 718 ret = -ENXIO; 719 goto err_res; 720 } 721 722 res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 723 host->iobase = devm_ioremap_resource(dev, res); 724 if (IS_ERR(host->iobase)) { 725 ret = PTR_ERR(host->iobase); 726 goto err_res; 727 } 728 729 res = platform_get_resource(pdev, IORESOURCE_MEM, 1); 730 host->mmio = devm_ioremap_resource(dev, res); 731 if (IS_ERR(host->mmio)) { 732 ret = PTR_ERR(host->mmio); 733 dev_err(dev, "devm_ioremap_resource[1] fail\n"); 734 goto err_res; 735 } 736 737 mtd->name = "hisi_nand"; 738 mtd->dev.parent = &pdev->dev; 739 740 nand_set_controller_data(chip, host); 741 nand_set_flash_node(chip, np); 742 chip->cmdfunc = hisi_nfc_cmdfunc; 743 chip->select_chip = hisi_nfc_select_chip; 744 chip->read_byte = hisi_nfc_read_byte; 745 chip->read_word = hisi_nfc_read_word; 746 chip->write_buf = hisi_nfc_write_buf; 747 chip->read_buf = hisi_nfc_read_buf; 748 chip->chip_delay = HINFC504_CHIP_DELAY; 749 750 chip->ecc.mode = of_get_nand_ecc_mode(np); 751 752 buswidth = of_get_nand_bus_width(np); 753 if (buswidth == 16) 754 chip->options |= NAND_BUSWIDTH_16; 755 756 hisi_nfc_host_init(host); 757 758 ret = devm_request_irq(dev, irq, hinfc_irq_handle, 0x0, "nandc", host); 759 if (ret) { 760 dev_err(dev, "failed to request IRQ\n"); 761 goto err_res; 762 } 763 764 ret = nand_scan_ident(mtd, max_chips, NULL); 765 if (ret) { 766 ret = -ENODEV; 767 goto err_res; 768 } 769 770 host->buffer = dmam_alloc_coherent(dev, mtd->writesize + mtd->oobsize, 771 &host->dma_buffer, GFP_KERNEL); 772 if (!host->buffer) { 773 ret = -ENOMEM; 774 goto err_res; 775 } 776 777 host->dma_oob = host->dma_buffer + mtd->writesize; 778 memset(host->buffer, 0xff, mtd->writesize + mtd->oobsize); 779 780 flag = hinfc_read(host, HINFC504_CON); 781 flag &= ~(HINFC504_CON_PAGESIZE_MASK << HINFC504_CON_PAGEISZE_SHIFT); 782 switch (mtd->writesize) { 783 case 2048: 784 flag |= (0x001 << HINFC504_CON_PAGEISZE_SHIFT); break; 785 /* 786 * TODO: add more pagesize support, 787 * default pagesize has been set in hisi_nfc_host_init 788 */ 789 default: 790 dev_err(dev, "NON-2KB page size nand flash\n"); 791 ret = -EINVAL; 792 goto err_res; 793 } 794 hinfc_write(host, flag, HINFC504_CON); 795 796 if (chip->ecc.mode == NAND_ECC_HW) 797 hisi_nfc_ecc_probe(host); 798 799 ret = nand_scan_tail(mtd); 800 if (ret) { 801 dev_err(dev, "nand_scan_tail failed: %d\n", ret); 802 goto err_res; 803 } 804 805 ret = mtd_device_register(mtd, NULL, 0); 806 if (ret) { 807 dev_err(dev, "Err MTD partition=%d\n", ret); 808 goto err_mtd; 809 } 810 811 return 0; 812 813err_mtd: 814 nand_release(mtd); 815err_res: 816 return ret; 817} 818 819static int hisi_nfc_remove(struct platform_device *pdev) 820{ 821 struct hinfc_host *host = platform_get_drvdata(pdev); 822 struct mtd_info *mtd = nand_to_mtd(&host->chip); 823 824 nand_release(mtd); 825 826 return 0; 827} 828 829#ifdef CONFIG_PM_SLEEP 830static int hisi_nfc_suspend(struct device *dev) 831{ 832 struct hinfc_host *host = dev_get_drvdata(dev); 833 unsigned long timeout = jiffies + HINFC504_NFC_PM_TIMEOUT; 834 835 while (time_before(jiffies, timeout)) { 836 if (((hinfc_read(host, HINFC504_STATUS) & 0x1) == 0x0) && 837 (hinfc_read(host, HINFC504_DMA_CTRL) & 838 HINFC504_DMA_CTRL_DMA_START)) { 839 cond_resched(); 840 return 0; 841 } 842 } 843 844 dev_err(host->dev, "nand controller suspend timeout.\n"); 845 846 return -EAGAIN; 847} 848 849static int hisi_nfc_resume(struct device *dev) 850{ 851 int cs; 852 struct hinfc_host *host = dev_get_drvdata(dev); 853 struct nand_chip *chip = &host->chip; 854 855 for (cs = 0; cs < chip->numchips; cs++) 856 hisi_nfc_send_cmd_reset(host, cs); 857 hinfc_write(host, SET_HINFC504_PWIDTH(HINFC504_W_LATCH, 858 HINFC504_R_LATCH, HINFC504_RW_LATCH), HINFC504_PWIDTH); 859 860 return 0; 861} 862#endif 863static SIMPLE_DEV_PM_OPS(hisi_nfc_pm_ops, hisi_nfc_suspend, hisi_nfc_resume); 864 865static const struct of_device_id nfc_id_table[] = { 866 { .compatible = "hisilicon,504-nfc" }, 867 {} 868}; 869MODULE_DEVICE_TABLE(of, nfc_id_table); 870 871static struct platform_driver hisi_nfc_driver = { 872 .driver = { 873 .name = "hisi_nand", 874 .of_match_table = nfc_id_table, 875 .pm = &hisi_nfc_pm_ops, 876 }, 877 .probe = hisi_nfc_probe, 878 .remove = hisi_nfc_remove, 879}; 880 881module_platform_driver(hisi_nfc_driver); 882 883MODULE_LICENSE("GPL"); 884MODULE_AUTHOR("Zhou Wang"); 885MODULE_AUTHOR("Zhiyong Cai"); 886MODULE_DESCRIPTION("Hisilicon Nand Flash Controller Driver");