mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-07-04 02:56:52 +00:00
doc: adding guide to launch 2 Linux UOSes using SDC2 scenario
Tracked-On: #3462 Signed-off-by: Tonny Tzeng <tonny.tzeng@intel.com> Reviewed-by: Fuzhong Liu <fuzhong.liu@intel.com> Reviewed-by: Nanlin Xie <nanlin.xie@intel.com>
This commit is contained in:
parent
b5140fddb3
commit
da744ac35f
BIN
doc/tutorials/images/sdc2-defconfig.png
Normal file
BIN
doc/tutorials/images/sdc2-defconfig.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 94 KiB |
BIN
doc/tutorials/images/sdc2-launch-2-laag.png
Normal file
BIN
doc/tutorials/images/sdc2-launch-2-laag.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 956 KiB |
BIN
doc/tutorials/images/sdc2-save-mini-config.png
Normal file
BIN
doc/tutorials/images/sdc2-save-mini-config.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 90 KiB |
BIN
doc/tutorials/images/sdc2-selected.png
Normal file
BIN
doc/tutorials/images/sdc2-selected.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 47 KiB |
162
doc/tutorials/using_sdc2_mode_on_nuc.rst
Normal file
162
doc/tutorials/using_sdc2_mode_on_nuc.rst
Normal file
@ -0,0 +1,162 @@
|
|||||||
|
.. _using_sdc2_mode_on_nuc:
|
||||||
|
|
||||||
|
Launch Two User VMs on NUC using SDC2 Scenario
|
||||||
|
##############################################
|
||||||
|
|
||||||
|
ACRN hypervisor supports new SDC2 (Software Defined Cockpit) scenario
|
||||||
|
since the tag ``acrn-2019w29.5-140000p``. In SDC2 scenario,
|
||||||
|
up to three User VMs (e.g. Clear Linux + Ubuntu) can be launched from
|
||||||
|
the Service VM. This tutorial provides step by step instructions on how
|
||||||
|
to enable the ACRN hypervisor SDC2 scenario on Intel NUC to activate
|
||||||
|
two post-launched VMs running Linux based guest OSes. The same process
|
||||||
|
can be applied to launch the third Linux VM as well.
|
||||||
|
|
||||||
|
ACRN Service VM Setup
|
||||||
|
*********************
|
||||||
|
|
||||||
|
Refer to the steps in :ref:`getting-started-apl-nuc` to set up ACRN on
|
||||||
|
Intel NUC. The target device must be capable of launching a Clear Linux User VM
|
||||||
|
as a starting point.
|
||||||
|
|
||||||
|
Re-build ACRN UEFI Executable
|
||||||
|
*****************************
|
||||||
|
|
||||||
|
The ACRN prebuilt UEFI executable ``acrn.efi`` is compiled for SDC scenario
|
||||||
|
by default, in which only one post-launched VM is supported.
|
||||||
|
To activate more than one post-launched VM, you need to enable the SDC2
|
||||||
|
scenario and rebuild the UEFI executable with the following steps:
|
||||||
|
|
||||||
|
#. Refer to :ref:`getting-started-building` to set up the development environment
|
||||||
|
for re-compiling the UEFI executable from ACRN source tree.
|
||||||
|
|
||||||
|
#. Enter the ``hypervisor`` directory under the ACRN source tree to
|
||||||
|
reconfigure the ACRN hypervisor for SDC2 scenario. The following example
|
||||||
|
picks up the configurations for ``kbl-nuc-i7`` board as a template,
|
||||||
|
you can specify other board type which is closed to your target system.
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
$ cd hypervisor/
|
||||||
|
$ make defconfig BOARD=kbl-nuc-i7
|
||||||
|
$ make menuconfig
|
||||||
|
|
||||||
|
.. figure:: images/sdc2-defconfig.png
|
||||||
|
:align: center
|
||||||
|
:width: 400px
|
||||||
|
:name: Reconfigure the ACRN hypervisor
|
||||||
|
|
||||||
|
#. Select ``Software Defined Cockpit 2`` option for the **ACRN Scenario** configuration:
|
||||||
|
|
||||||
|
.. figure:: images/sdc2-selected.png
|
||||||
|
:align: center
|
||||||
|
:width: 400px
|
||||||
|
:name: Select the SDC2 scenario option
|
||||||
|
|
||||||
|
#. Press :kbd:`D` to save the minimum configurations to a default file ``defconfig``,
|
||||||
|
then press :kbd:`Q` to quit the menuconfig script.
|
||||||
|
|
||||||
|
.. figure:: images/sdc2-save-mini-config.png
|
||||||
|
:align: center
|
||||||
|
:width: 400px
|
||||||
|
:name: Save the customized configurations
|
||||||
|
|
||||||
|
#. Create a new BOARD configuration (say ``mydevice``) with the SDC2
|
||||||
|
scenario enabled. Replace the following ``kbl-nuc-i7`` soft linked target
|
||||||
|
by the board type you specified in the previous step:
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
$ cp defconfig arch/x86/configs/mydevice.config
|
||||||
|
$ ln -s kbl-nuc-i7 arch/x86/configs/mydevice
|
||||||
|
|
||||||
|
#. Go to the root of ACRN source tree to build the ACRN UEFI executable
|
||||||
|
with the customized configurations:
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
$ cd ..
|
||||||
|
$ make FIRMWARE=uefi BOARD=mydevice
|
||||||
|
|
||||||
|
#. Copy the generated ``acrn.efi`` executable to the ESP partition.
|
||||||
|
You may need to mount the ESP partition if it's not mounted.
|
||||||
|
|
||||||
|
.. code-block:: bash
|
||||||
|
|
||||||
|
$ sudo mount /dev/sda1 /boot
|
||||||
|
$ sudo cp build/hypervisor/acrn.efi /boot/EFI/acrn/acrn.efi
|
||||||
|
|
||||||
|
#. Reboot the ACRN hypervisor and the Service VM.
|
||||||
|
|
||||||
|
Launch User VMs with predefined UUIDs
|
||||||
|
*************************************
|
||||||
|
|
||||||
|
In SDC2 scenario, VMs launched by the ACRN device model ``acrn-dm``
|
||||||
|
must match the following UUIDs. You will have to add the ``-U`` parameter
|
||||||
|
to the ``launch_uos.sh`` script, in order to attach to specific VM through
|
||||||
|
``acrn-dm``.
|
||||||
|
|
||||||
|
* d2795438-25d6-11e8-864e-cb7a18b34643
|
||||||
|
* 495ae2e5-2603-4d64-af76-d4bc5a8ec0e5
|
||||||
|
* 38158821-5208-4005-b72a-8a609e4190d0
|
||||||
|
|
||||||
|
For example, the following code snippet is used to launch the VM1:
|
||||||
|
|
||||||
|
.. code-block:: none
|
||||||
|
:emphasize-lines: 9
|
||||||
|
|
||||||
|
acrn-dm -A -m $mem_size -c $2 -s 0:0,hostbridge -s 1:0,lpc -l com1,stdio \
|
||||||
|
-s 2,pci-gvt -G "$3" \
|
||||||
|
-s 5,virtio-console,@pty:pty_port \
|
||||||
|
-s 6,virtio-hyper_dmabuf \
|
||||||
|
-s 3,virtio-blk,clear-27550-kvm.img \
|
||||||
|
-s 4,virtio-net,tap0 \
|
||||||
|
$logger_setting \
|
||||||
|
--mac_seed $mac_seed \
|
||||||
|
-U d2795438-25d6-11e8-864e-cb7a18b34643 \
|
||||||
|
-k /usr/lib/kernel/default-iot-lts2018 \
|
||||||
|
-B "root=/dev/vda3 rw rootwait maxcpus=$2 nohpet console=tty0 console=hvc0 \
|
||||||
|
console=ttyS0 no_timer_check ignore_loglevel log_buf_len=16M \
|
||||||
|
consoleblank=0 tsc=reliable i915.avail_planes_per_pipe=$4 \
|
||||||
|
i915.enable_hangcheck=0 i915.nuclear_pageflip=1 i915.enable_guc_loading=0 \
|
||||||
|
i915.enable_guc_submission=0 i915.enable_guc=0" $vm_name
|
||||||
|
|
||||||
|
Likewise, the following code snippet specifies a separate UUID to launch the VM2.
|
||||||
|
|
||||||
|
.. code-block:: none
|
||||||
|
:emphasize-lines: 2,6,10
|
||||||
|
|
||||||
|
acrn-dm -A -m $mem_size -c $2 -s 0:0,hostbridge -s 1:0,lpc -l com1,stdio \
|
||||||
|
-s 2,pci-gvt -G "$3" \
|
||||||
|
-s 5,virtio-console,@pty:pty_port \
|
||||||
|
-s 6,virtio-hyper_dmabuf \
|
||||||
|
-s 3,virtio-blk,ubuntu-16.04.img \
|
||||||
|
-s 4,virtio-net,tap1 \
|
||||||
|
-s 7,virtio-rnd \
|
||||||
|
$logger_setting \
|
||||||
|
--mac_seed $mac_seed \
|
||||||
|
-U 495ae2e5-2603-4d64-af76-d4bc5a8ec0e5 \
|
||||||
|
-k /usr/lib/kernel/default-iot-lts2018 \
|
||||||
|
-B "root=/dev/vda rw rootwait maxcpus=$2 nohpet console=tty0 console=hvc0 \
|
||||||
|
console=ttyS0 no_timer_check ignore_loglevel log_buf_len=16M \
|
||||||
|
consoleblank=0 tsc=reliable i915.avail_planes_per_pipe=$4 \
|
||||||
|
i915.enable_hangcheck=0 i915.nuclear_pageflip=1 i915.enable_guc_loading=0 \
|
||||||
|
i915.enable_guc_submission=0 i915.enable_guc=0" $vm_name
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
In addition to a different predefined UUID, you also need to specify
|
||||||
|
a different network tap device (e.g. ``tap1``) to connect the VM2 to
|
||||||
|
the network.
|
||||||
|
|
||||||
|
.. note::
|
||||||
|
i915 GPU supports three hardware pipes to drive the displays,
|
||||||
|
however only certain products design with circuitry to connect to
|
||||||
|
three external displays.
|
||||||
|
On a system supports up to two external displays, since the primary
|
||||||
|
display has been assigned to the Service VM at boot time, you may
|
||||||
|
remove the ``-s 2,pci-gvt -G "$3"`` options in one of the previous
|
||||||
|
scripts to completely disable the GVT-g feature from that particular VM.
|
||||||
|
Refer the :ref:`APL_GVT-g-hld` for detailed information.
|
||||||
|
|
||||||
|
.. figure:: images/sdc2-launch-2-laag.png
|
||||||
|
:align: center
|
||||||
|
:name: Running 2 Linux UOSes
|
Loading…
Reference in New Issue
Block a user