2008-04-08 08:01:02 +02:00
|
|
|
/*
|
|
|
|
* QEMU Baum Braille Device
|
|
|
|
*
|
2017-12-11 01:19:50 +01:00
|
|
|
* Copyright (c) 2008, 2010-2011, 2016-2017 Samuel Thibault
|
2008-04-08 08:01:02 +02:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
2019-05-23 16:35:07 +02:00
|
|
|
|
2016-01-29 18:49:54 +01:00
|
|
|
#include "qemu/osdep.h"
|
include/qemu/osdep.h: Don't include qapi/error.h
Commit 57cb38b included qapi/error.h into qemu/osdep.h to get the
Error typedef. Since then, we've moved to include qemu/osdep.h
everywhere. Its file comment explains: "To avoid getting into
possible circular include dependencies, this file should not include
any other QEMU headers, with the exceptions of config-host.h,
compiler.h, os-posix.h and os-win32.h, all of which are doing a
similar job to this file and are under similar constraints."
qapi/error.h doesn't do a similar job, and it doesn't adhere to
similar constraints: it includes qapi-types.h. That's in excess of
100KiB of crap most .c files don't actually need.
Add the typedef to qemu/typedefs.h, and include that instead of
qapi/error.h. Include qapi/error.h in .c files that need it and don't
get it now. Include qapi-types.h in qom/object.h for uint16List.
Update scripts/clean-includes accordingly. Update it further to match
reality: replace config.h by config-target.h, add sysemu/os-posix.h,
sysemu/os-win32.h. Update the list of includes in the qemu/osdep.h
comment quoted above similarly.
This reduces the number of objects depending on qapi/error.h from "all
of them" to less than a third. Unfortunately, the number depending on
qapi-types.h shrinks only a little. More work is needed for that one.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
[Fix compilation without the spice devel packages. - Paolo]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
2016-03-14 09:01:28 +01:00
|
|
|
#include "qapi/error.h"
|
2017-01-26 14:19:46 +01:00
|
|
|
#include "chardev/char.h"
|
Include qemu/main-loop.h less
In my "build everything" tree, changing qemu/main-loop.h triggers a
recompile of some 5600 out of 6600 objects (not counting tests and
objects that don't depend on qemu/osdep.h). It includes block/aio.h,
which in turn includes qemu/event_notifier.h, qemu/notify.h,
qemu/processor.h, qemu/qsp.h, qemu/queue.h, qemu/thread-posix.h,
qemu/thread.h, qemu/timer.h, and a few more.
Include qemu/main-loop.h only where it's needed. Touching it now
recompiles only some 1700 objects. For block/aio.h and
qemu/event_notifier.h, these numbers drop from 5600 to 2800. For the
others, they shrink only slightly.
Signed-off-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20190812052359.30071-21-armbru@redhat.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Tested-by: Philippe Mathieu-Daudé <philmd@redhat.com>
2019-08-12 07:23:50 +02:00
|
|
|
#include "qemu/main-loop.h"
|
2019-05-23 16:35:07 +02:00
|
|
|
#include "qemu/module.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/timer.h"
|
2013-02-03 20:21:00 +01:00
|
|
|
#include "hw/usb.h"
|
2016-12-21 01:38:05 +01:00
|
|
|
#include "ui/console.h"
|
2008-04-08 08:01:02 +02:00
|
|
|
#include <brlapi.h>
|
|
|
|
#include <brlapi_constants.h>
|
|
|
|
#include <brlapi_keycodes.h>
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2008-04-08 08:01:02 +02:00
|
|
|
|
|
|
|
#if 0
|
|
|
|
#define DPRINTF(fmt, ...) \
|
|
|
|
printf(fmt, ## __VA_ARGS__)
|
|
|
|
#else
|
|
|
|
#define DPRINTF(fmt, ...)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define ESC 0x1B
|
|
|
|
|
|
|
|
#define BAUM_REQ_DisplayData 0x01
|
|
|
|
#define BAUM_REQ_GetVersionNumber 0x05
|
|
|
|
#define BAUM_REQ_GetKeys 0x08
|
|
|
|
#define BAUM_REQ_SetMode 0x12
|
|
|
|
#define BAUM_REQ_SetProtocol 0x15
|
|
|
|
#define BAUM_REQ_GetDeviceIdentity 0x84
|
|
|
|
#define BAUM_REQ_GetSerialNumber 0x8A
|
|
|
|
|
|
|
|
#define BAUM_RSP_CellCount 0x01
|
|
|
|
#define BAUM_RSP_VersionNumber 0x05
|
|
|
|
#define BAUM_RSP_ModeSetting 0x11
|
|
|
|
#define BAUM_RSP_CommunicationChannel 0x16
|
|
|
|
#define BAUM_RSP_PowerdownSignal 0x17
|
|
|
|
#define BAUM_RSP_HorizontalSensors 0x20
|
|
|
|
#define BAUM_RSP_VerticalSensors 0x21
|
|
|
|
#define BAUM_RSP_RoutingKeys 0x22
|
|
|
|
#define BAUM_RSP_Switches 0x23
|
|
|
|
#define BAUM_RSP_TopKeys 0x24
|
|
|
|
#define BAUM_RSP_HorizontalSensor 0x25
|
|
|
|
#define BAUM_RSP_VerticalSensor 0x26
|
|
|
|
#define BAUM_RSP_RoutingKey 0x27
|
|
|
|
#define BAUM_RSP_FrontKeys6 0x28
|
|
|
|
#define BAUM_RSP_BackKeys6 0x29
|
|
|
|
#define BAUM_RSP_CommandKeys 0x2B
|
|
|
|
#define BAUM_RSP_FrontKeys10 0x2C
|
|
|
|
#define BAUM_RSP_BackKeys10 0x2D
|
|
|
|
#define BAUM_RSP_EntryKeys 0x33
|
|
|
|
#define BAUM_RSP_JoyStick 0x34
|
|
|
|
#define BAUM_RSP_ErrorCode 0x40
|
|
|
|
#define BAUM_RSP_InfoBlock 0x42
|
|
|
|
#define BAUM_RSP_DeviceIdentity 0x84
|
|
|
|
#define BAUM_RSP_SerialNumber 0x8A
|
|
|
|
#define BAUM_RSP_BluetoothName 0x8C
|
|
|
|
|
|
|
|
#define BAUM_TL1 0x01
|
|
|
|
#define BAUM_TL2 0x02
|
|
|
|
#define BAUM_TL3 0x04
|
|
|
|
#define BAUM_TR1 0x08
|
|
|
|
#define BAUM_TR2 0x10
|
|
|
|
#define BAUM_TR3 0x20
|
|
|
|
|
|
|
|
#define BUF_SIZE 256
|
|
|
|
|
2022-08-19 17:39:21 +02:00
|
|
|
#define X_MAX 84
|
|
|
|
#define Y_MAX 1
|
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct BaumChardev {
|
2016-12-07 14:20:22 +01:00
|
|
|
Chardev parent;
|
2008-04-08 08:01:02 +02:00
|
|
|
|
|
|
|
brlapi_handle_t *brlapi;
|
|
|
|
int brlapi_fd;
|
2009-06-13 15:19:25 +02:00
|
|
|
unsigned int x, y;
|
2016-10-23 21:54:32 +02:00
|
|
|
bool deferred_init;
|
2008-04-08 08:01:02 +02:00
|
|
|
|
|
|
|
uint8_t in_buf[BUF_SIZE];
|
|
|
|
uint8_t in_buf_used;
|
|
|
|
uint8_t out_buf[BUF_SIZE];
|
|
|
|
uint8_t out_buf_used, out_buf_ptr;
|
|
|
|
|
|
|
|
QEMUTimer *cellCount_timer;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
|
|
|
typedef struct BaumChardev BaumChardev;
|
2008-04-08 08:01:02 +02:00
|
|
|
|
2016-12-07 16:39:10 +01:00
|
|
|
#define TYPE_CHARDEV_BRAILLE "chardev-braille"
|
2020-08-31 23:07:33 +02:00
|
|
|
DECLARE_INSTANCE_CHECKER(BaumChardev, BAUM_CHARDEV,
|
|
|
|
TYPE_CHARDEV_BRAILLE)
|
2016-12-07 16:39:10 +01:00
|
|
|
|
2008-04-08 08:01:02 +02:00
|
|
|
/* Let's assume NABCC by default */
|
2016-10-23 21:54:31 +02:00
|
|
|
enum way {
|
|
|
|
DOTS2ASCII,
|
|
|
|
ASCII2DOTS
|
|
|
|
};
|
|
|
|
static const uint8_t nabcc_translation[2][256] = {
|
2008-04-08 08:01:02 +02:00
|
|
|
#ifndef BRLAPI_DOTS
|
|
|
|
#define BRLAPI_DOTS(d1,d2,d3,d4,d5,d6,d7,d8) \
|
|
|
|
((d1?BRLAPI_DOT1:0)|\
|
|
|
|
(d2?BRLAPI_DOT2:0)|\
|
|
|
|
(d3?BRLAPI_DOT3:0)|\
|
|
|
|
(d4?BRLAPI_DOT4:0)|\
|
|
|
|
(d5?BRLAPI_DOT5:0)|\
|
|
|
|
(d6?BRLAPI_DOT6:0)|\
|
|
|
|
(d7?BRLAPI_DOT7:0)|\
|
|
|
|
(d8?BRLAPI_DOT8:0))
|
|
|
|
#endif
|
2016-10-23 21:54:31 +02:00
|
|
|
#define DO(dots, ascii) \
|
|
|
|
[DOTS2ASCII][dots] = ascii, \
|
|
|
|
[ASCII2DOTS][ascii] = dots
|
|
|
|
DO(0, ' '),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 0, 0, 0, 0, 0, 0), 'a'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 0, 0, 0, 0, 0), 'b'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 0, 1, 0, 0, 0, 0), 'c'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 0, 1, 1, 0, 0, 0), 'd'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 0, 0, 1, 0, 0, 0), 'e'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 1, 0, 0, 0, 0), 'f'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 1, 1, 0, 0, 0), 'g'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 0, 1, 0, 0, 0), 'h'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 0, 1, 0, 0, 0, 0), 'i'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 0, 1, 1, 0, 0, 0), 'j'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 0, 0, 0, 0, 0), 'k'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 0, 0, 0, 0, 0), 'l'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 1, 0, 0, 0, 0), 'm'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 1, 1, 0, 0, 0), 'n'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 0, 1, 0, 0, 0), 'o'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 1, 0, 0, 0, 0), 'p'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 1, 1, 0, 0, 0), 'q'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 0, 1, 0, 0, 0), 'r'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 1, 1, 0, 0, 0, 0), 's'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 1, 1, 1, 0, 0, 0), 't'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 0, 0, 1, 0, 0), 'u'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 0, 0, 1, 0, 0), 'v'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 0, 1, 1, 1, 0, 0), 'w'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 1, 0, 1, 0, 0), 'x'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 1, 1, 1, 0, 0), 'y'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 0, 1, 1, 0, 0), 'z'),
|
|
|
|
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 0, 0, 0, 0, 1, 0), 'A'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 0, 0, 0, 1, 0), 'B'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 0, 1, 0, 0, 1, 0), 'C'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 0, 1, 1, 0, 1, 0), 'D'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 0, 0, 1, 0, 1, 0), 'E'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 1, 0, 0, 1, 0), 'F'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 1, 1, 0, 1, 0), 'G'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 0, 1, 0, 1, 0), 'H'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 0, 1, 0, 0, 1, 0), 'I'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 0, 1, 1, 0, 1, 0), 'J'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 0, 0, 0, 1, 0), 'K'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 0, 0, 0, 1, 0), 'L'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 1, 0, 0, 1, 0), 'M'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 1, 1, 0, 1, 0), 'N'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 0, 1, 0, 1, 0), 'O'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 1, 0, 0, 1, 0), 'P'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 1, 1, 0, 1, 0), 'Q'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 0, 1, 0, 1, 0), 'R'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 1, 1, 0, 0, 1, 0), 'S'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 1, 1, 1, 0, 1, 0), 'T'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 0, 0, 1, 1, 0), 'U'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 0, 0, 1, 1, 0), 'V'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 0, 1, 1, 1, 1, 0), 'W'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 1, 0, 1, 1, 0), 'X'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 1, 1, 1, 1, 0), 'Y'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 1, 0, 1, 1, 1, 0), 'Z'),
|
|
|
|
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 1, 0, 1, 1, 0, 0), '0'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 0, 0, 0, 0, 0, 0), '1'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 1, 0, 0, 0, 0, 0), '2'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 0, 0, 1, 0, 0, 0), '3'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 0, 0, 1, 1, 0, 0), '4'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 0, 0, 0, 1, 0, 0), '5'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 1, 0, 1, 0, 0, 0), '6'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 1, 0, 1, 1, 0, 0), '7'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 1, 0, 0, 1, 0, 0), '8'),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 1, 0, 1, 0, 0, 0), '9'),
|
|
|
|
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 0, 1, 0, 1, 0, 0), '.'),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 1, 1, 0, 1, 0, 0), '+'),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 1, 0, 0, 1, 0, 0), '-'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 0, 0, 0, 1, 0, 0), '*'),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 1, 1, 0, 0, 0, 0), '/'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 0, 1, 1, 0, 0), '('),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 1, 1, 1, 1, 0, 0), ')'),
|
|
|
|
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 1, 0, 1, 0, 0), '&'),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 1, 1, 1, 1, 0, 0), '#'),
|
|
|
|
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 0, 0, 0, 1, 0, 0), ','),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 0, 0, 1, 1, 0, 0), ';'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 0, 0, 1, 1, 0, 0), ':'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 1, 1, 0, 1, 0, 0), '!'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 0, 1, 1, 1, 0, 0), '?'),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 0, 0, 1, 0, 0, 0), '"'),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 1, 0, 0, 0, 0, 0), '\''),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 0, 1, 0, 0, 0, 0), '`'),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 0, 1, 1, 0, 1, 0), '^'),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 0, 1, 1, 0, 0, 0), '~'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 0, 1, 0, 1, 1, 0), '['),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 1, 1, 1, 1, 0), ']'),
|
|
|
|
DO(BRLAPI_DOTS(0, 1, 0, 1, 0, 1, 0, 0), '{'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 1, 1, 1, 0, 0), '}'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 1, 1, 1, 1, 0, 0), '='),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 0, 0, 1, 0, 0), '<'),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 1, 1, 1, 0, 0, 0), '>'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 1, 0, 1, 0, 0), '$'),
|
|
|
|
DO(BRLAPI_DOTS(1, 0, 0, 1, 0, 1, 0, 0), '%'),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 0, 1, 0, 0, 1, 0), '@'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 0, 1, 1, 0, 0), '|'),
|
|
|
|
DO(BRLAPI_DOTS(1, 1, 0, 0, 1, 1, 1, 0), '\\'),
|
|
|
|
DO(BRLAPI_DOTS(0, 0, 0, 1, 1, 1, 0, 0), '_'),
|
2008-04-08 08:01:02 +02:00
|
|
|
};
|
|
|
|
|
2016-10-23 21:54:32 +02:00
|
|
|
/* The guest OS has started discussing with us, finish initializing BrlAPI */
|
2016-12-07 14:20:22 +01:00
|
|
|
static int baum_deferred_init(BaumChardev *baum)
|
2016-10-23 21:54:32 +02:00
|
|
|
{
|
2016-12-21 01:38:05 +01:00
|
|
|
int tty = BRLAPI_TTY_DEFAULT;
|
|
|
|
QemuConsole *con;
|
2016-10-23 21:54:32 +02:00
|
|
|
|
|
|
|
if (baum->deferred_init) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (brlapi__getDisplaySize(baum->brlapi, &baum->x, &baum->y) == -1) {
|
|
|
|
brlapi_perror("baum: brlapi__getDisplaySize");
|
|
|
|
return 0;
|
|
|
|
}
|
2022-08-19 17:39:21 +02:00
|
|
|
if (baum->y > Y_MAX) {
|
|
|
|
baum->y = Y_MAX;
|
2017-12-11 01:19:50 +01:00
|
|
|
}
|
2022-08-19 17:39:21 +02:00
|
|
|
if (baum->x > X_MAX) {
|
|
|
|
baum->x = X_MAX;
|
2017-12-11 01:19:50 +01:00
|
|
|
}
|
2016-10-23 21:54:32 +02:00
|
|
|
|
2016-12-21 01:38:05 +01:00
|
|
|
con = qemu_console_lookup_by_index(0);
|
|
|
|
if (con && qemu_console_is_graphic(con)) {
|
|
|
|
tty = qemu_console_get_window_id(con);
|
|
|
|
if (tty == -1)
|
|
|
|
tty = BRLAPI_TTY_DEFAULT;
|
2016-10-23 21:54:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (brlapi__enterTtyMode(baum->brlapi, tty, NULL) == -1) {
|
|
|
|
brlapi_perror("baum: brlapi__enterTtyMode");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
baum->deferred_init = 1;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2008-04-08 08:01:02 +02:00
|
|
|
/* The serial port can receive more of our data */
|
2017-01-05 15:29:48 +01:00
|
|
|
static void baum_chr_accept_input(struct Chardev *chr)
|
2008-04-08 08:01:02 +02:00
|
|
|
{
|
2016-12-07 16:39:10 +01:00
|
|
|
BaumChardev *baum = BAUM_CHARDEV(chr);
|
2008-04-08 08:01:02 +02:00
|
|
|
int room, first;
|
|
|
|
|
|
|
|
if (!baum->out_buf_used)
|
|
|
|
return;
|
2011-08-15 18:17:31 +02:00
|
|
|
room = qemu_chr_be_can_write(chr);
|
2008-04-08 08:01:02 +02:00
|
|
|
if (!room)
|
|
|
|
return;
|
|
|
|
if (room > baum->out_buf_used)
|
|
|
|
room = baum->out_buf_used;
|
|
|
|
|
|
|
|
first = BUF_SIZE - baum->out_buf_ptr;
|
|
|
|
if (room > first) {
|
2011-08-15 18:17:30 +02:00
|
|
|
qemu_chr_be_write(chr, baum->out_buf + baum->out_buf_ptr, first);
|
2008-04-08 08:01:02 +02:00
|
|
|
baum->out_buf_ptr = 0;
|
|
|
|
baum->out_buf_used -= first;
|
|
|
|
room -= first;
|
|
|
|
}
|
2011-08-15 18:17:30 +02:00
|
|
|
qemu_chr_be_write(chr, baum->out_buf + baum->out_buf_ptr, room);
|
2008-04-08 08:01:02 +02:00
|
|
|
baum->out_buf_ptr += room;
|
|
|
|
baum->out_buf_used -= room;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* We want to send a packet */
|
2016-12-07 14:20:22 +01:00
|
|
|
static void baum_write_packet(BaumChardev *baum, const uint8_t *buf, int len)
|
2008-04-08 08:01:02 +02:00
|
|
|
{
|
2016-12-07 16:39:10 +01:00
|
|
|
Chardev *chr = CHARDEV(baum);
|
2022-08-19 17:39:23 +02:00
|
|
|
g_autofree uint8_t *io_buf = g_malloc(1 + 2 * len);
|
|
|
|
uint8_t *cur = io_buf;
|
2008-04-08 08:01:02 +02:00
|
|
|
int room;
|
|
|
|
*cur++ = ESC;
|
|
|
|
while (len--)
|
|
|
|
if ((*cur++ = *buf++) == ESC)
|
|
|
|
*cur++ = ESC;
|
2016-10-21 22:44:44 +02:00
|
|
|
room = qemu_chr_be_can_write(chr);
|
2008-04-08 08:01:02 +02:00
|
|
|
len = cur - io_buf;
|
|
|
|
if (len <= room) {
|
|
|
|
/* Fits */
|
2016-10-21 22:44:44 +02:00
|
|
|
qemu_chr_be_write(chr, io_buf, len);
|
2008-04-08 08:01:02 +02:00
|
|
|
} else {
|
|
|
|
int first;
|
|
|
|
uint8_t out;
|
|
|
|
/* Can't fit all, send what can be, and store the rest. */
|
2016-10-21 22:44:44 +02:00
|
|
|
qemu_chr_be_write(chr, io_buf, room);
|
2008-04-08 08:01:02 +02:00
|
|
|
len -= room;
|
|
|
|
cur = io_buf + room;
|
|
|
|
if (len > BUF_SIZE - baum->out_buf_used) {
|
|
|
|
/* Can't even store it, drop the previous data... */
|
|
|
|
assert(len <= BUF_SIZE);
|
|
|
|
baum->out_buf_used = 0;
|
|
|
|
baum->out_buf_ptr = 0;
|
|
|
|
}
|
|
|
|
out = baum->out_buf_ptr;
|
|
|
|
baum->out_buf_used += len;
|
|
|
|
first = BUF_SIZE - baum->out_buf_ptr;
|
|
|
|
if (len > first) {
|
|
|
|
memcpy(baum->out_buf + out, cur, first);
|
|
|
|
out = 0;
|
|
|
|
len -= first;
|
|
|
|
cur += first;
|
|
|
|
}
|
|
|
|
memcpy(baum->out_buf + out, cur, len);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Called when the other end seems to have a wrong idea of our display size */
|
|
|
|
static void baum_cellCount_timer_cb(void *opaque)
|
|
|
|
{
|
2016-12-07 16:39:10 +01:00
|
|
|
BaumChardev *baum = BAUM_CHARDEV(opaque);
|
2008-04-08 08:01:02 +02:00
|
|
|
uint8_t cell_count[] = { BAUM_RSP_CellCount, baum->x * baum->y };
|
|
|
|
DPRINTF("Timeout waiting for DisplayData, sending cell count\n");
|
|
|
|
baum_write_packet(baum, cell_count, sizeof(cell_count));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Try to interpret a whole incoming packet */
|
2016-12-07 14:20:22 +01:00
|
|
|
static int baum_eat_packet(BaumChardev *baum, const uint8_t *buf, int len)
|
2008-04-08 08:01:02 +02:00
|
|
|
{
|
|
|
|
const uint8_t *cur = buf;
|
|
|
|
uint8_t req = 0;
|
|
|
|
|
|
|
|
if (!len--)
|
|
|
|
return 0;
|
|
|
|
if (*cur++ != ESC) {
|
|
|
|
while (*cur != ESC) {
|
|
|
|
if (!len--)
|
|
|
|
return 0;
|
|
|
|
cur++;
|
|
|
|
}
|
2015-08-30 17:12:13 +02:00
|
|
|
DPRINTF("Dropped %td bytes!\n", cur - buf);
|
2008-04-08 08:01:02 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#define EAT(c) do {\
|
|
|
|
if (!len--) \
|
|
|
|
return 0; \
|
|
|
|
if ((c = *cur++) == ESC) { \
|
|
|
|
if (!len--) \
|
|
|
|
return 0; \
|
|
|
|
if (*cur++ != ESC) { \
|
|
|
|
DPRINTF("Broken packet %#2x, tossing\n", req); \
|
2013-08-21 17:02:39 +02:00
|
|
|
if (timer_pending(baum->cellCount_timer)) { \
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_del(baum->cellCount_timer); \
|
2013-08-21 17:02:39 +02:00
|
|
|
baum_cellCount_timer_cb(baum); \
|
2008-04-08 08:01:02 +02:00
|
|
|
} \
|
|
|
|
return (cur - 2 - buf); \
|
|
|
|
} \
|
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
EAT(req);
|
|
|
|
switch (req) {
|
|
|
|
case BAUM_REQ_DisplayData:
|
|
|
|
{
|
2022-08-19 17:39:22 +02:00
|
|
|
uint8_t cells[X_MAX * Y_MAX], c;
|
|
|
|
uint8_t text[X_MAX * Y_MAX];
|
|
|
|
uint8_t zero[X_MAX * Y_MAX];
|
2008-04-08 08:01:02 +02:00
|
|
|
int cursor = BRLAPI_CURSOR_OFF;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
/* Allow 100ms to complete the DisplayData packet */
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_mod(baum->cellCount_timer, qemu_clock_get_ns(QEMU_CLOCK_VIRTUAL) +
|
2016-03-21 17:02:30 +01:00
|
|
|
NANOSECONDS_PER_SECOND / 10);
|
2008-04-08 08:01:02 +02:00
|
|
|
for (i = 0; i < baum->x * baum->y ; i++) {
|
|
|
|
EAT(c);
|
|
|
|
cells[i] = c;
|
|
|
|
if ((c & (BRLAPI_DOT7|BRLAPI_DOT8))
|
|
|
|
== (BRLAPI_DOT7|BRLAPI_DOT8)) {
|
|
|
|
cursor = i + 1;
|
|
|
|
c &= ~(BRLAPI_DOT7|BRLAPI_DOT8);
|
|
|
|
}
|
2016-10-23 21:54:31 +02:00
|
|
|
c = nabcc_translation[DOTS2ASCII][c];
|
|
|
|
if (!c) {
|
2008-04-08 08:01:02 +02:00
|
|
|
c = '?';
|
2016-10-23 21:54:31 +02:00
|
|
|
}
|
2008-04-08 08:01:02 +02:00
|
|
|
text[i] = c;
|
|
|
|
}
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_del(baum->cellCount_timer);
|
2008-04-08 08:01:02 +02:00
|
|
|
|
2022-08-19 17:39:22 +02:00
|
|
|
memset(zero, 0, baum->x * baum->y);
|
2008-04-08 08:01:02 +02:00
|
|
|
|
|
|
|
brlapi_writeArguments_t wa = {
|
|
|
|
.displayNumber = BRLAPI_DISPLAY_DEFAULT,
|
|
|
|
.regionBegin = 1,
|
|
|
|
.regionSize = baum->x * baum->y,
|
2009-06-13 15:19:25 +02:00
|
|
|
.text = (char *)text,
|
2008-04-08 08:01:02 +02:00
|
|
|
.textSize = baum->x * baum->y,
|
|
|
|
.andMask = zero,
|
|
|
|
.orMask = cells,
|
|
|
|
.cursor = cursor,
|
2009-06-13 15:19:25 +02:00
|
|
|
.charset = (char *)"ISO-8859-1",
|
2008-04-08 08:01:02 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
if (brlapi__write(baum->brlapi, &wa) == -1)
|
|
|
|
brlapi_perror("baum brlapi_write");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BAUM_REQ_SetMode:
|
|
|
|
{
|
|
|
|
uint8_t mode, setting;
|
|
|
|
DPRINTF("SetMode\n");
|
|
|
|
EAT(mode);
|
|
|
|
EAT(setting);
|
|
|
|
/* ignore */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BAUM_REQ_SetProtocol:
|
|
|
|
{
|
|
|
|
uint8_t protocol;
|
|
|
|
DPRINTF("SetProtocol\n");
|
|
|
|
EAT(protocol);
|
|
|
|
/* ignore */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BAUM_REQ_GetDeviceIdentity:
|
|
|
|
{
|
|
|
|
uint8_t identity[17] = { BAUM_RSP_DeviceIdentity,
|
|
|
|
'B','a','u','m',' ','V','a','r','i','o' };
|
|
|
|
DPRINTF("GetDeviceIdentity\n");
|
|
|
|
identity[11] = '0' + baum->x / 10;
|
|
|
|
identity[12] = '0' + baum->x % 10;
|
|
|
|
baum_write_packet(baum, identity, sizeof(identity));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BAUM_REQ_GetVersionNumber:
|
|
|
|
{
|
|
|
|
uint8_t version[] = { BAUM_RSP_VersionNumber, 1 }; /* ? */
|
|
|
|
DPRINTF("GetVersionNumber\n");
|
|
|
|
baum_write_packet(baum, version, sizeof(version));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BAUM_REQ_GetSerialNumber:
|
|
|
|
{
|
|
|
|
uint8_t serial[] = { BAUM_RSP_SerialNumber,
|
|
|
|
'0','0','0','0','0','0','0','0' };
|
|
|
|
DPRINTF("GetSerialNumber\n");
|
|
|
|
baum_write_packet(baum, serial, sizeof(serial));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case BAUM_REQ_GetKeys:
|
|
|
|
{
|
|
|
|
DPRINTF("Get%0#2x\n", req);
|
|
|
|
/* ignore */
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
DPRINTF("unrecognized request %0#2x\n", req);
|
|
|
|
do
|
|
|
|
if (!len--)
|
|
|
|
return 0;
|
|
|
|
while (*cur++ != ESC);
|
|
|
|
cur--;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return cur - buf;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The other end is writing some data. Store it and try to interpret */
|
2017-01-05 15:29:48 +01:00
|
|
|
static int baum_chr_write(Chardev *chr, const uint8_t *buf, int len)
|
2008-04-08 08:01:02 +02:00
|
|
|
{
|
2016-12-07 16:39:10 +01:00
|
|
|
BaumChardev *baum = BAUM_CHARDEV(chr);
|
2008-04-08 08:01:02 +02:00
|
|
|
int tocopy, cur, eaten, orig_len = len;
|
|
|
|
|
|
|
|
if (!len)
|
|
|
|
return 0;
|
|
|
|
if (!baum->brlapi)
|
|
|
|
return len;
|
2016-10-23 21:54:32 +02:00
|
|
|
if (!baum_deferred_init(baum))
|
|
|
|
return len;
|
2008-04-08 08:01:02 +02:00
|
|
|
|
|
|
|
while (len) {
|
|
|
|
/* Complete our buffer as much as possible */
|
|
|
|
tocopy = len;
|
|
|
|
if (tocopy > BUF_SIZE - baum->in_buf_used)
|
|
|
|
tocopy = BUF_SIZE - baum->in_buf_used;
|
|
|
|
|
|
|
|
memcpy(baum->in_buf + baum->in_buf_used, buf, tocopy);
|
|
|
|
baum->in_buf_used += tocopy;
|
|
|
|
buf += tocopy;
|
|
|
|
len -= tocopy;
|
|
|
|
|
|
|
|
/* Interpret it as much as possible */
|
|
|
|
cur = 0;
|
|
|
|
while (cur < baum->in_buf_used &&
|
|
|
|
(eaten = baum_eat_packet(baum, baum->in_buf + cur, baum->in_buf_used - cur)))
|
|
|
|
cur += eaten;
|
|
|
|
|
|
|
|
/* Shift the remainder */
|
|
|
|
if (cur) {
|
|
|
|
memmove(baum->in_buf, baum->in_buf + cur, baum->in_buf_used - cur);
|
|
|
|
baum->in_buf_used -= cur;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* And continue if any data left */
|
|
|
|
}
|
|
|
|
return orig_len;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Send the key code to the other end */
|
2016-12-07 14:20:22 +01:00
|
|
|
static void baum_send_key(BaumChardev *baum, uint8_t type, uint8_t value)
|
|
|
|
{
|
2008-04-08 08:01:02 +02:00
|
|
|
uint8_t packet[] = { type, value };
|
|
|
|
DPRINTF("writing key %x %x\n", type, value);
|
|
|
|
baum_write_packet(baum, packet, sizeof(packet));
|
|
|
|
}
|
|
|
|
|
2016-12-07 14:20:22 +01:00
|
|
|
static void baum_send_key2(BaumChardev *baum, uint8_t type, uint8_t value,
|
|
|
|
uint8_t value2)
|
|
|
|
{
|
2016-10-23 21:54:31 +02:00
|
|
|
uint8_t packet[] = { type, value, value2 };
|
|
|
|
DPRINTF("writing key %x %x\n", type, value);
|
|
|
|
baum_write_packet(baum, packet, sizeof(packet));
|
|
|
|
}
|
|
|
|
|
2008-04-08 08:01:02 +02:00
|
|
|
/* We got some data on the BrlAPI socket */
|
|
|
|
static void baum_chr_read(void *opaque)
|
|
|
|
{
|
2016-12-07 16:39:10 +01:00
|
|
|
BaumChardev *baum = BAUM_CHARDEV(opaque);
|
2008-04-08 08:01:02 +02:00
|
|
|
brlapi_keyCode_t code;
|
|
|
|
int ret;
|
|
|
|
if (!baum->brlapi)
|
|
|
|
return;
|
2016-10-23 21:54:32 +02:00
|
|
|
if (!baum_deferred_init(baum))
|
|
|
|
return;
|
2008-04-08 08:01:02 +02:00
|
|
|
while ((ret = brlapi__readKey(baum->brlapi, 0, &code)) == 1) {
|
|
|
|
DPRINTF("got key %"BRLAPI_PRIxKEYCODE"\n", code);
|
|
|
|
/* Emulate */
|
|
|
|
switch (code & BRLAPI_KEY_TYPE_MASK) {
|
|
|
|
case BRLAPI_KEY_TYPE_CMD:
|
|
|
|
switch (code & BRLAPI_KEY_CMD_BLK_MASK) {
|
|
|
|
case BRLAPI_KEY_CMD_ROUTE:
|
|
|
|
baum_send_key(baum, BAUM_RSP_RoutingKey, (code & BRLAPI_KEY_CMD_ARG_MASK)+1);
|
|
|
|
baum_send_key(baum, BAUM_RSP_RoutingKey, 0);
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
switch (code & BRLAPI_KEY_CMD_ARG_MASK) {
|
|
|
|
case BRLAPI_KEY_CMD_FWINLT:
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, BAUM_TL2);
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, 0);
|
|
|
|
break;
|
|
|
|
case BRLAPI_KEY_CMD_FWINRT:
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, BAUM_TR2);
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, 0);
|
|
|
|
break;
|
|
|
|
case BRLAPI_KEY_CMD_LNUP:
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, BAUM_TR1);
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, 0);
|
|
|
|
break;
|
|
|
|
case BRLAPI_KEY_CMD_LNDN:
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, BAUM_TR3);
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, 0);
|
|
|
|
break;
|
|
|
|
case BRLAPI_KEY_CMD_TOP:
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, BAUM_TL1|BAUM_TR1);
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, 0);
|
|
|
|
break;
|
|
|
|
case BRLAPI_KEY_CMD_BOT:
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, BAUM_TL3|BAUM_TR3);
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, 0);
|
|
|
|
break;
|
|
|
|
case BRLAPI_KEY_CMD_TOP_LEFT:
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, BAUM_TL2|BAUM_TR1);
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, 0);
|
|
|
|
break;
|
|
|
|
case BRLAPI_KEY_CMD_BOT_LEFT:
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, BAUM_TL2|BAUM_TR3);
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, 0);
|
|
|
|
break;
|
|
|
|
case BRLAPI_KEY_CMD_HOME:
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, BAUM_TL2|BAUM_TR1|BAUM_TR3);
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, 0);
|
|
|
|
break;
|
|
|
|
case BRLAPI_KEY_CMD_PREFMENU:
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, BAUM_TL1|BAUM_TL3|BAUM_TR1);
|
|
|
|
baum_send_key(baum, BAUM_RSP_TopKeys, 0);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case BRLAPI_KEY_TYPE_SYM:
|
2016-10-23 21:54:31 +02:00
|
|
|
{
|
|
|
|
brlapi_keyCode_t keysym = code & BRLAPI_KEY_CODE_MASK;
|
|
|
|
if (keysym < 0x100) {
|
|
|
|
uint8_t dots = nabcc_translation[ASCII2DOTS][keysym];
|
|
|
|
if (dots) {
|
|
|
|
baum_send_key2(baum, BAUM_RSP_EntryKeys, 0, dots);
|
|
|
|
baum_send_key2(baum, BAUM_RSP_EntryKeys, 0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2008-04-08 08:01:02 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (ret == -1 && (brlapi_errno != BRLAPI_ERROR_LIBCERR || errno != EINTR)) {
|
|
|
|
brlapi_perror("baum: brlapi_readKey");
|
|
|
|
brlapi__closeConnection(baum->brlapi);
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free(baum->brlapi);
|
2008-04-08 08:01:02 +02:00
|
|
|
baum->brlapi = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-08 14:34:33 +01:00
|
|
|
static void char_braille_finalize(Object *obj)
|
2010-03-28 20:39:42 +02:00
|
|
|
{
|
2016-12-08 14:34:33 +01:00
|
|
|
BaumChardev *baum = BAUM_CHARDEV(obj);
|
2010-03-28 20:39:42 +02:00
|
|
|
|
2013-08-21 17:03:08 +02:00
|
|
|
timer_free(baum->cellCount_timer);
|
2010-03-28 20:39:42 +02:00
|
|
|
if (baum->brlapi) {
|
|
|
|
brlapi__closeConnection(baum->brlapi);
|
2011-08-21 05:09:37 +02:00
|
|
|
g_free(baum->brlapi);
|
2010-03-28 20:39:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-07 16:39:10 +01:00
|
|
|
static void baum_chr_open(Chardev *chr,
|
|
|
|
ChardevBackend *backend,
|
|
|
|
bool *be_opened,
|
|
|
|
Error **errp)
|
2008-04-08 08:01:02 +02:00
|
|
|
{
|
2016-12-07 16:39:10 +01:00
|
|
|
BaumChardev *baum = BAUM_CHARDEV(chr);
|
2008-04-08 08:01:02 +02:00
|
|
|
brlapi_handle_t *handle;
|
|
|
|
|
2011-08-21 05:09:37 +02:00
|
|
|
handle = g_malloc0(brlapi_getHandleSize());
|
2008-04-08 08:01:02 +02:00
|
|
|
baum->brlapi = handle;
|
|
|
|
|
|
|
|
baum->brlapi_fd = brlapi__openConnection(handle, NULL, NULL);
|
|
|
|
if (baum->brlapi_fd == -1) {
|
2015-09-29 15:31:26 +02:00
|
|
|
error_setg(errp, "brlapi__openConnection: %s",
|
|
|
|
brlapi_strerror(brlapi_error_location()));
|
2016-12-07 16:39:10 +01:00
|
|
|
g_free(handle);
|
2017-09-23 00:55:33 +02:00
|
|
|
baum->brlapi = NULL;
|
2016-12-07 16:39:10 +01:00
|
|
|
return;
|
2008-04-08 08:01:02 +02:00
|
|
|
}
|
2016-10-23 21:54:32 +02:00
|
|
|
baum->deferred_init = 0;
|
2008-04-08 08:01:02 +02:00
|
|
|
|
2013-08-21 17:03:08 +02:00
|
|
|
baum->cellCount_timer = timer_new_ns(QEMU_CLOCK_VIRTUAL, baum_cellCount_timer_cb, baum);
|
2008-04-08 08:01:02 +02:00
|
|
|
|
|
|
|
qemu_set_fd_handler(baum->brlapi_fd, baum_chr_read, NULL, baum);
|
2016-12-07 16:39:10 +01:00
|
|
|
}
|
2008-04-08 08:01:02 +02:00
|
|
|
|
2016-12-07 16:39:10 +01:00
|
|
|
static void char_braille_class_init(ObjectClass *oc, void *data)
|
|
|
|
{
|
|
|
|
ChardevClass *cc = CHARDEV_CLASS(oc);
|
2008-04-08 08:01:02 +02:00
|
|
|
|
2016-12-07 16:39:10 +01:00
|
|
|
cc->open = baum_chr_open;
|
|
|
|
cc->chr_write = baum_chr_write;
|
|
|
|
cc->chr_accept_input = baum_chr_accept_input;
|
2008-04-08 08:01:02 +02:00
|
|
|
}
|
2013-03-05 18:51:30 +01:00
|
|
|
|
2016-12-07 16:39:10 +01:00
|
|
|
static const TypeInfo char_braille_type_info = {
|
|
|
|
.name = TYPE_CHARDEV_BRAILLE,
|
|
|
|
.parent = TYPE_CHARDEV,
|
|
|
|
.instance_size = sizeof(BaumChardev),
|
2016-12-08 14:34:33 +01:00
|
|
|
.instance_finalize = char_braille_finalize,
|
2016-12-07 16:39:10 +01:00
|
|
|
.class_init = char_braille_class_init,
|
|
|
|
};
|
2021-06-24 12:38:09 +02:00
|
|
|
module_obj(TYPE_CHARDEV_BRAILLE);
|
2016-12-07 16:39:10 +01:00
|
|
|
|
2013-03-05 18:51:30 +01:00
|
|
|
static void register_types(void)
|
|
|
|
{
|
2016-12-07 16:39:10 +01:00
|
|
|
type_register_static(&char_braille_type_info);
|
2013-03-05 18:51:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type_init(register_types);
|