X86: Rename the bridge which allows commnication back to the local APICs.
authorGabe Black <gblack@eecs.umich.edu>
Sun, 5 Feb 2012 09:37:40 +0000 (01:37 -0800)
committerGabe Black <gblack@eecs.umich.edu>
Sun, 5 Feb 2012 09:37:40 +0000 (01:37 -0800)
There was a collision with a name used in fs.py, and that causes that script
not to work when used with x86.

configs/common/FSConfig.py

index 80379f6a3381a234ae230a788399ee530b69ca6a..c14eb38f0c7b5fed08345e4142885de3039e6760 100644 (file)
@@ -385,12 +385,12 @@ def connectX86ClassicSystem(x86_sys):
 
     # Create a bridge from the IO bus to the memory bus to allow access to
     # the local APIC (two pages)
-    x86_sys.iobridge = Bridge(delay='50ns', nack_delay='4ns')
-    x86_sys.iobridge.slave = x86_sys.iobus.port
-    x86_sys.iobridge.master = x86_sys.membus.port
-    x86_sys.iobridge.ranges = [AddrRange(interrupts_address_space_base,
-                                         interrupts_address_space_base +
-                                         APIC_range_size - 1)]
+    x86_sys.apicbridge = Bridge(delay='50ns', nack_delay='4ns')
+    x86_sys.apicbridge.slave = x86_sys.iobus.port
+    x86_sys.apicbridge.master = x86_sys.membus.port
+    x86_sys.apicbridge.ranges = [AddrRange(interrupts_address_space_base,
+                                           interrupts_address_space_base +
+                                           APIC_range_size - 1)]
 
     # connect the io bus
     x86_sys.pc.attachIO(x86_sys.iobus)