summaryrefslogtreecommitdiff
path: root/src/python/m5/objects/Ide.py
diff options
context:
space:
mode:
authorKevin Lim <ktlim@umich.edu>2006-07-12 17:16:00 -0400
committerKevin Lim <ktlim@umich.edu>2006-07-12 17:16:00 -0400
commit35ab2296d3eec6da29ba30a6230f67433f261eb3 (patch)
tree2743550ebc4697210037df00d9aef641e9e9b6f2 /src/python/m5/objects/Ide.py
parent807afe829261f28d9cdbddc81e6e2b4b58c74f2f (diff)
downloadgem5-35ab2296d3eec6da29ba30a6230f67433f261eb3.tar.xz
Push more default options to the Python object level as they are rarely changed. These are the changes that Steve was working on.
src/python/m5/objects/DiskImage.py: src/python/m5/objects/Ethernet.py: src/python/m5/objects/Ide.py: src/python/m5/objects/Tsunami.py: Push more default options to the Python object level as they are rarely changed. --HG-- extra : convert_revision : 963eb7a34cd04529b3c5f24b92904ab725c93efb
Diffstat (limited to 'src/python/m5/objects/Ide.py')
-rw-r--r--src/python/m5/objects/Ide.py27
1 files changed, 26 insertions, 1 deletions
diff --git a/src/python/m5/objects/Ide.py b/src/python/m5/objects/Ide.py
index 9ee578177..a5fe1b595 100644
--- a/src/python/m5/objects/Ide.py
+++ b/src/python/m5/objects/Ide.py
@@ -1,8 +1,31 @@
from m5.config import *
-from Pci import PciDevice
+from Pci import PciDevice, PciConfigData
class IdeID(Enum): vals = ['master', 'slave']
+class IdeControllerPciData(PciConfigData):
+ VendorID = 0x8086
+ DeviceID = 0x7111
+ Command = 0x0
+ Status = 0x280
+ Revision = 0x0
+ ClassCode = 0x01
+ SubClassCode = 0x01
+ ProgIF = 0x85
+ BAR0 = 0x00000001
+ BAR1 = 0x00000001
+ BAR2 = 0x00000001
+ BAR3 = 0x00000001
+ BAR4 = 0x00000001
+ BAR5 = 0x00000001
+ InterruptLine = 0x1f
+ InterruptPin = 0x01
+ BAR0Size = '8B'
+ BAR1Size = '4B'
+ BAR2Size = '8B'
+ BAR3Size = '4B'
+ BAR4Size = '16B'
+
class IdeDisk(SimObject):
type = 'IdeDisk'
delay = Param.Latency('1us', "Fixed disk delay in microseconds")
@@ -12,3 +35,5 @@ class IdeDisk(SimObject):
class IdeController(PciDevice):
type = 'IdeController'
disks = VectorParam.IdeDisk("IDE disks attached to this controller")
+
+ configdata =IdeControllerPciData()