@@ -784,26 +784,37 @@ static unsigned int intel_size_cache(struct cpuinfo_x86 *c, unsigned int size)
784
784
}
785
785
#endif
786
786
787
- #define TLB_INST_4K 0x01
788
- #define TLB_INST_4M 0x02
789
- #define TLB_INST_2M_4M 0x03
787
+ #define TLB_INST_4K 0x01
788
+ #define TLB_INST_4M 0x02
789
+ #define TLB_INST_2M_4M 0x03
790
790
791
- #define TLB_INST_ALL 0x05
792
- #define TLB_INST_1G 0x06
791
+ #define TLB_INST_ALL 0x05
792
+ #define TLB_INST_1G 0x06
793
793
794
- #define TLB_DATA_4K 0x11
795
- #define TLB_DATA_4M 0x12
796
- #define TLB_DATA_2M_4M 0x13
797
- #define TLB_DATA_4K_4M 0x14
794
+ #define TLB_DATA_4K 0x11
795
+ #define TLB_DATA_4M 0x12
796
+ #define TLB_DATA_2M_4M 0x13
797
+ #define TLB_DATA_4K_4M 0x14
798
798
799
- #define TLB_DATA_1G 0x16
799
+ #define TLB_DATA_1G 0x16
800
+ #define TLB_DATA_1G_2M_4M 0x17
800
801
801
- #define TLB_DATA0_4K 0x21
802
- #define TLB_DATA0_4M 0x22
803
- #define TLB_DATA0_2M_4M 0x23
802
+ #define TLB_DATA0_4K 0x21
803
+ #define TLB_DATA0_4M 0x22
804
+ #define TLB_DATA0_2M_4M 0x23
804
805
805
- #define STLB_4K 0x41
806
- #define STLB_4K_2M 0x42
806
+ #define STLB_4K 0x41
807
+ #define STLB_4K_2M 0x42
808
+
809
+ /*
810
+ * All of leaf 0x2's one-byte TLB descriptors implies the same number of
811
+ * entries for their respective TLB types. The 0x63 descriptor is an
812
+ * exception: it implies 4 dTLB entries for 1GB pages 32 dTLB entries
813
+ * for 2MB or 4MB pages. Encode descriptor 0x63 dTLB entry count for
814
+ * 2MB/4MB pages here, as its count for dTLB 1GB pages is already at the
815
+ * intel_tlb_table[] mapping.
816
+ */
817
+ #define TLB_0x63_2M_4M_ENTRIES 32
807
818
808
819
static const struct _tlb_table intel_tlb_table [] = {
809
820
{ 0x01 , TLB_INST_4K , 32 , " TLB_INST 4 KByte pages, 4-way set associative" },
@@ -825,7 +836,8 @@ static const struct _tlb_table intel_tlb_table[] = {
825
836
{ 0x5c , TLB_DATA_4K_4M , 128 , " TLB_DATA 4 KByte and 4 MByte pages" },
826
837
{ 0x5d , TLB_DATA_4K_4M , 256 , " TLB_DATA 4 KByte and 4 MByte pages" },
827
838
{ 0x61 , TLB_INST_4K , 48 , " TLB_INST 4 KByte pages, full associative" },
828
- { 0x63 , TLB_DATA_1G , 4 , " TLB_DATA 1 GByte pages, 4-way set associative" },
839
+ { 0x63 , TLB_DATA_1G_2M_4M , 4 , " TLB_DATA 1 GByte pages, 4-way set associative"
840
+ " (plus 32 entries TLB_DATA 2 MByte or 4 MByte pages, not encoded here)" },
829
841
{ 0x6b , TLB_DATA_4K , 256 , " TLB_DATA 4 KByte pages, 8-way associative" },
830
842
{ 0x6c , TLB_DATA_2M_4M , 128 , " TLB_DATA 2 MByte or 4 MByte pages, 8-way associative" },
831
843
{ 0x6d , TLB_DATA_1G , 16 , " TLB_DATA 1 GByte pages, fully associative" },
@@ -925,6 +937,12 @@ static void intel_tlb_lookup(const unsigned char desc)
925
937
if (tlb_lld_4m [ENTRIES ] < intel_tlb_table [k ].entries )
926
938
tlb_lld_4m [ENTRIES ] = intel_tlb_table [k ].entries ;
927
939
break ;
940
+ case TLB_DATA_1G_2M_4M :
941
+ if (tlb_lld_2m [ENTRIES ] < TLB_0x63_2M_4M_ENTRIES )
942
+ tlb_lld_2m [ENTRIES ] = TLB_0x63_2M_4M_ENTRIES ;
943
+ if (tlb_lld_4m [ENTRIES ] < TLB_0x63_2M_4M_ENTRIES )
944
+ tlb_lld_4m [ENTRIES ] = TLB_0x63_2M_4M_ENTRIES ;
945
+ fallthrough ;
928
946
case TLB_DATA_1G :
929
947
if (tlb_lld_1g [ENTRIES ] < intel_tlb_table [k ].entries )
930
948
tlb_lld_1g [ENTRIES ] = intel_tlb_table [k ].entries ;
@@ -948,7 +966,7 @@ static void intel_detect_tlb(struct cpuinfo_x86 *c)
948
966
cpuid (2 , & regs [0 ], & regs [1 ], & regs [2 ], & regs [3 ]);
949
967
950
968
/* If bit 31 is set, this is an unknown format */
951
- for (j = 0 ; j < 3 ; j ++ )
969
+ for (j = 0 ; j < 4 ; j ++ )
952
970
if (regs [j ] & (1 << 31 ))
953
971
regs [j ] = 0 ;
954
972
0 commit comments