Author: kib
Date: Sat Apr 14 17:41:54 2018
New Revision: 332505
URL: https://svnweb.freebsd.org/changeset/base/332505

Log:
  MFC r332182:
  Handle Skylake-X errata SKZ63.

Modified:
  stable/11/sys/amd64/amd64/pmap.c
  stable/11/sys/vm/vm_page.c
  stable/11/sys/vm/vm_page.h
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/amd64/amd64/pmap.c
==============================================================================
--- stable/11/sys/amd64/amd64/pmap.c    Sat Apr 14 17:33:16 2018        
(r332504)
+++ stable/11/sys/amd64/amd64/pmap.c    Sat Apr 14 17:41:54 2018        
(r332505)
@@ -1224,7 +1224,35 @@ pmap_init(void)
        struct pmap_preinit_mapping *ppim;
        vm_page_t mpte;
        vm_size_t s;
-       int error, i, pv_npg;
+       int error, i, pv_npg, ret, skz63;
+
+       /* Detect bare-metal Skylake Server and Skylake-X. */
+       if (vm_guest == VM_GUEST_NO && cpu_vendor_id == CPU_VENDOR_INTEL &&
+           CPUID_TO_FAMILY(cpu_id) == 0x6 && CPUID_TO_MODEL(cpu_id) == 0x55) {
+               /*
+                * Skylake-X errata SKZ63. Processor May Hang When
+                * Executing Code In an HLE Transaction Region between
+                * 40000000H and 403FFFFFH.
+                *
+                * Mark the pages in the range as preallocated.  It
+                * seems to be impossible to distinguish between
+                * Skylake Server and Skylake X.
+                */
+               skz63 = 1;
+               TUNABLE_INT_FETCH("hw.skz63_enable", &skz63);
+               if (skz63 != 0) {
+                       if (bootverbose)
+                               printf("SKZ63: skipping 4M RAM starting "
+                                   "at physical 1G\n");
+                       for (i = 0; i < atop(0x400000); i++) {
+                               ret = vm_page_blacklist_add(0x40000000 +
+                                   ptoa(i), FALSE);
+                               if (!ret && bootverbose)
+                                       printf("page at %#lx already used\n",
+                                           0x40000000 + ptoa(i));
+                       }
+               }
+       }
 
        /*
         * Initialize the vm page array entries for the kernel pmap's

Modified: stable/11/sys/vm/vm_page.c
==============================================================================
--- stable/11/sys/vm/vm_page.c  Sat Apr 14 17:33:16 2018        (r332504)
+++ stable/11/sys/vm/vm_page.c  Sat Apr 14 17:41:54 2018        (r332505)
@@ -292,6 +292,27 @@ vm_page_blacklist_next(char **list, char *end)
        return (0);
 }
 
+bool
+vm_page_blacklist_add(vm_paddr_t pa, bool verbose)
+{
+       vm_page_t m;
+       int ret;
+
+       m = vm_phys_paddr_to_vm_page(pa);
+       if (m == NULL)
+               return (true); /* page does not exist, no failure */
+
+       mtx_lock(&vm_page_queue_free_mtx);
+       ret = vm_phys_unfree_page(m);
+       mtx_unlock(&vm_page_queue_free_mtx);
+       if (ret) {
+               TAILQ_INSERT_TAIL(&blacklist_head, m, listq);
+               if (verbose)
+                       printf("Skipping page with pa 0x%jx\n", (uintmax_t)pa);
+       }
+       return (ret);
+}
+
 /*
  *     vm_page_blacklist_check:
  *
@@ -303,26 +324,13 @@ static void
 vm_page_blacklist_check(char *list, char *end)
 {
        vm_paddr_t pa;
-       vm_page_t m;
        char *next;
-       int ret;
 
        next = list;
        while (next != NULL) {
                if ((pa = vm_page_blacklist_next(&next, end)) == 0)
                        continue;
-               m = vm_phys_paddr_to_vm_page(pa);
-               if (m == NULL)
-                       continue;
-               mtx_lock(&vm_page_queue_free_mtx);
-               ret = vm_phys_unfree_page(m);
-               mtx_unlock(&vm_page_queue_free_mtx);
-               if (ret == TRUE) {
-                       TAILQ_INSERT_TAIL(&blacklist_head, m, listq);
-                       if (bootverbose)
-                               printf("Skipping page with pa 0x%jx\n",
-                                   (uintmax_t)pa);
-               }
+               vm_page_blacklist_add(pa, bootverbose);
        }
 }
 

Modified: stable/11/sys/vm/vm_page.h
==============================================================================
--- stable/11/sys/vm/vm_page.h  Sat Apr 14 17:33:16 2018        (r332504)
+++ stable/11/sys/vm/vm_page.h  Sat Apr 14 17:41:54 2018        (r332505)
@@ -474,6 +474,7 @@ vm_page_t vm_page_alloc_contig(vm_object_t object, vm_
     u_long npages, vm_paddr_t low, vm_paddr_t high, u_long alignment,
     vm_paddr_t boundary, vm_memattr_t memattr);
 vm_page_t vm_page_alloc_freelist(int, int);
+bool vm_page_blacklist_add(vm_paddr_t pa, bool verbose);
 void vm_page_change_lock(vm_page_t m, struct mtx **mtx);
 vm_page_t vm_page_grab (vm_object_t, vm_pindex_t, int);
 int vm_page_grab_pages(vm_object_t object, vm_pindex_t pindex, int allocflags,
_______________________________________________
svn-src-all@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"

Reply via email to