blob: dc972e59092241c1dc1ba062992e9214f4fec545 [file] [log] [blame]
Michael Trimarchi66483b32022-07-20 18:22:14 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2017 Free Electrons
4 * Copyright (C) 2017 NextThing Co
5 *
6 * Author: Boris Brezillon <boris.brezillon@free-electrons.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 */
18
19#include <linux/mtd/rawnand.h>
20
21static int macronix_nand_init(struct nand_chip *chip)
22{
23 if (nand_is_slc(chip))
24 chip->bbt_options |= NAND_BBT_SCAN2NDPAGE;
25
26 return 0;
27}
28
29const struct nand_manufacturer_ops macronix_nand_manuf_ops = {
30 .init = macronix_nand_init,
31};