setup.c (7c59a3df15df29c8402a05b92385e83e55355778) | setup.c (fccb9a81fd08b61bed91ddef88341694f8ecbfd1) |
---|---|
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 --- 379 unchanged lines hidden (view full) --- 388 paging_init(); 389 request_standard_resources(); 390 391 early_ioremap_reset(); 392 393 if (acpi_disabled) { 394 unflatten_device_tree(); 395 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 --- 379 unchanged lines hidden (view full) --- 388 paging_init(); 389 request_standard_resources(); 390 391 early_ioremap_reset(); 392 393 if (acpi_disabled) { 394 unflatten_device_tree(); 395 psci_dt_init(); |
396 cpu_read_bootcpu_ops(); 397#ifdef CONFIG_SMP 398 of_smp_init_cpus(); 399#endif |
|
396 } else { 397 psci_acpi_init(); | 400 } else { 401 psci_acpi_init(); |
402 acpi_init_cpus(); |
|
398 } 399 | 403 } 404 |
400 cpu_read_bootcpu_ops(); | |
401#ifdef CONFIG_SMP | 405#ifdef CONFIG_SMP |
402 smp_init_cpus(); | |
403 smp_build_mpidr_hash(); 404#endif 405 406#ifdef CONFIG_VT 407#if defined(CONFIG_VGA_CONSOLE) 408 conswitchp = &vga_con; 409#elif defined(CONFIG_DUMMY_CONSOLE) 410 conswitchp = &dummy_con; --- 147 unchanged lines hidden --- | 406 smp_build_mpidr_hash(); 407#endif 408 409#ifdef CONFIG_VT 410#if defined(CONFIG_VGA_CONSOLE) 411 conswitchp = &vga_con; 412#elif defined(CONFIG_DUMMY_CONSOLE) 413 conswitchp = &dummy_con; --- 147 unchanged lines hidden --- |