1 /* 2 * Copyright © 2010-2015 Broadcom Corporation 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License version 2 as 6 * published by the Free Software Foundation. 7 * 8 * This program is distributed in the hope that it will be useful, 9 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 11 * GNU General Public License for more details. 12 */ 13 14 #include <linux/clk.h> 15 #include <linux/version.h> 16 #include <linux/module.h> 17 #include <linux/init.h> 18 #include <linux/delay.h> 19 #include <linux/device.h> 20 #include <linux/platform_device.h> 21 #include <linux/err.h> 22 #include <linux/completion.h> 23 #include <linux/interrupt.h> 24 #include <linux/spinlock.h> 25 #include <linux/dma-mapping.h> 26 #include <linux/ioport.h> 27 #include <linux/bug.h> 28 #include <linux/kernel.h> 29 #include <linux/bitops.h> 30 #include <linux/mm.h> 31 #include <linux/mtd/mtd.h> 32 #include <linux/mtd/rawnand.h> 33 #include <linux/mtd/partitions.h> 34 #include <linux/of.h> 35 #include <linux/of_platform.h> 36 #include <linux/slab.h> 37 #include <linux/list.h> 38 #include <linux/log2.h> 39 40 #include "brcmnand.h" 41 42 /* 43 * This flag controls if WP stays on between erase/write commands to mitigate 44 * flash corruption due to power glitches. Values: 45 * 0: NAND_WP is not used or not available 46 * 1: NAND_WP is set by default, cleared for erase/write operations 47 * 2: NAND_WP is always cleared 48 */ 49 static int wp_on = 1; 50 module_param(wp_on, int, 0444); 51 52 /*********************************************************************** 53 * Definitions 54 ***********************************************************************/ 55 56 #define DRV_NAME "brcmnand" 57 58 #define CMD_NULL 0x00 59 #define CMD_PAGE_READ 0x01 60 #define CMD_SPARE_AREA_READ 0x02 61 #define CMD_STATUS_READ 0x03 62 #define CMD_PROGRAM_PAGE 0x04 63 #define CMD_PROGRAM_SPARE_AREA 0x05 64 #define CMD_COPY_BACK 0x06 65 #define CMD_DEVICE_ID_READ 0x07 66 #define CMD_BLOCK_ERASE 0x08 67 #define CMD_FLASH_RESET 0x09 68 #define CMD_BLOCKS_LOCK 0x0a 69 #define CMD_BLOCKS_LOCK_DOWN 0x0b 70 #define CMD_BLOCKS_UNLOCK 0x0c 71 #define CMD_READ_BLOCKS_LOCK_STATUS 0x0d 72 #define CMD_PARAMETER_READ 0x0e 73 #define CMD_PARAMETER_CHANGE_COL 0x0f 74 #define CMD_LOW_LEVEL_OP 0x10 75 76 struct brcm_nand_dma_desc { 77 u32 next_desc; 78 u32 next_desc_ext; 79 u32 cmd_irq; 80 u32 dram_addr; 81 u32 dram_addr_ext; 82 u32 tfr_len; 83 u32 total_len; 84 u32 flash_addr; 85 u32 flash_addr_ext; 86 u32 cs; 87 u32 pad2[5]; 88 u32 status_valid; 89 } __packed; 90 91 /* Bitfields for brcm_nand_dma_desc::status_valid */ 92 #define FLASH_DMA_ECC_ERROR (1 << 8) 93 #define FLASH_DMA_CORR_ERROR (1 << 9) 94 95 /* 512B flash cache in the NAND controller HW */ 96 #define FC_SHIFT 9U 97 #define FC_BYTES 512U 98 #define FC_WORDS (FC_BYTES >> 2) 99 100 #define BRCMNAND_MIN_PAGESIZE 512 101 #define BRCMNAND_MIN_BLOCKSIZE (8 * 1024) 102 #define BRCMNAND_MIN_DEVSIZE (4ULL * 1024 * 1024) 103 104 #define NAND_CTRL_RDY (INTFC_CTLR_READY | INTFC_FLASH_READY) 105 #define NAND_POLL_STATUS_TIMEOUT_MS 100 106 107 /* Controller feature flags */ 108 enum { 109 BRCMNAND_HAS_1K_SECTORS = BIT(0), 110 BRCMNAND_HAS_PREFETCH = BIT(1), 111 BRCMNAND_HAS_CACHE_MODE = BIT(2), 112 BRCMNAND_HAS_WP = BIT(3), 113 }; 114 115 struct brcmnand_controller { 116 struct device *dev; 117 struct nand_controller controller; 118 void __iomem *nand_base; 119 void __iomem *nand_fc; /* flash cache */ 120 void __iomem *flash_dma_base; 121 unsigned int irq; 122 unsigned int dma_irq; 123 int nand_version; 124 125 /* Some SoCs provide custom interrupt status register(s) */ 126 struct brcmnand_soc *soc; 127 128 /* Some SoCs have a gateable clock for the controller */ 129 struct clk *clk; 130 131 int cmd_pending; 132 bool dma_pending; 133 struct completion done; 134 struct completion dma_done; 135 136 /* List of NAND hosts (one for each chip-select) */ 137 struct list_head host_list; 138 139 struct brcm_nand_dma_desc *dma_desc; 140 dma_addr_t dma_pa; 141 142 /* in-memory cache of the FLASH_CACHE, used only for some commands */ 143 u8 flash_cache[FC_BYTES]; 144 145 /* Controller revision details */ 146 const u16 *reg_offsets; 147 unsigned int reg_spacing; /* between CS1, CS2, ... regs */ 148 const u8 *cs_offsets; /* within each chip-select */ 149 const u8 *cs0_offsets; /* within CS0, if different */ 150 unsigned int max_block_size; 151 const unsigned int *block_sizes; 152 unsigned int max_page_size; 153 const unsigned int *page_sizes; 154 unsigned int max_oob; 155 u32 features; 156 157 /* for low-power standby/resume only */ 158 u32 nand_cs_nand_select; 159 u32 nand_cs_nand_xor; 160 u32 corr_stat_threshold; 161 u32 flash_dma_mode; 162 }; 163 164 struct brcmnand_cfg { 165 u64 device_size; 166 unsigned int block_size; 167 unsigned int page_size; 168 unsigned int spare_area_size; 169 unsigned int device_width; 170 unsigned int col_adr_bytes; 171 unsigned int blk_adr_bytes; 172 unsigned int ful_adr_bytes; 173 unsigned int sector_size_1k; 174 unsigned int ecc_level; 175 /* use for low-power standby/resume only */ 176 u32 acc_control; 177 u32 config; 178 u32 config_ext; 179 u32 timing_1; 180 u32 timing_2; 181 }; 182 183 struct brcmnand_host { 184 struct list_head node; 185 186 struct nand_chip chip; 187 struct platform_device *pdev; 188 int cs; 189 190 unsigned int last_cmd; 191 unsigned int last_byte; 192 u64 last_addr; 193 struct brcmnand_cfg hwcfg; 194 struct brcmnand_controller *ctrl; 195 }; 196 197 enum brcmnand_reg { 198 BRCMNAND_CMD_START = 0, 199 BRCMNAND_CMD_EXT_ADDRESS, 200 BRCMNAND_CMD_ADDRESS, 201 BRCMNAND_INTFC_STATUS, 202 BRCMNAND_CS_SELECT, 203 BRCMNAND_CS_XOR, 204 BRCMNAND_LL_OP, 205 BRCMNAND_CS0_BASE, 206 BRCMNAND_CS1_BASE, /* CS1 regs, if non-contiguous */ 207 BRCMNAND_CORR_THRESHOLD, 208 BRCMNAND_CORR_THRESHOLD_EXT, 209 BRCMNAND_UNCORR_COUNT, 210 BRCMNAND_CORR_COUNT, 211 BRCMNAND_CORR_EXT_ADDR, 212 BRCMNAND_CORR_ADDR, 213 BRCMNAND_UNCORR_EXT_ADDR, 214 BRCMNAND_UNCORR_ADDR, 215 BRCMNAND_SEMAPHORE, 216 BRCMNAND_ID, 217 BRCMNAND_ID_EXT, 218 BRCMNAND_LL_RDATA, 219 BRCMNAND_OOB_READ_BASE, 220 BRCMNAND_OOB_READ_10_BASE, /* offset 0x10, if non-contiguous */ 221 BRCMNAND_OOB_WRITE_BASE, 222 BRCMNAND_OOB_WRITE_10_BASE, /* offset 0x10, if non-contiguous */ 223 BRCMNAND_FC_BASE, 224 }; 225 226 /* BRCMNAND v4.0 */ 227 static const u16 brcmnand_regs_v40[] = { 228 [BRCMNAND_CMD_START] = 0x04, 229 [BRCMNAND_CMD_EXT_ADDRESS] = 0x08, 230 [BRCMNAND_CMD_ADDRESS] = 0x0c, 231 [BRCMNAND_INTFC_STATUS] = 0x6c, 232 [BRCMNAND_CS_SELECT] = 0x14, 233 [BRCMNAND_CS_XOR] = 0x18, 234 [BRCMNAND_LL_OP] = 0x178, 235 [BRCMNAND_CS0_BASE] = 0x40, 236 [BRCMNAND_CS1_BASE] = 0xd0, 237 [BRCMNAND_CORR_THRESHOLD] = 0x84, 238 [BRCMNAND_CORR_THRESHOLD_EXT] = 0, 239 [BRCMNAND_UNCORR_COUNT] = 0, 240 [BRCMNAND_CORR_COUNT] = 0, 241 [BRCMNAND_CORR_EXT_ADDR] = 0x70, 242 [BRCMNAND_CORR_ADDR] = 0x74, 243 [BRCMNAND_UNCORR_EXT_ADDR] = 0x78, 244 [BRCMNAND_UNCORR_ADDR] = 0x7c, 245 [BRCMNAND_SEMAPHORE] = 0x58, 246 [BRCMNAND_ID] = 0x60, 247 [BRCMNAND_ID_EXT] = 0x64, 248 [BRCMNAND_LL_RDATA] = 0x17c, 249 [BRCMNAND_OOB_READ_BASE] = 0x20, 250 [BRCMNAND_OOB_READ_10_BASE] = 0x130, 251 [BRCMNAND_OOB_WRITE_BASE] = 0x30, 252 [BRCMNAND_OOB_WRITE_10_BASE] = 0, 253 [BRCMNAND_FC_BASE] = 0x200, 254 }; 255 256 /* BRCMNAND v5.0 */ 257 static const u16 brcmnand_regs_v50[] = { 258 [BRCMNAND_CMD_START] = 0x04, 259 [BRCMNAND_CMD_EXT_ADDRESS] = 0x08, 260 [BRCMNAND_CMD_ADDRESS] = 0x0c, 261 [BRCMNAND_INTFC_STATUS] = 0x6c, 262 [BRCMNAND_CS_SELECT] = 0x14, 263 [BRCMNAND_CS_XOR] = 0x18, 264 [BRCMNAND_LL_OP] = 0x178, 265 [BRCMNAND_CS0_BASE] = 0x40, 266 [BRCMNAND_CS1_BASE] = 0xd0, 267 [BRCMNAND_CORR_THRESHOLD] = 0x84, 268 [BRCMNAND_CORR_THRESHOLD_EXT] = 0, 269 [BRCMNAND_UNCORR_COUNT] = 0, 270 [BRCMNAND_CORR_COUNT] = 0, 271 [BRCMNAND_CORR_EXT_ADDR] = 0x70, 272 [BRCMNAND_CORR_ADDR] = 0x74, 273 [BRCMNAND_UNCORR_EXT_ADDR] = 0x78, 274 [BRCMNAND_UNCORR_ADDR] = 0x7c, 275 [BRCMNAND_SEMAPHORE] = 0x58, 276 [BRCMNAND_ID] = 0x60, 277 [BRCMNAND_ID_EXT] = 0x64, 278 [BRCMNAND_LL_RDATA] = 0x17c, 279 [BRCMNAND_OOB_READ_BASE] = 0x20, 280 [BRCMNAND_OOB_READ_10_BASE] = 0x130, 281 [BRCMNAND_OOB_WRITE_BASE] = 0x30, 282 [BRCMNAND_OOB_WRITE_10_BASE] = 0x140, 283 [BRCMNAND_FC_BASE] = 0x200, 284 }; 285 286 /* BRCMNAND v6.0 - v7.1 */ 287 static const u16 brcmnand_regs_v60[] = { 288 [BRCMNAND_CMD_START] = 0x04, 289 [BRCMNAND_CMD_EXT_ADDRESS] = 0x08, 290 [BRCMNAND_CMD_ADDRESS] = 0x0c, 291 [BRCMNAND_INTFC_STATUS] = 0x14, 292 [BRCMNAND_CS_SELECT] = 0x18, 293 [BRCMNAND_CS_XOR] = 0x1c, 294 [BRCMNAND_LL_OP] = 0x20, 295 [BRCMNAND_CS0_BASE] = 0x50, 296 [BRCMNAND_CS1_BASE] = 0, 297 [BRCMNAND_CORR_THRESHOLD] = 0xc0, 298 [BRCMNAND_CORR_THRESHOLD_EXT] = 0xc4, 299 [BRCMNAND_UNCORR_COUNT] = 0xfc, 300 [BRCMNAND_CORR_COUNT] = 0x100, 301 [BRCMNAND_CORR_EXT_ADDR] = 0x10c, 302 [BRCMNAND_CORR_ADDR] = 0x110, 303 [BRCMNAND_UNCORR_EXT_ADDR] = 0x114, 304 [BRCMNAND_UNCORR_ADDR] = 0x118, 305 [BRCMNAND_SEMAPHORE] = 0x150, 306 [BRCMNAND_ID] = 0x194, 307 [BRCMNAND_ID_EXT] = 0x198, 308 [BRCMNAND_LL_RDATA] = 0x19c, 309 [BRCMNAND_OOB_READ_BASE] = 0x200, 310 [BRCMNAND_OOB_READ_10_BASE] = 0, 311 [BRCMNAND_OOB_WRITE_BASE] = 0x280, 312 [BRCMNAND_OOB_WRITE_10_BASE] = 0, 313 [BRCMNAND_FC_BASE] = 0x400, 314 }; 315 316 /* BRCMNAND v7.1 */ 317 static const u16 brcmnand_regs_v71[] = { 318 [BRCMNAND_CMD_START] = 0x04, 319 [BRCMNAND_CMD_EXT_ADDRESS] = 0x08, 320 [BRCMNAND_CMD_ADDRESS] = 0x0c, 321 [BRCMNAND_INTFC_STATUS] = 0x14, 322 [BRCMNAND_CS_SELECT] = 0x18, 323 [BRCMNAND_CS_XOR] = 0x1c, 324 [BRCMNAND_LL_OP] = 0x20, 325 [BRCMNAND_CS0_BASE] = 0x50, 326 [BRCMNAND_CS1_BASE] = 0, 327 [BRCMNAND_CORR_THRESHOLD] = 0xdc, 328 [BRCMNAND_CORR_THRESHOLD_EXT] = 0xe0, 329 [BRCMNAND_UNCORR_COUNT] = 0xfc, 330 [BRCMNAND_CORR_COUNT] = 0x100, 331 [BRCMNAND_CORR_EXT_ADDR] = 0x10c, 332 [BRCMNAND_CORR_ADDR] = 0x110, 333 [BRCMNAND_UNCORR_EXT_ADDR] = 0x114, 334 [BRCMNAND_UNCORR_ADDR] = 0x118, 335 [BRCMNAND_SEMAPHORE] = 0x150, 336 [BRCMNAND_ID] = 0x194, 337 [BRCMNAND_ID_EXT] = 0x198, 338 [BRCMNAND_LL_RDATA] = 0x19c, 339 [BRCMNAND_OOB_READ_BASE] = 0x200, 340 [BRCMNAND_OOB_READ_10_BASE] = 0, 341 [BRCMNAND_OOB_WRITE_BASE] = 0x280, 342 [BRCMNAND_OOB_WRITE_10_BASE] = 0, 343 [BRCMNAND_FC_BASE] = 0x400, 344 }; 345 346 /* BRCMNAND v7.2 */ 347 static const u16 brcmnand_regs_v72[] = { 348 [BRCMNAND_CMD_START] = 0x04, 349 [BRCMNAND_CMD_EXT_ADDRESS] = 0x08, 350 [BRCMNAND_CMD_ADDRESS] = 0x0c, 351 [BRCMNAND_INTFC_STATUS] = 0x14, 352 [BRCMNAND_CS_SELECT] = 0x18, 353 [BRCMNAND_CS_XOR] = 0x1c, 354 [BRCMNAND_LL_OP] = 0x20, 355 [BRCMNAND_CS0_BASE] = 0x50, 356 [BRCMNAND_CS1_BASE] = 0, 357 [BRCMNAND_CORR_THRESHOLD] = 0xdc, 358 [BRCMNAND_CORR_THRESHOLD_EXT] = 0xe0, 359 [BRCMNAND_UNCORR_COUNT] = 0xfc, 360 [BRCMNAND_CORR_COUNT] = 0x100, 361 [BRCMNAND_CORR_EXT_ADDR] = 0x10c, 362 [BRCMNAND_CORR_ADDR] = 0x110, 363 [BRCMNAND_UNCORR_EXT_ADDR] = 0x114, 364 [BRCMNAND_UNCORR_ADDR] = 0x118, 365 [BRCMNAND_SEMAPHORE] = 0x150, 366 [BRCMNAND_ID] = 0x194, 367 [BRCMNAND_ID_EXT] = 0x198, 368 [BRCMNAND_LL_RDATA] = 0x19c, 369 [BRCMNAND_OOB_READ_BASE] = 0x200, 370 [BRCMNAND_OOB_READ_10_BASE] = 0, 371 [BRCMNAND_OOB_WRITE_BASE] = 0x400, 372 [BRCMNAND_OOB_WRITE_10_BASE] = 0, 373 [BRCMNAND_FC_BASE] = 0x600, 374 }; 375 376 enum brcmnand_cs_reg { 377 BRCMNAND_CS_CFG_EXT = 0, 378 BRCMNAND_CS_CFG, 379 BRCMNAND_CS_ACC_CONTROL, 380 BRCMNAND_CS_TIMING1, 381 BRCMNAND_CS_TIMING2, 382 }; 383 384 /* Per chip-select offsets for v7.1 */ 385 static const u8 brcmnand_cs_offsets_v71[] = { 386 [BRCMNAND_CS_ACC_CONTROL] = 0x00, 387 [BRCMNAND_CS_CFG_EXT] = 0x04, 388 [BRCMNAND_CS_CFG] = 0x08, 389 [BRCMNAND_CS_TIMING1] = 0x0c, 390 [BRCMNAND_CS_TIMING2] = 0x10, 391 }; 392 393 /* Per chip-select offsets for pre v7.1, except CS0 on <= v5.0 */ 394 static const u8 brcmnand_cs_offsets[] = { 395 [BRCMNAND_CS_ACC_CONTROL] = 0x00, 396 [BRCMNAND_CS_CFG_EXT] = 0x04, 397 [BRCMNAND_CS_CFG] = 0x04, 398 [BRCMNAND_CS_TIMING1] = 0x08, 399 [BRCMNAND_CS_TIMING2] = 0x0c, 400 }; 401 402 /* Per chip-select offset for <= v5.0 on CS0 only */ 403 static const u8 brcmnand_cs_offsets_cs0[] = { 404 [BRCMNAND_CS_ACC_CONTROL] = 0x00, 405 [BRCMNAND_CS_CFG_EXT] = 0x08, 406 [BRCMNAND_CS_CFG] = 0x08, 407 [BRCMNAND_CS_TIMING1] = 0x10, 408 [BRCMNAND_CS_TIMING2] = 0x14, 409 }; 410 411 /* 412 * Bitfields for the CFG and CFG_EXT registers. Pre-v7.1 controllers only had 413 * one config register, but once the bitfields overflowed, newer controllers 414 * (v7.1 and newer) added a CFG_EXT register and shuffled a few fields around. 415 */ 416 enum { 417 CFG_BLK_ADR_BYTES_SHIFT = 8, 418 CFG_COL_ADR_BYTES_SHIFT = 12, 419 CFG_FUL_ADR_BYTES_SHIFT = 16, 420 CFG_BUS_WIDTH_SHIFT = 23, 421 CFG_BUS_WIDTH = BIT(CFG_BUS_WIDTH_SHIFT), 422 CFG_DEVICE_SIZE_SHIFT = 24, 423 424 /* Only for pre-v7.1 (with no CFG_EXT register) */ 425 CFG_PAGE_SIZE_SHIFT = 20, 426 CFG_BLK_SIZE_SHIFT = 28, 427 428 /* Only for v7.1+ (with CFG_EXT register) */ 429 CFG_EXT_PAGE_SIZE_SHIFT = 0, 430 CFG_EXT_BLK_SIZE_SHIFT = 4, 431 }; 432 433 /* BRCMNAND_INTFC_STATUS */ 434 enum { 435 INTFC_FLASH_STATUS = GENMASK(7, 0), 436 437 INTFC_ERASED = BIT(27), 438 INTFC_OOB_VALID = BIT(28), 439 INTFC_CACHE_VALID = BIT(29), 440 INTFC_FLASH_READY = BIT(30), 441 INTFC_CTLR_READY = BIT(31), 442 }; 443 444 static inline u32 nand_readreg(struct brcmnand_controller *ctrl, u32 offs) 445 { 446 return brcmnand_readl(ctrl->nand_base + offs); 447 } 448 449 static inline void nand_writereg(struct brcmnand_controller *ctrl, u32 offs, 450 u32 val) 451 { 452 brcmnand_writel(val, ctrl->nand_base + offs); 453 } 454 455 static int brcmnand_revision_init(struct brcmnand_controller *ctrl) 456 { 457 static const unsigned int block_sizes_v6[] = { 8, 16, 128, 256, 512, 1024, 2048, 0 }; 458 static const unsigned int block_sizes_v4[] = { 16, 128, 8, 512, 256, 1024, 2048, 0 }; 459 static const unsigned int page_sizes[] = { 512, 2048, 4096, 8192, 0 }; 460 461 ctrl->nand_version = nand_readreg(ctrl, 0) & 0xffff; 462 463 /* Only support v4.0+? */ 464 if (ctrl->nand_version < 0x0400) { 465 dev_err(ctrl->dev, "version %#x not supported\n", 466 ctrl->nand_version); 467 return -ENODEV; 468 } 469 470 /* Register offsets */ 471 if (ctrl->nand_version >= 0x0702) 472 ctrl->reg_offsets = brcmnand_regs_v72; 473 else if (ctrl->nand_version >= 0x0701) 474 ctrl->reg_offsets = brcmnand_regs_v71; 475 else if (ctrl->nand_version >= 0x0600) 476 ctrl->reg_offsets = brcmnand_regs_v60; 477 else if (ctrl->nand_version >= 0x0500) 478 ctrl->reg_offsets = brcmnand_regs_v50; 479 else if (ctrl->nand_version >= 0x0400) 480 ctrl->reg_offsets = brcmnand_regs_v40; 481 482 /* Chip-select stride */ 483 if (ctrl->nand_version >= 0x0701) 484 ctrl->reg_spacing = 0x14; 485 else 486 ctrl->reg_spacing = 0x10; 487 488 /* Per chip-select registers */ 489 if (ctrl->nand_version >= 0x0701) { 490 ctrl->cs_offsets = brcmnand_cs_offsets_v71; 491 } else { 492 ctrl->cs_offsets = brcmnand_cs_offsets; 493 494 /* v5.0 and earlier has a different CS0 offset layout */ 495 if (ctrl->nand_version <= 0x0500) 496 ctrl->cs0_offsets = brcmnand_cs_offsets_cs0; 497 } 498 499 /* Page / block sizes */ 500 if (ctrl->nand_version >= 0x0701) { 501 /* >= v7.1 use nice power-of-2 values! */ 502 ctrl->max_page_size = 16 * 1024; 503 ctrl->max_block_size = 2 * 1024 * 1024; 504 } else { 505 ctrl->page_sizes = page_sizes; 506 if (ctrl->nand_version >= 0x0600) 507 ctrl->block_sizes = block_sizes_v6; 508 else 509 ctrl->block_sizes = block_sizes_v4; 510 511 if (ctrl->nand_version < 0x0400) { 512 ctrl->max_page_size = 4096; 513 ctrl->max_block_size = 512 * 1024; 514 } 515 } 516 517 /* Maximum spare area sector size (per 512B) */ 518 if (ctrl->nand_version >= 0x0702) 519 ctrl->max_oob = 128; 520 else if (ctrl->nand_version >= 0x0600) 521 ctrl->max_oob = 64; 522 else if (ctrl->nand_version >= 0x0500) 523 ctrl->max_oob = 32; 524 else 525 ctrl->max_oob = 16; 526 527 /* v6.0 and newer (except v6.1) have prefetch support */ 528 if (ctrl->nand_version >= 0x0600 && ctrl->nand_version != 0x0601) 529 ctrl->features |= BRCMNAND_HAS_PREFETCH; 530 531 /* 532 * v6.x has cache mode, but it's implemented differently. Ignore it for 533 * now. 534 */ 535 if (ctrl->nand_version >= 0x0700) 536 ctrl->features |= BRCMNAND_HAS_CACHE_MODE; 537 538 if (ctrl->nand_version >= 0x0500) 539 ctrl->features |= BRCMNAND_HAS_1K_SECTORS; 540 541 if (ctrl->nand_version >= 0x0700) 542 ctrl->features |= BRCMNAND_HAS_WP; 543 else if (of_property_read_bool(ctrl->dev->of_node, "brcm,nand-has-wp")) 544 ctrl->features |= BRCMNAND_HAS_WP; 545 546 return 0; 547 } 548 549 static inline u32 brcmnand_read_reg(struct brcmnand_controller *ctrl, 550 enum brcmnand_reg reg) 551 { 552 u16 offs = ctrl->reg_offsets[reg]; 553 554 if (offs) 555 return nand_readreg(ctrl, offs); 556 else 557 return 0; 558 } 559 560 static inline void brcmnand_write_reg(struct brcmnand_controller *ctrl, 561 enum brcmnand_reg reg, u32 val) 562 { 563 u16 offs = ctrl->reg_offsets[reg]; 564 565 if (offs) 566 nand_writereg(ctrl, offs, val); 567 } 568 569 static inline void brcmnand_rmw_reg(struct brcmnand_controller *ctrl, 570 enum brcmnand_reg reg, u32 mask, unsigned 571 int shift, u32 val) 572 { 573 u32 tmp = brcmnand_read_reg(ctrl, reg); 574 575 tmp &= ~mask; 576 tmp |= val << shift; 577 brcmnand_write_reg(ctrl, reg, tmp); 578 } 579 580 static inline u32 brcmnand_read_fc(struct brcmnand_controller *ctrl, int word) 581 { 582 return __raw_readl(ctrl->nand_fc + word * 4); 583 } 584 585 static inline void brcmnand_write_fc(struct brcmnand_controller *ctrl, 586 int word, u32 val) 587 { 588 __raw_writel(val, ctrl->nand_fc + word * 4); 589 } 590 591 static inline u16 brcmnand_cs_offset(struct brcmnand_controller *ctrl, int cs, 592 enum brcmnand_cs_reg reg) 593 { 594 u16 offs_cs0 = ctrl->reg_offsets[BRCMNAND_CS0_BASE]; 595 u16 offs_cs1 = ctrl->reg_offsets[BRCMNAND_CS1_BASE]; 596 u8 cs_offs; 597 598 if (cs == 0 && ctrl->cs0_offsets) 599 cs_offs = ctrl->cs0_offsets[reg]; 600 else 601 cs_offs = ctrl->cs_offsets[reg]; 602 603 if (cs && offs_cs1) 604 return offs_cs1 + (cs - 1) * ctrl->reg_spacing + cs_offs; 605 606 return offs_cs0 + cs * ctrl->reg_spacing + cs_offs; 607 } 608 609 static inline u32 brcmnand_count_corrected(struct brcmnand_controller *ctrl) 610 { 611 if (ctrl->nand_version < 0x0600) 612 return 1; 613 return brcmnand_read_reg(ctrl, BRCMNAND_CORR_COUNT); 614 } 615 616 static void brcmnand_wr_corr_thresh(struct brcmnand_host *host, u8 val) 617 { 618 struct brcmnand_controller *ctrl = host->ctrl; 619 unsigned int shift = 0, bits; 620 enum brcmnand_reg reg = BRCMNAND_CORR_THRESHOLD; 621 int cs = host->cs; 622 623 if (ctrl->nand_version >= 0x0702) 624 bits = 7; 625 else if (ctrl->nand_version >= 0x0600) 626 bits = 6; 627 else if (ctrl->nand_version >= 0x0500) 628 bits = 5; 629 else 630 bits = 4; 631 632 if (ctrl->nand_version >= 0x0702) { 633 if (cs >= 4) 634 reg = BRCMNAND_CORR_THRESHOLD_EXT; 635 shift = (cs % 4) * bits; 636 } else if (ctrl->nand_version >= 0x0600) { 637 if (cs >= 5) 638 reg = BRCMNAND_CORR_THRESHOLD_EXT; 639 shift = (cs % 5) * bits; 640 } 641 brcmnand_rmw_reg(ctrl, reg, (bits - 1) << shift, shift, val); 642 } 643 644 static inline int brcmnand_cmd_shift(struct brcmnand_controller *ctrl) 645 { 646 if (ctrl->nand_version < 0x0602) 647 return 24; 648 return 0; 649 } 650 651 /*********************************************************************** 652 * NAND ACC CONTROL bitfield 653 * 654 * Some bits have remained constant throughout hardware revision, while 655 * others have shifted around. 656 ***********************************************************************/ 657 658 /* Constant for all versions (where supported) */ 659 enum { 660 /* See BRCMNAND_HAS_CACHE_MODE */ 661 ACC_CONTROL_CACHE_MODE = BIT(22), 662 663 /* See BRCMNAND_HAS_PREFETCH */ 664 ACC_CONTROL_PREFETCH = BIT(23), 665 666 ACC_CONTROL_PAGE_HIT = BIT(24), 667 ACC_CONTROL_WR_PREEMPT = BIT(25), 668 ACC_CONTROL_PARTIAL_PAGE = BIT(26), 669 ACC_CONTROL_RD_ERASED = BIT(27), 670 ACC_CONTROL_FAST_PGM_RDIN = BIT(28), 671 ACC_CONTROL_WR_ECC = BIT(30), 672 ACC_CONTROL_RD_ECC = BIT(31), 673 }; 674 675 static inline u32 brcmnand_spare_area_mask(struct brcmnand_controller *ctrl) 676 { 677 if (ctrl->nand_version >= 0x0702) 678 return GENMASK(7, 0); 679 else if (ctrl->nand_version >= 0x0600) 680 return GENMASK(6, 0); 681 else 682 return GENMASK(5, 0); 683 } 684 685 #define NAND_ACC_CONTROL_ECC_SHIFT 16 686 #define NAND_ACC_CONTROL_ECC_EXT_SHIFT 13 687 688 static inline u32 brcmnand_ecc_level_mask(struct brcmnand_controller *ctrl) 689 { 690 u32 mask = (ctrl->nand_version >= 0x0600) ? 0x1f : 0x0f; 691 692 mask <<= NAND_ACC_CONTROL_ECC_SHIFT; 693 694 /* v7.2 includes additional ECC levels */ 695 if (ctrl->nand_version >= 0x0702) 696 mask |= 0x7 << NAND_ACC_CONTROL_ECC_EXT_SHIFT; 697 698 return mask; 699 } 700 701 static void brcmnand_set_ecc_enabled(struct brcmnand_host *host, int en) 702 { 703 struct brcmnand_controller *ctrl = host->ctrl; 704 u16 offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_ACC_CONTROL); 705 u32 acc_control = nand_readreg(ctrl, offs); 706 u32 ecc_flags = ACC_CONTROL_WR_ECC | ACC_CONTROL_RD_ECC; 707 708 if (en) { 709 acc_control |= ecc_flags; /* enable RD/WR ECC */ 710 acc_control |= host->hwcfg.ecc_level 711 << NAND_ACC_CONTROL_ECC_SHIFT; 712 } else { 713 acc_control &= ~ecc_flags; /* disable RD/WR ECC */ 714 acc_control &= ~brcmnand_ecc_level_mask(ctrl); 715 } 716 717 nand_writereg(ctrl, offs, acc_control); 718 } 719 720 static inline int brcmnand_sector_1k_shift(struct brcmnand_controller *ctrl) 721 { 722 if (ctrl->nand_version >= 0x0702) 723 return 9; 724 else if (ctrl->nand_version >= 0x0600) 725 return 7; 726 else if (ctrl->nand_version >= 0x0500) 727 return 6; 728 else 729 return -1; 730 } 731 732 static int brcmnand_get_sector_size_1k(struct brcmnand_host *host) 733 { 734 struct brcmnand_controller *ctrl = host->ctrl; 735 int shift = brcmnand_sector_1k_shift(ctrl); 736 u16 acc_control_offs = brcmnand_cs_offset(ctrl, host->cs, 737 BRCMNAND_CS_ACC_CONTROL); 738 739 if (shift < 0) 740 return 0; 741 742 return (nand_readreg(ctrl, acc_control_offs) >> shift) & 0x1; 743 } 744 745 static void brcmnand_set_sector_size_1k(struct brcmnand_host *host, int val) 746 { 747 struct brcmnand_controller *ctrl = host->ctrl; 748 int shift = brcmnand_sector_1k_shift(ctrl); 749 u16 acc_control_offs = brcmnand_cs_offset(ctrl, host->cs, 750 BRCMNAND_CS_ACC_CONTROL); 751 u32 tmp; 752 753 if (shift < 0) 754 return; 755 756 tmp = nand_readreg(ctrl, acc_control_offs); 757 tmp &= ~(1 << shift); 758 tmp |= (!!val) << shift; 759 nand_writereg(ctrl, acc_control_offs, tmp); 760 } 761 762 /*********************************************************************** 763 * CS_NAND_SELECT 764 ***********************************************************************/ 765 766 enum { 767 CS_SELECT_NAND_WP = BIT(29), 768 CS_SELECT_AUTO_DEVICE_ID_CFG = BIT(30), 769 }; 770 771 static int bcmnand_ctrl_poll_status(struct brcmnand_controller *ctrl, 772 u32 mask, u32 expected_val, 773 unsigned long timeout_ms) 774 { 775 unsigned long limit; 776 u32 val; 777 778 if (!timeout_ms) 779 timeout_ms = NAND_POLL_STATUS_TIMEOUT_MS; 780 781 limit = jiffies + msecs_to_jiffies(timeout_ms); 782 do { 783 val = brcmnand_read_reg(ctrl, BRCMNAND_INTFC_STATUS); 784 if ((val & mask) == expected_val) 785 return 0; 786 787 cpu_relax(); 788 } while (time_after(limit, jiffies)); 789 790 dev_warn(ctrl->dev, "timeout on status poll (expected %x got %x)\n", 791 expected_val, val & mask); 792 793 return -ETIMEDOUT; 794 } 795 796 static inline void brcmnand_set_wp(struct brcmnand_controller *ctrl, bool en) 797 { 798 u32 val = en ? CS_SELECT_NAND_WP : 0; 799 800 brcmnand_rmw_reg(ctrl, BRCMNAND_CS_SELECT, CS_SELECT_NAND_WP, 0, val); 801 } 802 803 /*********************************************************************** 804 * Flash DMA 805 ***********************************************************************/ 806 807 enum flash_dma_reg { 808 FLASH_DMA_REVISION = 0x00, 809 FLASH_DMA_FIRST_DESC = 0x04, 810 FLASH_DMA_FIRST_DESC_EXT = 0x08, 811 FLASH_DMA_CTRL = 0x0c, 812 FLASH_DMA_MODE = 0x10, 813 FLASH_DMA_STATUS = 0x14, 814 FLASH_DMA_INTERRUPT_DESC = 0x18, 815 FLASH_DMA_INTERRUPT_DESC_EXT = 0x1c, 816 FLASH_DMA_ERROR_STATUS = 0x20, 817 FLASH_DMA_CURRENT_DESC = 0x24, 818 FLASH_DMA_CURRENT_DESC_EXT = 0x28, 819 }; 820 821 static inline bool has_flash_dma(struct brcmnand_controller *ctrl) 822 { 823 return ctrl->flash_dma_base; 824 } 825 826 static inline bool flash_dma_buf_ok(const void *buf) 827 { 828 return buf && !is_vmalloc_addr(buf) && 829 likely(IS_ALIGNED((uintptr_t)buf, 4)); 830 } 831 832 static inline void flash_dma_writel(struct brcmnand_controller *ctrl, u8 offs, 833 u32 val) 834 { 835 brcmnand_writel(val, ctrl->flash_dma_base + offs); 836 } 837 838 static inline u32 flash_dma_readl(struct brcmnand_controller *ctrl, u8 offs) 839 { 840 return brcmnand_readl(ctrl->flash_dma_base + offs); 841 } 842 843 /* Low-level operation types: command, address, write, or read */ 844 enum brcmnand_llop_type { 845 LL_OP_CMD, 846 LL_OP_ADDR, 847 LL_OP_WR, 848 LL_OP_RD, 849 }; 850 851 /*********************************************************************** 852 * Internal support functions 853 ***********************************************************************/ 854 855 static inline bool is_hamming_ecc(struct brcmnand_controller *ctrl, 856 struct brcmnand_cfg *cfg) 857 { 858 if (ctrl->nand_version <= 0x0701) 859 return cfg->sector_size_1k == 0 && cfg->spare_area_size == 16 && 860 cfg->ecc_level == 15; 861 else 862 return cfg->sector_size_1k == 0 && ((cfg->spare_area_size == 16 && 863 cfg->ecc_level == 15) || 864 (cfg->spare_area_size == 28 && cfg->ecc_level == 16)); 865 } 866 867 /* 868 * Set mtd->ooblayout to the appropriate mtd_ooblayout_ops given 869 * the layout/configuration. 870 * Returns -ERRCODE on failure. 871 */ 872 static int brcmnand_hamming_ooblayout_ecc(struct mtd_info *mtd, int section, 873 struct mtd_oob_region *oobregion) 874 { 875 struct nand_chip *chip = mtd_to_nand(mtd); 876 struct brcmnand_host *host = nand_get_controller_data(chip); 877 struct brcmnand_cfg *cfg = &host->hwcfg; 878 int sas = cfg->spare_area_size << cfg->sector_size_1k; 879 int sectors = cfg->page_size / (512 << cfg->sector_size_1k); 880 881 if (section >= sectors) 882 return -ERANGE; 883 884 oobregion->offset = (section * sas) + 6; 885 oobregion->length = 3; 886 887 return 0; 888 } 889 890 static int brcmnand_hamming_ooblayout_free(struct mtd_info *mtd, int section, 891 struct mtd_oob_region *oobregion) 892 { 893 struct nand_chip *chip = mtd_to_nand(mtd); 894 struct brcmnand_host *host = nand_get_controller_data(chip); 895 struct brcmnand_cfg *cfg = &host->hwcfg; 896 int sas = cfg->spare_area_size << cfg->sector_size_1k; 897 int sectors = cfg->page_size / (512 << cfg->sector_size_1k); 898 899 if (section >= sectors * 2) 900 return -ERANGE; 901 902 oobregion->offset = (section / 2) * sas; 903 904 if (section & 1) { 905 oobregion->offset += 9; 906 oobregion->length = 7; 907 } else { 908 oobregion->length = 6; 909 910 /* First sector of each page may have BBI */ 911 if (!section) { 912 /* 913 * Small-page NAND use byte 6 for BBI while large-page 914 * NAND use byte 0. 915 */ 916 if (cfg->page_size > 512) 917 oobregion->offset++; 918 oobregion->length--; 919 } 920 } 921 922 return 0; 923 } 924 925 static const struct mtd_ooblayout_ops brcmnand_hamming_ooblayout_ops = { 926 .ecc = brcmnand_hamming_ooblayout_ecc, 927 .free = brcmnand_hamming_ooblayout_free, 928 }; 929 930 static int brcmnand_bch_ooblayout_ecc(struct mtd_info *mtd, int section, 931 struct mtd_oob_region *oobregion) 932 { 933 struct nand_chip *chip = mtd_to_nand(mtd); 934 struct brcmnand_host *host = nand_get_controller_data(chip); 935 struct brcmnand_cfg *cfg = &host->hwcfg; 936 int sas = cfg->spare_area_size << cfg->sector_size_1k; 937 int sectors = cfg->page_size / (512 << cfg->sector_size_1k); 938 939 if (section >= sectors) 940 return -ERANGE; 941 942 oobregion->offset = (section * (sas + 1)) - chip->ecc.bytes; 943 oobregion->length = chip->ecc.bytes; 944 945 return 0; 946 } 947 948 static int brcmnand_bch_ooblayout_free_lp(struct mtd_info *mtd, int section, 949 struct mtd_oob_region *oobregion) 950 { 951 struct nand_chip *chip = mtd_to_nand(mtd); 952 struct brcmnand_host *host = nand_get_controller_data(chip); 953 struct brcmnand_cfg *cfg = &host->hwcfg; 954 int sas = cfg->spare_area_size << cfg->sector_size_1k; 955 int sectors = cfg->page_size / (512 << cfg->sector_size_1k); 956 957 if (section >= sectors) 958 return -ERANGE; 959 960 if (sas <= chip->ecc.bytes) 961 return 0; 962 963 oobregion->offset = section * sas; 964 oobregion->length = sas - chip->ecc.bytes; 965 966 if (!section) { 967 oobregion->offset++; 968 oobregion->length--; 969 } 970 971 return 0; 972 } 973 974 static int brcmnand_bch_ooblayout_free_sp(struct mtd_info *mtd, int section, 975 struct mtd_oob_region *oobregion) 976 { 977 struct nand_chip *chip = mtd_to_nand(mtd); 978 struct brcmnand_host *host = nand_get_controller_data(chip); 979 struct brcmnand_cfg *cfg = &host->hwcfg; 980 int sas = cfg->spare_area_size << cfg->sector_size_1k; 981 982 if (section > 1 || sas - chip->ecc.bytes < 6 || 983 (section && sas - chip->ecc.bytes == 6)) 984 return -ERANGE; 985 986 if (!section) { 987 oobregion->offset = 0; 988 oobregion->length = 5; 989 } else { 990 oobregion->offset = 6; 991 oobregion->length = sas - chip->ecc.bytes - 6; 992 } 993 994 return 0; 995 } 996 997 static const struct mtd_ooblayout_ops brcmnand_bch_lp_ooblayout_ops = { 998 .ecc = brcmnand_bch_ooblayout_ecc, 999 .free = brcmnand_bch_ooblayout_free_lp, 1000 }; 1001 1002 static const struct mtd_ooblayout_ops brcmnand_bch_sp_ooblayout_ops = { 1003 .ecc = brcmnand_bch_ooblayout_ecc, 1004 .free = brcmnand_bch_ooblayout_free_sp, 1005 }; 1006 1007 static int brcmstb_choose_ecc_layout(struct brcmnand_host *host) 1008 { 1009 struct brcmnand_cfg *p = &host->hwcfg; 1010 struct mtd_info *mtd = nand_to_mtd(&host->chip); 1011 struct nand_ecc_ctrl *ecc = &host->chip.ecc; 1012 unsigned int ecc_level = p->ecc_level; 1013 int sas = p->spare_area_size << p->sector_size_1k; 1014 int sectors = p->page_size / (512 << p->sector_size_1k); 1015 1016 if (p->sector_size_1k) 1017 ecc_level <<= 1; 1018 1019 if (is_hamming_ecc(host->ctrl, p)) { 1020 ecc->bytes = 3 * sectors; 1021 mtd_set_ooblayout(mtd, &brcmnand_hamming_ooblayout_ops); 1022 return 0; 1023 } 1024 1025 /* 1026 * CONTROLLER_VERSION: 1027 * < v5.0: ECC_REQ = ceil(BCH_T * 13/8) 1028 * >= v5.0: ECC_REQ = ceil(BCH_T * 14/8) 1029 * But we will just be conservative. 1030 */ 1031 ecc->bytes = DIV_ROUND_UP(ecc_level * 14, 8); 1032 if (p->page_size == 512) 1033 mtd_set_ooblayout(mtd, &brcmnand_bch_sp_ooblayout_ops); 1034 else 1035 mtd_set_ooblayout(mtd, &brcmnand_bch_lp_ooblayout_ops); 1036 1037 if (ecc->bytes >= sas) { 1038 dev_err(&host->pdev->dev, 1039 "error: ECC too large for OOB (ECC bytes %d, spare sector %d)\n", 1040 ecc->bytes, sas); 1041 return -EINVAL; 1042 } 1043 1044 return 0; 1045 } 1046 1047 static void brcmnand_wp(struct mtd_info *mtd, int wp) 1048 { 1049 struct nand_chip *chip = mtd_to_nand(mtd); 1050 struct brcmnand_host *host = nand_get_controller_data(chip); 1051 struct brcmnand_controller *ctrl = host->ctrl; 1052 1053 if ((ctrl->features & BRCMNAND_HAS_WP) && wp_on == 1) { 1054 static int old_wp = -1; 1055 int ret; 1056 1057 if (old_wp != wp) { 1058 dev_dbg(ctrl->dev, "WP %s\n", wp ? "on" : "off"); 1059 old_wp = wp; 1060 } 1061 1062 /* 1063 * make sure ctrl/flash ready before and after 1064 * changing state of #WP pin 1065 */ 1066 ret = bcmnand_ctrl_poll_status(ctrl, NAND_CTRL_RDY | 1067 NAND_STATUS_READY, 1068 NAND_CTRL_RDY | 1069 NAND_STATUS_READY, 0); 1070 if (ret) 1071 return; 1072 1073 brcmnand_set_wp(ctrl, wp); 1074 nand_status_op(chip, NULL); 1075 /* NAND_STATUS_WP 0x00 = protected, 0x80 = not protected */ 1076 ret = bcmnand_ctrl_poll_status(ctrl, 1077 NAND_CTRL_RDY | 1078 NAND_STATUS_READY | 1079 NAND_STATUS_WP, 1080 NAND_CTRL_RDY | 1081 NAND_STATUS_READY | 1082 (wp ? 0 : NAND_STATUS_WP), 0); 1083 1084 if (ret) 1085 dev_err_ratelimited(&host->pdev->dev, 1086 "nand #WP expected %s\n", 1087 wp ? "on" : "off"); 1088 } 1089 } 1090 1091 /* Helper functions for reading and writing OOB registers */ 1092 static inline u8 oob_reg_read(struct brcmnand_controller *ctrl, u32 offs) 1093 { 1094 u16 offset0, offset10, reg_offs; 1095 1096 offset0 = ctrl->reg_offsets[BRCMNAND_OOB_READ_BASE]; 1097 offset10 = ctrl->reg_offsets[BRCMNAND_OOB_READ_10_BASE]; 1098 1099 if (offs >= ctrl->max_oob) 1100 return 0x77; 1101 1102 if (offs >= 16 && offset10) 1103 reg_offs = offset10 + ((offs - 0x10) & ~0x03); 1104 else 1105 reg_offs = offset0 + (offs & ~0x03); 1106 1107 return nand_readreg(ctrl, reg_offs) >> (24 - ((offs & 0x03) << 3)); 1108 } 1109 1110 static inline void oob_reg_write(struct brcmnand_controller *ctrl, u32 offs, 1111 u32 data) 1112 { 1113 u16 offset0, offset10, reg_offs; 1114 1115 offset0 = ctrl->reg_offsets[BRCMNAND_OOB_WRITE_BASE]; 1116 offset10 = ctrl->reg_offsets[BRCMNAND_OOB_WRITE_10_BASE]; 1117 1118 if (offs >= ctrl->max_oob) 1119 return; 1120 1121 if (offs >= 16 && offset10) 1122 reg_offs = offset10 + ((offs - 0x10) & ~0x03); 1123 else 1124 reg_offs = offset0 + (offs & ~0x03); 1125 1126 nand_writereg(ctrl, reg_offs, data); 1127 } 1128 1129 /* 1130 * read_oob_from_regs - read data from OOB registers 1131 * @ctrl: NAND controller 1132 * @i: sub-page sector index 1133 * @oob: buffer to read to 1134 * @sas: spare area sector size (i.e., OOB size per FLASH_CACHE) 1135 * @sector_1k: 1 for 1KiB sectors, 0 for 512B, other values are illegal 1136 */ 1137 static int read_oob_from_regs(struct brcmnand_controller *ctrl, int i, u8 *oob, 1138 int sas, int sector_1k) 1139 { 1140 int tbytes = sas << sector_1k; 1141 int j; 1142 1143 /* Adjust OOB values for 1K sector size */ 1144 if (sector_1k && (i & 0x01)) 1145 tbytes = max(0, tbytes - (int)ctrl->max_oob); 1146 tbytes = min_t(int, tbytes, ctrl->max_oob); 1147 1148 for (j = 0; j < tbytes; j++) 1149 oob[j] = oob_reg_read(ctrl, j); 1150 return tbytes; 1151 } 1152 1153 /* 1154 * write_oob_to_regs - write data to OOB registers 1155 * @i: sub-page sector index 1156 * @oob: buffer to write from 1157 * @sas: spare area sector size (i.e., OOB size per FLASH_CACHE) 1158 * @sector_1k: 1 for 1KiB sectors, 0 for 512B, other values are illegal 1159 */ 1160 static int write_oob_to_regs(struct brcmnand_controller *ctrl, int i, 1161 const u8 *oob, int sas, int sector_1k) 1162 { 1163 int tbytes = sas << sector_1k; 1164 int j; 1165 1166 /* Adjust OOB values for 1K sector size */ 1167 if (sector_1k && (i & 0x01)) 1168 tbytes = max(0, tbytes - (int)ctrl->max_oob); 1169 tbytes = min_t(int, tbytes, ctrl->max_oob); 1170 1171 for (j = 0; j < tbytes; j += 4) 1172 oob_reg_write(ctrl, j, 1173 (oob[j + 0] << 24) | 1174 (oob[j + 1] << 16) | 1175 (oob[j + 2] << 8) | 1176 (oob[j + 3] << 0)); 1177 return tbytes; 1178 } 1179 1180 static irqreturn_t brcmnand_ctlrdy_irq(int irq, void *data) 1181 { 1182 struct brcmnand_controller *ctrl = data; 1183 1184 /* Discard all NAND_CTLRDY interrupts during DMA */ 1185 if (ctrl->dma_pending) 1186 return IRQ_HANDLED; 1187 1188 complete(&ctrl->done); 1189 return IRQ_HANDLED; 1190 } 1191 1192 /* Handle SoC-specific interrupt hardware */ 1193 static irqreturn_t brcmnand_irq(int irq, void *data) 1194 { 1195 struct brcmnand_controller *ctrl = data; 1196 1197 if (ctrl->soc->ctlrdy_ack(ctrl->soc)) 1198 return brcmnand_ctlrdy_irq(irq, data); 1199 1200 return IRQ_NONE; 1201 } 1202 1203 static irqreturn_t brcmnand_dma_irq(int irq, void *data) 1204 { 1205 struct brcmnand_controller *ctrl = data; 1206 1207 complete(&ctrl->dma_done); 1208 1209 return IRQ_HANDLED; 1210 } 1211 1212 static void brcmnand_send_cmd(struct brcmnand_host *host, int cmd) 1213 { 1214 struct brcmnand_controller *ctrl = host->ctrl; 1215 int ret; 1216 1217 dev_dbg(ctrl->dev, "send native cmd %d addr_lo 0x%x\n", cmd, 1218 brcmnand_read_reg(ctrl, BRCMNAND_CMD_ADDRESS)); 1219 BUG_ON(ctrl->cmd_pending != 0); 1220 ctrl->cmd_pending = cmd; 1221 1222 ret = bcmnand_ctrl_poll_status(ctrl, NAND_CTRL_RDY, NAND_CTRL_RDY, 0); 1223 WARN_ON(ret); 1224 1225 mb(); /* flush previous writes */ 1226 brcmnand_write_reg(ctrl, BRCMNAND_CMD_START, 1227 cmd << brcmnand_cmd_shift(ctrl)); 1228 } 1229 1230 /*********************************************************************** 1231 * NAND MTD API: read/program/erase 1232 ***********************************************************************/ 1233 1234 static void brcmnand_cmd_ctrl(struct nand_chip *chip, int dat, 1235 unsigned int ctrl) 1236 { 1237 /* intentionally left blank */ 1238 } 1239 1240 static int brcmnand_waitfunc(struct nand_chip *chip) 1241 { 1242 struct brcmnand_host *host = nand_get_controller_data(chip); 1243 struct brcmnand_controller *ctrl = host->ctrl; 1244 unsigned long timeo = msecs_to_jiffies(100); 1245 1246 dev_dbg(ctrl->dev, "wait on native cmd %d\n", ctrl->cmd_pending); 1247 if (ctrl->cmd_pending && 1248 wait_for_completion_timeout(&ctrl->done, timeo) <= 0) { 1249 u32 cmd = brcmnand_read_reg(ctrl, BRCMNAND_CMD_START) 1250 >> brcmnand_cmd_shift(ctrl); 1251 1252 dev_err_ratelimited(ctrl->dev, 1253 "timeout waiting for command %#02x\n", cmd); 1254 dev_err_ratelimited(ctrl->dev, "intfc status %08x\n", 1255 brcmnand_read_reg(ctrl, BRCMNAND_INTFC_STATUS)); 1256 } 1257 ctrl->cmd_pending = 0; 1258 return brcmnand_read_reg(ctrl, BRCMNAND_INTFC_STATUS) & 1259 INTFC_FLASH_STATUS; 1260 } 1261 1262 enum { 1263 LLOP_RE = BIT(16), 1264 LLOP_WE = BIT(17), 1265 LLOP_ALE = BIT(18), 1266 LLOP_CLE = BIT(19), 1267 LLOP_RETURN_IDLE = BIT(31), 1268 1269 LLOP_DATA_MASK = GENMASK(15, 0), 1270 }; 1271 1272 static int brcmnand_low_level_op(struct brcmnand_host *host, 1273 enum brcmnand_llop_type type, u32 data, 1274 bool last_op) 1275 { 1276 struct nand_chip *chip = &host->chip; 1277 struct brcmnand_controller *ctrl = host->ctrl; 1278 u32 tmp; 1279 1280 tmp = data & LLOP_DATA_MASK; 1281 switch (type) { 1282 case LL_OP_CMD: 1283 tmp |= LLOP_WE | LLOP_CLE; 1284 break; 1285 case LL_OP_ADDR: 1286 /* WE | ALE */ 1287 tmp |= LLOP_WE | LLOP_ALE; 1288 break; 1289 case LL_OP_WR: 1290 /* WE */ 1291 tmp |= LLOP_WE; 1292 break; 1293 case LL_OP_RD: 1294 /* RE */ 1295 tmp |= LLOP_RE; 1296 break; 1297 } 1298 if (last_op) 1299 /* RETURN_IDLE */ 1300 tmp |= LLOP_RETURN_IDLE; 1301 1302 dev_dbg(ctrl->dev, "ll_op cmd %#x\n", tmp); 1303 1304 brcmnand_write_reg(ctrl, BRCMNAND_LL_OP, tmp); 1305 (void)brcmnand_read_reg(ctrl, BRCMNAND_LL_OP); 1306 1307 brcmnand_send_cmd(host, CMD_LOW_LEVEL_OP); 1308 return brcmnand_waitfunc(chip); 1309 } 1310 1311 static void brcmnand_cmdfunc(struct nand_chip *chip, unsigned command, 1312 int column, int page_addr) 1313 { 1314 struct mtd_info *mtd = nand_to_mtd(chip); 1315 struct brcmnand_host *host = nand_get_controller_data(chip); 1316 struct brcmnand_controller *ctrl = host->ctrl; 1317 u64 addr = (u64)page_addr << chip->page_shift; 1318 int native_cmd = 0; 1319 1320 if (command == NAND_CMD_READID || command == NAND_CMD_PARAM || 1321 command == NAND_CMD_RNDOUT) 1322 addr = (u64)column; 1323 /* Avoid propagating a negative, don't-care address */ 1324 else if (page_addr < 0) 1325 addr = 0; 1326 1327 dev_dbg(ctrl->dev, "cmd 0x%x addr 0x%llx\n", command, 1328 (unsigned long long)addr); 1329 1330 host->last_cmd = command; 1331 host->last_byte = 0; 1332 host->last_addr = addr; 1333 1334 switch (command) { 1335 case NAND_CMD_RESET: 1336 native_cmd = CMD_FLASH_RESET; 1337 break; 1338 case NAND_CMD_STATUS: 1339 native_cmd = CMD_STATUS_READ; 1340 break; 1341 case NAND_CMD_READID: 1342 native_cmd = CMD_DEVICE_ID_READ; 1343 break; 1344 case NAND_CMD_READOOB: 1345 native_cmd = CMD_SPARE_AREA_READ; 1346 break; 1347 case NAND_CMD_ERASE1: 1348 native_cmd = CMD_BLOCK_ERASE; 1349 brcmnand_wp(mtd, 0); 1350 break; 1351 case NAND_CMD_PARAM: 1352 native_cmd = CMD_PARAMETER_READ; 1353 break; 1354 case NAND_CMD_SET_FEATURES: 1355 case NAND_CMD_GET_FEATURES: 1356 brcmnand_low_level_op(host, LL_OP_CMD, command, false); 1357 brcmnand_low_level_op(host, LL_OP_ADDR, column, false); 1358 break; 1359 case NAND_CMD_RNDOUT: 1360 native_cmd = CMD_PARAMETER_CHANGE_COL; 1361 addr &= ~((u64)(FC_BYTES - 1)); 1362 /* 1363 * HW quirk: PARAMETER_CHANGE_COL requires SECTOR_SIZE_1K=0 1364 * NB: hwcfg.sector_size_1k may not be initialized yet 1365 */ 1366 if (brcmnand_get_sector_size_1k(host)) { 1367 host->hwcfg.sector_size_1k = 1368 brcmnand_get_sector_size_1k(host); 1369 brcmnand_set_sector_size_1k(host, 0); 1370 } 1371 break; 1372 } 1373 1374 if (!native_cmd) 1375 return; 1376 1377 brcmnand_write_reg(ctrl, BRCMNAND_CMD_EXT_ADDRESS, 1378 (host->cs << 16) | ((addr >> 32) & 0xffff)); 1379 (void)brcmnand_read_reg(ctrl, BRCMNAND_CMD_EXT_ADDRESS); 1380 brcmnand_write_reg(ctrl, BRCMNAND_CMD_ADDRESS, lower_32_bits(addr)); 1381 (void)brcmnand_read_reg(ctrl, BRCMNAND_CMD_ADDRESS); 1382 1383 brcmnand_send_cmd(host, native_cmd); 1384 brcmnand_waitfunc(chip); 1385 1386 if (native_cmd == CMD_PARAMETER_READ || 1387 native_cmd == CMD_PARAMETER_CHANGE_COL) { 1388 /* Copy flash cache word-wise */ 1389 u32 *flash_cache = (u32 *)ctrl->flash_cache; 1390 int i; 1391 1392 brcmnand_soc_data_bus_prepare(ctrl->soc, true); 1393 1394 /* 1395 * Must cache the FLASH_CACHE now, since changes in 1396 * SECTOR_SIZE_1K may invalidate it 1397 */ 1398 for (i = 0; i < FC_WORDS; i++) 1399 /* 1400 * Flash cache is big endian for parameter pages, at 1401 * least on STB SoCs 1402 */ 1403 flash_cache[i] = be32_to_cpu(brcmnand_read_fc(ctrl, i)); 1404 1405 brcmnand_soc_data_bus_unprepare(ctrl->soc, true); 1406 1407 /* Cleanup from HW quirk: restore SECTOR_SIZE_1K */ 1408 if (host->hwcfg.sector_size_1k) 1409 brcmnand_set_sector_size_1k(host, 1410 host->hwcfg.sector_size_1k); 1411 } 1412 1413 /* Re-enable protection is necessary only after erase */ 1414 if (command == NAND_CMD_ERASE1) 1415 brcmnand_wp(mtd, 1); 1416 } 1417 1418 static uint8_t brcmnand_read_byte(struct nand_chip *chip) 1419 { 1420 struct brcmnand_host *host = nand_get_controller_data(chip); 1421 struct brcmnand_controller *ctrl = host->ctrl; 1422 uint8_t ret = 0; 1423 int addr, offs; 1424 1425 switch (host->last_cmd) { 1426 case NAND_CMD_READID: 1427 if (host->last_byte < 4) 1428 ret = brcmnand_read_reg(ctrl, BRCMNAND_ID) >> 1429 (24 - (host->last_byte << 3)); 1430 else if (host->last_byte < 8) 1431 ret = brcmnand_read_reg(ctrl, BRCMNAND_ID_EXT) >> 1432 (56 - (host->last_byte << 3)); 1433 break; 1434 1435 case NAND_CMD_READOOB: 1436 ret = oob_reg_read(ctrl, host->last_byte); 1437 break; 1438 1439 case NAND_CMD_STATUS: 1440 ret = brcmnand_read_reg(ctrl, BRCMNAND_INTFC_STATUS) & 1441 INTFC_FLASH_STATUS; 1442 if (wp_on) /* hide WP status */ 1443 ret |= NAND_STATUS_WP; 1444 break; 1445 1446 case NAND_CMD_PARAM: 1447 case NAND_CMD_RNDOUT: 1448 addr = host->last_addr + host->last_byte; 1449 offs = addr & (FC_BYTES - 1); 1450 1451 /* At FC_BYTES boundary, switch to next column */ 1452 if (host->last_byte > 0 && offs == 0) 1453 nand_change_read_column_op(chip, addr, NULL, 0, false); 1454 1455 ret = ctrl->flash_cache[offs]; 1456 break; 1457 case NAND_CMD_GET_FEATURES: 1458 if (host->last_byte >= ONFI_SUBFEATURE_PARAM_LEN) { 1459 ret = 0; 1460 } else { 1461 bool last = host->last_byte == 1462 ONFI_SUBFEATURE_PARAM_LEN - 1; 1463 brcmnand_low_level_op(host, LL_OP_RD, 0, last); 1464 ret = brcmnand_read_reg(ctrl, BRCMNAND_LL_RDATA) & 0xff; 1465 } 1466 } 1467 1468 dev_dbg(ctrl->dev, "read byte = 0x%02x\n", ret); 1469 host->last_byte++; 1470 1471 return ret; 1472 } 1473 1474 static void brcmnand_read_buf(struct nand_chip *chip, uint8_t *buf, int len) 1475 { 1476 int i; 1477 1478 for (i = 0; i < len; i++, buf++) 1479 *buf = brcmnand_read_byte(chip); 1480 } 1481 1482 static void brcmnand_write_buf(struct nand_chip *chip, const uint8_t *buf, 1483 int len) 1484 { 1485 int i; 1486 struct brcmnand_host *host = nand_get_controller_data(chip); 1487 1488 switch (host->last_cmd) { 1489 case NAND_CMD_SET_FEATURES: 1490 for (i = 0; i < len; i++) 1491 brcmnand_low_level_op(host, LL_OP_WR, buf[i], 1492 (i + 1) == len); 1493 break; 1494 default: 1495 BUG(); 1496 break; 1497 } 1498 } 1499 1500 /** 1501 * Construct a FLASH_DMA descriptor as part of a linked list. You must know the 1502 * following ahead of time: 1503 * - Is this descriptor the beginning or end of a linked list? 1504 * - What is the (DMA) address of the next descriptor in the linked list? 1505 */ 1506 static int brcmnand_fill_dma_desc(struct brcmnand_host *host, 1507 struct brcm_nand_dma_desc *desc, u64 addr, 1508 dma_addr_t buf, u32 len, u8 dma_cmd, 1509 bool begin, bool end, 1510 dma_addr_t next_desc) 1511 { 1512 memset(desc, 0, sizeof(*desc)); 1513 /* Descriptors are written in native byte order (wordwise) */ 1514 desc->next_desc = lower_32_bits(next_desc); 1515 desc->next_desc_ext = upper_32_bits(next_desc); 1516 desc->cmd_irq = (dma_cmd << 24) | 1517 (end ? (0x03 << 8) : 0) | /* IRQ | STOP */ 1518 (!!begin) | ((!!end) << 1); /* head, tail */ 1519 #ifdef CONFIG_CPU_BIG_ENDIAN 1520 desc->cmd_irq |= 0x01 << 12; 1521 #endif 1522 desc->dram_addr = lower_32_bits(buf); 1523 desc->dram_addr_ext = upper_32_bits(buf); 1524 desc->tfr_len = len; 1525 desc->total_len = len; 1526 desc->flash_addr = lower_32_bits(addr); 1527 desc->flash_addr_ext = upper_32_bits(addr); 1528 desc->cs = host->cs; 1529 desc->status_valid = 0x01; 1530 return 0; 1531 } 1532 1533 /** 1534 * Kick the FLASH_DMA engine, with a given DMA descriptor 1535 */ 1536 static void brcmnand_dma_run(struct brcmnand_host *host, dma_addr_t desc) 1537 { 1538 struct brcmnand_controller *ctrl = host->ctrl; 1539 unsigned long timeo = msecs_to_jiffies(100); 1540 1541 flash_dma_writel(ctrl, FLASH_DMA_FIRST_DESC, lower_32_bits(desc)); 1542 (void)flash_dma_readl(ctrl, FLASH_DMA_FIRST_DESC); 1543 flash_dma_writel(ctrl, FLASH_DMA_FIRST_DESC_EXT, upper_32_bits(desc)); 1544 (void)flash_dma_readl(ctrl, FLASH_DMA_FIRST_DESC_EXT); 1545 1546 /* Start FLASH_DMA engine */ 1547 ctrl->dma_pending = true; 1548 mb(); /* flush previous writes */ 1549 flash_dma_writel(ctrl, FLASH_DMA_CTRL, 0x03); /* wake | run */ 1550 1551 if (wait_for_completion_timeout(&ctrl->dma_done, timeo) <= 0) { 1552 dev_err(ctrl->dev, 1553 "timeout waiting for DMA; status %#x, error status %#x\n", 1554 flash_dma_readl(ctrl, FLASH_DMA_STATUS), 1555 flash_dma_readl(ctrl, FLASH_DMA_ERROR_STATUS)); 1556 } 1557 ctrl->dma_pending = false; 1558 flash_dma_writel(ctrl, FLASH_DMA_CTRL, 0); /* force stop */ 1559 } 1560 1561 static int brcmnand_dma_trans(struct brcmnand_host *host, u64 addr, u32 *buf, 1562 u32 len, u8 dma_cmd) 1563 { 1564 struct brcmnand_controller *ctrl = host->ctrl; 1565 dma_addr_t buf_pa; 1566 int dir = dma_cmd == CMD_PAGE_READ ? DMA_FROM_DEVICE : DMA_TO_DEVICE; 1567 1568 buf_pa = dma_map_single(ctrl->dev, buf, len, dir); 1569 if (dma_mapping_error(ctrl->dev, buf_pa)) { 1570 dev_err(ctrl->dev, "unable to map buffer for DMA\n"); 1571 return -ENOMEM; 1572 } 1573 1574 brcmnand_fill_dma_desc(host, ctrl->dma_desc, addr, buf_pa, len, 1575 dma_cmd, true, true, 0); 1576 1577 brcmnand_dma_run(host, ctrl->dma_pa); 1578 1579 dma_unmap_single(ctrl->dev, buf_pa, len, dir); 1580 1581 if (ctrl->dma_desc->status_valid & FLASH_DMA_ECC_ERROR) 1582 return -EBADMSG; 1583 else if (ctrl->dma_desc->status_valid & FLASH_DMA_CORR_ERROR) 1584 return -EUCLEAN; 1585 1586 return 0; 1587 } 1588 1589 /* 1590 * Assumes proper CS is already set 1591 */ 1592 static int brcmnand_read_by_pio(struct mtd_info *mtd, struct nand_chip *chip, 1593 u64 addr, unsigned int trans, u32 *buf, 1594 u8 *oob, u64 *err_addr) 1595 { 1596 struct brcmnand_host *host = nand_get_controller_data(chip); 1597 struct brcmnand_controller *ctrl = host->ctrl; 1598 int i, j, ret = 0; 1599 1600 /* Clear error addresses */ 1601 brcmnand_write_reg(ctrl, BRCMNAND_UNCORR_ADDR, 0); 1602 brcmnand_write_reg(ctrl, BRCMNAND_CORR_ADDR, 0); 1603 brcmnand_write_reg(ctrl, BRCMNAND_UNCORR_EXT_ADDR, 0); 1604 brcmnand_write_reg(ctrl, BRCMNAND_CORR_EXT_ADDR, 0); 1605 1606 brcmnand_write_reg(ctrl, BRCMNAND_CMD_EXT_ADDRESS, 1607 (host->cs << 16) | ((addr >> 32) & 0xffff)); 1608 (void)brcmnand_read_reg(ctrl, BRCMNAND_CMD_EXT_ADDRESS); 1609 1610 for (i = 0; i < trans; i++, addr += FC_BYTES) { 1611 brcmnand_write_reg(ctrl, BRCMNAND_CMD_ADDRESS, 1612 lower_32_bits(addr)); 1613 (void)brcmnand_read_reg(ctrl, BRCMNAND_CMD_ADDRESS); 1614 /* SPARE_AREA_READ does not use ECC, so just use PAGE_READ */ 1615 brcmnand_send_cmd(host, CMD_PAGE_READ); 1616 brcmnand_waitfunc(chip); 1617 1618 if (likely(buf)) { 1619 brcmnand_soc_data_bus_prepare(ctrl->soc, false); 1620 1621 for (j = 0; j < FC_WORDS; j++, buf++) 1622 *buf = brcmnand_read_fc(ctrl, j); 1623 1624 brcmnand_soc_data_bus_unprepare(ctrl->soc, false); 1625 } 1626 1627 if (oob) 1628 oob += read_oob_from_regs(ctrl, i, oob, 1629 mtd->oobsize / trans, 1630 host->hwcfg.sector_size_1k); 1631 1632 if (!ret) { 1633 *err_addr = brcmnand_read_reg(ctrl, 1634 BRCMNAND_UNCORR_ADDR) | 1635 ((u64)(brcmnand_read_reg(ctrl, 1636 BRCMNAND_UNCORR_EXT_ADDR) 1637 & 0xffff) << 32); 1638 if (*err_addr) 1639 ret = -EBADMSG; 1640 } 1641 1642 if (!ret) { 1643 *err_addr = brcmnand_read_reg(ctrl, 1644 BRCMNAND_CORR_ADDR) | 1645 ((u64)(brcmnand_read_reg(ctrl, 1646 BRCMNAND_CORR_EXT_ADDR) 1647 & 0xffff) << 32); 1648 if (*err_addr) 1649 ret = -EUCLEAN; 1650 } 1651 } 1652 1653 return ret; 1654 } 1655 1656 /* 1657 * Check a page to see if it is erased (w/ bitflips) after an uncorrectable ECC 1658 * error 1659 * 1660 * Because the HW ECC signals an ECC error if an erase paged has even a single 1661 * bitflip, we must check each ECC error to see if it is actually an erased 1662 * page with bitflips, not a truly corrupted page. 1663 * 1664 * On a real error, return a negative error code (-EBADMSG for ECC error), and 1665 * buf will contain raw data. 1666 * Otherwise, buf gets filled with 0xffs and return the maximum number of 1667 * bitflips-per-ECC-sector to the caller. 1668 * 1669 */ 1670 static int brcmstb_nand_verify_erased_page(struct mtd_info *mtd, 1671 struct nand_chip *chip, void *buf, u64 addr) 1672 { 1673 int i, sas; 1674 void *oob = chip->oob_poi; 1675 int bitflips = 0; 1676 int page = addr >> chip->page_shift; 1677 int ret; 1678 1679 if (!buf) 1680 buf = nand_get_data_buf(chip); 1681 1682 sas = mtd->oobsize / chip->ecc.steps; 1683 1684 /* read without ecc for verification */ 1685 ret = chip->ecc.read_page_raw(chip, buf, true, page); 1686 if (ret) 1687 return ret; 1688 1689 for (i = 0; i < chip->ecc.steps; i++, oob += sas) { 1690 ret = nand_check_erased_ecc_chunk(buf, chip->ecc.size, 1691 oob, sas, NULL, 0, 1692 chip->ecc.strength); 1693 if (ret < 0) 1694 return ret; 1695 1696 bitflips = max(bitflips, ret); 1697 } 1698 1699 return bitflips; 1700 } 1701 1702 static int brcmnand_read(struct mtd_info *mtd, struct nand_chip *chip, 1703 u64 addr, unsigned int trans, u32 *buf, u8 *oob) 1704 { 1705 struct brcmnand_host *host = nand_get_controller_data(chip); 1706 struct brcmnand_controller *ctrl = host->ctrl; 1707 u64 err_addr = 0; 1708 int err; 1709 bool retry = true; 1710 1711 dev_dbg(ctrl->dev, "read %llx -> %p\n", (unsigned long long)addr, buf); 1712 1713 try_dmaread: 1714 brcmnand_write_reg(ctrl, BRCMNAND_UNCORR_COUNT, 0); 1715 1716 if (has_flash_dma(ctrl) && !oob && flash_dma_buf_ok(buf)) { 1717 err = brcmnand_dma_trans(host, addr, buf, trans * FC_BYTES, 1718 CMD_PAGE_READ); 1719 if (err) { 1720 if (mtd_is_bitflip_or_eccerr(err)) 1721 err_addr = addr; 1722 else 1723 return -EIO; 1724 } 1725 } else { 1726 if (oob) 1727 memset(oob, 0x99, mtd->oobsize); 1728 1729 err = brcmnand_read_by_pio(mtd, chip, addr, trans, buf, 1730 oob, &err_addr); 1731 } 1732 1733 if (mtd_is_eccerr(err)) { 1734 /* 1735 * On controller version and 7.0, 7.1 , DMA read after a 1736 * prior PIO read that reported uncorrectable error, 1737 * the DMA engine captures this error following DMA read 1738 * cleared only on subsequent DMA read, so just retry once 1739 * to clear a possible false error reported for current DMA 1740 * read 1741 */ 1742 if ((ctrl->nand_version == 0x0700) || 1743 (ctrl->nand_version == 0x0701)) { 1744 if (retry) { 1745 retry = false; 1746 goto try_dmaread; 1747 } 1748 } 1749 1750 /* 1751 * Controller version 7.2 has hw encoder to detect erased page 1752 * bitflips, apply sw verification for older controllers only 1753 */ 1754 if (ctrl->nand_version < 0x0702) { 1755 err = brcmstb_nand_verify_erased_page(mtd, chip, buf, 1756 addr); 1757 /* erased page bitflips corrected */ 1758 if (err >= 0) 1759 return err; 1760 } 1761 1762 dev_dbg(ctrl->dev, "uncorrectable error at 0x%llx\n", 1763 (unsigned long long)err_addr); 1764 mtd->ecc_stats.failed++; 1765 /* NAND layer expects zero on ECC errors */ 1766 return 0; 1767 } 1768 1769 if (mtd_is_bitflip(err)) { 1770 unsigned int corrected = brcmnand_count_corrected(ctrl); 1771 1772 dev_dbg(ctrl->dev, "corrected error at 0x%llx\n", 1773 (unsigned long long)err_addr); 1774 mtd->ecc_stats.corrected += corrected; 1775 /* Always exceed the software-imposed threshold */ 1776 return max(mtd->bitflip_threshold, corrected); 1777 } 1778 1779 return 0; 1780 } 1781 1782 static int brcmnand_read_page(struct nand_chip *chip, uint8_t *buf, 1783 int oob_required, int page) 1784 { 1785 struct mtd_info *mtd = nand_to_mtd(chip); 1786 struct brcmnand_host *host = nand_get_controller_data(chip); 1787 u8 *oob = oob_required ? (u8 *)chip->oob_poi : NULL; 1788 1789 nand_read_page_op(chip, page, 0, NULL, 0); 1790 1791 return brcmnand_read(mtd, chip, host->last_addr, 1792 mtd->writesize >> FC_SHIFT, (u32 *)buf, oob); 1793 } 1794 1795 static int brcmnand_read_page_raw(struct nand_chip *chip, uint8_t *buf, 1796 int oob_required, int page) 1797 { 1798 struct brcmnand_host *host = nand_get_controller_data(chip); 1799 struct mtd_info *mtd = nand_to_mtd(chip); 1800 u8 *oob = oob_required ? (u8 *)chip->oob_poi : NULL; 1801 int ret; 1802 1803 nand_read_page_op(chip, page, 0, NULL, 0); 1804 1805 brcmnand_set_ecc_enabled(host, 0); 1806 ret = brcmnand_read(mtd, chip, host->last_addr, 1807 mtd->writesize >> FC_SHIFT, (u32 *)buf, oob); 1808 brcmnand_set_ecc_enabled(host, 1); 1809 return ret; 1810 } 1811 1812 static int brcmnand_read_oob(struct nand_chip *chip, int page) 1813 { 1814 struct mtd_info *mtd = nand_to_mtd(chip); 1815 1816 return brcmnand_read(mtd, chip, (u64)page << chip->page_shift, 1817 mtd->writesize >> FC_SHIFT, 1818 NULL, (u8 *)chip->oob_poi); 1819 } 1820 1821 static int brcmnand_read_oob_raw(struct nand_chip *chip, int page) 1822 { 1823 struct mtd_info *mtd = nand_to_mtd(chip); 1824 struct brcmnand_host *host = nand_get_controller_data(chip); 1825 1826 brcmnand_set_ecc_enabled(host, 0); 1827 brcmnand_read(mtd, chip, (u64)page << chip->page_shift, 1828 mtd->writesize >> FC_SHIFT, 1829 NULL, (u8 *)chip->oob_poi); 1830 brcmnand_set_ecc_enabled(host, 1); 1831 return 0; 1832 } 1833 1834 static int brcmnand_write(struct mtd_info *mtd, struct nand_chip *chip, 1835 u64 addr, const u32 *buf, u8 *oob) 1836 { 1837 struct brcmnand_host *host = nand_get_controller_data(chip); 1838 struct brcmnand_controller *ctrl = host->ctrl; 1839 unsigned int i, j, trans = mtd->writesize >> FC_SHIFT; 1840 int status, ret = 0; 1841 1842 dev_dbg(ctrl->dev, "write %llx <- %p\n", (unsigned long long)addr, buf); 1843 1844 if (unlikely((unsigned long)buf & 0x03)) { 1845 dev_warn(ctrl->dev, "unaligned buffer: %p\n", buf); 1846 buf = (u32 *)((unsigned long)buf & ~0x03); 1847 } 1848 1849 brcmnand_wp(mtd, 0); 1850 1851 for (i = 0; i < ctrl->max_oob; i += 4) 1852 oob_reg_write(ctrl, i, 0xffffffff); 1853 1854 if (has_flash_dma(ctrl) && !oob && flash_dma_buf_ok(buf)) { 1855 if (brcmnand_dma_trans(host, addr, (u32 *)buf, 1856 mtd->writesize, CMD_PROGRAM_PAGE)) 1857 ret = -EIO; 1858 goto out; 1859 } 1860 1861 brcmnand_write_reg(ctrl, BRCMNAND_CMD_EXT_ADDRESS, 1862 (host->cs << 16) | ((addr >> 32) & 0xffff)); 1863 (void)brcmnand_read_reg(ctrl, BRCMNAND_CMD_EXT_ADDRESS); 1864 1865 for (i = 0; i < trans; i++, addr += FC_BYTES) { 1866 /* full address MUST be set before populating FC */ 1867 brcmnand_write_reg(ctrl, BRCMNAND_CMD_ADDRESS, 1868 lower_32_bits(addr)); 1869 (void)brcmnand_read_reg(ctrl, BRCMNAND_CMD_ADDRESS); 1870 1871 if (buf) { 1872 brcmnand_soc_data_bus_prepare(ctrl->soc, false); 1873 1874 for (j = 0; j < FC_WORDS; j++, buf++) 1875 brcmnand_write_fc(ctrl, j, *buf); 1876 1877 brcmnand_soc_data_bus_unprepare(ctrl->soc, false); 1878 } else if (oob) { 1879 for (j = 0; j < FC_WORDS; j++) 1880 brcmnand_write_fc(ctrl, j, 0xffffffff); 1881 } 1882 1883 if (oob) { 1884 oob += write_oob_to_regs(ctrl, i, oob, 1885 mtd->oobsize / trans, 1886 host->hwcfg.sector_size_1k); 1887 } 1888 1889 /* we cannot use SPARE_AREA_PROGRAM when PARTIAL_PAGE_EN=0 */ 1890 brcmnand_send_cmd(host, CMD_PROGRAM_PAGE); 1891 status = brcmnand_waitfunc(chip); 1892 1893 if (status & NAND_STATUS_FAIL) { 1894 dev_info(ctrl->dev, "program failed at %llx\n", 1895 (unsigned long long)addr); 1896 ret = -EIO; 1897 goto out; 1898 } 1899 } 1900 out: 1901 brcmnand_wp(mtd, 1); 1902 return ret; 1903 } 1904 1905 static int brcmnand_write_page(struct nand_chip *chip, const uint8_t *buf, 1906 int oob_required, int page) 1907 { 1908 struct mtd_info *mtd = nand_to_mtd(chip); 1909 struct brcmnand_host *host = nand_get_controller_data(chip); 1910 void *oob = oob_required ? chip->oob_poi : NULL; 1911 1912 nand_prog_page_begin_op(chip, page, 0, NULL, 0); 1913 brcmnand_write(mtd, chip, host->last_addr, (const u32 *)buf, oob); 1914 1915 return nand_prog_page_end_op(chip); 1916 } 1917 1918 static int brcmnand_write_page_raw(struct nand_chip *chip, const uint8_t *buf, 1919 int oob_required, int page) 1920 { 1921 struct mtd_info *mtd = nand_to_mtd(chip); 1922 struct brcmnand_host *host = nand_get_controller_data(chip); 1923 void *oob = oob_required ? chip->oob_poi : NULL; 1924 1925 nand_prog_page_begin_op(chip, page, 0, NULL, 0); 1926 brcmnand_set_ecc_enabled(host, 0); 1927 brcmnand_write(mtd, chip, host->last_addr, (const u32 *)buf, oob); 1928 brcmnand_set_ecc_enabled(host, 1); 1929 1930 return nand_prog_page_end_op(chip); 1931 } 1932 1933 static int brcmnand_write_oob(struct nand_chip *chip, int page) 1934 { 1935 return brcmnand_write(nand_to_mtd(chip), chip, 1936 (u64)page << chip->page_shift, NULL, 1937 chip->oob_poi); 1938 } 1939 1940 static int brcmnand_write_oob_raw(struct nand_chip *chip, int page) 1941 { 1942 struct mtd_info *mtd = nand_to_mtd(chip); 1943 struct brcmnand_host *host = nand_get_controller_data(chip); 1944 int ret; 1945 1946 brcmnand_set_ecc_enabled(host, 0); 1947 ret = brcmnand_write(mtd, chip, (u64)page << chip->page_shift, NULL, 1948 (u8 *)chip->oob_poi); 1949 brcmnand_set_ecc_enabled(host, 1); 1950 1951 return ret; 1952 } 1953 1954 /*********************************************************************** 1955 * Per-CS setup (1 NAND device) 1956 ***********************************************************************/ 1957 1958 static int brcmnand_set_cfg(struct brcmnand_host *host, 1959 struct brcmnand_cfg *cfg) 1960 { 1961 struct brcmnand_controller *ctrl = host->ctrl; 1962 struct nand_chip *chip = &host->chip; 1963 u16 cfg_offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_CFG); 1964 u16 cfg_ext_offs = brcmnand_cs_offset(ctrl, host->cs, 1965 BRCMNAND_CS_CFG_EXT); 1966 u16 acc_control_offs = brcmnand_cs_offset(ctrl, host->cs, 1967 BRCMNAND_CS_ACC_CONTROL); 1968 u8 block_size = 0, page_size = 0, device_size = 0; 1969 u32 tmp; 1970 1971 if (ctrl->block_sizes) { 1972 int i, found; 1973 1974 for (i = 0, found = 0; ctrl->block_sizes[i]; i++) 1975 if (ctrl->block_sizes[i] * 1024 == cfg->block_size) { 1976 block_size = i; 1977 found = 1; 1978 } 1979 if (!found) { 1980 dev_warn(ctrl->dev, "invalid block size %u\n", 1981 cfg->block_size); 1982 return -EINVAL; 1983 } 1984 } else { 1985 block_size = ffs(cfg->block_size) - ffs(BRCMNAND_MIN_BLOCKSIZE); 1986 } 1987 1988 if (cfg->block_size < BRCMNAND_MIN_BLOCKSIZE || (ctrl->max_block_size && 1989 cfg->block_size > ctrl->max_block_size)) { 1990 dev_warn(ctrl->dev, "invalid block size %u\n", 1991 cfg->block_size); 1992 block_size = 0; 1993 } 1994 1995 if (ctrl->page_sizes) { 1996 int i, found; 1997 1998 for (i = 0, found = 0; ctrl->page_sizes[i]; i++) 1999 if (ctrl->page_sizes[i] == cfg->page_size) { 2000 page_size = i; 2001 found = 1; 2002 } 2003 if (!found) { 2004 dev_warn(ctrl->dev, "invalid page size %u\n", 2005 cfg->page_size); 2006 return -EINVAL; 2007 } 2008 } else { 2009 page_size = ffs(cfg->page_size) - ffs(BRCMNAND_MIN_PAGESIZE); 2010 } 2011 2012 if (cfg->page_size < BRCMNAND_MIN_PAGESIZE || (ctrl->max_page_size && 2013 cfg->page_size > ctrl->max_page_size)) { 2014 dev_warn(ctrl->dev, "invalid page size %u\n", cfg->page_size); 2015 return -EINVAL; 2016 } 2017 2018 if (fls64(cfg->device_size) < fls64(BRCMNAND_MIN_DEVSIZE)) { 2019 dev_warn(ctrl->dev, "invalid device size 0x%llx\n", 2020 (unsigned long long)cfg->device_size); 2021 return -EINVAL; 2022 } 2023 device_size = fls64(cfg->device_size) - fls64(BRCMNAND_MIN_DEVSIZE); 2024 2025 tmp = (cfg->blk_adr_bytes << CFG_BLK_ADR_BYTES_SHIFT) | 2026 (cfg->col_adr_bytes << CFG_COL_ADR_BYTES_SHIFT) | 2027 (cfg->ful_adr_bytes << CFG_FUL_ADR_BYTES_SHIFT) | 2028 (!!(cfg->device_width == 16) << CFG_BUS_WIDTH_SHIFT) | 2029 (device_size << CFG_DEVICE_SIZE_SHIFT); 2030 if (cfg_offs == cfg_ext_offs) { 2031 tmp |= (page_size << CFG_PAGE_SIZE_SHIFT) | 2032 (block_size << CFG_BLK_SIZE_SHIFT); 2033 nand_writereg(ctrl, cfg_offs, tmp); 2034 } else { 2035 nand_writereg(ctrl, cfg_offs, tmp); 2036 tmp = (page_size << CFG_EXT_PAGE_SIZE_SHIFT) | 2037 (block_size << CFG_EXT_BLK_SIZE_SHIFT); 2038 nand_writereg(ctrl, cfg_ext_offs, tmp); 2039 } 2040 2041 tmp = nand_readreg(ctrl, acc_control_offs); 2042 tmp &= ~brcmnand_ecc_level_mask(ctrl); 2043 tmp |= cfg->ecc_level << NAND_ACC_CONTROL_ECC_SHIFT; 2044 tmp &= ~brcmnand_spare_area_mask(ctrl); 2045 tmp |= cfg->spare_area_size; 2046 nand_writereg(ctrl, acc_control_offs, tmp); 2047 2048 brcmnand_set_sector_size_1k(host, cfg->sector_size_1k); 2049 2050 /* threshold = ceil(BCH-level * 0.75) */ 2051 brcmnand_wr_corr_thresh(host, DIV_ROUND_UP(chip->ecc.strength * 3, 4)); 2052 2053 return 0; 2054 } 2055 2056 static void brcmnand_print_cfg(struct brcmnand_host *host, 2057 char *buf, struct brcmnand_cfg *cfg) 2058 { 2059 buf += sprintf(buf, 2060 "%lluMiB total, %uKiB blocks, %u%s pages, %uB OOB, %u-bit", 2061 (unsigned long long)cfg->device_size >> 20, 2062 cfg->block_size >> 10, 2063 cfg->page_size >= 1024 ? cfg->page_size >> 10 : cfg->page_size, 2064 cfg->page_size >= 1024 ? "KiB" : "B", 2065 cfg->spare_area_size, cfg->device_width); 2066 2067 /* Account for Hamming ECC and for BCH 512B vs 1KiB sectors */ 2068 if (is_hamming_ecc(host->ctrl, cfg)) 2069 sprintf(buf, ", Hamming ECC"); 2070 else if (cfg->sector_size_1k) 2071 sprintf(buf, ", BCH-%u (1KiB sector)", cfg->ecc_level << 1); 2072 else 2073 sprintf(buf, ", BCH-%u", cfg->ecc_level); 2074 } 2075 2076 /* 2077 * Minimum number of bytes to address a page. Calculated as: 2078 * roundup(log2(size / page-size) / 8) 2079 * 2080 * NB: the following does not "round up" for non-power-of-2 'size'; but this is 2081 * OK because many other things will break if 'size' is irregular... 2082 */ 2083 static inline int get_blk_adr_bytes(u64 size, u32 writesize) 2084 { 2085 return ALIGN(ilog2(size) - ilog2(writesize), 8) >> 3; 2086 } 2087 2088 static int brcmnand_setup_dev(struct brcmnand_host *host) 2089 { 2090 struct mtd_info *mtd = nand_to_mtd(&host->chip); 2091 struct nand_chip *chip = &host->chip; 2092 struct brcmnand_controller *ctrl = host->ctrl; 2093 struct brcmnand_cfg *cfg = &host->hwcfg; 2094 char msg[128]; 2095 u32 offs, tmp, oob_sector; 2096 int ret; 2097 2098 memset(cfg, 0, sizeof(*cfg)); 2099 2100 ret = of_property_read_u32(nand_get_flash_node(chip), 2101 "brcm,nand-oob-sector-size", 2102 &oob_sector); 2103 if (ret) { 2104 /* Use detected size */ 2105 cfg->spare_area_size = mtd->oobsize / 2106 (mtd->writesize >> FC_SHIFT); 2107 } else { 2108 cfg->spare_area_size = oob_sector; 2109 } 2110 if (cfg->spare_area_size > ctrl->max_oob) 2111 cfg->spare_area_size = ctrl->max_oob; 2112 /* 2113 * Set oobsize to be consistent with controller's spare_area_size, as 2114 * the rest is inaccessible. 2115 */ 2116 mtd->oobsize = cfg->spare_area_size * (mtd->writesize >> FC_SHIFT); 2117 2118 cfg->device_size = mtd->size; 2119 cfg->block_size = mtd->erasesize; 2120 cfg->page_size = mtd->writesize; 2121 cfg->device_width = (chip->options & NAND_BUSWIDTH_16) ? 16 : 8; 2122 cfg->col_adr_bytes = 2; 2123 cfg->blk_adr_bytes = get_blk_adr_bytes(mtd->size, mtd->writesize); 2124 2125 if (chip->ecc.mode != NAND_ECC_HW) { 2126 dev_err(ctrl->dev, "only HW ECC supported; selected: %d\n", 2127 chip->ecc.mode); 2128 return -EINVAL; 2129 } 2130 2131 if (chip->ecc.algo == NAND_ECC_UNKNOWN) { 2132 if (chip->ecc.strength == 1 && chip->ecc.size == 512) 2133 /* Default to Hamming for 1-bit ECC, if unspecified */ 2134 chip->ecc.algo = NAND_ECC_HAMMING; 2135 else 2136 /* Otherwise, BCH */ 2137 chip->ecc.algo = NAND_ECC_BCH; 2138 } 2139 2140 if (chip->ecc.algo == NAND_ECC_HAMMING && (chip->ecc.strength != 1 || 2141 chip->ecc.size != 512)) { 2142 dev_err(ctrl->dev, "invalid Hamming params: %d bits per %d bytes\n", 2143 chip->ecc.strength, chip->ecc.size); 2144 return -EINVAL; 2145 } 2146 2147 switch (chip->ecc.size) { 2148 case 512: 2149 if (chip->ecc.algo == NAND_ECC_HAMMING) 2150 cfg->ecc_level = 15; 2151 else 2152 cfg->ecc_level = chip->ecc.strength; 2153 cfg->sector_size_1k = 0; 2154 break; 2155 case 1024: 2156 if (!(ctrl->features & BRCMNAND_HAS_1K_SECTORS)) { 2157 dev_err(ctrl->dev, "1KB sectors not supported\n"); 2158 return -EINVAL; 2159 } 2160 if (chip->ecc.strength & 0x1) { 2161 dev_err(ctrl->dev, 2162 "odd ECC not supported with 1KB sectors\n"); 2163 return -EINVAL; 2164 } 2165 2166 cfg->ecc_level = chip->ecc.strength >> 1; 2167 cfg->sector_size_1k = 1; 2168 break; 2169 default: 2170 dev_err(ctrl->dev, "unsupported ECC size: %d\n", 2171 chip->ecc.size); 2172 return -EINVAL; 2173 } 2174 2175 cfg->ful_adr_bytes = cfg->blk_adr_bytes; 2176 if (mtd->writesize > 512) 2177 cfg->ful_adr_bytes += cfg->col_adr_bytes; 2178 else 2179 cfg->ful_adr_bytes += 1; 2180 2181 ret = brcmnand_set_cfg(host, cfg); 2182 if (ret) 2183 return ret; 2184 2185 brcmnand_set_ecc_enabled(host, 1); 2186 2187 brcmnand_print_cfg(host, msg, cfg); 2188 dev_info(ctrl->dev, "detected %s\n", msg); 2189 2190 /* Configure ACC_CONTROL */ 2191 offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_ACC_CONTROL); 2192 tmp = nand_readreg(ctrl, offs); 2193 tmp &= ~ACC_CONTROL_PARTIAL_PAGE; 2194 tmp &= ~ACC_CONTROL_RD_ERASED; 2195 2196 /* We need to turn on Read from erased paged protected by ECC */ 2197 if (ctrl->nand_version >= 0x0702) 2198 tmp |= ACC_CONTROL_RD_ERASED; 2199 tmp &= ~ACC_CONTROL_FAST_PGM_RDIN; 2200 if (ctrl->features & BRCMNAND_HAS_PREFETCH) 2201 tmp &= ~ACC_CONTROL_PREFETCH; 2202 2203 nand_writereg(ctrl, offs, tmp); 2204 2205 return 0; 2206 } 2207 2208 static int brcmnand_attach_chip(struct nand_chip *chip) 2209 { 2210 struct mtd_info *mtd = nand_to_mtd(chip); 2211 struct brcmnand_host *host = nand_get_controller_data(chip); 2212 int ret; 2213 2214 chip->options |= NAND_NO_SUBPAGE_WRITE; 2215 /* 2216 * Avoid (for instance) kmap()'d buffers from JFFS2, which we can't DMA 2217 * to/from, and have nand_base pass us a bounce buffer instead, as 2218 * needed. 2219 */ 2220 chip->options |= NAND_USE_BOUNCE_BUFFER; 2221 2222 if (chip->bbt_options & NAND_BBT_USE_FLASH) 2223 chip->bbt_options |= NAND_BBT_NO_OOB; 2224 2225 if (brcmnand_setup_dev(host)) 2226 return -ENXIO; 2227 2228 chip->ecc.size = host->hwcfg.sector_size_1k ? 1024 : 512; 2229 2230 /* only use our internal HW threshold */ 2231 mtd->bitflip_threshold = 1; 2232 2233 ret = brcmstb_choose_ecc_layout(host); 2234 2235 return ret; 2236 } 2237 2238 static const struct nand_controller_ops brcmnand_controller_ops = { 2239 .attach_chip = brcmnand_attach_chip, 2240 }; 2241 2242 static int brcmnand_init_cs(struct brcmnand_host *host, struct device_node *dn) 2243 { 2244 struct brcmnand_controller *ctrl = host->ctrl; 2245 struct platform_device *pdev = host->pdev; 2246 struct mtd_info *mtd; 2247 struct nand_chip *chip; 2248 int ret; 2249 u16 cfg_offs; 2250 2251 ret = of_property_read_u32(dn, "reg", &host->cs); 2252 if (ret) { 2253 dev_err(&pdev->dev, "can't get chip-select\n"); 2254 return -ENXIO; 2255 } 2256 2257 mtd = nand_to_mtd(&host->chip); 2258 chip = &host->chip; 2259 2260 nand_set_flash_node(chip, dn); 2261 nand_set_controller_data(chip, host); 2262 mtd->name = devm_kasprintf(&pdev->dev, GFP_KERNEL, "brcmnand.%d", 2263 host->cs); 2264 if (!mtd->name) 2265 return -ENOMEM; 2266 2267 mtd->owner = THIS_MODULE; 2268 mtd->dev.parent = &pdev->dev; 2269 2270 chip->legacy.cmd_ctrl = brcmnand_cmd_ctrl; 2271 chip->legacy.cmdfunc = brcmnand_cmdfunc; 2272 chip->legacy.waitfunc = brcmnand_waitfunc; 2273 chip->legacy.read_byte = brcmnand_read_byte; 2274 chip->legacy.read_buf = brcmnand_read_buf; 2275 chip->legacy.write_buf = brcmnand_write_buf; 2276 2277 chip->ecc.mode = NAND_ECC_HW; 2278 chip->ecc.read_page = brcmnand_read_page; 2279 chip->ecc.write_page = brcmnand_write_page; 2280 chip->ecc.read_page_raw = brcmnand_read_page_raw; 2281 chip->ecc.write_page_raw = brcmnand_write_page_raw; 2282 chip->ecc.write_oob_raw = brcmnand_write_oob_raw; 2283 chip->ecc.read_oob_raw = brcmnand_read_oob_raw; 2284 chip->ecc.read_oob = brcmnand_read_oob; 2285 chip->ecc.write_oob = brcmnand_write_oob; 2286 2287 chip->controller = &ctrl->controller; 2288 2289 /* 2290 * The bootloader might have configured 16bit mode but 2291 * NAND READID command only works in 8bit mode. We force 2292 * 8bit mode here to ensure that NAND READID commands works. 2293 */ 2294 cfg_offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_CFG); 2295 nand_writereg(ctrl, cfg_offs, 2296 nand_readreg(ctrl, cfg_offs) & ~CFG_BUS_WIDTH); 2297 2298 ret = nand_scan(chip, 1); 2299 if (ret) 2300 return ret; 2301 2302 ret = mtd_device_register(mtd, NULL, 0); 2303 if (ret) 2304 nand_cleanup(chip); 2305 2306 return ret; 2307 } 2308 2309 static void brcmnand_save_restore_cs_config(struct brcmnand_host *host, 2310 int restore) 2311 { 2312 struct brcmnand_controller *ctrl = host->ctrl; 2313 u16 cfg_offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_CFG); 2314 u16 cfg_ext_offs = brcmnand_cs_offset(ctrl, host->cs, 2315 BRCMNAND_CS_CFG_EXT); 2316 u16 acc_control_offs = brcmnand_cs_offset(ctrl, host->cs, 2317 BRCMNAND_CS_ACC_CONTROL); 2318 u16 t1_offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_TIMING1); 2319 u16 t2_offs = brcmnand_cs_offset(ctrl, host->cs, BRCMNAND_CS_TIMING2); 2320 2321 if (restore) { 2322 nand_writereg(ctrl, cfg_offs, host->hwcfg.config); 2323 if (cfg_offs != cfg_ext_offs) 2324 nand_writereg(ctrl, cfg_ext_offs, 2325 host->hwcfg.config_ext); 2326 nand_writereg(ctrl, acc_control_offs, host->hwcfg.acc_control); 2327 nand_writereg(ctrl, t1_offs, host->hwcfg.timing_1); 2328 nand_writereg(ctrl, t2_offs, host->hwcfg.timing_2); 2329 } else { 2330 host->hwcfg.config = nand_readreg(ctrl, cfg_offs); 2331 if (cfg_offs != cfg_ext_offs) 2332 host->hwcfg.config_ext = 2333 nand_readreg(ctrl, cfg_ext_offs); 2334 host->hwcfg.acc_control = nand_readreg(ctrl, acc_control_offs); 2335 host->hwcfg.timing_1 = nand_readreg(ctrl, t1_offs); 2336 host->hwcfg.timing_2 = nand_readreg(ctrl, t2_offs); 2337 } 2338 } 2339 2340 static int brcmnand_suspend(struct device *dev) 2341 { 2342 struct brcmnand_controller *ctrl = dev_get_drvdata(dev); 2343 struct brcmnand_host *host; 2344 2345 list_for_each_entry(host, &ctrl->host_list, node) 2346 brcmnand_save_restore_cs_config(host, 0); 2347 2348 ctrl->nand_cs_nand_select = brcmnand_read_reg(ctrl, BRCMNAND_CS_SELECT); 2349 ctrl->nand_cs_nand_xor = brcmnand_read_reg(ctrl, BRCMNAND_CS_XOR); 2350 ctrl->corr_stat_threshold = 2351 brcmnand_read_reg(ctrl, BRCMNAND_CORR_THRESHOLD); 2352 2353 if (has_flash_dma(ctrl)) 2354 ctrl->flash_dma_mode = flash_dma_readl(ctrl, FLASH_DMA_MODE); 2355 2356 return 0; 2357 } 2358 2359 static int brcmnand_resume(struct device *dev) 2360 { 2361 struct brcmnand_controller *ctrl = dev_get_drvdata(dev); 2362 struct brcmnand_host *host; 2363 2364 if (has_flash_dma(ctrl)) { 2365 flash_dma_writel(ctrl, FLASH_DMA_MODE, ctrl->flash_dma_mode); 2366 flash_dma_writel(ctrl, FLASH_DMA_ERROR_STATUS, 0); 2367 } 2368 2369 brcmnand_write_reg(ctrl, BRCMNAND_CS_SELECT, ctrl->nand_cs_nand_select); 2370 brcmnand_write_reg(ctrl, BRCMNAND_CS_XOR, ctrl->nand_cs_nand_xor); 2371 brcmnand_write_reg(ctrl, BRCMNAND_CORR_THRESHOLD, 2372 ctrl->corr_stat_threshold); 2373 if (ctrl->soc) { 2374 /* Clear/re-enable interrupt */ 2375 ctrl->soc->ctlrdy_ack(ctrl->soc); 2376 ctrl->soc->ctlrdy_set_enabled(ctrl->soc, true); 2377 } 2378 2379 list_for_each_entry(host, &ctrl->host_list, node) { 2380 struct nand_chip *chip = &host->chip; 2381 2382 brcmnand_save_restore_cs_config(host, 1); 2383 2384 /* Reset the chip, required by some chips after power-up */ 2385 nand_reset_op(chip); 2386 } 2387 2388 return 0; 2389 } 2390 2391 const struct dev_pm_ops brcmnand_pm_ops = { 2392 .suspend = brcmnand_suspend, 2393 .resume = brcmnand_resume, 2394 }; 2395 EXPORT_SYMBOL_GPL(brcmnand_pm_ops); 2396 2397 static const struct of_device_id brcmnand_of_match[] = { 2398 { .compatible = "brcm,brcmnand-v4.0" }, 2399 { .compatible = "brcm,brcmnand-v5.0" }, 2400 { .compatible = "brcm,brcmnand-v6.0" }, 2401 { .compatible = "brcm,brcmnand-v6.1" }, 2402 { .compatible = "brcm,brcmnand-v6.2" }, 2403 { .compatible = "brcm,brcmnand-v7.0" }, 2404 { .compatible = "brcm,brcmnand-v7.1" }, 2405 { .compatible = "brcm,brcmnand-v7.2" }, 2406 {}, 2407 }; 2408 MODULE_DEVICE_TABLE(of, brcmnand_of_match); 2409 2410 /*********************************************************************** 2411 * Platform driver setup (per controller) 2412 ***********************************************************************/ 2413 2414 int brcmnand_probe(struct platform_device *pdev, struct brcmnand_soc *soc) 2415 { 2416 struct device *dev = &pdev->dev; 2417 struct device_node *dn = dev->of_node, *child; 2418 struct brcmnand_controller *ctrl; 2419 struct resource *res; 2420 int ret; 2421 2422 /* We only support device-tree instantiation */ 2423 if (!dn) 2424 return -ENODEV; 2425 2426 if (!of_match_node(brcmnand_of_match, dn)) 2427 return -ENODEV; 2428 2429 ctrl = devm_kzalloc(dev, sizeof(*ctrl), GFP_KERNEL); 2430 if (!ctrl) 2431 return -ENOMEM; 2432 2433 dev_set_drvdata(dev, ctrl); 2434 ctrl->dev = dev; 2435 2436 init_completion(&ctrl->done); 2437 init_completion(&ctrl->dma_done); 2438 nand_controller_init(&ctrl->controller); 2439 ctrl->controller.ops = &brcmnand_controller_ops; 2440 INIT_LIST_HEAD(&ctrl->host_list); 2441 2442 /* NAND register range */ 2443 res = platform_get_resource(pdev, IORESOURCE_MEM, 0); 2444 ctrl->nand_base = devm_ioremap_resource(dev, res); 2445 if (IS_ERR(ctrl->nand_base)) 2446 return PTR_ERR(ctrl->nand_base); 2447 2448 /* Enable clock before using NAND registers */ 2449 ctrl->clk = devm_clk_get(dev, "nand"); 2450 if (!IS_ERR(ctrl->clk)) { 2451 ret = clk_prepare_enable(ctrl->clk); 2452 if (ret) 2453 return ret; 2454 } else { 2455 ret = PTR_ERR(ctrl->clk); 2456 if (ret == -EPROBE_DEFER) 2457 return ret; 2458 2459 ctrl->clk = NULL; 2460 } 2461 2462 /* Initialize NAND revision */ 2463 ret = brcmnand_revision_init(ctrl); 2464 if (ret) 2465 goto err; 2466 2467 /* 2468 * Most chips have this cache at a fixed offset within 'nand' block. 2469 * Some must specify this region separately. 2470 */ 2471 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand-cache"); 2472 if (res) { 2473 ctrl->nand_fc = devm_ioremap_resource(dev, res); 2474 if (IS_ERR(ctrl->nand_fc)) { 2475 ret = PTR_ERR(ctrl->nand_fc); 2476 goto err; 2477 } 2478 } else { 2479 ctrl->nand_fc = ctrl->nand_base + 2480 ctrl->reg_offsets[BRCMNAND_FC_BASE]; 2481 } 2482 2483 /* FLASH_DMA */ 2484 res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "flash-dma"); 2485 if (res) { 2486 ctrl->flash_dma_base = devm_ioremap_resource(dev, res); 2487 if (IS_ERR(ctrl->flash_dma_base)) { 2488 ret = PTR_ERR(ctrl->flash_dma_base); 2489 goto err; 2490 } 2491 2492 flash_dma_writel(ctrl, FLASH_DMA_MODE, 1); /* linked-list */ 2493 flash_dma_writel(ctrl, FLASH_DMA_ERROR_STATUS, 0); 2494 2495 /* Allocate descriptor(s) */ 2496 ctrl->dma_desc = dmam_alloc_coherent(dev, 2497 sizeof(*ctrl->dma_desc), 2498 &ctrl->dma_pa, GFP_KERNEL); 2499 if (!ctrl->dma_desc) { 2500 ret = -ENOMEM; 2501 goto err; 2502 } 2503 2504 ctrl->dma_irq = platform_get_irq(pdev, 1); 2505 if ((int)ctrl->dma_irq < 0) { 2506 dev_err(dev, "missing FLASH_DMA IRQ\n"); 2507 ret = -ENODEV; 2508 goto err; 2509 } 2510 2511 ret = devm_request_irq(dev, ctrl->dma_irq, 2512 brcmnand_dma_irq, 0, DRV_NAME, 2513 ctrl); 2514 if (ret < 0) { 2515 dev_err(dev, "can't allocate IRQ %d: error %d\n", 2516 ctrl->dma_irq, ret); 2517 goto err; 2518 } 2519 2520 dev_info(dev, "enabling FLASH_DMA\n"); 2521 } 2522 2523 /* Disable automatic device ID config, direct addressing */ 2524 brcmnand_rmw_reg(ctrl, BRCMNAND_CS_SELECT, 2525 CS_SELECT_AUTO_DEVICE_ID_CFG | 0xff, 0, 0); 2526 /* Disable XOR addressing */ 2527 brcmnand_rmw_reg(ctrl, BRCMNAND_CS_XOR, 0xff, 0, 0); 2528 2529 if (ctrl->features & BRCMNAND_HAS_WP) { 2530 /* Permanently disable write protection */ 2531 if (wp_on == 2) 2532 brcmnand_set_wp(ctrl, false); 2533 } else { 2534 wp_on = 0; 2535 } 2536 2537 /* IRQ */ 2538 ctrl->irq = platform_get_irq(pdev, 0); 2539 if ((int)ctrl->irq < 0) { 2540 dev_err(dev, "no IRQ defined\n"); 2541 ret = -ENODEV; 2542 goto err; 2543 } 2544 2545 /* 2546 * Some SoCs integrate this controller (e.g., its interrupt bits) in 2547 * interesting ways 2548 */ 2549 if (soc) { 2550 ctrl->soc = soc; 2551 2552 ret = devm_request_irq(dev, ctrl->irq, brcmnand_irq, 0, 2553 DRV_NAME, ctrl); 2554 2555 /* Enable interrupt */ 2556 ctrl->soc->ctlrdy_ack(ctrl->soc); 2557 ctrl->soc->ctlrdy_set_enabled(ctrl->soc, true); 2558 } else { 2559 /* Use standard interrupt infrastructure */ 2560 ret = devm_request_irq(dev, ctrl->irq, brcmnand_ctlrdy_irq, 0, 2561 DRV_NAME, ctrl); 2562 } 2563 if (ret < 0) { 2564 dev_err(dev, "can't allocate IRQ %d: error %d\n", 2565 ctrl->irq, ret); 2566 goto err; 2567 } 2568 2569 for_each_available_child_of_node(dn, child) { 2570 if (of_device_is_compatible(child, "brcm,nandcs")) { 2571 struct brcmnand_host *host; 2572 2573 host = devm_kzalloc(dev, sizeof(*host), GFP_KERNEL); 2574 if (!host) { 2575 of_node_put(child); 2576 ret = -ENOMEM; 2577 goto err; 2578 } 2579 host->pdev = pdev; 2580 host->ctrl = ctrl; 2581 2582 ret = brcmnand_init_cs(host, child); 2583 if (ret) { 2584 devm_kfree(dev, host); 2585 continue; /* Try all chip-selects */ 2586 } 2587 2588 list_add_tail(&host->node, &ctrl->host_list); 2589 } 2590 } 2591 2592 /* No chip-selects could initialize properly */ 2593 if (list_empty(&ctrl->host_list)) { 2594 ret = -ENODEV; 2595 goto err; 2596 } 2597 2598 return 0; 2599 2600 err: 2601 clk_disable_unprepare(ctrl->clk); 2602 return ret; 2603 2604 } 2605 EXPORT_SYMBOL_GPL(brcmnand_probe); 2606 2607 int brcmnand_remove(struct platform_device *pdev) 2608 { 2609 struct brcmnand_controller *ctrl = dev_get_drvdata(&pdev->dev); 2610 struct brcmnand_host *host; 2611 2612 list_for_each_entry(host, &ctrl->host_list, node) 2613 nand_release(&host->chip); 2614 2615 clk_disable_unprepare(ctrl->clk); 2616 2617 dev_set_drvdata(&pdev->dev, NULL); 2618 2619 return 0; 2620 } 2621 EXPORT_SYMBOL_GPL(brcmnand_remove); 2622 2623 MODULE_LICENSE("GPL v2"); 2624 MODULE_AUTHOR("Kevin Cernekee"); 2625 MODULE_AUTHOR("Brian Norris"); 2626 MODULE_DESCRIPTION("NAND driver for Broadcom chips"); 2627 MODULE_ALIAS("platform:brcmnand"); 2628