#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <kstat.h>
#include <fcntl.h>
#include <string.h>
#include <assert.h>
#include <libintl.h>
#include <note.h>
#include <sys/systeminfo.h>
#include <sys/openpromio.h>
#include <sys/sysmacros.h>
#include <picl.h>
#include "picldefs.h"
#include <pdevinfo.h>
#include <display.h>
#include <display_sun4v.h>
#include <libprtdiag.h>
#include "erie.h"
#if !defined(TEXT_DOMAIN)
#define TEXT_DOMAIN "SYS_TEST"
#endif
int
erie_pci_callback(picl_nodehdl_t pcih, void *args)
{
int err = PICL_SUCCESS;
picl_nodehdl_t nodeh;
char path[MAXSTRLEN];
char parent_path[MAXSTRLEN];
char piclclass[PICL_CLASSNAMELEN_MAX];
char name[MAXSTRLEN];
char model[MAXSTRLEN];
char nac[MAXSTRLEN];
char bus_type[MAXSTRLEN];
int slot = NO_SLOT;
err = picl_get_propval_by_name(pcih, PICL_PROP_DEVFS_PATH, parent_path,
sizeof (parent_path));
if (err != PICL_SUCCESS) {
return (err);
}
err = picl_get_propval_by_name(pcih, PICL_PROP_CHILD, &nodeh,
sizeof (picl_nodehdl_t));
while (err == PICL_SUCCESS) {
if ((err = erie_get_class(nodeh, piclclass,
sizeof (piclclass))) != PICL_SUCCESS)
return (err);
if ((strcmp(piclclass, "pci") == 0 ||
(strcmp(piclclass, "pciex") == 0))) {
err = picl_get_propval_by_name(nodeh, PICL_PROP_PEER,
&nodeh, sizeof (picl_nodehdl_t));
continue;
}
if ((err = erie_get_path(nodeh, path, sizeof (path)))
!= PICL_SUCCESS)
return (err);
if ((err = erie_get_name(nodeh, name, sizeof (name)))
!= PICL_SUCCESS)
return (err);
if ((err = erie_get_model(nodeh, model, sizeof (model)))
!= PICL_SUCCESS)
return (err);
erie_get_bus_type(parent_path, bus_type);
slot = erie_get_slot_number(path);
erie_get_nac(bus_type, path, slot, name, nac, sizeof (nac));
log_printf("%-11s", nac);
log_printf("%-6s", bus_type);
if (slot != NO_SLOT) {
log_printf("%5d", slot);
log_printf("%46s", path);
} else {
log_printf("%5s", MOTHERBOARD);
log_printf("%46s", path);
}
if (strlen(name) > 25)
log_printf("%25.24s+", name);
else
log_printf("%26s", name);
if (strlen(model) > 10)
log_printf("%10.9s+", model);
else
log_printf("%11s", model);
log_printf("\n");
err = picl_get_propval_by_name(nodeh, PICL_PROP_PEER, &nodeh,
sizeof (picl_nodehdl_t));
}
return (PICL_WALK_CONTINUE);
}
int
erie_hw_rev_callback(picl_nodehdl_t pcih, void *args)
{
int err = PICL_SUCCESS;
char path[MAXSTRLEN] = "";
char nac[MAXSTRLEN];
char *compatible;
int32_t revision;
err = picl_get_propval_by_name(pcih, PICL_PROP_DEVFS_PATH, path,
sizeof (path));
if (err != PICL_SUCCESS) {
return (err);
}
if ((strcmp(path, ERIE_NETWORK_0) == 0) ||
(strcmp(path, ERIE_NETWORK_1) == 0)) {
(void) snprintf(nac, sizeof (nac), "%s/%s%d", MOTHERBOARD,
OPHIR, 0);
revision = erie_get_int_propval(pcih, OBP_PROP_REVISION_ID,
&err);
} else if ((strcmp(path, ERIE_NETWORK_2) == 0) ||
(strcmp(path, ERIE_NETWORK_3) == 0)) {
(void) snprintf(nac, sizeof (nac), "%s/%s%d", MOTHERBOARD,
OPHIR, 1);
revision = erie_get_int_propval(pcih, OBP_PROP_REVISION_ID,
&err);
} else if ((strcmp(path, ERIE_LSI_PATH) == 0)) {
(void) snprintf(nac, sizeof (nac), "%s/%s", MOTHERBOARD,
SAS_SATA_HBA);
revision = erie_get_int_propval(pcih, OBP_PROP_REVISION_ID,
&err);
} else if ((strcmp(path, FIRE0) == 0) || (strcmp(path, FIRE1) == 0)) {
(void) snprintf(nac, sizeof (nac), "%s/%s", MOTHERBOARD,
IOBRIDGE);
revision = erie_get_int_propval(pcih, OBP_PROP_REVISION_ID,
&err);
} else if ((strcmp(path, PCIE_PCIX) == 0) ||
(strcmp(path, PCIE_PCIE) == 0)) {
(void) snprintf(nac, sizeof (nac), "%s/%s", MOTHERBOARD,
PCI_BRIDGE);
revision = erie_get_int_propval(pcih, OBP_PROP_REVISION_ID,
&err);
} else {
return (PICL_WALK_CONTINUE);
}
err = erie_get_first_compatible_value(pcih, &compatible);
if (err != PICL_SUCCESS) {
return (err);
}
log_printf("%-20s", nac);
log_printf("%41s", path);
log_printf("%31s", compatible);
free(compatible);
log_printf("%6d", revision);
log_printf("\n");
return (PICL_WALK_CONTINUE);
}
int
erie_get_first_compatible_value(picl_nodehdl_t nodeh, char **outbuf)
{
int err;
picl_prophdl_t proph;
picl_propinfo_t pinfo;
picl_prophdl_t tblh;
picl_prophdl_t rowproph;
char *pval;
err = picl_get_propinfo_by_name(nodeh, OBP_PROP_COMPATIBLE,
&pinfo, &proph);
if (err != PICL_SUCCESS)
return (err);
if (pinfo.type == PICL_PTYPE_CHARSTRING) {
pval = malloc(pinfo.size);
if (pval == NULL)
return (PICL_FAILURE);
err = picl_get_propval(proph, pval, pinfo.size);
if (err != PICL_SUCCESS) {
free(pval);
return (err);
}
*outbuf = pval;
return (PICL_SUCCESS);
}
if (pinfo.type != PICL_PTYPE_TABLE)
return (PICL_FAILURE);
err = picl_get_propval(proph, &tblh, pinfo.size);
if (err != PICL_SUCCESS)
return (err);
err = picl_get_next_by_row(tblh, &rowproph);
if (err != PICL_SUCCESS)
return (err);
err = picl_get_propinfo(rowproph, &pinfo);
if (err != PICL_SUCCESS)
return (err);
pval = malloc(pinfo.size);
if (pval == NULL)
return (PICL_FAILURE);
err = picl_get_propval(rowproph, pval, pinfo.size);
if (err != PICL_SUCCESS) {
free(pval);
return (err);
}
*outbuf = pval;
return (PICL_SUCCESS);
}
int64_t
erie_get_int_propval(picl_nodehdl_t modh, char *prop_name, int *ret)
{
int err;
picl_prophdl_t proph;
picl_propinfo_t pinfo;
int8_t int8v;
int16_t int16v;
int32_t int32v;
int64_t int64v;
err = picl_get_propinfo_by_name(modh, prop_name, &pinfo, &proph);
if (err != PICL_SUCCESS) {
*ret = err;
return (0);
}
if ((pinfo.type != PICL_PTYPE_INT) &&
(pinfo.type != PICL_PTYPE_UNSIGNED_INT) &&
(pinfo.type != PICL_PTYPE_BYTEARRAY)) {
*ret = PICL_FAILURE;
return (0);
}
switch (pinfo.size) {
case sizeof (int8_t):
err = picl_get_propval(proph, &int8v, sizeof (int8v));
*ret = err;
return (int8v);
case sizeof (int16_t):
err = picl_get_propval(proph, &int16v, sizeof (int16v));
*ret = err;
return (int16v);
case sizeof (int32_t):
err = picl_get_propval(proph, &int32v, sizeof (int32v));
*ret = err;
return (int32v);
case sizeof (int64_t):
err = picl_get_propval(proph, &int64v, sizeof (int64v));
*ret = err;
return (int64v);
default:
*ret = PICL_FAILURE;
return (0);
}
}
void
erie_get_bus_type(char path[], char bus_type[])
{
if (strncmp(path, PCIX_BUS, ERIE_PCIX_COMP) == 0) {
(void) strcpy(bus_type, "PCIX");
} else {
(void) strcpy(bus_type, "PCIE");
}
}
int
erie_get_slot_number(char path[])
{
if (strncmp(path, FIRE0, ERIE_PCIE_COMP) == 0)
return (0);
return (NO_SLOT);
}
int
erie_get_network_instance(char path[])
{
if (strncmp(path, ERIE_NETWORK_1, strlen(ERIE_NETWORK_1)) == 0) {
return (1);
} else if (strncmp(path, ERIE_NETWORK_3, strlen(ERIE_NETWORK_3)) == 0) {
return (3);
} else if (strncmp(path, ERIE_NETWORK_0, strlen(ERIE_NETWORK_0)) == 0) {
return (0);
} else if (strncmp(path, ERIE_NETWORK_2, strlen(ERIE_NETWORK_2)) == 0) {
return (2);
} else {
return (-1);
}
}
int
erie_get_path(picl_nodehdl_t nodeh, char path[], int size)
{
int err;
err = picl_get_propval_by_name(nodeh, PICL_PROP_DEVFS_PATH,
path, size);
return (err);
}
int
erie_get_name(picl_nodehdl_t nodeh, char name[], int size)
{
int err;
char *compatible;
char binding_name[MAXSTRLEN];
char lname[MAXSTRLEN];
err = picl_get_propval_by_name(nodeh, PICL_PROP_NAME, &lname, size);
if (err == PICL_PROPNOTFOUND) {
(void) strcpy(lname, "");
err = PICL_SUCCESS;
}
err = picl_get_propval_by_name(nodeh, PICL_PROP_BINDING_NAME,
&binding_name, sizeof (binding_name));
if (err == PICL_SUCCESS) {
if (strcmp(lname, binding_name) != 0) {
(void) strlcat(lname, "-", MAXSTRLEN);
(void) strlcat(lname, binding_name, MAXSTRLEN);
}
} else if (err == PICL_PROPNOTFOUND) {
err = erie_get_first_compatible_value(nodeh, &compatible);
if (err == PICL_SUCCESS) {
(void) strlcat(lname, "-", MAXSTRLEN);
(void) strlcat(lname, compatible, MAXSTRLEN);
}
err = PICL_SUCCESS;
} else {
return (err);
}
(void) strcpy(name, lname);
return (err);
}
void
erie_get_nac(char bus_type[], char path[], int slot, char name[], char nac[],
int size)
{
int instance;
if (strncmp(name, NETWORK, NET_COMP_NUM) == 0) {
instance = erie_get_network_instance(path);
(void) snprintf(nac, size, "%s/%s%d", MOTHERBOARD,
"NET", instance);
} else if (slot != NO_SLOT) {
(void) snprintf(nac, size, "%s/%s%d", MOTHERBOARD, bus_type,
slot);
} else {
(void) snprintf(nac, size, "%s/%s", MOTHERBOARD, bus_type);
}
}
int
erie_get_model(picl_nodehdl_t nodeh, char model[], int size)
{
int err;
char tmp_model[MAXSTRLEN];
err = picl_get_propval_by_name(nodeh, OBP_PROP_MODEL,
&tmp_model, size);
if (err == PICL_PROPNOTFOUND) {
(void) strcpy(model, "");
err = PICL_SUCCESS;
} else {
(void) strcpy(model, tmp_model);
}
return (err);
}
int
erie_get_class(picl_nodehdl_t nodeh, char piclclass[], int size)
{
int err;
err = picl_get_propval_by_name(nodeh, PICL_PROP_CLASSNAME,
piclclass, size);
return (err);
}