regVal[MISCREG_APIC_DESTINATION_FORMAT] = (MiscReg)(-1);
}
+int divideFromConf(MiscReg conf)
+{
+ // This figures out what division we want from the division configuration
+ // register in the local APIC. The encoding is a little odd but it can
+ // be deciphered fairly easily.
+ int shift = ((conf & 0x8) >> 1) | (conf & 0x3);
+ shift = (shift + 1) % 8;
+ return 1 << shift;
+};
+
MiscReg MiscRegFile::readRegNoEffect(int miscReg)
{
// Make sure we're not dealing with an illegal control register.
panic("Local APIC Interrupt Command high"
" register unimplemented.\n");
break;
- case MISCREG_APIC_INITIAL_COUNT:
- panic("Local APIC Initial Count register unimplemented.\n");
- break;
case MISCREG_APIC_CURRENT_COUNT:
- panic("Local APIC Current Count register unimplemented.\n");
+ return (regVal[miscReg] - tc->getCpuPtr()->curCycle()) /
+ (16 * divideFromConf(
+ regVal[MISCREG_APIC_DIVIDE_CONFIGURATION]));
break;
}
}
}
break;
case MISCREG_APIC_INITIAL_COUNT:
- panic("Local APIC Initial Count register unimplemented.\n");
+ newVal = bits(val, 31, 0);
+ regVal[MISCREG_APIC_CURRENT_COUNT] =
+ tc->getCpuPtr()->curCycle() +
+ (16 * divideFromConf(
+ regVal[MISCREG_APIC_DIVIDE_CONFIGURATION])) * newVal;
+ //FIXME This should schedule the timer event.
break;
case MISCREG_APIC_CURRENT_COUNT:
- panic("Local APIC Current Count register unimplemented.\n");
- break;
+ //Local APIC Current Count register is read only.
+ return;
case MISCREG_APIC_DIVIDE_CONFIGURATION:
newVal = val & 0xB;
break;
*/
/*
- * Copyright (c) 2007 The Hewlett-Packard Development Company
+ * Copyright (c) 2007-2008 The Hewlett-Packard Development Company
* All rights reserved.
*
* Redistribution and use of this software in source and binary forms,
#include "arch/x86/faults.hh"
#include "arch/x86/miscregs.hh"
#include "arch/x86/types.hh"
+#include "sim/eventq.hh"
+#include "sim/host.hh"
#include <string>
namespace X86ISA
{
+
std::string getMiscRegName(RegIndex);
//These will have to be updated in the future.
protected:
MiscReg regVal[NumMiscRegs];
+ class ApicTimerEvent : public Event
+ {
+ public:
+ ApicTimerEvent() : Event(&mainEventQueue)
+ {}
+
+ void process()
+ {
+ warn("Local APIC timer event doesn't do anything!\n");
+ }
+ };
+
+ ApicTimerEvent apicTimerEvent;
+
public:
void clear();