1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Copyright (c) 2020 Rockchip Electronics Co., Ltd 4 * 5 * Authors: 6 * Dingqiang Lin <jon.lin@rock-chips.com> 7 */ 8 9 #ifndef __UBOOT__ 10 #include <linux/device.h> 11 #include <linux/kernel.h> 12 #endif 13 #include <linux/mtd/spinand.h> 14 15 #define SPINAND_MFR_DOSILICON 0xE5 16 17 static SPINAND_OP_VARIANTS(read_cache_variants, 18 SPINAND_PAGE_READ_FROM_CACHE_QUADIO_OP(0, 2, NULL, 0), 19 SPINAND_PAGE_READ_FROM_CACHE_X4_OP(0, 1, NULL, 0), 20 SPINAND_PAGE_READ_FROM_CACHE_DUALIO_OP(0, 1, NULL, 0), 21 SPINAND_PAGE_READ_FROM_CACHE_X2_OP(0, 1, NULL, 0), 22 SPINAND_PAGE_READ_FROM_CACHE_OP(true, 0, 1, NULL, 0), 23 SPINAND_PAGE_READ_FROM_CACHE_OP(false, 0, 1, NULL, 0)); 24 25 static SPINAND_OP_VARIANTS(write_cache_variants, 26 SPINAND_PROG_LOAD_X4(true, 0, NULL, 0), 27 SPINAND_PROG_LOAD(true, 0, NULL, 0)); 28 29 static SPINAND_OP_VARIANTS(update_cache_variants, 30 SPINAND_PROG_LOAD_X4(false, 0, NULL, 0), 31 SPINAND_PROG_LOAD(false, 0, NULL, 0)); 32 33 static int ds35xxga_ooblayout_ecc(struct mtd_info *mtd, int section, 34 struct mtd_oob_region *region) 35 { 36 if (section > 3) 37 return -ERANGE; 38 39 region->offset = (16 * section) + 8; 40 region->length = 8; 41 42 return 0; 43 } 44 45 static int ds35xxga_ooblayout_free(struct mtd_info *mtd, int section, 46 struct mtd_oob_region *region) 47 { 48 if (section > 3) 49 return -ERANGE; 50 51 region->offset = (16 * section) + 2; 52 region->length = 6; 53 54 return 0; 55 } 56 57 static const struct mtd_ooblayout_ops ds35xxga_ooblayout = { 58 .ecc = ds35xxga_ooblayout_ecc, 59 .rfree = ds35xxga_ooblayout_free, 60 }; 61 62 static const struct spinand_info dosilicon_spinand_table[] = { 63 SPINAND_INFO("DS35X1GA", 0x71, 64 NAND_MEMORG(1, 2048, 64, 64, 1024, 1, 1, 1), 65 NAND_ECCREQ(4, 512), 66 SPINAND_INFO_OP_VARIANTS(&read_cache_variants, 67 &write_cache_variants, 68 &update_cache_variants), 69 SPINAND_HAS_QE_BIT, 70 SPINAND_ECCINFO(&ds35xxga_ooblayout, NULL)), 71 }; 72 73 /** 74 * dosilicon_spinand_detect - initialize device related part in spinand_device 75 * struct if it is a dosilicon device. 76 * @spinand: SPI NAND device structure 77 */ 78 static int dosilicon_spinand_detect(struct spinand_device *spinand) 79 { 80 u8 *id = spinand->id.data; 81 int ret; 82 83 /* 84 * dosilicon SPI NAND read ID need a dummy byte, 85 * so the first byte in raw_id is dummy. 86 */ 87 if (id[1] != SPINAND_MFR_DOSILICON) 88 return 0; 89 90 ret = spinand_match_and_init(spinand, dosilicon_spinand_table, 91 ARRAY_SIZE(dosilicon_spinand_table), id[2]); 92 if (ret) 93 return ret; 94 95 return 1; 96 } 97 98 static int dosilicon_spinand_init(struct spinand_device *spinand) 99 { 100 return 0; 101 } 102 103 static const struct spinand_manufacturer_ops dosilicon_spinand_manuf_ops = { 104 .detect = dosilicon_spinand_detect, 105 .init = dosilicon_spinand_init, 106 }; 107 108 const struct spinand_manufacturer dosilicon_spinand_manufacturer = { 109 .id = SPINAND_MFR_DOSILICON, 110 .name = "dosilicon", 111 .ops = &dosilicon_spinand_manuf_ops, 112 }; 113