interrupts.cc (9544:1a075d9bc1bc) interrupts.cc (9557:8666e81607a6)
1/*
2 * Copyright (c) 2012-2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 613 unchanged lines hidden (view full) ---

622 apicTimerEvent(this),
623 pendingSmi(false), smiVector(0),
624 pendingNmi(false), nmiVector(0),
625 pendingExtInt(false), extIntVector(0),
626 pendingInit(false), initVector(0),
627 pendingStartup(false), startupVector(0),
628 startedUp(false), pendingUnmaskableInt(false),
629 pendingIPIs(0), cpu(NULL),
1/*
2 * Copyright (c) 2012-2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 613 unchanged lines hidden (view full) ---

622 apicTimerEvent(this),
623 pendingSmi(false), smiVector(0),
624 pendingNmi(false), nmiVector(0),
625 pendingExtInt(false), extIntVector(0),
626 pendingInit(false), initVector(0),
627 pendingStartup(false), startupVector(0),
628 startedUp(false), pendingUnmaskableInt(false),
629 pendingIPIs(0), cpu(NULL),
630 intSlavePort(name() + ".int_slave", this, this, latency)
630 intSlavePort(name() + ".int_slave", this, this)
631{
632 pioSize = PageBytes;
633 memset(regs, 0, sizeof(regs));
634 //Set the local apic DFR to the flat model.
635 regs[APIC_DESTINATION_FORMAT] = (uint32_t)(-1);
636 ISRV = 0;
637 IRRV = 0;
638}

--- 155 unchanged lines hidden ---
631{
632 pioSize = PageBytes;
633 memset(regs, 0, sizeof(regs));
634 //Set the local apic DFR to the flat model.
635 regs[APIC_DESTINATION_FORMAT] = (uint32_t)(-1);
636 ISRV = 0;
637 IRRV = 0;
638}

--- 155 unchanged lines hidden ---