FSConfig.py (3745:70a265d01c87) FSConfig.py (3751:b422ffec62c1)
1# Copyright (c) 2006 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 75 unchanged lines hidden (view full) ---

84 # generic system
85 mdesc = SysConfig()
86 self.readfile = mdesc.script()
87 self.iobus = Bus(bus_id=0)
88 self.membus = Bus(bus_id=1)
89 self.bridge = Bridge()
90 self.t1000 = T1000()
91 self.t1000.attachIO(self.iobus)
1# Copyright (c) 2006 The Regents of The University of Michigan
2# All rights reserved.
3#
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met: redistributions of source code must retain the above copyright
7# notice, this list of conditions and the following disclaimer;
8# redistributions in binary form must reproduce the above copyright

--- 75 unchanged lines hidden (view full) ---

84 # generic system
85 mdesc = SysConfig()
86 self.readfile = mdesc.script()
87 self.iobus = Bus(bus_id=0)
88 self.membus = Bus(bus_id=1)
89 self.bridge = Bridge()
90 self.t1000 = T1000()
91 self.t1000.attachIO(self.iobus)
92 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()))
92 self.physmem = PhysicalMemory(range = AddrRange(mdesc.mem()), zero = True)
93 self.bridge.side_a = self.iobus.port
94 self.bridge.side_b = self.membus.port
95 self.physmem.port = self.membus.port
96 self.rom.port = self.membus.port
97 self.nvram.port = self.membus.port
98 self.hypervisor_desc.port = self.membus.port
99 self.partition_desc.port = self.membus.port
100 self.intrctrl = IntrControl()

--- 25 unchanged lines hidden ---
93 self.bridge.side_a = self.iobus.port
94 self.bridge.side_b = self.membus.port
95 self.physmem.port = self.membus.port
96 self.rom.port = self.membus.port
97 self.nvram.port = self.membus.port
98 self.hypervisor_desc.port = self.membus.port
99 self.partition_desc.port = self.membus.port
100 self.intrctrl = IntrControl()

--- 25 unchanged lines hidden ---