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
|
/** @file
* X86 (and AMD64) Local APIC registers (VMM,++).
*
* apic.mac is generated from this file by running 'kmk incs' in the root.
*/
/*
* Copyright (C) 2010-2025 Oracle and/or its affiliates.
*
* This file is part of VirtualBox base platform packages, as
* available from https://www.virtualbox.org.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, in version 3 of the
* License.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, see <https://www.gnu.org/licenses>.
*
* The contents of this file may alternatively be used under the terms
* of the Common Development and Distribution License Version 1.0
* (CDDL), a copy of it is provided in the "COPYING.CDDL" file included
* in the VirtualBox distribution, in which case the provisions of the
* CDDL are applicable instead of those of the GPL.
*
* You may elect to license modified versions of this file under the
* terms and conditions of either the GPL or the CDDL or both.
*
* SPDX-License-Identifier: GPL-3.0-only OR CDDL-1.0
*/
#ifndef VBOX_INCLUDED_apic_h
#define VBOX_INCLUDED_apic_h
#ifndef RT_WITHOUT_PRAGMA_ONCE
# pragma once
#endif
#include <iprt/types.h>
#include <iprt/x86.h>
/** @todo These are defines used by CPUM and perhaps some assembly code. Remove
* these and use the XAPIC counterpart defines below later. */
#define APIC_REG_VERSION 0x0030
#define APIC_REG_VERSION_GET_VER(u32) (u32 & 0xff)
#define APIC_REG_VERSION_GET_MAX_LVT(u32) ((u32 & 0xff0000) >> 16)
/* Defines according to Figure 10-8 of the Intel Software Developers Manual Vol 3A */
#define APIC_REG_LVT_LINT0 0x0350
#define APIC_REG_LVT_LINT1 0x0360
#define APIC_REG_LVT_ERR 0x0370
#define APIC_REG_LVT_PC 0x0340
#define APIC_REG_LVT_THMR 0x0330
#define APIC_REG_LVT_CMCI 0x02F0
#define APIC_REG_EILVT0 0x0500
#define APIC_REG_EILVT1 0x0510
#define APIC_REG_EILVT2 0x0520
#define APIC_REG_EILVT3 0x0530
#define APIC_REG_LVT_MODE_MASK (RT_BIT(8) | RT_BIT(9) | RT_BIT(10))
#define APIC_REG_LVT_MODE_FIXED 0
#define APIC_REG_LVT_MODE_NMI RT_BIT(10)
#define APIC_REG_LVT_MODE_EXTINT (RT_BIT(8) | RT_BIT(9) | RT_BIT(10))
#define APIC_REG_LVT_PIN_POLARIY RT_BIT(13)
#define APIC_REG_LVT_REMOTE_IRR RT_BIT(14)
#define APIC_REG_LVT_LEVEL_TRIGGER RT_BIT(15)
#define APIC_REG_LVT_MASKED RT_BIT(16)
/** The APIC hardware version number for Pentium 4. */
#define XAPIC_HARDWARE_VERSION_P4 UINT8_C(0x14)
/** Maximum number of LVT entries for Pentium 4. */
#define XAPIC_MAX_LVT_ENTRIES_P4 UINT8_C(6)
/** Size of the APIC ID bits for Pentium 4. */
#define XAPIC_APIC_ID_BIT_COUNT_P4 UINT8_C(8)
/** The APIC hardware version number for Pentium 6. */
#define XAPIC_HARDWARE_VERSION_P6 UINT8_C(0x10)
/** Maximum number of LVT entries for Pentium 6. */
#define XAPIC_MAX_LVT_ENTRIES_P6 UINT8_C(4)
/** Size of the APIC ID bits for Pentium 6. */
#define XAPIC_APIC_ID_BIT_COUNT_P6 UINT8_C(4)
/** Illegal APIC vector value start. */
#define XAPIC_ILLEGAL_VECTOR_START UINT8_C(0)
/** Illegal APIC vector value end (inclusive). */
#define XAPIC_ILLEGAL_VECTOR_END UINT8_C(15)
/** Reserved APIC vector value start. */
#define XAPIC_RSVD_VECTOR_START UINT8_C(16)
/** Reserved APIC vector value end (inclusive). */
#define XAPIC_RSVD_VECTOR_END UINT8_C(31)
/** ESR - Send checksum error for Pentium 6. */
# define XAPIC_ESR_SEND_CHKSUM_ERROR_P6 RT_BIT(0)
/** ESR - Send accept error for Pentium 6. */
# define XAPIC_ESR_RECV_CHKSUM_ERROR_P6 RT_BIT(1)
/** ESR - Send accept error for Pentium 6. */
# define XAPIC_ESR_SEND_ACCEPT_ERROR_P6 RT_BIT(2)
/** ESR - Receive accept error for Pentium 6. */
# define XAPIC_ESR_RECV_ACCEPT_ERROR_P6 RT_BIT(3)
/** ESR - Redirectable IPI. */
#define XAPIC_ESR_REDIRECTABLE_IPI RT_BIT(4)
/** ESR - Send accept error. */
#define XAPIC_ESR_SEND_ILLEGAL_VECTOR RT_BIT(5)
/** ESR - Send accept error. */
#define XAPIC_ESR_RECV_ILLEGAL_VECTOR RT_BIT(6)
/** ESR - Send accept error. */
#define XAPIC_ESR_ILLEGAL_REG_ADDRESS RT_BIT(7)
/** ESR - Valid write-only bits. */
#define XAPIC_ESR_WO_VALID UINT32_C(0x0)
/** TPR - Valid bits. */
#define XAPIC_TPR_VALID UINT32_C(0xff)
/** TPR - Task-priority class. */
#define XAPIC_TPR_TP UINT32_C(0xf0)
/** TPR - Task-priority subclass. */
#define XAPIC_TPR_TP_SUBCLASS UINT32_C(0x0f)
/** TPR - Gets the task-priority class. */
#define XAPIC_TPR_GET_TP(a_Tpr) ((a_Tpr) & XAPIC_TPR_TP)
/** TPR - Gets the task-priority subclass. */
#define XAPIC_TPR_GET_TP_SUBCLASS(a_Tpr) ((a_Tpr) & XAPIC_TPR_TP_SUBCLASS)
/** PPR - Valid bits. */
#define XAPIC_PPR_VALID UINT32_C(0xff)
/** PPR - Processor-priority class. */
#define XAPIC_PPR_PP UINT32_C(0xf0)
/** PPR - Processor-priority subclass. */
#define XAPIC_PPR_PP_SUBCLASS UINT32_C(0x0f)
/** PPR - Get the processor-priority class. */
#define XAPIC_PPR_GET_PP(a_Ppr) ((a_Ppr) & XAPIC_PPR_PP)
/** PPR - Get the processor-priority subclass. */
#define XAPIC_PPR_GET_PP_SUBCLASS(a_Ppr) ((a_Ppr) & XAPIC_PPR_PP_SUBCLASS)
/** Timer mode - One-shot. */
#define XAPIC_TIMER_MODE_ONESHOT UINT32_C(0)
/** Timer mode - Periodic. */
#define XAPIC_TIMER_MODE_PERIODIC UINT32_C(1)
/** Timer mode - TSC deadline. */
#define XAPIC_TIMER_MODE_TSC_DEADLINE UINT32_C(2)
/** LVT - The vector. */
#define XAPIC_LVT_VECTOR UINT32_C(0xff)
/** LVT - Gets the vector from an LVT entry. */
#define XAPIC_LVT_GET_VECTOR(a_Lvt) ((a_Lvt) & XAPIC_LVT_VECTOR)
/** LVT - The mask. */
#define XAPIC_LVT_MASK RT_BIT(16)
/** LVT - Is the LVT masked? */
#define XAPIC_LVT_IS_MASKED(a_Lvt) RT_BOOL((a_Lvt) & XAPIC_LVT_MASK)
/** LVT - Timer mode. */
#define XAPIC_LVT_TIMER_MODE RT_BIT(17)
/** LVT - Timer TSC-deadline timer mode. */
#define XAPIC_LVT_TIMER_TSCDEADLINE RT_BIT(18)
/** LVT - Gets the timer mode. */
#define XAPIC_LVT_GET_TIMER_MODE(a_Lvt) (XAPICTIMERMODE)(((a_Lvt) >> 17) & UINT32_C(3))
/** LVT - Delivery mode. */
#define XAPIC_LVT_DELIVERY_MODE (RT_BIT(8) | RT_BIT(9) | RT_BIT(10))
/** LVT - Gets the delivery mode. */
#define XAPIC_LVT_GET_DELIVERY_MODE(a_Lvt) (XAPICDELIVERYMODE)(((a_Lvt) >> 8) & UINT32_C(7))
/** LVT - Delivery status. */
#define XAPIC_LVT_DELIVERY_STATUS RT_BIT(12)
/** LVT - Trigger mode. */
#define XAPIC_LVT_TRIGGER_MODE RT_BIT(15)
/** LVT - Gets the trigger mode. */
#define XAPIC_LVT_GET_TRIGGER_MODE(a_Lvt) (XAPICTRIGGERMODE)(((a_Lvt) >> 15) & UINT32_C(1))
/** LVT - Remote IRR. */
#define XAPIC_LVT_REMOTE_IRR RT_BIT(14)
/** LVT - Gets the Remote IRR. */
#define XAPIC_LVT_GET_REMOTE_IRR(a_Lvt) (((a_Lvt) >> 14) & 1)
/** LVT - Interrupt Input Pin Polarity. */
#define XAPIC_LVT_POLARITY RT_BIT(13)
/** LVT - Gets the Interrupt Input Pin Polarity. */
#define XAPIC_LVT_GET_POLARITY(a_Lvt) (((a_Lvt) >> 13) & 1)
/** LVT - Valid bits common to all LVTs. */
#define XAPIC_LVT_COMMON_VALID (XAPIC_LVT_VECTOR | XAPIC_LVT_DELIVERY_STATUS | XAPIC_LVT_MASK)
/** LVT CMCI - Valid bits. */
#define XAPIC_LVT_CMCI_VALID (XAPIC_LVT_COMMON_VALID | XAPIC_LVT_DELIVERY_MODE)
/** LVT Timer - Valid bits. */
#define XAPIC_LVT_TIMER_VALID (XAPIC_LVT_COMMON_VALID | XAPIC_LVT_TIMER_MODE | XAPIC_LVT_TIMER_TSCDEADLINE)
/** LVT Thermal - Valid bits. */
#define XAPIC_LVT_THERMAL_VALID (XAPIC_LVT_COMMON_VALID | XAPIC_LVT_DELIVERY_MODE)
/** LVT Perf - Valid bits. */
#define XAPIC_LVT_PERF_VALID (XAPIC_LVT_COMMON_VALID | XAPIC_LVT_DELIVERY_MODE)
/** LVT LINTx - Valid bits. */
#define XAPIC_LVT_LINT_VALID ( XAPIC_LVT_COMMON_VALID | XAPIC_LVT_DELIVERY_MODE | XAPIC_LVT_DELIVERY_STATUS \
| XAPIC_LVT_POLARITY | XAPIC_LVT_REMOTE_IRR | XAPIC_LVT_TRIGGER_MODE)
/** LVT Error - Valid bits. */
#define XAPIC_LVT_ERROR_VALID (XAPIC_LVT_COMMON_VALID)
/** SVR - The vector. */
#define XAPIC_SVR_VECTOR UINT32_C(0xff)
/** SVR - APIC Software enable. */
#define XAPIC_SVR_SOFTWARE_ENABLE RT_BIT(8)
/** SVR - Supress EOI broadcast. */
#define XAPIC_SVR_SUPRESS_EOI_BROADCAST RT_BIT(12)
/** SVR - Valid bits for Pentium 4. */
# define XAPIC_SVR_VALID_P4 (XAPIC_SVR_VECTOR | XAPIC_SVR_SOFTWARE_ENABLE)
/** @todo SVR - Valid bits for Pentium 6. */
/** DFR - Valid bits. */
#define XAPIC_DFR_VALID UINT32_C(0xf0000000)
/** DFR - Reserved bits that must always remain set. */
#define XAPIC_DFR_RSVD_MB1 UINT32_C(0x0fffffff)
/** DFR - The model. */
#define XAPIC_DFR_MODEL UINT32_C(0xf)
/** DFR - Gets the destination model. */
#define XAPIC_DFR_GET_MODEL(a_uReg) (((a_uReg) >> 28) & XAPIC_DFR_MODEL)
/** LDR - Valid bits. */
#define XAPIC_LDR_VALID UINT32_C(0xff000000)
/** LDR - Cluster ID mask (x2APIC). */
#define X2APIC_LDR_CLUSTER_ID UINT32_C(0xffff0000)
/** LDR - Mask of the LDR cluster ID (x2APIC). */
#define X2APIC_LDR_GET_CLUSTER_ID(a_uReg) ((a_uReg) & X2APIC_LDR_CLUSTER_ID)
/** LDR - Mask of the LDR logical ID (x2APIC). */
#define X2APIC_LDR_LOGICAL_ID UINT32_C(0x0000ffff)
/** LDR - Flat mode logical ID mask. */
#define XAPIC_LDR_FLAT_LOGICAL_ID UINT32_C(0xff)
/** LDR - Clustered mode cluster ID mask. */
#define XAPIC_LDR_CLUSTERED_CLUSTER_ID UINT32_C(0xf0)
/** LDR - Clustered mode logical ID mask. */
#define XAPIC_LDR_CLUSTERED_LOGICAL_ID UINT32_C(0x0f)
/** LDR - Gets the clustered mode cluster ID. */
#define XAPIC_LDR_CLUSTERED_GET_CLUSTER_ID(a_uReg) ((a_uReg) & XAPIC_LDR_CLUSTERED_CLUSTER_ID)
/** EOI - Valid write-only bits. */
#define XAPIC_EOI_WO_VALID UINT32_C(0x0)
/** Timer ICR - Valid bits. */
#define XAPIC_TIMER_ICR_VALID UINT32_C(0xffffffff)
/** Timer DCR - Valid bits. */
#define XAPIC_TIMER_DCR_VALID (RT_BIT(0) | RT_BIT(1) | RT_BIT(3))
/** Self IPI - Valid bits. */
#define XAPIC_SELF_IPI_VALID UINT32_C(0xff)
/** Self IPI - The vector. */
#define XAPIC_SELF_IPI_VECTOR UINT32_C(0xff)
/** Self IPI - Gets the vector. */
#define XAPIC_SELF_IPI_GET_VECTOR(a_uReg) ((a_uReg) & XAPIC_SELF_IPI_VECTOR)
/** ICR Low - The Vector. */
#define XAPIC_ICR_LO_VECTOR UINT32_C(0xff)
/** ICR Low - Gets the vector. */
#define XAPIC_ICR_LO_GET_VECTOR(a_uIcr) ((a_uIcr) & XAPIC_ICR_LO_VECTOR)
/** ICR Low - The delivery mode. */
#define XAPIC_ICR_LO_DELIVERY_MODE (RT_BIT(8) | RT_BIT(9) | RT_BIT(10))
/** ICR Low - The destination mode. */
#define XAPIC_ICR_LO_DEST_MODE RT_BIT(11)
/** ICR Low - The delivery status. */
#define XAPIC_ICR_LO_DELIVERY_STATUS RT_BIT(12)
/** ICR Low - The level. */
#define XAPIC_ICR_LO_LEVEL RT_BIT(14)
/** ICR Low - The trigger mode. */
#define XAPIC_ICR_TRIGGER_MODE RT_BIT(15)
/** ICR Low - The destination shorthand. */
#define XAPIC_ICR_LO_DEST_SHORTHAND (RT_BIT(18) | RT_BIT(19))
/** ICR Low - Valid write bits. */
#define XAPIC_ICR_LO_WR_VALID ( XAPIC_ICR_LO_VECTOR | XAPIC_ICR_LO_DELIVERY_MODE | XAPIC_ICR_LO_DEST_MODE \
| XAPIC_ICR_LO_LEVEL | XAPIC_ICR_TRIGGER_MODE | XAPIC_ICR_LO_DEST_SHORTHAND)
/** ICR High - The destination field. */
#define XAPIC_ICR_HI_DEST UINT32_C(0xff000000)
/** ICR High - Get the destination field. */
#define XAPIC_ICR_HI_GET_DEST(a_u32IcrHi) (((a_u32IcrHi) >> 24) & XAPIC_ICR_HI_DEST)
/** ICR High - Valid write bits in xAPIC mode. */
#define XAPIC_ICR_HI_WR_VALID XAPIC_ICR_HI_DEST
/** APIC ID broadcast mask - x2APIC mode. */
#define X2APIC_ID_BROADCAST_MASK UINT32_C(0xffffffff)
/** APIC ID broadcast mask - xAPIC mode for Pentium 4. */
# define XAPIC_ID_BROADCAST_MASK_P4 UINT32_C(0xff)
/** @todo Broadcast mask for Pentium 6. */
/** Get an xAPIC page offset for an x2APIC MSR value. */
#define X2APIC_GET_XAPIC_OFF(a_uMsr) ((((a_uMsr) - MSR_IA32_X2APIC_START) << 4) & UINT32_C(0xff0))
/** Get an x2APIC MSR for an xAPIC page offset. */
#define XAPIC_GET_X2APIC_MSR(a_offReg) ((((a_offReg) & UINT32_C(0xff0)) >> 4) | MSR_IA32_X2APIC_START)
/** Whether the APIC is in X2APIC mode or not. */
#define XAPIC_IN_X2APIC_MODE(a_uApicBaseMsr) ( ((a_uApicBaseMsr) & (MSR_IA32_APICBASE_EN | MSR_IA32_APICBASE_EXTD)) \
== (MSR_IA32_APICBASE_EN | MSR_IA32_APICBASE_EXTD))
/** @name xAPIC and x2APIC register offsets.
* See Intel spec. 10.4.1 "The Local APIC Block Diagram".
* @{ */
/** Offset of APIC ID Register. */
#define XAPIC_OFF_ID 0x020
/** Offset of APIC Version Register. */
#define XAPIC_OFF_VERSION 0x030
/** Offset of Task Priority Register. */
#define XAPIC_OFF_TPR 0x080
/** Offset of Arbitrartion Priority register. */
#define XAPIC_OFF_APR 0x090
/** Offset of Processor Priority register. */
#define XAPIC_OFF_PPR 0x0A0
/** Offset of End Of Interrupt register. */
#define XAPIC_OFF_EOI 0x0B0
/** Offset of Remote Read Register. */
#define XAPIC_OFF_RRD 0x0C0
/** Offset of Logical Destination Register. */
#define XAPIC_OFF_LDR 0x0D0
/** Offset of Destination Format Register. */
#define XAPIC_OFF_DFR 0x0E0
/** Offset of Spurious Interrupt Vector Register. */
#define XAPIC_OFF_SVR 0x0F0
/** Offset of In-service Register (bits 31:0). */
#define XAPIC_OFF_ISR0 0x100
/** Offset of In-service Register (bits 63:32). */
#define XAPIC_OFF_ISR1 0x110
/** Offset of In-service Register (bits 95:64). */
#define XAPIC_OFF_ISR2 0x120
/** Offset of In-service Register (bits 127:96). */
#define XAPIC_OFF_ISR3 0x130
/** Offset of In-service Register (bits 159:128). */
#define XAPIC_OFF_ISR4 0x140
/** Offset of In-service Register (bits 191:160). */
#define XAPIC_OFF_ISR5 0x150
/** Offset of In-service Register (bits 223:192). */
#define XAPIC_OFF_ISR6 0x160
/** Offset of In-service Register (bits 255:224). */
#define XAPIC_OFF_ISR7 0x170
/** Offset of Trigger Mode Register (bits 31:0). */
#define XAPIC_OFF_TMR0 0x180
/** Offset of Trigger Mode Register (bits 63:32). */
#define XAPIC_OFF_TMR1 0x190
/** Offset of Trigger Mode Register (bits 95:64). */
#define XAPIC_OFF_TMR2 0x1A0
/** Offset of Trigger Mode Register (bits 127:96). */
#define XAPIC_OFF_TMR3 0x1B0
/** Offset of Trigger Mode Register (bits 159:128). */
#define XAPIC_OFF_TMR4 0x1C0
/** Offset of Trigger Mode Register (bits 191:160). */
#define XAPIC_OFF_TMR5 0x1D0
/** Offset of Trigger Mode Register (bits 223:192). */
#define XAPIC_OFF_TMR6 0x1E0
/** Offset of Trigger Mode Register (bits 255:224). */
#define XAPIC_OFF_TMR7 0x1F0
/** Offset of Interrupt Request Register (bits 31:0). */
#define XAPIC_OFF_IRR0 0x200
/** Offset of Interrupt Request Register (bits 63:32). */
#define XAPIC_OFF_IRR1 0x210
/** Offset of Interrupt Request Register (bits 95:64). */
#define XAPIC_OFF_IRR2 0x220
/** Offset of Interrupt Request Register (bits 127:96). */
#define XAPIC_OFF_IRR3 0x230
/** Offset of Interrupt Request Register (bits 159:128). */
#define XAPIC_OFF_IRR4 0x240
/** Offset of Interrupt Request Register (bits 191:160). */
#define XAPIC_OFF_IRR5 0x250
/** Offset of Interrupt Request Register (bits 223:192). */
#define XAPIC_OFF_IRR6 0x260
/** Offset of Interrupt Request Register (bits 255:224). */
#define XAPIC_OFF_IRR7 0x270
/** Offset of Error Status Register. */
#define XAPIC_OFF_ESR 0x280
/** Offset of LVT CMCI Register. */
#define XAPIC_OFF_LVT_CMCI 0x2F0
/** Offset of Interrupt Command Register - Lo. */
#define XAPIC_OFF_ICR_LO 0x300
/** Offset of Interrupt Command Register - Hi. */
#define XAPIC_OFF_ICR_HI 0x310
/** Offset of LVT Timer Register. */
#define XAPIC_OFF_LVT_TIMER 0x320
/** Offset of LVT Thermal Sensor Register. */
#define XAPIC_OFF_LVT_THERMAL 0x330
/** Offset of LVT Performance Counter Register. */
#define XAPIC_OFF_LVT_PERF 0x340
/** Offset of LVT LINT0 Register. */
#define XAPIC_OFF_LVT_LINT0 0x350
/** Offset of LVT LINT1 Register. */
#define XAPIC_OFF_LVT_LINT1 0x360
/** Offset of LVT Error Register . */
#define XAPIC_OFF_LVT_ERROR 0x370
/** Offset of Timer Initial Count Register. */
#define XAPIC_OFF_TIMER_ICR 0x380
/** Offset of Timer Current Count Register. */
#define XAPIC_OFF_TIMER_CCR 0x390
/** Offset of Timer Divide Configuration Register. */
#define XAPIC_OFF_TIMER_DCR 0x3E0
/** Offset of Self-IPI Register (x2APIC only). */
#define X2APIC_OFF_SELF_IPI 0x3F0
/** Offset of LVT range start. */
#define XAPIC_OFF_LVT_START XAPIC_OFF_LVT_TIMER
/** Offset of LVT range end (inclusive). */
#define XAPIC_OFF_LVT_END XAPIC_OFF_LVT_ERROR
/** Offset of LVT extended range start. */
#define XAPIC_OFF_LVT_EXT_START XAPIC_OFF_LVT_CMCI
/** Offset of LVT extended range end (inclusive). */
#define XAPIC_OFF_LVT_EXT_END XAPIC_OFF_LVT_CMCI
/** Offset of the last register (incl. reserved) in the xAPIC/x2APIC range. */
#define XAPIC_OFF_END 0x3F0
/** @} */
/** @name xAPIC Destination Format Register bits.
* See Intel spec. 10.6.2.2 "Logical Destination Mode".
* @{ */
typedef enum XAPICDESTFORMAT
{
XAPICDESTFORMAT_FLAT = 0xf,
XAPICDESTFORMAT_CLUSTER = 0
} XAPICDESTFORMAT;
/** @} */
/** @name xAPIC Timer Mode bits.
* See Intel spec. 10.5.1 "Local Vector Table".
* @{ */
typedef enum XAPICTIMERMODE
{
XAPICTIMERMODE_ONESHOT = XAPIC_TIMER_MODE_ONESHOT,
XAPICTIMERMODE_PERIODIC = XAPIC_TIMER_MODE_PERIODIC,
XAPICTIMERMODE_TSC_DEADLINE = XAPIC_TIMER_MODE_TSC_DEADLINE
} XAPICTIMERMODE;
/** @} */
/** @name xAPIC Interrupt Command Register bits.
* See Intel spec. 10.6.1 "Interrupt Command Register (ICR)".
* See Intel spec. 10.5.1 "Local Vector Table".
* @{ */
/**
* xAPIC destination shorthand.
*/
typedef enum XAPICDESTSHORTHAND
{
XAPICDESTSHORTHAND_NONE = 0,
XAPICDESTSHORTHAND_SELF,
XAPIDDESTSHORTHAND_ALL_INCL_SELF,
XAPICDESTSHORTHAND_ALL_EXCL_SELF
} XAPICDESTSHORTHAND;
/**
* xAPIC INIT level de-assert delivery mode.
*/
typedef enum XAPICINITLEVEL
{
XAPICINITLEVEL_DEASSERT = 0,
XAPICINITLEVEL_ASSERT
} XAPICLEVEL;
/**
* xAPIC destination mode.
*/
typedef enum XAPICDESTMODE
{
XAPICDESTMODE_PHYSICAL = 0,
XAPICDESTMODE_LOGICAL
} XAPICDESTMODE;
/**
* xAPIC delivery mode type.
*/
typedef enum XAPICDELIVERYMODE
{
XAPICDELIVERYMODE_FIXED = 0,
XAPICDELIVERYMODE_LOWEST_PRIO = 1,
XAPICDELIVERYMODE_SMI = 2,
XAPICDELIVERYMODE_NMI = 4,
XAPICDELIVERYMODE_INIT = 5,
XAPICDELIVERYMODE_STARTUP = 6,
XAPICDELIVERYMODE_EXTINT = 7
} XAPICDELIVERYMODE;
/**
* xAPIC trigger mode.
*/
typedef enum XAPICTRIGGERMODE
{
XAPICTRIGGERMODE_EDGE = 0,
XAPICTRIGGERMODE_LEVEL
} XAPICTRIGGERMODE;
/** @} */
/**
* The xAPIC sparse 256-bit register.
*/
typedef union XAPIC256BITREG
{
/** The sparse-bitmap view. */
struct
{
uint32_t u32Reg;
uint32_t uReserved0[3];
} u[8];
/** The 32-bit view. */
uint32_t au32[32];
} XAPIC256BITREG;
/** Pointer to an xAPIC sparse bitmap register. */
typedef XAPIC256BITREG *PXAPIC256BITREG;
/** Pointer to a const xAPIC sparse bitmap register. */
typedef XAPIC256BITREG const *PCXAPIC256BITREG;
AssertCompileSize(XAPIC256BITREG, 128);
/** Vector offset in an APIC 256-bit sparse register. */
#define XAPIC_REG256_VECTOR_OFF(a_Vector) (((a_Vector) & UINT32_C(0xe0)) >> 1)
/** Bit position at offset in an APIC 256-bit sparse register. */
#define XAPIC_REG256_VECTOR_BIT(a_Vector) ((a_Vector) & UINT32_C(0x1f))
/**
* The xAPIC memory layout as per Intel/AMD specs.
*/
typedef struct XAPICPAGE
{
/* 0x00 - Reserved. */
uint32_t uReserved0[8];
/* 0x20 - APIC ID. */
struct
{
uint8_t u8Reserved0[3];
uint8_t u8ApicId;
uint32_t u32Reserved0[3];
} id;
/* 0x30 - APIC version register. */
union
{
struct
{
/* #if XAPIC_HARDWARE_VERSION == XAPIC_HARDWARE_VERSION_P4 */
uint8_t u8Version;
/* #else */
/* # error "Implement Pentium and P6 family APIC architectures" */
/* #endif */
uint8_t uReserved0;
uint8_t u8MaxLvtEntry;
uint8_t fEoiBroadcastSupression;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32Version;
uint32_t u32Reserved0[3];
} all;
} version;
/* 0x40 - Reserved. */
uint32_t uReserved1[16];
/* 0x80 - Task Priority Register (TPR). */
struct
{
uint8_t u8Tpr;
uint8_t u8Reserved0[3];
uint32_t u32Reserved0[3];
} tpr;
/* 0x90 - Arbitration Priority Register (APR). */
struct
{
uint8_t u8Apr;
uint8_t u8Reserved0[3];
uint32_t u32Reserved0[3];
} apr;
/* 0xA0 - Processor Priority Register (PPR). */
struct
{
uint8_t u8Ppr;
uint8_t u8Reserved0[3];
uint32_t u32Reserved0[3];
} ppr;
/* 0xB0 - End Of Interrupt Register (EOI). */
struct
{
uint32_t u32Eoi;
uint32_t u32Reserved0[3];
} eoi;
/* 0xC0 - Remote Read Register (RRD). */
struct
{
uint32_t u32Rrd;
uint32_t u32Reserved0[3];
} rrd;
/* 0xD0 - Logical Destination Register (LDR). */
union
{
struct
{
uint8_t u8Reserved0[3];
uint8_t u8LogicalApicId;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32Ldr;
uint32_t u32Reserved0[3];
} all;
} ldr;
/* 0xE0 - Destination Format Register (DFR). */
union
{
struct
{
uint32_t u28ReservedMb1 : 28; /* MB1 */
uint32_t u4Model : 4;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32Dfr;
uint32_t u32Reserved0[3];
} all;
} dfr;
/* 0xF0 - Spurious-Interrupt Vector Register (SVR). */
union
{
struct
{
uint32_t u8SpuriousVector : 8;
uint32_t fApicSoftwareEnable : 1;
uint32_t u3Reserved0 : 3;
uint32_t fSupressEoiBroadcast : 1;
uint32_t u19Reserved1 : 19;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32Svr;
uint32_t u32Reserved0[3];
} all;
} svr;
/* 0x100 - In-service Register (ISR). */
XAPIC256BITREG isr;
/* 0x180 - Trigger Mode Register (TMR). */
XAPIC256BITREG tmr;
/* 0x200 - Interrupt Request Register (IRR). */
XAPIC256BITREG irr;
/* 0x280 - Error Status Register (ESR). */
union
{
struct
{
/* #if XAPIC_HARDWARE_VERSION == XAPIC_HARDWARE_VERSION_P4 */
uint32_t u4Reserved0 : 4;
/* #else */
/* # error "Implement Pentium and P6 family APIC architectures" */
/* #endif */
uint32_t fRedirectableIpi : 1;
uint32_t fSendIllegalVector : 1;
uint32_t fRcvdIllegalVector : 1;
uint32_t fIllegalRegAddr : 1;
uint32_t u24Reserved1 : 24;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32Errors;
uint32_t u32Reserved0[3];
} all;
} esr;
/* 0x290 - Reserved. */
uint32_t uReserved2[28];
/* 0x300 - Interrupt Command Register (ICR) - Low. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u3DeliveryMode : 3;
uint32_t u1DestMode : 1;
uint32_t u1DeliveryStatus : 1;
uint32_t fReserved0 : 1;
uint32_t u1Level : 1;
uint32_t u1TriggerMode : 1;
uint32_t u2Reserved1 : 2;
uint32_t u2DestShorthand : 2;
uint32_t u12Reserved2 : 12;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32IcrLo;
uint32_t u32Reserved0[3];
} all;
} icr_lo;
/* 0x310 - Interrupt Comannd Register (ICR) - High. */
union
{
struct
{
uint32_t u24Reserved0 : 24;
uint32_t u8Dest : 8;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32IcrHi;
uint32_t u32Reserved0[3];
} all;
} icr_hi;
/* 0x320 - Local Vector Table (LVT) Timer Register. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u4Reserved0 : 4;
uint32_t u1DeliveryStatus : 1;
uint32_t u3Reserved1 : 3;
uint32_t u1Mask : 1;
uint32_t u2TimerMode : 2;
uint32_t u13Reserved2 : 13;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32LvtTimer;
uint32_t u32Reserved0[3];
} all;
} lvt_timer;
/* 0x330 - Local Vector Table (LVT) Thermal Sensor Register. */
/* #if XAPIC_HARDWARE_VERSION == XAPIC_HARDWARE_VERSION_P4 */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u3DeliveryMode : 3;
uint32_t u1Reserved0 : 1;
uint32_t u1DeliveryStatus : 1;
uint32_t u3Reserved1 : 3;
uint32_t u1Mask : 1;
uint32_t u15Reserved2 : 15;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32LvtThermal;
uint32_t u32Reserved0[3];
} all;
} lvt_thermal;
/* #else */
/* # error "Implement Pentium and P6 family APIC architectures" */
/* #endif */
/* 0x340 - Local Vector Table (LVT) Performance Monitor Counter (PMC) Register. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u3DeliveryMode : 3;
uint32_t u1Reserved0 : 1;
uint32_t u1DeliveryStatus : 1;
uint32_t u3Reserved1 : 3;
uint32_t u1Mask : 1;
uint32_t u15Reserved2 : 15;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32LvtPerf;
uint32_t u32Reserved0[3];
} all;
} lvt_perf;
/* 0x350 - Local Vector Table (LVT) LINT0 Register. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u3DeliveryMode : 3;
uint32_t u1Reserved0 : 1;
uint32_t u1DeliveryStatus : 1;
uint32_t u1IntrPolarity : 1;
uint32_t u1RemoteIrr : 1;
uint32_t u1TriggerMode : 1;
uint32_t u1Mask : 1;
uint32_t u15Reserved2 : 15;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32LvtLint0;
uint32_t u32Reserved0[3];
} all;
} lvt_lint0;
/* 0x360 - Local Vector Table (LVT) LINT1 Register. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u3DeliveryMode : 3;
uint32_t u1Reserved0 : 1;
uint32_t u1DeliveryStatus : 1;
uint32_t u1IntrPolarity : 1;
uint32_t u1RemoteIrr : 1;
uint32_t u1TriggerMode : 1;
uint32_t u1Mask : 1;
uint32_t u15Reserved2 : 15;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32LvtLint1;
uint32_t u32Reserved0[3];
} all;
} lvt_lint1;
/* 0x370 - Local Vector Table (LVT) Error Register. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u4Reserved0 : 4;
uint32_t u1DeliveryStatus : 1;
uint32_t u3Reserved1 : 3;
uint32_t u1Mask : 1;
uint32_t u15Reserved2 : 15;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32LvtError;
uint32_t u32Reserved0[3];
} all;
} lvt_error;
/* 0x380 - Timer Initial Counter Register. */
struct
{
uint32_t u32InitialCount;
uint32_t u32Reserved0[3];
} timer_icr;
/* 0x390 - Timer Current Counter Register. */
struct
{
uint32_t u32CurrentCount;
uint32_t u32Reserved0[3];
} timer_ccr;
/* 0x3A0 - Reserved. */
uint32_t u32Reserved3[16];
/* 0x3E0 - Timer Divide Configuration Register. */
union
{
struct
{
uint32_t u2DivideValue0 : 2;
uint32_t u1Reserved0 : 1;
uint32_t u1DivideValue1 : 1;
uint32_t u28Reserved1 : 28;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32DivideValue;
uint32_t u32Reserved0[3];
} all;
} timer_dcr;
/* 0x3F0 - Reserved. */
uint8_t u8Reserved0[3088];
} XAPICPAGE;
/** Pointer to a XAPICPAGE struct. */
typedef XAPICPAGE *PXAPICPAGE;
/** Pointer to a const XAPICPAGE struct. */
typedef const XAPICPAGE *PCXAPICPAGE;
AssertCompileSize(XAPICPAGE, 4096);
AssertCompileMemberOffset(XAPICPAGE, id, XAPIC_OFF_ID);
AssertCompileMemberOffset(XAPICPAGE, version, XAPIC_OFF_VERSION);
AssertCompileMemberOffset(XAPICPAGE, tpr, XAPIC_OFF_TPR);
AssertCompileMemberOffset(XAPICPAGE, apr, XAPIC_OFF_APR);
AssertCompileMemberOffset(XAPICPAGE, ppr, XAPIC_OFF_PPR);
AssertCompileMemberOffset(XAPICPAGE, eoi, XAPIC_OFF_EOI);
AssertCompileMemberOffset(XAPICPAGE, rrd, XAPIC_OFF_RRD);
AssertCompileMemberOffset(XAPICPAGE, ldr, XAPIC_OFF_LDR);
AssertCompileMemberOffset(XAPICPAGE, dfr, XAPIC_OFF_DFR);
AssertCompileMemberOffset(XAPICPAGE, svr, XAPIC_OFF_SVR);
AssertCompileMemberOffset(XAPICPAGE, isr, XAPIC_OFF_ISR0);
AssertCompileMemberOffset(XAPICPAGE, tmr, XAPIC_OFF_TMR0);
AssertCompileMemberOffset(XAPICPAGE, irr, XAPIC_OFF_IRR0);
AssertCompileMemberOffset(XAPICPAGE, esr, XAPIC_OFF_ESR);
AssertCompileMemberOffset(XAPICPAGE, icr_lo, XAPIC_OFF_ICR_LO);
AssertCompileMemberOffset(XAPICPAGE, icr_hi, XAPIC_OFF_ICR_HI);
AssertCompileMemberOffset(XAPICPAGE, lvt_timer, XAPIC_OFF_LVT_TIMER);
AssertCompileMemberOffset(XAPICPAGE, lvt_thermal, XAPIC_OFF_LVT_THERMAL);
AssertCompileMemberOffset(XAPICPAGE, lvt_perf, XAPIC_OFF_LVT_PERF);
AssertCompileMemberOffset(XAPICPAGE, lvt_lint0, XAPIC_OFF_LVT_LINT0);
AssertCompileMemberOffset(XAPICPAGE, lvt_lint1, XAPIC_OFF_LVT_LINT1);
AssertCompileMemberOffset(XAPICPAGE, lvt_error, XAPIC_OFF_LVT_ERROR);
AssertCompileMemberOffset(XAPICPAGE, timer_icr, XAPIC_OFF_TIMER_ICR);
AssertCompileMemberOffset(XAPICPAGE, timer_ccr, XAPIC_OFF_TIMER_CCR);
AssertCompileMemberOffset(XAPICPAGE, timer_dcr, XAPIC_OFF_TIMER_DCR);
/**
* The x2APIC memory layout as per Intel/AMD specs.
*/
typedef struct X2APICPAGE
{
/* 0x00 - Reserved. */
uint32_t uReserved0[8];
/* 0x20 - APIC ID. */
struct
{
uint32_t u32ApicId;
uint32_t u32Reserved0[3];
} id;
/* 0x30 - APIC version register. */
union
{
struct
{
uint8_t u8Version;
uint8_t u8Reserved0;
uint8_t u8MaxLvtEntry;
uint8_t fEoiBroadcastSupression;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32Version;
uint32_t u32Reserved2[3];
} all;
} version;
/* 0x40 - Reserved. */
uint32_t uReserved1[16];
/* 0x80 - Task Priority Register (TPR). */
struct
{
uint8_t u8Tpr;
uint8_t u8Reserved0[3];
uint32_t u32Reserved0[3];
} tpr;
/* 0x90 - Reserved. */
uint32_t uReserved2[4];
/* 0xA0 - Processor Priority Register (PPR). */
struct
{
uint8_t u8Ppr;
uint8_t u8Reserved0[3];
uint32_t u32Reserved0[3];
} ppr;
/* 0xB0 - End Of Interrupt Register (EOI). */
struct
{
uint32_t u32Eoi;
uint32_t u32Reserved0[3];
} eoi;
/* 0xC0 - Remote Read Register (RRD). */
struct
{
uint32_t u32Rrd;
uint32_t u32Reserved0[3];
} rrd;
/* 0xD0 - Logical Destination Register (LDR). */
struct
{
uint32_t u32LogicalApicId;
uint32_t u32Reserved1[3];
} ldr;
/* 0xE0 - Reserved. */
uint32_t uReserved3[4];
/* 0xF0 - Spurious-Interrupt Vector Register (SVR). */
union
{
struct
{
uint32_t u8SpuriousVector : 8;
uint32_t fApicSoftwareEnable : 1;
uint32_t u3Reserved0 : 3;
uint32_t fSupressEoiBroadcast : 1;
uint32_t u19Reserved1 : 19;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32Svr;
uint32_t uReserved0[3];
} all;
} svr;
/* 0x100 - In-service Register (ISR). */
XAPIC256BITREG isr;
/* 0x180 - Trigger Mode Register (TMR). */
XAPIC256BITREG tmr;
/* 0x200 - Interrupt Request Register (IRR). */
XAPIC256BITREG irr;
/* 0x280 - Error Status Register (ESR). */
union
{
struct
{
/* #if XAPIC_HARDWARE_VERSION == XAPIC_HARDWARE_VERSION_P4 */
uint32_t u4Reserved0 : 4;
/* #else */
/* # error "Implement Pentium and P6 family APIC architectures" */
/* #endif */
uint32_t fRedirectableIpi : 1;
uint32_t fSendIllegalVector : 1;
uint32_t fRcvdIllegalVector : 1;
uint32_t fIllegalRegAddr : 1;
uint32_t u24Reserved1 : 24;
uint32_t uReserved0[3];
} u;
struct
{
uint32_t u32Errors;
uint32_t u32Reserved0[3];
} all;
} esr;
/* 0x290 - Reserved. */
uint32_t uReserved4[28];
/* 0x300 - Interrupt Command Register (ICR) - Low. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u3DeliveryMode : 3;
uint32_t u1DestMode : 1;
uint32_t u2Reserved0 : 2;
uint32_t u1Level : 1;
uint32_t u1TriggerMode : 1;
uint32_t u2Reserved1 : 2;
uint32_t u2DestShorthand : 2;
uint32_t u12Reserved2 : 12;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32IcrLo;
uint32_t u32Reserved3[3];
} all;
} icr_lo;
/* 0x310 - Interrupt Comannd Register (ICR) - High. */
struct
{
uint32_t u32IcrHi;
uint32_t uReserved1[3];
} icr_hi;
/* 0x320 - Local Vector Table (LVT) Timer Register. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u4Reserved0 : 4;
uint32_t u1DeliveryStatus : 1;
uint32_t u3Reserved1 : 3;
uint32_t u1Mask : 1;
uint32_t u2TimerMode : 2;
uint32_t u13Reserved2 : 13;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32LvtTimer;
uint32_t u32Reserved0[3];
} all;
} lvt_timer;
/* 0x330 - Local Vector Table (LVT) Thermal Sensor Register. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u3DeliveryMode : 3;
uint32_t u1Reserved0 : 1;
uint32_t u1DeliveryStatus : 1;
uint32_t u3Reserved1 : 3;
uint32_t u1Mask : 1;
uint32_t u15Reserved2 : 15;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32LvtThermal;
uint32_t uReserved0[3];
} all;
} lvt_thermal;
/* 0x340 - Local Vector Table (LVT) Performance Monitor Counter (PMC) Register. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u3DeliveryMode : 3;
uint32_t u1Reserved0 : 1;
uint32_t u1DeliveryStatus : 1;
uint32_t u3Reserved1 : 3;
uint32_t u1Mask : 1;
uint32_t u15Reserved2 : 15;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32LvtPerf;
uint32_t u32Reserved0[3];
} all;
} lvt_perf;
/* 0x350 - Local Vector Table (LVT) LINT0 Register. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u3DeliveryMode : 3;
uint32_t u1Reserved0 : 1;
uint32_t u1DeliveryStatus : 1;
uint32_t u1IntrPolarity : 1;
uint32_t u1RemoteIrr : 1;
uint32_t u1TriggerMode : 1;
uint32_t u1Mask : 1;
uint32_t u15Reserved2 : 15;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32LvtLint0;
uint32_t u32Reserved0[3];
} all;
} lvt_lint0;
/* 0x360 - Local Vector Table (LVT) LINT1 Register. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u3DeliveryMode : 3;
uint32_t u1Reserved0 : 1;
uint32_t u1DeliveryStatus : 1;
uint32_t u1IntrPolarity : 1;
uint32_t u1RemoteIrr : 1;
uint32_t u1TriggerMode : 1;
uint32_t u1Mask : 1;
uint32_t u15Reserved2 : 15;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32LvtLint1;
uint32_t u32Reserved0[3];
} all;
} lvt_lint1;
/* 0x370 - Local Vector Table (LVT) Error Register. */
union
{
struct
{
uint32_t u8Vector : 8;
uint32_t u4Reserved0 : 4;
uint32_t u1DeliveryStatus : 1;
uint32_t u3Reserved1 : 3;
uint32_t u1Mask : 1;
uint32_t u15Reserved2 : 15;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32LvtError;
uint32_t u32Reserved0[3];
} all;
} lvt_error;
/* 0x380 - Timer Initial Counter Register. */
struct
{
uint32_t u32InitialCount;
uint32_t u32Reserved0[3];
} timer_icr;
/* 0x390 - Timer Current Counter Register. */
struct
{
uint32_t u32CurrentCount;
uint32_t u32Reserved0[3];
} timer_ccr;
/* 0x3A0 - Reserved. */
uint32_t uReserved5[16];
/* 0x3E0 - Timer Divide Configuration Register. */
union
{
struct
{
uint32_t u2DivideValue0 : 2;
uint32_t u1Reserved0 : 1;
uint32_t u1DivideValue1 : 1;
uint32_t u28Reserved1 : 28;
uint32_t u32Reserved0[3];
} u;
struct
{
uint32_t u32DivideValue;
uint32_t u32Reserved0[3];
} all;
} timer_dcr;
/* 0x3F0 - Self IPI Register. */
struct
{
uint32_t u8Vector : 8;
uint32_t u24Reserved0 : 24;
uint32_t u32Reserved0[3];
} self_ipi;
/* 0x400 - Reserved. */
uint8_t u8Reserved0[3072];
} X2APICPAGE;
/** Pointer to a X2APICPAGE struct. */
typedef X2APICPAGE *PX2APICPAGE;
/** Pointer to a const X2APICPAGE struct. */
typedef const X2APICPAGE *PCX2APICPAGE;
AssertCompileSize(X2APICPAGE, 4096);
AssertCompileSize(X2APICPAGE, sizeof(XAPICPAGE));
AssertCompileMemberOffset(X2APICPAGE, id, XAPIC_OFF_ID);
AssertCompileMemberOffset(X2APICPAGE, version, XAPIC_OFF_VERSION);
AssertCompileMemberOffset(X2APICPAGE, tpr, XAPIC_OFF_TPR);
AssertCompileMemberOffset(X2APICPAGE, ppr, XAPIC_OFF_PPR);
AssertCompileMemberOffset(X2APICPAGE, eoi, XAPIC_OFF_EOI);
AssertCompileMemberOffset(X2APICPAGE, rrd, XAPIC_OFF_RRD);
AssertCompileMemberOffset(X2APICPAGE, ldr, XAPIC_OFF_LDR);
AssertCompileMemberOffset(X2APICPAGE, svr, XAPIC_OFF_SVR);
AssertCompileMemberOffset(X2APICPAGE, isr, XAPIC_OFF_ISR0);
AssertCompileMemberOffset(X2APICPAGE, tmr, XAPIC_OFF_TMR0);
AssertCompileMemberOffset(X2APICPAGE, irr, XAPIC_OFF_IRR0);
AssertCompileMemberOffset(X2APICPAGE, esr, XAPIC_OFF_ESR);
AssertCompileMemberOffset(X2APICPAGE, icr_lo, XAPIC_OFF_ICR_LO);
AssertCompileMemberOffset(X2APICPAGE, icr_hi, XAPIC_OFF_ICR_HI);
AssertCompileMemberOffset(X2APICPAGE, lvt_timer, XAPIC_OFF_LVT_TIMER);
AssertCompileMemberOffset(X2APICPAGE, lvt_thermal, XAPIC_OFF_LVT_THERMAL);
AssertCompileMemberOffset(X2APICPAGE, lvt_perf, XAPIC_OFF_LVT_PERF);
AssertCompileMemberOffset(X2APICPAGE, lvt_lint0, XAPIC_OFF_LVT_LINT0);
AssertCompileMemberOffset(X2APICPAGE, lvt_lint1, XAPIC_OFF_LVT_LINT1);
AssertCompileMemberOffset(X2APICPAGE, lvt_error, XAPIC_OFF_LVT_ERROR);
AssertCompileMemberOffset(X2APICPAGE, timer_icr, XAPIC_OFF_TIMER_ICR);
AssertCompileMemberOffset(X2APICPAGE, timer_ccr, XAPIC_OFF_TIMER_CCR);
AssertCompileMemberOffset(X2APICPAGE, timer_dcr, XAPIC_OFF_TIMER_DCR);
AssertCompileMemberOffset(X2APICPAGE, self_ipi, X2APIC_OFF_SELF_IPI);
/** Maximum valid offset for a register (16-byte aligned, 4 byte wide access). */
#define XAPIC_OFF_MAX_VALID (sizeof(XAPICPAGE) - 4 * sizeof(uint32_t))
/**
* APIC operating modes.
*
* The values MUST match hardware states.
* See Intel spec. 10.12.1 "Detecting and Enabling x2APIC Mode".
*/
typedef enum XAPICMODE
{
XAPICMODE_DISABLED = 0,
XAPICMODE_INVALID,
XAPICMODE_XAPIC,
XAPICMODE_X2APIC
} XAPICMODE;
DECLINLINE(uint32_t) ApicRegRead(void *pvBase, uint32_t offReg)
{
return *(const volatile uint32_t *)((uintptr_t)pvBase + offReg);
}
#ifdef IPRT_INCLUDED_asm_amd64_x86_h
/**
* Reads an X2APIC register.
*
* @param offReg MMIO offset, APIC_REG_XXX.
*/
DECLINLINE(uint32_t) ApicX2RegRead32(uint32_t offReg)
{
return ASMRdMsr((offReg >> 4) + MSR_IA32_X2APIC_START);
}
#endif
#endif /* !VBOX_INCLUDED_apic_h */
|