Boris Brezillon | bb69634 | 2018-11-20 10:02:34 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 2 | /* |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 3 | * ST Microelectronics |
| 4 | * Flexible Static Memory Controller (FSMC) |
| 5 | * Driver for NAND portions |
| 6 | * |
| 7 | * Copyright © 2010 ST Microelectronics |
| 8 | * Vipin Kumar <vipin.kumar@st.com> |
| 9 | * Ashish Priyadarshi |
| 10 | * |
Boris Brezillon | 187c5448 | 2018-02-05 23:02:02 +0100 | [diff] [blame] | 11 | * Based on drivers/mtd/nand/nomadik_nand.c (removed in v3.8) |
Boris Brezillon | 7b6afee | 2018-02-05 23:02:03 +0100 | [diff] [blame] | 12 | * Copyright © 2007 STMicroelectronics Pvt. Ltd. |
| 13 | * Copyright © 2009 Alessandro Rubini |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 14 | */ |
| 15 | |
| 16 | #include <linux/clk.h> |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 17 | #include <linux/completion.h> |
Herve Codina | a4ca0c4 | 2021-11-19 16:03:15 +0100 | [diff] [blame] | 18 | #include <linux/delay.h> |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 19 | #include <linux/dmaengine.h> |
| 20 | #include <linux/dma-direction.h> |
| 21 | #include <linux/dma-mapping.h> |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 22 | #include <linux/err.h> |
| 23 | #include <linux/init.h> |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/resource.h> |
| 26 | #include <linux/sched.h> |
| 27 | #include <linux/types.h> |
| 28 | #include <linux/mtd/mtd.h> |
Miquel Raynal | ad9ffdc | 2021-04-13 18:18:35 +0200 | [diff] [blame] | 29 | #include <linux/mtd/nand-ecc-sw-hamming.h> |
Boris Brezillon | d4092d7 | 2017-08-04 17:29:10 +0200 | [diff] [blame] | 30 | #include <linux/mtd/rawnand.h> |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 31 | #include <linux/platform_device.h> |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 32 | #include <linux/of.h> |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 33 | #include <linux/mtd/partitions.h> |
| 34 | #include <linux/io.h> |
| 35 | #include <linux/slab.h> |
Linus Walleij | 593cd87 | 2010-11-29 13:52:19 +0100 | [diff] [blame] | 36 | #include <linux/amba/bus.h> |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 37 | #include <mtd/mtd-abi.h> |
| 38 | |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 39 | /* fsmc controller registers for NOR flash */ |
| 40 | #define CTRL 0x0 |
| 41 | /* ctrl register definitions */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 42 | #define BANK_ENABLE BIT(0) |
| 43 | #define MUXED BIT(1) |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 44 | #define NOR_DEV (2 << 2) |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 45 | #define WIDTH_16 BIT(4) |
| 46 | #define RSTPWRDWN BIT(6) |
| 47 | #define WPROT BIT(7) |
| 48 | #define WRT_ENABLE BIT(12) |
| 49 | #define WAIT_ENB BIT(13) |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 50 | |
| 51 | #define CTRL_TIM 0x4 |
| 52 | /* ctrl_tim register definitions */ |
| 53 | |
| 54 | #define FSMC_NOR_BANK_SZ 0x8 |
| 55 | #define FSMC_NOR_REG_SIZE 0x40 |
| 56 | |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 57 | #define FSMC_NOR_REG(base, bank, reg) ((base) + \ |
| 58 | (FSMC_NOR_BANK_SZ * (bank)) + \ |
| 59 | (reg)) |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 60 | |
| 61 | /* fsmc controller registers for NAND flash */ |
Boris Brezillon | 8f3931e | 2018-07-09 22:09:34 +0200 | [diff] [blame] | 62 | #define FSMC_PC 0x00 |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 63 | /* pc register definitions */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 64 | #define FSMC_RESET BIT(0) |
| 65 | #define FSMC_WAITON BIT(1) |
| 66 | #define FSMC_ENABLE BIT(2) |
| 67 | #define FSMC_DEVTYPE_NAND BIT(3) |
| 68 | #define FSMC_DEVWID_16 BIT(4) |
| 69 | #define FSMC_ECCEN BIT(6) |
| 70 | #define FSMC_ECCPLEN_256 BIT(7) |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 71 | #define FSMC_TCLR_SHIFT (9) |
| 72 | #define FSMC_TCLR_MASK (0xF) |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 73 | #define FSMC_TAR_SHIFT (13) |
| 74 | #define FSMC_TAR_MASK (0xF) |
| 75 | #define STS 0x04 |
| 76 | /* sts register definitions */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 77 | #define FSMC_CODE_RDY BIT(15) |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 78 | #define COMM 0x08 |
| 79 | /* comm register definitions */ |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 80 | #define FSMC_TSET_SHIFT 0 |
| 81 | #define FSMC_TSET_MASK 0xFF |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 82 | #define FSMC_TWAIT_SHIFT 8 |
| 83 | #define FSMC_TWAIT_MASK 0xFF |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 84 | #define FSMC_THOLD_SHIFT 16 |
| 85 | #define FSMC_THOLD_MASK 0xFF |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 86 | #define FSMC_THIZ_SHIFT 24 |
| 87 | #define FSMC_THIZ_MASK 0xFF |
| 88 | #define ATTRIB 0x0C |
| 89 | #define IOATA 0x10 |
| 90 | #define ECC1 0x14 |
| 91 | #define ECC2 0x18 |
| 92 | #define ECC3 0x1C |
| 93 | #define FSMC_NAND_BANK_SZ 0x20 |
| 94 | |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 95 | #define FSMC_BUSY_WAIT_TIMEOUT (1 * HZ) |
| 96 | |
Herve Codina | 9472335e | 2021-11-19 16:03:16 +0100 | [diff] [blame] | 97 | /* |
| 98 | * According to SPEAr300 Reference Manual (RM0082) |
| 99 | * TOUDEL = 7ns (Output delay from the flip-flops to the board) |
| 100 | * TINDEL = 5ns (Input delay from the board to the flipflop) |
| 101 | */ |
| 102 | #define TOUTDEL 7000 |
| 103 | #define TINDEL 5000 |
| 104 | |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 105 | struct fsmc_nand_timings { |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 106 | u8 tclr; |
| 107 | u8 tar; |
| 108 | u8 thiz; |
| 109 | u8 thold; |
| 110 | u8 twait; |
| 111 | u8 tset; |
Linus Walleij | 4404d7d | 2016-12-18 12:34:55 +0100 | [diff] [blame] | 112 | }; |
| 113 | |
| 114 | enum access_mode { |
| 115 | USE_DMA_ACCESS = 1, |
| 116 | USE_WORD_ACCESS, |
| 117 | }; |
| 118 | |
| 119 | /** |
Thomas Petazzoni | e7cda01 | 2017-03-21 11:03:56 +0100 | [diff] [blame] | 120 | * struct fsmc_nand_data - structure for FSMC NAND device state |
| 121 | * |
Boris Brezillon | ad71148 | 2018-11-20 10:02:33 +0100 | [diff] [blame] | 122 | * @base: Inherit from the nand_controller struct |
Thomas Petazzoni | e7cda01 | 2017-03-21 11:03:56 +0100 | [diff] [blame] | 123 | * @pid: Part ID on the AMBA PrimeCell format |
Thomas Petazzoni | e7cda01 | 2017-03-21 11:03:56 +0100 | [diff] [blame] | 124 | * @nand: Chip related info for a NAND flash. |
Thomas Petazzoni | e7cda01 | 2017-03-21 11:03:56 +0100 | [diff] [blame] | 125 | * |
| 126 | * @bank: Bank number for probed device. |
Boris Brezillon | 5b47f40 | 2018-11-20 10:02:31 +0100 | [diff] [blame] | 127 | * @dev: Parent device |
| 128 | * @mode: Access mode |
Thomas Petazzoni | e7cda01 | 2017-03-21 11:03:56 +0100 | [diff] [blame] | 129 | * @clk: Clock structure for FSMC. |
| 130 | * |
| 131 | * @read_dma_chan: DMA channel for read access |
| 132 | * @write_dma_chan: DMA channel for write access to NAND |
| 133 | * @dma_access_complete: Completion structure |
| 134 | * |
Boris Brezillon | 5b47f40 | 2018-11-20 10:02:31 +0100 | [diff] [blame] | 135 | * @dev_timings: NAND timings |
| 136 | * |
Thomas Petazzoni | e7cda01 | 2017-03-21 11:03:56 +0100 | [diff] [blame] | 137 | * @data_pa: NAND Physical port for Data. |
| 138 | * @data_va: NAND port for Data. |
| 139 | * @cmd_va: NAND port for Command. |
| 140 | * @addr_va: NAND port for Address. |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 141 | * @regs_va: Registers base address for a given bank. |
Thomas Petazzoni | e7cda01 | 2017-03-21 11:03:56 +0100 | [diff] [blame] | 142 | */ |
| 143 | struct fsmc_nand_data { |
Boris Brezillon | ad71148 | 2018-11-20 10:02:33 +0100 | [diff] [blame] | 144 | struct nand_controller base; |
Thomas Petazzoni | e7cda01 | 2017-03-21 11:03:56 +0100 | [diff] [blame] | 145 | u32 pid; |
| 146 | struct nand_chip nand; |
Thomas Petazzoni | e7cda01 | 2017-03-21 11:03:56 +0100 | [diff] [blame] | 147 | |
| 148 | unsigned int bank; |
| 149 | struct device *dev; |
| 150 | enum access_mode mode; |
| 151 | struct clk *clk; |
| 152 | |
| 153 | /* DMA related objects */ |
| 154 | struct dma_chan *read_dma_chan; |
| 155 | struct dma_chan *write_dma_chan; |
| 156 | struct completion dma_access_complete; |
| 157 | |
| 158 | struct fsmc_nand_timings *dev_timings; |
| 159 | |
| 160 | dma_addr_t data_pa; |
| 161 | void __iomem *data_va; |
| 162 | void __iomem *cmd_va; |
| 163 | void __iomem *addr_va; |
| 164 | void __iomem *regs_va; |
Thomas Petazzoni | e7cda01 | 2017-03-21 11:03:56 +0100 | [diff] [blame] | 165 | }; |
| 166 | |
Boris Brezillon | 22b4695 | 2016-02-03 20:01:42 +0100 | [diff] [blame] | 167 | static int fsmc_ecc1_ooblayout_ecc(struct mtd_info *mtd, int section, |
| 168 | struct mtd_oob_region *oobregion) |
| 169 | { |
| 170 | struct nand_chip *chip = mtd_to_nand(mtd); |
| 171 | |
| 172 | if (section >= chip->ecc.steps) |
| 173 | return -ERANGE; |
| 174 | |
| 175 | oobregion->offset = (section * 16) + 2; |
| 176 | oobregion->length = 3; |
| 177 | |
| 178 | return 0; |
| 179 | } |
| 180 | |
| 181 | static int fsmc_ecc1_ooblayout_free(struct mtd_info *mtd, int section, |
| 182 | struct mtd_oob_region *oobregion) |
| 183 | { |
| 184 | struct nand_chip *chip = mtd_to_nand(mtd); |
| 185 | |
| 186 | if (section >= chip->ecc.steps) |
| 187 | return -ERANGE; |
| 188 | |
| 189 | oobregion->offset = (section * 16) + 8; |
| 190 | |
| 191 | if (section < chip->ecc.steps - 1) |
| 192 | oobregion->length = 8; |
| 193 | else |
| 194 | oobregion->length = mtd->oobsize - oobregion->offset; |
| 195 | |
| 196 | return 0; |
| 197 | } |
| 198 | |
| 199 | static const struct mtd_ooblayout_ops fsmc_ecc1_ooblayout_ops = { |
| 200 | .ecc = fsmc_ecc1_ooblayout_ecc, |
| 201 | .free = fsmc_ecc1_ooblayout_free, |
| 202 | }; |
| 203 | |
Boris Brezillon | 04a123a | 2016-02-09 15:01:21 +0100 | [diff] [blame] | 204 | /* |
| 205 | * ECC placement definitions in oobfree type format. |
| 206 | * There are 13 bytes of ecc for every 512 byte block and it has to be read |
| 207 | * consecutively and immediately after the 512 byte data block for hardware to |
| 208 | * generate the error bit offsets in 512 byte data. |
| 209 | */ |
Boris Brezillon | 22b4695 | 2016-02-03 20:01:42 +0100 | [diff] [blame] | 210 | static int fsmc_ecc4_ooblayout_ecc(struct mtd_info *mtd, int section, |
| 211 | struct mtd_oob_region *oobregion) |
| 212 | { |
| 213 | struct nand_chip *chip = mtd_to_nand(mtd); |
| 214 | |
| 215 | if (section >= chip->ecc.steps) |
| 216 | return -ERANGE; |
| 217 | |
| 218 | oobregion->length = chip->ecc.bytes; |
| 219 | |
| 220 | if (!section && mtd->writesize <= 512) |
| 221 | oobregion->offset = 0; |
| 222 | else |
| 223 | oobregion->offset = (section * 16) + 2; |
| 224 | |
| 225 | return 0; |
| 226 | } |
| 227 | |
| 228 | static int fsmc_ecc4_ooblayout_free(struct mtd_info *mtd, int section, |
| 229 | struct mtd_oob_region *oobregion) |
| 230 | { |
| 231 | struct nand_chip *chip = mtd_to_nand(mtd); |
| 232 | |
| 233 | if (section >= chip->ecc.steps) |
| 234 | return -ERANGE; |
| 235 | |
| 236 | oobregion->offset = (section * 16) + 15; |
| 237 | |
| 238 | if (section < chip->ecc.steps - 1) |
| 239 | oobregion->length = 3; |
| 240 | else |
| 241 | oobregion->length = mtd->oobsize - oobregion->offset; |
| 242 | |
| 243 | return 0; |
| 244 | } |
| 245 | |
| 246 | static const struct mtd_ooblayout_ops fsmc_ecc4_ooblayout_ops = { |
| 247 | .ecc = fsmc_ecc4_ooblayout_ecc, |
| 248 | .free = fsmc_ecc4_ooblayout_free, |
| 249 | }; |
| 250 | |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 251 | static inline struct fsmc_nand_data *nand_to_fsmc(struct nand_chip *chip) |
Boris BREZILLON | 277af42 | 2015-12-10 08:59:46 +0100 | [diff] [blame] | 252 | { |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 253 | return container_of(chip, struct fsmc_nand_data, nand); |
Boris BREZILLON | 277af42 | 2015-12-10 08:59:46 +0100 | [diff] [blame] | 254 | } |
| 255 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 256 | /* |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 257 | * fsmc_nand_setup - FSMC (Flexible Static Memory Controller) init routine |
| 258 | * |
| 259 | * This routine initializes timing parameters related to NAND memory access in |
| 260 | * FSMC registers |
| 261 | */ |
Thomas Petazzoni | 6335b50 | 2017-04-29 10:52:34 +0200 | [diff] [blame] | 262 | static void fsmc_nand_setup(struct fsmc_nand_data *host, |
Thomas Petazzoni | 1debdb9 | 2017-04-29 10:52:36 +0200 | [diff] [blame] | 263 | struct fsmc_nand_timings *tims) |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 264 | { |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 265 | u32 value = FSMC_DEVTYPE_NAND | FSMC_ENABLE | FSMC_WAITON; |
| 266 | u32 tclr, tar, thiz, thold, twait, tset; |
Vipin Kumar | e2f6bce | 2012-03-14 11:47:14 +0530 | [diff] [blame] | 267 | |
| 268 | tclr = (tims->tclr & FSMC_TCLR_MASK) << FSMC_TCLR_SHIFT; |
| 269 | tar = (tims->tar & FSMC_TAR_MASK) << FSMC_TAR_SHIFT; |
| 270 | thiz = (tims->thiz & FSMC_THIZ_MASK) << FSMC_THIZ_SHIFT; |
| 271 | thold = (tims->thold & FSMC_THOLD_MASK) << FSMC_THOLD_SHIFT; |
| 272 | twait = (tims->twait & FSMC_TWAIT_MASK) << FSMC_TWAIT_SHIFT; |
| 273 | tset = (tims->tset & FSMC_TSET_MASK) << FSMC_TSET_SHIFT; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 274 | |
Thomas Petazzoni | 6335b50 | 2017-04-29 10:52:34 +0200 | [diff] [blame] | 275 | if (host->nand.options & NAND_BUSWIDTH_16) |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 276 | value |= FSMC_DEVWID_16; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 277 | |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 278 | writel_relaxed(value | tclr | tar, host->regs_va + FSMC_PC); |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 279 | writel_relaxed(thiz | thold | twait | tset, host->regs_va + COMM); |
| 280 | writel_relaxed(thiz | thold | twait | tset, host->regs_va + ATTRIB); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 281 | } |
| 282 | |
Thomas Petazzoni | d9fb079 | 2017-04-29 10:52:35 +0200 | [diff] [blame] | 283 | static int fsmc_calc_timings(struct fsmc_nand_data *host, |
| 284 | const struct nand_sdr_timings *sdrt, |
| 285 | struct fsmc_nand_timings *tims) |
| 286 | { |
| 287 | unsigned long hclk = clk_get_rate(host->clk); |
| 288 | unsigned long hclkn = NSEC_PER_SEC / hclk; |
Herve Codina | 9472335e | 2021-11-19 16:03:16 +0100 | [diff] [blame] | 289 | u32 thiz, thold, twait, tset, twait_min; |
Thomas Petazzoni | d9fb079 | 2017-04-29 10:52:35 +0200 | [diff] [blame] | 290 | |
| 291 | if (sdrt->tRC_min < 30000) |
| 292 | return -EOPNOTSUPP; |
| 293 | |
| 294 | tims->tar = DIV_ROUND_UP(sdrt->tAR_min / 1000, hclkn) - 1; |
| 295 | if (tims->tar > FSMC_TAR_MASK) |
| 296 | tims->tar = FSMC_TAR_MASK; |
| 297 | tims->tclr = DIV_ROUND_UP(sdrt->tCLR_min / 1000, hclkn) - 1; |
| 298 | if (tims->tclr > FSMC_TCLR_MASK) |
| 299 | tims->tclr = FSMC_TCLR_MASK; |
| 300 | |
| 301 | thiz = sdrt->tCS_min - sdrt->tWP_min; |
| 302 | tims->thiz = DIV_ROUND_UP(thiz / 1000, hclkn); |
| 303 | |
| 304 | thold = sdrt->tDH_min; |
| 305 | if (thold < sdrt->tCH_min) |
| 306 | thold = sdrt->tCH_min; |
| 307 | if (thold < sdrt->tCLH_min) |
| 308 | thold = sdrt->tCLH_min; |
| 309 | if (thold < sdrt->tWH_min) |
| 310 | thold = sdrt->tWH_min; |
| 311 | if (thold < sdrt->tALH_min) |
| 312 | thold = sdrt->tALH_min; |
| 313 | if (thold < sdrt->tREH_min) |
| 314 | thold = sdrt->tREH_min; |
| 315 | tims->thold = DIV_ROUND_UP(thold / 1000, hclkn); |
| 316 | if (tims->thold == 0) |
| 317 | tims->thold = 1; |
| 318 | else if (tims->thold > FSMC_THOLD_MASK) |
| 319 | tims->thold = FSMC_THOLD_MASK; |
| 320 | |
Thomas Petazzoni | d9fb079 | 2017-04-29 10:52:35 +0200 | [diff] [blame] | 321 | tset = max(sdrt->tCS_min - sdrt->tWP_min, |
| 322 | sdrt->tCEA_max - sdrt->tREA_max); |
| 323 | tims->tset = DIV_ROUND_UP(tset / 1000, hclkn) - 1; |
| 324 | if (tims->tset == 0) |
| 325 | tims->tset = 1; |
| 326 | else if (tims->tset > FSMC_TSET_MASK) |
| 327 | tims->tset = FSMC_TSET_MASK; |
| 328 | |
Herve Codina | 9472335e | 2021-11-19 16:03:16 +0100 | [diff] [blame] | 329 | /* |
| 330 | * According to SPEAr300 Reference Manual (RM0082) which gives more |
| 331 | * information related to FSMSC timings than the SPEAr600 one (RM0305), |
| 332 | * twait >= tCEA - (tset * TCLK) + TOUTDEL + TINDEL |
| 333 | */ |
| 334 | twait_min = sdrt->tCEA_max - ((tims->tset + 1) * hclkn * 1000) |
| 335 | + TOUTDEL + TINDEL; |
| 336 | twait = max3(sdrt->tRP_min, sdrt->tWP_min, twait_min); |
| 337 | |
| 338 | tims->twait = DIV_ROUND_UP(twait / 1000, hclkn) - 1; |
| 339 | if (tims->twait == 0) |
| 340 | tims->twait = 1; |
| 341 | else if (tims->twait > FSMC_TWAIT_MASK) |
| 342 | tims->twait = FSMC_TWAIT_MASK; |
| 343 | |
Thomas Petazzoni | d9fb079 | 2017-04-29 10:52:35 +0200 | [diff] [blame] | 344 | return 0; |
| 345 | } |
| 346 | |
Miquel Raynal | 4c46667 | 2020-05-29 13:13:13 +0200 | [diff] [blame] | 347 | static int fsmc_setup_interface(struct nand_chip *nand, int csline, |
| 348 | const struct nand_interface_config *conf) |
Thomas Petazzoni | d9fb079 | 2017-04-29 10:52:35 +0200 | [diff] [blame] | 349 | { |
Boris Brezillon | 1e809f7 | 2018-11-20 10:02:32 +0100 | [diff] [blame] | 350 | struct fsmc_nand_data *host = nand_to_fsmc(nand); |
Thomas Petazzoni | d9fb079 | 2017-04-29 10:52:35 +0200 | [diff] [blame] | 351 | struct fsmc_nand_timings tims; |
| 352 | const struct nand_sdr_timings *sdrt; |
| 353 | int ret; |
| 354 | |
| 355 | sdrt = nand_get_sdr_timings(conf); |
| 356 | if (IS_ERR(sdrt)) |
| 357 | return PTR_ERR(sdrt); |
| 358 | |
| 359 | ret = fsmc_calc_timings(host, sdrt, &tims); |
| 360 | if (ret) |
| 361 | return ret; |
| 362 | |
Boris Brezillon | 104e442 | 2017-03-16 09:35:58 +0100 | [diff] [blame] | 363 | if (csline == NAND_DATA_IFACE_CHECK_ONLY) |
Thomas Petazzoni | d9fb079 | 2017-04-29 10:52:35 +0200 | [diff] [blame] | 364 | return 0; |
| 365 | |
| 366 | fsmc_nand_setup(host, &tims); |
| 367 | |
| 368 | return 0; |
| 369 | } |
| 370 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 371 | /* |
| 372 | * fsmc_enable_hwecc - Enables Hardware ECC through FSMC registers |
| 373 | */ |
Boris Brezillon | ec47636 | 2018-09-06 14:05:17 +0200 | [diff] [blame] | 374 | static void fsmc_enable_hwecc(struct nand_chip *chip, int mode) |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 375 | { |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 376 | struct fsmc_nand_data *host = nand_to_fsmc(chip); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 377 | |
Boris Brezillon | 8f3931e | 2018-07-09 22:09:34 +0200 | [diff] [blame] | 378 | writel_relaxed(readl(host->regs_va + FSMC_PC) & ~FSMC_ECCPLEN_256, |
| 379 | host->regs_va + FSMC_PC); |
| 380 | writel_relaxed(readl(host->regs_va + FSMC_PC) & ~FSMC_ECCEN, |
| 381 | host->regs_va + FSMC_PC); |
| 382 | writel_relaxed(readl(host->regs_va + FSMC_PC) | FSMC_ECCEN, |
| 383 | host->regs_va + FSMC_PC); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | /* |
| 387 | * fsmc_read_hwecc_ecc4 - Hardware ECC calculator for ecc4 option supported by |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 388 | * FSMC. ECC is 13 bytes for 512 bytes of data (supports error correction up to |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 389 | * max of 8-bits) |
| 390 | */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 391 | static int fsmc_read_hwecc_ecc4(struct nand_chip *chip, const u8 *data, |
| 392 | u8 *ecc) |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 393 | { |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 394 | struct fsmc_nand_data *host = nand_to_fsmc(chip); |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 395 | u32 ecc_tmp; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 396 | unsigned long deadline = jiffies + FSMC_BUSY_WAIT_TIMEOUT; |
| 397 | |
| 398 | do { |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 399 | if (readl_relaxed(host->regs_va + STS) & FSMC_CODE_RDY) |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 400 | break; |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 401 | |
| 402 | cond_resched(); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 403 | } while (!time_after_eq(jiffies, deadline)); |
| 404 | |
Vipin Kumar | 712c4ad | 2012-03-14 11:47:16 +0530 | [diff] [blame] | 405 | if (time_after_eq(jiffies, deadline)) { |
| 406 | dev_err(host->dev, "calculate ecc timed out\n"); |
| 407 | return -ETIMEDOUT; |
| 408 | } |
| 409 | |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 410 | ecc_tmp = readl_relaxed(host->regs_va + ECC1); |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 411 | ecc[0] = ecc_tmp; |
| 412 | ecc[1] = ecc_tmp >> 8; |
| 413 | ecc[2] = ecc_tmp >> 16; |
| 414 | ecc[3] = ecc_tmp >> 24; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 415 | |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 416 | ecc_tmp = readl_relaxed(host->regs_va + ECC2); |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 417 | ecc[4] = ecc_tmp; |
| 418 | ecc[5] = ecc_tmp >> 8; |
| 419 | ecc[6] = ecc_tmp >> 16; |
| 420 | ecc[7] = ecc_tmp >> 24; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 421 | |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 422 | ecc_tmp = readl_relaxed(host->regs_va + ECC3); |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 423 | ecc[8] = ecc_tmp; |
| 424 | ecc[9] = ecc_tmp >> 8; |
| 425 | ecc[10] = ecc_tmp >> 16; |
| 426 | ecc[11] = ecc_tmp >> 24; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 427 | |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 428 | ecc_tmp = readl_relaxed(host->regs_va + STS); |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 429 | ecc[12] = ecc_tmp >> 16; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 430 | |
| 431 | return 0; |
| 432 | } |
| 433 | |
| 434 | /* |
| 435 | * fsmc_read_hwecc_ecc1 - Hardware ECC calculator for ecc1 option supported by |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 436 | * FSMC. ECC is 3 bytes for 512 bytes of data (supports error correction up to |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 437 | * max of 1-bit) |
| 438 | */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 439 | static int fsmc_read_hwecc_ecc1(struct nand_chip *chip, const u8 *data, |
| 440 | u8 *ecc) |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 441 | { |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 442 | struct fsmc_nand_data *host = nand_to_fsmc(chip); |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 443 | u32 ecc_tmp; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 444 | |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 445 | ecc_tmp = readl_relaxed(host->regs_va + ECC1); |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 446 | ecc[0] = ecc_tmp; |
| 447 | ecc[1] = ecc_tmp >> 8; |
| 448 | ecc[2] = ecc_tmp >> 16; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 449 | |
| 450 | return 0; |
| 451 | } |
| 452 | |
Miquel Raynal | ad9ffdc | 2021-04-13 18:18:35 +0200 | [diff] [blame] | 453 | static int fsmc_correct_ecc1(struct nand_chip *chip, |
| 454 | unsigned char *buf, |
| 455 | unsigned char *read_ecc, |
| 456 | unsigned char *calc_ecc) |
| 457 | { |
Miquel Raynal | 9be1446 | 2021-09-29 00:15:00 +0200 | [diff] [blame] | 458 | bool sm_order = chip->ecc.options & NAND_ECC_SOFT_HAMMING_SM_ORDER; |
| 459 | |
Miquel Raynal | ad9ffdc | 2021-04-13 18:18:35 +0200 | [diff] [blame] | 460 | return ecc_sw_hamming_correct(buf, read_ecc, calc_ecc, |
Miquel Raynal | 9be1446 | 2021-09-29 00:15:00 +0200 | [diff] [blame] | 461 | chip->ecc.size, sm_order); |
Miquel Raynal | ad9ffdc | 2021-04-13 18:18:35 +0200 | [diff] [blame] | 462 | } |
| 463 | |
Vipin Kumar | 519300c | 2012-03-07 17:00:49 +0530 | [diff] [blame] | 464 | /* Count the number of 0's in buff upto a max of max_bits */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 465 | static int count_written_bits(u8 *buff, int size, int max_bits) |
Vipin Kumar | 519300c | 2012-03-07 17:00:49 +0530 | [diff] [blame] | 466 | { |
| 467 | int k, written_bits = 0; |
| 468 | |
| 469 | for (k = 0; k < size; k++) { |
| 470 | written_bits += hweight8(~buff[k]); |
| 471 | if (written_bits > max_bits) |
| 472 | break; |
| 473 | } |
| 474 | |
| 475 | return written_bits; |
| 476 | } |
| 477 | |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 478 | static void dma_complete(void *param) |
| 479 | { |
| 480 | struct fsmc_nand_data *host = param; |
| 481 | |
| 482 | complete(&host->dma_access_complete); |
| 483 | } |
| 484 | |
| 485 | static int dma_xfer(struct fsmc_nand_data *host, void *buffer, int len, |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 486 | enum dma_data_direction direction) |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 487 | { |
| 488 | struct dma_chan *chan; |
| 489 | struct dma_device *dma_dev; |
| 490 | struct dma_async_tx_descriptor *tx; |
| 491 | dma_addr_t dma_dst, dma_src, dma_addr; |
| 492 | dma_cookie_t cookie; |
| 493 | unsigned long flags = DMA_CTRL_ACK | DMA_PREP_INTERRUPT; |
| 494 | int ret; |
Nicholas Mc Guire | 818a45b | 2015-03-13 07:54:46 -0400 | [diff] [blame] | 495 | unsigned long time_left; |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 496 | |
| 497 | if (direction == DMA_TO_DEVICE) |
| 498 | chan = host->write_dma_chan; |
| 499 | else if (direction == DMA_FROM_DEVICE) |
| 500 | chan = host->read_dma_chan; |
| 501 | else |
| 502 | return -EINVAL; |
| 503 | |
| 504 | dma_dev = chan->device; |
| 505 | dma_addr = dma_map_single(dma_dev->dev, buffer, len, direction); |
| 506 | |
| 507 | if (direction == DMA_TO_DEVICE) { |
| 508 | dma_src = dma_addr; |
| 509 | dma_dst = host->data_pa; |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 510 | } else { |
| 511 | dma_src = host->data_pa; |
| 512 | dma_dst = dma_addr; |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 513 | } |
| 514 | |
| 515 | tx = dma_dev->device_prep_dma_memcpy(chan, dma_dst, dma_src, |
| 516 | len, flags); |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 517 | if (!tx) { |
| 518 | dev_err(host->dev, "device_prep_dma_memcpy error\n"); |
Bartlomiej Zolnierkiewicz | d1806a5 | 2012-11-05 10:00:14 +0000 | [diff] [blame] | 519 | ret = -EIO; |
| 520 | goto unmap_dma; |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 521 | } |
| 522 | |
| 523 | tx->callback = dma_complete; |
| 524 | tx->callback_param = host; |
| 525 | cookie = tx->tx_submit(tx); |
| 526 | |
| 527 | ret = dma_submit_error(cookie); |
| 528 | if (ret) { |
| 529 | dev_err(host->dev, "dma_submit_error %d\n", cookie); |
Bartlomiej Zolnierkiewicz | d1806a5 | 2012-11-05 10:00:14 +0000 | [diff] [blame] | 530 | goto unmap_dma; |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 531 | } |
| 532 | |
| 533 | dma_async_issue_pending(chan); |
| 534 | |
Nicholas Mc Guire | 818a45b | 2015-03-13 07:54:46 -0400 | [diff] [blame] | 535 | time_left = |
Vipin Kumar | 928aa2a | 2012-10-09 16:14:48 +0530 | [diff] [blame] | 536 | wait_for_completion_timeout(&host->dma_access_complete, |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 537 | msecs_to_jiffies(3000)); |
Nicholas Mc Guire | 818a45b | 2015-03-13 07:54:46 -0400 | [diff] [blame] | 538 | if (time_left == 0) { |
Vinod Koul | b177ea3 | 2014-10-11 21:10:32 +0530 | [diff] [blame] | 539 | dmaengine_terminate_all(chan); |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 540 | dev_err(host->dev, "wait_for_completion_timeout\n"); |
Nicholas Mc Guire | 0bda3e1 | 2015-03-13 07:54:45 -0400 | [diff] [blame] | 541 | ret = -ETIMEDOUT; |
Bartlomiej Zolnierkiewicz | d1806a5 | 2012-11-05 10:00:14 +0000 | [diff] [blame] | 542 | goto unmap_dma; |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 543 | } |
| 544 | |
Bartlomiej Zolnierkiewicz | d1806a5 | 2012-11-05 10:00:14 +0000 | [diff] [blame] | 545 | ret = 0; |
| 546 | |
| 547 | unmap_dma: |
| 548 | dma_unmap_single(dma_dev->dev, dma_addr, len, direction); |
| 549 | |
| 550 | return ret; |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 551 | } |
| 552 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 553 | /* |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 554 | * fsmc_write_buf - write buffer to chip |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 555 | * @host: FSMC NAND controller |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 556 | * @buf: data buffer |
| 557 | * @len: number of bytes to write |
| 558 | */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 559 | static void fsmc_write_buf(struct fsmc_nand_data *host, const u8 *buf, |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 560 | int len) |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 561 | { |
| 562 | int i; |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 563 | |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 564 | if (IS_ALIGNED((uintptr_t)buf, sizeof(u32)) && |
| 565 | IS_ALIGNED(len, sizeof(u32))) { |
| 566 | u32 *p = (u32 *)buf; |
| 567 | |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 568 | len = len >> 2; |
| 569 | for (i = 0; i < len; i++) |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 570 | writel_relaxed(p[i], host->data_va); |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 571 | } else { |
| 572 | for (i = 0; i < len; i++) |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 573 | writeb_relaxed(buf[i], host->data_va); |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 574 | } |
| 575 | } |
| 576 | |
| 577 | /* |
| 578 | * fsmc_read_buf - read chip data into buffer |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 579 | * @host: FSMC NAND controller |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 580 | * @buf: buffer to store date |
| 581 | * @len: number of bytes to read |
| 582 | */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 583 | static void fsmc_read_buf(struct fsmc_nand_data *host, u8 *buf, int len) |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 584 | { |
| 585 | int i; |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 586 | |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 587 | if (IS_ALIGNED((uintptr_t)buf, sizeof(u32)) && |
| 588 | IS_ALIGNED(len, sizeof(u32))) { |
| 589 | u32 *p = (u32 *)buf; |
| 590 | |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 591 | len = len >> 2; |
| 592 | for (i = 0; i < len; i++) |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 593 | p[i] = readl_relaxed(host->data_va); |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 594 | } else { |
| 595 | for (i = 0; i < len; i++) |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 596 | buf[i] = readb_relaxed(host->data_va); |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 597 | } |
| 598 | } |
| 599 | |
| 600 | /* |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 601 | * fsmc_read_buf_dma - read chip data into buffer |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 602 | * @host: FSMC NAND controller |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 603 | * @buf: buffer to store date |
| 604 | * @len: number of bytes to read |
| 605 | */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 606 | static void fsmc_read_buf_dma(struct fsmc_nand_data *host, u8 *buf, |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 607 | int len) |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 608 | { |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 609 | dma_xfer(host, buf, len, DMA_FROM_DEVICE); |
| 610 | } |
| 611 | |
| 612 | /* |
| 613 | * fsmc_write_buf_dma - write buffer to chip |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 614 | * @host: FSMC NAND controller |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 615 | * @buf: data buffer |
| 616 | * @len: number of bytes to write |
| 617 | */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 618 | static void fsmc_write_buf_dma(struct fsmc_nand_data *host, const u8 *buf, |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 619 | int len) |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 620 | { |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 621 | dma_xfer(host, (void *)buf, len, DMA_TO_DEVICE); |
| 622 | } |
| 623 | |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 624 | /* |
| 625 | * fsmc_exec_op - hook called by the core to execute NAND operations |
| 626 | * |
| 627 | * This controller is simple enough and thus does not need to use the parser |
| 628 | * provided by the core, instead, handle every situation here. |
| 629 | */ |
| 630 | static int fsmc_exec_op(struct nand_chip *chip, const struct nand_operation *op, |
| 631 | bool check_only) |
| 632 | { |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 633 | struct fsmc_nand_data *host = nand_to_fsmc(chip); |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 634 | const struct nand_op_instr *instr = NULL; |
| 635 | int ret = 0; |
| 636 | unsigned int op_id; |
| 637 | int i; |
| 638 | |
Boris Brezillon | ce446b4 | 2020-04-18 21:42:17 +0200 | [diff] [blame] | 639 | if (check_only) |
| 640 | return 0; |
| 641 | |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 642 | pr_debug("Executing operation [%d instructions]:\n", op->ninstrs); |
Boris Brezillon | 550b9fc | 2018-11-11 08:55:17 +0100 | [diff] [blame] | 643 | |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 644 | for (op_id = 0; op_id < op->ninstrs; op_id++) { |
| 645 | instr = &op->instrs[op_id]; |
| 646 | |
Sascha Hauer | bf82832 | 2019-05-21 09:06:31 +0200 | [diff] [blame] | 647 | nand_op_trace(" ", instr); |
| 648 | |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 649 | switch (instr->type) { |
| 650 | case NAND_OP_CMD_INSTR: |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 651 | writeb_relaxed(instr->ctx.cmd.opcode, host->cmd_va); |
| 652 | break; |
| 653 | |
| 654 | case NAND_OP_ADDR_INSTR: |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 655 | for (i = 0; i < instr->ctx.addr.naddrs; i++) |
| 656 | writeb_relaxed(instr->ctx.addr.addrs[i], |
| 657 | host->addr_va); |
| 658 | break; |
| 659 | |
| 660 | case NAND_OP_DATA_IN_INSTR: |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 661 | if (host->mode == USE_DMA_ACCESS) |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 662 | fsmc_read_buf_dma(host, instr->ctx.data.buf.in, |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 663 | instr->ctx.data.len); |
| 664 | else |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 665 | fsmc_read_buf(host, instr->ctx.data.buf.in, |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 666 | instr->ctx.data.len); |
| 667 | break; |
| 668 | |
| 669 | case NAND_OP_DATA_OUT_INSTR: |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 670 | if (host->mode == USE_DMA_ACCESS) |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 671 | fsmc_write_buf_dma(host, |
| 672 | instr->ctx.data.buf.out, |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 673 | instr->ctx.data.len); |
| 674 | else |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 675 | fsmc_write_buf(host, instr->ctx.data.buf.out, |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 676 | instr->ctx.data.len); |
| 677 | break; |
| 678 | |
| 679 | case NAND_OP_WAITRDY_INSTR: |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 680 | ret = nand_soft_waitrdy(chip, |
| 681 | instr->ctx.waitrdy.timeout_ms); |
| 682 | break; |
| 683 | } |
Herve Codina | a4ca0c4 | 2021-11-19 16:03:15 +0100 | [diff] [blame] | 684 | |
| 685 | if (instr->delay_ns) |
| 686 | ndelay(instr->delay_ns); |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 687 | } |
| 688 | |
| 689 | return ret; |
| 690 | } |
| 691 | |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 692 | /* |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 693 | * fsmc_read_page_hwecc |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 694 | * @chip: nand chip info structure |
| 695 | * @buf: buffer to store read data |
Brian Norris | 1fbb938 | 2012-05-02 10:14:55 -0700 | [diff] [blame] | 696 | * @oob_required: caller expects OOB data read to chip->oob_poi |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 697 | * @page: page number to read |
| 698 | * |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 699 | * This routine is needed for fsmc version 8 as reading from NAND chip has to be |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 700 | * performed in a strict sequence as follows: |
| 701 | * data(512 byte) -> ecc(13 byte) |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 702 | * After this read, fsmc hardware generates and reports error data bits(up to a |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 703 | * max of 8 bits) |
| 704 | */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 705 | static int fsmc_read_page_hwecc(struct nand_chip *chip, u8 *buf, |
Boris Brezillon | b976168 | 2018-09-06 14:05:20 +0200 | [diff] [blame] | 706 | int oob_required, int page) |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 707 | { |
Boris Brezillon | b976168 | 2018-09-06 14:05:20 +0200 | [diff] [blame] | 708 | struct mtd_info *mtd = nand_to_mtd(chip); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 709 | int i, j, s, stat, eccsize = chip->ecc.size; |
| 710 | int eccbytes = chip->ecc.bytes; |
| 711 | int eccsteps = chip->ecc.steps; |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 712 | u8 *p = buf; |
| 713 | u8 *ecc_calc = chip->ecc.calc_buf; |
| 714 | u8 *ecc_code = chip->ecc.code_buf; |
Gustavo A. R. Silva | 41d6f0d | 2018-10-10 17:58:58 +0200 | [diff] [blame] | 715 | int off, len, ret, group = 0; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 716 | /* |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 717 | * ecc_oob is intentionally taken as u16. In 16bit devices, we |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 718 | * end up reading 14 bytes (7 words) from oob. The local array is |
| 719 | * to maintain word alignment |
| 720 | */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 721 | u16 ecc_oob[7]; |
| 722 | u8 *oob = (u8 *)&ecc_oob[0]; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 723 | unsigned int max_bitflips = 0; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 724 | |
| 725 | for (i = 0, s = 0; s < eccsteps; s++, i += eccbytes, p += eccsize) { |
Boris Brezillon | 97d90da | 2017-11-30 18:01:29 +0100 | [diff] [blame] | 726 | nand_read_page_op(chip, page, s * eccsize, NULL, 0); |
Boris Brezillon | ec47636 | 2018-09-06 14:05:17 +0200 | [diff] [blame] | 727 | chip->ecc.hwctl(chip, NAND_ECC_READ); |
Miquel Raynal | b451f5b | 2020-05-07 12:52:36 +0200 | [diff] [blame] | 728 | ret = nand_read_data_op(chip, p, eccsize, false, false); |
Gustavo A. R. Silva | 41d6f0d | 2018-10-10 17:58:58 +0200 | [diff] [blame] | 729 | if (ret) |
| 730 | return ret; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 731 | |
| 732 | for (j = 0; j < eccbytes;) { |
Boris Brezillon | 04a123a | 2016-02-09 15:01:21 +0100 | [diff] [blame] | 733 | struct mtd_oob_region oobregion; |
Boris Brezillon | 04a123a | 2016-02-09 15:01:21 +0100 | [diff] [blame] | 734 | |
| 735 | ret = mtd_ooblayout_ecc(mtd, group++, &oobregion); |
| 736 | if (ret) |
| 737 | return ret; |
| 738 | |
| 739 | off = oobregion.offset; |
| 740 | len = oobregion.length; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 741 | |
| 742 | /* |
Vipin Kumar | 4cbe1bf0 | 2012-03-14 11:47:09 +0530 | [diff] [blame] | 743 | * length is intentionally kept a higher multiple of 2 |
| 744 | * to read at least 13 bytes even in case of 16 bit NAND |
| 745 | * devices |
| 746 | */ |
Vipin Kumar | aea686b | 2012-03-14 11:47:10 +0530 | [diff] [blame] | 747 | if (chip->options & NAND_BUSWIDTH_16) |
| 748 | len = roundup(len, 2); |
| 749 | |
Boris Brezillon | 97d90da | 2017-11-30 18:01:29 +0100 | [diff] [blame] | 750 | nand_read_oob_op(chip, page, off, oob + j, len); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 751 | j += len; |
| 752 | } |
| 753 | |
Vipin Kumar | 519300c | 2012-03-07 17:00:49 +0530 | [diff] [blame] | 754 | memcpy(&ecc_code[i], oob, chip->ecc.bytes); |
Boris Brezillon | af37d2c | 2018-09-06 14:05:18 +0200 | [diff] [blame] | 755 | chip->ecc.calculate(chip, p, &ecc_calc[i]); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 756 | |
Boris Brezillon | 00da2ea | 2018-09-06 14:05:19 +0200 | [diff] [blame] | 757 | stat = chip->ecc.correct(chip, p, &ecc_code[i], &ecc_calc[i]); |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 758 | if (stat < 0) { |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 759 | mtd->ecc_stats.failed++; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 760 | } else { |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 761 | mtd->ecc_stats.corrected += stat; |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 762 | max_bitflips = max_t(unsigned int, max_bitflips, stat); |
| 763 | } |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 764 | } |
| 765 | |
Mike Dunn | 3f91e94 | 2012-04-25 12:06:09 -0700 | [diff] [blame] | 766 | return max_bitflips; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 767 | } |
| 768 | |
| 769 | /* |
Armando Visconti | 753e013 | 2012-03-07 17:00:54 +0530 | [diff] [blame] | 770 | * fsmc_bch8_correct_data |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 771 | * @mtd: mtd info structure |
| 772 | * @dat: buffer of read data |
| 773 | * @read_ecc: ecc read from device spare area |
| 774 | * @calc_ecc: ecc calculated from read data |
| 775 | * |
| 776 | * calc_ecc is a 104 bit information containing maximum of 8 error |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 777 | * offset information of 13 bits each in 512 bytes of read data. |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 778 | */ |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 779 | static int fsmc_bch8_correct_data(struct nand_chip *chip, u8 *dat, |
| 780 | u8 *read_ecc, u8 *calc_ecc) |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 781 | { |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 782 | struct fsmc_nand_data *host = nand_to_fsmc(chip); |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 783 | u32 err_idx[8]; |
| 784 | u32 num_err, i; |
| 785 | u32 ecc1, ecc2, ecc3, ecc4; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 786 | |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 787 | num_err = (readl_relaxed(host->regs_va + STS) >> 10) & 0xF; |
Vipin Kumar | 519300c | 2012-03-07 17:00:49 +0530 | [diff] [blame] | 788 | |
| 789 | /* no bit flipping */ |
| 790 | if (likely(num_err == 0)) |
| 791 | return 0; |
| 792 | |
| 793 | /* too many errors */ |
| 794 | if (unlikely(num_err > 8)) { |
| 795 | /* |
| 796 | * This is a temporary erase check. A newly erased page read |
| 797 | * would result in an ecc error because the oob data is also |
| 798 | * erased to FF and the calculated ecc for an FF data is not |
| 799 | * FF..FF. |
| 800 | * This is a workaround to skip performing correction in case |
| 801 | * data is FF..FF |
| 802 | * |
| 803 | * Logic: |
| 804 | * For every page, each bit written as 0 is counted until these |
| 805 | * number of bits are greater than 8 (the maximum correction |
| 806 | * capability of FSMC for each 512 + 13 bytes) |
| 807 | */ |
| 808 | |
| 809 | int bits_ecc = count_written_bits(read_ecc, chip->ecc.bytes, 8); |
| 810 | int bits_data = count_written_bits(dat, chip->ecc.size, 8); |
| 811 | |
| 812 | if ((bits_ecc + bits_data) <= 8) { |
| 813 | if (bits_data) |
| 814 | memset(dat, 0xff, chip->ecc.size); |
| 815 | return bits_data; |
| 816 | } |
| 817 | |
| 818 | return -EBADMSG; |
| 819 | } |
| 820 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 821 | /* |
| 822 | * ------------------- calc_ecc[] bit wise -----------|--13 bits--| |
| 823 | * |---idx[7]--|--.....-----|---idx[2]--||---idx[1]--||---idx[0]--| |
| 824 | * |
| 825 | * calc_ecc is a 104 bit information containing maximum of 8 error |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 826 | * offset information of 13 bits each. calc_ecc is copied into a |
| 827 | * u64 array and error offset indexes are populated in err_idx |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 828 | * array |
| 829 | */ |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 830 | ecc1 = readl_relaxed(host->regs_va + ECC1); |
| 831 | ecc2 = readl_relaxed(host->regs_va + ECC2); |
| 832 | ecc3 = readl_relaxed(host->regs_va + ECC3); |
| 833 | ecc4 = readl_relaxed(host->regs_va + STS); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 834 | |
Armando Visconti | 753e013 | 2012-03-07 17:00:54 +0530 | [diff] [blame] | 835 | err_idx[0] = (ecc1 >> 0) & 0x1FFF; |
| 836 | err_idx[1] = (ecc1 >> 13) & 0x1FFF; |
| 837 | err_idx[2] = (((ecc2 >> 0) & 0x7F) << 6) | ((ecc1 >> 26) & 0x3F); |
| 838 | err_idx[3] = (ecc2 >> 7) & 0x1FFF; |
| 839 | err_idx[4] = (((ecc3 >> 0) & 0x1) << 12) | ((ecc2 >> 20) & 0xFFF); |
| 840 | err_idx[5] = (ecc3 >> 1) & 0x1FFF; |
| 841 | err_idx[6] = (ecc3 >> 14) & 0x1FFF; |
| 842 | err_idx[7] = (((ecc4 >> 16) & 0xFF) << 5) | ((ecc3 >> 27) & 0x1F); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 843 | |
| 844 | i = 0; |
| 845 | while (num_err--) { |
Fenghua Yu | 7c26e6e | 2019-12-20 16:05:55 -0800 | [diff] [blame] | 846 | err_idx[i] ^= 3; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 847 | |
Vipin Kumar | b533f8d | 2012-03-14 11:47:11 +0530 | [diff] [blame] | 848 | if (err_idx[i] < chip->ecc.size * 8) { |
Fenghua Yu | 7c26e6e | 2019-12-20 16:05:55 -0800 | [diff] [blame] | 849 | int err = err_idx[i]; |
| 850 | |
| 851 | dat[err >> 3] ^= BIT(err & 7); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 852 | i++; |
| 853 | } |
| 854 | } |
| 855 | return i; |
| 856 | } |
| 857 | |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 858 | static bool filter(struct dma_chan *chan, void *slave) |
| 859 | { |
| 860 | chan->private = slave; |
| 861 | return true; |
| 862 | } |
| 863 | |
Bill Pemberton | 06f2551 | 2012-11-19 13:23:07 -0500 | [diff] [blame] | 864 | static int fsmc_nand_probe_config_dt(struct platform_device *pdev, |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 865 | struct fsmc_nand_data *host, |
| 866 | struct nand_chip *nand) |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 867 | { |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 868 | struct device_node *np = pdev->dev.of_node; |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 869 | u32 val; |
Stefan Roese | 62b57f4 | 2015-03-19 14:34:29 +0100 | [diff] [blame] | 870 | int ret; |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 871 | |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 872 | nand->options = 0; |
Thomas Petazzoni | ee56874 | 2017-03-21 11:03:53 +0100 | [diff] [blame] | 873 | |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 874 | if (!of_property_read_u32(np, "bank-width", &val)) { |
| 875 | if (val == 2) { |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 876 | nand->options |= NAND_BUSWIDTH_16; |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 877 | } else if (val != 1) { |
| 878 | dev_err(&pdev->dev, "invalid bank-width %u\n", val); |
| 879 | return -EINVAL; |
| 880 | } |
| 881 | } |
Thomas Petazzoni | ee56874 | 2017-03-21 11:03:53 +0100 | [diff] [blame] | 882 | |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 883 | if (of_get_property(np, "nand-skip-bbtscan", NULL)) |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 884 | nand->options |= NAND_SKIP_BBTSCAN; |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 885 | |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 886 | host->dev_timings = devm_kzalloc(&pdev->dev, |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 887 | sizeof(*host->dev_timings), |
| 888 | GFP_KERNEL); |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 889 | if (!host->dev_timings) |
Mian Yousaf Kaukab | 64ddba4 | 2013-04-29 14:07:48 +0200 | [diff] [blame] | 890 | return -ENOMEM; |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 891 | |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 892 | ret = of_property_read_u8_array(np, "timings", (u8 *)host->dev_timings, |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 893 | sizeof(*host->dev_timings)); |
Thomas Petazzoni | d9fb079 | 2017-04-29 10:52:35 +0200 | [diff] [blame] | 894 | if (ret) |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 895 | host->dev_timings = NULL; |
Mian Yousaf Kaukab | 64ddba4 | 2013-04-29 14:07:48 +0200 | [diff] [blame] | 896 | |
| 897 | /* Set default NAND bank to 0 */ |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 898 | host->bank = 0; |
Mian Yousaf Kaukab | 64ddba4 | 2013-04-29 14:07:48 +0200 | [diff] [blame] | 899 | if (!of_property_read_u32(np, "bank", &val)) { |
| 900 | if (val > 3) { |
| 901 | dev_err(&pdev->dev, "invalid bank %u\n", val); |
| 902 | return -EINVAL; |
| 903 | } |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 904 | host->bank = val; |
Mian Yousaf Kaukab | 64ddba4 | 2013-04-29 14:07:48 +0200 | [diff] [blame] | 905 | } |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 906 | return 0; |
| 907 | } |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 908 | |
Miquel Raynal | 3bbddfa | 2018-07-20 17:14:59 +0200 | [diff] [blame] | 909 | static int fsmc_nand_attach_chip(struct nand_chip *nand) |
| 910 | { |
| 911 | struct mtd_info *mtd = nand_to_mtd(nand); |
Boris Brezillon | bfc535f | 2018-11-20 10:02:30 +0100 | [diff] [blame] | 912 | struct fsmc_nand_data *host = nand_to_fsmc(nand); |
Miquel Raynal | 3bbddfa | 2018-07-20 17:14:59 +0200 | [diff] [blame] | 913 | |
Miquel Raynal | 98591a6 | 2020-11-13 13:34:13 +0100 | [diff] [blame] | 914 | if (nand->ecc.engine_type == NAND_ECC_ENGINE_TYPE_INVALID) |
| 915 | nand->ecc.engine_type = NAND_ECC_ENGINE_TYPE_ON_HOST; |
| 916 | |
| 917 | if (!nand->ecc.size) |
| 918 | nand->ecc.size = 512; |
| 919 | |
| 920 | if (AMBA_REV_BITS(host->pid) >= 8) { |
| 921 | nand->ecc.read_page = fsmc_read_page_hwecc; |
| 922 | nand->ecc.calculate = fsmc_read_hwecc_ecc4; |
| 923 | nand->ecc.correct = fsmc_bch8_correct_data; |
| 924 | nand->ecc.bytes = 13; |
| 925 | nand->ecc.strength = 8; |
| 926 | } |
| 927 | |
Miquel Raynal | 3bbddfa | 2018-07-20 17:14:59 +0200 | [diff] [blame] | 928 | if (AMBA_REV_BITS(host->pid) >= 8) { |
| 929 | switch (mtd->oobsize) { |
| 930 | case 16: |
| 931 | case 64: |
| 932 | case 128: |
| 933 | case 224: |
| 934 | case 256: |
| 935 | break; |
| 936 | default: |
| 937 | dev_warn(host->dev, |
| 938 | "No oob scheme defined for oobsize %d\n", |
| 939 | mtd->oobsize); |
| 940 | return -EINVAL; |
| 941 | } |
| 942 | |
| 943 | mtd_set_ooblayout(mtd, &fsmc_ecc4_ooblayout_ops); |
| 944 | |
| 945 | return 0; |
| 946 | } |
| 947 | |
Miquel Raynal | bace41f | 2020-08-27 10:51:58 +0200 | [diff] [blame] | 948 | switch (nand->ecc.engine_type) { |
| 949 | case NAND_ECC_ENGINE_TYPE_ON_HOST: |
Miquel Raynal | 3bbddfa | 2018-07-20 17:14:59 +0200 | [diff] [blame] | 950 | dev_info(host->dev, "Using 1-bit HW ECC scheme\n"); |
| 951 | nand->ecc.calculate = fsmc_read_hwecc_ecc1; |
Miquel Raynal | ad9ffdc | 2021-04-13 18:18:35 +0200 | [diff] [blame] | 952 | nand->ecc.correct = fsmc_correct_ecc1; |
Miquel Raynal | 98591a6 | 2020-11-13 13:34:13 +0100 | [diff] [blame] | 953 | nand->ecc.hwctl = fsmc_enable_hwecc; |
Miquel Raynal | 3bbddfa | 2018-07-20 17:14:59 +0200 | [diff] [blame] | 954 | nand->ecc.bytes = 3; |
| 955 | nand->ecc.strength = 1; |
Boris Brezillon | 309600c | 2018-09-04 16:23:28 +0200 | [diff] [blame] | 956 | nand->ecc.options |= NAND_ECC_SOFT_HAMMING_SM_ORDER; |
Miquel Raynal | 3bbddfa | 2018-07-20 17:14:59 +0200 | [diff] [blame] | 957 | break; |
| 958 | |
Miquel Raynal | bace41f | 2020-08-27 10:51:58 +0200 | [diff] [blame] | 959 | case NAND_ECC_ENGINE_TYPE_SOFT: |
Miquel Raynal | e0a564a | 2020-08-27 10:51:50 +0200 | [diff] [blame] | 960 | if (nand->ecc.algo == NAND_ECC_ALGO_BCH) { |
Miquel Raynal | 3bbddfa | 2018-07-20 17:14:59 +0200 | [diff] [blame] | 961 | dev_info(host->dev, |
| 962 | "Using 4-bit SW BCH ECC scheme\n"); |
| 963 | break; |
| 964 | } |
Gustavo A. R. Silva | fe1bc21 | 2021-03-05 02:25:59 -0600 | [diff] [blame] | 965 | break; |
Miquel Raynal | 3bbddfa | 2018-07-20 17:14:59 +0200 | [diff] [blame] | 966 | |
Miquel Raynal | bace41f | 2020-08-27 10:51:58 +0200 | [diff] [blame] | 967 | case NAND_ECC_ENGINE_TYPE_ON_DIE: |
Miquel Raynal | 3bbddfa | 2018-07-20 17:14:59 +0200 | [diff] [blame] | 968 | break; |
| 969 | |
| 970 | default: |
| 971 | dev_err(host->dev, "Unsupported ECC mode!\n"); |
| 972 | return -ENOTSUPP; |
| 973 | } |
| 974 | |
| 975 | /* |
| 976 | * Don't set layout for BCH4 SW ECC. This will be |
Miquel Raynal | 3c0fe36 | 2020-09-30 01:01:08 +0200 | [diff] [blame] | 977 | * generated later during BCH initialization. |
Miquel Raynal | 3bbddfa | 2018-07-20 17:14:59 +0200 | [diff] [blame] | 978 | */ |
Miquel Raynal | bace41f | 2020-08-27 10:51:58 +0200 | [diff] [blame] | 979 | if (nand->ecc.engine_type == NAND_ECC_ENGINE_TYPE_ON_HOST) { |
Miquel Raynal | 3bbddfa | 2018-07-20 17:14:59 +0200 | [diff] [blame] | 980 | switch (mtd->oobsize) { |
| 981 | case 16: |
| 982 | case 64: |
| 983 | case 128: |
| 984 | mtd_set_ooblayout(mtd, |
| 985 | &fsmc_ecc1_ooblayout_ops); |
| 986 | break; |
| 987 | default: |
| 988 | dev_warn(host->dev, |
| 989 | "No oob scheme defined for oobsize %d\n", |
| 990 | mtd->oobsize); |
| 991 | return -EINVAL; |
| 992 | } |
| 993 | } |
| 994 | |
| 995 | return 0; |
| 996 | } |
| 997 | |
| 998 | static const struct nand_controller_ops fsmc_nand_controller_ops = { |
| 999 | .attach_chip = fsmc_nand_attach_chip, |
Boris Brezillon | f2abfeb | 2018-11-11 08:55:23 +0100 | [diff] [blame] | 1000 | .exec_op = fsmc_exec_op, |
Miquel Raynal | 4c46667 | 2020-05-29 13:13:13 +0200 | [diff] [blame] | 1001 | .setup_interface = fsmc_setup_interface, |
Miquel Raynal | 3bbddfa | 2018-07-20 17:14:59 +0200 | [diff] [blame] | 1002 | }; |
| 1003 | |
Linus Walleij | ab3ab7b | 2019-01-26 14:10:56 +0100 | [diff] [blame] | 1004 | /** |
| 1005 | * fsmc_nand_disable() - Disables the NAND bank |
| 1006 | * @host: The instance to disable |
| 1007 | */ |
| 1008 | static void fsmc_nand_disable(struct fsmc_nand_data *host) |
| 1009 | { |
| 1010 | u32 val; |
| 1011 | |
| 1012 | val = readl(host->regs_va + FSMC_PC); |
| 1013 | val &= ~FSMC_ENABLE; |
| 1014 | writel(val, host->regs_va + FSMC_PC); |
| 1015 | } |
| 1016 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1017 | /* |
| 1018 | * fsmc_nand_probe - Probe function |
| 1019 | * @pdev: platform device structure |
| 1020 | */ |
| 1021 | static int __init fsmc_nand_probe(struct platform_device *pdev) |
| 1022 | { |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1023 | struct fsmc_nand_data *host; |
| 1024 | struct mtd_info *mtd; |
| 1025 | struct nand_chip *nand; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1026 | struct resource *res; |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 1027 | void __iomem *base; |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 1028 | dma_cap_mask_t mask; |
Linus Walleij | 4ad916b | 2010-11-29 13:52:06 +0100 | [diff] [blame] | 1029 | int ret = 0; |
Linus Walleij | 593cd87 | 2010-11-29 13:52:19 +0100 | [diff] [blame] | 1030 | u32 pid; |
| 1031 | int i; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1032 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1033 | /* Allocate memory for the device structure (and zero it) */ |
Vipin Kumar | 82b9dbe | 2012-03-14 11:47:15 +0530 | [diff] [blame] | 1034 | host = devm_kzalloc(&pdev->dev, sizeof(*host), GFP_KERNEL); |
Jingoo Han | d9a21ae | 2013-12-26 12:16:38 +0900 | [diff] [blame] | 1035 | if (!host) |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1036 | return -ENOMEM; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1037 | |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 1038 | nand = &host->nand; |
| 1039 | |
| 1040 | ret = fsmc_nand_probe_config_dt(pdev, host, nand); |
| 1041 | if (ret) |
| 1042 | return ret; |
| 1043 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1044 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand_data"); |
Thierry Reding | b0de774 | 2013-01-21 11:09:12 +0100 | [diff] [blame] | 1045 | host->data_va = devm_ioremap_resource(&pdev->dev, res); |
| 1046 | if (IS_ERR(host->data_va)) |
| 1047 | return PTR_ERR(host->data_va); |
Stefan Roese | cbf29b8 | 2015-10-02 12:40:20 +0200 | [diff] [blame] | 1048 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d7b42a | 2012-10-04 15:14:16 +0200 | [diff] [blame] | 1049 | host->data_pa = (dma_addr_t)res->start; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1050 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d7b42a | 2012-10-04 15:14:16 +0200 | [diff] [blame] | 1051 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand_addr"); |
Thierry Reding | b0de774 | 2013-01-21 11:09:12 +0100 | [diff] [blame] | 1052 | host->addr_va = devm_ioremap_resource(&pdev->dev, res); |
| 1053 | if (IS_ERR(host->addr_va)) |
| 1054 | return PTR_ERR(host->addr_va); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1055 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d7b42a | 2012-10-04 15:14:16 +0200 | [diff] [blame] | 1056 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "nand_cmd"); |
Thierry Reding | b0de774 | 2013-01-21 11:09:12 +0100 | [diff] [blame] | 1057 | host->cmd_va = devm_ioremap_resource(&pdev->dev, res); |
| 1058 | if (IS_ERR(host->cmd_va)) |
| 1059 | return PTR_ERR(host->cmd_va); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1060 | |
| 1061 | res = platform_get_resource_byname(pdev, IORESOURCE_MEM, "fsmc_regs"); |
Miquel Raynal | 4df6ed4 | 2018-02-16 15:22:47 +0100 | [diff] [blame] | 1062 | base = devm_ioremap_resource(&pdev->dev, res); |
| 1063 | if (IS_ERR(base)) |
| 1064 | return PTR_ERR(base); |
| 1065 | |
| 1066 | host->regs_va = base + FSMC_NOR_REG_SIZE + |
| 1067 | (host->bank * FSMC_NAND_BANK_SZ); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1068 | |
Thomas Petazzoni | fb8ed2c | 2017-03-21 11:04:03 +0100 | [diff] [blame] | 1069 | host->clk = devm_clk_get(&pdev->dev, NULL); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1070 | if (IS_ERR(host->clk)) { |
| 1071 | dev_err(&pdev->dev, "failed to fetch block clock\n"); |
Vipin Kumar | 82b9dbe | 2012-03-14 11:47:15 +0530 | [diff] [blame] | 1072 | return PTR_ERR(host->clk); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1073 | } |
| 1074 | |
Viresh Kumar | e25da1c | 2012-04-17 17:07:57 +0530 | [diff] [blame] | 1075 | ret = clk_prepare_enable(host->clk); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1076 | if (ret) |
Thomas Petazzoni | fb8ed2c | 2017-03-21 11:04:03 +0100 | [diff] [blame] | 1077 | return ret; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1078 | |
Linus Walleij | 593cd87 | 2010-11-29 13:52:19 +0100 | [diff] [blame] | 1079 | /* |
| 1080 | * This device ID is actually a common AMBA ID as used on the |
| 1081 | * AMBA PrimeCell bus. However it is not a PrimeCell. |
| 1082 | */ |
| 1083 | for (pid = 0, i = 0; i < 4; i++) |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 1084 | pid |= (readl(base + resource_size(res) - 0x20 + 4 * i) & |
| 1085 | 255) << (i * 8); |
| 1086 | |
Linus Walleij | 593cd87 | 2010-11-29 13:52:19 +0100 | [diff] [blame] | 1087 | host->pid = pid; |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 1088 | |
| 1089 | dev_info(&pdev->dev, |
| 1090 | "FSMC device partno %03x, manufacturer %02x, revision %02x, config %02x\n", |
Linus Walleij | 593cd87 | 2010-11-29 13:52:19 +0100 | [diff] [blame] | 1091 | AMBA_PART_BITS(pid), AMBA_MANF_BITS(pid), |
| 1092 | AMBA_REV_BITS(pid), AMBA_CONFIG_BITS(pid)); |
| 1093 | |
Vipin Kumar | 712c4ad | 2012-03-14 11:47:16 +0530 | [diff] [blame] | 1094 | host->dev = &pdev->dev; |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 1095 | |
| 1096 | if (host->mode == USE_DMA_ACCESS) |
| 1097 | init_completion(&host->dma_access_complete); |
| 1098 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1099 | /* Link all private pointers */ |
Boris BREZILLON | bdf3a55 | 2015-12-10 09:00:05 +0100 | [diff] [blame] | 1100 | mtd = nand_to_mtd(&host->nand); |
Thomas Petazzoni | a1b1e1d | 2017-03-21 11:04:02 +0100 | [diff] [blame] | 1101 | nand_set_flash_node(nand, pdev->dev.of_node); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1102 | |
Boris BREZILLON | bdf3a55 | 2015-12-10 09:00:05 +0100 | [diff] [blame] | 1103 | mtd->dev.parent = &pdev->dev; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1104 | |
Vipin Kumar | 467e6e7 | 2012-03-14 11:47:12 +0530 | [diff] [blame] | 1105 | nand->badblockbits = 7; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1106 | |
Miquel Raynal | 4da712e | 2018-02-16 15:22:48 +0100 | [diff] [blame] | 1107 | if (host->mode == USE_DMA_ACCESS) { |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 1108 | dma_cap_zero(mask); |
| 1109 | dma_cap_set(DMA_MEMCPY, mask); |
Thomas Petazzoni | feb1e57 | 2017-03-21 11:03:59 +0100 | [diff] [blame] | 1110 | host->read_dma_chan = dma_request_channel(mask, filter, NULL); |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 1111 | if (!host->read_dma_chan) { |
| 1112 | dev_err(&pdev->dev, "Unable to get read dma channel\n"); |
Dan Carpenter | e7a9752 | 2021-02-15 18:58:49 +0300 | [diff] [blame] | 1113 | ret = -ENODEV; |
Miquel Raynal | 43fab01 | 2018-04-21 20:00:36 +0200 | [diff] [blame] | 1114 | goto disable_clk; |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 1115 | } |
Thomas Petazzoni | feb1e57 | 2017-03-21 11:03:59 +0100 | [diff] [blame] | 1116 | host->write_dma_chan = dma_request_channel(mask, filter, NULL); |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 1117 | if (!host->write_dma_chan) { |
| 1118 | dev_err(&pdev->dev, "Unable to get write dma channel\n"); |
Dan Carpenter | e7a9752 | 2021-02-15 18:58:49 +0300 | [diff] [blame] | 1119 | ret = -ENODEV; |
Miquel Raynal | 43fab01 | 2018-04-21 20:00:36 +0200 | [diff] [blame] | 1120 | goto release_dma_read_chan; |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 1121 | } |
Vipin Kumar | 604e754 | 2012-03-14 11:47:17 +0530 | [diff] [blame] | 1122 | } |
| 1123 | |
Boris Brezillon | 7a08dba | 2018-11-11 08:55:24 +0100 | [diff] [blame] | 1124 | if (host->dev_timings) { |
Thomas Petazzoni | d9fb079 | 2017-04-29 10:52:35 +0200 | [diff] [blame] | 1125 | fsmc_nand_setup(host, host->dev_timings); |
Boris Brezillon | 7a08dba | 2018-11-11 08:55:24 +0100 | [diff] [blame] | 1126 | nand->options |= NAND_KEEP_TIMINGS; |
| 1127 | } |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1128 | |
Boris Brezillon | ad71148 | 2018-11-20 10:02:33 +0100 | [diff] [blame] | 1129 | nand_controller_init(&host->base); |
| 1130 | host->base.ops = &fsmc_nand_controller_ops; |
| 1131 | nand->controller = &host->base; |
| 1132 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1133 | /* |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 1134 | * Scan to find existence of the device |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1135 | */ |
Boris Brezillon | 00ad378 | 2018-09-06 14:05:14 +0200 | [diff] [blame] | 1136 | ret = nand_scan(nand, 1); |
Masahiro Yamada | ad5678e | 2016-11-04 19:43:00 +0900 | [diff] [blame] | 1137 | if (ret) |
Miquel Raynal | 43fab01 | 2018-04-21 20:00:36 +0200 | [diff] [blame] | 1138 | goto release_dma_write_chan; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1139 | |
Boris BREZILLON | bdf3a55 | 2015-12-10 09:00:05 +0100 | [diff] [blame] | 1140 | mtd->name = "nand"; |
Thomas Petazzoni | ede29a0 | 2017-03-21 11:04:00 +0100 | [diff] [blame] | 1141 | ret = mtd_device_register(mtd, NULL, 0); |
Jamie Iles | 99335d0 | 2011-05-23 10:23:23 +0100 | [diff] [blame] | 1142 | if (ret) |
Miquel Raynal | 682cae2 | 2018-04-21 20:00:37 +0200 | [diff] [blame] | 1143 | goto cleanup_nand; |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1144 | |
| 1145 | platform_set_drvdata(pdev, host); |
| 1146 | dev_info(&pdev->dev, "FSMC NAND driver registration successful\n"); |
Miquel Raynal | 43fab01 | 2018-04-21 20:00:36 +0200 | [diff] [blame] | 1147 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1148 | return 0; |
| 1149 | |
Miquel Raynal | 682cae2 | 2018-04-21 20:00:37 +0200 | [diff] [blame] | 1150 | cleanup_nand: |
| 1151 | nand_cleanup(nand); |
Miquel Raynal | 43fab01 | 2018-04-21 20:00:36 +0200 | [diff] [blame] | 1152 | release_dma_write_chan: |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 1153 | if (host->mode == USE_DMA_ACCESS) |
| 1154 | dma_release_channel(host->write_dma_chan); |
Miquel Raynal | 43fab01 | 2018-04-21 20:00:36 +0200 | [diff] [blame] | 1155 | release_dma_read_chan: |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 1156 | if (host->mode == USE_DMA_ACCESS) |
| 1157 | dma_release_channel(host->read_dma_chan); |
Miquel Raynal | 43fab01 | 2018-04-21 20:00:36 +0200 | [diff] [blame] | 1158 | disable_clk: |
Linus Walleij | ab3ab7b | 2019-01-26 14:10:56 +0100 | [diff] [blame] | 1159 | fsmc_nand_disable(host); |
Viresh Kumar | e25da1c | 2012-04-17 17:07:57 +0530 | [diff] [blame] | 1160 | clk_disable_unprepare(host->clk); |
Miquel Raynal | 43fab01 | 2018-04-21 20:00:36 +0200 | [diff] [blame] | 1161 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1162 | return ret; |
| 1163 | } |
| 1164 | |
| 1165 | /* |
| 1166 | * Clean up routine |
| 1167 | */ |
| 1168 | static int fsmc_nand_remove(struct platform_device *pdev) |
| 1169 | { |
| 1170 | struct fsmc_nand_data *host = platform_get_drvdata(pdev); |
| 1171 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1172 | if (host) { |
Miquel Raynal | 9cc02f4 | 2020-05-19 14:59:50 +0200 | [diff] [blame] | 1173 | struct nand_chip *chip = &host->nand; |
| 1174 | int ret; |
| 1175 | |
| 1176 | ret = mtd_device_unregister(nand_to_mtd(chip)); |
| 1177 | WARN_ON(ret); |
| 1178 | nand_cleanup(chip); |
Linus Walleij | ab3ab7b | 2019-01-26 14:10:56 +0100 | [diff] [blame] | 1179 | fsmc_nand_disable(host); |
Vipin Kumar | 4774fb0 | 2012-03-14 11:47:18 +0530 | [diff] [blame] | 1180 | |
| 1181 | if (host->mode == USE_DMA_ACCESS) { |
| 1182 | dma_release_channel(host->write_dma_chan); |
| 1183 | dma_release_channel(host->read_dma_chan); |
| 1184 | } |
Viresh Kumar | e25da1c | 2012-04-17 17:07:57 +0530 | [diff] [blame] | 1185 | clk_disable_unprepare(host->clk); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1186 | } |
Vipin Kumar | 82b9dbe | 2012-03-14 11:47:15 +0530 | [diff] [blame] | 1187 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1188 | return 0; |
| 1189 | } |
| 1190 | |
Jingoo Han | 80ce4dd | 2013-03-26 15:53:48 +0900 | [diff] [blame] | 1191 | #ifdef CONFIG_PM_SLEEP |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1192 | static int fsmc_nand_suspend(struct device *dev) |
| 1193 | { |
| 1194 | struct fsmc_nand_data *host = dev_get_drvdata(dev); |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 1195 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1196 | if (host) |
Viresh Kumar | e25da1c | 2012-04-17 17:07:57 +0530 | [diff] [blame] | 1197 | clk_disable_unprepare(host->clk); |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 1198 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1199 | return 0; |
| 1200 | } |
| 1201 | |
| 1202 | static int fsmc_nand_resume(struct device *dev) |
| 1203 | { |
| 1204 | struct fsmc_nand_data *host = dev_get_drvdata(dev); |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 1205 | |
Shiraz Hashim | f63acb7 | 2012-03-14 11:47:13 +0530 | [diff] [blame] | 1206 | if (host) { |
Viresh Kumar | e25da1c | 2012-04-17 17:07:57 +0530 | [diff] [blame] | 1207 | clk_prepare_enable(host->clk); |
Thomas Petazzoni | d9fb079 | 2017-04-29 10:52:35 +0200 | [diff] [blame] | 1208 | if (host->dev_timings) |
| 1209 | fsmc_nand_setup(host, host->dev_timings); |
Linus Walleij | 30c72ab | 2019-01-26 14:10:55 +0100 | [diff] [blame] | 1210 | nand_reset(&host->nand, 0); |
Shiraz Hashim | f63acb7 | 2012-03-14 11:47:13 +0530 | [diff] [blame] | 1211 | } |
Boris Brezillon | fc43f45 | 2018-11-20 10:02:35 +0100 | [diff] [blame] | 1212 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1213 | return 0; |
| 1214 | } |
Jingoo Han | 80ce4dd | 2013-03-26 15:53:48 +0900 | [diff] [blame] | 1215 | #endif |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1216 | |
Shiraz Hashim | f63acb7 | 2012-03-14 11:47:13 +0530 | [diff] [blame] | 1217 | static SIMPLE_DEV_PM_OPS(fsmc_nand_pm_ops, fsmc_nand_suspend, fsmc_nand_resume); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1218 | |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 1219 | static const struct of_device_id fsmc_nand_id_table[] = { |
| 1220 | { .compatible = "st,spear600-fsmc-nand" }, |
Linus Walleij | ba78520 | 2013-01-05 22:28:32 +0100 | [diff] [blame] | 1221 | { .compatible = "stericsson,fsmc-nand" }, |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 1222 | {} |
| 1223 | }; |
| 1224 | MODULE_DEVICE_TABLE(of, fsmc_nand_id_table); |
Stefan Roese | eea6281 | 2012-03-16 10:19:31 +0100 | [diff] [blame] | 1225 | |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1226 | static struct platform_driver fsmc_nand_driver = { |
| 1227 | .remove = fsmc_nand_remove, |
| 1228 | .driver = { |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1229 | .name = "fsmc-nand", |
Thomas Petazzoni | 33575b2 | 2017-03-21 11:04:05 +0100 | [diff] [blame] | 1230 | .of_match_table = fsmc_nand_id_table, |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1231 | .pm = &fsmc_nand_pm_ops, |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1232 | }, |
| 1233 | }; |
| 1234 | |
Jingoo Han | 307d2a51 | 2013-03-05 13:30:36 +0900 | [diff] [blame] | 1235 | module_platform_driver_probe(fsmc_nand_driver, fsmc_nand_probe); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1236 | |
Boris Brezillon | bb69634 | 2018-11-20 10:02:34 +0100 | [diff] [blame] | 1237 | MODULE_LICENSE("GPL v2"); |
Linus Walleij | 6c009ab | 2010-09-13 00:35:22 +0200 | [diff] [blame] | 1238 | MODULE_AUTHOR("Vipin Kumar <vipin.kumar@st.com>, Ashish Priyadarshi"); |
| 1239 | MODULE_DESCRIPTION("NAND driver for SPEAr Platforms"); |