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 A5F43C77B75 for ; Tue, 18 Apr 2023 08:01:17 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S231349AbjDRIBP (ORCPT ); Tue, 18 Apr 2023 04:01:15 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:40396 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231317AbjDRIBE (ORCPT ); Tue, 18 Apr 2023 04:01:04 -0400 Received: from madras.collabora.co.uk (madras.collabora.co.uk [46.235.227.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EEA55448C; Tue, 18 Apr 2023 01:01:02 -0700 (PDT) Received: from [IPV6:2001:b07:2ed:14ed:c5f8:7372:f042:90a2] (unknown [IPv6:2001:b07:2ed:14ed:c5f8:7372:f042:90a2]) (using TLSv1.3 with cipher TLS_AES_128_GCM_SHA256 (128/128 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: kholk11) by madras.collabora.co.uk (Postfix) with ESMTPSA id 742AE66031F1; Tue, 18 Apr 2023 09:01:00 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1681804861; bh=P44nwNTaTh4la/amu8IeDe814GXL+1rjHBN5zd5Piwk=; h=Date:Subject:To:Cc:References:From:In-Reply-To:From; b=Q62tPvH7xp+V1Kgdk2oTay47f1wbeVxcbCVGuUWM2rIvKQm8n4pC5+k2ONaLAFDPO jklV4hKn7FBsFmIzUurIV10TMSbUlCXw0lkMGN21ButMt9Dfzdykiq5H4V+qu66iWq 81taUlhzMrI+fiL9jteTkYVknmiYY/jB0toqvTkVEnFbsZkCcXV9QtntYsWSBIAIkQ hVfG7MX4CcmHzKmcIn5pfldKoLmebDjwjwfgnw5ofVuDsrUjIshmfy0bvloO1Ez6Y3 4wKz9FngXsWVGnp0vX31xDj+ea4hsFD41Z2B1W82Utnp6DTORpoG7D8Nsu0DO3TqbF ic1Poall/QVaw== Message-ID: <393e77b5-38f4-98ef-9cc8-003436d58ddc@collabora.com> Date: Tue, 18 Apr 2023 10:00:57 +0200 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.9.1 Subject: Re: [PATCH v3 1/2] irqchip/gic-v3: Add Rockchip 3588001 errata workaround To: Sebastian Reichel , Marc Zyngier , Heiko Stuebner Cc: Rob Herring , Krzysztof Kozlowski , Thomas Gleixner , Peng Fan , Robin Murphy , Peter Geis , XiaoDong Huang , Kever Yang , linux-rockchip@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, kernel@collabora.com References: <20230417214035.101190-1-sebastian.reichel@collabora.com> <20230417214035.101190-2-sebastian.reichel@collabora.com> Content-Language: en-US From: AngeloGioacchino Del Regno In-Reply-To: <20230417214035.101190-2-sebastian.reichel@collabora.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Il 17/04/23 23:40, Sebastian Reichel ha scritto: > Rockchip RK3588/RK3588s GIC600 integration does not support the > sharability feature. Rockchip assigned Errata ID #3588001 for this > issue. > > Note, that the 0x0201743b ID is not Rockchip specific and thus > there is an extra of_machine_is_compatible() check. > > The flag are named BROKEN_SHAREABILITY to be vendor agnostic, > since apparently similar integration design errors exist in other > platforms and they can reuse the same flag. > > Co-developed-by: XiaoDong Huang > Signed-off-by: XiaoDong Huang > Co-developed-by: Kever Yang > Signed-off-by: Kever Yang > Co-developed-by: Lucas Tanure > Signed-off-by: Lucas Tanure > Signed-off-by: Sebastian Reichel Reviewed-by: AngeloGioacchino Del Regno