System.py (11988:665cd5f8b52b) System.py (12262:a58c0c323e4f)
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# Copyright (c) 2011 Regents of the University of California
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

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

88 work_cpus_ckpt_count = Param.Counter(0,
89 "create checkpoint when active cpu count value is reached")
90
91 init_param = Param.UInt64(0, "numerical value to pass into simulator")
92 boot_osflags = Param.String("a", "boot flags to pass to the kernel")
93 kernel = Param.String("", "file that contains the kernel code")
94 kernel_addr_check = Param.Bool(True,
95 "whether to address check on kernel (disable for baremetal)")
1# Copyright (c) 2005-2007 The Regents of The University of Michigan
2# Copyright (c) 2011 Regents of the University of California
3# All rights reserved.
4#
5# Redistribution and use in source and binary forms, with or without
6# modification, are permitted provided that the following conditions are
7# met: redistributions of source code must retain the above copyright
8# notice, this list of conditions and the following disclaimer;

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

88 work_cpus_ckpt_count = Param.Counter(0,
89 "create checkpoint when active cpu count value is reached")
90
91 init_param = Param.UInt64(0, "numerical value to pass into simulator")
92 boot_osflags = Param.String("a", "boot flags to pass to the kernel")
93 kernel = Param.String("", "file that contains the kernel code")
94 kernel_addr_check = Param.Bool(True,
95 "whether to address check on kernel (disable for baremetal)")
96 kernel_extras = VectorParam.String([],"Additional object files to load")
96 readfile = Param.String("", "file to read startup script from")
97 symbolfile = Param.String("", "file to get the symbols from")
98 load_addr_mask = Param.UInt64(0xffffffffff,
99 "Address to mask loading binaries with")
100 load_offset = Param.UInt64(0, "Address to offset loading binaries with")
101
102 multi_thread = Param.Bool(False,
103 "Supports multi-threaded CPUs? Impacts Thread/Context IDs")
104
105 # Dynamic voltage and frequency handler for the system, disabled by default
106 # Provide list of domains that need to be controlled by the handler
107 dvfs_handler = DVFSHandler()
108
109 if buildEnv['USE_KVM']:
110 kvm_vm = Param.KvmVM(NULL, 'KVM VM (i.e., shared memory domain)')
97 readfile = Param.String("", "file to read startup script from")
98 symbolfile = Param.String("", "file to get the symbols from")
99 load_addr_mask = Param.UInt64(0xffffffffff,
100 "Address to mask loading binaries with")
101 load_offset = Param.UInt64(0, "Address to offset loading binaries with")
102
103 multi_thread = Param.Bool(False,
104 "Supports multi-threaded CPUs? Impacts Thread/Context IDs")
105
106 # Dynamic voltage and frequency handler for the system, disabled by default
107 # Provide list of domains that need to be controlled by the handler
108 dvfs_handler = DVFSHandler()
109
110 if buildEnv['USE_KVM']:
111 kvm_vm = Param.KvmVM(NULL, 'KVM VM (i.e., shared memory domain)')