2 * QEMU Baum Braille Device
4 * Copyright (c) 2008 Samuel Thibault
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
24 #include "qemu-common.h"
25 #include "qemu-char.h"
26 #include "qemu-timer.h"
31 #include <brlapi_constants.h>
32 #include <brlapi_keycodes.h>
34 #include <SDL/SDL_syswm.h>
38 #define DPRINTF(fmt, ...) \
39 printf(fmt, ## __VA_ARGS__)
41 #define DPRINTF(fmt, ...)
46 #define BAUM_REQ_DisplayData 0x01
47 #define BAUM_REQ_GetVersionNumber 0x05
48 #define BAUM_REQ_GetKeys 0x08
49 #define BAUM_REQ_SetMode 0x12
50 #define BAUM_REQ_SetProtocol 0x15
51 #define BAUM_REQ_GetDeviceIdentity 0x84
52 #define BAUM_REQ_GetSerialNumber 0x8A
54 #define BAUM_RSP_CellCount 0x01
55 #define BAUM_RSP_VersionNumber 0x05
56 #define BAUM_RSP_ModeSetting 0x11
57 #define BAUM_RSP_CommunicationChannel 0x16
58 #define BAUM_RSP_PowerdownSignal 0x17
59 #define BAUM_RSP_HorizontalSensors 0x20
60 #define BAUM_RSP_VerticalSensors 0x21
61 #define BAUM_RSP_RoutingKeys 0x22
62 #define BAUM_RSP_Switches 0x23
63 #define BAUM_RSP_TopKeys 0x24
64 #define BAUM_RSP_HorizontalSensor 0x25
65 #define BAUM_RSP_VerticalSensor 0x26
66 #define BAUM_RSP_RoutingKey 0x27
67 #define BAUM_RSP_FrontKeys6 0x28
68 #define BAUM_RSP_BackKeys6 0x29
69 #define BAUM_RSP_CommandKeys 0x2B
70 #define BAUM_RSP_FrontKeys10 0x2C
71 #define BAUM_RSP_BackKeys10 0x2D
72 #define BAUM_RSP_EntryKeys 0x33
73 #define BAUM_RSP_JoyStick 0x34
74 #define BAUM_RSP_ErrorCode 0x40
75 #define BAUM_RSP_InfoBlock 0x42
76 #define BAUM_RSP_DeviceIdentity 0x84
77 #define BAUM_RSP_SerialNumber 0x8A
78 #define BAUM_RSP_BluetoothName 0x8C
92 brlapi_handle_t
*brlapi
;
96 uint8_t in_buf
[BUF_SIZE
];
98 uint8_t out_buf
[BUF_SIZE
];
99 uint8_t out_buf_used
, out_buf_ptr
;
101 QEMUTimer
*cellCount_timer
;
104 /* Let's assume NABCC by default */
105 static const uint8_t nabcc_translation
[256] = {
108 #define BRLAPI_DOTS(d1,d2,d3,d4,d5,d6,d7,d8) \
109 ((d1?BRLAPI_DOT1:0)|\
118 [BRLAPI_DOTS(1,0,0,0,0,0,0,0)] = 'a',
119 [BRLAPI_DOTS(1,1,0,0,0,0,0,0)] = 'b',
120 [BRLAPI_DOTS(1,0,0,1,0,0,0,0)] = 'c',
121 [BRLAPI_DOTS(1,0,0,1,1,0,0,0)] = 'd',
122 [BRLAPI_DOTS(1,0,0,0,1,0,0,0)] = 'e',
123 [BRLAPI_DOTS(1,1,0,1,0,0,0,0)] = 'f',
124 [BRLAPI_DOTS(1,1,0,1,1,0,0,0)] = 'g',
125 [BRLAPI_DOTS(1,1,0,0,1,0,0,0)] = 'h',
126 [BRLAPI_DOTS(0,1,0,1,0,0,0,0)] = 'i',
127 [BRLAPI_DOTS(0,1,0,1,1,0,0,0)] = 'j',
128 [BRLAPI_DOTS(1,0,1,0,0,0,0,0)] = 'k',
129 [BRLAPI_DOTS(1,1,1,0,0,0,0,0)] = 'l',
130 [BRLAPI_DOTS(1,0,1,1,0,0,0,0)] = 'm',
131 [BRLAPI_DOTS(1,0,1,1,1,0,0,0)] = 'n',
132 [BRLAPI_DOTS(1,0,1,0,1,0,0,0)] = 'o',
133 [BRLAPI_DOTS(1,1,1,1,0,0,0,0)] = 'p',
134 [BRLAPI_DOTS(1,1,1,1,1,0,0,0)] = 'q',
135 [BRLAPI_DOTS(1,1,1,0,1,0,0,0)] = 'r',
136 [BRLAPI_DOTS(0,1,1,1,0,0,0,0)] = 's',
137 [BRLAPI_DOTS(0,1,1,1,1,0,0,0)] = 't',
138 [BRLAPI_DOTS(1,0,1,0,0,1,0,0)] = 'u',
139 [BRLAPI_DOTS(1,1,1,0,0,1,0,0)] = 'v',
140 [BRLAPI_DOTS(0,1,0,1,1,1,0,0)] = 'w',
141 [BRLAPI_DOTS(1,0,1,1,0,1,0,0)] = 'x',
142 [BRLAPI_DOTS(1,0,1,1,1,1,0,0)] = 'y',
143 [BRLAPI_DOTS(1,0,1,0,1,1,0,0)] = 'z',
145 [BRLAPI_DOTS(1,0,0,0,0,0,1,0)] = 'A',
146 [BRLAPI_DOTS(1,1,0,0,0,0,1,0)] = 'B',
147 [BRLAPI_DOTS(1,0,0,1,0,0,1,0)] = 'C',
148 [BRLAPI_DOTS(1,0,0,1,1,0,1,0)] = 'D',
149 [BRLAPI_DOTS(1,0,0,0,1,0,1,0)] = 'E',
150 [BRLAPI_DOTS(1,1,0,1,0,0,1,0)] = 'F',
151 [BRLAPI_DOTS(1,1,0,1,1,0,1,0)] = 'G',
152 [BRLAPI_DOTS(1,1,0,0,1,0,1,0)] = 'H',
153 [BRLAPI_DOTS(0,1,0,1,0,0,1,0)] = 'I',
154 [BRLAPI_DOTS(0,1,0,1,1,0,1,0)] = 'J',
155 [BRLAPI_DOTS(1,0,1,0,0,0,1,0)] = 'K',
156 [BRLAPI_DOTS(1,1,1,0,0,0,1,0)] = 'L',
157 [BRLAPI_DOTS(1,0,1,1,0,0,1,0)] = 'M',
158 [BRLAPI_DOTS(1,0,1,1,1,0,1,0)] = 'N',
159 [BRLAPI_DOTS(1,0,1,0,1,0,1,0)] = 'O',
160 [BRLAPI_DOTS(1,1,1,1,0,0,1,0)] = 'P',
161 [BRLAPI_DOTS(1,1,1,1,1,0,1,0)] = 'Q',
162 [BRLAPI_DOTS(1,1,1,0,1,0,1,0)] = 'R',
163 [BRLAPI_DOTS(0,1,1,1,0,0,1,0)] = 'S',
164 [BRLAPI_DOTS(0,1,1,1,1,0,1,0)] = 'T',
165 [BRLAPI_DOTS(1,0,1,0,0,1,1,0)] = 'U',
166 [BRLAPI_DOTS(1,1,1,0,0,1,1,0)] = 'V',
167 [BRLAPI_DOTS(0,1,0,1,1,1,1,0)] = 'W',
168 [BRLAPI_DOTS(1,0,1,1,0,1,1,0)] = 'X',
169 [BRLAPI_DOTS(1,0,1,1,1,1,1,0)] = 'Y',
170 [BRLAPI_DOTS(1,0,1,0,1,1,1,0)] = 'Z',
172 [BRLAPI_DOTS(0,0,1,0,1,1,0,0)] = '0',
173 [BRLAPI_DOTS(0,1,0,0,0,0,0,0)] = '1',
174 [BRLAPI_DOTS(0,1,1,0,0,0,0,0)] = '2',
175 [BRLAPI_DOTS(0,1,0,0,1,0,0,0)] = '3',
176 [BRLAPI_DOTS(0,1,0,0,1,1,0,0)] = '4',
177 [BRLAPI_DOTS(0,1,0,0,0,1,0,0)] = '5',
178 [BRLAPI_DOTS(0,1,1,0,1,0,0,0)] = '6',
179 [BRLAPI_DOTS(0,1,1,0,1,1,0,0)] = '7',
180 [BRLAPI_DOTS(0,1,1,0,0,1,0,0)] = '8',
181 [BRLAPI_DOTS(0,0,1,0,1,0,0,0)] = '9',
183 [BRLAPI_DOTS(0,0,0,1,0,1,0,0)] = '.',
184 [BRLAPI_DOTS(0,0,1,1,0,1,0,0)] = '+',
185 [BRLAPI_DOTS(0,0,1,0,0,1,0,0)] = '-',
186 [BRLAPI_DOTS(1,0,0,0,0,1,0,0)] = '*',
187 [BRLAPI_DOTS(0,0,1,1,0,0,0,0)] = '/',
188 [BRLAPI_DOTS(1,1,1,0,1,1,0,0)] = '(',
189 [BRLAPI_DOTS(0,1,1,1,1,1,0,0)] = ')',
191 [BRLAPI_DOTS(1,1,1,1,0,1,0,0)] = '&',
192 [BRLAPI_DOTS(0,0,1,1,1,1,0,0)] = '#',
194 [BRLAPI_DOTS(0,0,0,0,0,1,0,0)] = ',',
195 [BRLAPI_DOTS(0,0,0,0,1,1,0,0)] = ';',
196 [BRLAPI_DOTS(1,0,0,0,1,1,0,0)] = ':',
197 [BRLAPI_DOTS(0,1,1,1,0,1,0,0)] = '!',
198 [BRLAPI_DOTS(1,0,0,1,1,1,0,0)] = '?',
199 [BRLAPI_DOTS(0,0,0,0,1,0,0,0)] = '"',
200 [BRLAPI_DOTS(0,0,1,0,0,0,0,0)] ='\'',
201 [BRLAPI_DOTS(0,0,0,1,0,0,0,0)] = '`',
202 [BRLAPI_DOTS(0,0,0,1,1,0,1,0)] = '^',
203 [BRLAPI_DOTS(0,0,0,1,1,0,0,0)] = '~',
204 [BRLAPI_DOTS(0,1,0,1,0,1,1,0)] = '[',
205 [BRLAPI_DOTS(1,1,0,1,1,1,1,0)] = ']',
206 [BRLAPI_DOTS(0,1,0,1,0,1,0,0)] = '{',
207 [BRLAPI_DOTS(1,1,0,1,1,1,0,0)] = '}',
208 [BRLAPI_DOTS(1,1,1,1,1,1,0,0)] = '=',
209 [BRLAPI_DOTS(1,1,0,0,0,1,0,0)] = '<',
210 [BRLAPI_DOTS(0,0,1,1,1,0,0,0)] = '>',
211 [BRLAPI_DOTS(1,1,0,1,0,1,0,0)] = '$',
212 [BRLAPI_DOTS(1,0,0,1,0,1,0,0)] = '%',
213 [BRLAPI_DOTS(0,0,0,1,0,0,1,0)] = '@',
214 [BRLAPI_DOTS(1,1,0,0,1,1,0,0)] = '|',
215 [BRLAPI_DOTS(1,1,0,0,1,1,1,0)] ='\\',
216 [BRLAPI_DOTS(0,0,0,1,1,1,0,0)] = '_',
219 /* The serial port can receive more of our data */
220 static void baum_accept_input(struct CharDriverState
*chr
)
222 BaumDriverState
*baum
= chr
->opaque
;
225 if (!baum
->out_buf_used
)
227 room
= qemu_chr_can_read(chr
);
230 if (room
> baum
->out_buf_used
)
231 room
= baum
->out_buf_used
;
233 first
= BUF_SIZE
- baum
->out_buf_ptr
;
235 qemu_chr_read(chr
, baum
->out_buf
+ baum
->out_buf_ptr
, first
);
236 baum
->out_buf_ptr
= 0;
237 baum
->out_buf_used
-= first
;
240 qemu_chr_read(chr
, baum
->out_buf
+ baum
->out_buf_ptr
, room
);
241 baum
->out_buf_ptr
+= room
;
242 baum
->out_buf_used
-= room
;
245 /* We want to send a packet */
246 static void baum_write_packet(BaumDriverState
*baum
, const uint8_t *buf
, int len
)
248 uint8_t io_buf
[1 + 2 * len
], *cur
= io_buf
;
252 if ((*cur
++ = *buf
++) == ESC
)
254 room
= qemu_chr_can_read(baum
->chr
);
258 qemu_chr_read(baum
->chr
, io_buf
, len
);
262 /* Can't fit all, send what can be, and store the rest. */
263 qemu_chr_read(baum
->chr
, io_buf
, room
);
266 if (len
> BUF_SIZE
- baum
->out_buf_used
) {
267 /* Can't even store it, drop the previous data... */
268 assert(len
<= BUF_SIZE
);
269 baum
->out_buf_used
= 0;
270 baum
->out_buf_ptr
= 0;
272 out
= baum
->out_buf_ptr
;
273 baum
->out_buf_used
+= len
;
274 first
= BUF_SIZE
- baum
->out_buf_ptr
;
276 memcpy(baum
->out_buf
+ out
, cur
, first
);
281 memcpy(baum
->out_buf
+ out
, cur
, len
);
285 /* Called when the other end seems to have a wrong idea of our display size */
286 static void baum_cellCount_timer_cb(void *opaque
)
288 BaumDriverState
*baum
= opaque
;
289 uint8_t cell_count
[] = { BAUM_RSP_CellCount
, baum
->x
* baum
->y
};
290 DPRINTF("Timeout waiting for DisplayData, sending cell count\n");
291 baum_write_packet(baum
, cell_count
, sizeof(cell_count
));
294 /* Try to interpret a whole incoming packet */
295 static int baum_eat_packet(BaumDriverState
*baum
, const uint8_t *buf
, int len
)
297 const uint8_t *cur
= buf
;
303 while (*cur
!= ESC
) {
308 DPRINTF("Dropped %d bytes!\n", cur
- buf
);
314 if ((c = *cur++) == ESC) { \
317 if (*cur++ != ESC) { \
318 DPRINTF("Broken packet %#2x, tossing\n", req); \
319 if (qemu_timer_pending(baum->cellCount_timer)) { \
320 qemu_del_timer(baum->cellCount_timer); \
321 baum_cellCount_timer_cb(baum); \
323 return (cur - 2 - buf); \
330 case BAUM_REQ_DisplayData
:
332 uint8_t cells
[baum
->x
* baum
->y
], c
;
333 uint8_t text
[baum
->x
* baum
->y
];
334 uint8_t zero
[baum
->x
* baum
->y
];
335 int cursor
= BRLAPI_CURSOR_OFF
;
338 /* Allow 100ms to complete the DisplayData packet */
339 qemu_mod_timer(baum
->cellCount_timer
, qemu_get_clock(vm_clock
) + ticks_per_sec
/ 10);
340 for (i
= 0; i
< baum
->x
* baum
->y
; i
++) {
343 if ((c
& (BRLAPI_DOT7
|BRLAPI_DOT8
))
344 == (BRLAPI_DOT7
|BRLAPI_DOT8
)) {
346 c
&= ~(BRLAPI_DOT7
|BRLAPI_DOT8
);
348 if (!(c
= nabcc_translation
[c
]))
352 qemu_del_timer(baum
->cellCount_timer
);
354 memset(zero
, 0, sizeof(zero
));
356 brlapi_writeArguments_t wa
= {
357 .displayNumber
= BRLAPI_DISPLAY_DEFAULT
,
359 .regionSize
= baum
->x
* baum
->y
,
361 .textSize
= baum
->x
* baum
->y
,
365 .charset
= "ISO-8859-1",
368 if (brlapi__write(baum
->brlapi
, &wa
) == -1)
369 brlapi_perror("baum brlapi_write");
372 case BAUM_REQ_SetMode
:
374 uint8_t mode
, setting
;
375 DPRINTF("SetMode\n");
381 case BAUM_REQ_SetProtocol
:
384 DPRINTF("SetProtocol\n");
389 case BAUM_REQ_GetDeviceIdentity
:
391 uint8_t identity
[17] = { BAUM_RSP_DeviceIdentity
,
392 'B','a','u','m',' ','V','a','r','i','o' };
393 DPRINTF("GetDeviceIdentity\n");
394 identity
[11] = '0' + baum
->x
/ 10;
395 identity
[12] = '0' + baum
->x
% 10;
396 baum_write_packet(baum
, identity
, sizeof(identity
));
399 case BAUM_REQ_GetVersionNumber
:
401 uint8_t version
[] = { BAUM_RSP_VersionNumber
, 1 }; /* ? */
402 DPRINTF("GetVersionNumber\n");
403 baum_write_packet(baum
, version
, sizeof(version
));
406 case BAUM_REQ_GetSerialNumber
:
408 uint8_t serial
[] = { BAUM_RSP_SerialNumber
,
409 '0','0','0','0','0','0','0','0' };
410 DPRINTF("GetSerialNumber\n");
411 baum_write_packet(baum
, serial
, sizeof(serial
));
414 case BAUM_REQ_GetKeys
:
416 DPRINTF("Get%0#2x\n", req
);
421 DPRINTF("unrecognized request %0#2x\n", req
);
425 while (*cur
++ != ESC
);
432 /* The other end is writing some data. Store it and try to interpret */
433 static int baum_write(CharDriverState
*chr
, const uint8_t *buf
, int len
)
435 BaumDriverState
*baum
= chr
->opaque
;
436 int tocopy
, cur
, eaten
, orig_len
= len
;
444 /* Complete our buffer as much as possible */
446 if (tocopy
> BUF_SIZE
- baum
->in_buf_used
)
447 tocopy
= BUF_SIZE
- baum
->in_buf_used
;
449 memcpy(baum
->in_buf
+ baum
->in_buf_used
, buf
, tocopy
);
450 baum
->in_buf_used
+= tocopy
;
454 /* Interpret it as much as possible */
456 while (cur
< baum
->in_buf_used
&&
457 (eaten
= baum_eat_packet(baum
, baum
->in_buf
+ cur
, baum
->in_buf_used
- cur
)))
460 /* Shift the remainder */
462 memmove(baum
->in_buf
, baum
->in_buf
+ cur
, baum
->in_buf_used
- cur
);
463 baum
->in_buf_used
-= cur
;
466 /* And continue if any data left */
471 /* The other end sent us some event */
472 static void baum_send_event(CharDriverState
*chr
, int event
)
474 BaumDriverState
*baum
= chr
->opaque
;
476 case CHR_EVENT_BREAK
:
478 case CHR_EVENT_RESET
:
480 baum
->in_buf_used
= 0;
485 /* Send the key code to the other end */
486 static void baum_send_key(BaumDriverState
*baum
, uint8_t type
, uint8_t value
) {
487 uint8_t packet
[] = { type
, value
};
488 DPRINTF("writing key %x %x\n", type
, value
);
489 baum_write_packet(baum
, packet
, sizeof(packet
));
492 /* We got some data on the BrlAPI socket */
493 static void baum_chr_read(void *opaque
)
495 BaumDriverState
*baum
= opaque
;
496 brlapi_keyCode_t code
;
500 while ((ret
= brlapi__readKey(baum
->brlapi
, 0, &code
)) == 1) {
501 DPRINTF("got key %"BRLAPI_PRIxKEYCODE
"\n", code
);
503 switch (code
& BRLAPI_KEY_TYPE_MASK
) {
504 case BRLAPI_KEY_TYPE_CMD
:
505 switch (code
& BRLAPI_KEY_CMD_BLK_MASK
) {
506 case BRLAPI_KEY_CMD_ROUTE
:
507 baum_send_key(baum
, BAUM_RSP_RoutingKey
, (code
& BRLAPI_KEY_CMD_ARG_MASK
)+1);
508 baum_send_key(baum
, BAUM_RSP_RoutingKey
, 0);
511 switch (code
& BRLAPI_KEY_CMD_ARG_MASK
) {
512 case BRLAPI_KEY_CMD_FWINLT
:
513 baum_send_key(baum
, BAUM_RSP_TopKeys
, BAUM_TL2
);
514 baum_send_key(baum
, BAUM_RSP_TopKeys
, 0);
516 case BRLAPI_KEY_CMD_FWINRT
:
517 baum_send_key(baum
, BAUM_RSP_TopKeys
, BAUM_TR2
);
518 baum_send_key(baum
, BAUM_RSP_TopKeys
, 0);
520 case BRLAPI_KEY_CMD_LNUP
:
521 baum_send_key(baum
, BAUM_RSP_TopKeys
, BAUM_TR1
);
522 baum_send_key(baum
, BAUM_RSP_TopKeys
, 0);
524 case BRLAPI_KEY_CMD_LNDN
:
525 baum_send_key(baum
, BAUM_RSP_TopKeys
, BAUM_TR3
);
526 baum_send_key(baum
, BAUM_RSP_TopKeys
, 0);
528 case BRLAPI_KEY_CMD_TOP
:
529 baum_send_key(baum
, BAUM_RSP_TopKeys
, BAUM_TL1
|BAUM_TR1
);
530 baum_send_key(baum
, BAUM_RSP_TopKeys
, 0);
532 case BRLAPI_KEY_CMD_BOT
:
533 baum_send_key(baum
, BAUM_RSP_TopKeys
, BAUM_TL3
|BAUM_TR3
);
534 baum_send_key(baum
, BAUM_RSP_TopKeys
, 0);
536 case BRLAPI_KEY_CMD_TOP_LEFT
:
537 baum_send_key(baum
, BAUM_RSP_TopKeys
, BAUM_TL2
|BAUM_TR1
);
538 baum_send_key(baum
, BAUM_RSP_TopKeys
, 0);
540 case BRLAPI_KEY_CMD_BOT_LEFT
:
541 baum_send_key(baum
, BAUM_RSP_TopKeys
, BAUM_TL2
|BAUM_TR3
);
542 baum_send_key(baum
, BAUM_RSP_TopKeys
, 0);
544 case BRLAPI_KEY_CMD_HOME
:
545 baum_send_key(baum
, BAUM_RSP_TopKeys
, BAUM_TL2
|BAUM_TR1
|BAUM_TR3
);
546 baum_send_key(baum
, BAUM_RSP_TopKeys
, 0);
548 case BRLAPI_KEY_CMD_PREFMENU
:
549 baum_send_key(baum
, BAUM_RSP_TopKeys
, BAUM_TL1
|BAUM_TL3
|BAUM_TR1
);
550 baum_send_key(baum
, BAUM_RSP_TopKeys
, 0);
555 case BRLAPI_KEY_TYPE_SYM
:
559 if (ret
== -1 && (brlapi_errno
!= BRLAPI_ERROR_LIBCERR
|| errno
!= EINTR
)) {
560 brlapi_perror("baum: brlapi_readKey");
561 brlapi__closeConnection(baum
->brlapi
);
567 CharDriverState
*chr_baum_init(void)
569 BaumDriverState
*baum
;
570 CharDriverState
*chr
;
571 brlapi_handle_t
*handle
;
577 baum
= qemu_mallocz(sizeof(BaumDriverState
));
578 baum
->chr
= chr
= qemu_mallocz(sizeof(CharDriverState
));
581 chr
->chr_write
= baum_write
;
582 chr
->chr_send_event
= baum_send_event
;
583 chr
->chr_accept_input
= baum_accept_input
;
585 handle
= qemu_mallocz(brlapi_getHandleSize());
586 baum
->brlapi
= handle
;
588 baum
->brlapi_fd
= brlapi__openConnection(handle
, NULL
, NULL
);
589 if (baum
->brlapi_fd
== -1) {
590 brlapi_perror("baum_init: brlapi_openConnection");
594 baum
->cellCount_timer
= qemu_new_timer(vm_clock
, baum_cellCount_timer_cb
, baum
);
596 if (brlapi__getDisplaySize(handle
, &baum
->x
, &baum
->y
) == -1) {
597 brlapi_perror("baum_init: brlapi_getDisplaySize");
602 memset(&info
, 0, sizeof(info
));
603 SDL_VERSION(&info
.version
);
604 if (SDL_GetWMInfo(&info
))
605 tty
= info
.info
.x11
.wmwindow
;
608 tty
= BRLAPI_TTY_DEFAULT
;
610 if (brlapi__enterTtyMode(handle
, tty
, NULL
) == -1) {
611 brlapi_perror("baum_init: brlapi_enterTtyMode");
615 qemu_set_fd_handler(baum
->brlapi_fd
, baum_chr_read
, NULL
, baum
);
622 qemu_free_timer(baum
->cellCount_timer
);
623 brlapi__closeConnection(handle
);
631 USBDevice
*usb_baum_init(void)
633 /* USB Product ID of Super Vario 40 */
634 return usb_serial_init("productid=FE72:braille");