All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Philippe Mathieu-Daudé" <philmd@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Michael S. Tsirkin" <mst@redhat.com>,
	"Laszlo Ersek" <lersek@redhat.com>,
	"Mark Cave-Ayland" <mark.cave-ayland@ilande.co.uk>,
	qemu-ppc@nongnu.org, "Gerd Hoffmann" <kraxel@redhat.com>,
	"Philippe Mathieu-Daudé" <philmd@redhat.com>,
	"Artyom Tarasenko" <atar4qemu@gmail.com>,
	"David Gibson" <david@gibson.dropbear.id.au>
Subject: [Qemu-devel] [PULL 07/15] hw/sparc64: Implement fw_cfg_arch_key_name()
Date: Thu, 23 May 2019 14:43:12 +0200	[thread overview]
Message-ID: <20190523124320.28726-8-philmd@redhat.com> (raw)
In-Reply-To: <20190523124320.28726-1-philmd@redhat.com>

Implement fw_cfg_arch_key_name(), which returns the name of a
sparc64-specific key.

Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Message-Id: <20190422195020.1494-8-philmd@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
---
 hw/sparc64/sun4u.c | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/hw/sparc64/sun4u.c b/hw/sparc64/sun4u.c
index 399f2d73c8..4230b17b87 100644
--- a/hw/sparc64/sun4u.c
+++ b/hw/sparc64/sun4u.c
@@ -91,6 +91,25 @@ typedef struct EbusState {
 #define TYPE_EBUS "ebus"
 #define EBUS(obj) OBJECT_CHECK(EbusState, (obj), TYPE_EBUS)
 
+const char *fw_cfg_arch_key_name(uint16_t key)
+{
+    static const struct {
+        uint16_t key;
+        const char *name;
+    } fw_cfg_arch_wellknown_keys[] = {
+        {FW_CFG_SPARC64_WIDTH, "width"},
+        {FW_CFG_SPARC64_HEIGHT, "height"},
+        {FW_CFG_SPARC64_DEPTH, "depth"},
+    };
+
+    for (size_t i = 0; i < ARRAY_SIZE(fw_cfg_arch_wellknown_keys); i++) {
+        if (fw_cfg_arch_wellknown_keys[i].key == key) {
+            return fw_cfg_arch_wellknown_keys[i].name;
+        }
+    }
+    return NULL;
+}
+
 static void fw_cfg_boot_set(void *opaque, const char *boot_device,
                             Error **errp)
 {
-- 
2.20.1



  parent reply	other threads:[~2019-05-23 13:09 UTC|newest]

Thread overview: 18+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-23 12:43 [Qemu-devel] [PULL 00/15] Fw cfg 20190523 patches Philippe Mathieu-Daudé
2019-05-23 12:43 ` [Qemu-devel] [PULL 01/15] hw/nvram/fw_cfg: Add trace events Philippe Mathieu-Daudé
2019-05-23 12:43 ` [Qemu-devel] [PULL 02/15] hw/nvram/fw_cfg: Add fw_cfg_arch_key_name() Philippe Mathieu-Daudé
2019-05-23 12:43 ` [Qemu-devel] [PULL 03/15] hw/i386: Extract fw_cfg definitions to local "fw_cfg.h" Philippe Mathieu-Daudé
2019-05-23 12:43 ` [Qemu-devel] [PULL 04/15] hw/i386: Implement fw_cfg_arch_key_name() Philippe Mathieu-Daudé
2019-05-23 12:43 ` [Qemu-devel] [PULL 05/15] hw/ppc: " Philippe Mathieu-Daudé
2019-05-24  0:44   ` David Gibson
2019-05-23 12:43 ` [Qemu-devel] [PULL 06/15] hw/sparc: " Philippe Mathieu-Daudé
2019-05-23 12:43 ` Philippe Mathieu-Daudé [this message]
2019-05-23 12:43 ` [Qemu-devel] [PULL 08/15] tests/libqos: Add io_fw_cfg_uninit() and mm_fw_cfg_uninit() Philippe Mathieu-Daudé
2019-05-23 12:43 ` [Qemu-devel] [PULL 09/15] tests/libqos: Add pc_fw_cfg_uninit() and use it Philippe Mathieu-Daudé
2019-05-23 12:43 ` [Qemu-devel] [PULL 10/15] tests/fw_cfg: Free QFWCFG object after qtest has run Philippe Mathieu-Daudé
2019-05-23 12:43 ` [Qemu-devel] [PULL 11/15] tests: refactor fw_cfg_test Philippe Mathieu-Daudé
2019-05-23 12:43 ` [Qemu-devel] [PULL 12/15] tests: fw_cfg: add a function to get the fw_cfg file Philippe Mathieu-Daudé
2019-05-23 12:43 ` [Qemu-devel] [PULL 13/15] hw/nvram/fw_cfg: Store 'reboot-timeout' as little endian Philippe Mathieu-Daudé
2019-05-23 12:43 ` [Qemu-devel] [PULL 14/15] tests: fw_cfg: add 'reboot-timeout' test case Philippe Mathieu-Daudé
2019-05-23 12:43 ` [Qemu-devel] [PULL 15/15] tests: fw_cfg: add 'splash-time' " Philippe Mathieu-Daudé
2019-05-23 15:46 ` [Qemu-devel] [PULL 00/15] Fw cfg 20190523 patches Peter Maydell

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=20190523124320.28726-8-philmd@redhat.com \
    --to=philmd@redhat.com \
    --cc=atar4qemu@gmail.com \
    --cc=david@gibson.dropbear.id.au \
    --cc=kraxel@redhat.com \
    --cc=lersek@redhat.com \
    --cc=mark.cave-ayland@ilande.co.uk \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=qemu-ppc@nongnu.org \
    /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.