David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 2 | /* |
| 3 | * SharpSL NAND support |
| 4 | * |
| 5 | * Copyright (C) 2008 Dmitry Baryshkov |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 8 | #ifndef _MTD_SHARPSL_H |
| 9 | #define _MTD_SHARPSL_H |
| 10 | |
Andrew Scull | b4b6d4a | 2019-01-02 15:54:55 +0000 | [diff] [blame] | 11 | #include <linux/mtd/rawnand.h> |
| 12 | #include <linux/mtd/nand_ecc.h> |
| 13 | #include <linux/mtd/partitions.h> |
| 14 | |
| 15 | struct sharpsl_nand_platform_data { |
| 16 | struct nand_bbt_descr *badblock_pattern; |
| 17 | const struct mtd_ooblayout_ops *ecc_layout; |
| 18 | struct mtd_partition *partitions; |
| 19 | unsigned int nr_partitions; |
| 20 | const char *const *part_parsers; |
| 21 | }; |
David Brazdil | 0f672f6 | 2019-12-10 10:32:29 +0000 | [diff] [blame^] | 22 | |
| 23 | #endif /* _MTD_SHARPSL_H */ |