From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: Strahinja Jankovic <strahinjapjankovic@gmail.com>, 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: Re: [RFC Patch 1/5] hw/display: Allwinner A10 HDMI controller emulation
Date: Wed, 6 Sep 2023 06:50:59 +0200 [thread overview]
Message-ID: <8539de89-6a8b-ebac-a82c-2d09ae58202c@linaro.org> (raw)
In-Reply-To: <20230905201425.118918-2-strahinja.p.jankovic@gmail.com>
Hi Strahinja,
On 5/9/23 22:14, Strahinja Jankovic wrote:
> This patch adds basic Allwinner A10 HDMI controller support.
> Emulated HDMI component will always show that a display is connected and
> provide default EDID info.
>
> Signed-off-by: Strahinja Jankovic <strahinja.p.jankovic@gmail.com>
> ---
> hw/arm/allwinner-a10.c | 7 +
> hw/display/allwinner-a10-hdmi.c | 214 ++++++++++++++++++++++++
> hw/display/meson.build | 2 +
> hw/display/trace-events | 4 +
> include/hw/arm/allwinner-a10.h | 2 +
> include/hw/display/allwinner-a10-hdmi.h | 69 ++++++++
> 6 files changed, 298 insertions(+)
> create mode 100644 hw/display/allwinner-a10-hdmi.c
> create mode 100644 include/hw/display/allwinner-a10-hdmi.h
> diff --git a/hw/display/allwinner-a10-hdmi.c b/hw/display/allwinner-a10-hdmi.c
> new file mode 100644
> index 0000000000..0f046e3cc7
> --- /dev/null
> +++ b/hw/display/allwinner-a10-hdmi.c
> +#define REG_INDEX(offset) (offset / sizeof(uint32_t))
> +
> +static uint64_t allwinner_a10_hdmi_read(void *opaque, hwaddr offset,
> + unsigned size)
> +{
> + AwA10HdmiState *s = AW_A10_HDMI(opaque);
> + const uint32_t idx = REG_INDEX(offset);
> + uint32_t val = s->regs[idx];
> +
> + switch (offset) {
> + case REG_HPD:
> + val = FIELD_HPD_HOTPLUG_DET_HIGH;
> + break;
> +}
> +
> +static void allwinner_a10_hdmi_write(void *opaque, hwaddr offset,
> + uint64_t val, unsigned size)
> +{
> + AwA10HdmiState *s = AW_A10_HDMI(opaque);
> + const uint32_t idx = REG_INDEX(offset);
> +
> + switch (offset) {
> + case REG_DDC_CTRL:
> + if (val & FIELD_DDC_CTRL_SW_RST) {
> + val &= ~FIELD_DDC_CTRL_SW_RST;
> + }
> + s->regs[idx] = (uint32_t) val;
> +}
> +
> +static const MemoryRegionOps allwinner_a10_hdmi_ops = {
> + .read = allwinner_a10_hdmi_read,
> + .write = allwinner_a10_hdmi_write,
> + .endianness = DEVICE_NATIVE_ENDIAN,
> + .valid = {
> + .min_access_size = 1,
> + .max_access_size = 4,
> + },
> + .impl.min_access_size = 1,
Per REG_INDEX() you have .impl.min/max = 4.
Otherwise your patch LGTM :)
> +};
next prev parent reply other threads:[~2023-09-06 4:52 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-05 20:14 [RFC Patch 0/5] Allwinner A10 input/output peripherals Strahinja Jankovic
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é [this message]
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=8539de89-6a8b-ebac-a82c-2d09ae58202c@linaro.org \
--to=philmd@linaro.org \
--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 \
--cc=strahinjapjankovic@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).