Ian Campbell
2013-Nov-22 16:24 UTC
[PATCH v2 09/15] xen: arm: Handle cpus nodes with #address-cells > 1
The APM X-Gene Mustang board DTS has #address-cells = 2. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> --- v2: Use dt_read_number, check the property length --- xen/arch/arm/smpboot.c | 34 +++++++++++++++++++++++++++++----- 1 file changed, 29 insertions(+), 5 deletions(-) diff --git a/xen/arch/arm/smpboot.c b/xen/arch/arm/smpboot.c index 6c90fa6..b6a1307 100644 --- a/xen/arch/arm/smpboot.c +++ b/xen/arch/arm/smpboot.c @@ -125,18 +125,42 @@ void __init smp_init_cpus(void) dt_for_each_child_node( cpus, cpu ) { - u32 hwid; + const __be32 *prop; + u64 addr; + u32 reg_len, hwid; if ( !dt_device_type_is_equal(cpu, "cpu") ) continue; - if ( !dt_property_read_u32(cpu, "reg", &hwid) ) + if ( dt_n_size_cells(cpu) != 0 ) + printk(XENLOG_WARNING "cpu node `%s`: #size-cells %d\n", + dt_node_full_name(cpu), dt_n_size_cells(cpu)); + + prop = dt_get_property(cpu, "reg", ®_len); + if ( !prop ) + { + printk(XENLOG_WARNING "cpu node `%s`: has no reg property\n", + dt_node_full_name(cpu)); + continue; + } + + if ( reg_len < dt_n_addr_cells(cpu) ) { - printk(XENLOG_WARNING "cpu node `%s`: missing reg property\n", + printk(XENLOG_WARNING "cpu node `%s`: reg property too short\n", dt_node_full_name(cpu)); continue; } + addr = dt_read_number(prop, dt_n_addr_cells(cpu)); + + hwid = addr; + if ( hwid != addr ) + { + printk(XENLOG_WARNING "cpu node `%s`: hwid overflow %"PRIx64"\n", + dt_node_full_name(cpu), addr); + continue; + } + /* * 8 MSBs must be set to 0 in the DT since the reg property * defines the MPIDR[23:0] @@ -159,8 +183,8 @@ void __init smp_init_cpus(void) if ( tmp_map[j] == hwid ) { printk(XENLOG_WARNING - "cpu node `%s`: duplicate /cpu reg properties in the DT\n", - dt_node_full_name(cpu)); + "cpu node `%s`: duplicate /cpu reg properties %"PRIx32" in the DT\n", + dt_node_full_name(cpu), hwid); break; } } -- 1.7.10.4
George Dunlap
2013-Nov-22 16:59 UTC
Re: [PATCH v2 09/15] xen: arm: Handle cpus nodes with #address-cells > 1
On Fri, Nov 22, 2013 at 4:24 PM, Ian Campbell <ian.campbell@citrix.com> wrote:> The APM X-Gene Mustang board DTS has #address-cells = 2. > > Signed-off-by: Ian Campbell <ian.campbell@citrix.com>Release-acked-by: George Dunlap <george.dunlap@eu.citrix.com>> --- > v2: Use dt_read_number, check the property length > --- > xen/arch/arm/smpboot.c | 34 +++++++++++++++++++++++++++++----- > 1 file changed, 29 insertions(+), 5 deletions(-) > > diff --git a/xen/arch/arm/smpboot.c b/xen/arch/arm/smpboot.c > index 6c90fa6..b6a1307 100644 > --- a/xen/arch/arm/smpboot.c > +++ b/xen/arch/arm/smpboot.c > @@ -125,18 +125,42 @@ void __init smp_init_cpus(void) > > dt_for_each_child_node( cpus, cpu ) > { > - u32 hwid; > + const __be32 *prop; > + u64 addr; > + u32 reg_len, hwid; > > if ( !dt_device_type_is_equal(cpu, "cpu") ) > continue; > > - if ( !dt_property_read_u32(cpu, "reg", &hwid) ) > + if ( dt_n_size_cells(cpu) != 0 ) > + printk(XENLOG_WARNING "cpu node `%s`: #size-cells %d\n", > + dt_node_full_name(cpu), dt_n_size_cells(cpu)); > + > + prop = dt_get_property(cpu, "reg", ®_len); > + if ( !prop ) > + { > + printk(XENLOG_WARNING "cpu node `%s`: has no reg property\n", > + dt_node_full_name(cpu)); > + continue; > + } > + > + if ( reg_len < dt_n_addr_cells(cpu) ) > { > - printk(XENLOG_WARNING "cpu node `%s`: missing reg property\n", > + printk(XENLOG_WARNING "cpu node `%s`: reg property too short\n", > dt_node_full_name(cpu)); > continue; > } > > + addr = dt_read_number(prop, dt_n_addr_cells(cpu)); > + > + hwid = addr; > + if ( hwid != addr ) > + { > + printk(XENLOG_WARNING "cpu node `%s`: hwid overflow %"PRIx64"\n", > + dt_node_full_name(cpu), addr); > + continue; > + } > + > /* > * 8 MSBs must be set to 0 in the DT since the reg property > * defines the MPIDR[23:0] > @@ -159,8 +183,8 @@ void __init smp_init_cpus(void) > if ( tmp_map[j] == hwid ) > { > printk(XENLOG_WARNING > - "cpu node `%s`: duplicate /cpu reg properties in the DT\n", > - dt_node_full_name(cpu)); > + "cpu node `%s`: duplicate /cpu reg properties %"PRIx32" in the DT\n", > + dt_node_full_name(cpu), hwid); > break; > } > } > -- > 1.7.10.4 > > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists.xen.org > http://lists.xen.org/xen-devel
Julien Grall
2013-Nov-22 17:22 UTC
Re: [PATCH v2 09/15] xen: arm: Handle cpus nodes with #address-cells > 1
On 11/22/2013 04:24 PM, Ian Campbell wrote:> The APM X-Gene Mustang board DTS has #address-cells = 2. > > Signed-off-by: Ian Campbell <ian.campbell@citrix.com> > --- > v2: Use dt_read_number, check the property length > --- > xen/arch/arm/smpboot.c | 34 +++++++++++++++++++++++++++++----- > 1 file changed, 29 insertions(+), 5 deletions(-) > > diff --git a/xen/arch/arm/smpboot.c b/xen/arch/arm/smpboot.c > index 6c90fa6..b6a1307 100644 > --- a/xen/arch/arm/smpboot.c > +++ b/xen/arch/arm/smpboot.c > @@ -125,18 +125,42 @@ void __init smp_init_cpus(void) > > dt_for_each_child_node( cpus, cpu ) > { > - u32 hwid; > + const __be32 *prop; > + u64 addr; > + u32 reg_len, hwid; > > if ( !dt_device_type_is_equal(cpu, "cpu") ) > continue; > > - if ( !dt_property_read_u32(cpu, "reg", &hwid) ) > + if ( dt_n_size_cells(cpu) != 0 ) > + printk(XENLOG_WARNING "cpu node `%s`: #size-cells %d\n", > + dt_node_full_name(cpu), dt_n_size_cells(cpu)); > + > + prop = dt_get_property(cpu, "reg", ®_len); > + if ( !prop ) > + { > + printk(XENLOG_WARNING "cpu node `%s`: has no reg property\n", > + dt_node_full_name(cpu)); > + continue; > + } > + > + if ( reg_len < dt_n_addr_cells(cpu) )dt_n_addr_cells is the number of cells not in bytes. You must use dt_cells_to_size(dt_nr_addr_cells(cpu)), perhaps an helper would be useful here. -- Julien Grall
Ian Campbell
2013-Nov-22 17:50 UTC
Re: [PATCH v2 09/15] xen: arm: Handle cpus nodes with #address-cells > 1
On Fri, 2013-11-22 at 17:22 +0000, Julien Grall wrote:> > + if ( reg_len < dt_n_addr_cells(cpu) ) > > dt_n_addr_cells is the number of cells not in bytes.Gah.> You must use dt_cells_to_size(dt_nr_addr_cells(cpu)), perhaps an helper > would be useful here.While investigating I noticed that almost nowhere else seems to care about this and it doesn''t seem that needing to is all that common. So I just went with the plain dt_cells_to_size: From 5a96dd424e484bc5d6c00022c4861873c06928fd Mon Sep 17 00:00:00 2001 From: Ian Campbell <ian.campbell@citrix.com> Date: Thu, 10 Oct 2013 13:11:46 +0100 Subject: [PATCH] xen: arm: Handle cpus nodes with #address-cells > 1 The APM X-Gene Mustang board DTS has #address-cells = 2. Signed-off-by: Ian Campbell <ian.campbell@citrix.com> --- v3: Correct check for property length (bytes not cells) v2: Use dt_read_number, check the property length --- xen/arch/arm/smpboot.c | 34 +++++++++++++++++++++++++++++----- 1 file changed, 29 insertions(+), 5 deletions(-) diff --git a/xen/arch/arm/smpboot.c b/xen/arch/arm/smpboot.c index 6c90fa6..7636ab8 100644 --- a/xen/arch/arm/smpboot.c +++ b/xen/arch/arm/smpboot.c @@ -125,18 +125,42 @@ void __init smp_init_cpus(void) dt_for_each_child_node( cpus, cpu ) { - u32 hwid; + const __be32 *prop; + u64 addr; + u32 reg_len, hwid; if ( !dt_device_type_is_equal(cpu, "cpu") ) continue; - if ( !dt_property_read_u32(cpu, "reg", &hwid) ) + if ( dt_n_size_cells(cpu) != 0 ) + printk(XENLOG_WARNING "cpu node `%s`: #size-cells %d\n", + dt_node_full_name(cpu), dt_n_size_cells(cpu)); + + prop = dt_get_property(cpu, "reg", ®_len); + if ( !prop ) + { + printk(XENLOG_WARNING "cpu node `%s`: has no reg property\n", + dt_node_full_name(cpu)); + continue; + } + + if ( reg_len < dt_cells_to_size(dt_n_addr_cells(cpu)) ) { - printk(XENLOG_WARNING "cpu node `%s`: missing reg property\n", + printk(XENLOG_WARNING "cpu node `%s`: reg property too short\n", dt_node_full_name(cpu)); continue; } + addr = dt_read_number(prop, dt_n_addr_cells(cpu)); + + hwid = addr; + if ( hwid != addr ) + { + printk(XENLOG_WARNING "cpu node `%s`: hwid overflow %"PRIx64"\n", + dt_node_full_name(cpu), addr); + continue; + } + /* * 8 MSBs must be set to 0 in the DT since the reg property * defines the MPIDR[23:0] @@ -159,8 +183,8 @@ void __init smp_init_cpus(void) if ( tmp_map[j] == hwid ) { printk(XENLOG_WARNING - "cpu node `%s`: duplicate /cpu reg properties in the DT\n", - dt_node_full_name(cpu)); + "cpu node `%s`: duplicate /cpu reg properties %"PRIx32" in the DT\n", + dt_node_full_name(cpu), hwid); break; } } -- 1.7.10.4