From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 70577C433FE for ; Wed, 6 Apr 2022 16:36:48 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S237966AbiDFQiq (ORCPT ); Wed, 6 Apr 2022 12:38:46 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:41120 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S239021AbiDFQid (ORCPT ); Wed, 6 Apr 2022 12:38:33 -0400 Received: from mail-oa1-f45.google.com (mail-oa1-f45.google.com [209.85.160.45]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 4390230F0E7; Wed, 6 Apr 2022 06:57:38 -0700 (PDT) Received: by mail-oa1-f45.google.com with SMTP id 586e51a60fabf-df22f50e0cso2977270fac.3; Wed, 06 Apr 2022 06:57:38 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to; bh=IoTrH399V4w8zNS3hx92QeecL6aapQBwIZRVFzEFkyA=; b=AydhoGsNhOvR4qLXcmo7wICq+phpgbjf0Q0ePxytNG8olancLb3uKb+bWozUGzKkgN nRztUoqOIPks9vpQyUZMXQaUMzCJvPGV+rVpzlNGr9vlj7TJSSmNZxMRN1s72KhwtXf+ 6qw8nl2DIsPqkp+wOhH2TEpmQ08V0IMj9xViNzdVd6GpW+EyzjYJCAPpMJcx5kyozDZc CLaDnaMYcuOa5axlWCp/P2osbxAPt2BsDoAwTmZ8b4wZaEvTZi7ozfyx9mxG9LWmvFVp PyW7SICCjoqU71MQNdHZ1stDFxSsmcIs00hR+A/op8HQwOn1t9hzHrl3viOUT87Sptis v5rw== X-Gm-Message-State: AOAM5329/G1rcUEBlq5M+rP4da0YN4hXhkW9RJtlrwtP5yghDG2BXQpq MkmquYTfvx4p8u3jZ6gdiA== X-Google-Smtp-Source: ABdhPJyVkLh7kt44PDdY781513MiisiGrnzUUrMoGmsbykheJJX4LewN7PtkNvDUojOPiN2cC9nuCg== X-Received: by 2002:a05:6870:51cc:b0:e1:e6ee:448f with SMTP id b12-20020a05687051cc00b000e1e6ee448fmr3880243oaj.136.1649253457860; Wed, 06 Apr 2022 06:57:37 -0700 (PDT) Received: from robh.at.kernel.org (66-90-144-107.dyn.grandenetworks.net. [66.90.144.107]) by smtp.gmail.com with ESMTPSA id el17-20020a056870f69100b000de9672ac3csm6478072oab.52.2022.04.06.06.57.37 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 06 Apr 2022 06:57:37 -0700 (PDT) Received: (nullmailer pid 2155527 invoked by uid 1000); Wed, 06 Apr 2022 13:57:35 -0000 Date: Wed, 6 Apr 2022 08:57:35 -0500 From: Rob Herring To: Lad Prabhakar Cc: Marc Zyngier , Frank Rowand , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Prabhakar , linux-renesas-soc@vger.kernel.org, Biju Das Subject: Re: [RFC PATCH] of/platform: Drop static setup of IRQ resource from DT core Message-ID: References: <20220316200633.28974-1-prabhakar.mahadev-lad.rj@bp.renesas.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20220316200633.28974-1-prabhakar.mahadev-lad.rj@bp.renesas.com> Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org On Wed, Mar 16, 2022 at 08:06:33PM +0000, Lad Prabhakar wrote: > Now that all the DT drivers have switched to platform_get_irq() we can now > safely drop the static setup of IRQ resource from DT core code. > > With the above change hierarchical setup of irq domains is no longer > bypassed and thus allowing hierarchical interrupt domains to describe > interrupts using "interrupts" DT property. > > Signed-off-by: Lad Prabhakar > --- > Hi All, > > Sending this as RFC as couple of more drivers need to hit -rc yet with > the platform_get_irq() change while that is in progress I wanted to get > some feedback on this patch. I've applied this now and it is in today's linux-next. Keep an eye out for any regression reports. There's one for i.MX8 in kernel-ci, but I don't think it is related. Rob