setup.c (c3b5d3cea508d2c8ff493ef18c45a9cc58fb7015) setup.c (0f0783365cbb7ec13a8f02198f6e1a146d94a5a9)
1/*
2 * Based on arch/arm/kernel/setup.c
3 *
4 * Copyright (C) 1995-2001 Russell King
5 * Copyright (C) 2012 ARM Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as

--- 394 unchanged lines hidden (view full) ---

403 paging_init();
404 request_standard_resources();
405
406 early_ioremap_reset();
407
408 if (acpi_disabled) {
409 unflatten_device_tree();
410 psci_dt_init();
1/*
2 * Based on arch/arm/kernel/setup.c
3 *
4 * Copyright (C) 1995-2001 Russell King
5 * Copyright (C) 2012 ARM Ltd.
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as

--- 394 unchanged lines hidden (view full) ---

403 paging_init();
404 request_standard_resources();
405
406 early_ioremap_reset();
407
408 if (acpi_disabled) {
409 unflatten_device_tree();
410 psci_dt_init();
411 cpu_read_bootcpu_ops();
412#ifdef CONFIG_SMP
413 of_smp_init_cpus();
414#endif
415 } else {
416 psci_acpi_init();
411 } else {
412 psci_acpi_init();
417 acpi_init_cpus();
418 }
419
413 }
414
415 cpu_read_bootcpu_ops();
420#ifdef CONFIG_SMP
416#ifdef CONFIG_SMP
417 smp_init_cpus();
421 smp_build_mpidr_hash();
422#endif
423
424#ifdef CONFIG_VT
425#if defined(CONFIG_VGA_CONSOLE)
426 conswitchp = &vga_con;
427#elif defined(CONFIG_DUMMY_CONSOLE)
428 conswitchp = &dummy_con;

--- 153 unchanged lines hidden ---
418 smp_build_mpidr_hash();
419#endif
420
421#ifdef CONFIG_VT
422#if defined(CONFIG_VGA_CONSOLE)
423 conswitchp = &vga_con;
424#elif defined(CONFIG_DUMMY_CONSOLE)
425 conswitchp = &dummy_con;

--- 153 unchanged lines hidden ---