fs.py (9935:cc9dc514036e) fs.py (10037:5cac77888310)
1# Copyright (c) 2010-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

135 test_sys.cpu_voltage_domain)
136
137if options.kernel is not None:
138 test_sys.kernel = binary(options.kernel)
139
140if options.script is not None:
141 test_sys.readfile = options.script
142
1# Copyright (c) 2010-2013 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

135 test_sys.cpu_voltage_domain)
136
137if options.kernel is not None:
138 test_sys.kernel = binary(options.kernel)
139
140if options.script is not None:
141 test_sys.readfile = options.script
142
143if options.lpae:
144 test_sys.have_lpae = True
145
146if options.virtualisation:
147 test_sys.have_virtualization = True
148
143test_sys.init_param = options.init_param
144
145# For now, assign all the CPUs to the same clock domain
146test_sys.cpu = [TestCPUClass(clk_domain=test_sys.cpu_clk_domain, cpu_id=i)
147 for i in xrange(np)]
148
149if is_kvm_cpu(TestCPUClass) or is_kvm_cpu(FutureClass):
150 test_sys.vm = KvmVM()

--- 95 unchanged lines hidden ---
149test_sys.init_param = options.init_param
150
151# For now, assign all the CPUs to the same clock domain
152test_sys.cpu = [TestCPUClass(clk_domain=test_sys.cpu_clk_domain, cpu_id=i)
153 for i in xrange(np)]
154
155if is_kvm_cpu(TestCPUClass) or is_kvm_cpu(FutureClass):
156 test_sys.vm = KvmVM()

--- 95 unchanged lines hidden ---