File: ipmi_inventory.h

package info (click to toggle)
openhpi 2.14.1-1.2
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 20,380 kB
  • sloc: ansic: 187,087; cpp: 32,188; sh: 10,415; makefile: 4,467; perl: 1,529
file content (74 lines) | stat: -rw-r--r-- 1,756 bytes parent folder | download | duplicates (8)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
/*
 *
 * Copyright (c) 2004 by FORCE Computers.
 * Copyright (c) 2005 by ESO Technologies.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  This
 * file and program are licensed under a BSD style license.  See
 * the Copying file included with the OpenHPI distribution for
 * full licensing terms.
 *
 * Authors:
 *     Thomas Kanngieser <thomas.kanngieser@fci.com>
 *     Pierre Sangouard  <psangouard@eso-tech.com>
 */

#ifndef dIpmiInventory_h
#define dIpmiInventory_h


#ifndef dIpmiRdr_h
#include "ipmi_rdr.h"
#endif


#ifndef dIpmiInventoryParser_h
#include "ipmi_inventory_parser.h"
#endif

#ifndef dIpmiAddr_h
#include "ipmi_addr.h"
#endif

enum tInventoryAccessMode
{
  eInventoryAccessModeByte = 0,
  eInventoryAccessModeWord = 1
};


#define dMaxFruFetchBytes 20


class cIpmiInventory : public cIpmiRdr, public cIpmiInventoryParser
{
protected:
  unsigned char  m_fru_device_id; // fru device id
  tInventoryAccessMode m_access;
  unsigned int   m_size;
  bool           m_fetched;

  unsigned int   m_oem;
  cIpmiAddr      m_addr;

  SaErrorT GetFruInventoryAreaInfo( unsigned int &size, tInventoryAccessMode &byte_access );
  SaErrorT ReadFruData( unsigned short offset, unsigned int num, unsigned int &n, unsigned char *data );

public:
  cIpmiInventory( cIpmiMc *mc, unsigned int fru_device_id );
  ~cIpmiInventory();

  SaErrorT Fetch();

  bool SetAddr( cIpmiAddr addr );
  virtual unsigned int Num() const { return m_fru_device_id; }
  unsigned int &Oem() { return m_oem; }

  // create an RDR inventory record
  virtual bool CreateRdr( SaHpiRptEntryT &resource, SaHpiRdrT &rdr );
};


#endif