From: Paul Kocialkowski <contact-W9ppeneeCTY@public.gmane.org>
To: Russell King - ARM Linux <linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org>
Cc: devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org,
Rob Herring <robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org>,
Hans De Goede <hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>,
Pawel Moll <pawel.moll-5wv7dgnIgG8@public.gmane.org>,
Mark Rutland <mark.rutland-5wv7dgnIgG8@public.gmane.org>,
Ian Campbell
<ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org>,
Kumar Gala <galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
Subject: Re: [PATCH 2/2] arch: arm: Show the serial number from devicetree in cpuinfo
Date: Thu, 16 Apr 2015 12:23:11 +0200 [thread overview]
Message-ID: <1429179791.2483.13.camel@collins> (raw)
In-Reply-To: <20150416094623.GX12732-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
[-- Attachment #1: Type: text/plain, Size: 6278 bytes --]
Hi Russell, thanks for the review!
Le jeudi 16 avril 2015 à 10:46 +0100, Russell King - ARM Linux a écrit :
> On Sat, Mar 28, 2015 at 06:39:31PM +0100, Paul Kocialkowski wrote:
> > This grabs the serial number shown in cpuinfo from the serial-number devicetree
> > property in priority. When booting with ATAGs (and without device-tree), the
> > provided number is still shown instead.
> >
> > Signed-off-by: Paul Kocialkowski <contact-W9ppeneeCTY@public.gmane.org>
> > ---
> > arch/arm/include/asm/system_info.h | 1 +
> > arch/arm/kernel/atags_parse.c | 3 +++
> > arch/arm/kernel/devtree.c | 15 ++++++++++-----
> > arch/arm/kernel/setup.c | 11 +++++++++--
> > 4 files changed, 23 insertions(+), 7 deletions(-)
> >
> > diff --git a/arch/arm/include/asm/system_info.h b/arch/arm/include/asm/system_info.h
> > index 720ea03..3860cbd40 100644
> > --- a/arch/arm/include/asm/system_info.h
> > +++ b/arch/arm/include/asm/system_info.h
> > @@ -17,6 +17,7 @@
> >
> > /* information about the system we're running on */
> > extern unsigned int system_rev;
> > +extern const char *system_serial;
> > extern unsigned int system_serial_low;
> > extern unsigned int system_serial_high;
> > extern unsigned int mem_fclk_21285;
> > diff --git a/arch/arm/kernel/atags_parse.c b/arch/arm/kernel/atags_parse.c
> > index 68c6ae0..8384818 100644
> > --- a/arch/arm/kernel/atags_parse.c
> > +++ b/arch/arm/kernel/atags_parse.c
> > @@ -231,6 +231,9 @@ setup_machine_tags(phys_addr_t __atags_pointer, unsigned int machine_nr)
> > parse_tags(tags);
> > }
> >
> > + /* Serial number is stored in system_serial_low/high */
> > + system_serial = NULL;
> > +
> > /* parse_early_param needs a boot_command_line */
> > strlcpy(boot_command_line, from, COMMAND_LINE_SIZE);
> >
> > diff --git a/arch/arm/kernel/devtree.c b/arch/arm/kernel/devtree.c
> > index 11c54de..a82a04d 100644
> > --- a/arch/arm/kernel/devtree.c
> > +++ b/arch/arm/kernel/devtree.c
> > @@ -26,6 +26,7 @@
> > #include <asm/smp_plat.h>
> > #include <asm/mach/arch.h>
> > #include <asm/mach-types.h>
> > +#include <asm/system_info.h>
> >
> >
> > #ifdef CONFIG_SMP
> > @@ -204,6 +205,9 @@ static const void * __init arch_get_next_mach(const char *const **match)
> > const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
> > {
> > const struct machine_desc *mdesc, *mdesc_best = NULL;
> > + const char *prop;
> > + int size;
> > + unsigned long dt_root;
> >
> > #ifdef CONFIG_ARCH_MULTIPLATFORM
> > DT_MACHINE_START(GENERIC_DT, "Generic DT based system")
> > @@ -215,17 +219,14 @@ const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
> > if (!dt_phys || !early_init_dt_verify(phys_to_virt(dt_phys)))
> > return NULL;
> >
> > + dt_root = of_get_flat_dt_root();
> > +
> > mdesc = of_flat_dt_match_machine(mdesc_best, arch_get_next_mach);
> >
> > if (!mdesc) {
> > - const char *prop;
> > - int size;
> > - unsigned long dt_root;
> > -
> > early_print("\nError: unrecognized/unsupported "
> > "device tree compatible list:\n[ ");
> >
> > - dt_root = of_get_flat_dt_root();
> > prop = of_get_flat_dt_prop(dt_root, "compatible", &size);
> > while (size > 0) {
> > early_print("'%s' ", prop);
> > @@ -243,6 +244,10 @@ const struct machine_desc * __init setup_machine_fdt(unsigned int dt_phys)
> >
> > early_init_dt_scan_nodes();
> >
> > + /* Scan for serial number */
> > + prop = of_get_flat_dt_prop(dt_root, "serial-number", &size);
> > + system_serial = prop;
> > +
> > /* Change machine number to match the mdesc we're using */
> > __machine_arch_type = mdesc->nr;
> >
> > diff --git a/arch/arm/kernel/setup.c b/arch/arm/kernel/setup.c
> > index 1d60beb..69fa7ef 100644
> > --- a/arch/arm/kernel/setup.c
> > +++ b/arch/arm/kernel/setup.c
> > @@ -93,6 +93,9 @@ unsigned int __atags_pointer __initdata;
> > unsigned int system_rev;
> > EXPORT_SYMBOL(system_rev);
> >
> > +const char *system_serial;
> > +EXPORT_SYMBOL(system_serial);
> > +
> > unsigned int system_serial_low;
> > EXPORT_SYMBOL(system_serial_low);
> >
> > @@ -1091,8 +1094,12 @@ static int c_show(struct seq_file *m, void *v)
> >
> > seq_printf(m, "Hardware\t: %s\n", machine_name);
> > seq_printf(m, "Revision\t: %04x\n", system_rev);
> > - seq_printf(m, "Serial\t\t: %08x%08x\n",
> > - system_serial_high, system_serial_low);
> > +
> > + if (system_serial)
> > + seq_printf(m, "Serial\t\t: %s\n", system_serial);
> > + else
> > + seq_printf(m, "Serial\t\t: %08x%08x\n",
> > + system_serial_high, system_serial_low);
>
> How about this becomes just:
>
> seq_printf(m, "Serial\t\t: %s\n", system_serial);
Okay, always printing the system_serial string in cpuinfo's c_show seems
cleaner and clearly states that the string way is preferred over the old
one, which becomes legacy.
> And we arrange for system_serial to always be initialised later on
> during boot if it's not already set from the system_serial_high and
> system_serial_low variables? Eg, adding in init_machine_late():
>
> if (!system_serial)
> system_serial = kasprintf(GFP_KERNEL, "%08x%08x",
> system_serial_high,
> system_serial_low);
>
> and is there a reason we can't look for the serial number in DT at
> this point as well - is there a reason we might need the stringified
> serial number early?
Not that I know of -- I just thought it would be a good fit to fill-in
the string in setup_machine_fdt since ATAGs were being stored in
serial_low/high in setup_machine_tags (to preserve some kind of
"structure parallelism" in the way the serial number is obtained).
Now if the serial from ATAG is going to end up in the system_serial
string too, it doesn't make a lot of sense to keep the structure I
suggested, so I agree with your proposal.
We could simply check whether the serial-number property is there (when
DT is enabled at all) and fallback to using serial_low/high when it's
not the case (which would perhaps be 0), at a later point in
initialization. If you think init_machine_late is a good fit, then I'll
go for it.
[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2015-04-16 10:23 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-28 17:39 [PATCH 1/2] Documentation: devicetree: root node serial-number property documentation Paul Kocialkowski
[not found] ` <1427564371-26039-1-git-send-email-contact-W9ppeneeCTY@public.gmane.org>
2015-03-28 17:39 ` [PATCH 2/2] arch: arm: Show the serial number from devicetree in cpuinfo Paul Kocialkowski
[not found] ` <1427564371-26039-2-git-send-email-contact-W9ppeneeCTY@public.gmane.org>
2015-04-16 9:46 ` Russell King - ARM Linux
[not found] ` <20150416094623.GX12732-l+eeeJia6m9vn6HldHNs0ANdhmdF6hFW@public.gmane.org>
2015-04-16 10:23 ` Paul Kocialkowski [this message]
2015-04-16 14:37 ` Rob Herring
2015-04-16 16:05 ` Russell King - ARM Linux
2015-04-14 14:31 ` [PATCH 1/2] Documentation: devicetree: root node serial-number property documentation Paul Kocialkowski
2015-04-16 7:56 ` Stefan Agner
[not found] ` <f6f4f862c78fa626e7f94bde51eec5b1-XLVq0VzYD2Y@public.gmane.org>
2015-04-16 9:10 ` Paul Kocialkowski
2015-04-16 14:36 ` Rob Herring
[not found] ` <CAL_JsqKdHQZL5Z6hKgquKihFykX0ZiCDQfeHOfOZWOh2NMg4Rw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2015-04-16 15:23 ` Kumar Gala
[not found] ` <CFEF8F54-7A3E-482C-B295-6A6BC5D837C8-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2015-04-16 15:45 ` Paul Kocialkowski
2015-04-16 15:53 ` Kumar Gala
[not found] ` <F4D05489-ACF0-44BB-AEC7-7E8FB83FAE4C-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2015-04-16 18:14 ` Paul Kocialkowski
2015-04-16 18:54 ` Kumar Gala
[not found] ` <B1128C28-AC17-47F6-A64A-FD3197112751-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org>
2015-04-16 19:15 ` Paul Kocialkowski
2015-04-16 19:40 ` Stefan Agner
[not found] ` <97473e9075df185ab3024db70c471f53-XLVq0VzYD2Y@public.gmane.org>
2015-04-16 20:06 ` Paul Kocialkowski
2015-04-16 22:05 ` Stefan Agner
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=1429179791.2483.13.camel@collins \
--to=contact-w9ppeneecty@public.gmane.org \
--cc=devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org \
--cc=galak-sgV2jX0FEOL9JmXXK+q4OQ@public.gmane.org \
--cc=hdegoede-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
--cc=ijc+devicetree-KcIKpvwj1kUDXYZnReoRVg@public.gmane.org \
--cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
--cc=linux-lFZ/pmaqli7XmaaqVzeoHQ@public.gmane.org \
--cc=mark.rutland-5wv7dgnIgG8@public.gmane.org \
--cc=pawel.moll-5wv7dgnIgG8@public.gmane.org \
--cc=robh+dt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.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;
as well as URLs for NNTP newsgroup(s).