summaryrefslogtreecommitdiff
path: root/src/dev/x86/south_bridge/south_bridge.cc
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2008-06-12 00:54:48 -0400
committerGabe Black <gblack@eecs.umich.edu>2008-06-12 00:54:48 -0400
commit4f9a0402f629dbd78494bd7e820ffa41b0a5f245 (patch)
tree95083f875c9fe827509d47e4c484ec595f0fcf98 /src/dev/x86/south_bridge/south_bridge.cc
parent0368ccdedaa6b6fecb0f04924456953c92396188 (diff)
downloadgem5-4f9a0402f629dbd78494bd7e820ffa41b0a5f245.tar.xz
Dev: Seperate the 8254 timer from tsunami and use it in that and the PC.
Diffstat (limited to 'src/dev/x86/south_bridge/south_bridge.cc')
-rw-r--r--src/dev/x86/south_bridge/south_bridge.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/dev/x86/south_bridge/south_bridge.cc b/src/dev/x86/south_bridge/south_bridge.cc
index f25b3b811..cc20ea09e 100644
--- a/src/dev/x86/south_bridge/south_bridge.cc
+++ b/src/dev/x86/south_bridge/south_bridge.cc
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2004-2005 The Regents of The University of Michigan
+ * Copyright (c) 2008 The Regents of The University of Michigan
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -68,7 +68,7 @@ SouthBridge::write(PacketPtr pkt)
SouthBridge::SouthBridge(const Params *p) : PioDevice(p),
pic1(0x20, 2, p->pio_latency),
pic2(0xA0, 2, p->pio_latency),
- pit(0x40, 4, p->pio_latency),
+ pit(p->name + ".pit", 0x40, 4, p->pio_latency),
cmos(0x70, 2, p->pio_latency),
speaker(0x61, 1, p->pio_latency)
{