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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
/* Copyright 2013-2014 IBM Corp.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
* implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include <device.h>
#include "spira.h"
#include "hdata.h"
const struct slca_entry *slca_get_entry(uint16_t slca_index)
{
struct HDIF_common_hdr *slca_hdr;
int count;
slca_hdr = get_hdif(&spira.ntuples.slca, SLCA_HDIF_SIG);
if (!slca_hdr) {
prerror("SLCA Invalid\n");
return NULL;
}
count = HDIF_get_iarray_size(slca_hdr, SLCA_IDATA_ARRAY);
if (count < 0) {
prerror("SLCA: Can't find SLCA array size!\n");
return NULL;
}
if (slca_index < count) {
const struct slca_entry *s_entry;
unsigned int entry_sz;
s_entry = HDIF_get_iarray_item(slca_hdr, SLCA_IDATA_ARRAY,
slca_index, &entry_sz);
if (s_entry && entry_sz >= sizeof(*s_entry))
return s_entry;
} else
prlog(PR_NOTICE,
"SLCA: Can't find slca_entry for index %d\n", slca_index);
return NULL;
}
const char *slca_get_vpd_name(uint16_t slca_index)
{
const struct slca_entry *s_entry;
s_entry = slca_get_entry(slca_index);
if (s_entry)
return (const char *)s_entry->fru_id;
else
prlog(PR_NOTICE,
"SLCA: Can't find fru_id for index %d\n", slca_index);
return NULL;
}
const char *slca_get_loc_code_index(uint16_t slca_index)
{
const struct slca_entry *s_entry;
s_entry = slca_get_entry(slca_index);
if (s_entry)
return s_entry->loc_code;
else
prlog(PR_NOTICE, "SLCA: Entry %d bad idata\n", slca_index);
return NULL;
}
void slca_vpd_add_loc_code(struct dt_node *node, uint16_t slca_index)
{
const char *fru_loc_code;
char loc_code[LOC_CODE_SIZE];
memset(loc_code, 0, sizeof(loc_code));
fru_loc_code = slca_get_loc_code_index(slca_index);
if (!fru_loc_code)
return;
strncpy(loc_code, fru_loc_code, LOC_CODE_SIZE - 1);
dt_add_property(node, "ibm,loc-code", loc_code, strlen(loc_code) + 1);
}
|