E820.py (7087:fb8d5786ff30) E820.py (8323:fd20dcf1a9aa)
1# Copyright (c) 2008 The Hewlett-Packard Development Company
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

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

45 addr = Param.Addr(0, 'address of the beginning of the region')
46 size = Param.MemorySize('0B', 'size of the region')
47 range_type = Param.UInt64('type of the region')
48
49class X86E820Table(SimObject):
50 type = 'X86E820Table'
51 cxx_class = 'X86ISA::E820Table'
52
1# Copyright (c) 2008 The Hewlett-Packard Development Company
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

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

45 addr = Param.Addr(0, 'address of the beginning of the region')
46 size = Param.MemorySize('0B', 'size of the region')
47 range_type = Param.UInt64('type of the region')
48
49class X86E820Table(SimObject):
50 type = 'X86E820Table'
51 cxx_class = 'X86ISA::E820Table'
52
53 entries = VectorParam.X86E820Entry([], 'entries for the e820 table')
53 entries = VectorParam.X86E820Entry('entries for the e820 table')