diff options
Diffstat (limited to 'arch/powerpc/mm/mem.c')
| -rw-r--r-- | arch/powerpc/mm/mem.c | 11 | 
1 files changed, 9 insertions, 2 deletions
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c index 9488b63dfc87..f5535eae637f 100644 --- a/arch/powerpc/mm/mem.c +++ b/arch/powerpc/mm/mem.c @@ -151,10 +151,9 @@ void __ref arch_remove_memory(int nid, u64 start, u64 size,  {  	unsigned long start_pfn = start >> PAGE_SHIFT;  	unsigned long nr_pages = size >> PAGE_SHIFT; -	struct page *page = pfn_to_page(start_pfn) + vmem_altmap_offset(altmap);  	int ret; -	__remove_pages(page_zone(page), start_pfn, nr_pages, altmap); +	__remove_pages(start_pfn, nr_pages, altmap);  	/* Remove htab bolted mappings for this section of memory */  	start = (unsigned long)__va(start); @@ -289,6 +288,14 @@ void __init mem_init(void)  	BUILD_BUG_ON(MMU_PAGE_COUNT > 16);  #ifdef CONFIG_SWIOTLB +	/* +	 * Some platforms (e.g. 85xx) limit DMA-able memory way below +	 * 4G. We force memblock to bottom-up mode to ensure that the +	 * memory allocated in swiotlb_init() is DMA-able. +	 * As it's the last memblock allocation, no need to reset it +	 * back to to-down. +	 */ +	memblock_set_bottom_up(true);  	swiotlb_init(0);  #endif  |