Options.py (9816:971507cbbe65) Options.py (9827:f47274776aa0)
1# Copyright (c) 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

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

59 parser.add_option("--list-cpu-types",
60 action="callback", callback=_listCpuTypes,
61 help="List available CPU types")
62 parser.add_option("--cpu-type", type="choice", default="atomic",
63 choices=CpuConfig.cpu_names(),
64 help = "type of cpu to run with")
65 parser.add_option("--checker", action="store_true");
66 parser.add_option("-n", "--num-cpus", type="int", default=1)
1# Copyright (c) 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

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

59 parser.add_option("--list-cpu-types",
60 action="callback", callback=_listCpuTypes,
61 help="List available CPU types")
62 parser.add_option("--cpu-type", type="choice", default="atomic",
63 choices=CpuConfig.cpu_names(),
64 help = "type of cpu to run with")
65 parser.add_option("--checker", action="store_true");
66 parser.add_option("-n", "--num-cpus", type="int", default=1)
67 parser.add_option("--sys-voltage", action="store", type="string",
68 default='1.0V',
69 help = """Top-level voltage for blocks running at system
70 power supply""")
67 parser.add_option("--sys-clock", action="store", type="string",
68 default='1GHz',
69 help = """Top-level clock for blocks running at system
70 speed""")
71 parser.add_option("--cpu-clock", action="store", type="string",
72 default='2GHz',
73 help="Clock for blocks running at CPU speed")
74 parser.add_option("--smt", action="store_true", default=False,

--- 170 unchanged lines hidden ---
71 parser.add_option("--sys-clock", action="store", type="string",
72 default='1GHz',
73 help = """Top-level clock for blocks running at system
74 speed""")
75 parser.add_option("--cpu-clock", action="store", type="string",
76 default='2GHz',
77 help="Clock for blocks running at CPU speed")
78 parser.add_option("--smt", action="store_true", default=False,

--- 170 unchanged lines hidden ---