Browse Source
In trying to use the same DTS for the FVP and FPGA subvariants we need to keep track of what is different. Move the FVP RoS, which is different to the FPGA's, to reduce the number of ifdefs and make FVP-only changes easier. Signed-off-by: Boyan Karatotev <boyan.karatotev@arm.com> Change-Id: Ib7999d3e39de55ab4a30e68dd81f95120be15a8cpull/2000/merge
Boyan Karatotev
12 months ago
2 changed files with 41 additions and 30 deletions
@ -0,0 +1,38 @@ |
|||
/* |
|||
* Copyright (c) 2023-2024, Arm Limited. All rights reserved. |
|||
* |
|||
* SPDX-License-Identifier: BSD-3-Clause |
|||
*/ |
|||
|
|||
/ { |
|||
rtc@1c170000 { |
|||
compatible = "arm,pl031", "arm,primecell"; |
|||
reg = <0x0 0x1C170000 0x0 0x1000>; |
|||
interrupts = <GIC_SPI 100 IRQ_TYPE_LEVEL_HIGH>; |
|||
clocks = <&soc_refclk>; |
|||
clock-names = "apb_pclk"; |
|||
}; |
|||
|
|||
kmi@1c060000 { |
|||
compatible = "arm,pl050", "arm,primecell"; |
|||
reg = <0x0 0x001c060000 0x0 0x1000>; |
|||
interrupts = <GIC_SPI 197 IRQ_TYPE_LEVEL_HIGH>; |
|||
clocks = <&bp_clock24mhz>, <&bp_clock24mhz>; |
|||
clock-names = "KMIREFCLK", "apb_pclk"; |
|||
}; |
|||
|
|||
kmi@1c070000 { |
|||
compatible = "arm,pl050", "arm,primecell"; |
|||
reg = <0x0 0x001c070000 0x0 0x1000>; |
|||
interrupts = <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>; |
|||
clocks = <&bp_clock24mhz>, <&bp_clock24mhz>; |
|||
clock-names = "KMIREFCLK", "apb_pclk"; |
|||
}; |
|||
|
|||
virtio_block@1c130000 { |
|||
compatible = "virtio,mmio"; |
|||
reg = <0x0 0x1c130000 0x0 0x200>; |
|||
/* spec lists this wrong */ |
|||
interrupts = <GIC_SPI 204 IRQ_TYPE_LEVEL_HIGH>; |
|||
}; |
|||
}; |
Loading…
Reference in new issue