IntelMP.py (9338:97b4a2be1e5b) IntelMP.py (11481:fc247b9c42b6)
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

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

110
111class X86IntelMPBus(X86IntelMPBaseConfigEntry):
112 type = 'X86IntelMPBus'
113 cxx_class = 'X86ISA::IntelMP::Bus'
114 cxx_header = 'arch/x86/bios/intelmp.hh'
115
116 bus_id = Param.UInt8(0, 'bus id assigned by the bios')
117 bus_type = Param.String("", 'string that identify the bus type')
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

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

110
111class X86IntelMPBus(X86IntelMPBaseConfigEntry):
112 type = 'X86IntelMPBus'
113 cxx_class = 'X86ISA::IntelMP::Bus'
114 cxx_header = 'arch/x86/bios/intelmp.hh'
115
116 bus_id = Param.UInt8(0, 'bus id assigned by the bios')
117 bus_type = Param.String("", 'string that identify the bus type')
118 # Legal values for bus_type are:
118 # Legal values for bus_type are [space padded to 6 bytes]:
119 #
120 # "CBUS", "CBUSII", "EISA", "FUTURE", "INTERN", "ISA", "MBI", "MBII",
121 # "MCA", "MPI", "MPSA", "NUBUS", "PCI", "PCMCIA", "TC", "VL", "VME",
122 # "XPRESS"
123
124class X86IntelMPIOAPIC(X86IntelMPBaseConfigEntry):
125 type = 'X86IntelMPIOAPIC'
126 cxx_class = 'X86ISA::IntelMP::IOAPIC'

--- 110 unchanged lines hidden ---
119 #
120 # "CBUS", "CBUSII", "EISA", "FUTURE", "INTERN", "ISA", "MBI", "MBII",
121 # "MCA", "MPI", "MPSA", "NUBUS", "PCI", "PCMCIA", "TC", "VL", "VME",
122 # "XPRESS"
123
124class X86IntelMPIOAPIC(X86IntelMPBaseConfigEntry):
125 type = 'X86IntelMPIOAPIC'
126 cxx_class = 'X86ISA::IntelMP::IOAPIC'

--- 110 unchanged lines hidden ---