blob: 5ac15b2ed65da20379d3c73fd55fb0b5f5cc8e3b [file] [log] [blame]
Ratan Guptac7366702017-02-22 18:05:44 +05301#! /usr/bin/perl
2use strict;
3use warnings;
Ratan Guptac7366702017-02-22 18:05:44 +05304use mrw::Targets;
5use mrw::Inventory;
6use mrw::Util;
7use Getopt::Long; # For parsing command line arguments
8use YAML::Tiny qw(LoadFile);
9
10# Globals
11my $serverwizFile = "";
12my $debug = 0;
Ratan Gupta39747a02017-02-22 18:16:23 +053013my $outputFile = "";
Dhruvaraj Subhashchandran611b90f2017-07-27 08:05:42 -050014my $metaDataFile = "";
Ratan Guptac7366702017-02-22 18:05:44 +053015
16# Command line argument parsing
17GetOptions(
18"i=s" => \$serverwizFile, # string
Dhruvaraj Subhashchandran611b90f2017-07-27 08:05:42 -050019"m=s" => \$metaDataFile, # string
Ratan Gupta39747a02017-02-22 18:16:23 +053020"o=s" => \$outputFile, # string
Ratan Guptac7366702017-02-22 18:05:44 +053021"d" => \$debug,
22)
23or printUsage();
24
Dhruvaraj Subhashchandran611b90f2017-07-27 08:05:42 -050025if (($serverwizFile eq "") or ($outputFile eq "") or ($metaDataFile eq ""))
Ratan Guptac7366702017-02-22 18:05:44 +053026{
27 printUsage();
28}
29
30my $targetObj = Targets->new;
31$targetObj->loadXML($serverwizFile);
32
33#open the mrw xml and the metaData file for the sensor.
34#Fetch the sensorid,sensortype,class,object path from the mrw.
Ratan Gupta39747a02017-02-22 18:16:23 +053035#Get the metadata for that sensor from the metadata file.
36#Merge the data into the outputfile
Ratan Guptac7366702017-02-22 18:05:44 +053037
Ratan Gupta39747a02017-02-22 18:16:23 +053038open(my $fh, '>', $outputFile) or die "Could not open file '$outputFile' $!";
Dhruvaraj Subhashchandran611b90f2017-07-27 08:05:42 -050039my $sensorTypeConfig = LoadFile($metaDataFile);
Ratan Guptac7366702017-02-22 18:05:44 +053040
41my @interestedTypes = keys %{$sensorTypeConfig};
42my %types;
Tom Joseph98be5ac2018-01-24 01:37:30 +053043my %entityDict;
Ratan Guptac7366702017-02-22 18:05:44 +053044
45@types{@interestedTypes} = ();
46
47my @inventory = Inventory::getInventory($targetObj);
48#Process all the targets in the XML
49foreach my $target (sort keys %{$targetObj->getAllTargets()})
50{
51 my $sensorID = '';
52 my $sensorType = '';
53 my $sensorReadingType = '';
54 my $path = '';
55 my $obmcPath = '';
Deepak Kodihalli00cef2c2017-08-12 11:34:37 -050056 my $sensorName = '';
Tom Joseph98be5ac2018-01-24 01:37:30 +053057 my $entityID = '';
58 my $entityInstance = '';
Ratan Guptac7366702017-02-22 18:05:44 +053059
60 if ($targetObj->getTargetType($target) eq "unit-ipmi-sensor") {
61
Deepak Kodihalli00cef2c2017-08-12 11:34:37 -050062 $sensorName = $targetObj->getInstanceName($target);
63 #not interested in this sensortype
64 next if (not exists $types{$sensorName});
65
Tom Joseph98be5ac2018-01-24 01:37:30 +053066 $entityID = $targetObj->getAttribute($target, "IPMI_ENTITY_ID");
67 if (exists ($entityDict{$entityID}))
68 {
69 $entityDict{$entityID}++;
70 }
71 else
72 {
73 $entityDict{$entityID} = '1';
74 }
75 $entityInstance = $entityDict{$entityID};
76
Ratan Guptac7366702017-02-22 18:05:44 +053077 $sensorID = $targetObj->getAttribute($target, "IPMI_SENSOR_ID");
78
Dhruvaraj Subhashchandran611b90f2017-07-27 08:05:42 -050079 $sensorType = hex($targetObj->getAttribute($target,
80 "IPMI_SENSOR_TYPE"));
Ratan Guptac7366702017-02-22 18:05:44 +053081
82 $sensorReadingType = $targetObj->getAttribute($target,
83 "IPMI_SENSOR_READING_TYPE");
84
85 $path = $targetObj->getAttribute($target, "INSTANCE_PATH");
86
Ratan Guptac7366702017-02-22 18:05:44 +053087 #if there is ipmi sensor without sensorid or sensorReadingType or
88 #Instance path then die
89
90 if ($sensorID eq '' or $sensorReadingType eq '' or $path eq '') {
Ratan Gupta39747a02017-02-22 18:16:23 +053091 close $fh;
Ratan Guptac7366702017-02-22 18:05:44 +053092 die("sensor without info for target=$target");
93 }
94
Deepak Kodihalli00cef2c2017-08-12 11:34:37 -050095 if (exists $sensorTypeConfig->{$sensorName}{"path"}) {
96 $obmcPath = $sensorTypeConfig->{$sensorName}->{"path"};
Dhruvaraj Subhashchandran6a6bd292017-07-12 06:39:09 -050097 }
Deepak Kodihalli00cef2c2017-08-12 11:34:37 -050098 else {
99 #removing the string "instance:" from path
100 $path =~ s/^instance:/\//;
101 $obmcPath = Util::getObmcName(\@inventory,$path);
102 }
103
104 # TODO via openbmc/openbmc#2144 - this fixup shouldn't be needed.
105 $obmcPath = checkOccPathFixup($obmcPath);
Ratan Guptac7366702017-02-22 18:05:44 +0530106
Ratan Guptac7366702017-02-22 18:05:44 +0530107 if (not defined $obmcPath) {
Ratan Gupta39747a02017-02-22 18:16:23 +0530108 close $fh;
Ratan Guptac7366702017-02-22 18:05:44 +0530109 die("Unable to get the obmc path for path=$path");
110 }
111
Ratan Gupta39747a02017-02-22 18:16:23 +0530112 print $fh $sensorID.":\n";
113
Dhruvaraj Subhashchandran611b90f2017-07-27 08:05:42 -0500114 my $serviceInterface =
Deepak Kodihalli00cef2c2017-08-12 11:34:37 -0500115 $sensorTypeConfig->{$sensorName}->{"serviceInterface"};
116 my $readingType = $sensorTypeConfig->{$sensorName}->{"readingType"};
Marri Devender Rao694e8dc2018-03-12 09:21:29 -0500117 my $sensorNamePattern =
118 $sensorTypeConfig->{$sensorName}->{"sensorNamePattern"};
Jayanth Othayothaf27cef2018-04-02 06:53:36 -0500119 my $mutability =
120 $sensorTypeConfig->{$sensorName}->{"mutability"};
Marri Devender Rao694e8dc2018-03-12 09:21:29 -0500121
122 # store the values in hash
123 my %data;
124 $data{'SENSOR_NAME'} = $sensorName;
125 $data{'SENSOR_TYPE'} = $sensorType;
126 $data{'SERVICE_INTF'} = $serviceInterface;
127 $data{'READING_TYPE'} = $readingType;
128 $data{'SENSOR_NAME_PATTERN'} = $sensorNamePattern;
Jayanth Othayothaf27cef2018-04-02 06:53:36 -0500129 $data{'MUTABILITY'} = $mutability;
Marri Devender Rao694e8dc2018-03-12 09:21:29 -0500130 $data{'ENTITY_ID'} = $entityID;
131 $data{'ENTITY_INSTANCE'} = $entityInstance;
132 $data{'FH'} = $fh;
Dhruvaraj Subhashchandran611b90f2017-07-27 08:05:42 -0500133
Tom Joseph98be5ac2018-01-24 01:37:30 +0530134 my $debug = "$sensorID : $sensorName : $sensorType : ";
Marri Devender Rao694e8dc2018-03-12 09:21:29 -0500135 $debug .= "$serviceInterface: $readingType : $sensorNamePattern : ";
Jayanth Othayothaf27cef2018-04-02 06:53:36 -0500136 $debug .= "$serviceInterface: $readingType : $mutability : ";
Marri Devender Rao694e8dc2018-03-12 09:21:29 -0500137 $debug .= "$entityID : $entityInstance : ";
138 # temperature sensor
139 if($sensorType == 0x01) {
140 my $dbusPath =
141 temperatureSensorPathFixup($sensorName, $target, $obmcPath);
142 if (not defined $dbusPath) {
143 warn("Unsupported sensor $sensorName, Ignoring\n");
144 next;
145 }
146 my $multiplierM = $sensorTypeConfig->{$sensorName}->{"multiplierM"};
147 my $offsetB = $sensorTypeConfig->{$sensorName}->{"offsetB"};
148 my $bExp = $sensorTypeConfig->{$sensorName}->{"bExp"};
149 my $rExp = $sensorTypeConfig->{$sensorName}->{"rExp"};
150 my $unit = $sensorTypeConfig->{$sensorName}->{"unit"};
151 my $scale = $sensorTypeConfig->{$sensorName}->{"scale"};
Marri Devender Rao49b3e642018-03-20 09:25:25 -0500152 # TODO: openbmc/openbmc#3026
153 # Fix IPMI_SENSOR_READING_TYPE for vrm_vdd_temp_sensor
154 if ($sensorName eq "vrm_vdd_temp_sensor") {
155 $sensorReadingType = 1;
156 }
Marri Devender Rao694e8dc2018-03-12 09:21:29 -0500157 $data{'MULTIPLIER_M'} = $multiplierM;
158 $data{'OFFSET_B'} = $offsetB;
159 $data{'B_EXP'} = $bExp;
160 $data{'R_EXP'} = $rExp;
161 $data{'UNIT'} = $unit;
162 $data{'SCALE'} = $scale;
163 $data{'PATH'} = $dbusPath;
164 $debug .= "$multiplierM : $offsetB : $bExp : $rExp : $unit : ";
165 $debug .= "$scale : $dbusPath : $obmcPath : ";
166 }
167 else {
168 $debug .= "$obmcPath : ";
169 $data{'PATH'} = $obmcPath;
170 }
171 $data{'SENSOR_READING_TYPE'} = $sensorReadingType;
172 writeToFile(%data);
173 $debug .= "$sensorReadingType\n";
Tom Joseph98be5ac2018-01-24 01:37:30 +0530174 printDebug("$debug");
Ratan Guptac7366702017-02-22 18:05:44 +0530175
176 }
Ratan Guptac7366702017-02-22 18:05:44 +0530177}
Ratan Gupta39747a02017-02-22 18:16:23 +0530178close $fh;
179
Marri Devender Rao694e8dc2018-03-12 09:21:29 -0500180# Construct DBus object path for temperature sensors
181sub temperatureSensorPathFixup
182{
183 my ($sensorName, $target, $path) = @_;
184 $path = "/xyz/openbmc_project/sensors/temperature/";
185 if($sensorName eq "cpucore_temp_sensor") {
186 my $core = $targetObj->getTargetParent($target);
187 my $coreNo = $targetObj->getAttribute($core, "IPMI_INSTANCE");
188 my $proc = Util::getEnclosingFru($targetObj, $core);
189 my $procNo = $targetObj->getAttribute($proc, "POSITION");
190 my $size = Util::getSizeOfChildUnitsWithType($targetObj, "CORE", $proc);
191 $coreNo = $coreNo - ($procNo * $size);
192 $path .= "p" . $procNo . "_core" . $coreNo . "_temp";
193 }
194 elsif ($sensorName eq "dimm_temp_sensor") {
195 my $dimm = $targetObj->getTargetParent($target);
196 my $dimmconn = $targetObj->getTargetParent($dimm);
197 my $pos = $targetObj->getAttribute($dimmconn, "POSITION");
198 $path .= "dimm" . $pos . "_temp";
199 }
200 elsif ($sensorName eq "vrm_vdd_temp_sensor") {
201 my $proc = Util::getEnclosingFru($targetObj, $target);
202 my $procNo = $targetObj->getAttribute($proc, "POSITION");
203 $path .= "p" . $procNo . "_vdd_temp";
204 }
205 elsif ($sensorName eq "memory_temp_sensor") {
206 my $gvcard = $targetObj->getTargetParent($target);
207 my $pos = $targetObj->getAttribute($gvcard, "IPMI_INSTANCE");
208 $path .= "gpu" . $pos . "_mem_temp";
209 }
210 elsif ($sensorName eq "gpu_temp_sensor") {
211 my $gvcard = $targetObj->getTargetParent($target);
212 my $pos = $targetObj->getAttribute($gvcard, "IPMI_INSTANCE");
213 $path .= "gpu" . $pos . "_core_temp";
214 }
215 else {
216 return undef;
217 }
218 return $path;
219}
220
Marri Devender Rao17f06792018-03-20 03:15:10 -0500221#Write the interfaces data into the output file
222sub writeInterfaces
223{
224 my ($interfaces, $fh) = @_;
225 print $fh " interfaces:"."\n";
226 #Walk over all the interfces as it needs to be written
227 while (my ($interface,$properties) = each %{$interfaces}) {
228 print $fh " ".$interface.":\n";
229 #walk over all the properties as it needs to be written
230 while (my ($dbusProperty,$dbusPropertyValue) = each %{$properties}) {
231 #will write property named "Property" first then
232 #other properties.
233 print $fh " ".$dbusProperty.":\n";
234 while (my ($condition,$offsets) = each %{$dbusPropertyValue}) {
235 print $fh " $condition:\n";
236 while (my ($offset,$values) = each %{$offsets}) {
237 print $fh " $offset:\n";
238 while (my ($key,$value) = each %{$values}) {
239 print $fh " $key: ". $value."\n";
240 }
241 }
242 }
243 }
244 }
245}
Ratan Gupta39747a02017-02-22 18:16:23 +0530246
247#Get the metadata for the incoming sensortype from the loaded config file.
248#Write the sensor data into the output file
Ratan Gupta39747a02017-02-22 18:16:23 +0530249sub writeToFile
250{
Marri Devender Rao694e8dc2018-03-12 09:21:29 -0500251 my (%data) = @_;
252 my $sensorType = $data{'SENSOR_TYPE'};
253 my $fs = $data{'FH'};
254 print $fh " entityID: ".$data{'ENTITY_ID'}."\n";
255 print $fh " entityInstance: ".$data{'ENTITY_INSTANCE'}."\n";
256 print $fh " sensorType: ".$data{'SENSOR_TYPE'}."\n";
257 print $fh " path: ".$data{'PATH'}."\n";
258 print $fh " sensorReadingType: ".$data{'SENSOR_READING_TYPE'}."\n";
259 print $fh " serviceInterface: ".$data{'SERVICE_INTF'}."\n";
260 print $fh " readingType: ".$data{'READING_TYPE'}."\n";
261 print $fh " sensorNamePattern: ".$data{'SENSOR_NAME_PATTERN'}."\n";
Jayanth Othayothaf27cef2018-04-02 06:53:36 -0500262 print $fh " mutability: ".$data{'MUTABILITY'}."\n";
Dhruvaraj Subhashchandran611b90f2017-07-27 08:05:42 -0500263
Marri Devender Rao694e8dc2018-03-12 09:21:29 -0500264 # temperature sensor
265 if ($sensorType == 0x01) {
266 print $fh " multiplierM: ".$data{'MULTIPLIER_M'}."\n";
267 print $fh " offsetB: ".$data{'OFFSET_B'}."\n";
268 print $fh " bExp: ".$data{'B_EXP'}."\n";
269 print $fh " rExp: ".$data{'R_EXP'}."\n";
270 print $fh " unit: ".$data{'UNIT'}."\n";
271 print $fh " scale: ".$data{'SCALE'}."\n";
272 }
Dhruvaraj Subhashchandran6a6bd292017-07-12 06:39:09 -0500273
Marri Devender Rao694e8dc2018-03-12 09:21:29 -0500274 my $sensorName = $data{'SENSOR_NAME'};
Deepak Kodihalli00cef2c2017-08-12 11:34:37 -0500275 my $interfaces = $sensorTypeConfig->{$sensorName}->{"interfaces"};
Marri Devender Rao17f06792018-03-20 03:15:10 -0500276 writeInterfaces($interfaces, $fh);
Ratan Gupta39747a02017-02-22 18:16:23 +0530277}
Ratan Guptac7366702017-02-22 18:05:44 +0530278
Marri Devender Rao694e8dc2018-03-12 09:21:29 -0500279# Convert MRW OCC inventory path to application d-bus path
Deepak Kodihalli00cef2c2017-08-12 11:34:37 -0500280sub checkOccPathFixup
281{
282 my ($path) = @_;
283 if ("/system/chassis/motherboard/cpu0/occ" eq $path) {
284 return "/org/open_power/control/occ0";
285 }
286 if ("/system/chassis/motherboard/cpu1/occ" eq $path) {
287 return "/org/open_power/control/occ1";
288 }
289 return $path;
290}
291
Ratan Guptac7366702017-02-22 18:05:44 +0530292# Usage
293sub printUsage
294{
295 print "
Ratan Gupta39747a02017-02-22 18:16:23 +0530296 $0 -i [MRW filename] -m [SensorMetaData filename] -o [Output filename] [OPTIONS]
Ratan Guptac7366702017-02-22 18:05:44 +0530297Options:
298 -d = debug mode
299 \n";
300 exit(1);
301}
302
303# Helper function to put debug statements.
304sub printDebug
305{
306 my $str = shift;
307 print "DEBUG: ", $str, "\n" if $debug;
308}