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

  1 a.dunfey 1.1 // ===================================================================
  2              // Title: Physical_Connector
  3              // $State: Exp $
  4              // $Date: 2004/11/29 18:31:42 $
  5              // $RCSfile: Physical_Connector.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: The Physical Model defines modeling concepts related
 47              //              to actual boxes and packaging. This file defines the
 48              //              concepts related to connectors.
 49              // 
 50              //              The object classes below are listed in an order that
 51              //              avoids forward references. Required objects, defined
 52              //              by other working groups, are omitted.
 53              // ==================================================================
 54              // Change Log for v2.8 - None
 55              // CR1093 - Add text regarding PhysicalConnector class defintion
 56              // 
 57              // Change Log for v2.7
 58              // CR623 - Fix the DMI mapping string to include the attribute number
 59              //         PhysicalConnector.ConnectorType and .OtherTypeDescription.
 60              // CR676 - Deprecate Slot.Powered
 61              // CR877 - Add AGP8X enumeration to PhysicalConnector.ConnectorType
 62              // ==================================================================
 63              
 64 a.dunfey 1.1 #pragma locale ("en_US")
 65              
 66              // ==================================================================
 67              // CIM_PhysicalConnector --- Is located in Physicalxx_Package.mof
 68              //    to avoid the ConnectorPower method in CIM_Card having a
 69              //    forward reference.
 70              // ==================================================================
 71              
 72              
 73              
 74              // ===================================================================
 75              // ConnectedTo
 76              // ===================================================================
 77                 [Association, Version ( "2.6.0" ), Description (
 78                     "The ConnectedTo association indicates that two or more "
 79                     "PhysicalConnectors are connected together.")]
 80              class CIM_ConnectedTo : CIM_Dependency {
 81              
 82                    [Override ( "Antecedent" ), Description (
 83                        "The Antecedent represents a PhysicalConnector that serves "
 84                        "as one end of the connection.")]
 85 a.dunfey 1.1    CIM_PhysicalConnector REF Antecedent;
 86              
 87                    [Override ( "Dependent" ), Description (
 88                        "The Dependent represents another PhysicalConnector that "
 89                        "serves as the other end of the connection.")]
 90                 CIM_PhysicalConnector REF Dependent;
 91              };
 92              
 93              
 94              // ===================================================================
 95              // Slot
 96              // ===================================================================
 97                 [Version ( "2.7.0" ), Description (
 98                     "The Slot class represents Connectors into which Packages are "
 99                     "inserted. For example, a PhysicalPackage that is a DiskDrive "
100                     "may be inserted into an SCA 'Slot'. As another example, a Card "
101                     "(subclass of PhysicalPackage) may be inserted into a 16-, 32-, "
102                     "or 64-bit expansion 'Slot' on a HostingBoard. PCI or PCMCIA "
103                     "Type III Slots are examples of the latter.")]
104              class CIM_Slot : CIM_PhysicalConnector {
105              
106 a.dunfey 1.1       [Override ( "ConnectorType" ), 
107                     MappingStrings { "MIF.DMTF|System Slot|005.2" }]
108                 uint16 ConnectorType[];
109              
110                    [Override ( "PoweredOn" ), 
111                     MappingStrings { "MIF.DMTF|System Slot|005.13" }]
112                 boolean PoweredOn;
113              
114                    [Description (
115                        "Boolean indicating whether the Slot supports hot-plug of "
116                        "adapter Cards.")]
117                 boolean SupportsHotPlug;
118              
119                    [Description (
120                        "Maximum height of an adapter Card that can be inserted into "
121                        "the Slot, in inches."), 
122                     Units ( "Inches" )]
123                 real32 HeightAllowed;
124              
125                    [Description (
126                        "Maximum length of an adapter Card that can be inserted into "
127 a.dunfey 1.1           "the Slot, in inches."), 
128                     Units ( "Inches" )]
129                 real32 LengthAllowed;
130              
131                    [Description (
132                        "Maximum bus width of adapter Cards that can be inserted "
133                        "into this Slot, in bits. If the value is 'unknown', enter "
134                        "0. If the value is other than 8, 16, 32, 64 or 128, enter "
135                        "1."), 
136                     Units ( "Bits" ), 
137                     ValueMap { "0", "1", "8", "16", "32", "64", "128" }, 
138                     MappingStrings { "MIF.DMTF|System Slot|005.3" }]
139                 uint16 MaxDataWidth;
140              
141                    [Description (
142                        "An array of enumerated integers indicating the Vcc voltage "
143                        "supported by this Slot."), 
144                     ValueMap { "0", "1", "2", "3" }, 
145                     Values { "Unknown", "Other", "3.3V", "5V" }, 
146                     MappingStrings { "MIF.DMTF|System Slot|005.9" }]
147                 uint16 VccMixedVoltageSupport[];
148 a.dunfey 1.1 
149                    [Description (
150                        "An array of enumerated integers indicating the Vpp voltage "
151                        "supported by this Slot."), 
152                     ValueMap { "0", "1", "2", "3", "4" }, 
153                     Values { "Unknown", "Other", "3.3V", "5V", "12V" }, 
154                     MappingStrings { "MIF.DMTF|System Slot|005.10" }]
155                 uint16 VppMixedVoltageSupport[];
156              
157                    [Description (
158                        "Maximum thermal dissipation of the Slot in milliwatts."), 
159                     Units ( "MilliWatts" ), 
160                     MappingStrings { "MIF.DMTF|System Slot|005.11" }]
161                 uint32 ThermalRating;
162              
163                    [Description (
164                        "Boolean indicating that this Slot is physically unique and "
165                        "may hold special types of hardware, e.g. a graphics "
166                        "processor slot. If set to TRUE, then the property, Special "
167                        "PurposeDescription (a string), should specify the nature of "
168                        "the uniqueness or purpose of the Slot."), 
169 a.dunfey 1.1        ModelCorrespondence { "CIM_Slot.PurposeDescription" }]
170                 boolean SpecialPurpose;
171              
172                    [Description (
173                        "A free-form string describing that this Slot is physically "
174                        "unique and may hold special types of hardware. This "
175                        "property only has meaning when the corresponding boolean "
176                        "property, SpecialPurpose, is set to TRUE."), 
177                     ModelCorrespondence { "CIM_Slot.SpecialPurpose" }]
178                 string PurposeDescription;
179              
180                    [Description (
181                        "The Number property indicates the physical slot number, "
182                        "which can be used as an index into a system slot table, "
183                        "whether or not that slot is physically occupied."), 
184                     MappingStrings { "MIF.DMTF|System Slot|005.1" }]
185                 uint16 Number;
186              
187                    [Deprecated { "CIM_PhysicalElement.PoweredOn" }, Description (
188                        "A boolean indicating whether the Slot is currently powered "
189                        "(TRUE) or not (FALSE)."), 
190 a.dunfey 1.1        MappingStrings { "MIF.DMTF|System Slot|005.13" }]
191                 boolean Powered;
192              
193                    [Description (
194                        "A boolean indicating whether the switch state of the Slot "
195                        "is currently open (TRUE) or closed (FALSE). This switch "
196                        "state determines whether the contents of the Slot can be "
197                        "hot-plugged."), 
198                     MappingStrings { "MIF.DMTF|System Slot|005.15" }]
199                 boolean OpenSwitch;
200              };
201              
202              
203              // ==================================================================
204              // SlotInSlot
205              // ==================================================================
206                 [Association, Version ( "2.6.0" ), Description (
207                     "Slots are special types of Connectors into which adapter Cards "
208                     "are typically inserted. The SlotInSlot relationship represents "
209                     "the ability of a special adapter to extend the existing Slot "
210                     "structure to enable otherwise incompatible Cards to be plugged "
211 a.dunfey 1.1        "into a Frame or Hosting Board. The adapter effectively creates "
212                     "a new Slot and can be thought of (conceptually) as a Slot in a "
213                     "Slot. This enables Cards that would otherwise be physically "
214                     "and/or electrically incompatible with the existing Slots to be "
215                     "supported, by interfacing to the Slot provided by the adapter. "
216                     "This has many practical uses. For example, networking boards "
217                     "are very expensive. As new hardware becomes available, Chassis "
218                     "and even Card configurations change. To protect the investment "
219                     "of their customers, networking vendors will manufacture "
220                     "special adapters that enable old Cards to fit into new Chassis "
221                     "or Hosting Boards and/or new Cards to fit into old. This is "
222                     "done using a special adapter that fits over one or more "
223                     "existing Slots and presents a new Slot into which the Card can "
224                     "plug.")]
225              class CIM_SlotInSlot : CIM_ConnectedTo {
226              
227                    [Override ( "Antecedent" ), Description (
228                        "The Antecedent represents the existing Slot(s) of the "
229                        "HostingBoard, or Frame that are being adapted to "
230                        "accommodate a Card that would otherwise not be physically "
231                        "and/or electrically compatible with it.")]
232 a.dunfey 1.1    CIM_Slot REF Antecedent;
233              
234                    [Override ( "Dependent" ), Max ( 1 ), Description (
235                        "The new Slot provided by the adapter board.")]
236                 CIM_Slot REF Dependent;
237              };
238              
239              
240              // ==================================================================
241              // AdjacentSlots
242              // ==================================================================
243                 [Association, Version ( "2.6.0" ), Description (
244                     "AdjacentSlots describes the layout of Slots on a HostingBoard "
245                     "or adapter Card. Information like the distance between the "
246                     "Slots and whether they are 'shared' (if one is populated, then "
247                     "the other Slot can not be used), is conveyed as properties of "
248                     "the association.")]
249              class CIM_AdjacentSlots {
250              
251                    [Key, Description (
252                        "One of the adjacent Slots.")]
253 a.dunfey 1.1    CIM_Slot REF SlotA;
254              
255                    [Key, Description (
256                        "The 'other' adjacent Slot.")]
257                 CIM_Slot REF SlotB;
258              
259                    [Description (
260                        "The distance, in inches, between adjacent Slots."), 
261                     Units ( "Inches" )]
262                 real32 DistanceBetweenSlots;
263              
264                    [Description (
265                        "Slots can be located in close proximity on Hosting Boards "
266                        "or other Cards, such that if one of these Slots is "
267                        "populated by an adapter Card, the other Slot must be left "
268                        "empty. This relationship is indicated by the SharedSlots "
269                        "boolean set to TRUE.")]
270                 boolean SharedSlots;
271              };
272              
273              // ==================================================================
274 a.dunfey 1.1 // PackageInConnector
275              // ==================================================================
276                 [Association, Version ( "2.6.0" ), Description (
277                     "Adapter cards and other 'packaging' are plugged into System "
278                     "Connectors for power and/or to transfer data. This "
279                     "relationship is defined by PackageInConnector. For example, it "
280                     "would be used to describe the insertion of a daughtercard onto "
281                     "another Card. Various subclasses of PackageInConnector are "
282                     "also defined. PackageInSlot and its subclass, CardInSlot, are "
283                     "two examples of subclasses.")]
284              class CIM_PackageInConnector : CIM_Dependency {
285              
286                    [Override ( "Antecedent" ), Description (
287                        "The Connector into which the Package is inserted.")]
288                 CIM_PhysicalConnector REF Antecedent;
289              
290                    [Override ( "Dependent" ), Max ( 1 ), Description (
291                        "The Package in the Connector.")]
292                 CIM_PhysicalPackage REF Dependent;
293              };
294              
295 a.dunfey 1.1 
296              // ==================================================================
297              // PackageInSlot
298              // ==================================================================
299                 [Association, Version ( "2.6.0" ), Description (
300                     "Complex networking devices often are Chassis-based. These "
301                     "Chassis allow for enhancement and/or augmentation of their "
302                     "base functionality by accepting additional Chassis devices, "
303                     "similar to accepting functionality in the form of adding "
304                     "Cards. This association models this capability.")]
305              class CIM_PackageInSlot : CIM_PackageInConnector {
306              
307                    [Override ( "Antecedent" ), Description (
308                        "The Slot into which the PhysicalPackage is inserted.")]
309                 CIM_Slot REF Antecedent;
310              
311                    [Override ( "Dependent" ), Max ( 1 ), Description (
312                        "The Package in the Slot.")]
313                 CIM_PhysicalPackage REF Dependent;
314              };
315              
316 a.dunfey 1.1 
317              // ==================================================================
318              // CardInSlot
319              // ==================================================================
320                 [Association, Version ( "2.6.0" ), Description (
321                     "Slots are special types of Connectors into which adapter Cards "
322                     "are inserted. This relationship of a Card in a Slot is made "
323                     "explicit using the CardInSlot association."), 
324                  MappingStrings { "MIF.DMTF|System Slot|005.4" }]
325              class CIM_CardInSlot : CIM_PackageInSlot {
326              
327                    [Override ( "Antecedent" ), Description (
328                        "The Slot into which the Card is inserted.")]
329                 CIM_Slot REF Antecedent;
330              
331                    [Override ( "Dependent" ), Max ( 1 ), Description (
332                        "The Card in the Slot.")]
333                 CIM_Card REF Dependent;
334              };
335              
336              
337 a.dunfey 1.1 // ==================================================================
338              // ConnectorOnPackage
339              // ==================================================================
340                 [Association, Aggregation, Version ( "2.6.0" ), Description (
341                     "PhysicalPackages contain Connectors as well as other "
342                     "PhysicalElements. The ConnectorOnPackage association makes "
343                     "explicit the containment relationship between Connectors and "
344                     "Packages.")]
345              class CIM_ConnectorOnPackage : CIM_Container {
346              
347                    [Aggregate, Override ( "GroupComponent" ), Max ( 1 ), 
348                     Description (
349                        "The PhysicalPackage that has a Connector.")]
350                 CIM_PhysicalPackage REF GroupComponent;
351              
352                    [Override ( "PartComponent" ), Description (
353                        "The PhysicalConnector.")]
354                 CIM_PhysicalConnector REF PartComponent;
355              };
356              
357              
358 a.dunfey 1.1 // ===================================================================
359              // end of file
360              // ===================================================================

No CVS admin address has been configured
Powered by
ViewCVS 0.9.2