blob: 0b228dcb5b1d4a4488732929d123ed55e16753e7 [file] [log] [blame]
Stefan Roese9e5c2a72018-08-16 18:05:08 +02001// 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 Glass336d4612020-02-03 07:36:16 -070010#include <malloc.h>
Stefan Roese9e5c2a72018-08-16 18:05:08 +020011#include <linux/device.h>
12#include <linux/kernel.h>
13#endif
14#include <linux/mtd/spinand.h>
15
Stefan Roesed67fb262019-01-24 17:18:19 +010016#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 Roese9e5c2a72018-08-16 18:05:08 +020019
Stefan Roesed67fb262019-01-24 17:18:19 +010020#define GD5FXGQ4XEXXG_REG_STATUS2 0xf0
Stefan Roese9e5c2a72018-08-16 18:05:08 +020021
22static 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
30static SPINAND_OP_VARIANTS(write_cache_variants,
31 SPINAND_PROG_LOAD_X4(true, 0, NULL, 0),
32 SPINAND_PROG_LOAD(true, 0, NULL, 0));
33
34static 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 Roesed67fb262019-01-24 17:18:19 +010038static int gd5fxgq4xexxg_ooblayout_ecc(struct mtd_info *mtd, int section,
39 struct mtd_oob_region *region)
Stefan Roese9e5c2a72018-08-16 18:05:08 +020040{
41 if (section)
42 return -ERANGE;
43
44 region->offset = 64;
45 region->length = 64;
46
47 return 0;
48}
49
Stefan Roesed67fb262019-01-24 17:18:19 +010050static int gd5fxgq4xexxg_ooblayout_free(struct mtd_info *mtd, int section,
51 struct mtd_oob_region *region)
Stefan Roese9e5c2a72018-08-16 18:05:08 +020052{
53 if (section)
54 return -ERANGE;
55
Stefan Roesed67fb262019-01-24 17:18:19 +010056 /* Reserve 1 bytes for the BBM. */
57 region->offset = 1;
58 region->length = 63;
Stefan Roese9e5c2a72018-08-16 18:05:08 +020059
60 return 0;
61}
62
Stefan Roesed67fb262019-01-24 17:18:19 +010063static int gd5fxgq4xexxg_ecc_get_status(struct spinand_device *spinand,
64 u8 status)
Stefan Roese9e5c2a72018-08-16 18:05:08 +020065{
Stefan Roesed67fb262019-01-24 17:18:19 +010066 u8 status2;
67 struct spi_mem_op op = SPINAND_GET_FEATURE_OP(GD5FXGQ4XEXXG_REG_STATUS2,
68 &status2);
69 int ret;
Stefan Roese9e5c2a72018-08-16 18:05:08 +020070
Stefan Roesed67fb262019-01-24 17:18:19 +010071 switch (status & STATUS_ECC_MASK) {
Stefan Roese9e5c2a72018-08-16 18:05:08 +020072 case STATUS_ECC_NO_BITFLIPS:
73 return 0;
74
Stefan Roesed67fb262019-01-24 17:18:19 +010075 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 Roese9e5c2a72018-08-16 18:05:08 +020083
Stefan Roesed67fb262019-01-24 17:18:19 +010084 /*
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 Roese9e5c2a72018-08-16 18:05:08 +020093 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 Roesed67fb262019-01-24 17:18:19 +0100105static const struct mtd_ooblayout_ops gd5fxgq4xexxg_ooblayout = {
106 .ecc = gd5fxgq4xexxg_ooblayout_ecc,
Simon Glass8d38a842020-02-03 07:35:56 -0700107 .rfree = gd5fxgq4xexxg_ooblayout_free,
Stefan Roesed67fb262019-01-24 17:18:19 +0100108};
109
Stefan Roese9e5c2a72018-08-16 18:05:08 +0200110static const struct spinand_info gigadevice_spinand_table[] = {
Stefan Roesed67fb262019-01-24 17:18:19 +0100111 SPINAND_INFO("GD5F1GQ4UExxG", 0xd1,
Stefan Roese9e5c2a72018-08-16 18:05:08 +0200112 NAND_MEMORG(1, 2048, 128, 64, 1024, 1, 1, 1),
Stefan Roesed67fb262019-01-24 17:18:19 +0100113 NAND_ECCREQ(8, 512),
Stefan Roese9e5c2a72018-08-16 18:05:08 +0200114 SPINAND_INFO_OP_VARIANTS(&read_cache_variants,
115 &write_cache_variants,
116 &update_cache_variants),
117 0,
Stefan Roesed67fb262019-01-24 17:18:19 +0100118 SPINAND_ECCINFO(&gd5fxgq4xexxg_ooblayout,
119 gd5fxgq4xexxg_ecc_get_status)),
Stefan Roese9e5c2a72018-08-16 18:05:08 +0200120};
121
122static int gigadevice_spinand_detect(struct spinand_device *spinand)
123{
124 u8 *id = spinand->id.data;
125 int ret;
126
127 /*
Stefan Roesed67fb262019-01-24 17:18:19 +0100128 * 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 Roese9e5c2a72018-08-16 18:05:08 +0200130 */
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
143static const struct spinand_manufacturer_ops gigadevice_spinand_manuf_ops = {
144 .detect = gigadevice_spinand_detect,
145};
146
147const struct spinand_manufacturer gigadevice_spinand_manufacturer = {
148 .id = SPINAND_MFR_GIGADEVICE,
149 .name = "GigaDevice",
150 .ops = &gigadevice_spinand_manuf_ops,
151};