(file) Return to Application28_BIOS.mof CVS log (file) (dir) Up to [Pegasus] / pegasus / Schemas / CIMPrelim28

  1 tony  1.1 // ===================================================================
  2           // Title:       Application MOF Specification 2.8, BIOS and
  3           //              Device Driver Software
  4           // Filename:    Application28_BIOS.mof
  5           // Version:     2.8
  6           // Status:      Preliminary
  7           // Date:        29 May 2003
  8           // CVS:         $Revision: 1.3 $
  9           // ===================================================================
 10           // Copyright 1998-2003 Distributed Management Task Force, Inc. (DMTF).
 11           // All rights reserved.
 12           // DMTF is a not-for-profit association of industry members dedicated
 13           // to promoting enterprise and systems management and interoperability.
 14           // DMTF specifications and documents may be reproduced for uses
 15           // consistent with this purpose by members and non-members,
 16           // provided that correct attribution is given.
 17           // As DMTF specifications may be revised from time to time,
 18           // the particular version and release date should always be noted.
 19           // 
 20           // Implementation of certain elements of this standard or proposed
 21           // standard may be subject to third party patent rights, including
 22 tony  1.1 // provisional patent rights (herein "patent rights"). DMTF makes
 23           // no representations to users of the standard as to the existence
 24           // of such rights, and is not responsible to recognize, disclose, or
 25           // identify any or all such third party patent right, owners or
 26           // claimants, nor for any incomplete or inaccurate identification or
 27           // disclosure of such rights, owners or claimants. DMTF shall have no
 28           // liability to any party, in any manner or circumstance, under any
 29           // legal theory whatsoever, for failure to recognize, disclose, or
 30           // identify any such third party patent rights, or for such party's
 31           // reliance on the standard or incorporation thereof in its product,
 32           // protocols or testing procedures. DMTF shall have no liability to
 33           // any party implementing such standard, whether such implementation
 34           // is foreseeable or not, nor to any patent owner or claimant, and shall
 35           // have no liability or responsibility for costs or losses incurred if
 36           // a standard is withdrawn or modified after publication, and shall be
 37           // indemnified and held harmless by any party implementing the
 38           // standard from any and all claims of infringement by a patent owner
 39           // for such implementations.
 40           // 
 41           // For information about patents held by third-parties which have
 42           // notified the DMTF that, in their opinion, such patent may relate to
 43 tony  1.1 // or impact implementations of DMTF standards, visit
 44           // http://www.dmtf.org/about/policies/disclosures.php.
 45           // ===================================================================
 46           // Description: These classes represent BIOS and device driver-related
 47           //      objects inherited from SoftwareElements and SoftwareFeatures.
 48           //      They are maintained as a separate MOF file in the
 49           //      Application Model.
 50           // 
 51           //      The object classes below are listed in an order that
 52           //      avoids forward references. Required objects, defined
 53           //      by other working groups, are omitted.
 54           // ==================================================================
 55           // Change Log for v2.7
 56           //      06/06/2002 CIM 2.7 Preliminary
 57           //         - These BIOS classes are grouped with the Application Model
 58           //               since they inherit from SoftwareElement/Feature
 59           //         - CR718 - Promote SystemBIOS.GroupComponent from
 60           //              System to ComputerSystem
 61           //      -3/17/2003 CIM 2.7 Final
 62           //         - No Changes
 63           // ===================================================================
 64 tony  1.1 
 65           #pragma locale ("en_US")
 66           
 67           
 68           
 69           // ===================================================================
 70           // BIOSFeature
 71           // ===================================================================
 72              [Version ("2.6.0"), Description (
 73                  "BIOSFeature represents the capabilities of the low-level "
 74                  "software that is used to bring up and configure a Computer "
 75                  "System.") ]
 76           class CIM_BIOSFeature : CIM_SoftwareFeature {
 77           
 78                 [Description (
 79                     "An array of integers that specify the features supported by "
 80                     "the BIOS.  For example, one can specify that PnP "
 81                     "capabilities are provided (value=9) or that infrared "
 82                     "devices are supported (21).  Values specified in the "
 83                     "enumeration are taken from both DMI and SMBIOS (the Type 0 "
 84                     "structure, the BIOS Characteristics and BIOS "
 85 tony  1.1           "Characteristics Extension Bytes attributes."), 
 86                  ValueMap {"1", "2", "3", "4", "5", "6", "7", "8", "9", "10",
 87                     "11", "12", "13", "14", "15", "16", "17", "18", "19", "20",
 88                     "21", "22", "23", "24", "25", "26", "27", "28", "29", "30",
 89                     "31", "160"}, 
 90                  Values {"Other", "Unknown", "Undefined", "ISA Support",
 91                      "MCA Support", "EISA Support", "PCI Support",
 92                      "PCMCIA Support", "PnP Support", "APM Support",
 93                      "Upgradeable BIOS", "BIOS Shadowing Allowed",
 94                      "VL VESA Support", "ESCD Support", "LS-120 Boot Support",
 95                     "ACPI Support", "I2O Boot Support", "USB Legacy Support",
 96                     "AGP Support", "PC Card", "IR", "1394", "I2C",
 97                      "Smart Battery", "ATAPI ZIP Drive Boot Support",
 98                      "1394 Boot Support", "Boot from CD", "Selectable Boot",
 99                     "BIOS ROM is Socketed", "Boot from PCMCIA",
100                      "EDD Specification Support", "PC-98"}, 
101                  ArrayType ("Indexed"), 
102                  MappingStrings {"MIF.DMTF|BIOS Characteristic|004.3"}, 
103                  ModelCorrespondence { 
104                     "CIM_BIOSFeature.CharacteristicDescriptions"} ]
105              uint16 Characteristics[];
106 tony  1.1 
107                 [Description (
108                     "An array of free-form strings providing more detailed "
109                     "explanations for any of the BIOS features indicated in the "
110                     "Characteristics array.  Note, each entry of this array is "
111                     "related to the entry in the Characteristics array that is "
112                     "located at the same index."), 
113                  ArrayType ("Indexed"), 
114                  MappingStrings {"MIF.DMTF|BIOS Characteristic|004.4"}, 
115                  ModelCorrespondence {"CIM_BIOSFeature.Characteristics"} ]
116              string CharacteristicDescriptions[];
117           };
118           
119           
120           // ===================================================================
121           // BIOSElement
122           // ===================================================================
123              [Version ("2.6.0"), Description (
124                  "BIOSElement represents the low-level software that is loaded "
125                  "into non-volatile storage and used to bring up and configure a "
126                  "ComputerSystem.") ]
127 tony  1.1 class CIM_BIOSElement : CIM_SoftwareElement {
128           
129                 [Override ("Version"), 
130                  MappingStrings {"MIF.DMTF|System BIOS|001.3"} ]
131              string Version;
132           
133                 [Override ("Manufacturer"), 
134                  MappingStrings {"MIF.DMTF|System BIOS|001.2"} ]
135              string Manufacturer;
136           
137                 [Description (
138                     "If true, this is the primary BIOS of the ComputerSystem."), 
139                  MappingStrings {"MIF.DMTF|System BIOS|001.9"} ]
140              boolean PrimaryBIOS;
141           
142                 [Description (
143                     "A list of installable languages for the BIOS.  This "
144                     "information can be obtained from SMBIOS, from the string "
145                     "list that follows the Type 13 structure.  An ISO 639 "
146                     "Language Name should be used to specify the BIOS' "
147                     "installable languages.  The ISO 3166 Territory Name and the "
148 tony  1.1           "encoding method may also be specified, following the "
149                     "Language Name.") ]
150              string ListOfLanguages[];
151           
152                 [Description (
153                     "The currently selected language for the BIOS.  This "
154                     "information can be obtained from SMBIOS, using the Current "
155                     "Language attribute of the Type 13 structure, to index into "
156                     "the string list following the structure.  The property is "
157                     "formatted using the ISO 639 Language Name, and may be "
158                     "followed by the ISO 3166 Territory Name and the encoding "
159                     "method."), 
160                  ModelCorrespondence {"CIM_BIOSElement.ListOfLanguages"} ]
161              string CurrentLanguage;
162           
163                 [Description (
164                     "The starting address of the memory which this BIOS "
165                     "occupies."), 
166                  MappingStrings {"MIF.DMTF|System BIOS|001.5"} ]
167              uint64 LoadedStartingAddress;
168           
169 tony  1.1       [Description (
170                     "The ending address of the memory which this BIOS occupies."), 
171                  MappingStrings {"MIF.DMTF|System BIOS|001.6"} ]
172              uint64 LoadedEndingAddress;
173           
174                 [Description (
175                     "A free form string describing the BIOS flash/load utility "
176                     "that is required to update the BIOSElement.  Version and "
177                     "other information may be indicated in this property."), 
178                  MaxLen (64), 
179                  MappingStrings {"MIF.DMTF|System BIOS|001.7"} ]
180              string LoadUtilityInformation;
181           
182                 [Description (
183                     "Date that this BIOS was released."), 
184                  MappingStrings {"MIF.DMTF|System BIOS|001.8"} ]
185              datetime ReleaseDate;
186           };
187           
188           
189           // ===================================================================
190 tony  1.1 // BIOSFeatureBIOSElements
191           // ===================================================================
192              [Association, Aggregation, Version ("2.6.0"), Description (
193                  "A link between BIOSFeature and its aggregated BIOSElements.") ]
194           class CIM_BIOSFeatureBIOSElements : CIM_SoftwareFeatureSoftwareElements {
195           
196                 [Aggregate, Override ("GroupComponent"), Description (
197                     "The BIOSFeature.") ]
198              CIM_BIOSFeature REF GroupComponent;
199           
200                 [Override ("PartComponent"), Description (
201                     "The BIOSElement that implements the capabilities described "
202                     "by BIOSFeature.") ]
203              CIM_BIOSElement REF PartComponent;
204           };
205           
206           
207           // ===================================================================
208           // SystemBIOS
209           // ===================================================================
210              [Association, Aggregation, Version ("2.7.0"), Description (
211 tony  1.1        "SystemBIOS associates a UnitaryComputerSystem's BIOS with the "
212                  "System itself.") ]
213           class CIM_SystemBIOS : CIM_SystemComponent {
214           
215                 [Aggregate, Override ("GroupComponent"), Max (1), Description (
216                     "The ComputerSystem that boots from the BIOS.") ]
217              CIM_ComputerSystem REF GroupComponent;
218           
219                 [Override ("PartComponent"), Description (
220                     "The System's BIOS.") ]
221              CIM_BIOSElement REF PartComponent;
222           };
223           
224           
225           // ===================================================================
226           // VideoBIOSFeature
227           // ===================================================================
228              [Version ("2.6.0"), Description (
229                  "VideoBIOSFeature represents the capabilities of the low-level "
230                  "software that is used to bring up, configure and use a "
231                  "ComputerSystem's VideoController and Display.") ]
232 tony  1.1 class CIM_VideoBIOSFeature : CIM_SoftwareFeature {
233           
234                 [Description (
235                     "An array of integers that specify the features supported by "
236                     "the VideoBIOS.  For example, one could indicate support for "
237                     "VESA power management (value=6) or video BIOS shadowing "
238                     "(8).  The value, 3, is not valid in the CIM Schema since in "
239                     "DMI it represents that no BIOS Features are supported.  In "
240                     "this case, the object should not be instantiated."), 
241                  ValueMap {"1", "2", "3", "4", "5", "6", "7", "8", "9"}, 
242                  Values {"Other", "Unknown", "Undefined", "Standard Video BIOS",
243                     "VESA BIOS Extensions Supported",
244                      "VESA Power Management Supported",
245                      "VESA Display Data Channel Supported",
246                      "Video BIOS Shadowing Allowed", "Video BIOS Upgradeable"}, 
247                  ArrayType ("Indexed"), 
248                  MappingStrings {"MIF.DMTF|Video BIOS Characteristic|001.3"}, 
249                  ModelCorrespondence { 
250                     "CIM_VideoBIOSFeature.CharacteristicDescriptions"} ]
251              uint16 Characteristics[];
252           
253 tony  1.1       [Description (
254                     "An array of free-form strings providing more detailed "
255                     "explanations for any of the VideoBIOS features indicated in "
256                     "the Characteristics array.  Note, each entry of this array "
257                     "is related to the entry in the Characteristics array that "
258                     "is located at the same index."), 
259                  ArrayType ("Indexed"), 
260                  MappingStrings {"MIF.DMTF|Video BIOS Characteristic|001.4"}, 
261                  ModelCorrespondence {"CIM_VideoBIOSFeature.Characteristics"} ]
262              string CharacteristicDescriptions[];
263           };
264           
265           
266           // ===================================================================
267           // VideoBIOSElement
268           // ===================================================================
269              [Version ("2.6.0"), Description (
270                  "VideoBIOSElement represents the low-level software that is "
271                  "loaded into non-volatile storage and used to bring up, "
272                  "configure and access a ComputerSystem's VideoController and "
273                  "Display.") ]
274 tony  1.1 class CIM_VideoBIOSElement : CIM_SoftwareElement {
275           
276                 [Override ("Version"), 
277                  MappingStrings {"MIF.DMTF|Video BIOS|001.3"} ]
278              string Version;
279           
280                 [Override ("Manufacturer"), 
281                  MappingStrings {"MIF.DMTF|Video BIOS|001.2"} ]
282              string Manufacturer;
283           
284                 [Description (
285                     "If true, indicates that the Video BIOS is shadowed."), 
286                  MappingStrings {"MIF.DMTF|Video BIOS|001.5"} ]
287              boolean IsShadowed;
288           
289                 [Description (
290                     "Date that this BIOS was released."), 
291                  MappingStrings {"MIF.DMTF|Video BIOS|001.4"} ]
292              datetime ReleaseDate;
293           };
294           
295 tony  1.1 
296           // ===================================================================
297           // VideoBIOSFeatureVideoBIOSElements
298           // ===================================================================
299              [Association, Aggregation, Version ("2.6.0"), Description (
300                  "A link between VideoBIOSFeature and its aggregated "
301                  "VideoBIOSElements.") ]
302           class CIM_VideoBIOSFeatureVideoBIOSElements : CIM_SoftwareFeatureSoftwareElements {
303           
304                 [Aggregate, Override ("GroupComponent"), Description (
305                     "The VideoBIOSFeature.") ]
306              CIM_VideoBIOSFeature REF GroupComponent;
307           
308                 [Override ("PartComponent"), Description (
309                     "The VideoBIOSElement that implements the capabilities "
310                     "described by VideoBIOSFeature.") ]
311              CIM_VideoBIOSElement REF PartComponent;
312           };
313           
314           
315           // ===================================================================
316 tony  1.1 // AGPSoftwareFeature
317           // ===================================================================
318              [Version ("2.6.0"), Description (
319                  "AGPSoftwareFeature adds two attributes to SoftwareFeature to "
320                  "represent the capabilities of an AGP device driver.  An "
321                  "instance of this class would be associated with the Driver's "
322                  "SoftwareElement using the SoftwareFeatureSoftware Elements "
323                  "relationship.  The driver's SoftwareElement is associated with "
324                  "the AGPVideoController via the Device Software relationship.") ]
325           class CIM_AGPSoftwareFeature : CIM_SoftwareFeature {
326           
327                 [Description (
328                     "An array of integers indicating various capabilities and "
329                     "characteristics of the AGPVideoController."), 
330                  ValueMap {"0", "1", "2", "3", "4", "5", "6"}, 
331                  Values {"Unknown", "Other", "OS support",
332                      "Hardware Acceleration", "Hardware Blit", "OpenGL Support",
333                     "Cache Coherency"}, 
334                  ArrayType ("Indexed"), 
335                  ModelCorrespondence { 
336                     "CIM_AGPSoftwareFeature.CharacteristicDescriptions"} ]
337 tony  1.1    uint16 Characteristics[];
338           
339                 [Description (
340                     "An array of free-form strings providing more detailed "
341                     "explanations for any of the features indicated in the "
342                     "Characteristics array.  Each entry in this array is related "
343                     "to the Characteristics array entry located at the same "
344                     "index."), 
345                  ArrayType ("Indexed"), 
346                  ModelCorrespondence {"CIM_AGPSoftwareFeature.Characteristics"} ]
347              string CharacteristicDescriptions[];
348           };
349           
350           
351           // ==================================================================
352           // end of file
353           // ==================================================================

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2