From: Tim Harvey <tharvey@gateworks.com>
To: Marek Vasut <marex@denx.de>
Cc: "Måns Rullgård" <mans@mansr.com>,
"Douglas Anderson" <dianders@chromium.org>,
"Ulf Hansson" <ulf.hansson@linaro.org>,
"Jaehoon Chung" <jh80.chung@samsung.com>,
shawn.lin@rock-chips.com,
"Adrian Hunter" <adrian.hunter@intel.com>,
stefan@agner.ch, "Linux MMC List" <linux-mmc@vger.kernel.org>,
"Brian Norris" <computersforpeace@gmail.com>,
"Dmitry Torokhov" <dmitry.torokhov@gmail.com>,
"Heiko Stuebner" <heiko@sntech.de>,
"Jisheng Zhang" <jszhang@marvell.com>,
linux-rockchip@lists.infradead.org,
devicetree-spec@vger.kernel.org,
"Mark Rutland" <mark.rutland@arm.com>,
"open list" <linux-kernel@vger.kernel.org>,
"Venu Byravarasu IN" <vbyravarasu@nvidia.com>,
"Lars-Peter Clausen" <lars@metafoo.de>,
"Russell King - ARM Linux" <linux@arm.linux.org.uk>,
jonathanh@nvidia.co
Subject: Re: [PATCH v2 0/4] Patches to allow consistent mmc / mmcblk numbering w/ device tree
Date: Fri, 15 Mar 2019 16:13:53 -0700 [thread overview]
Message-ID: <CAJ+vNU21LyXBbFUdTU3LioTbu6uFAWh9Jf6wM2b5LJWucBwzmg@mail.gmail.com> (raw)
In-Reply-To: <d5310138-7fdd-973d-5210-3fc91c4686ee@denx.de>
Tim Harvey - Principal Software EngineerGateworks Corporation -
http://www.gateworks.com/3026 S. Higuera St. San Luis Obispo CA
93401805-781-2000
On Fri, Mar 15, 2019 at 4:00 PM Marek Vasut <marex@denx.de> wrote:
>
> On 3/15/19 10:52 PM, Tim Harvey wrote:
> > Tim Harvey - Principal Software EngineerGateworks Corporation -
> > http://www.gateworks.com/3026 S. Higuera St. San Luis Obispo CA
> > 93401805-781-2000
> > On Tue, Mar 5, 2019 at 4:39 AM Måns Rullgård <mans@mansr.com> wrote:
> >>
> >> Douglas Anderson <dianders@chromium.org> writes:
> >>
> >>> This series picks patches from various different places to produce what
> >>> I consider the best solution to getting consistent mmc and mmcblk
> >>> ordering.
> >>>
> >>> Why consistent ordering and why not just use UUIDs? IMHO consistent
> >>> ordering solves a few different problems:
> >>>
> >>> 1. For poor, feeble-minded humans like me, have sane numbering for
> >>> devices helps a lot. When grepping through dmesg it's terribly handy
> >>> if a given SDMMC device has a consistent number. I know that I can
> >>> do "dmesg | grep mmc0" or "dmesg | grep mmcblk0" to find info about
> >>> the eMMC. I know that I can do "dmesg | grep mmc1" to find info
> >>> about the SD card slot. I don't want it to matter which one probed
> >>> first, I don't want it to matter if I'm working on a variant of the
> >>> hardware that has the SD card slot disabled, and I don't want to care
> >>> what my boot device was. Worrying about what device number I got
> >>> increases my cognitive load.
> >>>
> >>> 2. There are cases where it's not trivially easy during development to
> >>> use the UUID. Specifically I work a lot with coreboot / depthcharge
> >>> as a BIOS. When configured properly, that BIOS has a nice feature to
> >>> allow you to fetch the kernel and kernel command line from TFTP by
> >>> pressing Ctrl-N. In this particular case the BIOS doesn't actually
> >>> know which disk I'd like for my root filesystem, so it's not so easy
> >>> for it to put the right UUID into the command line. For this
> >>> purpose, knowing that "mmcblk0" will always refer to eMMC is handy.
> >>>
> >>> Changes in v2:
> >>> - Rebased atop mmc-next
> >>> - Stat dynamic allocation after fixed allocation; thanks Wolfram!
> >>> - rk3288 patch new for v2
> >>>
> >>> Douglas Anderson (1):
> >>> ARM: dts: rockchip: Add mmc aliases for rk3288 platform
> >>>
> >>> Jaehoon Chung (1):
> >>> Documentation: mmc: Document mmc aliases
> >>>
> >>> Stefan Agner (2):
> >>> mmc: read mmc alias from device tree
> >>> mmc: use SD/MMC host ID for block device name ID
> >>>
> >>> Documentation/devicetree/bindings/mmc/mmc.txt | 11 +++++++++++
> >>> arch/arm/boot/dts/rk3288.dtsi | 4 ++++
> >>> drivers/mmc/card/block.c | 2 +-
> >>> drivers/mmc/core/host.c | 17 ++++++++++++++++-
> >>> 4 files changed, 32 insertions(+), 2 deletions(-)
> >>
> >> Did anyone ever come up with an acceptable solution for this? After
> >> three years, I'm getting tired of rebasing these patches onto every new
> >> kernel.
> >>
> >> UUIDs or similar are NOT an option for multiple reasons:
> >>
> >> - We have two rootfs partitions for ping-pong updates, so simply
> >> referring to "the thing with ID foo" doesn't work.
> >>
> >> - Installing said updates needs direct access the device/partition,
> >> which may not even have a filesystem.
> >>
> >> - The u-boot environment is stored in an eMMC "boot" partition, and
> >> userspace needs to know where to find it.
> >>
> >> I'm sure I'm not the only one in a similar situation.
> >>
> >> Russel, feel free to shout abuse at me. I don't care, but it makes you
> >> look stupid.
> >>
> >
> > Completely agree here - we need a dt solution that allows us to
> > specify ordering.
>
> Nope, ordering would be a policy and does not describe hardware, thus it
> shouldn't be in the DT. Use UUID or PARTUUID, they apply both to raw FS
> (fsuuid) and to partitions (part uuid). Linux kernel can mount FS using
> PARTUUID, to support UUID you need initramfs.
Marek,
Sure... a 'policy' decision would be which bootable device to boot
from but the issue I see that needs solving is for the vendor to be
able to describe via dt what devices are bootable for MMC (an SDIO
wifi device is not bootable yet a eMMC/microSD is).
Isn't this exactly the same issue as what the stdout-path specifies in
the chosen node? Modern SoC's have multiple UART's yet boot firmware
needs to know which one is the serial console just like boot firmware
should be able to figure out what device or devices are bootable.
Perhaps we can add a 'bootdev-path' in the chosen node?
Regards,
Tim
next prev parent reply other threads:[~2019-03-15 23:13 UTC|newest]
Thread overview: 47+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-04-29 17:32 [PATCH v2 0/4] Patches to allow consistent mmc / mmcblk numbering w/ device tree Douglas Anderson
2016-04-29 17:32 ` [PATCH v2 4/4] ARM: dts: rockchip: Add mmc aliases for rk3288 platform Douglas Anderson
[not found] ` <1461951139-6109-1-git-send-email-dianders-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
2016-04-29 17:32 ` [PATCH v2 1/4] Documentation: mmc: Document mmc aliases Douglas Anderson
2016-04-29 18:12 ` [PATCH v2 0/4] Patches to allow consistent mmc / mmcblk numbering w/ device tree Rob Herring
[not found] ` <CAL_JsqKOADU1hyLj+3cHjTJ7wgkOi-z-iWvFD3Bx5dvB12j+KQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-04-29 19:31 ` Doug Anderson
[not found] ` <CAD=FV=XFZ+4o_QyOdkNZyZ6ZmyXNH1Fbn458oeAxAMLOB=fLkg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-04-29 19:50 ` Russell King - ARM Linux
[not found] ` <20160429195007.GX19428-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2016-04-29 20:02 ` Doug Anderson
2016-04-29 18:12 ` Russell King - ARM Linux
[not found] ` <20160429181248.GW19428-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2016-04-29 19:43 ` Doug Anderson
2016-04-29 19:57 ` Russell King - ARM Linux
[not found] ` <20160429195741.GY19428-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2016-04-29 20:04 ` Doug Anderson
2016-04-29 21:13 ` Russell King - ARM Linux
[not found] ` <20160429211328.GZ19428-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2016-04-29 21:17 ` Doug Anderson
2016-04-29 21:29 ` Russell King - ARM Linux
[not found] ` <20160429212920.GA19428-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2016-04-29 21:39 ` Doug Anderson
2016-04-29 21:50 ` Russell King - ARM Linux
2016-04-29 21:56 ` Doug Anderson
2016-04-29 22:16 ` Russell King - ARM Linux
2016-04-29 22:22 ` Doug Anderson
[not found] ` <CAD=FV=WzgGFzzpeYAPrOpMS684_G=XRoSRjTegK-vre=fX=kpw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-04-29 22:44 ` Russell King - ARM Linux
2016-04-29 23:01 ` Doug Anderson
[not found] ` <CAD=FV=U5jnJJ3v=nFGFecoKB5KGv1ufC+aKbHx2iCqBTWpDTww-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-04-29 23:58 ` Peter Hurley
[not found] ` <CAD=FV=V_YyfBOSs7BLkyhv=_5HBmf3djUWACbL6d-bwnrueDjA@mail.gmail.com>
[not found] ` <CAD=FV=V_YyfBOSs7BLkyhv=_5HBmf3djUWACbL6d-bwnrueDjA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2016-04-30 0:31 ` Peter Hurley
2016-04-30 2:29 ` Doug Anderson
[not found] ` <5723FCE3.9070308-WaGBZJeGNqdsbIuE7sb01tBPR1lH4CV8@public.gmane.org>
2016-04-30 8:38 ` Russell King - ARM Linux
2016-04-30 13:23 ` Rob Herring
2016-04-29 22:42 ` Javier Martinez Canillas
2016-04-30 10:48 ` Russell King - ARM Linux
[not found] ` <20160430104832.GJ19428-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2016-05-03 19:17 ` Trent Piepho
2016-05-04 7:18 ` Pavel Machek
2016-05-04 12:25 ` Rob Herring
2016-05-04 12:46 ` Pavel Machek
2019-03-05 12:39 ` Måns Rullgård
2019-03-15 21:52 ` Tim Harvey
[not found] ` <CAJ+vNU1PxK-B63Dc3AgzYb9POyxxoF-xPOWBEpxJ+3eVNK8xqw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2019-03-15 23:00 ` Marek Vasut
2019-03-15 23:13 ` Tim Harvey [this message]
2019-03-15 23:23 ` Doug Anderson
2019-03-16 12:22 ` Måns Rullgård
2019-03-16 12:33 ` Marek Vasut
2019-03-16 15:39 ` Russell King - ARM Linux admin
2019-03-17 15:05 ` Stefan Agner
2019-03-17 15:43 ` Russell King - ARM Linux admin
2019-03-17 15:50 ` Marek Vasut
2019-03-17 16:48 ` Måns Rullgård
2019-03-17 16:59 ` Russell King - ARM Linux admin
2019-03-27 17:37 ` Tim Harvey
2019-03-27 20:54 ` Russell King - ARM Linux admin
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=CAJ+vNU21LyXBbFUdTU3LioTbu6uFAWh9Jf6wM2b5LJWucBwzmg@mail.gmail.com \
--to=tharvey@gateworks.com \
--cc=adrian.hunter@intel.com \
--cc=computersforpeace@gmail.com \
--cc=devicetree-spec@vger.kernel.org \
--cc=dianders@chromium.org \
--cc=dmitry.torokhov@gmail.com \
--cc=heiko@sntech.de \
--cc=jh80.chung@samsung.com \
--cc=jonathanh@nvidia.co \
--cc=jszhang@marvell.com \
--cc=lars@metafoo.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=linux-rockchip@lists.infradead.org \
--cc=linux@arm.linux.org.uk \
--cc=mans@mansr.com \
--cc=marex@denx.de \
--cc=mark.rutland@arm.com \
--cc=shawn.lin@rock-chips.com \
--cc=stefan@agner.ch \
--cc=ulf.hansson@linaro.org \
--cc=vbyravarasu@nvidia.com \
/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;
as well as URLs for NNTP newsgroup(s).