Options.py (11703:08b78e0a3717) Options.py (11837:17b37f38944a)
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

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

72 default='1GHz',
73 help = """Top-level clock for blocks running at system
74 speed""")
75
76 # Memory Options
77 parser.add_option("--list-mem-types",
78 action="callback", callback=_listMemTypes,
79 help="List available memory types")
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

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

72 default='1GHz',
73 help = """Top-level clock for blocks running at system
74 speed""")
75
76 # Memory Options
77 parser.add_option("--list-mem-types",
78 action="callback", callback=_listMemTypes,
79 help="List available memory types")
80 parser.add_option("--mem-type", type="choice", default="DDR3_1600_x64",
80 parser.add_option("--mem-type", type="choice", default="DDR3_1600_8x8",
81 choices=MemConfig.mem_names(),
82 help = "type of memory to use")
83 parser.add_option("--mem-channels", type="int", default=1,
84 help = "number of memory channels")
85 parser.add_option("--mem-ranks", type="int", default=None,
86 help = "number of memory ranks per channel")
87 parser.add_option("--mem-size", action="store", type="string",
88 default="512MB",

--- 282 unchanged lines hidden ---
81 choices=MemConfig.mem_names(),
82 help = "type of memory to use")
83 parser.add_option("--mem-channels", type="int", default=1,
84 help = "number of memory channels")
85 parser.add_option("--mem-ranks", type="int", default=None,
86 help = "number of memory ranks per channel")
87 parser.add_option("--mem-size", action="store", type="string",
88 default="512MB",

--- 282 unchanged lines hidden ---