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 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618
|
/*
* example_oem.c
*
* Example OEM code
*
* (C) 2003 MontaVista Software, Inc. All right reserved.
*
* This code is placed into the public domain, you may use this code
* incorporate it into a design, or whatever you want.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
* OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
* TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE
* USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <math.h>
#include <OpenIPMI/ipmi_oem.h>
#include <OpenIPMI/ipmi_mc.h>
#include <OpenIPMI/ipmi_sensor.h>
#include <OpenIPMI/ipmi_control.h>
#include <OpenIPMI/ipmi_entity.h>
#include <OpenIPMI/ipmi_addr.h>
#include <OpenIPMI/ipmi_err.h>
#include <OpenIPMI/ipmi_int.h>
#include <OpenIPMI/ipmi_msgbits.h>
/* These are the identifiers used in the get device id command to
identify the various board types. */
#define OEM_MANUFACTURER_ID 0x998877
#define OEM_PRODUCT_ID 0x6655
/* Information common to all sensors. */
typedef struct oem_sensor_header_s
{
unsigned int assert_events;
unsigned int deassert_events;
void *data;
void (*data_freer)(void *);
} oem_sensor_header_t;
/* Information common to all controls. */
typedef struct oem_control_header_s
{
void *data;
} oem_control_header_t;
/* Various LED settings. */
static ipmi_control_transition_t off_led[]
= { {IPMI_CONTROL_COLOR_BLACK, 1 } };
static ipmi_control_transition_t on_blue_led[]
= { { IPMI_CONTROL_COLOR_BLUE, 1 } };
static ipmi_control_transition_t blue_led1[] = /* A flashing blue LED. */
{
{ IPMI_CONTROL_COLOR_BLUE, 500 },
{ IPMI_CONTROL_COLOR_BLACK, 500 },
};
/* Setting 0 if off, setting 1 is solid on, setting 2 is flashing. */
static ipmi_control_setting_t blue_blinking_led_set[] =
{
{ 1, off_led },
{ 1, on_blue_led },
{ 2, blue_led1 },
};
static ipmi_control_light_t blue_blinking_led[]
= {{ 3, blue_blinking_led_set }};
typedef struct oem_sens_info_s oem_sens_info_t;
typedef void (*oem_states_get_val_cb)(ipmi_sensor_t *sensor,
oem_sens_info_t *sens_info,
unsigned char *data,
ipmi_states_t *states);
/* Should return the new error. */
typedef int (*oem_states_err_cb)(ipmi_sensor_t *sensor,
oem_sens_info_t *sens_info,
int err,
unsigned char *data,
ipmi_states_t *states);
struct oem_sens_info_s
{
ipmi_sensor_op_info_t sdata;
void *sdinfo;
oem_states_get_val_cb get_states;
oem_states_err_cb err_states;
ipmi_states_read_cb done;
void *cb_data;
};
static oem_sens_info_t *
alloc_sens_info(void *sdinfo, ipmi_states_read_cb done, void *cb_data)
{
oem_sens_info_t *sens_info;
sens_info = ipmi_mem_alloc(sizeof(*sens_info));
if (!sens_info)
return NULL;
memset(sens_info, 0, sizeof(*sens_info));
sens_info->sdinfo = sdinfo;
sens_info->done = done;
sens_info->cb_data = cb_data;
return sens_info;
}
typedef struct oem_control_info_s oem_control_info_t;
typedef int (*oem_control_get_val_cb)(ipmi_control_t *control,
oem_control_info_t *control_info,
unsigned char *data);
struct oem_control_info_s
{
ipmi_control_op_info_t sdata;
unsigned char vals[4];
void *idinfo;
ipmi_control_op_cb done_set;
ipmi_control_val_cb done_get;
oem_control_get_val_cb get_val;
ipmi_control_identifier_val_cb get_identifier_val;
void *cb_data;
};
typedef struct oem_reading_done_s
{
ipmi_sensor_op_info_t sdata;
void *sdinfo;
ipmi_reading_done_cb done;
void *cb_data;
} oem_reading_done_t;
/* If registered against an MC, this will be called with each sensor.
If you return 1, the sensor will NOT be added to the standard set
of sensors for the MC. */
static int
oem_new_sensor(ipmi_mc_t *mc,
ipmi_entity_t *ent,
ipmi_sensor_t *sensor,
void *link,
void *cb_data)
{
int lun, num;
ipmi_sensor_get_num(sensor, &lun, &num);
/* This is where you fix up broken SDR info, and set sensors as
hot-swap sensors, and the like. You can also set custom data
converters or whatever you like here. */
switch (num) {
default:
}
return 0;
}
/* The following are various OEM operations that you will need to
override (or just use the standard ones */
static int
oem_events_enable_set(ipmi_sensor_t *sensor,
ipmi_event_state_t *states,
ipmi_sensor_done_cb done,
void *cb_data)
{
return ENOTSUP;
}
static int
oem_events_enable_get(ipmi_sensor_t *sensor,
ipmi_event_enables_get_cb done,
void *cb_data)
{
ipmi_event_state_t state;
oem_sensor_header_t *hdr = ipmi_sensor_get_oem_info(sensor);
if (done) {
ipmi_event_state_init(&state);
ipmi_event_state_set_scanning_enabled(&state, 1);
state.__assertion_events = hdr->assert_events;
state.__deassertion_events = hdr->deassert_events;
done(sensor, 0, &state, cb_data);
}
return 0;
}
static int
oem_sensor_get_hysteresis(ipmi_sensor_t *sensor,
ipmi_hysteresis_get_cb done,
void *cb_data)
{
return ENOSYS;
}
static int
oem_sensor_set_hysteresis(ipmi_sensor_t *sensor,
unsigned int positive_hysteresis,
unsigned int negative_hysteresis,
ipmi_sensor_done_cb done,
void *cb_data)
{
return ENOSYS;
}
static int
oem_thresholds_get(ipmi_sensor_t *sensor,
ipmi_thresh_get_cb done,
void *cb_data)
{
ipmi_thresholds_t th;
int rv;
rv = ipmi_get_default_sensor_thresholds(sensor, 0, &th);
if (done)
done(sensor, rv, &th, cb_data);
return 0;
}
static int
oem_thresholds_set(ipmi_sensor_t *sensor,
ipmi_thresholds_t *thresholds,
ipmi_sensor_done_cb done,
void *cb_data)
{
return ENOSYS;
}
static int
oem_sensor_get_tolerance(ipmi_sensor_t *sensor,
int val,
double *tolerance)
{
return ENOSYS;
}
static int
oem_sensor_get_accuracy(ipmi_sensor_t *sensor,
int val,
double *accuracy)
{
return ENOSYS;
}
/*
* The get done operation for most discrete sensors is pretty
* standard. We call a function to extract the states from the
* message, then call the user's callback.
*/
static void
oem_discrete_sensor_get_done(ipmi_sensor_t *sensor,
int err,
ipmi_msg_t *rsp,
void *cb_data)
{
oem_sens_info_t *sens_info = cb_data;
ipmi_states_t states;
ipmi_init_states(&states);
ipmi_set_sensor_scanning_enabled(&states, 1);
if (err) {
/* Check the error handler first, and let it handle the error. */
if (sens_info->err_states) {
err = sens_info->err_states(sensor, sens_info, err,
rsp->data, &states);
if (!err)
goto deliver;
}
if (sens_info->done)
sens_info->done(sensor, err,
&states, sens_info->cb_data);
goto out;
}
if (rsp->data[0] != 0) {
ipmi_log(IPMI_LOG_ERR_INFO,
"oem_discrete_sensor_get_done: Received IPMI error: %x",
rsp->data[0]);
if (sens_info->done)
sens_info->done(sensor, IPMI_IPMI_ERR_VAL(rsp->data[0]),
&states, sens_info->cb_data);
goto out;
}
sens_info->get_states(sensor, sens_info, rsp->data, &states);
deliver:
if (sens_info->done)
sens_info->done(sensor, 0, &states, sens_info->cb_data);
out:
ipmi_sensor_opq_done(sensor);
ipmi_mem_free(sens_info);
}
/* Called to free the OEM data we attach to the sensor. */
static void
oem_cleanup_sensor_oem_info(ipmi_sensor_t *sensor, void *oem_info)
{
oem_sensor_header_t *hdr = oem_info;
if (hdr) {
if (hdr->data_freer)
hdr->data_freer(hdr->data);
ipmi_mem_free(hdr);
}
}
/* Allocate basic sensor information. The parms are:
* data - Generic data for the sensor-specific handling to use.
* data_freer() - a function to handle cleaning up data when the
* sensor is freed
* sensor_type - the IPMI sensor type.
* reading_type - the IPMI reading type.
* id - The string name for the sensor.
* assert_events - The supported assertion event bitmask
* deassert_events - The supported deassertion event bitmask
*/
static int
oem_alloc_basic_sensor(
void *data,
void (*data_freer)(void *),
unsigned int sensor_type,
unsigned int reading_type,
char *id,
unsigned int assert_events,
unsigned int deassert_events,
ipmi_sensor_t **sensor)
{
int rv;
oem_sensor_header_t *hdr;
hdr = ipmi_mem_alloc(sizeof(*hdr));
if (!hdr)
return ENOMEM;
hdr->assert_events = assert_events;
hdr->deassert_events = deassert_events;
hdr->data = data;
hdr->data_freer = data_freer;
/* Allocate the sensor. */
rv = ipmi_sensor_alloc_nonstandard(sensor);
if (rv) {
ipmi_mem_free(hdr);
return rv;
}
/* Fill out a bunch of default values. */
ipmi_sensor_set_oem_info(*sensor, hdr, oem_cleanup_sensor_oem_info);
ipmi_sensor_set_entity_instance_logical(*sensor, 0);
ipmi_sensor_set_sensor_init_scanning(*sensor, 1);
ipmi_sensor_set_sensor_init_events(*sensor, 0);
ipmi_sensor_set_sensor_init_thresholds(*sensor, 0);
ipmi_sensor_set_sensor_init_hysteresis(*sensor, 0);
ipmi_sensor_set_sensor_init_type(*sensor, 1);
ipmi_sensor_set_sensor_init_pu_events(*sensor, 0);
ipmi_sensor_set_sensor_init_pu_scanning(*sensor, 1);
ipmi_sensor_set_ignore_for_presence(*sensor, 1);
ipmi_sensor_set_supports_auto_rearm(*sensor, 1);
if (assert_events || deassert_events)
ipmi_sensor_set_event_support(*sensor,
IPMI_EVENT_SUPPORT_GLOBAL_DISABLE);
else
ipmi_sensor_set_event_support(*sensor, IPMI_EVENT_SUPPORT_NONE);
ipmi_sensor_set_sensor_type(*sensor, sensor_type);
ipmi_sensor_set_event_reading_type(*sensor, reading_type);
ipmi_sensor_set_id(*sensor, id);
ipmi_sensor_set_sensor_type_string(
*sensor,
ipmi_get_sensor_type_string(sensor_type));
ipmi_sensor_set_event_reading_type_string(
*sensor,
ipmi_get_event_reading_type_string(reading_type));
return rv;
}
/*
* Finish the sensor handling, basically add it to the MC and entity.
*/
static int
oem_finish_sensor(ipmi_mc_t *mc,
ipmi_sensor_t *sensor,
unsigned int num,
ipmi_entity_t *entity)
{
int rv;
/* Add it to the MC and entity. */
rv = ipmi_sensor_add_nonstandard(mc, sensor, num, entity, NULL, NULL);
if (rv) {
void *hdr;
hdr = ipmi_sensor_get_oem_info(sensor);
ipmi_sensor_destroy(sensor);
ipmi_mem_free(hdr);
}
return rv;
}
/*
* Allocate discrete sensor information. The first are the same as for the
* basic sensor above. The other parms are:
* states_get - A function that gets the current states.
* sensor_reading_name_string - A function to get the reading type
* string. This may be NULL and the standard one will be
* used.
*/
static int
oem_alloc_discrete_sensor(
ipmi_mc_t *mc,
ipmi_entity_t *entity,
unsigned int num,
void *data,
void (*data_freer)(void *),
unsigned int sensor_type,
unsigned int reading_type,
char *id,
unsigned int assert_events,
unsigned int deassert_events,
ipmi_states_get_cb states_get,
ipmi_sensor_reading_name_string_cb sensor_reading_name_string,
ipmi_sensor_t **sensor)
{
int rv;
ipmi_sensor_cbs_t cbs;
int i;
rv = oem_alloc_basic_sensor(data,
data_freer,
sensor_type,
reading_type,
id,
assert_events,
deassert_events,
sensor);
if (rv)
return rv;
/* If the event can be asserted or deasserted, assume it can be
returned and generates an event both ways. */
for (i=0; i<=14; i++) {
int aval = assert_events & 1;
int dval = deassert_events & 1;
ipmi_sensor_set_discrete_assertion_event_supported(*sensor, i, aval);
ipmi_sensor_set_discrete_deassertion_event_supported(*sensor, i, dval);
ipmi_sensor_discrete_set_event_readable(*sensor, i, aval | dval);
assert_events >>= 1;
deassert_events >>= 1;
}
/* Create all the callbacks in the data structure. */
memset(&cbs, 0, sizeof(cbs));
cbs.ipmi_sensor_events_enable_set = oem_events_enable_set;
cbs.ipmi_sensor_events_enable_get = oem_events_enable_get;
cbs.ipmi_states_get = states_get;
/* If ths user supply a function to get the name strings, use it.
Otherwise use the standard one. */
if (sensor_reading_name_string)
cbs.ipmi_sensor_reading_name_string = sensor_reading_name_string;
else
cbs.ipmi_sensor_reading_name_string
= ipmi_standard_sensor_cb.ipmi_sensor_reading_name_string;
ipmi_sensor_set_callbacks(*sensor, &cbs);
rv = oem_finish_sensor(mc, *sensor, num, entity);
return rv;
}
/*
* Allocate a semi-standard threshold sensor information. Semi-standard
* means that it can use standard conversion formulas, is linear, and
* is a more "normal" sensor. The first parmse are the same as for the
* basic sensor above. The other parms are:
* reading_get - A function that gets the current reading.
* raw_nominal - the raw (0-255) value for the nominal reading.
* raw_normal_max - the raw value for the max value inside the
* threshold.
* raw_normal_max - the raw value for the min value inside the
* threshold.
* m, b, b_exp, r_exp - The sensor conversion values.
*/
static int
oem_alloc_semi_stand_threshold_sensor(
ipmi_mc_t *mc,
ipmi_entity_t *entity,
unsigned int num,
void *data,
void (*data_freer)(void *),
unsigned int sensor_type,
unsigned int base_unit,
char *id,
unsigned int assert_events,
unsigned int deassert_events,
ipmi_reading_get_cb reading_get,
int raw_nominal, /* -1 disables. */
int raw_normal_min, /* -1 disables. */
int raw_normal_max, /* -1 disables. */
int m,
int b,
int b_exp,
int r_exp,
ipmi_sensor_t **sensor)
{
int rv;
ipmi_sensor_cbs_t cbs;
int i;
enum ipmi_thresh_e thresh;
rv = oem_alloc_basic_sensor(data,
data_freer,
sensor_type,
IPMI_EVENT_READING_TYPE_THRESHOLD,
id,
assert_events,
deassert_events,
sensor);
if (rv)
return rv;
ipmi_sensor_set_rate_unit_string(*sensor,
ipmi_get_rate_unit_string(0));
ipmi_sensor_set_base_unit_string(*sensor,
ipmi_get_unit_type_string(base_unit));
ipmi_sensor_set_modifier_unit_string(*sensor,
ipmi_get_unit_type_string(0));
ipmi_sensor_set_hysteresis_support(*sensor, 0);
ipmi_sensor_set_threshold_access(*sensor, 0);
ipmi_sensor_set_analog_data_format(*sensor,
IPMI_ANALOG_DATA_FORMAT_UNSIGNED);
ipmi_sensor_set_rate_unit(*sensor, 0);
ipmi_sensor_set_modifier_unit_use(*sensor, 0);
ipmi_sensor_set_percentage(*sensor, 0);
ipmi_sensor_set_base_unit(*sensor, base_unit);
ipmi_sensor_set_modifier_unit(*sensor, 0);
ipmi_sensor_set_linearization(*sensor, 0);
if (raw_normal_min >= 0) {
ipmi_sensor_set_raw_normal_min(*sensor, raw_normal_min);
ipmi_sensor_set_normal_min_specified(*sensor, 1);
} else {
ipmi_sensor_set_raw_normal_min(*sensor, 0);
ipmi_sensor_set_normal_min_specified(*sensor, 0);
}
if (raw_normal_max >= 0) {
ipmi_sensor_set_raw_normal_max(*sensor, raw_normal_max);
ipmi_sensor_set_normal_max_specified(*sensor, 1);
} else {
ipmi_sensor_set_raw_normal_max(*sensor, 0);
ipmi_sensor_set_normal_max_specified(*sensor, 0);
}
if (raw_nominal >= 0) {
ipmi_sensor_set_raw_nominal_reading(*sensor, raw_nominal);
ipmi_sensor_set_nominal_reading_specified(*sensor, 1);
} else {
ipmi_sensor_set_raw_nominal_reading(*sensor, 0);
ipmi_sensor_set_nominal_reading_specified(*sensor, 0);
}
ipmi_sensor_set_raw_sensor_max(*sensor, 0xff);
ipmi_sensor_set_raw_sensor_min(*sensor, 0);
ipmi_sensor_set_raw_upper_non_recoverable_threshold(*sensor, 0);
ipmi_sensor_set_raw_upper_critical_threshold(*sensor, 0);
ipmi_sensor_set_raw_upper_non_critical_threshold(*sensor, 0);
ipmi_sensor_set_raw_lower_non_recoverable_threshold(*sensor, 0);
ipmi_sensor_set_raw_lower_critical_threshold(*sensor, 0);
ipmi_sensor_set_raw_lower_non_critical_threshold(*sensor, 0);
ipmi_sensor_set_positive_going_threshold_hysteresis(*sensor, 0);
ipmi_sensor_set_negative_going_threshold_hysteresis(*sensor, 0);
for (thresh = IPMI_LOWER_NON_CRITICAL;
thresh <= IPMI_UPPER_NON_RECOVERABLE;
thresh++)
{
if ((1 << ((thresh*2) + IPMI_GOING_LOW)) & assert_events)
ipmi_sensor_set_threshold_assertion_event_supported
(*sensor,
thresh,
IPMI_GOING_LOW,
1);
if ((1 << ((thresh*2) + IPMI_GOING_HIGH)) & assert_events)
ipmi_sensor_set_threshold_assertion_event_supported
(*sensor,
thresh,
IPMI_GOING_HIGH,
1);
if ((1 << ((thresh*2) + IPMI_GOING_LOW)) & deassert_events)
ipmi_sensor_set_threshold_deassertion_event_supported
(*sensor,
thresh,
IPMI_GOING_LOW,
1);
if ((1 << ((thresh*2) + IPMI_GOING_HIGH)) & deassert_events)
ipmi_sensor_set_threshold_deassertion_event_supported
(*sensor,
thresh,
IPMI_GOING_HIGH,
1);
/* No thresholds are readable, they are all fixed. */
ipmi_sensor_threshold_set_readable(*sensor, thresh, 0);
ipmi_sensor_threshold_set_settable(*sensor, thresh, 0);
}
for (i=0; i<256; i++) {
ipmi_sensor_set_raw_m(*sensor, i, m);
ipmi_sensor_set_raw_b(*sensor, i, b);
ipmi_sensor_set_raw_b_exp(*sensor, i, b_exp);
ipmi_sensor_set_raw_r_exp(*sensor, i, r_exp);
ipmi_sensor_set_raw_accuracy(*sensor, i, m);
ipmi_sensor_set_raw_accuracy_exp(*sensor, i, r_exp);
}
/* Create all the callbacks in the data structure. */
memset(&cbs, 0, sizeof(cbs));
cbs.ipmi_sensor_events_enable_set = oem_events_enable_set;
cbs.ipmi_sensor_events_enable_get = oem_events_enable_get;
cbs.ipmi_sensor_convert_from_raw
= ipmi_standard_sensor_cb.ipmi_sensor_convert_from_raw;
cbs.ipmi_sensor_convert_to_raw
= ipmi_standard_sensor_cb.ipmi_sensor_convert_to_raw;
cbs.ipmi_sensor_get_accuracy = oem_sensor_get_accuracy;
cbs.ipmi_sensor_get_tolerance = oem_sensor_get_tolerance;
cbs.ipmi_sensor_get_hysteresis = oem_sensor_get_hysteresis;
cbs.ipmi_sensor_set_hysteresis = oem_sensor_set_hysteresis;
cbs.ipmi_thresholds_set = oem_thresholds_set;
cbs.ipmi_thresholds_get = oem_thresholds_get;
cbs.ipmi_reading_get = reading_get;
ipmi_sensor_set_callbacks(*sensor, &cbs);
rv = oem_finish_sensor(mc, *sensor, num, entity);
return rv;
}
/*
* This is used for controls, the handling for the set_done is common
* for controls, so just do it in one place.
*/
static void
oem_control_set_done(ipmi_control_t *control,
int err,
ipmi_msg_t *rsp,
void *cb_data)
{
oem_control_info_t *control_info = cb_data;
if (err) {
if (control_info->done_set)
control_info->done_set(control, err, control_info->cb_data);
goto out;
}
if (rsp->data[0] != 0) {
ipmi_log(IPMI_LOG_ERR_INFO,
"oem_control_set_done: Received IPMI error: %x",
rsp->data[0]);
if (control_info->done_set)
control_info->done_set(control,
IPMI_IPMI_ERR_VAL(rsp->data[0]),
control_info->cb_data);
goto out;
}
if (control_info->done_set)
control_info->done_set(control, 0, control_info->cb_data);
out:
ipmi_control_opq_done(control);
ipmi_mem_free(control_info);
}
/*
* This is used for controls, the handling for the get_done is usually
* common for controls, so just do it in one place. Note that this
* only handles controls with one value, multi-valued controls need
* their own custom handler.
*/
static void
oem_control_get_done(ipmi_control_t *control,
int err,
ipmi_msg_t *rsp,
void *cb_data)
{
oem_control_info_t *control_info = cb_data;
int val;
if (err) {
if (control_info->done_get)
control_info->done_get(control, err, 0, control_info->cb_data);
goto out;
}
if (rsp->data[0] != 0) {
ipmi_log(IPMI_LOG_ERR_INFO,
"oem_control_get_done: Received IPMI error: %x",
rsp->data[0]);
if (control_info->done_get)
control_info->done_get(control,
IPMI_IPMI_ERR_VAL(rsp->data[0]),
NULL, control_info->cb_data);
goto out;
}
val = control_info->get_val(control, control_info, rsp->data);
if (control_info->done_get)
control_info->done_get(control, 0, &val, control_info->cb_data);
out:
ipmi_control_opq_done(control);
ipmi_mem_free(control_info);
}
/* Called to free the OEM data we attach to the control. */
static void
oem_cleanup_control_oem_info(ipmi_control_t *control, void *oem_info)
{
oem_sensor_header_t *hdr = oem_info;
if (hdr) {
ipmi_mem_free(hdr);
}
}
/*
* Allocate a control. The parms are:
* mc - The MC the control sits on.
* entity - The entity the control belongs to.
* num - The number of the control in the MC. This must be unique
* for the given MC.
* data - generic data for the specific control.
* control_type - The type of control (from ipmiif.h).
* id - The string name of the control.
* set_val - The function to set the value of the control.
* get_val - The function to get the current value of the control.
*/
static int
oem_alloc_control(ipmi_mc_t *mc,
ipmi_entity_t *entity,
unsigned int num,
void *data,
unsigned int control_type,
char *id,
ipmi_control_set_val_cb set_val,
ipmi_control_get_val_cb get_val,
ipmi_control_t **control)
{
int rv;
ipmi_control_cbs_t cbs;
oem_control_header_t *hdr;
hdr = ipmi_mem_alloc(sizeof(*hdr));
if (!hdr)
return ENOMEM;
hdr->data = data;
/* Allocate the sensor. */
rv = ipmi_control_alloc_nonstandard(control);
if (rv) {
ipmi_mem_free(hdr);
return rv;
}
/* Fill out default values. */
ipmi_control_set_oem_info(*control, hdr, oem_cleanup_control_oem_info);
ipmi_control_set_type(*control, control_type);
ipmi_control_set_id(*control, id);
ipmi_control_set_ignore_for_presence(*control, 1);
/* Assume we can read and set the value. */
ipmi_control_set_settable(*control, 1);
ipmi_control_set_readable(*control, 1);
/* Create all the callbacks in the data structure. */
memset(&cbs, 0, sizeof(cbs));
cbs.set_val = set_val;
cbs.get_val = get_val;
ipmi_control_set_callbacks(*control, &cbs);
/* Add it to the MC and entity. */
rv = ipmi_control_add_nonstandard(mc, *control, num, entity, NULL, NULL);
if (rv) {
ipmi_control_destroy(*control);
ipmi_mem_free(hdr);
*control = NULL;
}
return rv;
}
typedef struct oem_info_s
{
int dummy; /* No OEM info for now. */
} oem_info_t;
/* These are the sensor numbers for our board. */
#define OEM_SLOT_SENSOR_NUM 0
/* These are the control numbers for our board. */
#define OEM_BOARD_RESET_NUM 0
#define OEM_BOARD_BLUE_LED_NUM 1
/* These are the message definitions for doing some OEM operations
on a board. */
#define OEM_NETFN_OEM1 0x30
#define OEM_SET_SLOT_RESET_CMD 1
#define OEM_GET_SLOT_EJECT_CMD 2
#define OEM_SET_BLUE_LED_CMD 3
#define OEM_GET_BLUE_LED_CMD 4
/*
* Some events are system-specific, and need special handling. The
* following is an example, because we have a special sensor for the
* ejector handle, we need to handle it's events, too.
*/
/* Structure passed around to handle events. */
typedef struct mc_event_info_s
{
oem_info_t *info;
ipmi_mc_t *mc;
ipmi_event_t *event;
ipmi_event_t event_copy;
int handled;
} mc_event_info_t;
static void
oem_board_ejector_changed_event(ipmi_sensor_t *sensor, void *cb_data)
{
mc_event_info_t *einfo = cb_data;
ipmi_sensor_discrete_event_handler_cb handler;
void *h_cb_data;
enum ipmi_event_dir_e assertion;
ipmi_event_t *event = &(einfo->event_copy);
if (event->data[9] & 0x80)
assertion = IPMI_DEASSERTION;
else
assertion = IPMI_ASSERTION;
ipmi_sensor_discrete_get_event_handler(sensor, &handler, &h_cb_data);
if (handler) {
handler(sensor,
assertion,
6, /* Offset 6 is the ejector offset. */
-1, -1,
h_cb_data,
einfo->event);
einfo->event = NULL;
}
}
static int
oem_event_handler(ipmi_mc_t *mc,
ipmi_event_t *event,
void *cb_data)
{
int rv;
ipmi_sensor_id_t id;
mc_event_info_t einfo;
unsigned long timestamp;
ipmi_mc_id_t mc_id;
if ((event->type != 2) && (event->type != 3))
/* Not a system event record or OEM event. */
return 0;
if (event->data[6] != 3)
/* Not a 1.5 event version */
return 0;
timestamp = ipmi_get_uint32(&(event->data[0]));
if (timestamp < ipmi_mc_get_startup_SEL_time(mc))
/* It's an old event, ignore it. */
return 0;
einfo.info = ipmi_mc_get_oem_data(mc);
einfo.mc = mc;
einfo.event = event;
memcpy(&einfo.event_copy, event, sizeof(einfo.event_copy));
einfo.handled = 0;
/* We have to do a sensor callback so we hold the sensor lock when
we operate on it. */
mc_id = ipmi_mc_convert_to_id(mc);
id.bmc = mc_id.bmc;
id.channel = mc_id.channel;
id.mc_num = mc_id.mc_num;
id.lun = 4;
switch (event->data[8]) {
case 1:
id.sensor_num = OEM_SLOT_SENSOR_NUM;
rv = ipmi_sensor_pointer_cb(id,
oem_board_ejector_changed_event,
&einfo);
break;
}
/* If the event was handled but not delivered to the user, then
deliver it to the unhandled handler. */
if (einfo.handled && (einfo.event != NULL))
ipmi_handle_unhandled_event(mc, event);
return einfo.handled;
}
/* Start a reset operation for the board. */
static void
board_reset_set_start(ipmi_control_t *control, int err, void *cb_data)
{
oem_control_info_t *control_info = cb_data;
int rv;
ipmi_msg_t msg;
unsigned char data[4];
if (err) {
if (control_info->done_set)
control_info->done_set(control, err, control_info->cb_data);
ipmi_control_opq_done(control);
ipmi_mem_free(control_info);
return;
}
msg.netfn = OEM_NETFN_OEM1;
msg.cmd = OEM_SET_SLOT_RESET_CMD;
msg.data_len = 1;
msg.data = data;
data[0] = control_info->vals[0];
rv = ipmi_control_send_command(control, ipmi_control_get_mc(control), 0,
&msg, oem_control_set_done,
&(control_info->sdata), control_info);
if (rv) {
if (control_info->done_set)
control_info->done_set(control, rv, control_info->cb_data);
ipmi_control_opq_done(control);
ipmi_mem_free(control_info);
}
}
/*
* This is the startup operation for setting the board's reset value.
*/
static int
board_reset_set(ipmi_control_t *control,
int *val,
ipmi_control_op_cb handler,
void *cb_data)
{
oem_control_info_t *control_info;
int rv;
control_info = ipmi_mem_alloc(sizeof(*control_info));
if (!control_info)
return ENOMEM;
control_info->done_set = handler;
control_info->cb_data = cb_data;
control_info->vals[0] = *val;
/* We use the control's operation queue to serialize operations to
the control. Basically, for each control, only one operation a
time is allowed. */
rv = ipmi_control_add_opq(control, board_reset_set_start,
&(control_info->sdata), control_info);
if (rv)
ipmi_mem_free(control_info);
return rv;
}
/*
* Get the reset value. This is not supported.
*/
static int
board_reset_get(ipmi_control_t *control,
ipmi_control_val_cb handler,
void *cb_data)
{
return ENOSYS;
}
/*
* This is for the board slot sensor, we set the states properly from
* the response to the OEM_GET_SLOT_EJECT_CMD we sent earlier.
*/
static void
board_slot_get_cb(ipmi_sensor_t *sensor,
oem_sens_info_t *sens_info,
unsigned char *data,
ipmi_states_t *states)
{
if (data[1])
ipmi_set_state(states, 6, 1); /* Ejector extraction request */
else
ipmi_set_state(states, 6, 0); /* Ejector is closed */
}
/*
* Actually start the slot get operation, once the opq runs us. This
* will send the message to get the ejector handle's current state.
*/
static void
board_slot_get_start(ipmi_sensor_t *sensor, int err, void *cb_data)
{
oem_sens_info_t *get_info = cb_data;
ipmi_msg_t msg;
int rv;
ipmi_states_t states;
ipmi_init_states(&states);
ipmi_set_sensor_scanning_enabled(&states, 1);
if (err) {
if (get_info->done)
get_info->done(sensor, err, &states, get_info->cb_data);
ipmi_sensor_opq_done(sensor);
ipmi_mem_free(get_info);
return;
}
msg.netfn = OEM_NETFN_OEM1;
msg.cmd = OEM_GET_SLOT_EJECT_CMD;
msg.data_len = 0;
msg.data = NULL;
rv = ipmi_sensor_send_command(sensor, ipmi_sensor_get_mc(sensor), 0,
&msg, oem_discrete_sensor_get_done,
&(get_info->sdata), get_info);
if (rv) {
if (get_info->done)
get_info->done(sensor, rv, &states, get_info->cb_data);
ipmi_sensor_opq_done(sensor);
ipmi_mem_free(get_info);
}
}
/*
* Called to get the board's ejector handle state. This will allocate
* some info and schedule an operation to happen.
*/
static int
board_slot_get(ipmi_sensor_t *sensor,
ipmi_states_read_cb done,
void *cb_data)
{
int rv;
oem_sens_info_t *get_info;
get_info = alloc_sens_info(NULL, done, cb_data);
if (!get_info)
return ENOMEM;
get_info->get_states = board_slot_get_cb;
rv = ipmi_sensor_add_opq(sensor, board_slot_get_start,
&(get_info->sdata), get_info);
if (rv)
ipmi_mem_free(get_info);
return rv;
}
/*
* Send the message to set the blue led value.
*/
static void
board_blue_led_set_start(ipmi_control_t *control, int err, void *cb_data)
{
oem_control_info_t *control_info = cb_data;
int rv;
ipmi_msg_t msg;
unsigned char data[4];
if (err) {
if (control_info->done_set)
control_info->done_set(control, err, control_info->cb_data);
ipmi_control_opq_done(control);
ipmi_mem_free(control_info);
return;
}
msg.netfn = OEM_NETFN_OEM1;
msg.cmd = OEM_SET_BLUE_LED_CMD;
msg.data_len = 1;
data[0] = control_info->vals[0];
rv = ipmi_control_send_command(control, ipmi_control_get_mc(control), 0,
&msg, oem_control_set_done,
&(control_info->sdata), control_info);
if (rv) {
if (control_info->done_set)
control_info->done_set(control, rv, control_info->cb_data);
ipmi_control_opq_done(control);
ipmi_mem_free(control_info);
}
}
/*
* Allocate info an schedule us to set the blue led info.
*/
static int
board_blue_led_set(ipmi_control_t *control,
int *val,
ipmi_control_op_cb handler,
void *cb_data)
{
oem_control_info_t *control_info;
int rv;
control_info = ipmi_mem_alloc(sizeof(*control_info));
if (!control_info)
return ENOMEM;
control_info->done_set = handler;
control_info->cb_data = cb_data;
control_info->vals[0] = *val;
rv = ipmi_control_add_opq(control, board_blue_led_set_start,
&(control_info->sdata), control_info);
if (rv)
ipmi_mem_free(control_info);
return rv;
}
/*
* Get the value of the blue led from the response to
* OEM_GET_BLUE_LED_CMD.
*/
static int
board_blue_led_get_cb(ipmi_control_t *control,
oem_control_info_t *control_info,
unsigned char *data)
{
return data[1];
}
/* Start the operation to get the blue LED's value. */
static void
board_blue_led_get_start(ipmi_control_t *control, int err, void *cb_data)
{
oem_control_info_t *control_info = cb_data;
int rv;
ipmi_msg_t msg;
if (err) {
if (control_info->done_get)
control_info->done_get(control, err, NULL, control_info->cb_data);
ipmi_control_opq_done(control);
ipmi_mem_free(control_info);
return;
}
msg.netfn = OEM_NETFN_OEM1;
msg.cmd = OEM_GET_BLUE_LED_CMD;
msg.data_len = 0;
msg.data = NULL;
rv = ipmi_control_send_command(control, ipmi_control_get_mc(control), 0,
&msg, oem_control_get_done,
&(control_info->sdata), control_info);
if (rv) {
if (control_info->done_get)
control_info->done_get(control, rv, NULL, control_info->cb_data);
ipmi_control_opq_done(control);
ipmi_mem_free(control_info);
}
}
/*
* Allocate info and schedule an operation to get the blue LED's
* value.
*/
static int
board_blue_led_get(ipmi_control_t *control,
ipmi_control_val_cb handler,
void *cb_data)
{
oem_control_info_t *control_info;
int rv;
control_info = ipmi_mem_alloc(sizeof(*control_info));
if (!control_info)
return ENOMEM;
control_info->done_get = handler;
control_info->cb_data = cb_data;
control_info->get_val = board_blue_led_get_cb;
rv = ipmi_control_add_opq(control, board_blue_led_get_start,
&(control_info->sdata), control_info);
if (rv)
ipmi_mem_free(control_info);
return rv;
}
/*
* Allocate new general board sensors for the board.
*/
static int
new_board_sensors(ipmi_mc_t *mc,
ipmi_entity_t *ent,
oem_info_t *info)
{
int rv;
ipmi_sensor_t *sensor;
ipmi_control_t *control;
/* The slot sensor */
rv = oem_alloc_discrete_sensor(
mc, ent,
OEM_SLOT_SENSOR_NUM,
info, NULL,
IPMI_SENSOR_TYPE_SLOT_CONNECTOR,
IPMI_EVENT_READING_TYPE_SENSOR_SPECIFIC,
"slot",
0x40, 0x40, /* offset 6 is supported (hot-swap requester). */
board_slot_get,
NULL,
&sensor);
if (rv)
goto out_err;
ipmi_sensor_set_hot_swap_requester(sensor, 6, 1); /* offset 6 is for
hot-swap */
/* Reset control */
rv = oem_alloc_control(mc, ent,
OEM_BOARD_RESET_NUM,
info,
IPMI_CONTROL_RESET,
"reset",
board_reset_set,
board_reset_get,
&control);
if (rv)
goto out_err;
ipmi_control_set_num_elements(control, 1);
/* The reset control is not readable. */
ipmi_control_set_readable(control, 0);
/* Blue LED control */
rv = oem_alloc_control(mc, ent,
OEM_BOARD_BLUE_LED_NUM,
info,
IPMI_CONTROL_LIGHT,
"blue led",
board_blue_led_set,
board_blue_led_get,
&control);
if (rv)
goto out_err;
ipmi_control_light_set_lights(control, 1, blue_blinking_led);
ipmi_control_set_hot_swap_indicator(control, 1);
out_err:
return rv;
}
/* Write some I2C data on an MC. */
static void
i2c_write(ipmi_mc_t *mc,
unsigned int bus,
unsigned int addr,
unsigned int offset,
unsigned int val)
{
ipmi_msg_t msg;
unsigned char data[5];
int rv;
msg.netfn = IPMI_APP_NETFN;
msg.cmd = IPMI_MASTER_READ_WRITE_CMD;
msg.data_len = 4;
msg.data = data;
data[0] = bus;
data[1] = addr;
data[2] = 0; /* Read no bytes */
data[3] = offset;
data[4] = val;
rv = ipmi_send_command(mc, 0, &msg, NULL, NULL);
if (rv)
ipmi_log(IPMI_LOG_WARNING,
"Could not to I2C write to %x.%x.%x, error %x\n",
bus, addr, offset, rv);
}
typedef struct i2c_sens_s
{
unsigned int bus;
unsigned int addr;
unsigned int offset;
} i2c_sens_t;
/*
* Handle data read back from the I2C. Convert it and present it
* as the sensor's data.
*/
static void
i2c_sens_reading_cb(ipmi_sensor_t *sensor,
int err,
ipmi_msg_t *rsp,
void *cb_data)
{
oem_reading_done_t *get_info = cb_data;
ipmi_states_t states;
unsigned int raw_val;
double val;
enum ipmi_value_present_e present;
int rv;
ipmi_init_states(&states);
ipmi_set_sensor_scanning_enabled(&states, 1);
if (err) {
if (get_info->done)
get_info->done(sensor, err,
IPMI_NO_VALUES_PRESENT, 0, 0.0, &states,
get_info->cb_data);
ipmi_sensor_opq_done(sensor);
ipmi_mem_free(get_info);
return;
}
if (rsp->data[0] != 0) {
ipmi_log(IPMI_LOG_ERR_INFO,
"i2c_sens_reading_cb: Received IPMI error: %x",
rsp->data[0]);
if (get_info->done)
get_info->done(sensor,
IPMI_IPMI_ERR_VAL(rsp->data[0]),
IPMI_NO_VALUES_PRESENT,
0,
0.0,
&states,
get_info->cb_data);
goto out;
}
raw_val = rsp->data[1];
rv = ipmi_sensor_convert_from_raw(sensor, raw_val, &val);
if (rv)
present = IPMI_RAW_VALUE_PRESENT;
else
present = IPMI_BOTH_VALUES_PRESENT;
if (get_info->done)
get_info->done(sensor,
0,
present,
raw_val,
val,
&states,
get_info->cb_data);
out:
ipmi_sensor_opq_done(sensor);
ipmi_mem_free(get_info);
}
/*
* Send the master read/write command to read a byte from the
* I2C bus to be reported as the sensor reading.
*/
static void
i2c_sens_get_reading_start(ipmi_sensor_t *sensor, int err, void *cb_data)
{
oem_reading_done_t *get_info = cb_data;
i2c_sens_t *info = get_info->sdinfo;
ipmi_msg_t msg;
unsigned char data[4];
int rv;
ipmi_states_t states;
ipmi_init_states(&states);
ipmi_set_sensor_scanning_enabled(&states, 1);
if (err) {
if (get_info->done)
get_info->done(sensor, err,
IPMI_NO_VALUES_PRESENT, 0, 0.0, &states,
get_info->cb_data);
ipmi_sensor_opq_done(sensor);
ipmi_mem_free(get_info);
return;
}
msg.netfn = IPMI_APP_NETFN;
msg.cmd = IPMI_MASTER_READ_WRITE_CMD;
msg.data_len = 4;
msg.data = data;
data[0] = info->bus;
data[1] = info->addr;
data[2] = 1; /* Read one byte */
data[3] = info->offset; /* Offset to read from. */
rv = ipmi_sensor_send_command(sensor, ipmi_sensor_get_mc(sensor), 0,
&msg, i2c_sens_reading_cb,
&(get_info->sdata), get_info);
if (rv) {
if (get_info->done)
get_info->done(sensor, rv,
IPMI_NO_VALUES_PRESENT, 0, 0.0, &states,
get_info->cb_data);
ipmi_sensor_opq_done(sensor);
ipmi_mem_free(get_info);
}
}
/*
* Allocate some info and schedule an operation to read some data
* from I2C to report as the sensor's reading.
*/
static int
i2c_sens_get_reading(ipmi_sensor_t *sensor,
ipmi_reading_done_cb done,
void *cb_data)
{
oem_sensor_header_t *hdr = ipmi_sensor_get_oem_info(sensor);
i2c_sens_t *info = hdr->data;
int rv;
oem_reading_done_t *get_info;
get_info = ipmi_mem_alloc(sizeof(*get_info));
if (!get_info)
return ENOMEM;
get_info->sdinfo = info;
get_info->done = done;
get_info->cb_data = cb_data;
rv = ipmi_sensor_add_opq(sensor, i2c_sens_get_reading_start,
&(get_info->sdata), get_info);
if (rv)
ipmi_mem_free(get_info);
return rv;
}
/*
* Allocate a sensor for an ADM 1021 temperature sensor.
*/
static int
alloc_adm1021_sensor(ipmi_mc_t *mc,
ipmi_entity_t *ent,
unsigned int num,
unsigned int bus,
unsigned int addr,
char *id)
{
int rv;
i2c_sens_t *info;
ipmi_sensor_t *sensor;
info = ipmi_mem_alloc(sizeof(*info));
if (!info)
return ENOMEM;
info->bus = bus;
info->addr = addr;
info->offset = 1; /* Offset 1 is the remote temp sens. */
i2c_write(mc, bus, addr, 0xa, 4); /* Do 1 conversion a second. */
i2c_write(mc, bus, addr, 0x9, 0); /* Enable conversion. */
rv = oem_alloc_semi_stand_threshold_sensor(mc, ent, num,
info, ipmi_mem_free,
IPMI_SENSOR_TYPE_TEMPERATURE,
IPMI_UNIT_TYPE_DEGREES_C,
id,
0, 0,
i2c_sens_get_reading,
-1, -1, 105,
1, 0, 0, 0,
&sensor);
if (rv) {
ipmi_mem_free(info);
goto out;
}
ipmi_sensor_set_analog_data_format(sensor,
IPMI_ANALOG_DATA_FORMAT_2_COMPL);
ipmi_sensor_set_raw_sensor_max(sensor, 0x7f);
ipmi_sensor_set_raw_sensor_min(sensor, 0x80);
out:
return rv;
}
/*
* Called to add the entity to the SDR info. We don't support this.
*/
static int
oem_entity_sdr_add(ipmi_entity_t *ent,
ipmi_sdr_info_t *sdrs,
void *cb_data)
{
/* Don't put the entities into an SDR */
return 0;
}
/*
* Called when the MC is removed from the system.
*/
static void oem_mc_removed(ipmi_mc_t *bmc,
ipmi_mc_t *mc,
void *cb_data)
{
free(cb_data);
}
/* We convert addresses to instances by taking the actual I2C address
(the upper 7 bits of the IPMB address) and subtracting 58 from it.
Boards start at 0x58, so this makes the instance numbers for boards
start at zero. */
static unsigned int
oem_addr_to_instance(unsigned int slave_addr)
{
slave_addr /= 2;
if (slave_addr >= 0x58) {
if (slave_addr >= 0x61)
slave_addr--;
return slave_addr - 0x58;
} else
return slave_addr;
}
/*
* Called when an MC with the matching manufacturer and product id
* are detected.
*/
static int
oem_handler(ipmi_mc_t *mc,
void *cb_data)
{
unsigned int slave_addr = ipmi_mc_get_address(mc);
ipmi_entity_info_t *ents;
ipmi_entity_t *ent;
int rv;
oem_info_t *info;
ipmi_domain_t *domain = ipmi_mc_get_domain(mc);
info = malloc(sizeof(*info));
if (!info)
return ENOMEM;
i_ipmi_domain_entity_lock(domain);
ents = ipmi_domain_get_entities(domain);
rv = ipmi_entity_add(ents, domain, 0, slave_addr, 0,
IPMI_ENTITY_ID_PROCESSING_BLADE,
oem_addr_to_instance(slave_addr),
"my-name",
oem_entity_sdr_add,
NULL, &ent);
if (rv) {
ipmi_log(IPMI_LOG_WARNING,
"oem_handler: could not add entity");
goto out;
}
rv = ipmi_mc_set_oem_new_sensor_handler(mc, oem_new_sensor, info);
if (rv) {
ipmi_log(IPMI_LOG_WARNING,
"oem_handler: could not register new sensor handler");
goto out;
}
rv = ipmi_mc_add_oem_removed_handler(mc, oem_mc_removed, info);
if (rv) {
ipmi_log(IPMI_LOG_WARNING,
"oem_handler: could not set OEM removal handler");
goto out;
}
ipmi_mc_set_oem_data(mc, info);
rv = new_board_sensors(mc, ent, info);
if (rv)
goto out;
rv = alloc_adm1021_sensor(mc, ent, 0x80, 0x01, 0x9c, "Proc Temp");
if (rv)
goto out;
rv = ipmi_mc_set_oem_event_handler(mc, oem_event_handler, info);
out:
i_ipmi_domain_entity_unlock(domain);
return rv;
}
/*
* The user calls this to set up handling for this OEM MC. This should
* be the only non-static function in this file.
*/
int
my_oem_init(void)
{
int rv;
rv = ipmi_register_oem_handler(OEM_MANUFACTURER_ID,
OEM_PRODUCT_ID,
oem_handler,
NULL,
NULL);
return rv;
}
|