ACPI.py (5627:31eac202dbd1) ACPI.py (5825:da5f7e97958c)
1# Copyright (c) 2008 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

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

89 type = 'X86ACPIRSDP'
90 cxx_class = 'X86ISA::ACPI::RSDP'
91
92 oem_id = Param.String('', 'string identifying the oem')
93 # Because 0 encodes ACPI 1.0, 2 encodes ACPI 3.0, the version implemented
94 # here.
95 revision = Param.UInt8(2, 'revision of ACPI being used, zero indexed')
96
1# Copyright (c) 2008 The Hewlett-Packard Development Company
2# All rights reserved.
3#
4# Redistribution and use of this software in source and binary forms,
5# with or without modification, are permitted provided that the
6# following conditions are met:
7#
8# The software must be used only for Non-Commercial Use which means any

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

89 type = 'X86ACPIRSDP'
90 cxx_class = 'X86ISA::ACPI::RSDP'
91
92 oem_id = Param.String('', 'string identifying the oem')
93 # Because 0 encodes ACPI 1.0, 2 encodes ACPI 3.0, the version implemented
94 # here.
95 revision = Param.UInt8(2, 'revision of ACPI being used, zero indexed')
96
97 rsdt = Param.X86ACPIRSDT('root system description table')
97 rsdt = Param.X86ACPIRSDT(NULL, 'root system description table')
98 xsdt = Param.X86ACPIXSDT(X86ACPIXSDT(),
99 'extended system description table')
98 xsdt = Param.X86ACPIXSDT(X86ACPIXSDT(),
99 'extended system description table')