[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH v2] xen/dt: Remove loop in dt_read_number()


  • To: Alejandro Vallejo <agarciav@xxxxxxx>, xen-devel@xxxxxxxxxxxxxxxxxxxx
  • From: "Orzel, Michal" <michal.orzel@xxxxxxx>
  • Date: Wed, 18 Jun 2025 09:06:23 +0200
  • Arc-authentication-results: i=1; mx.microsoft.com 1; spf=pass smtp.mailfrom=amd.com; dmarc=pass action=none header.from=amd.com; dkim=pass header.d=amd.com; arc=none
  • Arc-message-signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=microsoft.com; s=arcselector10001; h=From:Date:Subject:Message-ID:Content-Type:MIME-Version:X-MS-Exchange-AntiSpam-MessageData-ChunkCount:X-MS-Exchange-AntiSpam-MessageData-0:X-MS-Exchange-AntiSpam-MessageData-1; bh=Ml9P/qbE0KF6UxVD6+jSSpsdZqlyn0DrI+ve2Nni0zI=; b=j4Twjztr2dd9BNDe/zXvFkqkLHLDdTzNwsNtodyEUlDJGGfOi3ctFmgtMSGdKrxtr0b7H/xDnmm90Ab9kYQIv/i6inWeeoyvNTK15lB45c9sLzp8L20zmebdJHUD7l7/AjMEgjuCHr8L5MeLvD8uj8Lh7l2exZVyKopKP+bkXomk8UslWgl2olJgR7BLxs7qkHumEnVn0edO6/99JcqV4PqhIoCjSXwUEnfq0/+VjwWShUGoLZAmVvQGjas2fuu+xANFtI4H92wVi/m1O3QKiOH9t2zFkrvmbA1zGOoEj2n/Gipq/XeyRmjNSByGIw5W4P+V66Z9hRzKIj0eBiJADA==
  • Arc-seal: i=1; a=rsa-sha256; s=arcselector10001; d=microsoft.com; cv=none; b=GYirddU3zYB2S8rVr0eEm1t8NR/DrQjiRzWx9xFhnqW7AkyG7D4Jeyfeo7TQV1jOemLV7CTYkQcUpLfvVTfdeMzQhvIyHtq3rthgo2mtYzRxPA35z4vvvhCREcKsEGa68h+Z0Pq9l4hXhIlxhJjd7oZ9l0R6UJCB6W+aoWSJbiRO1lLsKQ5BAe9VA18a9COVrwblIos8daSJLre+gotkHva6bJrgc0bK8HaVXzNnNFyYyA5JzdzT2y5n+Tos+k2++Fa0ZiMlIFqsIVwiEES7m/6zrIqnwMQigPordxC9dC9Q+peViwpVPiHEfGaSCnzsRAbKwfu4oV+l1agptlbBFQ==
  • Authentication-results: dkim=none (message not signed) header.d=none;dmarc=none action=none header.from=amd.com;
  • Cc: Stefano Stabellini <sstabellini@xxxxxxxxxx>, Julien Grall <julien@xxxxxxx>, Bertrand Marquis <bertrand.marquis@xxxxxxx>
  • Delivery-date: Wed, 18 Jun 2025 07:06:36 +0000
  • List-id: Xen developer discussion <xen-devel.lists.xenproject.org>


On 17/06/2025 19:13, Alejandro Vallejo wrote:
> The DT spec declares only two number types for a property: u32 and u64,
> as per Table 2.3 in Section 2.2.4. Remove unbounded loop and replace
> with a switch statement. Default to a size of 1 cell in the nonsensical
> size case, with a warning printed on the Xen console.
> 
> Suggested-by: Daniel P. Smith" <dpsmith@xxxxxxxxxxxxxxxxxxxx>
> Signed-off-by: Alejandro Vallejo <agarciav@xxxxxxx>
> ---
> v2:
>   * Added missing `break` on the `case 2:` branch and added 
> ASSERT_UNREACHABLE() to the deafult path
> ---
>  xen/include/xen/device_tree.h | 17 ++++++++++++++---
>  1 file changed, 14 insertions(+), 3 deletions(-)
> 
> diff --git a/xen/include/xen/device_tree.h b/xen/include/xen/device_tree.h
> index 75017e4266..2ec668b94a 100644
> --- a/xen/include/xen/device_tree.h
> +++ b/xen/include/xen/device_tree.h
> @@ -261,10 +261,21 @@ void intc_dt_preinit(void);
>  /* Helper to read a big number; size is in cells (not bytes) */
>  static inline u64 dt_read_number(const __be32 *cell, int size)
>  {
> -    u64 r = 0;
> +    u64 r = be32_to_cpu(*cell);
> +
> +    switch ( size )
> +    {
> +    case 1:
> +        break;
> +    case 2:
> +        r = (r << 32) | be32_to_cpu(cell[1]);
> +        break;
> +    default:
> +        // Nonsensical size. default to 1.
I wonder why there are so many examples of device trees in Linux with
#address-cells = <3>? Also, libfdt defines FDT_MAX_NCELLS as 4 with comment:
"maximum value for #address-cells and #size-cells" but I guess it follows the
IEE1275 standard and DT spec "is loosely related" to it.

~Michal




 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.