Peter Pan | 883d877 | 2018-08-16 17:30:13 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * Copyright (c) 2016-2017 Micron Technology, Inc. |
| 4 | * |
| 5 | * Authors: |
| 6 | * Peter Pan <peterpandong@micron.com> |
| 7 | */ |
| 8 | |
| 9 | #ifndef __UBOOT__ |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 10 | #include <malloc.h> |
Peter Pan | 883d877 | 2018-08-16 17:30:13 +0200 | [diff] [blame] | 11 | #include <linux/device.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #endif |
Simon Glass | cd93d62 | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 14 | #include <linux/bitops.h> |
Peter Pan | 883d877 | 2018-08-16 17:30:13 +0200 | [diff] [blame] | 15 | #include <linux/mtd/spinand.h> |
| 16 | |
| 17 | #define SPINAND_MFR_MICRON 0x2c |
| 18 | |
| 19 | #define MICRON_STATUS_ECC_MASK GENMASK(7, 4) |
| 20 | #define MICRON_STATUS_ECC_NO_BITFLIPS (0 << 4) |
| 21 | #define MICRON_STATUS_ECC_1TO3_BITFLIPS (1 << 4) |
| 22 | #define MICRON_STATUS_ECC_4TO6_BITFLIPS (3 << 4) |
| 23 | #define MICRON_STATUS_ECC_7TO8_BITFLIPS (5 << 4) |
| 24 | |
| 25 | static SPINAND_OP_VARIANTS(read_cache_variants, |
| 26 | SPINAND_PAGE_READ_FROM_CACHE_QUADIO_OP(0, 2, NULL, 0), |
| 27 | SPINAND_PAGE_READ_FROM_CACHE_X4_OP(0, 1, NULL, 0), |
| 28 | SPINAND_PAGE_READ_FROM_CACHE_DUALIO_OP(0, 1, NULL, 0), |
| 29 | SPINAND_PAGE_READ_FROM_CACHE_X2_OP(0, 1, NULL, 0), |
| 30 | SPINAND_PAGE_READ_FROM_CACHE_OP(true, 0, 1, NULL, 0), |
| 31 | SPINAND_PAGE_READ_FROM_CACHE_OP(false, 0, 1, NULL, 0)); |
| 32 | |
| 33 | static SPINAND_OP_VARIANTS(write_cache_variants, |
| 34 | SPINAND_PROG_LOAD_X4(true, 0, NULL, 0), |
| 35 | SPINAND_PROG_LOAD(true, 0, NULL, 0)); |
| 36 | |
| 37 | static SPINAND_OP_VARIANTS(update_cache_variants, |
| 38 | SPINAND_PROG_LOAD_X4(false, 0, NULL, 0), |
| 39 | SPINAND_PROG_LOAD(false, 0, NULL, 0)); |
| 40 | |
Shivamurthy Shastri | 1527ec4 | 2020-07-07 22:04:08 +0200 | [diff] [blame] | 41 | static int micron_8_ooblayout_ecc(struct mtd_info *mtd, int section, |
| 42 | struct mtd_oob_region *region) |
Peter Pan | 883d877 | 2018-08-16 17:30:13 +0200 | [diff] [blame] | 43 | { |
| 44 | if (section) |
| 45 | return -ERANGE; |
| 46 | |
Shivamurthy Shastri | 1527ec4 | 2020-07-07 22:04:08 +0200 | [diff] [blame] | 47 | region->offset = mtd->oobsize / 2; |
| 48 | region->length = mtd->oobsize / 2; |
Peter Pan | 883d877 | 2018-08-16 17:30:13 +0200 | [diff] [blame] | 49 | |
| 50 | return 0; |
| 51 | } |
| 52 | |
Shivamurthy Shastri | 1527ec4 | 2020-07-07 22:04:08 +0200 | [diff] [blame] | 53 | static int micron_8_ooblayout_free(struct mtd_info *mtd, int section, |
| 54 | struct mtd_oob_region *region) |
Peter Pan | 883d877 | 2018-08-16 17:30:13 +0200 | [diff] [blame] | 55 | { |
| 56 | if (section) |
| 57 | return -ERANGE; |
| 58 | |
| 59 | /* Reserve 2 bytes for the BBM. */ |
| 60 | region->offset = 2; |
Shivamurthy Shastri | 1527ec4 | 2020-07-07 22:04:08 +0200 | [diff] [blame] | 61 | region->length = (mtd->oobsize / 2) - 2; |
Peter Pan | 883d877 | 2018-08-16 17:30:13 +0200 | [diff] [blame] | 62 | |
| 63 | return 0; |
| 64 | } |
| 65 | |
Shivamurthy Shastri | 1527ec4 | 2020-07-07 22:04:08 +0200 | [diff] [blame] | 66 | static const struct mtd_ooblayout_ops micron_8_ooblayout = { |
| 67 | .ecc = micron_8_ooblayout_ecc, |
| 68 | .rfree = micron_8_ooblayout_free, |
Peter Pan | 883d877 | 2018-08-16 17:30:13 +0200 | [diff] [blame] | 69 | }; |
| 70 | |
Shivamurthy Shastri | 1527ec4 | 2020-07-07 22:04:08 +0200 | [diff] [blame] | 71 | static int micron_8_ecc_get_status(struct spinand_device *spinand, |
| 72 | u8 status) |
Peter Pan | 883d877 | 2018-08-16 17:30:13 +0200 | [diff] [blame] | 73 | { |
| 74 | switch (status & MICRON_STATUS_ECC_MASK) { |
| 75 | case STATUS_ECC_NO_BITFLIPS: |
| 76 | return 0; |
| 77 | |
| 78 | case STATUS_ECC_UNCOR_ERROR: |
| 79 | return -EBADMSG; |
| 80 | |
| 81 | case MICRON_STATUS_ECC_1TO3_BITFLIPS: |
| 82 | return 3; |
| 83 | |
| 84 | case MICRON_STATUS_ECC_4TO6_BITFLIPS: |
| 85 | return 6; |
| 86 | |
| 87 | case MICRON_STATUS_ECC_7TO8_BITFLIPS: |
| 88 | return 8; |
| 89 | |
| 90 | default: |
| 91 | break; |
| 92 | } |
| 93 | |
| 94 | return -EINVAL; |
| 95 | } |
| 96 | |
| 97 | static const struct spinand_info micron_spinand_table[] = { |
Shivamurthy Shastri | 92fc25d | 2020-07-07 22:04:09 +0200 | [diff] [blame^] | 98 | /* M79A 2Gb 3.3V */ |
Peter Pan | 883d877 | 2018-08-16 17:30:13 +0200 | [diff] [blame] | 99 | SPINAND_INFO("MT29F2G01ABAGD", 0x24, |
| 100 | NAND_MEMORG(1, 2048, 128, 64, 2048, 2, 1, 1), |
| 101 | NAND_ECCREQ(8, 512), |
| 102 | SPINAND_INFO_OP_VARIANTS(&read_cache_variants, |
| 103 | &write_cache_variants, |
| 104 | &update_cache_variants), |
| 105 | 0, |
Shivamurthy Shastri | 1527ec4 | 2020-07-07 22:04:08 +0200 | [diff] [blame] | 106 | SPINAND_ECCINFO(µn_8_ooblayout, |
| 107 | micron_8_ecc_get_status)), |
Peter Pan | 883d877 | 2018-08-16 17:30:13 +0200 | [diff] [blame] | 108 | }; |
| 109 | |
| 110 | static int micron_spinand_detect(struct spinand_device *spinand) |
| 111 | { |
| 112 | u8 *id = spinand->id.data; |
| 113 | int ret; |
| 114 | |
| 115 | /* |
| 116 | * Micron SPI NAND read ID need a dummy byte, |
| 117 | * so the first byte in raw_id is dummy. |
| 118 | */ |
| 119 | if (id[1] != SPINAND_MFR_MICRON) |
| 120 | return 0; |
| 121 | |
| 122 | ret = spinand_match_and_init(spinand, micron_spinand_table, |
| 123 | ARRAY_SIZE(micron_spinand_table), id[2]); |
| 124 | if (ret) |
| 125 | return ret; |
| 126 | |
| 127 | return 1; |
| 128 | } |
| 129 | |
| 130 | static const struct spinand_manufacturer_ops micron_spinand_manuf_ops = { |
| 131 | .detect = micron_spinand_detect, |
| 132 | }; |
| 133 | |
| 134 | const struct spinand_manufacturer micron_spinand_manufacturer = { |
| 135 | .id = SPINAND_MFR_MICRON, |
| 136 | .name = "Micron", |
| 137 | .ops = µn_spinand_manuf_ops, |
| 138 | }; |