Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
| 2 | /* |
| 3 | * Copyright (C) 2018 Stefan Roese <sr@denx.de> |
| 4 | * |
| 5 | * Derived from drivers/mtd/nand/spi/micron.c |
| 6 | * Copyright (c) 2016-2017 Micron Technology, Inc. |
| 7 | */ |
| 8 | |
| 9 | #ifndef __UBOOT__ |
Simon Glass | 336d461 | 2020-02-03 07:36:16 -0700 | [diff] [blame] | 10 | #include <malloc.h> |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 11 | #include <linux/device.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #endif |
| 14 | #include <linux/mtd/spinand.h> |
| 15 | |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 16 | #define SPINAND_MFR_GIGADEVICE 0xC8 |
| 17 | #define GD5FXGQ4XA_STATUS_ECC_1_7_BITFLIPS (1 << 4) |
| 18 | #define GD5FXGQ4XA_STATUS_ECC_8_BITFLIPS (3 << 4) |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 19 | |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 20 | #define GD5FXGQ4XEXXG_REG_STATUS2 0xf0 |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 21 | |
| 22 | static SPINAND_OP_VARIANTS(read_cache_variants, |
| 23 | SPINAND_PAGE_READ_FROM_CACHE_QUADIO_OP(0, 2, NULL, 0), |
| 24 | SPINAND_PAGE_READ_FROM_CACHE_X4_OP(0, 1, NULL, 0), |
| 25 | SPINAND_PAGE_READ_FROM_CACHE_DUALIO_OP(0, 1, NULL, 0), |
| 26 | SPINAND_PAGE_READ_FROM_CACHE_X2_OP(0, 1, NULL, 0), |
| 27 | SPINAND_PAGE_READ_FROM_CACHE_OP(true, 0, 1, NULL, 0), |
| 28 | SPINAND_PAGE_READ_FROM_CACHE_OP(false, 0, 1, NULL, 0)); |
| 29 | |
| 30 | static SPINAND_OP_VARIANTS(write_cache_variants, |
| 31 | SPINAND_PROG_LOAD_X4(true, 0, NULL, 0), |
| 32 | SPINAND_PROG_LOAD(true, 0, NULL, 0)); |
| 33 | |
| 34 | static SPINAND_OP_VARIANTS(update_cache_variants, |
| 35 | SPINAND_PROG_LOAD_X4(false, 0, NULL, 0), |
| 36 | SPINAND_PROG_LOAD(false, 0, NULL, 0)); |
| 37 | |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 38 | static int gd5fxgq4xexxg_ooblayout_ecc(struct mtd_info *mtd, int section, |
| 39 | struct mtd_oob_region *region) |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 40 | { |
| 41 | if (section) |
| 42 | return -ERANGE; |
| 43 | |
| 44 | region->offset = 64; |
| 45 | region->length = 64; |
| 46 | |
| 47 | return 0; |
| 48 | } |
| 49 | |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 50 | static int gd5fxgq4xexxg_ooblayout_free(struct mtd_info *mtd, int section, |
| 51 | struct mtd_oob_region *region) |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 52 | { |
| 53 | if (section) |
| 54 | return -ERANGE; |
| 55 | |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 56 | /* Reserve 1 bytes for the BBM. */ |
| 57 | region->offset = 1; |
| 58 | region->length = 63; |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 59 | |
| 60 | return 0; |
| 61 | } |
| 62 | |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 63 | static int gd5fxgq4xexxg_ecc_get_status(struct spinand_device *spinand, |
| 64 | u8 status) |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 65 | { |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 66 | u8 status2; |
| 67 | struct spi_mem_op op = SPINAND_GET_FEATURE_OP(GD5FXGQ4XEXXG_REG_STATUS2, |
| 68 | &status2); |
| 69 | int ret; |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 70 | |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 71 | switch (status & STATUS_ECC_MASK) { |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 72 | case STATUS_ECC_NO_BITFLIPS: |
| 73 | return 0; |
| 74 | |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 75 | case GD5FXGQ4XA_STATUS_ECC_1_7_BITFLIPS: |
| 76 | /* |
| 77 | * Read status2 register to determine a more fine grained |
| 78 | * bit error status |
| 79 | */ |
| 80 | ret = spi_mem_exec_op(spinand->slave, &op); |
| 81 | if (ret) |
| 82 | return ret; |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 83 | |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 84 | /* |
| 85 | * 4 ... 7 bits are flipped (1..4 can't be detected, so |
| 86 | * report the maximum of 4 in this case |
| 87 | */ |
| 88 | /* bits sorted this way (3...0): ECCS1,ECCS0,ECCSE1,ECCSE0 */ |
| 89 | return ((status & STATUS_ECC_MASK) >> 2) | |
| 90 | ((status2 & STATUS_ECC_MASK) >> 4); |
| 91 | |
| 92 | case GD5FXGQ4XA_STATUS_ECC_8_BITFLIPS: |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 93 | return 8; |
| 94 | |
| 95 | case STATUS_ECC_UNCOR_ERROR: |
| 96 | return -EBADMSG; |
| 97 | |
| 98 | default: |
| 99 | break; |
| 100 | } |
| 101 | |
| 102 | return -EINVAL; |
| 103 | } |
| 104 | |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 105 | static const struct mtd_ooblayout_ops gd5fxgq4xexxg_ooblayout = { |
| 106 | .ecc = gd5fxgq4xexxg_ooblayout_ecc, |
Simon Glass | 8d38a84 | 2020-02-03 07:35:56 -0700 | [diff] [blame] | 107 | .rfree = gd5fxgq4xexxg_ooblayout_free, |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 108 | }; |
| 109 | |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 110 | static const struct spinand_info gigadevice_spinand_table[] = { |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 111 | SPINAND_INFO("GD5F1GQ4UExxG", 0xd1, |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 112 | NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1), |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 113 | NAND_ECCREQ(8, 512), |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 114 | SPINAND_INFO_OP_VARIANTS(&read_cache_variants, |
| 115 | &write_cache_variants, |
| 116 | &update_cache_variants), |
| 117 | 0, |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 118 | SPINAND_ECCINFO(&gd5fxgq4xexxg_ooblayout, |
| 119 | gd5fxgq4xexxg_ecc_get_status)), |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 120 | }; |
| 121 | |
| 122 | static int gigadevice_spinand_detect(struct spinand_device *spinand) |
| 123 | { |
| 124 | u8 *id = spinand->id.data; |
| 125 | int ret; |
| 126 | |
| 127 | /* |
Stefan Roese | d67fb26 | 2019-01-24 17:18:19 +0100 | [diff] [blame] | 128 | * For GD NANDs, There is an address byte needed to shift in before IDs |
| 129 | * are read out, so the first byte in raw_id is dummy. |
Stefan Roese | 9e5c2a7 | 2018-08-16 18:05:08 +0200 | [diff] [blame] | 130 | */ |
| 131 | if (id[1] != SPINAND_MFR_GIGADEVICE) |
| 132 | return 0; |
| 133 | |
| 134 | ret = spinand_match_and_init(spinand, gigadevice_spinand_table, |
| 135 | ARRAY_SIZE(gigadevice_spinand_table), |
| 136 | id[2]); |
| 137 | if (ret) |
| 138 | return ret; |
| 139 | |
| 140 | return 1; |
| 141 | } |
| 142 | |
| 143 | static const struct spinand_manufacturer_ops gigadevice_spinand_manuf_ops = { |
| 144 | .detect = gigadevice_spinand_detect, |
| 145 | }; |
| 146 | |
| 147 | const struct spinand_manufacturer gigadevice_spinand_manufacturer = { |
| 148 | .id = SPINAND_MFR_GIGADEVICE, |
| 149 | .name = "GigaDevice", |
| 150 | .ops = &gigadevice_spinand_manuf_ops, |
| 151 | }; |