[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[RFC PATCH 2/5] hw/misc/led: Add LED_STATUS_CHANGED QAPI event
From: |
Philippe Mathieu-Daudé |
Subject: |
[RFC PATCH 2/5] hw/misc/led: Add LED_STATUS_CHANGED QAPI event |
Date: |
Tue, 9 Jun 2020 14:34:22 +0200 |
Allow LED devices to emit STATUS_CHANGED events on a QMP chardev.
QMP event examples:
{
"timestamp": {
"seconds": 1591704274,
"microseconds": 520850
},
"event": "LED_STATUS_CHANGED",
"data": {
"name": "Green LED #0",
"status": "on"
}
}
{
"timestamp": {
"seconds": 1591704275,
"microseconds": 530912
},
"event": "LED_STATUS_CHANGED",
"data": {
"name": "Green LED #0",
"status": "off"
}
}
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
---
qapi/led.json | 47 +++++++++++++++++++++++++++++++++++++++++++
qapi/qapi-schema.json | 1 +
hw/misc/led.c | 4 ++++
MAINTAINERS | 1 +
qapi/Makefile.objs | 2 +-
5 files changed, 54 insertions(+), 1 deletion(-)
create mode 100644 qapi/led.json
diff --git a/qapi/led.json b/qapi/led.json
new file mode 100644
index 0000000000..b6cef8a5dd
--- /dev/null
+++ b/qapi/led.json
@@ -0,0 +1,47 @@
+# -*- Mode: Python -*-
+#
+
+##
+# = LED device
+##
+
+##
+# @LedState:
+#
+# Status of a LED
+#
+# @on: device is emitting
+#
+# @off: device is off
+#
+# Since: 5.1
+##
+{ 'enum': 'LedState', 'data': [ 'on', 'off' ] }
+
+##
+# @LED_STATUS_CHANGED:
+#
+# Emitted when LED status changed
+#
+# @name: LED description
+#
+# @status: New status
+#
+# Since: 5.1
+#
+# Example:
+#
+# <- {"timestamp": {"seconds": 1541579657, "microseconds": 986760},
+# "event": "LED_STATUS_CHANGED",
+# "data":
+# {"name": "Blue LED #3",
+# "status": "on"
+# }
+# }
+#
+##
+{ 'event': 'LED_STATUS_CHANGED',
+ 'data': { 'name' : 'str',
+ 'status' : 'LedState'
+ }
+}
diff --git a/qapi/qapi-schema.json b/qapi/qapi-schema.json
index 43b0ba0dea..6f3ffc0ae1 100644
--- a/qapi/qapi-schema.json
+++ b/qapi/qapi-schema.json
@@ -84,3 +84,4 @@
{ 'include': 'misc.json' }
{ 'include': 'misc-target.json' }
{ 'include': 'audio.json' }
+{ 'include': 'led.json' }
diff --git a/hw/misc/led.c b/hw/misc/led.c
index dc61b11017..233843f581 100644
--- a/hw/misc/led.c
+++ b/hw/misc/led.c
@@ -7,6 +7,7 @@
*/
#include "qemu/osdep.h"
#include "qapi/error.h"
+#include "qapi/qapi-events-led.h"
#include "hw/qdev-properties.h"
#include "hw/misc/led.h"
#include "hw/irq.h"
@@ -19,6 +20,9 @@ static void led_set(void *opaque, int line, int new_state)
trace_led_set(s->name, s->current_state, new_state);
+ /* FIXME QMP rate limite? */
+ qapi_event_send_led_status_changed(s->name, new_state
+ ? LED_STATE_ON :
LED_STATE_OFF);
s->current_state = new_state;
}
diff --git a/MAINTAINERS b/MAINTAINERS
index f873f0b94a..9ff84498fc 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1867,6 +1867,7 @@ F: hw/misc/unimp.c
LED
M: Philippe Mathieu-Daudé <f4bug@amsat.org>
S: Maintained
+F: qapi/led.json
F: include/hw/misc/led.h
F: hw/misc/led.c
diff --git a/qapi/Makefile.objs b/qapi/Makefile.objs
index 4673ab7490..e9f6570c32 100644
--- a/qapi/Makefile.objs
+++ b/qapi/Makefile.objs
@@ -6,7 +6,7 @@ util-obj-y += qmp-event.o
util-obj-y += qapi-util.o
QAPI_COMMON_MODULES = audio authz block-core block char common control crypto
-QAPI_COMMON_MODULES += dump error introspect job machine migration misc
+QAPI_COMMON_MODULES += dump error introspect job led machine migration misc
QAPI_COMMON_MODULES += net pragma qdev qom rdma rocker run-state sockets tpm
QAPI_COMMON_MODULES += trace transaction ui
QAPI_TARGET_MODULES = machine-target misc-target
--
2.21.3