if (map)
                return map;
 
-       map = memblock_alloc_try_nid_raw(size,
-                                         PAGE_SIZE, addr,
+       map = memblock_alloc_try_nid_raw(size, size, addr,
                                          MEMBLOCK_ALLOC_ACCESSIBLE, nid);
        if (!map)
                panic("%s: Failed to allocate %lu bytes align=0x%lx nid=%d from=%pa\n",
 {
        phys_addr_t addr = __pa(MAX_DMA_ADDRESS);
        WARN_ON(sparsemap_buf); /* forgot to call sparse_buffer_fini()? */
-       sparsemap_buf =
-               memblock_alloc_try_nid_raw(size, PAGE_SIZE,
-                                               addr,
-                                               MEMBLOCK_ALLOC_ACCESSIBLE, nid);
+       /*
+        * Pre-allocated buffer is mainly used by __populate_section_memmap
+        * and we want it to be properly aligned to the section size - this is
+        * especially the case for VMEMMAP which maps memmap to PMDs
+        */
+       sparsemap_buf = memblock_alloc_try_nid_raw(size, section_map_size(),
+                                       addr, MEMBLOCK_ALLOC_ACCESSIBLE, nid);
        sparsemap_buf_end = sparsemap_buf + size;
 }