From: linux@arm.linux.org.uk (Russell King - ARM Linux)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH RFC] ARM: BCM5301X: Add /device_id property including device ID string
Date: Sun, 29 Mar 2015 23:36:02 +0100 [thread overview]
Message-ID: <20150329223602.GD24899@n2100.arm.linux.org.uk> (raw)
In-Reply-To: <1427667288-23903-1-git-send-email-zajec5@gmail.com>
On Mon, Mar 30, 2015 at 12:14:48AM +0200, Rafa? Mi?ecki wrote:
> Device vendors often assign IDs to their devices to allow comparing
> firmware image with device model. This is required to prevent users
> from flashing incompatible image and soft-bricking device.
> Add device_id property to DTs to allow user space (and optionally
> bootloader) verifying firmware images.
>
> Signed-off-by: Rafa? Mi?ecki <zajec5@gmail.com>
> ---
> Hi guys,
>
> I think my commit message explains pretty well what I'm trying to do,
> however I'm not sure if I'm using a right place for that.
> I also didn't document this news property, as I can't find a place
> where root-properties are currenty described. Is there any such place?
> I couldn't find a file describing e.g. "model" property.
What does this do which the top-level "compatible" doesn't do?
> diff --git a/arch/arm/boot/dts/bcm4708-asus-rt-ac68u.dts b/arch/arm/boot/dts/bcm4708-asus-rt-ac68u.dts
> index 8b62836..9d2fac4 100644
> --- a/arch/arm/boot/dts/bcm4708-asus-rt-ac68u.dts
> +++ b/arch/arm/boot/dts/bcm4708-asus-rt-ac68u.dts
> @@ -14,6 +14,7 @@
> / {
> compatible = "asus,rt-ac68u", "brcm,bcm4708";
> model = "Asus RT-AC68U (BCM4708)";
> + device_id = "RT-AC68U";
"asus,rt-ac68u" is more specific than your device ID - it's entirely
possible that two manufacturers could choose the same model number
for their device - matching on the model number alone is opening this
up to exactly the issue you're trying to prevent.
If you have your validator check for "asus,rt-ac68u" on such a device
rather than the magic string "RT-AC68U", it should be much better.
> diff --git a/arch/arm/boot/dts/bcm4708-netgear-r6250.dts b/arch/arm/boot/dts/bcm4708-netgear-r6250.dts
> index 2ed9e57..98c8d63 100644
> --- a/arch/arm/boot/dts/bcm4708-netgear-r6250.dts
> +++ b/arch/arm/boot/dts/bcm4708-netgear-r6250.dts
> @@ -14,6 +14,7 @@
> / {
> compatible = "netgear,r6250v1", "brcm,bcm4708";
> model = "Netgear R6250 V1 (BCM4708)";
> + device_id = "U12H245T00_NETGEAR";
Here you decide to include the manufacturer at the end of the name.
If the model number is "U12H245T00" why doesn't the compatible string
reflect this? That sounds like a mistake to me.
I quote the definition of the "compatible" property:
Property: compatible
Value type: <stringlist>
Description: The compatible property value consists of one or more
strings that define the specific programming model for the device.
This list of strings should be used by a client program for device
driver selection. The property value consists of a concatenated list
of null terminated strings, from most specific to most general. They
allow a device to express its compatibility with a family of similar
devices, potentially allowing a single device driver to match against
several devices. The recommended format is ?manufacturer,model?,
where manufacturer is a string describing the name of the manufacturer
(such as a stock ticker symbol), and model specifies the model number.
So, checking the top-level compatible _should_ do everything you want,
provided it follows the requirements of ePAPR.
--
FTTC broadband for 0.8mile line: currently at 10.5Mbps down 400kbps up
according to speedtest.net.
next prev parent reply other threads:[~2015-03-29 22:36 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-29 22:14 [PATCH RFC] ARM: BCM5301X: Add /device_id property including device ID string Rafał Miłecki
2015-03-29 22:36 ` Russell King - ARM Linux [this message]
2015-03-29 22:54 ` Rafał Miłecki
2015-03-29 23:10 ` Russell King - ARM Linux
2015-03-30 10:37 ` Mark Rutland
2015-03-30 10:37 ` Mark Rutland
2015-03-30 10:43 ` Rafał Miłecki
2015-03-30 10:43 ` Rafał Miłecki
2015-03-30 10:58 ` Mark Rutland
2015-03-30 10:58 ` Mark Rutland
2015-04-10 10:50 ` Arnd Bergmann
2015-04-10 10:50 ` Arnd Bergmann
2015-04-10 10:55 ` Rafał Miłecki
2015-04-10 10:55 ` Rafał Miłecki
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=20150329223602.GD24899@n2100.arm.linux.org.uk \
--to=linux@arm.linux.org.uk \
--cc=linux-arm-kernel@lists.infradead.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.