{
        struct xe_ttm_stolen_mgr *mgr = drmm_kzalloc(&xe->drm, sizeof(*mgr), GFP_KERNEL);
        struct pci_dev *pdev = to_pci_dev(xe->drm.dev);
-       u64 stolen_size, io_size, pgsize;
+       u64 stolen_size, io_size;
        int err;
 
        if (!mgr) {
                return;
        }
 
-       pgsize = xe->info.vram_flags & XE_VRAM_FLAGS_NEED64K ? SZ_64K : SZ_4K;
-       if (pgsize < PAGE_SIZE)
-               pgsize = PAGE_SIZE;
-
        /*
         * We don't try to attempt partial visible support for stolen vram,
         * since stolen is always at the end of vram, and the BAR size is pretty
                io_size = stolen_size;
 
        err = __xe_ttm_vram_mgr_init(xe, &mgr->base, XE_PL_STOLEN, stolen_size,
-                                    io_size, pgsize);
+                                    io_size, PAGE_SIZE);
        if (err) {
                drm_dbg_kms(&xe->drm, "Stolen mgr init failed: %i\n", err);
                return;