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 3C70821126D; Tue, 10 Dec 2024 22:54:03 +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=1733871243; cv=none; b=ciXq3MyMFwglQ0fD7O37MC8+AVl1kzW+5YodwpK0rmli7J0BQ6IH01JGzqkNVxyNoQScVpdSgRqZ8TX1a1CL6BQj3tPjw55IKkV1tOxCGFxIGwMgxRvT42CDv87uE9X6k1q7F6NNh5QmJ3vjo8CMOhWiRJeVydo+rSQNN4OvY9E= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733871243; c=relaxed/simple; bh=xHboJ6Nj+jUBjuysVSh5kzHiNcpv6miOBLy03WABifE=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=gWM2aqIKQ6FpCUQZlaKCPrQl8Bhvnxv1DhHsUlGJw6kQCc9tvzDTCcBqdAck6yWoT1CuXnVK+dJLlOwkfjLst4fUILk2zCTlDMwz0IQcZ+SaGiTx1C4GRl10kat7oaw18AWWELaFthvsb5kz/2DKI+b/4oNHSEvYiANPN0Xo+7w= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=F6RNkTpo; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="F6RNkTpo" Received: by smtp.kernel.org (Postfix) with ESMTPSA id DD594C4CEDE; Tue, 10 Dec 2024 22:54:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1733871243; bh=xHboJ6Nj+jUBjuysVSh5kzHiNcpv6miOBLy03WABifE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=F6RNkTporGLhP919FrAvtVaRdlwD6OHKF9LVyCWvSPhS6/L86mghmTp3sWhxV6wNb QlFBLBsCx5p3BCADTSSJlGiZoVGQUxg0BvJZURibCzW7PEsrxr547c8BfR2mdkLGk9 jxaD+B41ZsnY4nGwKXLpOJSOokz1SfQvjul3MYuG+BmUdjAfMYOfMCzqvxr7mfk3gD RfUh0l8GKGMp71ka3TfjDrVw0L/2n83cPMNl5jULVNenO4kzoUP92Oqil4RgXC7Abq 10g9W6QDZj1WACB3tkQ++E5BONJ7jF+yNA9r5RaNIdkhA5tl3jpAH7Uvt55OeEaQRl lMW6sHikMq9hg== Date: Tue, 10 Dec 2024 16:54:01 -0600 From: "Rob Herring (Arm)" To: Andrea della Porta Cc: Krzysztof Wilczynski , Lorenzo Pieralisi , devicetree@vger.kernel.org, Saravana Kannan , Thomas Petazzoni , linux-arm-kernel@lists.infradead.org, Bartosz Golaszewski , Conor Dooley , Manivannan Sadhasivam , linux-pci@vger.kernel.org, linux-clk@vger.kernel.org, Stephen Boyd , Michael Turquette , linux-kernel@vger.kernel.org, Stefan Wahren , Catalin Marinas , linux-rpi-kernel@lists.infradead.org, Luca Ceresoli , Andrew Lunn , Greg Kroah-Hartman , Masahiro Yamada , Dragan Cvetic , Linus Walleij , Derek Kiernan , linux-gpio@vger.kernel.org, Broadcom internal kernel review list , Arnd Bergmann , Florian Fainelli , Krzysztof Kozlowski , Herve Codina , Will Deacon , Bjorn Helgaas Subject: Re: [PATCH v5 03/10] dt-bindings: pci: Add common schema for devices accessible through PCI BARs Message-ID: <173387124038.751229.17185539657512592303.robh@kernel.org> References: <92fe1c6eb3ae1e7e7c151423568be2d13f19b55a.1733136811.git.andrea.porta@suse.com> Precedence: bulk X-Mailing-List: devicetree@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: <92fe1c6eb3ae1e7e7c151423568be2d13f19b55a.1733136811.git.andrea.porta@suse.com> On Mon, 02 Dec 2024 12:19:27 +0100, Andrea della Porta wrote: > Common YAML schema for devices that exports internal peripherals through > PCI BARs. The BARs are exposed as simple-buses through which the > peripherals can be accessed. > > This is not intended to be used as a standalone binding, but should be > included by device specific bindings. > > Signed-off-by: Andrea della Porta > --- > .../devicetree/bindings/pci/pci-ep-bus.yaml | 58 +++++++++++++++++++ > MAINTAINERS | 1 + > 2 files changed, 59 insertions(+) > create mode 100644 Documentation/devicetree/bindings/pci/pci-ep-bus.yaml > Reviewed-by: Rob Herring (Arm)