License cleanup: add SPDX GPL-2.0 license identifier to files with no license
Many source files in the tree are missing licensing information, which
makes it harder for compliance tools to determine the correct license.
By default all files without license information are under the default
license of the kernel, which is GPL version 2.
Update the files which contain no license information with the 'GPL-2.0'
SPDX license identifier. The SPDX identifier is a legally binding
shorthand, which can be used instead of the full boiler plate text.
This patch is based on work done by Thomas Gleixner and Kate Stewart and
Philippe Ombredanne.
How this work was done:
Patches were generated and checked against linux-4.14-rc6 for a subset of
the use cases:
- file had no licensing information it it.
- file was a */uapi/* one with no licensing information in it,
- file was a */uapi/* one with existing licensing information,
Further patches will be generated in subsequent months to fix up cases
where non-standard license headers were used, and references to license
had to be inferred by heuristics based on keywords.
The analysis to determine which SPDX License Identifier to be applied to
a file was done in a spreadsheet of side by side results from of the
output of two independent scanners (ScanCode & Windriver) producing SPDX
tag:value files created by Philippe Ombredanne. Philippe prepared the
base worksheet, and did an initial spot review of a few 1000 files.
The 4.13 kernel was the starting point of the analysis with 60,537 files
assessed. Kate Stewart did a file by file comparison of the scanner
results in the spreadsheet to determine which SPDX license identifier(s)
to be applied to the file. She confirmed any determination that was not
immediately clear with lawyers working with the Linux Foundation.
Criteria used to select files for SPDX license identifier tagging was:
- Files considered eligible had to be source code files.
- Make and config files were included as candidates if they contained >5
lines of source
- File already had some variant of a license header in it (even if <5
lines).
All documentation files were explicitly excluded.
The following heuristics were used to determine which SPDX license
identifiers to apply.
- when both scanners couldn't find any license traces, file was
considered to have no license information in it, and the top level
COPYING file license applied.
For non */uapi/* files that summary was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 11139
and resulted in the first patch in this series.
If that file was a */uapi/* path one, it was "GPL-2.0 WITH
Linux-syscall-note" otherwise it was "GPL-2.0". Results of that was:
SPDX license identifier # files
---------------------------------------------------|-------
GPL-2.0 WITH Linux-syscall-note 930
and resulted in the second patch in this series.
- if a file had some form of licensing information in it, and was one
of the */uapi/* ones, it was denoted with the Linux-syscall-note if
any GPL family license was found in the file or had no licensing in
it (per prior point). Results summary:
SPDX license identifier # files
---------------------------------------------------|------
GPL-2.0 WITH Linux-syscall-note 270
GPL-2.0+ WITH Linux-syscall-note 169
((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause) 21
((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 17
LGPL-2.1+ WITH Linux-syscall-note 15
GPL-1.0+ WITH Linux-syscall-note 14
((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause) 5
LGPL-2.0+ WITH Linux-syscall-note 4
LGPL-2.1 WITH Linux-syscall-note 3
((GPL-2.0 WITH Linux-syscall-note) OR MIT) 3
((GPL-2.0 WITH Linux-syscall-note) AND MIT) 1
and that resulted in the third patch in this series.
- when the two scanners agreed on the detected license(s), that became
the concluded license(s).
- when there was disagreement between the two scanners (one detected a
license but the other didn't, or they both detected different
licenses) a manual inspection of the file occurred.
- In most cases a manual inspection of the information in the file
resulted in a clear resolution of the license that should apply (and
which scanner probably needed to revisit its heuristics).
- When it was not immediately clear, the license identifier was
confirmed with lawyers working with the Linux Foundation.
- If there was any question as to the appropriate license identifier,
the file was flagged for further research and to be revisited later
in time.
In total, over 70 hours of logged manual review was done on the
spreadsheet to determine the SPDX license identifiers to apply to the
source files by Kate, Philippe, Thomas and, in some cases, confirmation
by lawyers working with the Linux Foundation.
Kate also obtained a third independent scan of the 4.13 code base from
FOSSology, and compared selected files where the other two scanners
disagreed against that SPDX file, to see if there was new insights. The
Windriver scanner is based on an older version of FOSSology in part, so
they are related.
Thomas did random spot checks in about 500 files from the spreadsheets
for the uapi headers and agreed with SPDX license identifier in the
files he inspected. For the non-uapi files Thomas did random spot checks
in about 15000 files.
In initial set of patches against 4.14-rc6, 3 files were found to have
copy/paste license identifier errors, and have been fixed to reflect the
correct identifier.
Additionally Philippe spent 10 hours this week doing a detailed manual
inspection and review of the 12,461 patched files from the initial patch
version early this week with:
- a full scancode scan run, collecting the matched texts, detected
license ids and scores
- reviewing anything where there was a license detected (about 500+
files) to ensure that the applied SPDX license was correct
- reviewing anything where there was no detection but the patch license
was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied
SPDX license was correct
This produced a worksheet with 20 files needing minor correction. This
worksheet was then exported into 3 different .csv files for the
different types of files to be modified.
These .csv files were then reviewed by Greg. Thomas wrote a script to
parse the csv files and add the proper SPDX tag to the file, in the
format that the file expected. This script was further refined by Greg
based on the output to detect more types of files automatically and to
distinguish between header and source .c files (which need different
comment types.) Finally Greg ran the script using the .csv files to
generate the patches.
Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org>
Reviewed-by: Philippe Ombredanne <pombredanne@nexb.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
2017-11-01 22:07:57 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2008-07-11 02:16:59 +08:00
|
|
|
#include <linux/threads.h>
|
|
|
|
#include <linux/cpumask.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/ctype.h>
|
2008-07-22 13:08:21 +08:00
|
|
|
#include <linux/dmar.h>
|
|
|
|
|
2008-07-11 02:16:59 +08:00
|
|
|
#include <asm/smp.h>
|
2017-09-14 05:29:16 +08:00
|
|
|
#include <asm/ipi.h>
|
|
|
|
#include "x2apic.h"
|
2008-07-11 02:16:59 +08:00
|
|
|
|
2009-02-22 06:23:21 +08:00
|
|
|
int x2apic_phys;
|
2008-07-22 13:08:21 +08:00
|
|
|
|
2011-05-21 08:51:20 +08:00
|
|
|
static struct apic apic_x2apic_phys;
|
|
|
|
|
2008-07-22 13:08:21 +08:00
|
|
|
static int set_x2apic_phys_mode(char *arg)
|
|
|
|
{
|
|
|
|
x2apic_phys = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
early_param("x2apic_phys", set_x2apic_phys_mode);
|
|
|
|
|
x86/apic: Work around boot failure on HP ProLiant DL980 G7 Server systems
When a HP ProLiant DL980 G7 Server boots a regular kernel,
there will be intermittent lost interrupts which could
result in a hang or (in extreme cases) data loss.
The reason is that this system only supports x2apic physical
mode, while the kernel boots with a logical-cluster default
setting.
This bug can be worked around by specifying the "x2apic_phys" or
"nox2apic" boot option, but we want to handle this system
without requiring manual workarounds.
The BIOS sets ACPI_FADT_APIC_PHYSICAL in FADT table.
As all apicids are smaller than 255, BIOS need to pass the
control to the OS with xapic mode, according to x2apic-spec,
chapter 2.9.
Current code handle x2apic when BIOS pass with xapic mode
enabled:
When user specifies x2apic_phys, or FADT indicates PHYSICAL:
1. During madt oem check, apic driver is set with xapic logical
or xapic phys driver at first.
2. enable_IR_x2apic() will enable x2apic_mode.
3. if user specifies x2apic_phys on the boot line, x2apic_phys_probe()
will install the correct x2apic phys driver and use x2apic phys mode.
Otherwise it will skip the driver will let x2apic_cluster_probe to
take over to install x2apic cluster driver (wrong one) even though FADT
indicates PHYSICAL, because x2apic_phys_probe does not check
FADT PHYSICAL.
Add checking x2apic_fadt_phys in x2apic_phys_probe() to fix the
problem.
Signed-off-by: Stoney Wang <song-bo.wang@hp.com>
[ updated the changelog and simplified the code ]
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: stable@kernel.org
Link: http://lkml.kernel.org/r/1360263182-16226-1-git-send-email-yinghai@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2013-02-08 02:53:02 +08:00
|
|
|
static bool x2apic_fadt_phys(void)
|
2008-07-22 13:08:21 +08:00
|
|
|
{
|
2015-05-04 23:58:00 +08:00
|
|
|
#ifdef CONFIG_ACPI
|
x86/apic: Work around boot failure on HP ProLiant DL980 G7 Server systems
When a HP ProLiant DL980 G7 Server boots a regular kernel,
there will be intermittent lost interrupts which could
result in a hang or (in extreme cases) data loss.
The reason is that this system only supports x2apic physical
mode, while the kernel boots with a logical-cluster default
setting.
This bug can be worked around by specifying the "x2apic_phys" or
"nox2apic" boot option, but we want to handle this system
without requiring manual workarounds.
The BIOS sets ACPI_FADT_APIC_PHYSICAL in FADT table.
As all apicids are smaller than 255, BIOS need to pass the
control to the OS with xapic mode, according to x2apic-spec,
chapter 2.9.
Current code handle x2apic when BIOS pass with xapic mode
enabled:
When user specifies x2apic_phys, or FADT indicates PHYSICAL:
1. During madt oem check, apic driver is set with xapic logical
or xapic phys driver at first.
2. enable_IR_x2apic() will enable x2apic_mode.
3. if user specifies x2apic_phys on the boot line, x2apic_phys_probe()
will install the correct x2apic phys driver and use x2apic phys mode.
Otherwise it will skip the driver will let x2apic_cluster_probe to
take over to install x2apic cluster driver (wrong one) even though FADT
indicates PHYSICAL, because x2apic_phys_probe does not check
FADT PHYSICAL.
Add checking x2apic_fadt_phys in x2apic_phys_probe() to fix the
problem.
Signed-off-by: Stoney Wang <song-bo.wang@hp.com>
[ updated the changelog and simplified the code ]
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: stable@kernel.org
Link: http://lkml.kernel.org/r/1360263182-16226-1-git-send-email-yinghai@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2013-02-08 02:53:02 +08:00
|
|
|
if ((acpi_gbl_FADT.header.revision >= FADT2_REVISION_ID) &&
|
|
|
|
(acpi_gbl_FADT.flags & ACPI_FADT_APIC_PHYSICAL)) {
|
2012-04-25 08:23:56 +08:00
|
|
|
printk(KERN_DEBUG "System requires x2apic physical mode\n");
|
x86/apic: Work around boot failure on HP ProLiant DL980 G7 Server systems
When a HP ProLiant DL980 G7 Server boots a regular kernel,
there will be intermittent lost interrupts which could
result in a hang or (in extreme cases) data loss.
The reason is that this system only supports x2apic physical
mode, while the kernel boots with a logical-cluster default
setting.
This bug can be worked around by specifying the "x2apic_phys" or
"nox2apic" boot option, but we want to handle this system
without requiring manual workarounds.
The BIOS sets ACPI_FADT_APIC_PHYSICAL in FADT table.
As all apicids are smaller than 255, BIOS need to pass the
control to the OS with xapic mode, according to x2apic-spec,
chapter 2.9.
Current code handle x2apic when BIOS pass with xapic mode
enabled:
When user specifies x2apic_phys, or FADT indicates PHYSICAL:
1. During madt oem check, apic driver is set with xapic logical
or xapic phys driver at first.
2. enable_IR_x2apic() will enable x2apic_mode.
3. if user specifies x2apic_phys on the boot line, x2apic_phys_probe()
will install the correct x2apic phys driver and use x2apic phys mode.
Otherwise it will skip the driver will let x2apic_cluster_probe to
take over to install x2apic cluster driver (wrong one) even though FADT
indicates PHYSICAL, because x2apic_phys_probe does not check
FADT PHYSICAL.
Add checking x2apic_fadt_phys in x2apic_phys_probe() to fix the
problem.
Signed-off-by: Stoney Wang <song-bo.wang@hp.com>
[ updated the changelog and simplified the code ]
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: stable@kernel.org
Link: http://lkml.kernel.org/r/1360263182-16226-1-git-send-email-yinghai@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2013-02-08 02:53:02 +08:00
|
|
|
return true;
|
2012-04-25 08:23:56 +08:00
|
|
|
}
|
2015-05-04 23:58:00 +08:00
|
|
|
#endif
|
x86/apic: Work around boot failure on HP ProLiant DL980 G7 Server systems
When a HP ProLiant DL980 G7 Server boots a regular kernel,
there will be intermittent lost interrupts which could
result in a hang or (in extreme cases) data loss.
The reason is that this system only supports x2apic physical
mode, while the kernel boots with a logical-cluster default
setting.
This bug can be worked around by specifying the "x2apic_phys" or
"nox2apic" boot option, but we want to handle this system
without requiring manual workarounds.
The BIOS sets ACPI_FADT_APIC_PHYSICAL in FADT table.
As all apicids are smaller than 255, BIOS need to pass the
control to the OS with xapic mode, according to x2apic-spec,
chapter 2.9.
Current code handle x2apic when BIOS pass with xapic mode
enabled:
When user specifies x2apic_phys, or FADT indicates PHYSICAL:
1. During madt oem check, apic driver is set with xapic logical
or xapic phys driver at first.
2. enable_IR_x2apic() will enable x2apic_mode.
3. if user specifies x2apic_phys on the boot line, x2apic_phys_probe()
will install the correct x2apic phys driver and use x2apic phys mode.
Otherwise it will skip the driver will let x2apic_cluster_probe to
take over to install x2apic cluster driver (wrong one) even though FADT
indicates PHYSICAL, because x2apic_phys_probe does not check
FADT PHYSICAL.
Add checking x2apic_fadt_phys in x2apic_phys_probe() to fix the
problem.
Signed-off-by: Stoney Wang <song-bo.wang@hp.com>
[ updated the changelog and simplified the code ]
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: stable@kernel.org
Link: http://lkml.kernel.org/r/1360263182-16226-1-git-send-email-yinghai@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2013-02-08 02:53:02 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int x2apic_acpi_madt_oem_check(char *oem_id, char *oem_table_id)
|
|
|
|
{
|
|
|
|
return x2apic_enabled() && (x2apic_phys || x2apic_fadt_phys());
|
2008-07-22 13:08:21 +08:00
|
|
|
}
|
2008-07-11 02:16:59 +08:00
|
|
|
|
2015-11-05 06:57:04 +08:00
|
|
|
static void x2apic_send_IPI(int cpu, int vector)
|
|
|
|
{
|
|
|
|
u32 dest = per_cpu(x86_cpu_to_apicid, cpu);
|
|
|
|
|
|
|
|
x2apic_wrmsr_fence();
|
|
|
|
__x2apic_send_IPI_dest(dest, vector, APIC_DEST_PHYSICAL);
|
|
|
|
}
|
|
|
|
|
2011-05-20 07:45:47 +08:00
|
|
|
static void
|
|
|
|
__x2apic_send_IPI_mask(const struct cpumask *mask, int vector, int apic_dest)
|
2008-07-11 02:16:59 +08:00
|
|
|
{
|
|
|
|
unsigned long query_cpu;
|
2011-05-20 07:45:47 +08:00
|
|
|
unsigned long this_cpu;
|
2009-01-28 22:42:24 +08:00
|
|
|
unsigned long flags;
|
2008-07-11 02:16:59 +08:00
|
|
|
|
2009-03-18 02:16:54 +08:00
|
|
|
x2apic_wrmsr_fence();
|
|
|
|
|
2008-07-11 02:16:59 +08:00
|
|
|
local_irq_save(flags);
|
2011-05-20 07:45:47 +08:00
|
|
|
|
|
|
|
this_cpu = smp_processor_id();
|
2008-12-17 09:33:59 +08:00
|
|
|
for_each_cpu(query_cpu, mask) {
|
2011-05-20 07:45:47 +08:00
|
|
|
if (apic_dest == APIC_DEST_ALLBUT && this_cpu == query_cpu)
|
|
|
|
continue;
|
2008-07-11 02:16:59 +08:00
|
|
|
__x2apic_send_IPI_dest(per_cpu(x86_cpu_to_apicid, query_cpu),
|
|
|
|
vector, APIC_DEST_PHYSICAL);
|
|
|
|
}
|
|
|
|
local_irq_restore(flags);
|
|
|
|
}
|
|
|
|
|
2011-05-20 07:45:47 +08:00
|
|
|
static void x2apic_send_IPI_mask(const struct cpumask *mask, int vector)
|
|
|
|
{
|
|
|
|
__x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLINC);
|
|
|
|
}
|
|
|
|
|
2009-01-28 22:42:24 +08:00
|
|
|
static void
|
|
|
|
x2apic_send_IPI_mask_allbutself(const struct cpumask *mask, int vector)
|
2008-07-11 02:16:59 +08:00
|
|
|
{
|
2011-05-20 07:45:47 +08:00
|
|
|
__x2apic_send_IPI_mask(mask, vector, APIC_DEST_ALLBUT);
|
2008-12-17 09:33:52 +08:00
|
|
|
}
|
2008-07-11 02:16:59 +08:00
|
|
|
|
2008-12-17 09:33:52 +08:00
|
|
|
static void x2apic_send_IPI_allbutself(int vector)
|
|
|
|
{
|
2011-05-20 07:45:47 +08:00
|
|
|
__x2apic_send_IPI_mask(cpu_online_mask, vector, APIC_DEST_ALLBUT);
|
2008-07-11 02:16:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void x2apic_send_IPI_all(int vector)
|
|
|
|
{
|
2011-05-20 07:45:47 +08:00
|
|
|
__x2apic_send_IPI_mask(cpu_online_mask, vector, APIC_DEST_ALLINC);
|
2008-07-11 02:16:59 +08:00
|
|
|
}
|
|
|
|
|
2008-12-30 00:41:40 +08:00
|
|
|
static void init_x2apic_ldr(void)
|
2008-07-11 02:16:59 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-05-20 07:45:46 +08:00
|
|
|
static int x2apic_phys_probe(void)
|
|
|
|
{
|
x86/apic: Work around boot failure on HP ProLiant DL980 G7 Server systems
When a HP ProLiant DL980 G7 Server boots a regular kernel,
there will be intermittent lost interrupts which could
result in a hang or (in extreme cases) data loss.
The reason is that this system only supports x2apic physical
mode, while the kernel boots with a logical-cluster default
setting.
This bug can be worked around by specifying the "x2apic_phys" or
"nox2apic" boot option, but we want to handle this system
without requiring manual workarounds.
The BIOS sets ACPI_FADT_APIC_PHYSICAL in FADT table.
As all apicids are smaller than 255, BIOS need to pass the
control to the OS with xapic mode, according to x2apic-spec,
chapter 2.9.
Current code handle x2apic when BIOS pass with xapic mode
enabled:
When user specifies x2apic_phys, or FADT indicates PHYSICAL:
1. During madt oem check, apic driver is set with xapic logical
or xapic phys driver at first.
2. enable_IR_x2apic() will enable x2apic_mode.
3. if user specifies x2apic_phys on the boot line, x2apic_phys_probe()
will install the correct x2apic phys driver and use x2apic phys mode.
Otherwise it will skip the driver will let x2apic_cluster_probe to
take over to install x2apic cluster driver (wrong one) even though FADT
indicates PHYSICAL, because x2apic_phys_probe does not check
FADT PHYSICAL.
Add checking x2apic_fadt_phys in x2apic_phys_probe() to fix the
problem.
Signed-off-by: Stoney Wang <song-bo.wang@hp.com>
[ updated the changelog and simplified the code ]
Signed-off-by: Yinghai Lu <yinghai@kernel.org>
Cc: stable@kernel.org
Link: http://lkml.kernel.org/r/1360263182-16226-1-git-send-email-yinghai@kernel.org
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2013-02-08 02:53:02 +08:00
|
|
|
if (x2apic_mode && (x2apic_phys || x2apic_fadt_phys()))
|
2011-05-20 07:45:46 +08:00
|
|
|
return 1;
|
|
|
|
|
|
|
|
return apic == &apic_x2apic_phys;
|
|
|
|
}
|
|
|
|
|
2017-09-14 05:29:16 +08:00
|
|
|
/* Common x2apic functions, also used by x2apic_cluster */
|
|
|
|
int x2apic_apic_id_valid(int apicid)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int x2apic_apic_id_registered(void)
|
|
|
|
{
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __x2apic_send_IPI_dest(unsigned int apicid, int vector, unsigned int dest)
|
|
|
|
{
|
|
|
|
unsigned long cfg = __prepare_ICR(0, vector, dest);
|
|
|
|
native_x2apic_icr_write(cfg, apicid);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int x2apic_get_apic_id(unsigned long id)
|
|
|
|
{
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
2017-09-14 05:29:17 +08:00
|
|
|
u32 x2apic_set_apic_id(unsigned int id)
|
2017-09-14 05:29:16 +08:00
|
|
|
{
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
int x2apic_phys_pkg_id(int initial_apicid, int index_msb)
|
|
|
|
{
|
|
|
|
return initial_apicid >> index_msb;
|
|
|
|
}
|
|
|
|
|
|
|
|
void x2apic_send_IPI_self(int vector)
|
|
|
|
{
|
|
|
|
apic_write(APIC_SELF_IPI, vector);
|
|
|
|
}
|
|
|
|
|
2016-08-09 07:29:06 +08:00
|
|
|
static struct apic apic_x2apic_phys __ro_after_init = {
|
2009-01-28 09:37:01 +08:00
|
|
|
|
|
|
|
.name = "physical x2apic",
|
2011-05-20 07:45:46 +08:00
|
|
|
.probe = x2apic_phys_probe,
|
2009-01-28 09:37:01 +08:00
|
|
|
.acpi_madt_oem_check = x2apic_acpi_madt_oem_check,
|
2012-03-17 03:25:35 +08:00
|
|
|
.apic_id_valid = x2apic_apic_id_valid,
|
2009-01-28 09:37:01 +08:00
|
|
|
.apic_id_registered = x2apic_apic_id_registered,
|
|
|
|
|
2009-01-28 11:02:31 +08:00
|
|
|
.irq_delivery_mode = dest_Fixed,
|
2009-01-28 12:13:04 +08:00
|
|
|
.irq_dest_mode = 0, /* physical */
|
2009-01-28 09:37:01 +08:00
|
|
|
|
2009-01-28 12:08:44 +08:00
|
|
|
.disable_esr = 0,
|
2009-01-28 12:29:25 +08:00
|
|
|
.dest_logical = 0,
|
2009-01-28 09:37:01 +08:00
|
|
|
.check_apicid_used = NULL,
|
|
|
|
|
|
|
|
.init_apic_ldr = init_x2apic_ldr,
|
|
|
|
|
|
|
|
.ioapic_phys_id_map = NULL,
|
|
|
|
.setup_apic_routing = NULL,
|
2009-01-28 13:50:47 +08:00
|
|
|
.cpu_present_to_apicid = default_cpu_present_to_apicid,
|
2009-01-28 09:37:01 +08:00
|
|
|
.apicid_to_cpu_present = NULL,
|
2009-01-28 19:43:18 +08:00
|
|
|
.check_phys_apicid_present = default_check_phys_apicid_present,
|
2009-01-28 20:31:22 +08:00
|
|
|
.phys_pkg_id = x2apic_phys_pkg_id,
|
2009-01-28 09:37:01 +08:00
|
|
|
|
2011-05-20 07:45:50 +08:00
|
|
|
.get_apic_id = x2apic_get_apic_id,
|
|
|
|
.set_apic_id = x2apic_set_apic_id,
|
2009-01-28 09:37:01 +08:00
|
|
|
|
2017-09-14 05:29:37 +08:00
|
|
|
.calc_dest_apicid = apic_default_calc_apicid,
|
2009-01-28 09:37:01 +08:00
|
|
|
|
2015-11-05 06:57:04 +08:00
|
|
|
.send_IPI = x2apic_send_IPI,
|
2009-01-28 09:37:01 +08:00
|
|
|
.send_IPI_mask = x2apic_send_IPI_mask,
|
|
|
|
.send_IPI_mask_allbutself = x2apic_send_IPI_mask_allbutself,
|
|
|
|
.send_IPI_allbutself = x2apic_send_IPI_allbutself,
|
|
|
|
.send_IPI_all = x2apic_send_IPI_all,
|
|
|
|
.send_IPI_self = x2apic_send_IPI_self,
|
|
|
|
|
|
|
|
.inquire_remote_apic = NULL,
|
2009-02-17 15:02:14 +08:00
|
|
|
|
|
|
|
.read = native_apic_msr_read,
|
|
|
|
.write = native_apic_msr_write,
|
2012-05-17 00:03:58 +08:00
|
|
|
.eoi_write = native_apic_msr_eoi_write,
|
2009-02-17 15:02:14 +08:00
|
|
|
.icr_read = native_x2apic_icr_read,
|
|
|
|
.icr_write = native_x2apic_icr_write,
|
|
|
|
.wait_icr_idle = native_x2apic_wait_icr_idle,
|
|
|
|
.safe_wait_icr_idle = native_safe_x2apic_wait_icr_idle,
|
2008-07-11 02:16:59 +08:00
|
|
|
};
|
2011-05-21 08:51:17 +08:00
|
|
|
|
|
|
|
apic_driver(apic_x2apic_phys);
|