2009-08-19 12:48:38 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2009 Thomas Gleixner <tglx@linutronix.de>
|
|
|
|
*
|
|
|
|
* For licencing details see kernel-base/COPYING
|
|
|
|
*/
|
|
|
|
#include <linux/init.h>
|
2009-08-29 15:51:26 +00:00
|
|
|
#include <linux/ioport.h>
|
2010-07-07 23:57:46 +00:00
|
|
|
#include <linux/module.h>
|
2010-10-06 20:12:28 +00:00
|
|
|
#include <linux/pci.h>
|
2009-08-19 12:48:38 +00:00
|
|
|
|
2009-08-19 12:36:27 +00:00
|
|
|
#include <asm/bios_ebda.h>
|
2009-08-20 11:19:57 +00:00
|
|
|
#include <asm/paravirt.h>
|
2009-08-29 14:24:51 +00:00
|
|
|
#include <asm/pci_x86.h>
|
2009-08-20 08:41:58 +00:00
|
|
|
#include <asm/mpspec.h>
|
2009-08-19 12:55:50 +00:00
|
|
|
#include <asm/setup.h>
|
2009-08-19 10:35:53 +00:00
|
|
|
#include <asm/apic.h>
|
2009-08-20 08:19:54 +00:00
|
|
|
#include <asm/e820.h>
|
2009-08-19 13:37:03 +00:00
|
|
|
#include <asm/time.h>
|
2009-08-20 07:41:38 +00:00
|
|
|
#include <asm/irq.h>
|
2012-03-28 16:37:36 +00:00
|
|
|
#include <asm/io_apic.h>
|
2012-09-26 10:44:37 +00:00
|
|
|
#include <asm/hpet.h>
|
2009-11-19 20:23:41 +00:00
|
|
|
#include <asm/pat.h>
|
2009-08-20 15:06:25 +00:00
|
|
|
#include <asm/tsc.h>
|
2009-10-27 07:34:44 +00:00
|
|
|
#include <asm/iommu.h>
|
2011-11-10 13:43:05 +00:00
|
|
|
#include <asm/mach_traps.h>
|
2009-08-19 12:48:38 +00:00
|
|
|
|
x86: delete __cpuinit usage from all x86 files
The __cpuinit type of throwaway sections might have made sense
some time ago when RAM was more constrained, but now the savings
do not offset the cost and complications. For example, the fix in
commit 5e427ec2d0 ("x86: Fix bit corruption at CPU resume time")
is a good example of the nasty type of bugs that can be created
with improper use of the various __init prefixes.
After a discussion on LKML[1] it was decided that cpuinit should go
the way of devinit and be phased out. Once all the users are gone,
we can then finally remove the macros themselves from linux/init.h.
Note that some harmless section mismatch warnings may result, since
notify_cpu_starting() and cpu_up() are arch independent (kernel/cpu.c)
are flagged as __cpuinit -- so if we remove the __cpuinit from
arch specific callers, we will also get section mismatch warnings.
As an intermediate step, we intend to turn the linux/init.h cpuinit
content into no-ops as early as possible, since that will get rid
of these warnings. In any case, they are temporary and harmless.
This removes all the arch/x86 uses of the __cpuinit macros from
all C files. x86 only had the one __CPUINIT used in assembly files,
and it wasn't paired off with a .previous or a __FINIT, so we can
delete it directly w/o any corresponding additional change there.
[1] https://lkml.org/lkml/2013/5/20/589
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: x86@kernel.org
Acked-by: Ingo Molnar <mingo@kernel.org>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2013-06-18 22:23:59 +00:00
|
|
|
void x86_init_noop(void) { }
|
2009-08-20 10:05:01 +00:00
|
|
|
void __init x86_init_uint_noop(unsigned int unused) { }
|
2009-11-10 10:46:12 +00:00
|
|
|
int __init iommu_init_noop(void) { return 0; }
|
2009-11-16 02:44:30 +00:00
|
|
|
void iommu_shutdown_noop(void) { }
|
2009-08-19 12:48:38 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* The platform setup functions are preset with the default functions
|
|
|
|
* for standard PC hardware.
|
|
|
|
*/
|
2009-09-16 06:42:26 +00:00
|
|
|
struct x86_init_ops x86_init __initdata = {
|
2009-08-19 12:43:56 +00:00
|
|
|
|
|
|
|
.resources = {
|
2011-03-08 18:36:19 +00:00
|
|
|
.probe_roms = probe_roms,
|
2009-08-19 12:55:50 +00:00
|
|
|
.reserve_resources = reserve_standard_io_resources,
|
2009-08-20 08:19:54 +00:00
|
|
|
.memory_setup = default_machine_specific_memory_setup,
|
2009-08-19 12:43:56 +00:00
|
|
|
},
|
2009-08-20 10:05:01 +00:00
|
|
|
|
|
|
|
.mpparse = {
|
|
|
|
.mpc_record = x86_init_uint_noop,
|
2009-08-20 07:27:29 +00:00
|
|
|
.setup_ioapic_ids = x86_init_noop,
|
2009-08-20 08:41:58 +00:00
|
|
|
.mpc_apic_id = default_mpc_apic_id,
|
2009-08-20 10:18:32 +00:00
|
|
|
.smp_read_mpc_oem = default_smp_read_mpc_oem,
|
2009-08-20 10:34:47 +00:00
|
|
|
.mpc_oem_bus_info = default_mpc_oem_bus_info,
|
2009-08-20 09:11:52 +00:00
|
|
|
.find_smp_config = default_find_smp_config,
|
|
|
|
.get_smp_config = default_get_smp_config,
|
2009-08-20 10:05:01 +00:00
|
|
|
},
|
2009-08-20 07:41:38 +00:00
|
|
|
|
|
|
|
.irqs = {
|
|
|
|
.pre_vector_init = init_ISA_irqs,
|
2009-08-20 07:59:09 +00:00
|
|
|
.intr_init = native_init_IRQ,
|
2009-08-20 08:35:46 +00:00
|
|
|
.trap_init = x86_init_noop,
|
2009-08-20 07:41:38 +00:00
|
|
|
},
|
2009-08-20 11:04:10 +00:00
|
|
|
|
|
|
|
.oem = {
|
|
|
|
.arch_setup = x86_init_noop,
|
2009-08-20 11:19:57 +00:00
|
|
|
.banner = default_banner,
|
2009-08-20 11:04:10 +00:00
|
|
|
},
|
2009-08-20 12:30:02 +00:00
|
|
|
|
|
|
|
.paging = {
|
2012-08-21 20:22:38 +00:00
|
|
|
.pagetable_init = native_pagetable_init,
|
2009-08-20 12:30:02 +00:00
|
|
|
},
|
2009-08-19 10:35:53 +00:00
|
|
|
|
|
|
|
.timers = {
|
|
|
|
.setup_percpu_clockev = setup_boot_APIC_clock,
|
2009-08-19 13:37:03 +00:00
|
|
|
.tsc_pre_init = x86_init_noop,
|
|
|
|
.timer_init = hpet_time_init,
|
2011-02-14 16:13:31 +00:00
|
|
|
.wallclock_init = x86_init_noop,
|
2009-08-19 10:35:53 +00:00
|
|
|
},
|
2009-11-10 10:46:12 +00:00
|
|
|
|
|
|
|
.iommu = {
|
|
|
|
.iommu_init = iommu_init_noop,
|
|
|
|
},
|
2009-08-29 14:24:51 +00:00
|
|
|
|
|
|
|
.pci = {
|
|
|
|
.init = x86_default_pci_init,
|
2009-08-29 15:47:33 +00:00
|
|
|
.init_irq = x86_default_pci_init_irq,
|
2009-08-29 15:51:26 +00:00
|
|
|
.fixup_irqs = x86_default_pci_fixup_irqs,
|
2009-08-29 14:24:51 +00:00
|
|
|
},
|
2009-08-19 10:35:53 +00:00
|
|
|
};
|
|
|
|
|
x86: delete __cpuinit usage from all x86 files
The __cpuinit type of throwaway sections might have made sense
some time ago when RAM was more constrained, but now the savings
do not offset the cost and complications. For example, the fix in
commit 5e427ec2d0 ("x86: Fix bit corruption at CPU resume time")
is a good example of the nasty type of bugs that can be created
with improper use of the various __init prefixes.
After a discussion on LKML[1] it was decided that cpuinit should go
the way of devinit and be phased out. Once all the users are gone,
we can then finally remove the macros themselves from linux/init.h.
Note that some harmless section mismatch warnings may result, since
notify_cpu_starting() and cpu_up() are arch independent (kernel/cpu.c)
are flagged as __cpuinit -- so if we remove the __cpuinit from
arch specific callers, we will also get section mismatch warnings.
As an intermediate step, we intend to turn the linux/init.h cpuinit
content into no-ops as early as possible, since that will get rid
of these warnings. In any case, they are temporary and harmless.
This removes all the arch/x86 uses of the __cpuinit macros from
all C files. x86 only had the one __CPUINIT used in assembly files,
and it wasn't paired off with a .previous or a __FINIT, so we can
delete it directly w/o any corresponding additional change there.
[1] https://lkml.org/lkml/2013/5/20/589
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: x86@kernel.org
Acked-by: Ingo Molnar <mingo@kernel.org>
Acked-by: Thomas Gleixner <tglx@linutronix.de>
Acked-by: H. Peter Anvin <hpa@linux.intel.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
2013-06-18 22:23:59 +00:00
|
|
|
struct x86_cpuinit_ops x86_cpuinit = {
|
2012-02-07 14:52:44 +00:00
|
|
|
.early_percpu_clock_init = x86_init_noop,
|
2009-08-19 10:35:53 +00:00
|
|
|
.setup_percpu_clockev = setup_secondary_APIC_clock,
|
2009-08-19 12:48:38 +00:00
|
|
|
};
|
2009-08-20 15:06:25 +00:00
|
|
|
|
2010-02-26 16:49:12 +00:00
|
|
|
static void default_nmi_init(void) { };
|
2010-07-05 15:03:18 +00:00
|
|
|
static int default_i8042_detect(void) { return 1; };
|
2010-02-26 16:49:12 +00:00
|
|
|
|
2009-08-20 15:06:25 +00:00
|
|
|
struct x86_platform_ops x86_platform = {
|
|
|
|
.calibrate_tsc = native_calibrate_tsc,
|
2009-09-10 02:48:56 +00:00
|
|
|
.get_wallclock = mach_get_cmos_time,
|
|
|
|
.set_wallclock = mach_set_rtc_mmss,
|
2009-10-27 07:34:44 +00:00
|
|
|
.iommu_shutdown = iommu_shutdown_noop,
|
2009-11-23 22:46:07 +00:00
|
|
|
.is_untracked_pat_range = is_ISA_range,
|
2010-07-05 15:03:18 +00:00
|
|
|
.nmi_init = default_nmi_init,
|
2011-11-10 13:43:05 +00:00
|
|
|
.get_nmi_reason = default_get_nmi_reason,
|
2012-02-13 13:07:27 +00:00
|
|
|
.i8042_detect = default_i8042_detect,
|
|
|
|
.save_sched_clock_state = tsc_save_sched_clock_state,
|
|
|
|
.restore_sched_clock_state = tsc_restore_sched_clock_state,
|
2009-08-20 15:06:25 +00:00
|
|
|
};
|
2010-07-07 23:57:46 +00:00
|
|
|
|
|
|
|
EXPORT_SYMBOL_GPL(x86_platform);
|
2013-08-09 20:27:06 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_PCI_MSI)
|
2010-10-06 20:12:28 +00:00
|
|
|
struct x86_msi_ops x86_msi = {
|
2012-09-26 10:44:37 +00:00
|
|
|
.setup_msi_irqs = native_setup_msi_irqs,
|
|
|
|
.teardown_msi_irq = native_teardown_msi_irq,
|
|
|
|
.teardown_msi_irqs = default_teardown_msi_irqs,
|
|
|
|
.restore_msi_irqs = default_restore_msi_irqs,
|
2010-10-06 20:12:28 +00:00
|
|
|
};
|
2012-03-28 16:37:36 +00:00
|
|
|
|
2013-08-09 20:27:06 +00:00
|
|
|
/* MSI arch specific hooks */
|
|
|
|
int arch_setup_msi_irqs(struct pci_dev *dev, int nvec, int type)
|
|
|
|
{
|
|
|
|
return x86_msi.setup_msi_irqs(dev, nvec, type);
|
|
|
|
}
|
|
|
|
|
|
|
|
void arch_teardown_msi_irqs(struct pci_dev *dev)
|
|
|
|
{
|
|
|
|
x86_msi.teardown_msi_irqs(dev);
|
|
|
|
}
|
|
|
|
|
|
|
|
void arch_teardown_msi_irq(unsigned int irq)
|
|
|
|
{
|
|
|
|
x86_msi.teardown_msi_irq(irq);
|
|
|
|
}
|
|
|
|
|
2013-12-04 05:09:16 +00:00
|
|
|
void arch_restore_msi_irqs(struct pci_dev *dev)
|
2013-08-09 20:27:06 +00:00
|
|
|
{
|
2013-12-04 05:09:16 +00:00
|
|
|
x86_msi.restore_msi_irqs(dev);
|
2013-08-09 20:27:06 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-03-28 16:37:36 +00:00
|
|
|
struct x86_io_apic_ops x86_io_apic_ops = {
|
2012-09-26 10:44:35 +00:00
|
|
|
.read = native_io_apic_read,
|
|
|
|
.disable = native_disable_io_apic,
|
2012-03-28 16:37:36 +00:00
|
|
|
};
|