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 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
/* 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 <include/opal-internal.h>
#include <fsp-leds.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);
}
/*
* Get System Attention Indicator SLCA entry
*/
static const struct slca_entry *slca_get_sai_entry(void)
{
int count;
unsigned int i;
struct HDIF_common_hdr *slca_hdr;
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;
}
for (i = 0; i < count; i++) {
const struct slca_entry *s_entry;
unsigned int entry_sz;
s_entry = HDIF_get_iarray_item(slca_hdr, SLCA_IDATA_ARRAY,
i, &entry_sz);
if (s_entry &&
VPD_ID(s_entry->fru_id[0],
s_entry->fru_id[1]) == SLCA_SAI_INDICATOR_ID) {
prlog(PR_TRACE, "SLCA: SAI index: 0x%x\n",
s_entry->my_index);
prlog(PR_TRACE, "SLCA: SAI location code: %s\n",
s_entry->loc_code);
return s_entry;
}
}
return NULL;
}
/*
* SLCA structure contains System Attention Indicator location
* code (FRU ID = SA). Add this information to device tree
* (under '/ibm,opal/led').
*/
void slca_dt_add_sai_node(void)
{
const struct slca_entry *s_entry;
struct dt_node *led_node, *sai_node;
s_entry = slca_get_sai_entry();
if (!s_entry)
return;
/* Create /ibm,opal node, if its not created already */
if (!opal_node)
return;
/* Crete LED parent node */
led_node = dt_find_by_path(opal_node, DT_PROPERTY_LED_NODE);
if (!led_node)
return;
if (s_entry->loc_code_len == 0 ||
s_entry->loc_code_len > LOC_CODE_SIZE)
return;
/* Create SAI node */
sai_node = dt_new(led_node, s_entry->loc_code);
assert(sai_node);
dt_add_property_string(sai_node,
DT_PROPERTY_LED_TYPES, LED_TYPE_ATTENTION);
}
|