mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 13:44:29 +00:00
95f7103f94
Given now nsim_hs38 configuration is usable on QEMU and in QEMU we have Virtio working perfectly fine the next logical step is to add support of supported & known to work net & bkl to this config. Signed-off-by: Alexey Brodkin <abrodkin@synopsys.com>
57 lines
997 B
Text
57 lines
997 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright (C) 2015-2016, 2020 Synopsys, Inc. (www.synopsys.com)
|
|
*/
|
|
/dts-v1/;
|
|
|
|
#include "skeleton.dtsi"
|
|
|
|
/ {
|
|
model = "snps,nsim";
|
|
|
|
aliases {
|
|
console = &uart0;
|
|
};
|
|
|
|
cpu_card {
|
|
core_clk: core_clk {
|
|
#clock-cells = <0>;
|
|
compatible = "fixed-clock";
|
|
clock-frequency = <70000000>;
|
|
u-boot,dm-pre-reloc;
|
|
};
|
|
};
|
|
|
|
uart0: serial@f0000000 {
|
|
compatible = "snps,dw-apb-uart";
|
|
reg = <0xf0000000 0x1000>;
|
|
reg-shift = <2>;
|
|
reg-io-width = <4>;
|
|
clock-frequency = <70000000>;
|
|
};
|
|
|
|
virtio0: virtio@f0100000 {
|
|
compatible = "virtio,mmio";
|
|
reg = <0xf0100000 0x2000>;
|
|
};
|
|
|
|
virtio1: virtio@f0102000 {
|
|
compatible = "virtio,mmio";
|
|
reg = <0xf0102000 0x2000>;
|
|
};
|
|
|
|
virtio2: virtio@f0104000 {
|
|
compatible = "virtio,mmio";
|
|
reg = <0xf0104000 0x2000>;
|
|
};
|
|
|
|
virtio3: virtio@f0106000 {
|
|
compatible = "virtio,mmio";
|
|
reg = <0xf0106000 0x2000>;
|
|
};
|
|
|
|
virtio4: virtio@f0108000 {
|
|
compatible = "virtio,mmio";
|
|
reg = <0xf0108000 0x2000>;
|
|
};
|
|
};
|