From: Strahinja Jankovic <strahinjapjankovic@gmail.com>
To: qemu-devel@nongnu.org
Cc: qemu-arm@nongnu.org, Beniamino Galvani <b.galvani@gmail.com>,
Peter Maydell <peter.maydell@linaro.org>,
Strahinja Jankovic <strahinja.p.jankovic@gmail.com>
Subject: [RFC Patch 0/5] Allwinner A10 input/output peripherals
Date: Tue, 5 Sep 2023 22:14:20 +0200 [thread overview]
Message-ID: <20230905201425.118918-1-strahinja.p.jankovic@gmail.com> (raw)
This patch set adds minimal support for PS2 input and HDMI output for
Allwinner A10 and Cubieboard.
For the display part, minimal emulation of HDMI, MALI GPU, Display
Engine Backend and LCD controller is added.
For the PS2 both keyboard and mouse support is added and attached to the
two PS2 contollers present in Allwinner A10.
Functionality has been tested with custom Yocto image.
This is sent as RFC for now, since there might be some use cases which
have not been tested.
Strahinja Jankovic (5):
hw/display: Allwinner A10 HDMI controller emulation
hw/display: Allwinner basic MALI GPU emulation
hw/display: Allwinner A10 Display Engine Backend emulation
hw/display: Allwinner A10 LCDC emulation
hw/input: Add Allwinner-A10 PS2 emulation
hw/arm/allwinner-a10.c | 51 ++++
hw/display/allwinner-a10-debe.c | 229 ++++++++++++++++
hw/display/allwinner-a10-hdmi.c | 214 +++++++++++++++
hw/display/allwinner-a10-lcdc.c | 275 +++++++++++++++++++
hw/display/allwinner-gpu.c | 212 +++++++++++++++
hw/display/meson.build | 5 +
hw/display/trace-events | 17 ++
hw/input/allwinner-a10-ps2.c | 345 ++++++++++++++++++++++++
hw/input/meson.build | 2 +
include/hw/arm/allwinner-a10.h | 11 +
include/hw/display/allwinner-a10-debe.h | 71 +++++
include/hw/display/allwinner-a10-hdmi.h | 69 +++++
include/hw/display/allwinner-a10-lcdc.h | 77 ++++++
include/hw/display/allwinner-gpu.h | 64 +++++
include/hw/input/allwinner-a10-ps2.h | 96 +++++++
15 files changed, 1738 insertions(+)
create mode 100644 hw/display/allwinner-a10-debe.c
create mode 100644 hw/display/allwinner-a10-hdmi.c
create mode 100644 hw/display/allwinner-a10-lcdc.c
create mode 100644 hw/display/allwinner-gpu.c
create mode 100644 hw/input/allwinner-a10-ps2.c
create mode 100644 include/hw/display/allwinner-a10-debe.h
create mode 100644 include/hw/display/allwinner-a10-hdmi.h
create mode 100644 include/hw/display/allwinner-a10-lcdc.h
create mode 100644 include/hw/display/allwinner-gpu.h
create mode 100644 include/hw/input/allwinner-a10-ps2.h
--
2.34.1
next reply other threads:[~2023-09-05 20:15 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-05 20:14 Strahinja Jankovic [this message]
2023-09-05 20:14 ` [RFC Patch 1/5] hw/display: Allwinner A10 HDMI controller emulation Strahinja Jankovic
2023-09-06 4:50 ` Philippe Mathieu-Daudé
2023-09-05 20:14 ` [RFC Patch 2/5] hw/display: Allwinner basic MALI GPU emulation Strahinja Jankovic
2023-09-05 20:14 ` [RFC Patch 3/5] hw/display: Allwinner A10 Display Engine Backend emulation Strahinja Jankovic
2023-09-05 20:14 ` [RFC Patch 4/5] hw/display: Allwinner A10 LCDC emulation Strahinja Jankovic
2023-09-06 5:03 ` Philippe Mathieu-Daudé
2023-09-08 18:36 ` Strahinja Jankovic
2023-09-05 20:14 ` [RFC Patch 5/5] hw/input: Add Allwinner-A10 PS2 emulation Strahinja Jankovic
2023-09-15 14:23 ` Peter Maydell
2023-09-16 9:26 ` Strahinja Jankovic
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=20230905201425.118918-1-strahinja.p.jankovic@gmail.com \
--to=strahinjapjankovic@gmail.com \
--cc=b.galvani@gmail.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-arm@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=strahinja.p.jankovic@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).