IntelMP.py (5770:03c07a62074f) IntelMP.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

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

110 cxx_class = 'X86ISA::IntelMP::Processor'
111
112 local_apic_id = Param.UInt8(0, 'local APIC id')
113 local_apic_version = Param.UInt8(0,
114 'bits 0-7 of the local APIC version register')
115 enable = Param.Bool(True, 'if this processor is usable')
116 bootstrap = Param.Bool(False, 'if this is the bootstrap processor')
117
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

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

110 cxx_class = 'X86ISA::IntelMP::Processor'
111
112 local_apic_id = Param.UInt8(0, 'local APIC id')
113 local_apic_version = Param.UInt8(0,
114 'bits 0-7 of the local APIC version register')
115 enable = Param.Bool(True, 'if this processor is usable')
116 bootstrap = Param.Bool(False, 'if this is the bootstrap processor')
117
118 stepping = Param.UInt8(0)
119 model = Param.UInt8(0)
120 family = Param.UInt8(0)
118 stepping = Param.UInt8(0, 'Processor stepping')
119 model = Param.UInt8(0, 'Processor model')
120 family = Param.UInt8(0, 'Processor family')
121
122 feature_flags = Param.UInt32(0, 'flags returned by the CPUID instruction')
123
124class X86IntelMPBus(X86IntelMPBaseConfigEntry):
125 type = 'X86IntelMPBus'
126 cxx_class = 'X86ISA::IntelMP::Bus'
127
128 bus_id = Param.UInt8(0, 'bus id assigned by the bios')

--- 114 unchanged lines hidden ---
121
122 feature_flags = Param.UInt32(0, 'flags returned by the CPUID instruction')
123
124class X86IntelMPBus(X86IntelMPBaseConfigEntry):
125 type = 'X86IntelMPBus'
126 cxx_class = 'X86ISA::IntelMP::Bus'
127
128 bus_id = Param.UInt8(0, 'bus id assigned by the bios')

--- 114 unchanged lines hidden ---