mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
synced 2025-09-01 15:14:52 +00:00

RaspberryPi RP1 is a multi function PCI endpoint device that exposes several subperipherals via PCI BAR. Add a dtb overlay that will be compiled into a binary blob and linked in the RP1 driver. This overlay offers just minimal support to represent the RP1 device itself, the sub-peripherals will be added by future patches. Signed-off-by: Andrea della Porta <andrea.porta@suse.com> Reviewed-by: Florian Fainelli <florian.fainelli@broadcom.com> Link: https://lore.kernel.org/r/20250529135052.28398-6-andrea.porta@suse.com Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
15 lines
290 B
Plaintext
15 lines
290 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0 OR MIT)
|
|
|
|
rp1_nexus {
|
|
compatible = "pci1de4,1";
|
|
#address-cells = <3>;
|
|
#size-cells = <2>;
|
|
ranges = <0x01 0x00 0x00000000
|
|
0x02000000 0x00 0x00000000
|
|
0x0 0x400000>;
|
|
interrupt-controller;
|
|
#interrupt-cells = <2>;
|
|
|
|
#include "rp1-common.dtsi"
|
|
};
|