Re: [PATCH 4/4] serial: Allow unaligned i/o access

2022-09-08 Thread Arwed Meyer
Am 08.09.22 um 13:15 schrieb Michael S. Tsirkin: On Thu, Sep 08, 2022 at 02:11:28PM +0400, Marc-André Lureau wrote: Hi On Wed, Sep 7, 2022 at 2:03 AM Arwed Meyer wrote: Unaligned i/o access on serial UART works on real PCs. This is used for example by FreeDOS CTMouse driver. Without

Re: [PATCH 4/4] serial: Allow unaligned i/o access

2022-09-08 Thread Michael S. Tsirkin
On Thu, Sep 08, 2022 at 02:11:28PM +0400, Marc-André Lureau wrote: > Hi > > On Wed, Sep 7, 2022 at 2:03 AM Arwed Meyer wrote: > > Unaligned i/o access on serial UART works on real PCs. > This is used for example by FreeDOS CTMouse driver. Without this it > can't reset and detect seri

Re: [PATCH 4/4] serial: Allow unaligned i/o access

2022-09-08 Thread Marc-André Lureau
Hi On Wed, Sep 7, 2022 at 2:03 AM Arwed Meyer wrote: > Unaligned i/o access on serial UART works on real PCs. > This is used for example by FreeDOS CTMouse driver. Without this it > can't reset and detect serial mice. > > Resolves: https://gitlab.com/qemu-project/qemu/-/issues/77 > Signed-off-by

[PATCH 4/4] serial: Allow unaligned i/o access

2022-09-06 Thread Arwed Meyer
Unaligned i/o access on serial UART works on real PCs. This is used for example by FreeDOS CTMouse driver. Without this it can't reset and detect serial mice. Resolves: https://gitlab.com/qemu-project/qemu/-/issues/77 Signed-off-by: Arwed Meyer --- hw/char/serial.c | 3 +++ 1 file changed, 3 ins