From: Dominik Csapak <d.csapak@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [PATCH manager v3 05/18] ui: qemu: add architecture specific defaults and helpers
Date: Mon, 2 Mar 2026 14:20:53 +0100 [thread overview]
Message-ID: <20260302132913.3169037-6-d.csapak@proxmox.com> (raw)
In-Reply-To: <20260302132913.3169037-1-d.csapak@proxmox.com>
Introduce a new singleton 'PVE.qemu.Architecture', that contains nearly all
architecture specific settings such as renderers, defaults and filters.
This provides a single place to modify architecture specific behavior,
or add new architectures the gui should handle.
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
www/manager6/Makefile | 1 +
www/manager6/qemu/Architecture.js | 106 ++++++++++++++++++++++++++++++
2 files changed, 107 insertions(+)
create mode 100644 www/manager6/qemu/Architecture.js
diff --git a/www/manager6/Makefile b/www/manager6/Makefile
index 8857045c..8f9c53c4 100644
--- a/www/manager6/Makefile
+++ b/www/manager6/Makefile
@@ -5,6 +5,7 @@ BIOME ?= proxmox-biome
JSSRC= \
Parser.js \
StateProvider.js \
+ qemu/Architecture.js \
Utils.js \
UIOptions.js \
Toolkit.js \
diff --git a/www/manager6/qemu/Architecture.js b/www/manager6/qemu/Architecture.js
new file mode 100644
index 00000000..f7de1ebe
--- /dev/null
+++ b/www/manager6/qemu/Architecture.js
@@ -0,0 +1,106 @@
+/* This file defines the helpers, defaults and limits for various vCPU architectures, such
+ * as x86_64, and aarch64.
+ *
+ * To add a new architecture, add the respective entry in the defaults/renderers and selection.
+ */
+Ext.define('PVE.qemu.Architecture', {
+ singleton: true,
+
+ selection: [
+ ['__default__', `${Proxmox.Utils.defaultText} (${gettext('Host Architecture')})`],
+ ['x86_64', gettext('x86 (64-bit)')],
+ ['aarch64', gettext('ARM (64-bit)')],
+ ],
+
+ // filter for PVE.Utils.kvm_ostypes
+ kvmOSTypes: {
+ x86_64: {
+ bases: undefined, // include all
+ ostypes: undefined, // include all
+ },
+ aarch64: {
+ bases: ['Linux', 'Other'],
+ ostypes: ['l26', 'other'],
+ },
+ },
+
+ defaultProcessorModel: {
+ x86_64: 'x86-64-v2-AES',
+ aarch64: 'cortex-a57',
+ },
+
+ defaultMachines: {
+ x86_64: 'pc',
+ aarch64: 'virt',
+ },
+
+ defaultCDDrive: {
+ x86_64: ['ide', 2],
+ aarch64: ['scsi', 2],
+ },
+
+ allowedScsiHw: {
+ x86_64: [
+ '__default__',
+ 'lsi',
+ 'lsi53c810',
+ 'megasas',
+ 'virtio-scsi-pci',
+ 'virtio-scsi-single',
+ 'pvscsi',
+ ],
+ aarch64: ['virtio-scsi-pci', 'virtio-scsi-single'],
+ },
+
+ allowedMachines: {
+ x86_64: ['__default__', 'q35'], // __default__ is i440fx
+ aarch64: ['__default__'], // __default__ is virt
+ },
+
+ allowedBusses: {
+ x86_64: ['ide', 'sata', 'virtio', 'scsi', 'unused'],
+ aarch64: ['sata', 'virtio', 'scsi', 'unused'],
+ },
+
+ allowedFirmware: {
+ x86_64: ['__default__', 'seabios', 'ovmf'], // default is seabios
+ aarch64: ['ovmf'],
+ },
+
+ render_vcpu_architecture: function (value) {
+ switch (value ?? '') {
+ case '':
+ case 'x86_64':
+ return gettext('x86 (64-bit)');
+ case 'aarch64':
+ return gettext('ARM (64-bit)');
+ default:
+ return Proxmox.Utils.unknownText;
+ }
+ },
+
+ getNodeArchitecture: function (nodename) {
+ let hostArch = PVE.data.ResourceStore.getNodeById(nodename)?.data['host-arch'];
+ return PVE.qemu.Architecture.normalizeArchitecture(hostArch) ?? 'x86_64';
+ },
+
+ normalizeArchitecture: function (architecture) {
+ if (!architecture?.length || architecture === '__default__') {
+ return undefined;
+ }
+ return architecture;
+ },
+ // returns the resulting architecture from a given arch and
+ // the nodename, in case the architecture is set to default or empty
+ getGuestArchitecture: function (architecture, nodename) {
+ let hostArch = PVE.qemu.Architecture.getNodeArchitecture(nodename);
+ return PVE.qemu.Architecture.normalizeArchitecture(architecture) ?? hostArch;
+ },
+
+ // returns if the given architecture is the native host architecture of the given nodename
+ isHostArchitecture: function (architecture, nodename) {
+ architecture = PVE.qemu.Architecture.normalizeArchitecture(architecture);
+ let hostArch = PVE.qemu.Architecture.getNodeArchitecture(nodename);
+ return (architecture ?? hostArch) === hostArch;
+ },
+});
--
2.47.3
next prev parent reply other threads:[~2026-03-02 13:28 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-03-02 13:20 [PATCH manager v3 00/18] enable qemu vm architecture selection Dominik Csapak
2026-03-02 13:20 ` [PATCH manager v3 01/18] api/pvestatd: broadcast and expose non-x86 host architecture Dominik Csapak
2026-03-02 13:20 ` [PATCH manager v3 02/18] ui: qemu: wizard: refactor ostype and cd selector into an OSPanel Dominik Csapak
2026-03-02 13:20 ` [PATCH manager v3 03/18] ui: form: add filtered KVComboBox Dominik Csapak
2026-03-02 13:20 ` [PATCH manager v3 04/18] ui: resource store: add architecture field Dominik Csapak
2026-03-02 13:20 ` Dominik Csapak [this message]
2026-03-02 13:20 ` [PATCH manager v3 06/18] ui: qemu: add architecture field in wizard and hardware view Dominik Csapak
2026-03-02 13:20 ` [PATCH manager v3 07/18] ui: qemu: make scsi hw selector architecture aware Dominik Csapak
2026-03-02 13:20 ` [PATCH manager v3 08/18] ui: qemu: make osdefaults " Dominik Csapak
2026-03-02 13:20 ` [PATCH manager v3 09/18] ui: qemu: make os type selector " Dominik Csapak
2026-03-02 13:20 ` [PATCH manager v3 10/18] ui: qemu: make machine panels/fields " Dominik Csapak
2026-03-02 13:20 ` [PATCH manager v3 11/18] ui: qemu: make bios selector " Dominik Csapak
2026-03-02 13:21 ` [PATCH manager v3 12/18] ui: qemu: make sortByPreviousUsage " Dominik Csapak
2026-03-02 13:21 ` [PATCH manager v3 13/18] ui: qemu: wizard: use defaults to populate machine and bios Dominik Csapak
2026-03-02 13:21 ` [PATCH manager v3 14/18] ui: qemu: wizard: make iso confid architecture specific Dominik Csapak
2026-03-02 13:21 ` [PATCH manager v3 15/18] ui: qemu: make bus selector architecture aware Dominik Csapak
2026-03-02 13:21 ` [PATCH manager v3 16/18] ui: qemu: make processor edit " Dominik Csapak
2026-03-02 13:21 ` [PATCH manager v3 17/18] ui: qemu: change ui default for cpu model Dominik Csapak
2026-03-02 13:21 ` [PATCH manager v3 18/18] ui: qemu: set arch parameter for fetch machine types from api Dominik Csapak
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260302132913.3169037-6-d.csapak@proxmox.com \
--to=d.csapak@proxmox.com \
--cc=pve-devel@lists.proxmox.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.