diff options
-rw-r--r-- | kern/freebsd/freebsd_system.cc | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/kern/freebsd/freebsd_system.cc b/kern/freebsd/freebsd_system.cc index 35ac14330..5e0ce113b 100644 --- a/kern/freebsd/freebsd_system.cc +++ b/kern/freebsd/freebsd_system.cc @@ -41,6 +41,8 @@ #include "sim/builder.hh" #include "targetarch/vtophys.hh" +#define TIMER_FREQUENCY 1193180 + using namespace std; FreebsdSystem::FreebsdSystem(Params *p) @@ -85,8 +87,8 @@ FreebsdSystem::doCalibrateClocks(ExecContext *xc) uint8_t *ppc = physmem->dma_addr(ppc_paddr, sizeof(uint32_t)); uint8_t *timer = physmem->dma_addr(timer_paddr, sizeof(uint32_t)); - *(uint32_t *)ppc = htoa((uint32_t)2000000000); - *(uint32_t *)timer = htoa((uint32_t)1193180); + *(uint32_t *)ppc = htog((uint32_t)Clock::Frequency); + *(uint32_t *)timer = htog((uint32_t)TIMER_FREQUENCY); } |