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

  1 a.dunfey 1.1 // ===================================================================
  2              // Title: Application_BIOS
  3              // $State: Exp $
  4              // $Date: 2004/11/29 18:31:41 $
  5              // $RCSfile: Application_BIOS.mof,v $
  6              // $Revision: 1.4.2.3 $
  7              // ===================================================================
  8              //#pragma inLine ("Includes/copyright.inc")
  9              // Copyright 1998-2005 Distributed Management Task Force, Inc. (DMTF).
 10              // All rights reserved.
 11              // DMTF is a not-for-profit association of industry members dedicated
 12              // to promoting enterprise and systems management and interoperability.
 13              // DMTF specifications and documents may be reproduced for uses
 14              // consistent with this purpose by members and non-members,
 15              // provided that correct attribution is given.
 16              // As DMTF specifications may be revised from time to time,
 17              // the particular version and release date should always be noted.
 18              // 
 19              // Implementation of certain elements of this standard or proposed
 20              // standard may be subject to third party patent rights, including
 21              // provisional patent rights (herein "patent rights"). DMTF makes
 22 a.dunfey 1.1 // no representations to users of the standard as to the existence
 23              // of such rights, and is not responsible to recognize, disclose, or
 24              // identify any or all such third party patent right, owners or
 25              // claimants, nor for any incomplete or inaccurate identification or
 26              // disclosure of such rights, owners or claimants. DMTF shall have no
 27              // liability to any party, in any manner or circumstance, under any
 28              // legal theory whatsoever, for failure to recognize, disclose, or
 29              // identify any such third party patent rights, or for such party's
 30              // reliance on the standard or incorporation thereof in its product,
 31              // protocols or testing procedures. DMTF shall have no liability to
 32              // any party implementing such standard, whether such implementation
 33              // is foreseeable or not, nor to any patent owner or claimant, and shall
 34              // have no liability or responsibility for costs or losses incurred if
 35              // a standard is withdrawn or modified after publication, and shall be
 36              // indemnified and held harmless by any party implementing the
 37              // standard from any and all claims of infringement by a patent owner
 38              // for such implementations.
 39              // 
 40              // For information about patents held by third-parties which have
 41              // notified the DMTF that, in their opinion, such patent may relate to
 42              // or impact implementations of DMTF standards, visit
 43 a.dunfey 1.1 // http://www.dmtf.org/about/policies/disclosures.php.
 44              //#pragma inLine
 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 a.dunfey 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 a.dunfey 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                     MappingStrings { "MIF.DMTF|BIOS Characteristic|004.3" },
102                     ArrayType ( "Indexed" ), 
103                     ModelCorrespondence { 
104                        "CIM_BIOSFeature.CharacteristicDescriptions" }]
105                 uint16 Characteristics[];
106 a.dunfey 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                     MappingStrings { "MIF.DMTF|BIOS Characteristic|004.4" },
114                     ArrayType ( "Indexed" ), 
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 a.dunfey 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 a.dunfey 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 a.dunfey 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 a.dunfey 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 a.dunfey 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 ), 
216                     Description (
217                        "The ComputerSystem that boots from the BIOS.")]
218                 CIM_ComputerSystem REF GroupComponent;
219              
220                    [Override ( "PartComponent" ), Description (
221                        "The System's BIOS.")]
222                 CIM_BIOSElement REF PartComponent;
223              };
224              
225              
226              // ===================================================================
227              // VideoBIOSFeature
228              // ===================================================================
229                 [Version ( "2.6.0" ), Description (
230                     "VideoBIOSFeature represents the capabilities of the low-level "
231                     "software that is used to bring up, configure and use a "
232 a.dunfey 1.1        "ComputerSystem's VideoController and Display.")]
233              class CIM_VideoBIOSFeature : CIM_SoftwareFeature {
234              
235                    [Description (
236                        "An array of integers that specify the features supported by "
237                        "the VideoBIOS. For example, one could indicate support for "
238                        "VESA power management (value=6) or video BIOS shadowing "
239                        "(8). The value, 3, is not valid in the CIM Schema since in "
240                        "DMI it represents that no BIOS Features are supported. In "
241                        "this case, the object should not be instantiated."), 
242                     ValueMap { "1", "2", "3", "4", "5", "6", "7", "8", "9" }, 
243                     Values { "Other", "Unknown", "Undefined", "Standard Video BIOS",
244                        "VESA BIOS Extensions Supported",
245                        "VESA Power Management Supported",
246                        "VESA Display Data Channel Supported",
247                        "Video BIOS Shadowing Allowed", "Video BIOS Upgradeable" }, 
248                     MappingStrings { "MIF.DMTF|Video BIOS Characteristic|001.3" },
249                     ArrayType ( "Indexed" ), 
250                     ModelCorrespondence { 
251                        "CIM_VideoBIOSFeature.CharacteristicDescriptions" }]
252                 uint16 Characteristics[];
253 a.dunfey 1.1 
254                    [Description (
255                        "An array of free-form strings providing more detailed "
256                        "explanations for any of the VideoBIOS features indicated in "
257                        "the Characteristics array. Note, each entry of this array "
258                        "is related to the entry in the Characteristics array that "
259                        "is located at the same index."), 
260                     MappingStrings { "MIF.DMTF|Video BIOS Characteristic|001.4" },
261                     ArrayType ( "Indexed" ), 
262                     ModelCorrespondence { "CIM_VideoBIOSFeature.Characteristics" }]
263                 string CharacteristicDescriptions[];
264              };
265              
266              
267              // ===================================================================
268              // VideoBIOSElement
269              // ===================================================================
270                 [Version ( "2.6.0" ), Description (
271                     "VideoBIOSElement represents the low-level software that is "
272                     "loaded into non-volatile storage and used to bring up, "
273                     "configure and access a ComputerSystem's VideoController and "
274 a.dunfey 1.1        "Display.")]
275              class CIM_VideoBIOSElement : CIM_SoftwareElement {
276              
277                    [Override ( "Version" ), 
278                     MappingStrings { "MIF.DMTF|Video BIOS|001.3" }]
279                 string Version;
280              
281                    [Override ( "Manufacturer" ), 
282                     MappingStrings { "MIF.DMTF|Video BIOS|001.2" }]
283                 string Manufacturer;
284              
285                    [Description (
286                        "If true, indicates that the Video BIOS is shadowed."), 
287                     MappingStrings { "MIF.DMTF|Video BIOS|001.5" }]
288                 boolean IsShadowed;
289              
290                    [Description (
291                        "Date that this BIOS was released."), 
292                     MappingStrings { "MIF.DMTF|Video BIOS|001.4" }]
293                 datetime ReleaseDate;
294              };
295 a.dunfey 1.1 
296              
297              // ===================================================================
298              // VideoBIOSFeatureVideoBIOSElements
299              // ===================================================================
300                 [Association, Aggregation, Version ( "2.6.0" ), Description (
301                     "A link between VideoBIOSFeature and its aggregated "
302                     "VideoBIOSElements.")]
303              class CIM_VideoBIOSFeatureVideoBIOSElements : CIM_SoftwareFeatureSoftwareElements {
304              
305                    [Aggregate, Override ( "GroupComponent" ), Description (
306                        "The VideoBIOSFeature.")]
307                 CIM_VideoBIOSFeature REF GroupComponent;
308              
309                    [Override ( "PartComponent" ), Description (
310                        "The VideoBIOSElement that implements the capabilities "
311                        "described by VideoBIOSFeature.")]
312                 CIM_VideoBIOSElement REF PartComponent;
313              };
314              
315              
316 a.dunfey 1.1 // ===================================================================
317              // AGPSoftwareFeature
318              // ===================================================================
319                 [Version ( "2.6.0" ), Description (
320                     "AGPSoftwareFeature adds two attributes to SoftwareFeature to "
321                     "represent the capabilities of an AGP device driver. An "
322                     "instance of this class would be associated with the Driver's "
323                     "SoftwareElement using the SoftwareFeatureSoftware Elements "
324                     "relationship. The driver's SoftwareElement is associated with "
325                     "the AGPVideoController via the Device Software relationship.")]
326              class CIM_AGPSoftwareFeature : CIM_SoftwareFeature {
327              
328                    [Description (
329                        "An array of integers indicating various capabilities and "
330                        "characteristics of the AGPVideoController."), 
331                     ValueMap { "0", "1", "2", "3", "4", "5", "6" }, 
332                     Values { "Unknown", "Other", "OS support",
333                        "Hardware Acceleration", "Hardware Blit", "OpenGL Support",
334                        "Cache Coherency" }, ArrayType ( "Indexed" ), 
335                     ModelCorrespondence { 
336                        "CIM_AGPSoftwareFeature.CharacteristicDescriptions" }]
337 a.dunfey 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