From: Krzysztof Kozlowski <krzk@kernel.org>
To: Iker Pedrosa <ikerpedrosam@gmail.com>,
Troy Mitchell <troy.mitchell@linux.dev>
Cc: Ulf Hansson <ulf.hansson@linaro.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Adrian Hunter <adrian.hunter@intel.com>,
Paul Walmsley <pjw@kernel.org>,
Palmer Dabbelt <palmer@dabbelt.com>,
Albert Ou <aou@eecs.berkeley.edu>,
Alexandre Ghiti <alex@ghiti.fr>, Yixun Lan <dlan@kernel.org>,
Michael Opdenacker <michael.opdenacker@rootcommit.com>,
Javier Martinez Canillas <javierm@redhat.com>,
linux-mmc@vger.kernel.org, devicetree@vger.kernel.org,
linux-riscv@lists.infradead.org, spacemit@lists.linux.dev,
linux-kernel@vger.kernel.org, Anand Moon <linux.amoon@gmail.com>,
Trevor Gamblin <tgamblin@baylibre.com>,
Vincent Legoll <legoll@online.fr>
Subject: Re: [PATCH v8 0/9] riscv: spacemit: enable SD card support with UHS modes for OrangePi RV2
Date: Thu, 23 Apr 2026 11:44:41 +0200 [thread overview]
Message-ID: <be916c95-1c31-4a98-8fdf-06538e693911@kernel.org> (raw)
In-Reply-To: <CABdCQ=Oata1oXds6pV-RipwZjcztM0xk_J=Rk8Of2w2RqegbHA@mail.gmail.com>
On 16/04/2026 10:18, Iker Pedrosa wrote:
> El mar, 14 abr 2026 a las 10:16, Troy Mitchell
> (<troy.mitchell@linux.dev>) escribió:
>>
>> On Tue Apr 14, 2026 at 3:12 PM CST, Iker Pedrosa wrote:
>>> El lun, 13 abr 2026 a las 10:07, Krzysztof Kozlowski
>>> (<krzk@kernel.org>) escribió:
>>>>
>>>> On 13/04/2026 10:02, Iker Pedrosa wrote:
>>>>> This series enables complete SD card support for the Spacemit K1-based
>>>>> OrangePi RV2 board, including UHS (Ultra High Speed) modes for
>>>>> high-performance SD card operation.
>>>>>
>>>>> Background
>>>>>
>>>>> The Spacemit K1 SoC includes an SDHCI controller capable of supporting
>>>>> SD cards up to UHS-I speeds (SDR104 at 208MHz). However, mainline
>>>>> currently lacks basic SD controller configuration, SDHCI driver
>>>>> enhancements for voltage switching and tuning, and power management
>>>>> infrastructure.
>>>>>
>>>>> Implementation
>>>>>
>>>>> The series enables SD card support through coordinated layers:
>>>>>
>>>>> - Hardware infrastructure (patches 1-2): Device tree bindings for voltage
>>>>> switching hardware and essential clock infrastructure.
>>>>> - SDHCI driver enhancements (patches 3-7): Regulator framework
>>>>> integration, pinctrl state switching for voltage domains, AIB register
>>>>> programming, and comprehensive SDR tuning support for reliable UHS
>>>>> operation.
>>>>> - SoC and board integration (patches 8-10): Complete K1 SoC controller
>>>>> definitions, PMIC power infrastructure, and OrangePi RV2 board enablement
>>>>> with full UHS support.
>>>>>
>>>>> This transforms the OrangePi RV2 from having no SD card support to full
>>>>> UHS-I capability, enabling high-performance storage up to 208MHz.
>>>>>
>>>>> Tested-by: Michael Opdenacker <michael.opdenacker@rootcommit.com>
>>>>> Signed-off-by: Iker Pedrosa <ikerpedrosam@gmail.com>
>>>>> ---
>>>>> Changes in v8:
>>>>> - Resending the series as v8. The v7 submission failed due to an SMTP
>>>>> error during transit, which resulted in a broken thread on the mailing
>>>>> list.
>>>>
>>>> Hm? Everything is here:
>>>> https://lore.kernel.org/all/20260413-orangepi-sd-card-uhs-v7-1-16650f49c022@gmail.com/
>>>>
>>>> You can send individual patches to fix up threading, use --in-reply-to.
>>>
>>> My apologies for the noise and the rapid resend.
>>>
>>> The reason for v8 was that the v7 cover letter (0/9) failed to reach
>>> the mailing list due to an SMTP error on my end. This left the v7
>>> thread "headless" in the archives without the changelog or the full
>>> context of the series. I was attempting to fix the threading
>>> immediately so that reviewers would have a complete set of patches to
>>> look at, but I realize now that resending the entire series on the
>>> same day was premature.
>> So that's why Krzysztof said you should send individual patch with --in-reply-to.
>
> I see, thanks for the clarification. Just to clarify for my future
> workflow: is it acceptable for a series to be 'headless' (starting
> with Patch 1) if the cover letter is lost, or is the cover letter
> (Patch 0) strictly required as the thread root?
>
> In such cases, would it be better to just send the missing cover
> letter as a reply to Patch 1 afterward to complete the thread without
> resending the whole series?
Replacing missed cover letter is tricky. If you patches have in-reply-to
with ID to a missing posting, but you could do that with a bit mangling
- you would need to send the cover letter with that exactly MessageID.
If patches do not have in-reply-too, then you can send cover letter as
reply to patch #1.
Best regards,
Krzysztof
next prev parent reply other threads:[~2026-04-23 9:44 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-04-13 8:02 [PATCH v8 0/9] riscv: spacemit: enable SD card support with UHS modes for OrangePi RV2 Iker Pedrosa
2026-04-13 8:02 ` [PATCH v8 1/9] dt-bindings: mmc: spacemit,sdhci: add pinctrl support for voltage switching Iker Pedrosa
2026-04-13 8:02 ` [PATCH v8 2/9] mmc: sdhci-of-k1: enable essential clock infrastructure for SD operation Iker Pedrosa
2026-04-13 8:02 ` [PATCH v8 3/9] mmc: sdhci-of-k1: add regulator and pinctrl voltage switching support Iker Pedrosa
2026-04-13 8:02 ` [PATCH v8 4/9] mmc: sdhci-of-k1: add comprehensive SDR tuning support Iker Pedrosa
2026-04-13 8:02 ` [PATCH v8 5/9] riscv: dts: spacemit: k1: add SD card controller and pinctrl support Iker Pedrosa
2026-04-13 8:02 ` [PATCH v8 6/9] riscv: dts: spacemit: k1-orangepi-rv2: add PMIC and power infrastructure Iker Pedrosa
2026-04-13 8:02 ` [PATCH v8 7/9] riscv: dts: spacemit: k1-orangepi-rv2: add SD card support with UHS modes Iker Pedrosa
2026-04-13 8:02 ` [PATCH v8 8/9] riscv: dts: spacemit: k1-bananapi-f3: " Iker Pedrosa
2026-04-13 8:02 ` [PATCH v8 9/9] riscv: dts: spacemit: k1-musepi-pro: " Iker Pedrosa
2026-04-13 8:07 ` [PATCH v8 0/9] riscv: spacemit: enable SD card support with UHS modes for OrangePi RV2 Krzysztof Kozlowski
2026-04-14 7:12 ` Iker Pedrosa
2026-04-14 8:13 ` Troy Mitchell
2026-04-16 8:18 ` Iker Pedrosa
2026-04-23 9:44 ` Krzysztof Kozlowski [this message]
2026-04-23 12:42 ` Anand Moon
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=be916c95-1c31-4a98-8fdf-06538e693911@kernel.org \
--to=krzk@kernel.org \
--cc=adrian.hunter@intel.com \
--cc=alex@ghiti.fr \
--cc=aou@eecs.berkeley.edu \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dlan@kernel.org \
--cc=ikerpedrosam@gmail.com \
--cc=javierm@redhat.com \
--cc=krzk+dt@kernel.org \
--cc=legoll@online.fr \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=linux.amoon@gmail.com \
--cc=michael.opdenacker@rootcommit.com \
--cc=palmer@dabbelt.com \
--cc=pjw@kernel.org \
--cc=robh@kernel.org \
--cc=spacemit@lists.linux.dev \
--cc=tgamblin@baylibre.com \
--cc=troy.mitchell@linux.dev \
--cc=ulf.hansson@linaro.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox