You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.2 KiB
41 lines
1.2 KiB
/* |
|
* Copyright (C) 2023 EPAM Systems. |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
/delete-node/ &ram; |
|
/delete-node/ &scif2; |
|
|
|
/ { |
|
/* |
|
* This node may differs on different setups, please check |
|
* following line in Xen boot log to set it right: |
|
* (XEN) Grant table range: 0x00000088080000-0x000000880c0000 |
|
* |
|
* Xen passes actual values for setup in domain device tree, but Zephyr |
|
* is not capable to parse and handle it in runtime. |
|
*/ |
|
hypervisor: hypervisor@88080000 { |
|
compatible = "xen,xen"; |
|
reg = <0x0 0x88080000 0x0 0x40000>; |
|
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] 0x00000060000000-0x00000070000000 (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@60000000 { |
|
device_type = "mmio-sram"; |
|
reg = <0x00 0x60000000 0x00 DT_SIZE_M(256)>; |
|
}; |
|
};
|
|
|