i8259.c 14.8 KB
Newer Older
B
bellard 已提交
1 2
/*
 * QEMU 8259 interrupt controller emulation
3
 *
B
bellard 已提交
4
 * Copyright (c) 2003-2004 Fabrice Bellard
5
 *
B
bellard 已提交
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 * 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.
 */
P
pbrook 已提交
24 25 26
#include "hw.h"
#include "pc.h"
#include "isa.h"
A
aliguori 已提交
27
#include "monitor.h"
28
#include "qemu-timer.h"
B
bellard 已提交
29 30 31 32

/* debug PIC */
//#define DEBUG_PIC

B
Blue Swirl 已提交
33 34 35 36 37 38 39
#ifdef DEBUG_PIC
#define DPRINTF(fmt, ...)                                       \
    do { printf("pic: " fmt , ## __VA_ARGS__); } while (0)
#else
#define DPRINTF(fmt, ...)
#endif

B
bellard 已提交
40
//#define DEBUG_IRQ_LATENCY
41
//#define DEBUG_IRQ_COUNT
B
bellard 已提交
42

B
bellard 已提交
43 44 45 46 47 48 49 50 51 52 53 54 55 56 57
typedef struct PicState {
    uint8_t last_irr; /* edge detection */
    uint8_t irr; /* interrupt request register */
    uint8_t imr; /* interrupt mask register */
    uint8_t isr; /* interrupt service register */
    uint8_t priority_add; /* highest irq priority */
    uint8_t irq_base;
    uint8_t read_reg_select;
    uint8_t poll;
    uint8_t special_mask;
    uint8_t init_state;
    uint8_t auto_eoi;
    uint8_t rotate_on_auto_eoi;
    uint8_t special_fully_nested_mode;
    uint8_t init4; /* true if 4 byte init */
58
    uint8_t single_mode; /* true if slave pic is not initialized */
B
bellard 已提交
59 60
    uint8_t elcr; /* PIIX edge/trigger selection*/
    uint8_t elcr_mask;
61
    qemu_irq int_out;
B
bellard 已提交
62
    PicState2 *pics_state;
63 64
    MemoryRegion base_io;
    MemoryRegion elcr_io;
B
bellard 已提交
65 66
} PicState;

B
bellard 已提交
67 68 69 70 71 72
struct PicState2 {
    /* 0 is master pic, 1 is slave pic */
    /* XXX: better separation between the two pics */
    PicState pics[2];
    void *irq_request_opaque;
};
B
bellard 已提交
73

74 75 76 77 78 79
#if defined(DEBUG_PIC) || defined (DEBUG_IRQ_COUNT)
static int irq_level[16];
#endif
#ifdef DEBUG_IRQ_COUNT
static uint64_t irq_count[16];
#endif
80
PicState2 *isa_pic;
81

B
bellard 已提交
82 83
/* return the highest priority found in mask (highest = smallest
   number). Return 8 if no irq */
84
static int get_priority(PicState *s, int mask)
B
bellard 已提交
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
{
    int priority;
    if (mask == 0)
        return 8;
    priority = 0;
    while ((mask & (1 << ((priority + s->priority_add) & 7))) == 0)
        priority++;
    return priority;
}

/* return the pic wanted interrupt. return -1 if none */
static int pic_get_irq(PicState *s)
{
    int mask, cur_priority, priority;

    mask = s->irr & ~s->imr;
    priority = get_priority(s, mask);
    if (priority == 8)
        return -1;
    /* compute current priority. If special fully nested mode on the
       master, the IRQ coming from the slave is not taken into account
       for the priority computation. */
    mask = s->isr;
108 109
    if (s->special_mask)
        mask &= ~s->imr;
B
bellard 已提交
110
    if (s->special_fully_nested_mode && s == &s->pics_state->pics[0])
B
bellard 已提交
111 112 113 114 115 116 117 118 119 120
        mask &= ~(1 << 2);
    cur_priority = get_priority(s, mask);
    if (priority < cur_priority) {
        /* higher priority found: an irq should be generated */
        return (priority + s->priority_add) & 7;
    } else {
        return -1;
    }
}

J
Jan Kiszka 已提交
121 122
/* Update INT output. Must be called every time the output may have changed. */
static void pic_update_irq(PicState *s)
B
bellard 已提交
123
{
J
Jan Kiszka 已提交
124
    int irq;
B
bellard 已提交
125

J
Jan Kiszka 已提交
126
    irq = pic_get_irq(s);
B
bellard 已提交
127
    if (irq >= 0) {
J
Jan Kiszka 已提交
128 129 130 131
        DPRINTF("pic%d: imr=%x irr=%x padd=%d\n",
                s == &s->pics_state->pics[0] ? 0 : 1, s->imr, s->irr,
                s->priority_add);
        qemu_irq_raise(s->int_out);
132
    } else {
J
Jan Kiszka 已提交
133
        qemu_irq_lower(s->int_out);
134
    }
B
bellard 已提交
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
/* set irq level. If an edge is detected, then the IRR is set to 1 */
static void pic_set_irq1(PicState *s, int irq, int level)
{
    int mask;
    mask = 1 << irq;
    if (s->elcr & mask) {
        /* level triggered */
        if (level) {
            s->irr |= mask;
            s->last_irr |= mask;
        } else {
            s->irr &= ~mask;
            s->last_irr &= ~mask;
        }
    } else {
        /* edge triggered */
        if (level) {
            if ((s->last_irr & mask) == 0) {
                s->irr |= mask;
            }
            s->last_irr |= mask;
        } else {
            s->last_irr &= ~mask;
        }
    }
J
Jan Kiszka 已提交
162
    pic_update_irq(s);
163 164
}

B
bellard 已提交
165 166 167 168
#ifdef DEBUG_IRQ_LATENCY
int64_t irq_time[16];
#endif

169
static void i8259_set_irq(void *opaque, int irq, int level)
B
bellard 已提交
170
{
B
bellard 已提交
171 172
    PicState2 *s = opaque;

173
#if defined(DEBUG_PIC) || defined(DEBUG_IRQ_COUNT)
B
bellard 已提交
174
    if (level != irq_level[irq]) {
B
Blue Swirl 已提交
175
        DPRINTF("i8259_set_irq: irq=%d level=%d\n", irq, level);
B
bellard 已提交
176
        irq_level[irq] = level;
177 178 179 180
#ifdef DEBUG_IRQ_COUNT
	if (level == 1)
	    irq_count[irq]++;
#endif
B
bellard 已提交
181 182 183 184
    }
#endif
#ifdef DEBUG_IRQ_LATENCY
    if (level) {
185
        irq_time[irq] = qemu_get_clock_ns(vm_clock);
B
bellard 已提交
186 187
    }
#endif
B
bellard 已提交
188
    pic_set_irq1(&s->pics[irq >> 3], irq & 7, level);
B
bellard 已提交
189 190 191
}

/* acknowledge interrupt 'irq' */
192
static void pic_intack(PicState *s, int irq)
B
bellard 已提交
193 194 195 196 197 198 199
{
    if (s->auto_eoi) {
        if (s->rotate_on_auto_eoi)
            s->priority_add = (irq + 1) & 7;
    } else {
        s->isr |= (1 << irq);
    }
200 201 202
    /* We don't clear a level sensitive interrupt here */
    if (!(s->elcr & (1 << irq)))
        s->irr &= ~(1 << irq);
J
Jan Kiszka 已提交
203
    pic_update_irq(s);
B
bellard 已提交
204 205
}

B
bellard 已提交
206
int pic_read_irq(PicState2 *s)
B
bellard 已提交
207 208 209
{
    int irq, irq2, intno;

B
bellard 已提交
210
    irq = pic_get_irq(&s->pics[0]);
211 212
    if (irq >= 0) {
        if (irq == 2) {
B
bellard 已提交
213
            irq2 = pic_get_irq(&s->pics[1]);
214
            if (irq2 >= 0) {
B
bellard 已提交
215
                pic_intack(&s->pics[1], irq2);
216 217 218 219
            } else {
                /* spurious IRQ on slave controller */
                irq2 = 7;
            }
B
bellard 已提交
220
            intno = s->pics[1].irq_base + irq2;
221
        } else {
B
bellard 已提交
222
            intno = s->pics[0].irq_base + irq;
223
        }
J
Jan Kiszka 已提交
224
        pic_intack(&s->pics[0], irq);
225 226 227
    } else {
        /* spurious IRQ on host controller */
        irq = 7;
B
bellard 已提交
228
        intno = s->pics[0].irq_base + irq;
229
    }
230

J
Jan Kiszka 已提交
231 232 233 234 235
#if defined(DEBUG_PIC) || defined(DEBUG_IRQ_LATENCY)
    if (irq == 2) {
        irq = irq2 + 8;
    }
#endif
B
bellard 已提交
236
#ifdef DEBUG_IRQ_LATENCY
237 238
    printf("IRQ%d latency=%0.3fus\n",
           irq,
239
           (double)(qemu_get_clock_ns(vm_clock) -
240
                    irq_time[irq]) * 1000000.0 / get_ticks_per_sec());
B
bellard 已提交
241
#endif
B
Blue Swirl 已提交
242
    DPRINTF("pic_interrupt: irq=%d\n", irq);
B
bellard 已提交
243 244 245
    return intno;
}

J
Jan Kiszka 已提交
246
static void pic_init_reset(PicState *s)
B
bellard 已提交
247
{
B
bellard 已提交
248 249 250 251 252 253 254 255 256 257 258 259 260 261
    s->last_irr = 0;
    s->irr = 0;
    s->imr = 0;
    s->isr = 0;
    s->priority_add = 0;
    s->irq_base = 0;
    s->read_reg_select = 0;
    s->poll = 0;
    s->special_mask = 0;
    s->init_state = 0;
    s->auto_eoi = 0;
    s->rotate_on_auto_eoi = 0;
    s->special_fully_nested_mode = 0;
    s->init4 = 0;
262
    s->single_mode = 0;
263
    /* Note: ELCR is not reset */
J
Jan Kiszka 已提交
264
    pic_update_irq(s);
B
bellard 已提交
265 266
}

J
Jan Kiszka 已提交
267 268 269 270 271 272 273 274
static void pic_reset(void *opaque)
{
    PicState *s = opaque;

    pic_init_reset(s);
    s->elcr = 0;
}

275 276
static void pic_ioport_write(void *opaque, target_phys_addr_t addr64,
                             uint64_t val64, unsigned size)
B
bellard 已提交
277
{
B
bellard 已提交
278
    PicState *s = opaque;
279 280
    uint32_t addr = addr64;
    uint32_t val = val64;
B
bellard 已提交
281
    int priority, cmd, irq;
B
bellard 已提交
282

B
Blue Swirl 已提交
283
    DPRINTF("write: addr=0x%02x val=0x%02x\n", addr, val);
B
bellard 已提交
284 285
    if (addr == 0) {
        if (val & 0x10) {
J
Jan Kiszka 已提交
286
            pic_init_reset(s);
B
bellard 已提交
287 288
            s->init_state = 1;
            s->init4 = val & 1;
289
            s->single_mode = val & 2;
B
bellard 已提交
290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313
            if (val & 0x08)
                hw_error("level sensitive irq not supported");
        } else if (val & 0x08) {
            if (val & 0x04)
                s->poll = 1;
            if (val & 0x02)
                s->read_reg_select = val & 1;
            if (val & 0x40)
                s->special_mask = (val >> 5) & 1;
        } else {
            cmd = val >> 5;
            switch(cmd) {
            case 0:
            case 4:
                s->rotate_on_auto_eoi = cmd >> 2;
                break;
            case 1: /* end of interrupt */
            case 5:
                priority = get_priority(s, s->isr);
                if (priority != 8) {
                    irq = (priority + s->priority_add) & 7;
                    s->isr &= ~(1 << irq);
                    if (cmd == 5)
                        s->priority_add = (irq + 1) & 7;
J
Jan Kiszka 已提交
314
                    pic_update_irq(s);
B
bellard 已提交
315 316 317 318 319
                }
                break;
            case 3:
                irq = val & 7;
                s->isr &= ~(1 << irq);
J
Jan Kiszka 已提交
320
                pic_update_irq(s);
B
bellard 已提交
321 322 323
                break;
            case 6:
                s->priority_add = (val + 1) & 7;
J
Jan Kiszka 已提交
324
                pic_update_irq(s);
B
bellard 已提交
325 326 327 328 329
                break;
            case 7:
                irq = val & 7;
                s->isr &= ~(1 << irq);
                s->priority_add = (irq + 1) & 7;
J
Jan Kiszka 已提交
330
                pic_update_irq(s);
B
bellard 已提交
331 332 333 334 335 336 337 338 339 340 341
                break;
            default:
                /* no operation */
                break;
            }
        }
    } else {
        switch(s->init_state) {
        case 0:
            /* normal mode */
            s->imr = val;
J
Jan Kiszka 已提交
342
            pic_update_irq(s);
B
bellard 已提交
343 344 345
            break;
        case 1:
            s->irq_base = val & 0xf8;
346
            s->init_state = s->single_mode ? (s->init4 ? 3 : 0) : 2;
B
bellard 已提交
347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
            break;
        case 2:
            if (s->init4) {
                s->init_state = 3;
            } else {
                s->init_state = 0;
            }
            break;
        case 3:
            s->special_fully_nested_mode = (val >> 4) & 1;
            s->auto_eoi = (val >> 1) & 1;
            s->init_state = 0;
            break;
        }
    }
}

364
static uint32_t pic_poll_read(PicState *s)
B
bellard 已提交
365 366 367 368 369
{
    int ret;

    ret = pic_get_irq(s);
    if (ret >= 0) {
370 371 372
        bool slave = (s == &isa_pic->pics[1]);

        if (slave) {
B
bellard 已提交
373 374
            s->pics_state->pics[0].isr &= ~(1 << 2);
            s->pics_state->pics[0].irr &= ~(1 << 2);
B
bellard 已提交
375 376 377
        }
        s->irr &= ~(1 << ret);
        s->isr &= ~(1 << ret);
J
Jan Kiszka 已提交
378 379 380
        if (slave || ret != 2) {
            pic_update_irq(s);
        }
B
bellard 已提交
381 382 383 384 385 386 387
    } else {
        ret = 0x07;
    }

    return ret;
}

388 389
static uint64_t pic_ioport_read(void *opaque, target_phys_addr_t addr1,
                                unsigned size)
B
bellard 已提交
390
{
B
bellard 已提交
391
    PicState *s = opaque;
392
    unsigned int addr = addr1;
B
bellard 已提交
393 394 395
    int ret;

    if (s->poll) {
396
        ret = pic_poll_read(s);
B
bellard 已提交
397 398 399 400 401 402 403 404 405 406 407
        s->poll = 0;
    } else {
        if (addr == 0) {
            if (s->read_reg_select)
                ret = s->isr;
            else
                ret = s->irr;
        } else {
            ret = s->imr;
        }
    }
408
    DPRINTF("read: addr=0x%02x val=0x%02x\n", addr, ret);
B
bellard 已提交
409 410 411 412
    return ret;
}

/* memory mapped interrupt status */
B
bellard 已提交
413 414
/* XXX: may be the same than pic_read_irq() */
uint32_t pic_intack_read(PicState2 *s)
B
bellard 已提交
415 416 417
{
    int ret;

418
    ret = pic_poll_read(&s->pics[0]);
B
bellard 已提交
419
    if (ret == 2)
420
        ret = pic_poll_read(&s->pics[1]) + 8;
B
bellard 已提交
421
    /* Prepare for ISR read */
B
bellard 已提交
422
    s->pics[0].read_reg_select = 1;
423

B
bellard 已提交
424 425 426
    return ret;
}

427 428 429 430 431
int pic_get_output(PicState2 *s)
{
    return (pic_get_irq(&s->pics[0]) >= 0);
}

432 433
static void elcr_ioport_write(void *opaque, target_phys_addr_t addr,
                              uint64_t val, unsigned size)
B
bellard 已提交
434 435 436 437 438
{
    PicState *s = opaque;
    s->elcr = val & s->elcr_mask;
}

439 440
static uint64_t elcr_ioport_read(void *opaque, target_phys_addr_t addr,
                                 unsigned size)
B
bellard 已提交
441 442 443 444 445
{
    PicState *s = opaque;
    return s->elcr;
}

J
Juan Quintela 已提交
446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470
static const VMStateDescription vmstate_pic = {
    .name = "i8259",
    .version_id = 1,
    .minimum_version_id = 1,
    .minimum_version_id_old = 1,
    .fields      = (VMStateField []) {
        VMSTATE_UINT8(last_irr, PicState),
        VMSTATE_UINT8(irr, PicState),
        VMSTATE_UINT8(imr, PicState),
        VMSTATE_UINT8(isr, PicState),
        VMSTATE_UINT8(priority_add, PicState),
        VMSTATE_UINT8(irq_base, PicState),
        VMSTATE_UINT8(read_reg_select, PicState),
        VMSTATE_UINT8(poll, PicState),
        VMSTATE_UINT8(special_mask, PicState),
        VMSTATE_UINT8(init_state, PicState),
        VMSTATE_UINT8(auto_eoi, PicState),
        VMSTATE_UINT8(rotate_on_auto_eoi, PicState),
        VMSTATE_UINT8(special_fully_nested_mode, PicState),
        VMSTATE_UINT8(init4, PicState),
        VMSTATE_UINT8(single_mode, PicState),
        VMSTATE_UINT8(elcr, PicState),
        VMSTATE_END_OF_LIST()
    }
};
B
bellard 已提交
471

472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489
static const MemoryRegionOps pic_base_ioport_ops = {
    .read = pic_ioport_read,
    .write = pic_ioport_write,
    .impl = {
        .min_access_size = 1,
        .max_access_size = 1,
    },
};

static const MemoryRegionOps pic_elcr_ioport_ops = {
    .read = elcr_ioport_read,
    .write = elcr_ioport_write,
    .impl = {
        .min_access_size = 1,
        .max_access_size = 1,
    },
};

B
bellard 已提交
490
/* XXX: add generic master/slave system */
491
static void pic_init(int io_addr, int elcr_addr, PicState *s, qemu_irq int_out)
B
bellard 已提交
492
{
493 494
    s->int_out = int_out;

495 496 497 498
    memory_region_init_io(&s->base_io, &pic_base_ioport_ops, s, "pic", 2);
    memory_region_init_io(&s->elcr_io, &pic_elcr_ioport_ops, s, "elcr", 1);

    isa_register_ioport(NULL, &s->base_io, io_addr);
B
bellard 已提交
499
    if (elcr_addr >= 0) {
500
        isa_register_ioport(NULL, &s->elcr_io, elcr_addr);
B
bellard 已提交
501
    }
502

A
Alex Williamson 已提交
503
    vmstate_register(NULL, io_addr, &vmstate_pic, s);
504
    qemu_register_reset(pic_reset, s);
B
bellard 已提交
505 506
}

A
aliguori 已提交
507
void pic_info(Monitor *mon)
B
bellard 已提交
508 509 510
{
    int i;
    PicState *s;
511

B
bellard 已提交
512 513
    if (!isa_pic)
        return;
B
bellard 已提交
514 515

    for(i=0;i<2;i++) {
B
bellard 已提交
516
        s = &isa_pic->pics[i];
A
aliguori 已提交
517 518 519 520 521
        monitor_printf(mon, "pic%d: irr=%02x imr=%02x isr=%02x hprio=%d "
                       "irq_base=%02x rr_sel=%d elcr=%02x fnm=%d\n",
                       i, s->irr, s->imr, s->isr, s->priority_add,
                       s->irq_base, s->read_reg_select, s->elcr,
                       s->special_fully_nested_mode);
B
bellard 已提交
522 523 524
    }
}

A
aliguori 已提交
525
void irq_info(Monitor *mon)
526 527
{
#ifndef DEBUG_IRQ_COUNT
A
aliguori 已提交
528
    monitor_printf(mon, "irq statistic code not compiled.\n");
529 530 531 532
#else
    int i;
    int64_t count;

A
aliguori 已提交
533
    monitor_printf(mon, "IRQ statistics:\n");
534 535 536
    for (i = 0; i < 16; i++) {
        count = irq_count[i];
        if (count > 0)
A
aliguori 已提交
537
            monitor_printf(mon, "%2d: %" PRId64 "\n", i, count);
538 539 540
    }
#endif
}
B
bellard 已提交
541

P
pbrook 已提交
542
qemu_irq *i8259_init(qemu_irq parent_irq)
B
bellard 已提交
543
{
544
    qemu_irq *irqs;
B
bellard 已提交
545
    PicState2 *s;
P
pbrook 已提交
546

547
    s = g_malloc0(sizeof(PicState2));
548 549 550
    irqs = qemu_allocate_irqs(i8259_set_irq, s, 16);
    pic_init(0x20, 0x4d0, &s->pics[0], parent_irq);
    pic_init(0xa0, 0x4d1, &s->pics[1], irqs[2]);
B
bellard 已提交
551 552 553 554
    s->pics[0].elcr_mask = 0xf8;
    s->pics[1].elcr_mask = 0xde;
    s->pics[0].pics_state = s;
    s->pics[1].pics_state = s;
P
pbrook 已提交
555
    isa_pic = s;
556
    return irqs;
B
bellard 已提交
557
}