From: Boris Brezillon <boris.brezillon@bootlin.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v6 24/31] cmd: mtdparts: accept spi-nand devices
Date: Thu, 16 Aug 2018 17:53:28 +0200 [thread overview]
Message-ID: <20180816175328.4bf2abaf@bbrezillon> (raw)
In-Reply-To: <20180816153029.15521-25-miquel.raynal@bootlin.com>
On Thu, 16 Aug 2018 17:30:22 +0200
Miquel Raynal <miquel.raynal@bootlin.com> wrote:
> Let spi-nand devices be recognized by mtdparts. This is superfluous
> but a full mtdparts rework would be very time-consuming.
>
> Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
> Acked-by: Jagan Teki <jagan@openedev.com>
Reviewed-by: Boris Brezillon <boris.brezillon@bootlin.com>
> ---
> cmd/mtdparts.c | 13 ++++++++-----
> include/jffs2/load_kernel.h | 7 +++++--
> 2 files changed, 13 insertions(+), 7 deletions(-)
>
> diff --git a/cmd/mtdparts.c b/cmd/mtdparts.c
> index 756fc6018f..2e547894c6 100644
> --- a/cmd/mtdparts.c
> +++ b/cmd/mtdparts.c
> @@ -37,7 +37,7 @@
> * mtdids=<idmap>[,<idmap>,...]
> *
> * <idmap> := <dev-id>=<mtd-id>
> - * <dev-id> := 'nand'|'nor'|'onenand'<dev-num>
> + * <dev-id> := 'nand'|'nor'|'onenand'|'spi-nand'<dev-num>
> * <dev-num> := mtd device number, 0...
> * <mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)
> *
> @@ -339,7 +339,7 @@ static int part_validate_eraseblock(struct mtdids *id, struct part_info *part)
>
> if (!mtd->numeraseregions) {
> /*
> - * Only one eraseregion (NAND, OneNAND or uniform NOR),
> + * Only one eraseregion (NAND, SPI-NAND, OneNAND or uniform NOR),
> * checking for alignment is easy here
> */
> offset = part->offset;
> @@ -1030,7 +1030,7 @@ static struct mtdids* id_find_by_mtd_id(const char *mtd_id, unsigned int mtd_id_
> }
>
> /**
> - * Parse device id string <dev-id> := 'nand'|'nor'|'onenand'<dev-num>,
> + * Parse device id string <dev-id> := 'nand'|'nor'|'onenand'|'spi-nand'<dev-num>,
> * return device type and number.
> *
> * @param id string describing device id
> @@ -1054,6 +1054,9 @@ int mtd_id_parse(const char *id, const char **ret_id, u8 *dev_type,
> } else if (strncmp(p, "onenand", 7) == 0) {
> *dev_type = MTD_DEV_TYPE_ONENAND;
> p += 7;
> + } else if (strncmp(p, "spi-nand", 8) == 0) {
> + *dev_type = MTD_DEV_TYPE_SPINAND;
> + p += 8;
> } else {
> printf("incorrect device type in %s\n", id);
> return 1;
> @@ -1636,7 +1639,7 @@ static int parse_mtdids(const char *const ids)
> while(p && (*p != '\0')) {
>
> ret = 1;
> - /* parse 'nor'|'nand'|'onenand'<dev-num> */
> + /* parse 'nor'|'nand'|'onenand'|'spi-nand'<dev-num> */
> if (mtd_id_parse(p, &p, &type, &num) != 0)
> break;
>
> @@ -2112,7 +2115,7 @@ static char mtdparts_help_text[] =
> "'mtdids' - linux kernel mtd device id <-> u-boot device id mapping\n\n"
> "mtdids=<idmap>[,<idmap>,...]\n\n"
> "<idmap> := <dev-id>=<mtd-id>\n"
> - "<dev-id> := 'nand'|'nor'|'onenand'<dev-num>\n"
> + "<dev-id> := 'nand'|'nor'|'onenand'|'spi-nand'<dev-num>\n"
> "<dev-num> := mtd device number, 0...\n"
> "<mtd-id> := unique device tag used by linux kernel to find mtd device (mtd->name)\n\n"
> "'mtdparts' - partition list\n\n"
> diff --git a/include/jffs2/load_kernel.h b/include/jffs2/load_kernel.h
> index 1ddff062ad..9346d7ee9f 100644
> --- a/include/jffs2/load_kernel.h
> +++ b/include/jffs2/load_kernel.h
> @@ -15,9 +15,12 @@
> #define MTD_DEV_TYPE_NOR 0x0001
> #define MTD_DEV_TYPE_NAND 0x0002
> #define MTD_DEV_TYPE_ONENAND 0x0004
> +#define MTD_DEV_TYPE_SPINAND 0x0008
>
> -#define MTD_DEV_TYPE(type) ((type == MTD_DEV_TYPE_NAND) ? "nand" : \
> - (type == MTD_DEV_TYPE_ONENAND) ? "onenand" : "nor")
> +#define MTD_DEV_TYPE(type) (type == MTD_DEV_TYPE_NAND ? "nand" : \
> + (type == MTD_DEV_TYPE_NOR ? "nor" : \
> + (type == MTD_DEV_TYPE_ONENAND ? "onenand" : \
> + "spi-nand"))) \
>
> struct mtd_device {
> struct list_head link;
next prev parent reply other threads:[~2018-08-16 15:53 UTC|newest]
Thread overview: 58+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-08-16 15:29 [U-Boot] [PATCH v6 00/31] SPI-NAND support Miquel Raynal
2018-08-16 15:29 ` [U-Boot] [PATCH v6 01/31] mtd: Fallback to ->_read/write_oob() when ->_read/write() is missing Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 02/31] mtd: Uninline mtd_write_oob and move it to mtdcore.c Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 03/31] mtd: Add sanity checks in mtd_write/read_oob() Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 04/31] mtd: Fallback to ->_read/write() when ->_read/write_oob() is missing Miquel Raynal
2018-08-16 15:36 ` Boris Brezillon
2018-08-16 15:30 ` [U-Boot] [PATCH v6 05/31] mtd: add get/set of_node/flash_node helpers Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 06/31] mtd: fix build issue with includes Miquel Raynal
2018-08-16 15:33 ` Boris Brezillon
2018-08-16 15:55 ` Boris Brezillon
2018-08-16 15:30 ` [U-Boot] [PATCH v6 07/31] mtd: move definitions to enlarge their range Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 08/31] mtd: move all flash categories inside MTD submenu Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 09/31] mtd: move NAND files into a raw/ subdirectory Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 10/31] mtd: rename nand into rawnand in Kconfig prompt Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 11/31] mtd: nand: Add core infrastructure to deal with NAND devices Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 12/31] mtd: nand: Pass mode information to nand_page_io_req Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 13/31] spi: Extend the core to ease integration of SPI memory controllers Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 14/31] mtd: nand: Add core infrastructure to support SPI NANDs Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 15/31] mtd: spinand: Add initial support for Micron MT29F2G01ABAGD Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 16/31] mtd: spinand: Add initial support for Winbond W25M02GV Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 17/31] mtd: spinand: Add initial support for the MX35LF1GE4AB chip Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 18/31] mtd: spinand: Add initial support for the MX35LF2GE4AB chip Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 19/31] dt-bindings: Add bindings for SPI NAND devices Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 20/31] mtd: declare MTD_PARTITIONS symbol in Kconfig Miquel Raynal
2018-08-16 15:46 ` Boris Brezillon
2018-09-03 7:47 ` Jagan Teki
2018-09-03 8:30 ` Miquel Raynal
2018-09-03 8:50 ` Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 21/31] mtd: mtdpart: balance debug messages Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 22/31] cmd: ubi: delete useless and misleading definitions Miquel Raynal
2018-08-16 15:50 ` Boris Brezillon
2018-08-16 15:30 ` [U-Boot] [PATCH v6 23/31] cmd: mtdparts: add fallthrough in switch statement Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 24/31] cmd: mtdparts: accept spi-nand devices Miquel Raynal
2018-08-16 15:53 ` Boris Brezillon [this message]
2018-08-16 15:30 ` [U-Boot] [PATCH v6 25/31] cmd: mtdparts: add a generic 'mtdparts' parser Miquel Raynal
2018-08-16 17:04 ` Boris Brezillon
2018-08-16 15:30 ` [U-Boot] [PATCH v6 26/31] mtd: uclass: add probe function Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 27/31] mtd: move mtdparts_init() declaration Miquel Raynal
2018-08-16 16:05 ` Boris Brezillon
2018-08-20 9:06 ` Miquel Raynal
2018-08-16 15:30 ` [U-Boot] [PATCH v6 28/31] mtd: mtdpart: implement proper partition handling Miquel Raynal
2018-08-16 16:19 ` Boris Brezillon
2018-08-16 15:30 ` [U-Boot] [PATCH v6 29/31] cmd: mtd: add 'mtd' command Miquel Raynal
2018-08-16 16:22 ` Boris Brezillon
2018-08-20 16:08 ` Miquel Raynal
2018-08-20 16:30 ` Boris Brezillon
2018-08-16 19:50 ` Boris Brezillon
2018-08-16 20:38 ` Boris Brezillon
2018-08-16 15:30 ` [U-Boot] [PATCH v6 30/31] cmd: mtdparts: try to probe the MTD devices as a fallback Miquel Raynal
2018-08-16 17:11 ` Boris Brezillon
2018-08-16 15:30 ` [U-Boot] [PATCH v6 31/31] cmd: ubi: clean the partition handling Miquel Raynal
2018-08-16 19:17 ` Boris Brezillon
2018-08-16 16:58 ` [U-Boot] [PATCH v6 00/31] SPI-NAND support Boris Brezillon
2018-08-17 8:38 ` Miquel Raynal
2018-08-30 12:43 ` Miquel Raynal
2018-09-02 18:17 ` Jagan Teki
2018-09-03 6:45 ` Miquel Raynal
2018-09-03 7:45 ` Jagan Teki
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=20180816175328.4bf2abaf@bbrezillon \
--to=boris.brezillon@bootlin.com \
--cc=u-boot@lists.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