System.py (10249:6bbb7ae309ac) System.py (10282:3ea92bc6393b)
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;

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

79 work_end_exit_count = Param.Counter(0,
80 "exit simulation when work items end count value is reached")
81 work_cpus_ckpt_count = Param.Counter(0,
82 "create checkpoint when active cpu count value is reached")
83
84 init_param = Param.UInt64(0, "numerical value to pass into simulator")
85 boot_osflags = Param.String("a", "boot flags to pass to the kernel")
86 kernel = Param.String("", "file that contains the kernel code")
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;

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

79 work_end_exit_count = Param.Counter(0,
80 "exit simulation when work items end count value is reached")
81 work_cpus_ckpt_count = Param.Counter(0,
82 "create checkpoint when active cpu count value is reached")
83
84 init_param = Param.UInt64(0, "numerical value to pass into simulator")
85 boot_osflags = Param.String("a", "boot flags to pass to the kernel")
86 kernel = Param.String("", "file that contains the kernel code")
87 kernel_addr_check = Param.Bool(True,
88 "whether to address check on kernel (disable for baremetal)")
87 readfile = Param.String("", "file to read startup script from")
88 symbolfile = Param.String("", "file to get the symbols from")
89 load_addr_mask = Param.UInt64(0xffffffffff,
90 "Address to mask loading binaries with")
91 load_offset = Param.UInt64(0, "Address to offset loading binaries with")
92
93 # Dynamic voltage and frequency handler for the system, disabled by default
94 # Provide list of domains that need to be controlled by the handler
95 dvfs_handler = DVFSHandler()
89 readfile = Param.String("", "file to read startup script from")
90 symbolfile = Param.String("", "file to get the symbols from")
91 load_addr_mask = Param.UInt64(0xffffffffff,
92 "Address to mask loading binaries with")
93 load_offset = Param.UInt64(0, "Address to offset loading binaries with")
94
95 # Dynamic voltage and frequency handler for the system, disabled by default
96 # Provide list of domains that need to be controlled by the handler
97 dvfs_handler = DVFSHandler()