Received: by 2002:a05:6a10:8c0a:0:0:0:0 with SMTP id go10csp5137308pxb; Mon, 15 Feb 2021 10:25:20 -0800 (PST) X-Google-Smtp-Source: ABdhPJzKaZuGYstPNvKx+Ue1UEAcDDQPUECydgfGJMdiGGNvRo3qKv1raS0efDVF62cWfkhkUird X-Received: by 2002:a17:906:2e43:: with SMTP id r3mr8673098eji.279.1613413520362; Mon, 15 Feb 2021 10:25:20 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1613413520; cv=none; d=google.com; s=arc-20160816; b=fWp2isB3r5MWxXB06AQZKmqyXAGDqDTCdT4NLgdvZoi7utEVzX+5b5Clr/6+Vt6hdJ /+StiWl9EB67zoNt4iOE4zjQe3mUZaSA4UWInbUXIBDBEjPv/LXvjsABRRiJDlHHN98H FwXUnNjURQbiG0m6VTFcXVZQ9mvii1hdtNrNlonB3cBVZy3jmF+YvfhHdM4zCFRr3Bag 5v2OK8mXcJkKbzdM99tFQIgSA4422Oz3SArTkXWB9dCf1LmdvRdzBZGSA5WgVEz8HVJ7 PANbJhp2RH+3fCpz/WwgIw0p+AwRl4wqZTjzeHmHfZ1RKOfc6Lguf+XXv7VbrnyWYtT8 CUbg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:in-reply-to:content-disposition:mime-version :references:message-id:subject:cc:to:from:date; bh=B7U9kSPLBH2SAtgeziMJ4DtfmcAud8P+RWC3Mi0aUn4=; b=0lh300BjNLrk0RhbKiaOBayw+ilGkF3aGbNL+Xo9lK72uUdGrfeCGf0A+q79CFLBLi 4dCG8EgTenG0OEZA31uy/+CFnPi+Q0I4es/QWSyKZrkw4Yv9PRFntaxe0jQIpoaxQCGf V2MPqJ5mImS2XBMTIOP94LFwgSUD1uDB/A6LtR+w4D1R40cQpq6Pyy8sBy7rv8xt67/9 cbSNxDZeXJO4jRhUl1nGlcy3znqRMky/7ch7JNBSLsC8m6Cla0tgZ8N6MpZMN/zo8A+R RB0xH55vZt7VnqUb5e9aVbgK+m2zduTb59drbdm2zKAvalIwkKA5u7gw4kXmirqIvsgI 7Adw== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [23.128.96.18]) by mx.google.com with ESMTP id dk7si13701809ejb.570.2021.02.15.10.24.54; Mon, 15 Feb 2021 10:25:20 -0800 (PST) Received-SPF: pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) client-ip=23.128.96.18; Authentication-Results: mx.google.com; spf=pass (google.com: domain of linux-kernel-owner@vger.kernel.org designates 23.128.96.18 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230031AbhBOSY0 (ORCPT + 99 others); Mon, 15 Feb 2021 13:24:26 -0500 Received: from muru.com ([72.249.23.125]:33832 "EHLO muru.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229954AbhBOSYZ (ORCPT ); Mon, 15 Feb 2021 13:24:25 -0500 Received: from atomide.com (localhost [127.0.0.1]) by muru.com (Postfix) with ESMTPS id 63CEA80CE; Mon, 15 Feb 2021 18:24:04 +0000 (UTC) Date: Mon, 15 Feb 2021 20:23:38 +0200 From: Tony Lindgren To: Hector Martin Cc: linux-arm-kernel@lists.infradead.org, Marc Zyngier , Rob Herring , Arnd Bergmann , Olof Johansson , Krzysztof Kozlowski , Mark Kettenis , Mohamed Mediouni , Stan Skowronek , Alexander Graf , Will Deacon , Linus Walleij , Mark Rutland , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v2 06/25] arm64: arch_timer: implement support for interrupt-names Message-ID: References: <20210215121713.57687-1-marcan@marcan.st> <20210215121713.57687-7-marcan@marcan.st> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20210215121713.57687-7-marcan@marcan.st> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Hector Martin [210215 12:18]: > This allows the devicetree to correctly represent the available set of > timers, which varies from device to device, without the need for fake > dummy interrupts for unavailable slots. I like the idea of using interrupt-names property for mapping timers :) Similar approach might help other SoCs too. And clocksources never really had similar issues. With Marc's comments addressed, please feel free to add: Reviewed-by: Tony Lindgren