lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite for Android: free password hash cracker in your pocket
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:	Thu, 31 Jul 2014 11:00:01 -0700
From:	Florian Fainelli <f.fainelli@...il.com>
To:	"devicetree@...r.kernel.org" <devicetree@...r.kernel.org>
Cc:	Grant Likely <grant.likely@...aro.org>,
	Rob Herring <robh+dt@...nel.org>,
	Brian Norris <computersforpeace@...il.com>,
	"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
	Florian Fainelli <f.fainelli@...il.com>
Subject: Re: [PATCH] of/irq: lookup 'interrupts-extended' property first

2014-06-19 16:33 GMT-07:00 Florian Fainelli <f.fainelli@...il.com>:
> In case the Device Tree blob passed by the boot agent supplies both an
> 'interrupts-extended' and an 'interrupts' property in order to allow for
> older kernels to be usable, prefer the new-style 'interrupts-extended'
> property which convey a lot more information.
>
> This allows us to have bootloaders willingly maintaining backwards
> compatibility with older kernels without entirely deprecating the
> 'interrupts' property (although that is a clear violation of the binding
> specified at
> Documentation/devicetree/bindings/interrupt-controller/interrupts.txt)

Any comments on this? Brian suggested that I update
interrupt-controller/interrupts.txt to specify the look up ordering
change as well.

Thanks!

>
> Signed-off-by: Florian Fainelli <f.fainelli@...il.com>
> ---
>  drivers/of/irq.c | 17 +++++++++--------
>  1 file changed, 9 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/of/irq.c b/drivers/of/irq.c
> index 3e06a699352d..1af3be2396db 100644
> --- a/drivers/of/irq.c
> +++ b/drivers/of/irq.c
> @@ -301,16 +301,17 @@ int of_irq_parse_one(struct device_node *device, int index, struct of_phandle_ar
>         /* Get the reg property (if any) */
>         addr = of_get_property(device, "reg", NULL);
>
> +       /* Try the new-style interrupts-extended */
> +       res = of_parse_phandle_with_args(device, "interrupts-extended",
> +                                       "#interrupt-cells", index, out_irq);
> +       if (!res)
> +               return of_irq_parse_raw(addr, out_irq);
> +
>         /* Get the interrupts property */
>         intspec = of_get_property(device, "interrupts", &intlen);
> -       if (intspec == NULL) {
> -               /* Try the new-style interrupts-extended */
> -               res = of_parse_phandle_with_args(device, "interrupts-extended",
> -                                               "#interrupt-cells", index, out_irq);
> -               if (res)
> -                       return -EINVAL;
> -               return of_irq_parse_raw(addr, out_irq);
> -       }
> +       if (intspec == NULL)
> +               return -EINVAL;
> +
>         intlen /= sizeof(*intspec);
>
>         pr_debug(" intspec=%d intlen=%d\n", be32_to_cpup(intspec), intlen);
> --
> 1.9.1
>



-- 
Florian
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ