mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
a12c90a28d
Add missing PCI range for translating DRAM to bus addresses. This fixes e.g. PCI NIC interface and allows network to work in QEMU. Signed-off-by: Marek Vasut <marek.vasut+renesas@gmail.com> Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
27 lines
630 B
Text
27 lines
630 B
Text
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* Device Tree Source for the SH7751 R2Dplus
|
|
*
|
|
* Copyright (C) 2019 Marek Vasut <marek.vasut@gmail.com>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
/ {
|
|
model = "R2D";
|
|
compatible = "renesas,r2d", "renesas,sh7751";
|
|
|
|
pci@fe200000 {
|
|
compatible = "renesas,pci-sh7751";
|
|
device_type = "pci";
|
|
reg = <0 0xfe200000 0 0x1000>;
|
|
status = "okay";
|
|
|
|
bus-range = <0 0>;
|
|
#address-cells = <3>;
|
|
#size-cells = <2>;
|
|
#interrupt-cells = <1>;
|
|
ranges = <0x01000000 0 0xfe240000 0 0xfe240000 0 0x00040000
|
|
0x02000000 0 0xfd000000 0 0xfd000000 0 0x01000000
|
|
0x42000000 0 0x0c000000 0 0x8c000000 0 0x04000000>;
|
|
};
|
|
};
|