-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
snippets: xen_dom0: add support of rcar_spider_ca55
Add support of rcar_spider_ca55 to xen_dom0 snippet. Disable CONFIG_UART_INTERRUPT_DRIVEN for xen_dom0, because xen dom0 consoleio doesn't support interrupt driven mode. Signed-off-by: Mykola Kvach <mykola_kvach@epam.com>
- Loading branch information
1 parent
7abd4ee
commit 853e5d9
Showing
3 changed files
with
47 additions
and
0 deletions.
There are no files selected for viewing
43 changes: 43 additions & 0 deletions
43
snippets/xen_dom0/boards/rcar_spider_s4_r8a779f0_a55.overlay
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/* | ||
* Copyright (C) 2024 EPAM Systems. | ||
* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
/delete-node/ &ram; | ||
/delete-node/ &hscif0; | ||
|
||
/ { | ||
/* | ||
* This node may differs on different setups, please check | ||
* following line in Xen boot log to set it right: | ||
* (XEN) Grant table range: 0x00000078080000-0x000000780c0000 | ||
* Also, add extended region 1: | ||
* (XEN) Extended region 1: 0x40000000->0x47e00000 | ||
* | ||
* Xen passes actual values for setup in domain device tree, but Zephyr | ||
* is not capable to parse and handle it in runtime. | ||
*/ | ||
hypervisor: hypervisor@78080000 { | ||
compatible = "xen,xen"; | ||
reg = <0x0 0x78080000 0x0 0x40000 0x0 0x40000000 0x0 0x7e00000>; | ||
interrupts = <GIC_PPI 0x0 IRQ_TYPE_EDGE IRQ_DEFAULT_PRIORITY>; | ||
interrupt-parent = <&gic>; | ||
status = "okay"; | ||
}; | ||
|
||
/* | ||
* This node may differs on different setups, because Xen picks | ||
* region for Domain-0 for every specific configuration. You can | ||
* start Xen for your platform and check following log: | ||
* (XEN) Allocating 1:1 mappings for dom0: | ||
* (XEN) BANK[0] 0x00000080000000-0x00000090000000 (256MB) | ||
* | ||
* Xen passes actual values for setup in domain device tree, but Zephyr | ||
* is not capable to parse and handle it in runtime. | ||
*/ | ||
ram: memory@80000000 { | ||
device_type = "mmio-sram"; | ||
reg = <0x00 0x80000000 0x00 DT_SIZE_M(256)>; | ||
}; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
CONFIG_XEN_DOM0=y | ||
CONFIG_UART_INTERRUPT_DRIVEN=n |