From: Michael Trimarchi <michael@amarulasolutions.com>
To: linux-amarula@amarulasolutions.com,
Dario Binacchi <dario.binacchi@amarulasolutions.com>,
Tommaso Merciai <tommaso.merciai@amarulasolutions.com>,
Boris Brezillon <bbrezillon@kernel.org>,
Richard Weinberger <richard@nod.at>,
Patrice Chotard <patrice.chotard@foss.st.com>,
Wolfgang Denk <wd@denx.de>, u-boot@lists.denx.de (open list)
Cc: u-boot@lists.denx.de (open list)
Subject: [PATCH 05/11] mtd: nand: Export symbol nand_decode_ext_id
Date: Thu, 14 Jul 2022 16:35:37 +0200 [thread overview]
Message-ID: <20220714143543.448991-6-michael@amarulasolutions.com> (raw)
In-Reply-To: <20220714143543.448991-1-michael@amarulasolutions.com>
In preparation of moving specific nand support that are not jedec
or onfi
Signed-off-by: Michael Trimarchi <michael@amarulasolutions.com>
---
drivers/mtd/nand/raw/nand_base.c | 3 ++-
include/linux/mtd/rawnand.h | 3 +++
2 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/drivers/mtd/nand/raw/nand_base.c b/drivers/mtd/nand/raw/nand_base.c
index 7d52372af5..4cb38378f4 100644
--- a/drivers/mtd/nand/raw/nand_base.c
+++ b/drivers/mtd/nand/raw/nand_base.c
@@ -4160,7 +4160,7 @@ static int nand_get_bits_per_cell(u8 cellinfo)
* chip. The rest of the parameters must be decoded according to generic or
* manufacturer-specific "extended ID" decoding patterns.
*/
-static void nand_decode_ext_id(struct nand_chip *chip)
+void nand_decode_ext_id(struct nand_chip *chip)
{
struct mtd_info *mtd = &chip->mtd;
int extid, id_len;
@@ -4286,6 +4286,7 @@ static void nand_decode_ext_id(struct nand_chip *chip)
}
}
+EXPORT_SYMBOL_GPL(nand_decode_ext_id);
/*
* Manufacturer detection. Only used when the NAND is not ONFI or JEDEC
diff --git a/include/linux/mtd/rawnand.h b/include/linux/mtd/rawnand.h
index d8141cb4d1..8fb2a43296 100644
--- a/include/linux/mtd/rawnand.h
+++ b/include/linux/mtd/rawnand.h
@@ -1374,4 +1374,7 @@ int nand_read_data_op(struct nand_chip *chip, void *buf, unsigned int len,
int nand_write_data_op(struct nand_chip *chip, const void *buf,
unsigned int len, bool force_8bit);
+/* Default extended ID decoding function */
+void nand_decode_ext_id(struct nand_chip *chip);
+
#endif /* __LINUX_MTD_RAWNAND_H */
--
2.34.1
next prev parent reply other threads:[~2022-07-14 14:36 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
[not found] <20220714143543.448991-1-michael@amarulasolutions.com>
2022-07-14 14:35 ` [PATCH 01/11] mtd: nand: Get rid of busw parameter Michael Trimarchi
2022-07-14 14:35 ` [PATCH 02/11] mtd: nand: Store nand ID in struct nand_chip Michael Trimarchi
2022-07-14 14:35 ` [PATCH 03/11] mtd: nand: Add manufacturer specific initialization/detection steps Michael Trimarchi
2022-07-14 14:35 ` [PATCH 04/11] mtd: nand: Get rid of mtd variable in function calls Michael Trimarchi
2022-07-14 14:35 ` Michael Trimarchi [this message]
2022-07-14 14:35 ` [PATCH 06/11] mtd: nand: Move Samsung specific init/detection logic in nand_samsung.c Michael Trimarchi
2022-07-14 14:35 ` [PATCH 07/11] mtd: nand: Move Hynix specific init/detection logic in nand_hynix.c Michael Trimarchi
2022-07-14 14:35 ` [PATCH 08/11] mtd: nand: Move Toshiba specific init/detection logic in nand_toshiba.c Michael Trimarchi
2022-07-14 14:35 ` [PATCH 09/11] mtd: nand: Move Micron specific init logic in nand_micron.c Michael Trimarchi
2022-07-14 14:35 ` [PATCH 10/11] mtd: nand: Move AMD/Spansion specific init/detection logic in nand_amd.c Michael Trimarchi
2022-07-14 14:35 ` [PATCH 11/11] mtd: nand: Move Macronix specific initialization in nand_macronix.c Michael Trimarchi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220714143543.448991-6-michael@amarulasolutions.com \
--to=michael@amarulasolutions.com \
--cc=bbrezillon@kernel.org \
--cc=dario.binacchi@amarulasolutions.com \
--cc=linux-amarula@amarulasolutions.com \
--cc=patrice.chotard@foss.st.com \
--cc=richard@nod.at \
--cc=tommaso.merciai@amarulasolutions.com \
--cc=u-boot@lists.denx.de \
--cc=wd@denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox