1 | /* $Id: serial.c 96407 2022-08-22 17:43:14Z vboxsync $ */
|
---|
2 | /** @file
|
---|
3 | * PC BIOS - ???
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2022 Oracle and/or its affiliates.
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox base platform packages, as
|
---|
10 | * available from https://www.virtualbox.org.
|
---|
11 | *
|
---|
12 | * This program is free software; you can redistribute it and/or
|
---|
13 | * modify it under the terms of the GNU General Public License
|
---|
14 | * as published by the Free Software Foundation, in version 3 of the
|
---|
15 | * License.
|
---|
16 | *
|
---|
17 | * This program is distributed in the hope that it will be useful, but
|
---|
18 | * WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
20 | * General Public License for more details.
|
---|
21 | *
|
---|
22 | * You should have received a copy of the GNU General Public License
|
---|
23 | * along with this program; if not, see <https://www.gnu.org/licenses>.
|
---|
24 | *
|
---|
25 | * SPDX-License-Identifier: GPL-3.0-only
|
---|
26 | * --------------------------------------------------------------------
|
---|
27 | *
|
---|
28 | * This code is based on:
|
---|
29 | *
|
---|
30 | * ROM BIOS for use with Bochs/Plex86/QEMU emulation environment
|
---|
31 | *
|
---|
32 | * Copyright (C) 2002 MandrakeSoft S.A.
|
---|
33 | *
|
---|
34 | * MandrakeSoft S.A.
|
---|
35 | * 43, rue d'Aboukir
|
---|
36 | * 75002 Paris - France
|
---|
37 | * http://www.linux-mandrake.com/
|
---|
38 | * http://www.mandrakesoft.com/
|
---|
39 | *
|
---|
40 | * This library is free software; you can redistribute it and/or
|
---|
41 | * modify it under the terms of the GNU Lesser General Public
|
---|
42 | * License as published by the Free Software Foundation; either
|
---|
43 | * version 2 of the License, or (at your option) any later version.
|
---|
44 | *
|
---|
45 | * This library is distributed in the hope that it will be useful,
|
---|
46 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
47 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
---|
48 | * Lesser General Public License for more details.
|
---|
49 | *
|
---|
50 | * You should have received a copy of the GNU Lesser General Public
|
---|
51 | * License along with this library; if not, write to the Free Software
|
---|
52 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
---|
53 | *
|
---|
54 | */
|
---|
55 |
|
---|
56 | /*
|
---|
57 | * Oracle LGPL Disclaimer: For the avoidance of doubt, except that if any license choice
|
---|
58 | * other than GPL or LGPL is available it will apply instead, Oracle elects to use only
|
---|
59 | * the Lesser General Public License version 2.1 (LGPLv2) at this time for any software where
|
---|
60 | * a choice of LGPL license versions is made available with the language indicating
|
---|
61 | * that LGPLv2 or any later version may be used, or where a choice of which version
|
---|
62 | * of the LGPL is applied is otherwise unspecified.
|
---|
63 | */
|
---|
64 |
|
---|
65 |
|
---|
66 | #include <stdint.h>
|
---|
67 | #include "inlines.h"
|
---|
68 | #include "biosint.h"
|
---|
69 |
|
---|
70 | void BIOSCALL int14_function(pusha_regs_t regs, uint16_t es, uint16_t ds, volatile iret_addr_t iret_addr)
|
---|
71 | {
|
---|
72 | uint16_t addr, timer, val16;
|
---|
73 | uint8_t timeout;
|
---|
74 |
|
---|
75 | int_enable();
|
---|
76 |
|
---|
77 | addr = read_word(0x0040, (regs.u.r16.dx << 1));
|
---|
78 | timeout = read_byte(0x0040, 0x007C + regs.u.r16.dx);
|
---|
79 | if ((regs.u.r16.dx < 4) && (addr > 0)) {
|
---|
80 | switch (regs.u.r8.ah) {
|
---|
81 | case 0:
|
---|
82 | outb(addr+3, inb(addr+3) | 0x80);
|
---|
83 | if ((regs.u.r8.al & 0xE0) == 0) {
|
---|
84 | outb(addr, 0x17);
|
---|
85 | outb(addr+1, 0x04);
|
---|
86 | } else {
|
---|
87 | val16 = 0x600 >> ((regs.u.r8.al & 0xE0) >> 5);
|
---|
88 | outb(addr, val16 & 0xFF);
|
---|
89 | outb(addr+1, val16 >> 8);
|
---|
90 | }
|
---|
91 | outb(addr+3, regs.u.r8.al & 0x1F);
|
---|
92 | regs.u.r8.ah = inb(addr+5);
|
---|
93 | regs.u.r8.al = inb(addr+6);
|
---|
94 | ClearCF(iret_addr.flags);
|
---|
95 | break;
|
---|
96 | case 1:
|
---|
97 | timer = read_word(0x0040, 0x006C);
|
---|
98 | while (((inb(addr+5) & 0x60) != 0x60) && (timeout)) {
|
---|
99 | val16 = read_word(0x0040, 0x006C);
|
---|
100 | if (val16 != timer) {
|
---|
101 | timer = val16;
|
---|
102 | timeout--;
|
---|
103 | }
|
---|
104 | }
|
---|
105 | if (timeout) outb(addr, regs.u.r8.al);
|
---|
106 | regs.u.r8.ah = inb(addr+5);
|
---|
107 | if (!timeout) regs.u.r8.ah |= 0x80;
|
---|
108 | ClearCF(iret_addr.flags);
|
---|
109 | break;
|
---|
110 | case 2:
|
---|
111 | timer = read_word(0x0040, 0x006C);
|
---|
112 | while (((inb(addr+5) & 0x01) == 0) && (timeout)) {
|
---|
113 | val16 = read_word(0x0040, 0x006C);
|
---|
114 | if (val16 != timer) {
|
---|
115 | timer = val16;
|
---|
116 | timeout--;
|
---|
117 | }
|
---|
118 | }
|
---|
119 | if (timeout) {
|
---|
120 | regs.u.r8.ah = 0;
|
---|
121 | regs.u.r8.al = inb(addr);
|
---|
122 | } else {
|
---|
123 | regs.u.r8.ah = inb(addr+5);
|
---|
124 | }
|
---|
125 | ClearCF(iret_addr.flags);
|
---|
126 | break;
|
---|
127 | case 3:
|
---|
128 | regs.u.r8.ah = inb(addr+5);
|
---|
129 | regs.u.r8.al = inb(addr+6);
|
---|
130 | ClearCF(iret_addr.flags);
|
---|
131 | break;
|
---|
132 | default:
|
---|
133 | SetCF(iret_addr.flags); // Unsupported
|
---|
134 | }
|
---|
135 | } else {
|
---|
136 | SetCF(iret_addr.flags); // Unsupported
|
---|
137 | }
|
---|
138 | }
|
---|