System.py (10700:417ba77dedb4) System.py (11146:0fd6976303bc)
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;

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

94 kernel_addr_check = Param.Bool(True,
95 "whether to address check on kernel (disable for baremetal)")
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
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;

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

94 kernel_addr_check = Param.Bool(True,
95 "whether to address check on kernel (disable for baremetal)")
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
102 # Dynamic voltage and frequency handler for the system, disabled by default
103 # Provide list of domains that need to be controlled by the handler
104 dvfs_handler = DVFSHandler()
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()