Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752102AbcCIAAu (ORCPT ); Tue, 8 Mar 2016 19:00:50 -0500 Received: from mail-pa0-f65.google.com ([209.85.220.65]:34846 "EHLO mail-pa0-f65.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751617AbcCIAAG (ORCPT ); Tue, 8 Mar 2016 19:00:06 -0500 From: David Daney To: Will Deacon , linux-arm-kernel@lists.infradead.org, Rob Herring , Frank Rowand , Grant Likely , Pawel Moll , Ian Campbell , Kumar Gala , Ganapatrao Kulkarni , Robert Richter , Ard Biesheuvel , Matt Fleming , Mark Rutland , Catalin Marinas Cc: linux-efi@vger.kernel.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org, David Daney Subject: [PATCH v15 4/6] arm64: Move unflatten_device_tree() call earlier. Date: Tue, 8 Mar 2016 15:59:45 -0800 Message-Id: <1457481587-8976-5-git-send-email-ddaney.cavm@gmail.com> X-Mailer: git-send-email 1.7.11.7 In-Reply-To: <1457481587-8976-1-git-send-email-ddaney.cavm@gmail.com> References: <1457481587-8976-1-git-send-email-ddaney.cavm@gmail.com> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2868 Lines: 104 From: David Daney In order to extract NUMA information from the device tree, we need to have the tree in its unflattened form. Split paging_init() into two pieces. The first piece maps memory so that unflatten_device_tree(), can allocate memory. The second piece containing the bootmem_init() call that will be patched in a follow-on patch to add NUMA handling. Move the unflatten_device_tree() call between the two new pieces. Signed-off-by: David Daney --- arch/arm64/include/asm/mmu.h | 3 ++- arch/arm64/kernel/setup.c | 15 ++++++++++----- arch/arm64/mm/mmu.c | 17 +++++++++++------ 3 files changed, 23 insertions(+), 12 deletions(-) diff --git a/arch/arm64/include/asm/mmu.h b/arch/arm64/include/asm/mmu.h index 990124a..e6e40ac 100644 --- a/arch/arm64/include/asm/mmu.h +++ b/arch/arm64/include/asm/mmu.h @@ -28,7 +28,8 @@ typedef struct { */ #define ASID(mm) ((mm)->context.id.counter & 0xffff) -extern void paging_init(void); +extern void paging_init_map_mem(void); +extern void paging_init_rest(void); extern void __iomem *early_io_map(phys_addr_t phys, unsigned long virt); extern void init_mem_pgprot(void); extern void create_pgd_mapping(struct mm_struct *mm, phys_addr_t phys, diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c index 8119479..753ae90 100644 --- a/arch/arm64/kernel/setup.c +++ b/arch/arm64/kernel/setup.c @@ -319,7 +319,13 @@ void __init setup_arch(char **cmdline_p) /* Parse the ACPI tables for possible boot-time configuration */ acpi_boot_table_init(); - paging_init(); + paging_init_map_mem(); + + if (acpi_disabled) + unflatten_device_tree(); + + paging_init_rest(); + relocate_initrd(); kasan_init(); @@ -328,12 +334,11 @@ void __init setup_arch(char **cmdline_p) early_ioremap_reset(); - if (acpi_disabled) { - unflatten_device_tree(); + if (acpi_disabled) psci_dt_init(); - } else { + else psci_acpi_init(); - } + xen_early_init(); cpu_read_bootcpu_ops(); diff --git a/arch/arm64/mm/mmu.c b/arch/arm64/mm/mmu.c index 58faeaa..5c6dd0a 100644 --- a/arch/arm64/mm/mmu.c +++ b/arch/arm64/mm/mmu.c @@ -449,18 +449,23 @@ void fixup_init(void) } /* - * paging_init() sets up the page tables, initialises the zone memory - * maps and sets up the zero page. + * paging_init_map_mem() sets up the page tables so that memblock + * memory is usable. */ -void __init paging_init(void) +void __init paging_init_map_mem(void) { - void *zero_page; - map_mem(); fixup_executable(); +} +/* + * paging_init_rest() finishes setting up the page tables, initializes + * the zone memory maps and sets up the zero page. + */ +void __init paging_init_rest(void) +{ /* allocate the zero page. */ - zero_page = early_alloc(PAGE_SIZE); + void *zero_page = early_alloc(PAGE_SIZE); bootmem_init(); -- 1.8.3.1