File: io.c

package info (click to toggle)
plex86 0.0.20011018-8
  • links: PTS
  • area: main
  • in suites: woody
  • size: 4,868 kB
  • ctags: 8,721
  • sloc: ansic: 46,915; cpp: 17,817; xml: 1,283; makefile: 1,130; sh: 451; asm: 360; csh: 18
file content (432 lines) | stat: -rw-r--r-- 10,488 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
/*
 *  plex86: run multiple x86 operating systems concurrently
 *  Copyright (C) 1999-2001 Kevin P. Lawton
 *
 *  io.c: IO oriented instructions.
 *
 *  This library is free software; you can redistribute it and/or
 *  modify it under the terms of the GNU Lesser General Public
 *  License as published by the Free Software Foundation; either
 *  version 2 of the License, or (at your option) any later version.
 *
 *  This library is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 *  Lesser General Public License for more details.
 *
 *  You should have received a copy of the GNU Lesser General Public
 *  License along with this library; if not, write to the Free Software
 *  Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 */



#include "plex86.h"
#include "monitor.h"


  void
INSB_YbDX(vm_t *vm)
{
  Bit32u edi;
  Bit8u value8=0;

  IOPermCheck(vm, G_DX(vm), 1);

  if (vm->i.as_32)
    edi = G_EDI(vm);
  else
    edi = G_DI(vm);

  /* Write a zero to memory, to trigger any segment or page */
  /* faults before reading from IO port. */
  write_virtual_byte(vm, SRegES, edi, &value8);

  value8 = sysIOIn(vm, G_DX(vm), 1);

  /* no seg override allowed */
  write_virtual_byte(vm, SRegES, edi, &value8);

  if (vm->i.as_32) {
    if (G_GetDF(vm))
      G_EDI(vm) -= 1;
    else
      G_EDI(vm) += 1;
    }
  else {
    if (G_GetDF(vm))
      G_DI(vm) -= 1;
    else
      G_DI(vm) += 1;
    }
}

  void
INSW_YvDX(vm_t *vm)
  /* input word/doubleword from port to string */
{
  Bit32u edi;
  unsigned int incr;

  if (vm->i.as_32)
    edi = G_EDI(vm);
  else
    edi = G_DI(vm);

  if (vm->i.os_32) {
    Bit32u value32=0;

    IOPermCheck(vm, G_DX(vm), 4);

    /* Write a zero to memory, to trigger any segment or page */
    /* faults before reading from IO port. */
    write_virtual_dword(vm, SRegES, edi, &value32);

    value32 = sysIOIn(vm, G_DX(vm), 4);

    /* no seg override allowed */
    write_virtual_dword(vm, SRegES, edi, &value32);
    incr = 4;
    }
  else {
    Bit16u value16=0;

    IOPermCheck(vm, G_DX(vm), 2);

#if COSIMULATE == 0
    /* If conditions are right, we can transfer IO to physical memory
     * in a batch, rather than one instruction at a time.
     */
    if (vm->i.rep_used) {
      Bit32u count_requested, count_actual;
      if (vm->i.as_32)
        count_requested = G_ECX(vm);
      else
        count_requested = G_CX(vm);
      if (count_requested == 256) {
        Bit32u laddr, paddr, ppi, words;
        phy_page_usage_t *pusage;

        cache_sreg(vm, SRegES);
        /* Do guest segment access checks */
#warning "IO batch hack needs segment access checks"

        /* Translate guest linear addr to physical addr and do page
         * permissions check if CR0.PG=1.
         */
        laddr = vm->guest_cpu.desc_cache[SRegES].base + edi;
        if (vm->guest_cpu.cr0.fields.pg)
          paddr = dtranslate_linear(vm, laddr, G_CPL(vm)==3, OP_WRITE);
        else
          paddr = A20Addr(vm, laddr);

        /* Get monitor phy page attributes; check attr for RW perms */
        ppi = paddr >> 12;
        if (ppi >= vm->pages.guest_n_pages)
          monpanic(vm, "INSW: ppi>n_pages\n");
        pusage = getPageUsage(vm, ppi);
        /* See if special monitor protections allow for a write to
         * this physical address.  If not, there may be special constructs
         * in memory in this page.
         */
        if ( (pusage->attr.fields.access_perm == PagePermRO) &&
             (pusage->attr.fields.vcode) ) {
          /* This write will invalide the page cache.  We might as well
           * do this now, and fall through to the next check.  If this
           * upgrades the permissions to RW, then we saved some time.
           */
          removePageAttributes(vm, ppi, PageUsageVCode);
          }
        if (pusage->attr.fields.access_perm == PagePermRW) {
          /* See how many words can fit in the rest of this page */
          words = (0x1000 - (paddr & 0xfff)) >> 1;
          if (words) {
            /* Restrict word count to the number that will fit in this
             * page. */
            if (count_requested > words)
              count_requested = words;
            count_actual = sysIOInBatch(vm, G_DX(vm), 2, count_requested,
                                        paddr);
            if ( (count_actual > count_requested) ||
                 (count_actual == 0) )
              monpanic(vm, "INSW: count req=%u, actual=%u.\n",
                       count_requested, count_actual);
            vm->system.cyclesElapsed += count_actual * CyclesPerInstruction;
            /* Decrement eCX.  Note, the main loop will decrement 1 */
            if (vm->i.as_32)
              G_ECX(vm) -= (count_actual-1);
            else
              G_CX(vm)  -= (count_actual-1);
            incr = count_actual << 1; /* count * 2 */
            goto do_incr;
            }
          }
        }
      }
#endif

    /* Write a zero to memory, to trigger any segment or page */
    /* faults before reading from IO port. */
    write_virtual_word(vm, SRegES, edi, &value16);

    value16 = sysIOIn(vm, G_DX(vm), 2);

    /* no seg override allowed */
    write_virtual_word(vm, SRegES, edi, &value16);
    incr = 2;
    }

#if COSIMULATE == 0
do_incr:
#endif

  if (vm->i.as_32) {
    if (G_GetDF(vm))
      G_EDI(vm) -= incr;
    else
      G_EDI(vm) += incr;
    }
  else {
    if (G_GetDF(vm))
      G_DI(vm) -= incr;
    else
      G_DI(vm) += incr;
    }
}

  void
OUTSW_DXXv(vm_t *vm)
{
  unsigned seg;
  Bit32u esi;
  unsigned int incr;

  if (!NULL_SEG_REG(vm->i.seg)) {
    seg = vm->i.seg;
    }
  else {
    seg = SRegDS;
    }

  if (vm->i.as_32)
    esi = G_ESI(vm);
  else
    esi = G_SI(vm);

  if (vm->i.os_32) {
    Bit32u value32;

    IOPermCheck(vm, G_DX(vm), 4);

    read_virtual_dword(vm, seg, esi, &value32);

    sysIOOut(vm, G_DX(vm), 4, value32);
    incr = 4;
    }
  else {
    Bit16u value16;

    IOPermCheck(vm, G_DX(vm), 2);

#if COSIMULATE == 0
    /* If conditions are right, we can transfer IO to physical memory
     * in a batch, rather than one instruction at a time.
     */
    if (vm->i.rep_used) {
      Bit32u count_requested, count_actual;
      if (vm->i.as_32)
        count_requested = G_ECX(vm);
      else
        count_requested = G_CX(vm);
      if (count_requested == 256) { /* Geared for disk sector access. */
        Bit32u laddr, paddr, ppi, words;
        phy_page_usage_t *pusage;

        cache_sreg(vm, SRegES);
        /* Do guest segment access checks */
#warning "IO batch hack needs segment access checks"

        /* Translate guest linear addr to physical addr and do page
         * permissions check if CR0.PG=1.
         */
        laddr = vm->guest_cpu.desc_cache[seg].base + esi;
        if (vm->guest_cpu.cr0.fields.pg)
          paddr = dtranslate_linear(vm, laddr, G_CPL(vm)==3, OP_READ);
        else
          paddr = A20Addr(vm, laddr);

        /* Get monitor phy page attributes; check attr for RW perms */
        ppi = paddr >> 12;
        if (ppi >= vm->pages.guest_n_pages)
          monpanic(vm, "OUTSW: ppi>n_pages\n");
        pusage = getPageUsage(vm, ppi);
        if (pusage->attr.fields.access_perm != PagePermEmulate) {
          /* See how many words can fit in the rest of this page */
          words = (0x1000 - (paddr & 0xfff)) >> 1;
          if (words) {
            /* Restrict word count to the number that will fit in this
             * page. */
            if (count_requested > words)
              count_requested = words;
            count_actual = sysIOOutBatch(vm, G_DX(vm), 2, count_requested,
                                         paddr);
            if ( (count_actual > count_requested) ||
                 (count_actual == 0) )
              monpanic(vm, "OUTSW: count req=%u, actual=%u.\n",
                       count_requested, count_actual);
            vm->system.cyclesElapsed += count_actual * CyclesPerInstruction;
            /* Decrement eCX.  Note, the main loop will decrement 1 */
            if (vm->i.as_32)
              G_ECX(vm) -= (count_actual-1);
            else
              G_CX(vm)  -= (count_actual-1);
            incr = count_actual << 1; /* count * 2 */
            goto do_incr;
            }
          }
        }
      }
#endif

    read_virtual_word(vm, seg, esi, &value16);

    sysIOOut(vm, G_DX(vm), 2, value16);
    incr = 2;
    }

#if COSIMULATE == 0
do_incr:  
#endif

  if (vm->i.as_32) {
    if (G_GetDF(vm))
      G_ESI(vm) -= incr;
    else
      G_ESI(vm) += incr;
    }
  else {
    if (G_GetDF(vm))
      G_SI(vm) -= incr;
    else
      G_SI(vm) += incr;
    }
}

  void
OUTSB_DXXb(vm_t *vm)
{
  unsigned seg;
  Bit32u esi;
  Bit8u  value8;

  if (!NULL_SEG_REG(vm->i.seg)) {
    seg = vm->i.seg;
    }
  else {
    seg = SRegDS;
    }

  if (vm->i.as_32)
    esi = G_ESI(vm);
  else
    esi = G_SI(vm);


  IOPermCheck(vm, G_DX(vm), 1);

  read_virtual_byte(vm, seg, esi, &value8);

  sysIOOut(vm, G_DX(vm), 1, value8);

  if (vm->i.as_32) {
    if (G_GetDF(vm))
      G_ESI(vm) -= 1;
    else
      G_ESI(vm) += 1;
    }
  else {
    if (G_GetDF(vm))
      G_SI(vm) -= 1;
    else
      G_SI(vm) += 1;
    }
}

  void
OUT_IbeAX(vm_t *vm)
{
  Bit32u port;
 
  port = vm->i.Ib;
 
  if (vm->i.os_32) {
    IOPermCheck(vm, port, 4);
    sysIOOut(vm, port, 4, G_EAX(vm));
    }
  else {
    IOPermCheck(vm, port, 2);
    sysIOOut(vm, port, 2, G_AX(vm));
    }
}

  void
IN_ALDX(vm_t *vm)
{
  unsigned port;

  port = G_DX(vm);
  IOPermCheck(vm, port, 1);
  G_AL(vm) = sysIOIn(vm, port, 1);
}

  void
IN_eAXDX(vm_t *vm)
{
  unsigned port = G_DX(vm);

  if (vm->i.os_32) {
    IOPermCheck(vm, port, 4);
    G_EAX(vm) = sysIOIn(vm, port, 4);
    }
  else {
    IOPermCheck(vm, port, 2);
    G_AX(vm) = sysIOIn(vm, port, 2);
    }
}

  void
IN_ALIb(vm_t *vm)
{
  Bit8u  al;
  unsigned port;

  port = vm->i.Ib;
  IOPermCheck(vm, port, 1);
  al = sysIOIn(vm, port, 1);
  G_AL(vm) = al;
}

  void
IN_eAXIb(vm_t *vm)
{
  unsigned port = vm->i.Ib;
 
  if (vm->i.os_32) {
    IOPermCheck(vm, port, 4);
    G_EAX(vm) = sysIOIn(vm, port, 4);
    }
  else {
    IOPermCheck(vm, port, 2);
    G_AX(vm) = sysIOIn(vm, port, 2);
    }
}

  void
OUT_IbAL(vm_t *vm)
{
  unsigned port;

  port = vm->i.Ib;
  IOPermCheck(vm, port, 1);
  sysIOOut(vm, port, 1, G_AL(vm));
}