From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id A69D343165; Tue, 13 Aug 2024 09:57:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1723543038; cv=none; b=NxPZEngqavnyMP9OdMgB6WV0a7bLvH/U2Z2eW2zAcj6C/WBM9BD0syn1ZjKEHf36xzDJnsYGeDzqTYH+vukygHSAs+eVLjkiVaKXYwH3bCO3xLK/Hl17sAq86b73HA5zDA2tPr9WvPamFNCuRMQ7joJUbWm3qWRmeAfOcbtf2DQ= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1723543038; c=relaxed/simple; bh=ZNnGkI0dGL0wSwGojEl+IOMHCQh5GYTMnNTRrFyWYgc=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=RucKvOmMmVa1l3cJzH9RKeJrjiEQXhu9FaQPA99l4/tFgQU3JCJ0IZRlguF7jL1ZXWJwoWJrKyHAVCy2GzyfXvjjyRSQbPsHoOjnYspTizGj+5mxjoYnU3LxKKylX0CTdUTiXEFK52MbMwqgMmQJu/HpwOJR3AZSGNwuV45FU5k= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b=OVrXI/+E; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="OVrXI/+E" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 89931C4AF09; Tue, 13 Aug 2024 09:57:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1723543038; bh=ZNnGkI0dGL0wSwGojEl+IOMHCQh5GYTMnNTRrFyWYgc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=OVrXI/+E5X7qnh5hjA1pLVnFhqAnq+Td7ISZbwYxD87apof8YTewNMVs3Tbny5gZD hCO38pZYN4HPQruS2mioTLiUMsEkR4TV6dGUiN4Gb7Rq9bAgjb283FF85PHyOEDvPC THCEPndPQtiUAYm9R+OPcGOx7ig7CMOXxePXBOEI= Date: Tue, 13 Aug 2024 11:57:15 +0200 From: Greg Kroah-Hartman To: Herve Codina Cc: Geert Uytterhoeven , Andy Shevchenko , Simon Horman , Lee Jones , Arnd Bergmann , Derek Kiernan , Dragan Cvetic , Bjorn Helgaas , Philipp Zabel , Lars Povlsen , Steen Hegelund , Daniel Machon , UNGLinuxDriver@microchip.com, Rob Herring , Saravana Kannan , "David S. Miller" , Eric Dumazet , Jakub Kicinski , Paolo Abeni , Horatiu Vultur , Andrew Lunn , linux-kernel@vger.kernel.org, netdev@vger.kernel.org, linux-pci@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, Allan Nielsen , Luca Ceresoli , Thomas Petazzoni Subject: Re: [PATCH v5 1/8] misc: Add support for LAN966x PCI device Message-ID: <2024081356-mutable-everyday-6f9d@gregkh> References: <20240808154658.247873-1-herve.codina@bootlin.com> <20240808154658.247873-2-herve.codina@bootlin.com> Precedence: bulk X-Mailing-List: linux-pci@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20240808154658.247873-2-herve.codina@bootlin.com> On Thu, Aug 08, 2024 at 05:46:50PM +0200, Herve Codina wrote: > Add a PCI driver that handles the LAN966x PCI device using a device-tree > overlay. This overlay is applied to the PCI device DT node and allows to > describe components that are present in the device. > > The memory from the device-tree is remapped to the BAR memory thanks to > "ranges" properties computed at runtime by the PCI core during the PCI > enumeration. > > The PCI device itself acts as an interrupt controller and is used as the > parent of the internal LAN966x interrupt controller to route the > interrupts to the assigned PCI INTx interrupt. > > Signed-off-by: Herve Codina misc device is fine, even if it's not really one :) Acked-by: Greg Kroah-Hartman