pc-simple-atomic.py (8876:44f8e7bb7fdf) pc-simple-atomic.py (8883:c92153af04ac)
1# Copyright (c) 2006-2007 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

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

73# ---------------------
74class IOCache(BaseCache):
75 assoc = 8
76 block_size = 64
77 latency = '50ns'
78 mshrs = 20
79 size = '1kB'
80 tgts_per_mshr = 12
1# Copyright (c) 2006-2007 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

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

73# ---------------------
74class IOCache(BaseCache):
75 assoc = 8
76 block_size = 64
77 latency = '50ns'
78 mshrs = 20
79 size = '1kB'
80 tgts_per_mshr = 12
81 addr_range = AddrRange(0, size=mem_size)
81 addr_ranges = [AddrRange(0, size=mem_size)]
82 forward_snoops = False
83 is_top_level = True
84
85#cpu
86cpu = AtomicSimpleCPU(cpu_id=0)
87#the system
88mdesc = SysConfig(disk = 'linux-x86.img')
89system = FSConfig.makeLinuxX86System('atomic', mdesc=mdesc)
90system.kernel = FSConfig.binary('x86_64-vmlinux-2.6.22.9')
82 forward_snoops = False
83 is_top_level = True
84
85#cpu
86cpu = AtomicSimpleCPU(cpu_id=0)
87#the system
88mdesc = SysConfig(disk = 'linux-x86.img')
89system = FSConfig.makeLinuxX86System('atomic', mdesc=mdesc)
90system.kernel = FSConfig.binary('x86_64-vmlinux-2.6.22.9')
91system.iocache = IOCache(addr_range=mem_size)
91system.iocache = IOCache()
92system.iocache.cpu_side = system.iobus.master
93system.iocache.mem_side = system.membus.slave
94
95system.cpu = cpu
96#create the l1/l2 bus
97system.toL2Bus = Bus()
98
99#connect up the l2 cache

--- 18 unchanged lines hidden ---
92system.iocache.cpu_side = system.iobus.master
93system.iocache.mem_side = system.membus.slave
94
95system.cpu = cpu
96#create the l1/l2 bus
97system.toL2Bus = Bus()
98
99#connect up the l2 cache

--- 18 unchanged lines hidden ---