From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Mikhail Zhilkin <csharper2005@gmail.com>
Cc: Rob Herring <robh+dt@kernel.org>,
Richard Weinberger <richard@nod.at>,
Vignesh Raghavendra <vigneshr@ti.com>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-mtd@lists.infradead.org, Karim <Karimdplay@gmail.com>,
M <x1@disroot.org>
Subject: Re: [PATCH v5 0/3] Add support for Sercomm partitions
Date: Tue, 17 May 2022 18:39:03 +0200 [thread overview]
Message-ID: <20220517183903.2b34819c@xps-13> (raw)
In-Reply-To: <20220516184217.4e2957fc@xps-13>
Hello,
miquel.raynal@bootlin.com wrote on Mon, 16 May 2022 18:42:17 +0200:
> Hi Mikhail,
>
> csharper2005@gmail.com wrote on Mon, 16 May 2022 15:12:28 +0000:
>
> > This patch series add support for Sercomm mtd partition table parser. It's
> > used in some Beeline, Netgear and Sercomm routers. The Sercomm partition
> > map table contains real partition offsets, which may differ from device to
> > device depending on the number and location of bad blocks on NAND.
>
> Series applied in place of the previous version on mtd/next.
Actually we have a new robot warning, so I've dropped patch 3/3 and kept
the bindings for this release.
Thanks,
Miquèl
>
> >
> > Changes since:
> > v4:
> > - Add Acked-by to the first patch
> >
> > v3:
> > - Fix commit message of the first patch
> > - Add Reviewed-by to the second patch
> >
> > v2:
> > - Fix mistakes in dt-binding
> > - Add patch for new vendor prefix
> > - Add vendor prefix to scpart-id property
> >
> > v1:
> > - Add dt-binding in a separate patch
> > - Remove redundant braces and logical NOT operator
> > - Define pr_fmt
> > - Replace kcalloc by kzalloc
> > - Use of_get_child_count() and alloc big enough array before the
> > for_each_child_of_node()
> >
> > Mikhail Zhilkin (3):
> > dt-bindings: Add Sercomm (Suzhou) Corporation vendor prefix
> > dt-bindings: mtd: partitions: Extend fixed-partitions binding
> > mtd: parsers: add support for Sercomm partitions
> >
> > .../mtd/partitions/fixed-partitions.yaml | 55 +++-
> > .../devicetree/bindings/vendor-prefixes.yaml | 2 +
> > drivers/mtd/parsers/Kconfig | 9 +
> > drivers/mtd/parsers/Makefile | 1 +
> > drivers/mtd/parsers/scpart.c | 240 ++++++++++++++++++
> > 5 files changed, 305 insertions(+), 2 deletions(-)
> > create mode 100644 drivers/mtd/parsers/scpart.c
> >
>
>
> Thanks,
> Miquèl
______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/
WARNING: multiple messages have this Message-ID (diff)
From: Miquel Raynal <miquel.raynal@bootlin.com>
To: Mikhail Zhilkin <csharper2005@gmail.com>
Cc: Rob Herring <robh+dt@kernel.org>,
Richard Weinberger <richard@nod.at>,
Vignesh Raghavendra <vigneshr@ti.com>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-mtd@lists.infradead.org, Karim <Karimdplay@gmail.com>,
M <x1@disroot.org>
Subject: Re: [PATCH v5 0/3] Add support for Sercomm partitions
Date: Tue, 17 May 2022 18:39:03 +0200 [thread overview]
Message-ID: <20220517183903.2b34819c@xps-13> (raw)
In-Reply-To: <20220516184217.4e2957fc@xps-13>
Hello,
miquel.raynal@bootlin.com wrote on Mon, 16 May 2022 18:42:17 +0200:
> Hi Mikhail,
>
> csharper2005@gmail.com wrote on Mon, 16 May 2022 15:12:28 +0000:
>
> > This patch series add support for Sercomm mtd partition table parser. It's
> > used in some Beeline, Netgear and Sercomm routers. The Sercomm partition
> > map table contains real partition offsets, which may differ from device to
> > device depending on the number and location of bad blocks on NAND.
>
> Series applied in place of the previous version on mtd/next.
Actually we have a new robot warning, so I've dropped patch 3/3 and kept
the bindings for this release.
Thanks,
Miquèl
>
> >
> > Changes since:
> > v4:
> > - Add Acked-by to the first patch
> >
> > v3:
> > - Fix commit message of the first patch
> > - Add Reviewed-by to the second patch
> >
> > v2:
> > - Fix mistakes in dt-binding
> > - Add patch for new vendor prefix
> > - Add vendor prefix to scpart-id property
> >
> > v1:
> > - Add dt-binding in a separate patch
> > - Remove redundant braces and logical NOT operator
> > - Define pr_fmt
> > - Replace kcalloc by kzalloc
> > - Use of_get_child_count() and alloc big enough array before the
> > for_each_child_of_node()
> >
> > Mikhail Zhilkin (3):
> > dt-bindings: Add Sercomm (Suzhou) Corporation vendor prefix
> > dt-bindings: mtd: partitions: Extend fixed-partitions binding
> > mtd: parsers: add support for Sercomm partitions
> >
> > .../mtd/partitions/fixed-partitions.yaml | 55 +++-
> > .../devicetree/bindings/vendor-prefixes.yaml | 2 +
> > drivers/mtd/parsers/Kconfig | 9 +
> > drivers/mtd/parsers/Makefile | 1 +
> > drivers/mtd/parsers/scpart.c | 240 ++++++++++++++++++
> > 5 files changed, 305 insertions(+), 2 deletions(-)
> > create mode 100644 drivers/mtd/parsers/scpart.c
> >
>
>
> Thanks,
> Miquèl
next prev parent reply other threads:[~2022-05-17 16:39 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-16 15:12 [PATCH v5 0/3] Add support for Sercomm partitions Mikhail Zhilkin
2022-05-16 15:12 ` Mikhail Zhilkin
2022-05-16 15:16 ` [PATCH v5 1/3] dt-bindings: Add Sercomm (Suzhou) Corporation vendor prefix Mikhail Zhilkin
2022-05-16 15:16 ` Mikhail Zhilkin
2022-05-16 15:17 ` [PATCH v5 2/3] dt-bindings: mtd: partitions: Extend fixed-partitions binding Mikhail Zhilkin
2022-05-16 15:17 ` Mikhail Zhilkin
2022-05-16 15:18 ` [PATCH v5 3/3] mtd: parsers: add support for Sercomm partitions Mikhail Zhilkin
2022-05-16 15:18 ` Mikhail Zhilkin
2022-05-16 16:42 ` [PATCH v5 0/3] Add " Miquel Raynal
2022-05-16 16:42 ` Miquel Raynal
2022-05-17 16:39 ` Miquel Raynal [this message]
2022-05-17 16:39 ` Miquel Raynal
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=20220517183903.2b34819c@xps-13 \
--to=miquel.raynal@bootlin.com \
--cc=Karimdplay@gmail.com \
--cc=csharper2005@gmail.com \
--cc=devicetree@vger.kernel.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mtd@lists.infradead.org \
--cc=richard@nod.at \
--cc=robh+dt@kernel.org \
--cc=vigneshr@ti.com \
--cc=x1@disroot.org \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.