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
|
/* Copyright 2017 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.
*/
#define _GNU_SOURCE
#include <fcntl.h>
#include <inttypes.h>
#include <stdio.h>
#include <stdint.h>
#include <stdlib.h>
#include <string.h>
#include <sys/mman.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include "operations.h"
#include "bitutils.h"
#include "hwunit.h"
#include "debug.h"
#define HTM_ERR(x) ({int rc = (x); if (rc) {PR_ERROR("HTM Error %d %s:%d\n", \
rc, __FILE__, __LINE__);} \
rc;})
#define MIN(x,y) ((x < y) ? x : y)
#define MAX(a, b) ((a) > (b) ? (a) : (b))
#define DEBUGFS_POWERPC "/sys/kernel/debug/powerpc"
#define DEBUGFS_SCOM DEBUGFS_POWERPC"/scom"
#define DEBUGFS_MEMTRACE DEBUGFS_POWERPC"/memtrace"
#define DEBUGFS_MEMTRACE_ENABLE DEBUGFS_MEMTRACE"/enable"
/*
* This is a CORE register not a HTM register, don't pass the HTM
* target to it.
*/
#define HID0_REGISTER 0x1329C
#define HID0_ONE_PER_GROUP PPC_BIT(0)
#define HID0_DO_SINGLE PPC_BIT(1)
#define HID0_SINGLE_DECODE PPC_BIT(4)
#define HID0_EN_INST_TRACE PPC_BIT(17)
#define HID0_TRACE_EN PPC_BIT(23)
#define HID0_TRACE_BITS (HID0_ONE_PER_GROUP | HID0_DO_SINGLE |\
HID0_SINGLE_DECODE | HID0_EN_INST_TRACE |\
HID0_TRACE_EN)
#define HIDQ_REGISTER 0x20028415
#define HIDQ_ONE_PPC PPC_BIT(0)
#define HIDQ_EN_INST_TRACE PPC_BIT(1)
#define HIDQ_HILE PPC_BIT(4)
#define HIDQ_DIS_PROC_REC PPC_BIT(5)
#define HIDQ_TRACE_BITS (HIDQ_ONE_PPC | HIDQ_EN_INST_TRACE)
#define CORE_FIR 0x20028440
#define CORE_FIR_PC_LOGIC PPC_BIT(45)
#define CORE_FIR_AND 0x20028441
#define CORE_FIR_MASK 0x20028443
/*
* This is a CORE register not a HTM register, don't pass the HTM
* target to it.
*/
#define NCU_MODE_REGISTER 0x10C0A
#define NCU_MODE_HTM_ENABLE PPC_BIT(0)
#define IMA_EVENT_MASK 0x20020400
#define HTM_COLLECTION_MODE 0
#define HTM_MODE_ENABLE PPC_BIT(0)
#define HTM_MODE_CONTENT_SEL PPC_BITMASK(1,2)
#define HTM_MODE_CORE_TRACE_EN PPC_BIT(1)
#define HTM_MODE_LLAT_TRACE_EN PPC_BIT(2)
#define HTM_MODE_DMW_TRACE_EN PPC_BIT(3)
#define NHTM_MODE_CAPTURE PPC_BITMASK(4,12)
#define NHTM_MODE_CAPTURE_PMISC PPC_BIT(5)
#define NHTM_MODE_CRESP_PRECISE PPC_BIT(6)
#define CHTM_MODE_NO_ASSERT_LLAT_L3 PPC_BIT(6)
#define HTM_MODE_WRAP PPC_BIT(13)
#define HTM_MODE_DIS_TIMESTAMP PPC_BIT(14)
#define HTM_MODE_FULL_ON_ERR PPC_BIT(8)
#define HTM_MODE_DISABLE_STALL PPC_BIT(16)
#define HTM_MEMORY_CONF 1
#define HTM_MEM_ALLOC PPC_BIT(0)
#define HTM_MEM_SCOPE PPC_BITMASK(1,3)
/* Note: the next 3 change on P9 */
#define HTM_MEM_PRIORITY PPC_BITMASK(4,5)
#define HTM_MEM_PRIORITY_P10 PPC_BITMASK(4)
#define HTM_MEM_SIZE_SMALL PPC_BIT(13)
#define HTM_MEM_SIZE_SMALL_P10 PPC_BIT(5)
#define HTM_MEM_BASE PPC_BITMASK(14,39)
#define HTM_MEM_BASE_P10 PPC_BITMASK(8,39)
#define HTM_MEM_SIZE PPC_BITMASK(40,48)
#define HTM_STATUS 2
#define HTM2_STATUS_MASK PPC_BITMASK(22,39)
#define HTM2_STATUS_CRESP_OV PPC_BIT(22)
#define HTM2_STATUS_REPAIR PPC_BIT(23)
#define HTM2_STATUS_BUF_WAIT PPC_BIT(24)
#define HTM2_STATUS_TRIG_DROPPED PPC_BIT(25)
#define HTM2_STATUS_ADDR_ERROR PPC_BIT(26)
#define HTM2_STATUS_REC_DROPPED PPC_BIT(27)
#define HTM2_STATUS_INIT PPC_BIT(28)
#define HTM2_STATUS_PREREQ PPC_BIT(29)
#define HTM2_STATUS_READY PPC_BIT(30)
#define HTM2_STATUS_TRACING PPC_BIT(31)
#define HTM2_STATUS_PAUSED PPC_BIT(32)
#define HTM2_STATUS_FLUSH PPC_BIT(33)
#define HTM2_STATUS_COMPLETE PPC_BIT(34)
#define HTM2_STATUS_ENABLE PPC_BIT(35)
#define HTM2_STATUS_STAMP PPC_BIT(36)
#define HTM2_STATUS_SCOM_ERROR PPC_BIT(37)
#define HTM2_STATUS_PARITY_ERROR PPC_BIT(38)
#define HTM2_STATUS_INVALID_CRESP PPC_BIT(39)
#define HTM2_STATUS_STATE_MASK (PPC_BITMASK(28,36) | HTM_STATUS_REPAIR)
#define HTM2_STATUS_ERROR_MASK (HTM_STATUS_CRESP_OV | PPC_BITMASK(24,27) | PPC_BITMASK(37,39))
#define HTM_STATUS_MASK PPC_BITMASK(2,19)
#define HTM_STATUS_PURGING PPC_BIT(0)
#define HTM_STATUS_PURGED PPC_BIT(1)
#define HTM_STATUS_CRESP_OV PPC_BIT(2)
#define HTM_STATUS_REPAIR PPC_BIT(3)
#define HTM_STATUS_BUF_WAIT PPC_BIT(4)
#define HTM_STATUS_TRIG_DROPPED PPC_BIT(5)
#define HTM_STATUS_ADDR_ERROR PPC_BIT(6)
#define HTM_STATUS_REC_DROPPED PPC_BIT(7)
#define HTM_STATUS_INIT PPC_BIT(8)
#define HTM_STATUS_PREREQ PPC_BIT(9)
#define HTM_STATUS_READY PPC_BIT(10)
#define HTM_STATUS_TRACING PPC_BIT(11)
#define HTM_STATUS_PAUSED PPC_BIT(12)
#define HTM_STATUS_FLUSH PPC_BIT(13)
#define HTM_STATUS_COMPLETE PPC_BIT(14)
#define HTM_STATUS_ENABLE PPC_BIT(15)
#define HTM_STATUS_STAMP PPC_BIT(16)
#define HTM_STATUS_SCOM_ERROR PPC_BIT(17)
#define HTM_STATUS_PARITY_ERROR PPC_BIT(18)
#define HTM_STATUS_INVALID_CRESP PPC_BIT(19)
#define HTM_STATUS_STATE_MASK (PPC_BITMASK(8,16) | HTM_STATUS_REPAIR)
#define HTM_STATUS_ERROR_MASK (HTM_STATUS_CRESP_OV | PPC_BITMASK(4,7) | PPC_BITMASK(17,19))
#define HTM_LAST_ADDRESS 3
#define HTM_LAST_ADDRESS_MASK PPC_BITMASK(8,56)
#define HTM2_LAST_ADDRESS 4
#define HTM2_LAST_ADDRESS_MASK PPC_BITMASK(8,56)
#define HTM_SCOM_TRIGGER (4 + dual_htm_offset)
#define HTM_TRIG_START PPC_BIT(0)
#define HTM_TRIG_STOP PPC_BIT(1)
#define HTM_TRIG_PAUSE PPC_BIT(2)
#define HTM_TRIG_STOP_ALT PPC_BIT(3)
#define HTM_TRIG_RESET PPC_BIT(4)
#define HTM_TRIG_MARK_VALID PPC_BIT(5)
#define HTM_TRIG_MARK_TYPE PPC_BITMASK(6,15)
#define HTM_TRIGGER_CONTROL (5 + dual_htm_offset)
#define HTM_CTRL_TRIG PPC_BITMASK(0,1)
#define HTM_CTRL_MTSPR_TRIG PPC_BIT(2)
#define HTM_CTRL_MTSPR_MARKER PPC_BIT(3)
#define HTM_CTRL_MASK PPC_BITMASK(4,5)
#define HTM_CTRL_DBG_TRIG0 PPC_BIT(6)
#define HTM_CTRL_DBG_TRIG1 PPC_BIT(7)
#define HTM_CTRL_XSTOP_STOP PPC_BIT(13)
#define NHTM_FILTER_CONTROL (6 + dual_htm_offset)
#define NHTM_FILTER_RCMD_SCOPE PPC_BITMASK(17,19)
#define NHTM_FILTER_RCMD_SOURCE PPC_BITMASK(20,21)
#define NHTM_FILTER_CRESP_PATTERN PPC_BITMASK(27,31)
#define NHTM_FILTER_MASK PPC_BITMASK(32,54)
#define NHTM_FILTER_CRESP_MASK PPC_BITMASK(59,63)
#define NHTM_TTYPE_FILTER_CONTROL (7 + dual_htm_offset)
#define NHTM_TTYPE_TYPE_MASK PPC_BITMASK(17,23)
#define NHTM_TTYPE_SIZE_MASK PPC_BITMASK(24,31)
#define NHTM_CONFIGURATION (8 + dual_htm_offset)
#define NHTM_CONF_HANG_DIV_RATIO PPC_BITMASK(0,4)
#define NHTM_CONF_RTY_DROP_COUNT PPC_BITMASK(5,8)
#define NHTM_CONF_DROP_PRIORITY_INC PPC_BIT(9)
#define NHTM_CONF_RETRY_BACKOFF PPC_BIT(10)
#define NHTM_CONF_OPERALIONAL_HANG PPC_BIT(11)
#define NHTM_FLEX_MUX (9 + dual_htm_offset)
#define NHTM_FLEX_MUX_MASK PPC_BITMASK(0,35)
#define NHTM_FLEX_DEFAULT 0xCB3456129
#define NHTM_FLEX_MUX_MASK_P10 PPC_BITMASK(0,39)
#define NHTM_FLEX_DEFAULT_P10 0xCB34561567
#define NHTM_ADDR_PAT 0xb
#define NHTM_ADDR_PAT_MASK PPC_BITMASK(0, 55)
#define CHTM_PDBAR 0x0b
#define CHTM_PDBAR_PARITY PPC_BIT(0)
#define CHTM_PDBAR_SCOPE PPC_BITMASK(5, 7)
#define CHTM_PDBAR_ADDR PPC_BITMASK(12, 52)
#define NHTM_ADDR_MASK 0xc
#define NHTM_ADDR_MASK_MASK PPC_BITMASK(0, 55)
#define NHTM_STOP_FILTER 0xd
#define NHTM_STOP_FILTER_TTAG_PAT PPC_BITMASK(0, 14)
#define NHTM_STOP_FILTER_TTAG_MASK PPC_BITMASK(15, 29)
#define NHTM_STOP_FILTER_TTYPE_PAT PPC_BITMASK(30, 36)
#define NHTM_STOP_FILTER_TTYPE_MASK PPC_BITMASK(37, 43)
#define NHTM_STOP_FILTER_CRESP_PAT PPC_BITMASK(44, 48)
#define NHTM_STOP_FILTER_CRESP_MASK PPC_BITMASK(49, 53)
#define NHTM_STOP_CYCLES PPC_BITMASK(54, 60)
#define NHTM_STOP_FILT_ADDR_PAT 0xe
#define NHTM_STOP_FILT_ADDR_PAT_MASK PPC_BITMASK(0, 55)
#define NHTM_STOP_FILT_ADDR_MASK 0xf
#define NHTM_STOP_FILT_ADDR_MASK_MASK PPC_BITMASK(0, 55)
/* On P10 there are two nhtms which shifts some of the registers */
static int dual_htm_offset;
enum htm_state {
INIT,
REPAIR,
PREREQ,
READY,
TRACING,
PAUSED,
FLUSH,
COMPLETE,
ENABLE,
STAMP,
UNINITIALIZED,
};
enum htm_error {
NONE,
CRESP_OV,
BUF_WAIT,
TRIGGER_DROPPED,
ADDR_ERROR,
RECORD_DROPPED,
SCOM_ERROR,
PARITY_ERROR,
INVALID_CRESP,
};
struct htm_status {
enum htm_state state;
enum htm_state state2;
enum htm_error error;
enum htm_error error2;
bool mem_size_select;
uint16_t mem_size;
uint64_t mem_base;
uint64_t mem_last;
uint64_t mem_last2;
uint64_t raw;
};
static struct htm *check_and_convert(struct pdbg_target *target)
{
if (!pdbg_target_is_class(target, "nhtm") &&
!pdbg_target_is_class(target, "chtm"))
return NULL;
if (pdbg_target_status(target) != PDBG_TARGET_ENABLED)
return NULL;
return target_to_htm(target);
}
int htm_start(struct pdbg_target *target)
{
struct htm *htm = check_and_convert(target);
if (!htm)
return -1;
if (!htm->start) {
PR_ERROR("start() not implemented for the target\n");
return -1;
}
return htm->start(htm);
}
int htm_stop(struct pdbg_target *target)
{
struct htm *htm = check_and_convert(target);
if (!htm)
return -1;
if (!htm->stop) {
PR_ERROR("stop() not implemented for the target\n");
return -1;
}
return htm->stop(htm);
}
int htm_status(struct pdbg_target *target)
{
struct htm *htm = check_and_convert(target);
if (!htm)
return -1;
if (!htm->status) {
PR_ERROR("status() not implemented for the target\n");
return -1;
}
return htm->status(htm);
}
int htm_dump(struct pdbg_target *target, char *filename)
{
struct htm *htm = check_and_convert(target);
if (!htm || !filename)
return -1;
if (!htm->dump) {
PR_ERROR("dump() not implemented for the target\n");
return -1;
}
return htm->dump(htm, filename);
}
int htm_record(struct pdbg_target *target, char *filename)
{
struct htm *htm = check_and_convert(target);
if (!htm || !filename)
return -1;
if (!htm->record) {
PR_ERROR("record() not implemented for the target\n");
return -1;
}
return htm->record(htm, filename);
}
static int get_status(struct htm *htm, struct htm_status *status)
{
uint64_t val;
if (HTM_ERR(pib_read(&htm->target, HTM_STATUS, &status->raw)))
return -1;
switch (status->raw & HTM_STATUS_ERROR_MASK) {
case HTM_STATUS_CRESP_OV:
status->error = CRESP_OV;
break;
case HTM_STATUS_BUF_WAIT:
status->error = BUF_WAIT;
break;
case HTM_STATUS_TRIG_DROPPED:
status->error = TRIGGER_DROPPED;
break;
case HTM_STATUS_ADDR_ERROR:
status->error = ADDR_ERROR;
break;
case HTM_STATUS_REC_DROPPED:
status->error = RECORD_DROPPED;
break;
case HTM_STATUS_SCOM_ERROR:
status->error = SCOM_ERROR;
break;
case HTM_STATUS_PARITY_ERROR:
status->error = PARITY_ERROR;
break;
case HTM_STATUS_INVALID_CRESP:
status->error = INVALID_CRESP;
break;
default:
status->error = NONE;
}
if (pdbg_target_compatible(&htm->target, "ibm,power10-nhtm")) {
switch (status->raw & HTM2_STATUS_ERROR_MASK) {
case HTM2_STATUS_CRESP_OV:
status->error2 = CRESP_OV;
break;
case HTM2_STATUS_BUF_WAIT:
status->error2 = BUF_WAIT;
break;
case HTM2_STATUS_TRIG_DROPPED:
status->error2 = TRIGGER_DROPPED;
break;
case HTM2_STATUS_ADDR_ERROR:
status->error2 = ADDR_ERROR;
break;
case HTM2_STATUS_REC_DROPPED:
status->error2 = RECORD_DROPPED;
break;
case HTM2_STATUS_SCOM_ERROR:
status->error2 = SCOM_ERROR;
break;
case HTM2_STATUS_PARITY_ERROR:
status->error2 = PARITY_ERROR;
break;
case HTM2_STATUS_INVALID_CRESP:
status->error2 = INVALID_CRESP;
break;
default:
status->error2 = NONE;
}
}
switch (status->raw & HTM_STATUS_STATE_MASK) {
case HTM_STATUS_REPAIR:
status->state = REPAIR;
break;
case HTM_STATUS_INIT:
status->state = INIT;
break;
case HTM_STATUS_PREREQ:
status->state = PREREQ;
break;
case HTM_STATUS_READY:
status->state = READY;
break;
case HTM_STATUS_TRACING:
status->state = TRACING;
break;
case HTM_STATUS_PAUSED:
status->state = PAUSED;
break;
case HTM_STATUS_FLUSH:
status->state = FLUSH;
break;
case HTM_STATUS_COMPLETE:
status->state = COMPLETE;
break;
case HTM_STATUS_ENABLE:
status->state = ENABLE;
break;
case HTM_STATUS_STAMP:
status->state = STAMP;
break;
default:
status->state = UNINITIALIZED;
}
if (pdbg_target_compatible(&htm->target, "ibm,power10-nhtm")) {
switch (status->raw & HTM2_STATUS_STATE_MASK) {
case HTM2_STATUS_REPAIR:
status->state2 = REPAIR;
break;
case HTM2_STATUS_INIT:
status->state2 = INIT;
break;
case HTM2_STATUS_PREREQ:
status->state2 = PREREQ;
break;
case HTM2_STATUS_READY:
status->state2 = READY;
break;
case HTM2_STATUS_TRACING:
status->state2 = TRACING;
break;
case HTM2_STATUS_PAUSED:
status->state2 = PAUSED;
break;
case HTM2_STATUS_FLUSH:
status->state2 = FLUSH;
break;
case HTM2_STATUS_COMPLETE:
status->state2 = COMPLETE;
break;
case HTM2_STATUS_ENABLE:
status->state2 = ENABLE;
break;
case HTM2_STATUS_STAMP:
status->state2 = STAMP;
break;
default:
status->state2 = UNINITIALIZED;
}
}
if (HTM_ERR(pib_read(&htm->target, HTM_MEMORY_CONF, &val)))
return -1;
if (pdbg_target_compatible(&htm->target, "ibm,power10-nhtm")) {
status->mem_size_select = val & HTM_MEM_SIZE_SMALL_P10;
status->mem_base = val & HTM_MEM_BASE_P10;
} else if (pdbg_target_compatible(&htm->target, "ibm,power10-chtm")) {
status->mem_size_select = val & HTM_MEM_SIZE_SMALL_P10;
status->mem_base = val & HTM_MEM_BASE_P10;
} else {
status->mem_size_select = val & HTM_MEM_SIZE_SMALL;
status->mem_base = val & HTM_MEM_BASE;
}
status->mem_size = GETFIELD(HTM_MEM_SIZE,val);
if (HTM_ERR(pib_read(&htm->target, HTM_LAST_ADDRESS, &status->mem_last)))
return -1;
if (pdbg_target_compatible(&htm->target, "ibm,power10-nhtm")) {
if (HTM_ERR(pib_read(&htm->target, HTM2_LAST_ADDRESS, &status->mem_last2)))
return -1;
}
return 0;
}
/*
* This sequence will trigger all HTM to start at "roughly" the same
* time.
* We don't have any documentation on what the commands are, they do
* work on POWER9 dd2.0
*
* Alternatively, writing a 1 into the HTM Start Trigger bit works
* too, it has to be done for each HTM but its much cleaner and
* clearly what is going on.
*/
#if 0
static int do_adu_magic(struct pdbg_target *target, uint32_t index, uint64_t *arg1, uint64_t *arg2)
{
uint64_t val;
int i = 0;
/*
* pib_write(target, 1, PPC_BIT(11); get the lock, but since
* we don't check, why bother?
*/
if (HTM_ERR(pib_write(target, 1, PPC_BIT(3) | PPC_BIT(4) | PPC_BIT(14))))
return -1;
/* If bothering with the lock, write PPC_BIT(11) here */
if (HTM_ERR(pib_write(target, 1, 0)))
return -1;
if (HTM_ERR(pib_write(target, 0, PPC_BIT(46))))
return -1;
if (HTM_ERR(pib_write(target, 1, 0x2210aab140000000)))
return -1;
do {
sleep(1);
if (HTM_ERR(pib_read(target, 3, &val)))
return -1;
i++;
} while (val != 0x2000000000000004 && i < 10);
if (val != 0x2000000000000004) {
P_INFO("Unexpected status on HTM start trigger PMISC command: 0x%"
PRIx64 "\n", val);
return -1;
}
/*
* If we locked the adu before we should be polite and
* pib_write(target, 1, 0);
*/
return 1;
}
#endif
/*
* This function doesn't do the update_mcs_regs() from the older p8
* only tool. Not clear what this actually does. Attempting to ignore
* the problem.
* The scoms it does use are:
* SCOM ADDRESS FOR MCS4
* #define MCS4_MCFGPQ 0x02011c00
* #define MCS4_MCMODE 0x02011c07
* #define MCS4_FIRMASK 0x02011c43
*
* SCOM ADDRESS FOR MCS5
* #define MCS5_MCFGPQ 0x02011c80
* #define MCS5_MCMODE 0x02011c87
* #define MCS5_FIRMASK 0x02011cc3
*
* SCOM ADDRESS FOR MCS6
* #define MCS6_MCFGPQ 0x02011d00
* #define MCS6_MCMODE 0x02011d07
* #define MCS6_FIRMASK 0x02011d43
*
* SCOM ADDRESS FOR MCS7
* #define MCS7_MCFGPQ 0x02011d80
* #define MCS7_MCMODE 0x02011d87
* #define MCS7_FIRMASK 0x02011dc3
*/
static int configure_debugfs_memtrace(struct htm *htm)
{
uint64_t memtrace_size;
FILE *file;
file = fopen(DEBUGFS_MEMTRACE_ENABLE, "r+");
if (!file) {
PR_ERROR("Couldn't open %s: %m\n", DEBUGFS_MEMTRACE_ENABLE);
return -1;
}
if (fscanf(file, "0x%016" PRIx64 "\n", &memtrace_size) != 1) {
PR_ERROR("fscanf() didn't match: %m\n");
fclose(file);
return -1;
}
if (memtrace_size == 0) {
uint64_t size = 1 << 30; /* 1GB... TODO */
int rc = fprintf(file, "0x%016" PRIx64 "\n", size);
PR_DEBUG("memtrace_size is zero! Informing the kernel!\n");
if (rc <= 0) {
PR_ERROR("Couldn't set memtrace_size\n");
PR_ERROR("Attempted to write: 0x%016" PRIx64 " got %d: %m\n", size, rc);
fclose(file);
return -1;
}
}
fclose(file);
return 0;
}
static int configure_chtm(struct htm *htm, bool wrap)
{
uint64_t val;
if (!pdbg_target_is_class(&htm->target, "chtm"))
return 0;
if (HTM_ERR(configure_debugfs_memtrace(htm)))
return -1;
val = wrap ? HTM_MODE_WRAP : 0;
if (HTM_ERR(pib_write(&htm->target, HTM_COLLECTION_MODE,
HTM_MODE_ENABLE | HTM_MODE_DIS_TIMESTAMP |
HTM_MODE_CORE_TRACE_EN | val)))
return -1;
if (htm->configure && htm->configure(htm) < 0)
return -1;
return 0;
}
static int do_configure_chtm_p10(struct htm *htm)
{
struct pdbg_target *core;
uint64_t mask;
/* P10 only: mask PC Logic checkstop in wrapping mode */
if (pdbg_target_compatible(&htm->target, "ibm,power10-chtm")) {
core = pdbg_target_require_parent("core", &htm->target);
if (HTM_ERR(pib_read(core, CORE_FIR_MASK, &mask)))
return -1;
if (HTM_ERR(pib_write(core, CORE_FIR_MASK, mask | CORE_FIR_PC_LOGIC)))
return -1;
}
return 0;
}
static int do_configure_chtm_p8(struct htm *htm)
{
uint64_t hid0, ncu;
struct pdbg_target *core;
core = pdbg_target_require_parent("core", &htm->target);
if (HTM_ERR(pib_read(core, HID0_REGISTER, &hid0)))
return -1;
hid0 |= HID0_TRACE_BITS;
if (HTM_ERR(pib_write(core, HID0_REGISTER, hid0)))
return -1;
if (HTM_ERR(pib_read(core, NCU_MODE_REGISTER, &ncu)))
return -1;
ncu |= NCU_MODE_HTM_ENABLE;
if (HTM_ERR(pib_write(core, NCU_MODE_REGISTER, ncu)))
return -1;
return 0;
}
static int deconfigure_chtm(struct htm *htm)
{
if (!pdbg_target_is_class(&htm->target, "chtm"))
return 0;
if (htm->deconfigure && htm->deconfigure(htm) < 0)
return -1;
if (HTM_ERR(pib_write(&htm->target, HTM_COLLECTION_MODE,0)))
return -1;
// FIXME this needs kernel work to happen
// if (HTM_ERR(deconfigure_debugfs_memtrace(htm)))
// return -1;
return 0;
}
static int do_deconfigure_chtm_p10(struct htm *htm)
{
struct pdbg_target *core;
uint64_t mask;
core = pdbg_target_require_parent("core", &htm->target);
/* clear fir first before unmasking it */
if (HTM_ERR(pib_write(core, CORE_FIR_AND, ~CORE_FIR_PC_LOGIC)))
return -1;
if (HTM_ERR(pib_read(core, CORE_FIR_MASK, &mask)))
return -1;
if (HTM_ERR(pib_write(core, CORE_FIR_MASK, mask & ~CORE_FIR_PC_LOGIC)))
return -1;
return 0;
}
static int do_deconfigure_chtm_p8(struct htm *htm)
{
struct pdbg_target *core;
uint64_t ncu, hid0;
core = pdbg_target_require_parent("core", &htm->target);
if (HTM_ERR(pib_read(core, NCU_MODE_REGISTER, &ncu)))
return -1;
ncu &= ~NCU_MODE_HTM_ENABLE;
if (HTM_ERR(pib_write(core, NCU_MODE_REGISTER, ncu)))
return -1;
if (HTM_ERR(pib_read(core, HID0_REGISTER, &hid0)))
return -1;
hid0 &= ~(HID0_TRACE_BITS);
if (HTM_ERR(pib_write(core, HID0_REGISTER, hid0)))
return -1;
return 0;
}
static int configure_nhtm(struct htm *htm, bool wrap)
{
uint64_t val;
if (!pdbg_target_is_class(&htm->target, "nhtm"))
return 0;
if (HTM_ERR(configure_debugfs_memtrace(htm)))
return -1;
/*
* The constant is the VGTARGET field, taken from a cronus
* booted system which presumably set it up correctly
*/
val = wrap ? HTM_MODE_WRAP : 0;
if (HTM_ERR(pib_write(&htm->target, HTM_COLLECTION_MODE,
HTM_MODE_ENABLE |
NHTM_MODE_CRESP_PRECISE |
val |
0xFFFF000000)))
return -1;
/* Stop on core xstop */
if (HTM_ERR(pib_write(&htm->target, HTM_TRIGGER_CONTROL, HTM_CTRL_XSTOP_STOP)))
return -1;;
/*
* These values are taken from a cronus booted system.
*/
if (HTM_ERR(pib_write(&htm->target, NHTM_FILTER_CONTROL,
NHTM_FILTER_MASK | /* no pattern matching */
NHTM_FILTER_CRESP_MASK))) /* no pattern matching */
return -1;
if (HTM_ERR(pib_write(&htm->target, NHTM_TTYPE_FILTER_CONTROL,
NHTM_TTYPE_TYPE_MASK | /* no pattern matching */
NHTM_TTYPE_SIZE_MASK ))) /* no pattern matching */
return -1;
if (pdbg_target_compatible(&htm->target, "ibm,power9-nhtm")) {
if (HTM_ERR(pib_read(&htm->target, NHTM_FLEX_MUX, &val)))
return -1;
if (GETFIELD(NHTM_FLEX_MUX_MASK, val) != NHTM_FLEX_DEFAULT) {
PR_ERROR("The HTM Flex wasn't default value\n");
return -1;
}
}
if (pdbg_target_compatible(&htm->target, "ibm,power10-nhtm")) {
if (HTM_ERR(pib_read(&htm->target, NHTM_FLEX_MUX, &val)))
return -1;
if (GETFIELD(NHTM_FLEX_MUX_MASK_P10, val) != NHTM_FLEX_DEFAULT_P10) {
PR_ERROR("The HTM Flex wasn't default value\n");
return -1;
}
if (HTM_ERR(pib_write(&htm->target, NHTM_ADDR_PAT, 0)))
return -1;
if (HTM_ERR(pib_write(&htm->target, NHTM_ADDR_MASK, NHTM_ADDR_MASK_MASK)))
return -1;
if (HTM_ERR(pib_write(&htm->target, NHTM_STOP_FILTER,
NHTM_STOP_FILTER_TTAG_MASK |
NHTM_STOP_FILTER_TTYPE_MASK |
NHTM_STOP_FILTER_CRESP_MASK)))
return -1;
if (HTM_ERR(pib_write(&htm->target, NHTM_STOP_FILT_ADDR_PAT, 0)))
return -1;
if (HTM_ERR(pib_write(&htm->target, NHTM_STOP_FILT_ADDR_MASK,
NHTM_STOP_FILT_ADDR_MASK_MASK)))
return -1;
}
return 0;
}
static int deconfigure_nhtm(struct htm *htm)
{
if (!pdbg_target_is_class(&htm->target, "nhtm"))
return 0;
// FIXME: write and test this
return 0;
}
static int is_startable(struct htm *htm, struct htm_status *status)
{
if (pdbg_target_compatible(&htm->target, "ibm,power10-nhtm"))
return ((status->state == READY || status->state == PAUSED) &&
(status->state2 == READY || status->state2 == PAUSED));
else
return (status->state == READY || status->state == PAUSED);
}
static char *get_debugfs_file(struct htm *htm, const char *file)
{
struct pdbg_target *pib;
uint32_t index;
char *filename;
pib = pdbg_target_parent("pib", &htm->target);
assert(pib);
index = pdbg_target_index(pib);
if (asprintf(&filename, "%s/%08x/%s", DEBUGFS_MEMTRACE, index, file) == -1) {
PR_ERROR("Couldn't asprintf() '%s/%08x/size': %m\n",
DEBUGFS_MEMTRACE, index);
return NULL;
}
return filename;
}
static int get_trace_size(struct htm *htm, uint64_t *size)
{
char *filename;
FILE *file;
int rc;
filename = get_debugfs_file(htm, "size");
if (!filename)
return -1;
file = fopen(filename, "r");
if (file == NULL) {
PR_ERROR("Failed to open %s: %m\n", filename);
free(filename);
return -1;
}
rc = fscanf(file, "0x%016" PRIx64 "\n", size);
fclose(file);
free(filename);
return !(rc == 1);
}
static int get_trace_base(struct htm *htm, uint64_t *base)
{
char *filename;
FILE *file;
int rc;
filename = get_debugfs_file(htm, "start");
if (!filename)
return -1;
file = fopen(filename, "r");
if (file == NULL) {
PR_ERROR("Failed to open %s: %m\n", filename);
free(filename);
return -1;
}
rc = fscanf(file, "0x%016" PRIx64 "\n", base);
fclose(file);
free(filename);
return !(rc == 1);
}
static int configure_memory(struct htm *htm)
{
uint64_t size, base, val, small, mem_size;
int shift;
if (HTM_ERR(get_trace_size(htm, &size)))
return -1;
if (HTM_ERR(get_trace_base(htm, &base)))
return -1;
if (HTM_ERR(pib_read(&htm->target, HTM_MEMORY_CONF, &val)))
return -1;
/*
* Tell HTM that we've alloced mem, perhaps do this in probe(),
* HTM searches for 0 -> 1 transition, so clear it now
*/
val &= ~HTM_MEM_ALLOC;
if (HTM_ERR(pib_write(&htm->target, HTM_MEMORY_CONF, val)))
return -1;
if (HTM_ERR(pib_read(&htm->target, HTM_MEMORY_CONF, &val)))
return -1;
/* Put mem alloc back in */
val |= HTM_MEM_ALLOC;
/*
* HTMSC_MEM_SIZE_SMALL:
* 0 = Trace Mem Size from 512M to 256G
* 1 = Trace Mem Size from 16M to 8G
*/
if (size < 16777216UL) {
PR_ERROR("memtrace size must be atleast 16MB. Currently:%"
PRIx64 "\n", size);
return -1;
}
if (size > 274877906944UL) {
PR_ERROR("memtrace size must be smaller than 256GB. Currently:%"
PRIx64 "\n", size);
return -1;
}
/*
* The hardware has two sizes, small and large
* small: 16M - 8G
* large: 512M - 256G
* We use small for 16M-256, then large for 512M-256G
*
* Hardware buffer sizes:
* Large Small HTMSC_MEM_SIZE encoding
* 512M 16M 0b000000000
* 1G 32M 0b000000001
* 2G 64M 0b000000011
* 4G 128M 0b000000111
* 8G 256M 0b000001111
* 16G 512M 0b000011111
* 32G 1G 0b000111111
* 64G 2G 0b001111111
* 128G 4G 0b011111111
* 256G 8G 0b111111111
*/
small = 0;
if (size < 512*1024*1024)
small = 1;
if (pdbg_target_compatible(&htm->target, "ibm,power10-nhtm"))
val = SETFIELD(HTM_MEM_SIZE_SMALL_P10, val, small);
else if (pdbg_target_compatible(&htm->target, "ibm,power10-chtm"))
val = SETFIELD(HTM_MEM_SIZE_SMALL_P10, val, small);
else
val = SETFIELD(HTM_MEM_SIZE_SMALL, val, small);
shift = 29; /* large */
if (small)
shift = 24;
mem_size = (size >> shift) - 1;
val = SETFIELD(HTM_MEM_SIZE, val, mem_size);
/*
* Clear out the base
* Don't use SETFIELD to write the base in since the value is
* already shifted correct as read from the kernel, or'ing it
* in works fine.
*/
if (pdbg_target_compatible(&htm->target, "ibm,power10-nhtm"))
val = SETFIELD(HTM_MEM_BASE_P10, val, 0);
else if (pdbg_target_compatible(&htm->target, "ibm,power10-chtm"))
val = SETFIELD(HTM_MEM_BASE_P10, val, 0);
else
val = SETFIELD(HTM_MEM_BASE, val, 0);
val |= base;
if (HTM_ERR(pib_write(&htm->target, HTM_MEMORY_CONF, val)))
return -1;
if (HTM_ERR(pib_write(&htm->target, HTM_SCOM_TRIGGER, HTM_TRIG_RESET)))
return -1;
return 0;
}
static int do_htm_reset(struct htm *htm, bool wrap)
{
struct htm_status status;
if (HTM_ERR(get_status(htm, &status)))
return -1;
if (configure_nhtm(htm, wrap) < 0)
return -1;
if (configure_chtm(htm, wrap) < 0)
return -1;
if (HTM_ERR(configure_memory(htm)))
return -1;
return 1;
}
/* Stolen from p8chip.c */
#define RAS_MODE_REG 0x1
#define MR_THREAD_IN_DEBUG PPC_BIT(43)
static int do_post_configure_chtm_p8(struct htm *htm)
{
struct pdbg_target *target;
struct pdbg_target *core;
uint64_t reg;
/* NHTM doesn't have a core as a parent but donesn't need this
* bit toggled */
core = pdbg_target_parent("core", &htm->target);
if (!core)
return 0; /* nhtm case */
pdbg_for_each_target("thread", core, target) {
if (pdbg_target_index(target) == 0) {
/* Need to set this bit to ensure HTM starts */
pib_read (target, RAS_MODE_REG, ®);
pib_write(target, RAS_MODE_REG, reg | MR_THREAD_IN_DEBUG);
pib_write(target, RAS_MODE_REG, reg);
}
}
return 0;
}
static int do_post_configure_chtm_p10(struct htm *htm)
{
struct pdbg_target *core;
uint64_t hid0;
core = pdbg_target_require_parent("core", &htm->target);
if (HTM_ERR(pib_read(core, HIDQ_REGISTER, &hid0)))
return -1;
hid0 = HIDQ_ONE_PPC | HIDQ_DIS_PROC_REC | HIDQ_HILE;
if (HTM_ERR(pib_write(core, HIDQ_REGISTER, hid0)))
return -1;
hid0 |= HIDQ_EN_INST_TRACE;
if (HTM_ERR(pib_write(core, HIDQ_REGISTER, hid0)))
return -1;
return 0;
}
static int do_pre_deconfigure_chtm_p10(struct htm *htm)
{
struct pdbg_target *core;
uint64_t hid0;
core = pdbg_target_require_parent("core", &htm->target);
hid0 = HIDQ_DIS_PROC_REC | HIDQ_HILE;
if (HTM_ERR(pib_write(core, HIDQ_REGISTER, hid0)))
return -1;
return 0;
}
static int __do_htm_start(struct htm *htm, bool wrap)
{
struct htm_status status;
if (do_htm_reset(htm, wrap) < 0)
return -1;
if (HTM_ERR(get_status(htm, &status)))
return -1;
if (!is_startable(htm, &status)) {
PR_ERROR("HTM not in a startable state!\n");
return -1;
}
PR_INFO("* Sending START trigger to HTM\n");
if (HTM_ERR(pib_write(&htm->target, HTM_SCOM_TRIGGER, HTM_TRIG_MARK_VALID)))
return -1;
if (HTM_ERR(pib_write(&htm->target, HTM_SCOM_TRIGGER, HTM_TRIG_START)))
return -1;
while (1) {
if (HTM_ERR(get_status(htm, &status)))
return -1;
if (status.state == TRACING)
break;
}
if (htm->post_configure && htm->post_configure(htm))
return -1;
/*
* Instead of the HTM_TRIG_START, this is where you might want
* to call do_adu_magic()
* for_each_child_target("mem", core, do_adu_magic, NULL, NULL);
* see what I mean?
*/
return 1;
}
static int do_htm_start(struct htm *htm)
{
return __do_htm_start(htm, true);
}
static int do_htm_stop(struct htm *htm)
{
struct htm_status status;
get_status(htm, &status);
if (HTM_ERR(get_status(htm, &status)))
return -1;
if (status.state == UNINITIALIZED) {
PR_INFO("* Skipping STOP trigger, HTM appears uninitialized\n");
return -1;
}
if (htm->pre_deconfigure && htm->pre_deconfigure(htm) < 0)
return -1;
if (status.state == TRACING) {
PR_INFO("* Sending STOP trigger to HTM\n");
if (HTM_ERR(pib_write(&htm->target, HTM_SCOM_TRIGGER, HTM_TRIG_STOP)))
return -1;
} else {
PR_INFO("* Skipping STOP trigger, HTM is not running\n");
}
if (deconfigure_chtm(htm) < 0)
return -1;
if (deconfigure_nhtm(htm) < 0)
return -1;
return 1;
}
static uint64_t htm_trace_size(struct htm_status *status)
{
uint64_t size;
uint64_t mem_size = status->mem_size;
if (status->mem_size_select)
size = 16;
else
size = 512;
while (mem_size) {
size <<= 1;
mem_size >>= 1;
}
return size << 20;
}
static bool htm_complete(struct htm_status *status)
{
return (status->state == COMPLETE);
}
static int htm_wait_complete(struct htm *htm)
{
struct htm_status status;
while (1) {
if (HTM_ERR(get_status(htm, &status)))
return -1;
PR_DEBUG("loop curr:0x%016" PRIx64 "\n", status.mem_last);
if (htm_complete(&status))
break;
usleep(100000);
}
return 0;
}
static int do_htm_status(struct htm *htm)
{
struct htm_status status;
uint64_t val, total;
int i, regs = 9;
if (pdbg_target_compatible(&htm->target, "ibm,power9-nhtm"))
regs++;
PR_INFO("HTM register dump:\n");
for (i = 0; i < regs; i++) {
if (HTM_ERR(pib_read(&htm->target, i, &val))) {
PR_ERROR("Couldn't read HTM reg: %d\n", i);
continue;
}
PR_INFO(" %d: 0x%016" PRIx64 "\n", i, val);
}
if (HTM_ERR(get_status(htm, &status)))
return -1;
total = htm_trace_size(&status);
PR_DEBUG("HTM status : 0x%016" PRIx64 "\n", status.raw);
printf("State: ");
switch (status.state) {
case INIT:
printf("INIT");
break;
case PREREQ:
printf("PREREQ");
break;
case READY:
printf("READY");
break;
case TRACING:
printf("TRACING");
break;
case PAUSED:
printf("PAUSED");
break;
case FLUSH:
printf("FLUSH");
break;
case COMPLETE:
printf("COMPLETE");
break;
case ENABLE:
printf("ENABLE");
break;
case STAMP:
printf("STAMP");
break;
default:
printf("UNINITIALIZED");
}
printf("\n");
printf("addr:0x%016" PRIx64 "\n", status.mem_base);
printf("size:0x%016" PRIx64 " ", total);
if (total >= 0x20000000)
printf("[ %" PRIu64 "GB ]", total >> 30);
else
printf("[ %" PRIu64 "MB ]", total >> 20);
printf("\n");
printf("curr:0x%016" PRIx64 "\n", status.mem_last);
return 1;
}
#define COPY_BUF_SIZE getpagesize()
static int copy_file(int output, int input, uint64_t size)
{
char *buf;
size_t r;
buf = malloc(COPY_BUF_SIZE);
if (!buf) {
PR_ERROR("Can't malloc buffer\n");
return -1;
}
while (size) {
r = read(input, buf, MIN(COPY_BUF_SIZE, size));
if (r == -1) {
PR_ERROR("Failed to read\n");
goto out;
}
if (r == 0) {
PR_ERROR("EOF\n");
goto out;
}
if (write(output, buf, r) != r) {
PR_ERROR("Short write!\n");
goto out;
}
size -= r;
}
return 0;
out:
free(buf);
return -1;
}
static int do_htm_dump(struct htm *htm, char *filename)
{
char *trace_file;
struct htm_status status;
uint64_t last, end, trace_size, last2 = 0;
int trace_fd, dump_fd;
uint64_t eyecatcher;
size_t r;
bool wrapped;
if (!filename)
return -1;
if (HTM_ERR(get_status(htm, &status)))
return -1;
if (status.state != COMPLETE) {
PR_INFO("* Skipping DUMP tigger, HTM is not in complete state\n");
return -1;
}
if (pdbg_target_compatible(&htm->target, "ibm,power10-nhtm") && status.state2 != COMPLETE) {
PR_INFO("* Skipping DUMP tigger, HTM2 is not in complete state\n");
return -1;
}
trace_file = get_debugfs_file(htm, "trace");
if (!trace_file)
return -1;
trace_fd = open(trace_file, O_RDWR);
if (trace_fd == -1) {
PR_ERROR("Failed to open %s: %m\n", trace_file);
r = trace_fd;
goto out3;
}
if (pdbg_target_compatible(&htm->target, "ibm,power10-nhtm") ||
pdbg_target_compatible(&htm->target, "ibm,power10-chtm")) {
lseek(trace_fd, 8, SEEK_SET);
r = read(trace_fd, &eyecatcher, 8);
} else {
r = read(trace_fd, &eyecatcher, 4);
}
if (r == -1) {
PR_ERROR("Failed to read from %s: %m\n", trace_file);
goto out2;
}
wrapped = true;
if (eyecatcher == 0x00f0efac)
wrapped = false;
last = status.mem_last - status.mem_base;
if (pdbg_target_compatible(&htm->target, "ibm,power10-nhtm"))
last2 = status.mem_last2 - status.mem_base;
end = htm_trace_size(&status);
trace_size = wrapped ? end : last;
printf("Dumping %" PRIi64 " MB to %s\n", trace_size >> 20, filename);
dump_fd = open(filename, O_RDWR | O_CREAT, S_IRUSR | S_IWUSR);
if (dump_fd == -1) {
PR_ERROR("Failed to open %s: %m\n", filename);
r = dump_fd;
goto out2;
}
/*
* Trace buffer:
* ------------------------------------------------
* | | |
* ------------------------------------------------
* start last end
*
* If the trace buffer has wrapped, the start of the trace is
* after the last written value. In this case we need to copy
* last -> end to dump file. Then copy start -> last to the
* dump file.
*/
if (wrapped) {
/* Copy last -> end first */
r = lseek(trace_fd, last, SEEK_SET);
if (r == -1)
goto out1;
r = copy_file(dump_fd, trace_fd, end - last);
if (r)
goto out1;
}
/* Copy start -> last */
r = lseek(trace_fd, 0, SEEK_SET);
if (r == -1)
goto out1;
r = copy_file(dump_fd, trace_fd, MAX(last2, last));
if (r)
goto out1;
r = 1;
out1:
close(dump_fd);
out2:
close(trace_fd);
out3:
free(trace_file);
return r;
}
static int do_htm_record(struct htm *htm, char *filename)
{
if (__do_htm_start(htm, false) < 0)
return -1;
if (htm_wait_complete(htm))
return -1;
if (do_htm_stop(htm) < 0)
return -1;
if (do_htm_dump(htm, filename) < 0)
return -1;
return 1;
}
static bool is_debugfs_memtrace_ok(void)
{
return access(DEBUGFS_MEMTRACE, F_OK) == 0;
}
static bool is_debugfs_scom_ok(void)
{
return access(DEBUGFS_SCOM, F_OK) == 0;
}
static int nhtm_probe(struct pdbg_target *target)
{
uint64_t val;
if (!is_debugfs_memtrace_ok() || !is_debugfs_scom_ok())
return -1;
if (pdbg_target_compatible(target, "ibm,power9-nhtm")) {
pib_read(target, NHTM_FLEX_MUX, &val);
if (GETFIELD(NHTM_FLEX_MUX_MASK, val) != NHTM_FLEX_DEFAULT) {
PR_DEBUG("FLEX_MUX not default\n");
return -1;
}
}
switch (pdbg_get_proc()) {
case PDBG_PROC_P10:
dual_htm_offset = 0x01;
break;
default:
break;
}
return 0;
}
static int chtm_probe(struct pdbg_target *target)
{
return is_debugfs_memtrace_ok() && is_debugfs_scom_ok() ? 0 : -1;
}
static struct htm p8_nhtm = {
.target = {
.name = "POWER8 Nest HTM",
.compatible = "ibm,power8-nhtm",
.class = "nhtm",
.probe = nhtm_probe,
},
.start = do_htm_start,
.stop = do_htm_stop,
.record = do_htm_record,
.status = do_htm_status,
.dump = do_htm_dump,
};
DECLARE_HW_UNIT(p8_nhtm);
static struct htm p9_nhtm = {
.target = {
.name = "POWER9 Nest HTM",
.compatible = "ibm,power9-nhtm",
.class = "nhtm",
.probe = nhtm_probe,
},
.start = do_htm_start,
.stop = do_htm_stop,
.record = do_htm_record,
.status = do_htm_status,
.dump = do_htm_dump,
};
DECLARE_HW_UNIT(p9_nhtm);
static struct htm p8_chtm = {
.target = {
.name = "POWER8 Core HTM",
.compatible = "ibm,power8-chtm",
.class = "chtm",
.probe = chtm_probe,
},
.start = do_htm_start,
.stop = do_htm_stop,
.record = do_htm_record,
.status = do_htm_status,
.dump = do_htm_dump,
.configure = do_configure_chtm_p8,
.deconfigure = do_deconfigure_chtm_p8,
.post_configure = do_post_configure_chtm_p8,
};
DECLARE_HW_UNIT(p8_chtm);
static struct htm p10_nhtm = {
.target = {
.name = "POWER10 Nest HTM",
.compatible = "ibm,power10-nhtm",
.class = "nhtm",
.probe = nhtm_probe,
},
.start = do_htm_start,
.stop = do_htm_stop,
.record = do_htm_record,
.status = do_htm_status,
.dump = do_htm_dump,
};
DECLARE_HW_UNIT(p10_nhtm);
static struct htm p10_chtm = {
.target = {
.name = "POWER10 Core HTM",
.compatible = "ibm,power10-chtm",
.class = "chtm",
.probe = chtm_probe,
},
.start = do_htm_start,
.stop = do_htm_stop,
.record = do_htm_record,
.status = do_htm_status,
.dump = do_htm_dump,
.configure = do_configure_chtm_p10,
.deconfigure = do_deconfigure_chtm_p10,
.post_configure = do_post_configure_chtm_p10,
.pre_deconfigure = do_pre_deconfigure_chtm_p10,
};
DECLARE_HW_UNIT(p10_chtm);
__attribute__((constructor))
static void register_htm(void)
{
pdbg_hwunit_register(PDBG_DEFAULT_BACKEND, &p8_nhtm_hw_unit);
pdbg_hwunit_register(PDBG_DEFAULT_BACKEND, &p9_nhtm_hw_unit);
pdbg_hwunit_register(PDBG_DEFAULT_BACKEND, &p10_nhtm_hw_unit);
pdbg_hwunit_register(PDBG_DEFAULT_BACKEND, &p8_chtm_hw_unit);
pdbg_hwunit_register(PDBG_DEFAULT_BACKEND, &p10_chtm_hw_unit);
}
|