Options.py (10608:427f988fe6e5) Options.py (10613:9d0aef7a9b2e)
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

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

92 help = "number of memory channels")
93 parser.add_option("--mem-size", action="store", type="string",
94 default="512MB",
95 help="Specify the physical memory size (single memory)")
96
97 parser.add_option("-l", "--lpae", action="store_true")
98 parser.add_option("-V", "--virtualisation", action="store_true")
99
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

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

92 help = "number of memory channels")
93 parser.add_option("--mem-size", action="store", type="string",
94 default="512MB",
95 help="Specify the physical memory size (single memory)")
96
97 parser.add_option("-l", "--lpae", action="store_true")
98 parser.add_option("-V", "--virtualisation", action="store_true")
99
100 parser.add_option("--memchecker", action="store_true")
101
100 # Cache Options
101 parser.add_option("--caches", action="store_true")
102 parser.add_option("--l2cache", action="store_true")
103 parser.add_option("--fastmem", action="store_true")
104 parser.add_option("--num-dirs", type="int", default=1)
105 parser.add_option("--num-l2caches", type="int", default=1)
106 parser.add_option("--num-l3caches", type="int", default=1)
107 parser.add_option("--l1d_size", type="string", default="64kB")

--- 173 unchanged lines hidden ---
102 # Cache Options
103 parser.add_option("--caches", action="store_true")
104 parser.add_option("--l2cache", action="store_true")
105 parser.add_option("--fastmem", action="store_true")
106 parser.add_option("--num-dirs", type="int", default=1)
107 parser.add_option("--num-l2caches", type="int", default=1)
108 parser.add_option("--num-l3caches", type="int", default=1)
109 parser.add_option("--l1d_size", type="string", default="64kB")

--- 173 unchanged lines hidden ---