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 17:07:57 +03:00
|
|
|
// SPDX-License-Identifier: GPL-2.0
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* Architecture-specific setup.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1998-2001, 2003-2004 Hewlett-Packard Co
|
|
|
|
* David Mosberger-Tang <davidm@hpl.hp.com>
|
|
|
|
* Stephane Eranian <eranian@hpl.hp.com>
|
2005-04-26 00:25:06 +04:00
|
|
|
* Copyright (C) 2000, 2004 Intel Corp
|
|
|
|
* Rohit Seth <rohit.seth@intel.com>
|
|
|
|
* Suresh Siddha <suresh.b.siddha@intel.com>
|
|
|
|
* Gordon Jin <gordon.jin@intel.com>
|
2005-04-17 02:20:36 +04:00
|
|
|
* Copyright (C) 1999 VA Linux Systems
|
|
|
|
* Copyright (C) 1999 Walt Drummond <drummond@valinux.com>
|
|
|
|
*
|
2005-04-26 00:25:06 +04:00
|
|
|
* 12/26/04 S.Siddha, G.Jin, R.Seth
|
|
|
|
* Add multi-threading and multi-core detection
|
2005-04-17 02:20:36 +04:00
|
|
|
* 11/12/01 D.Mosberger Convert get_cpuinfo() to seq_file based show_cpuinfo().
|
|
|
|
* 04/04/00 D.Mosberger renamed cpu_initialized to cpu_online_map
|
|
|
|
* 03/31/00 R.Seth cpu_initialized and current->processor fixes
|
|
|
|
* 02/04/00 D.Mosberger some more get_cpuinfo fixes...
|
|
|
|
* 02/01/00 R.Seth fixed get_cpuinfo for SMP
|
|
|
|
* 01/07/99 S.Eranian added the support for command line argument
|
|
|
|
* 06/24/99 W.Drummond added boot_cpu_data.
|
2005-06-03 16:36:00 +04:00
|
|
|
* 05/28/05 Z. Menyhart Dynamic stride size for "flush_icache_range()"
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
|
|
|
|
#include <linux/acpi.h>
|
|
|
|
#include <linux/bootmem.h>
|
|
|
|
#include <linux/console.h>
|
|
|
|
#include <linux/delay.h>
|
2017-02-05 16:47:12 +03:00
|
|
|
#include <linux/cpu.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <linux/kernel.h>
|
2018-07-23 08:56:58 +03:00
|
|
|
#include <linux/memblock.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <linux/reboot.h>
|
2017-02-01 21:08:20 +03:00
|
|
|
#include <linux/sched/mm.h>
|
2017-02-01 18:36:40 +03:00
|
|
|
#include <linux/sched/clock.h>
|
2017-02-08 20:51:37 +03:00
|
|
|
#include <linux/sched/task_stack.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <linux/seq_file.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/threads.h>
|
2006-07-10 15:44:13 +04:00
|
|
|
#include <linux/screen_info.h>
|
[PATCH] ia64: use i386 dmi_scan.c
Enable DMI table parsing on ia64.
Andi Kleen has a patch in his x86_64 tree which enables the use of i386
dmi_scan.c on x86_64. dmi_scan.c functions are being used by the
drivers/char/ipmi/ipmi_si_intf.c driver for autodetecting the ports or
memory spaces where the IPMI controllers may be found.
This patch adds equivalent changes for ia64 as to what is in the x86_64
tree. In addition, I reworked the DMI detection, such that on EFI-capable
systems, it uses the efi.smbios pointer to find the table, rather than
brute-force searching from 0xF0000. On non-EFI systems, it continues the
brute-force search.
My test system, an Intel S870BN4 'Tiger4', aka Dell PowerEdge 7250, with
latest BIOS, does not list the IPMI controller in the ACPI namespace, nor
does it have an ACPI SPMI table. Also note, currently shipping Dell x8xx
EM64T servers don't have these either, so DMI is the only method for
obtaining the address of the IPMI controller.
Signed-off-by: Matt Domsch <Matt_Domsch@dell.com>
Acked-by: "Luck, Tony" <tony.luck@intel.com>
Cc: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-26 13:37:03 +04:00
|
|
|
#include <linux/dmi.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <linux/serial.h>
|
|
|
|
#include <linux/serial_core.h>
|
|
|
|
#include <linux/efi.h>
|
|
|
|
#include <linux/initrd.h>
|
2005-04-19 07:06:47 +04:00
|
|
|
#include <linux/pm.h>
|
2005-12-02 21:43:20 +03:00
|
|
|
#include <linux/cpufreq.h>
|
2006-12-07 20:51:35 +03:00
|
|
|
#include <linux/kexec.h>
|
|
|
|
#include <linux/crash_dump.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#include <asm/machvec.h>
|
|
|
|
#include <asm/mca.h>
|
|
|
|
#include <asm/meminit.h>
|
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/patch.h>
|
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/sal.h>
|
|
|
|
#include <asm/sections.h>
|
|
|
|
#include <asm/setup.h>
|
|
|
|
#include <asm/smp.h>
|
2008-04-04 22:05:59 +04:00
|
|
|
#include <asm/tlbflush.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
#include <asm/unistd.h>
|
2007-08-21 07:51:45 +04:00
|
|
|
#include <asm/hpsim.h>
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#if defined(CONFIG_SMP) && (IA64_CPU_SIZE > PAGE_SIZE)
|
|
|
|
# error "struct cpuinfo_ia64 too big!"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
unsigned long __per_cpu_offset[NR_CPUS];
|
|
|
|
EXPORT_SYMBOL(__per_cpu_offset);
|
|
|
|
#endif
|
|
|
|
|
2009-10-29 16:34:14 +03:00
|
|
|
DEFINE_PER_CPU(struct cpuinfo_ia64, ia64_cpu_info);
|
2016-01-17 09:13:41 +03:00
|
|
|
EXPORT_SYMBOL(ia64_cpu_info);
|
2005-04-17 02:20:36 +04:00
|
|
|
DEFINE_PER_CPU(unsigned long, local_per_cpu_offset);
|
2016-01-17 09:13:41 +03:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
EXPORT_SYMBOL(local_per_cpu_offset);
|
|
|
|
#endif
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned long ia64_cycles_per_usec;
|
|
|
|
struct ia64_boot_param *ia64_boot_param;
|
|
|
|
struct screen_info screen_info;
|
2005-04-26 00:51:00 +04:00
|
|
|
unsigned long vga_console_iobase;
|
|
|
|
unsigned long vga_console_membase;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-09-20 02:42:36 +04:00
|
|
|
static struct resource data_resource = {
|
|
|
|
.name = "Kernel data",
|
2016-01-26 23:57:21 +03:00
|
|
|
.flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
|
2005-09-20 02:42:36 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
static struct resource code_resource = {
|
|
|
|
.name = "Kernel code",
|
2016-01-26 23:57:21 +03:00
|
|
|
.flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
|
2005-09-20 02:42:36 +04:00
|
|
|
};
|
2007-10-22 03:42:01 +04:00
|
|
|
|
|
|
|
static struct resource bss_resource = {
|
|
|
|
.name = "Kernel bss",
|
2016-01-26 23:57:21 +03:00
|
|
|
.flags = IORESOURCE_BUSY | IORESOURCE_SYSTEM_RAM
|
2007-10-22 03:42:01 +04:00
|
|
|
};
|
2005-09-20 02:42:36 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned long ia64_max_cacheline_size;
|
2005-11-07 11:57:54 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned long ia64_iobase; /* virtual address for I/O accesses */
|
|
|
|
EXPORT_SYMBOL(ia64_iobase);
|
|
|
|
struct io_space io_space[MAX_IO_SPACES];
|
|
|
|
EXPORT_SYMBOL(io_space);
|
|
|
|
unsigned int num_io_spaces;
|
|
|
|
|
2005-06-03 16:36:00 +04:00
|
|
|
/*
|
|
|
|
* "flush_icache_range()" needs to know what processor dependent stride size to use
|
|
|
|
* when it makes i-cache(s) coherent with d-caches.
|
|
|
|
*/
|
|
|
|
#define I_CACHE_STRIDE_SHIFT 5 /* Safest way to go: 32 bytes by 32 bytes */
|
|
|
|
unsigned long ia64_i_cache_stride_shift = ~0;
|
2008-10-17 23:14:13 +04:00
|
|
|
/*
|
|
|
|
* "clflush_cache_range()" needs to know what processor dependent stride size to
|
|
|
|
* use when it flushes cache lines including both d-cache and i-cache.
|
|
|
|
*/
|
|
|
|
/* Safest way to go: 32 bytes by 32 bytes */
|
|
|
|
#define CACHE_STRIDE_SHIFT 5
|
|
|
|
unsigned long ia64_cache_stride_shift = ~0;
|
2005-06-03 16:36:00 +04:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/*
|
|
|
|
* We use a special marker for the end of memory and it uses the extra (+1) slot
|
|
|
|
*/
|
2006-03-23 03:54:15 +03:00
|
|
|
struct rsvd_region rsvd_region[IA64_MAX_RSVD_REGIONS + 1] __initdata;
|
|
|
|
int num_rsvd_regions __initdata;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Filter incoming memory segments based on the primitive map created from the boot
|
|
|
|
* parameters. Segments contained in the map are removed from the memory ranges. A
|
|
|
|
* caller-specified function is called with the memory ranges that remain after filtering.
|
|
|
|
* This routine does not assume the incoming segments are sorted.
|
|
|
|
*/
|
2006-03-23 03:54:15 +03:00
|
|
|
int __init
|
2009-05-23 00:49:49 +04:00
|
|
|
filter_rsvd_memory (u64 start, u64 end, void *arg)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
2009-05-23 00:49:49 +04:00
|
|
|
u64 range_start, range_end, prev_start;
|
2005-04-17 02:20:36 +04:00
|
|
|
void (*func)(unsigned long, unsigned long, int);
|
|
|
|
int i;
|
|
|
|
|
|
|
|
#if IGNORE_PFN0
|
|
|
|
if (start == PAGE_OFFSET) {
|
|
|
|
printk(KERN_WARNING "warning: skipping physical page 0\n");
|
|
|
|
start += PAGE_SIZE;
|
|
|
|
if (start >= end) return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
/*
|
|
|
|
* lowest possible address(walker uses virtual)
|
|
|
|
*/
|
|
|
|
prev_start = PAGE_OFFSET;
|
|
|
|
func = arg;
|
|
|
|
|
|
|
|
for (i = 0; i < num_rsvd_regions; ++i) {
|
|
|
|
range_start = max(start, prev_start);
|
|
|
|
range_end = min(end, rsvd_region[i].start);
|
|
|
|
|
|
|
|
if (range_start < range_end)
|
|
|
|
call_pernode_memory(__pa(range_start), range_end - range_start, func);
|
|
|
|
|
|
|
|
/* nothing more available in this segment */
|
|
|
|
if (range_end == end) return 0;
|
|
|
|
|
|
|
|
prev_start = rsvd_region[i].end;
|
|
|
|
}
|
|
|
|
/* end of memory marker allows full processing inside loop body */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2008-04-12 02:21:35 +04:00
|
|
|
/*
|
|
|
|
* Similar to "filter_rsvd_memory()", but the reserved memory ranges
|
|
|
|
* are not filtered out.
|
|
|
|
*/
|
|
|
|
int __init
|
2009-05-23 00:49:49 +04:00
|
|
|
filter_memory(u64 start, u64 end, void *arg)
|
2008-04-12 02:21:35 +04:00
|
|
|
{
|
|
|
|
void (*func)(unsigned long, unsigned long, int);
|
|
|
|
|
|
|
|
#if IGNORE_PFN0
|
|
|
|
if (start == PAGE_OFFSET) {
|
|
|
|
printk(KERN_WARNING "warning: skipping physical page 0\n");
|
|
|
|
start += PAGE_SIZE;
|
|
|
|
if (start >= end)
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
func = arg;
|
|
|
|
if (start < end)
|
|
|
|
call_pernode_memory(__pa(start), end - start, func);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-03-23 03:54:15 +03:00
|
|
|
static void __init
|
2005-04-17 02:20:36 +04:00
|
|
|
sort_regions (struct rsvd_region *rsvd_region, int max)
|
|
|
|
{
|
|
|
|
int j;
|
|
|
|
|
|
|
|
/* simple bubble sorting */
|
|
|
|
while (max--) {
|
|
|
|
for (j = 0; j < max; ++j) {
|
|
|
|
if (rsvd_region[j].start > rsvd_region[j+1].start) {
|
|
|
|
struct rsvd_region tmp;
|
|
|
|
tmp = rsvd_region[j];
|
|
|
|
rsvd_region[j] = rsvd_region[j + 1];
|
|
|
|
rsvd_region[j + 1] = tmp;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-11-29 18:01:51 +04:00
|
|
|
/* merge overlaps */
|
|
|
|
static int __init
|
|
|
|
merge_regions (struct rsvd_region *rsvd_region, int max)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
for (i = 1; i < max; ++i) {
|
|
|
|
if (rsvd_region[i].start >= rsvd_region[i-1].end)
|
|
|
|
continue;
|
|
|
|
if (rsvd_region[i].end > rsvd_region[i-1].end)
|
|
|
|
rsvd_region[i-1].end = rsvd_region[i].end;
|
|
|
|
--max;
|
|
|
|
memmove(&rsvd_region[i], &rsvd_region[i+1],
|
|
|
|
(max - i) * sizeof(struct rsvd_region));
|
|
|
|
}
|
|
|
|
return max;
|
|
|
|
}
|
|
|
|
|
2005-09-20 02:42:36 +04:00
|
|
|
/*
|
|
|
|
* Request address space for all standard resources
|
|
|
|
*/
|
|
|
|
static int __init register_memory(void)
|
|
|
|
{
|
|
|
|
code_resource.start = ia64_tpa(_text);
|
|
|
|
code_resource.end = ia64_tpa(_etext) - 1;
|
|
|
|
data_resource.start = ia64_tpa(_etext);
|
2007-10-22 03:42:01 +04:00
|
|
|
data_resource.end = ia64_tpa(_edata) - 1;
|
2007-11-22 01:58:25 +03:00
|
|
|
bss_resource.start = ia64_tpa(__bss_start);
|
2007-10-22 03:42:01 +04:00
|
|
|
bss_resource.end = ia64_tpa(_end) - 1;
|
|
|
|
efi_initialize_iomem_resources(&code_resource, &data_resource,
|
|
|
|
&bss_resource);
|
2005-09-20 02:42:36 +04:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
__initcall(register_memory);
|
|
|
|
|
2007-10-19 10:41:00 +04:00
|
|
|
|
|
|
|
#ifdef CONFIG_KEXEC
|
[IA64] Don't reserve crashkernel memory > 4 GB
Some IA64 machines map all cell-local memory above 4 GB (32 bit limit).
However, in most cases, the kernel needs some memory below that limit that is
DMA-capable. So in this machine configuration, the crashkernel will be reserved
above 4 GB.
For machines that use SWIOTLB implementation because they lack an I/O MMU
the low memory is required by the SWIOTLB implementation. In that case,
it doesn't make sense to reserve the crashkernel at all because it's unusable
for kdump.
A special case is the "hpzx1" machine vector. In theory, it has a I/O MMU, so
it can be booted above 4 GB. However, in the kdump case that is not possible
because of changeset 51b58e3e26ebfb8cd56825c4b396ed251f51dec9:
On HP zx1 machines, the 'machvec=dig' parameter is needed for the kdump
kernel to avoid problems with the HP sba iommu. The problem is that during
the boot of the kdump kernel, the iommu is re-initialized, so in-flight DMA
from improperly shutdown drivers causes an IOTLB miss which leads to an
MCA. With kdump, the idea is to get into the kdump kernel with as little
code as we can, so shutting down drivers properly is not an option.
The workaround is to add 'machvec=dig' to the kdump kernel boot parameters.
This makes the kdump kernel avoid using the sba iommu altogether, leaving
the IOTLB intact. Any ongoing DMA falls harmlessly outside the kdump
kernel. After the kdump kernel reboots, all devices will have been
shutdown properly and DMA stopped.
This patch pushes that functionality into the sba iommu initialization
code, so that users won't have to find the obscure documentation telling
them about 'machvec=dig'.
This means that also for hpzx1 it's not possible to boot when all
memory is above the 4 GB limit. So the only machine vectors that can handle
this case are "sn2" and "uv".
Signed-off-by: Bernhard Walle <bwalle@suse.de>
Signed-off-by: Tony Luck <tony.luck@intel.com>
2008-05-15 02:40:40 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This function checks if the reserved crashkernel is allowed on the specific
|
|
|
|
* IA64 machine flavour. Machines without an IO TLB use swiotlb and require
|
|
|
|
* some memory below 4 GB (i.e. in 32 bit area), see the implementation of
|
|
|
|
* lib/swiotlb.c. The hpzx1 architecture has an IO TLB but cannot use that
|
|
|
|
* in kdump case. See the comment in sba_init() in sba_iommu.c.
|
|
|
|
*
|
|
|
|
* So, the only machvec that really supports loading the kdump kernel
|
|
|
|
* over 4 GB is "sn2".
|
|
|
|
*/
|
|
|
|
static int __init check_crashkernel_memory(unsigned long pbase, size_t size)
|
|
|
|
{
|
|
|
|
if (ia64_platform_is("sn2") || ia64_platform_is("uv"))
|
|
|
|
return 1;
|
|
|
|
else
|
|
|
|
return pbase < (1UL << 32);
|
|
|
|
}
|
|
|
|
|
2007-10-19 10:41:00 +04:00
|
|
|
static void __init setup_crashkernel(unsigned long total, int *n)
|
|
|
|
{
|
|
|
|
unsigned long long base = 0, size = 0;
|
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = parse_crashkernel(boot_command_line, total,
|
|
|
|
&size, &base);
|
|
|
|
if (ret == 0 && size > 0) {
|
|
|
|
if (!base) {
|
|
|
|
sort_regions(rsvd_region, *n);
|
2011-11-29 18:01:51 +04:00
|
|
|
*n = merge_regions(rsvd_region, *n);
|
2007-10-19 10:41:00 +04:00
|
|
|
base = kdump_find_rsvd_region(size,
|
|
|
|
rsvd_region, *n);
|
|
|
|
}
|
[IA64] Don't reserve crashkernel memory > 4 GB
Some IA64 machines map all cell-local memory above 4 GB (32 bit limit).
However, in most cases, the kernel needs some memory below that limit that is
DMA-capable. So in this machine configuration, the crashkernel will be reserved
above 4 GB.
For machines that use SWIOTLB implementation because they lack an I/O MMU
the low memory is required by the SWIOTLB implementation. In that case,
it doesn't make sense to reserve the crashkernel at all because it's unusable
for kdump.
A special case is the "hpzx1" machine vector. In theory, it has a I/O MMU, so
it can be booted above 4 GB. However, in the kdump case that is not possible
because of changeset 51b58e3e26ebfb8cd56825c4b396ed251f51dec9:
On HP zx1 machines, the 'machvec=dig' parameter is needed for the kdump
kernel to avoid problems with the HP sba iommu. The problem is that during
the boot of the kdump kernel, the iommu is re-initialized, so in-flight DMA
from improperly shutdown drivers causes an IOTLB miss which leads to an
MCA. With kdump, the idea is to get into the kdump kernel with as little
code as we can, so shutting down drivers properly is not an option.
The workaround is to add 'machvec=dig' to the kdump kernel boot parameters.
This makes the kdump kernel avoid using the sba iommu altogether, leaving
the IOTLB intact. Any ongoing DMA falls harmlessly outside the kdump
kernel. After the kdump kernel reboots, all devices will have been
shutdown properly and DMA stopped.
This patch pushes that functionality into the sba iommu initialization
code, so that users won't have to find the obscure documentation telling
them about 'machvec=dig'.
This means that also for hpzx1 it's not possible to boot when all
memory is above the 4 GB limit. So the only machine vectors that can handle
this case are "sn2" and "uv".
Signed-off-by: Bernhard Walle <bwalle@suse.de>
Signed-off-by: Tony Luck <tony.luck@intel.com>
2008-05-15 02:40:40 +04:00
|
|
|
|
|
|
|
if (!check_crashkernel_memory(base, size)) {
|
|
|
|
pr_warning("crashkernel: There would be kdump memory "
|
|
|
|
"at %ld GB but this is unusable because it "
|
|
|
|
"must\nbe below 4 GB. Change the memory "
|
|
|
|
"configuration of the machine.\n",
|
|
|
|
(unsigned long)(base >> 30));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2007-10-19 10:41:00 +04:00
|
|
|
if (base != ~0UL) {
|
|
|
|
printk(KERN_INFO "Reserving %ldMB of memory at %ldMB "
|
|
|
|
"for crashkernel (System RAM: %ldMB)\n",
|
|
|
|
(unsigned long)(size >> 20),
|
|
|
|
(unsigned long)(base >> 20),
|
|
|
|
(unsigned long)(total >> 20));
|
|
|
|
rsvd_region[*n].start =
|
|
|
|
(unsigned long)__va(base);
|
|
|
|
rsvd_region[*n].end =
|
|
|
|
(unsigned long)__va(base + size);
|
|
|
|
(*n)++;
|
|
|
|
crashk_res.start = base;
|
|
|
|
crashk_res.end = base + size - 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
efi_memmap_res.start = ia64_boot_param->efi_memmap;
|
|
|
|
efi_memmap_res.end = efi_memmap_res.start +
|
|
|
|
ia64_boot_param->efi_memmap_size;
|
|
|
|
boot_param_res.start = __pa(ia64_boot_param);
|
|
|
|
boot_param_res.end = boot_param_res.start +
|
|
|
|
sizeof(*ia64_boot_param);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static inline void __init setup_crashkernel(unsigned long total, int *n)
|
|
|
|
{}
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/**
|
|
|
|
* reserve_memory - setup reserved memory areas
|
|
|
|
*
|
|
|
|
* Setup the reserved memory areas set aside for the boot parameters,
|
|
|
|
* initrd, etc. There are currently %IA64_MAX_RSVD_REGIONS defined,
|
2008-08-01 21:13:32 +04:00
|
|
|
* see arch/ia64/include/asm/meminit.h if you need to define more.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
2006-03-23 03:54:15 +03:00
|
|
|
void __init
|
2005-04-17 02:20:36 +04:00
|
|
|
reserve_memory (void)
|
|
|
|
{
|
|
|
|
int n = 0;
|
2007-10-19 10:41:00 +04:00
|
|
|
unsigned long total_memory;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* none of the entries in this table overlap
|
|
|
|
*/
|
|
|
|
rsvd_region[n].start = (unsigned long) ia64_boot_param;
|
|
|
|
rsvd_region[n].end = rsvd_region[n].start + sizeof(*ia64_boot_param);
|
|
|
|
n++;
|
|
|
|
|
|
|
|
rsvd_region[n].start = (unsigned long) __va(ia64_boot_param->efi_memmap);
|
|
|
|
rsvd_region[n].end = rsvd_region[n].start + ia64_boot_param->efi_memmap_size;
|
|
|
|
n++;
|
|
|
|
|
|
|
|
rsvd_region[n].start = (unsigned long) __va(ia64_boot_param->command_line);
|
|
|
|
rsvd_region[n].end = (rsvd_region[n].start
|
|
|
|
+ strlen(__va(ia64_boot_param->command_line)) + 1);
|
|
|
|
n++;
|
|
|
|
|
|
|
|
rsvd_region[n].start = (unsigned long) ia64_imva((void *)KERNEL_START);
|
|
|
|
rsvd_region[n].end = (unsigned long) ia64_imva(_end);
|
|
|
|
n++;
|
|
|
|
|
|
|
|
#ifdef CONFIG_BLK_DEV_INITRD
|
|
|
|
if (ia64_boot_param->initrd_start) {
|
|
|
|
rsvd_region[n].start = (unsigned long)__va(ia64_boot_param->initrd_start);
|
|
|
|
rsvd_region[n].end = rsvd_region[n].start + ia64_boot_param->initrd_size;
|
|
|
|
n++;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-11-07 20:51:55 +03:00
|
|
|
#ifdef CONFIG_CRASH_DUMP
|
2007-03-06 13:34:26 +03:00
|
|
|
if (reserve_elfcorehdr(&rsvd_region[n].start,
|
|
|
|
&rsvd_region[n].end) == 0)
|
|
|
|
n++;
|
|
|
|
#endif
|
|
|
|
|
2007-10-19 10:41:00 +04:00
|
|
|
total_memory = efi_memmap_init(&rsvd_region[n].start, &rsvd_region[n].end);
|
2005-09-08 23:39:59 +04:00
|
|
|
n++;
|
|
|
|
|
2007-10-19 10:41:00 +04:00
|
|
|
setup_crashkernel(total_memory, &n);
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/* end of memory marker */
|
|
|
|
rsvd_region[n].start = ~0UL;
|
|
|
|
rsvd_region[n].end = ~0UL;
|
|
|
|
n++;
|
|
|
|
|
|
|
|
num_rsvd_regions = n;
|
2006-06-06 20:36:27 +04:00
|
|
|
BUG_ON(IA64_MAX_RSVD_REGIONS + 1 < n);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
sort_regions(rsvd_region, num_rsvd_regions);
|
2011-11-29 18:01:51 +04:00
|
|
|
num_rsvd_regions = merge_regions(rsvd_region, num_rsvd_regions);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2018-07-23 08:56:58 +03:00
|
|
|
/* reserve all regions except the end of memory marker with memblock */
|
|
|
|
for (n = 0; n < num_rsvd_regions - 1; n++) {
|
|
|
|
struct rsvd_region *region = &rsvd_region[n];
|
|
|
|
phys_addr_t addr = __pa(region->start);
|
|
|
|
phys_addr_t size = region->end - region->start;
|
|
|
|
|
|
|
|
memblock_reserve(addr, size);
|
|
|
|
}
|
|
|
|
}
|
2006-12-07 20:51:35 +03:00
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
/**
|
|
|
|
* find_initrd - get initrd parameters from the boot parameter structure
|
|
|
|
*
|
|
|
|
* Grab the initrd start and end from the boot parameter struct given us by
|
|
|
|
* the boot loader.
|
|
|
|
*/
|
2006-03-23 03:54:15 +03:00
|
|
|
void __init
|
2005-04-17 02:20:36 +04:00
|
|
|
find_initrd (void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_BLK_DEV_INITRD
|
|
|
|
if (ia64_boot_param->initrd_start) {
|
|
|
|
initrd_start = (unsigned long)__va(ia64_boot_param->initrd_start);
|
|
|
|
initrd_end = initrd_start+ia64_boot_param->initrd_size;
|
|
|
|
|
2009-05-23 00:49:49 +04:00
|
|
|
printk(KERN_INFO "Initial ramdisk at: 0x%lx (%llu bytes)\n",
|
2005-04-17 02:20:36 +04:00
|
|
|
initrd_start, ia64_boot_param->initrd_size);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
static void __init
|
|
|
|
io_port_init (void)
|
|
|
|
{
|
|
|
|
unsigned long phys_iobase;
|
|
|
|
|
|
|
|
/*
|
2005-09-16 21:43:10 +04:00
|
|
|
* Set `iobase' based on the EFI memory map or, failing that, the
|
|
|
|
* value firmware left in ar.k0.
|
2005-04-17 02:20:36 +04:00
|
|
|
*
|
2005-09-16 21:43:10 +04:00
|
|
|
* Note that in ia32 mode, IN/OUT instructions use ar.k0 to compute
|
|
|
|
* the port's virtual address, so ia32_load_state() loads it with a
|
|
|
|
* user virtual address. But in ia64 mode, glibc uses the
|
|
|
|
* *physical* address in ar.k0 to mmap the appropriate area from
|
|
|
|
* /dev/mem, and the inX()/outX() interfaces use MMIO. In both
|
|
|
|
* cases, user-mode can only use the legacy 0-64K I/O port space.
|
|
|
|
*
|
|
|
|
* ar.k0 is not involved in kernel I/O port accesses, which can use
|
|
|
|
* any of the I/O port spaces and are done via MMIO using the
|
|
|
|
* virtual mmio_base from the appropriate io_space[].
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
phys_iobase = efi_get_iobase();
|
2005-09-16 21:43:10 +04:00
|
|
|
if (!phys_iobase) {
|
2005-04-17 02:20:36 +04:00
|
|
|
phys_iobase = ia64_get_kr(IA64_KR_IO_BASE);
|
2005-09-16 21:43:10 +04:00
|
|
|
printk(KERN_INFO "No I/O port range found in EFI memory map, "
|
|
|
|
"falling back to AR.KR0 (0x%lx)\n", phys_iobase);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
ia64_iobase = (unsigned long) ioremap(phys_iobase, 0);
|
2005-09-16 21:43:10 +04:00
|
|
|
ia64_set_kr(IA64_KR_IO_BASE, __pa(ia64_iobase));
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/* setup legacy IO port space */
|
|
|
|
io_space[0].mmio_base = ia64_iobase;
|
|
|
|
io_space[0].sparse = 1;
|
|
|
|
num_io_spaces = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* early_console_setup - setup debugging console
|
|
|
|
*
|
|
|
|
* Consoles started here require little enough setup that we can start using
|
|
|
|
* them very early in the boot process, either right after the machine
|
|
|
|
* vector initialization, or even before if the drivers can detect their hw.
|
|
|
|
*
|
|
|
|
* Returns non-zero if a console couldn't be setup.
|
|
|
|
*/
|
|
|
|
static inline int __init
|
|
|
|
early_console_setup (char *cmdline)
|
|
|
|
{
|
2005-04-26 00:51:00 +04:00
|
|
|
int earlycons = 0;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#ifdef CONFIG_SERIAL_SGI_L1_CONSOLE
|
|
|
|
{
|
|
|
|
extern int sn_serial_console_early_setup(void);
|
|
|
|
if (!sn_serial_console_early_setup())
|
2005-04-26 00:51:00 +04:00
|
|
|
earlycons++;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_EFI_PCDP
|
|
|
|
if (!efi_setup_pcdp_console(cmdline))
|
2005-04-26 00:51:00 +04:00
|
|
|
earlycons++;
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif
|
2007-08-21 07:51:45 +04:00
|
|
|
if (!simcons_register())
|
2007-08-16 09:03:07 +04:00
|
|
|
earlycons++;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2005-04-26 00:51:00 +04:00
|
|
|
return (earlycons) ? 0 : -1;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
mark_bsp_online (void)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
/* If we register an early console, allow CPU 0 to printk */
|
2012-03-29 01:42:46 +04:00
|
|
|
set_cpu_online(smp_processor_id(), true);
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2006-03-24 01:27:12 +03:00
|
|
|
static __initdata int nomca;
|
|
|
|
static __init int setup_nomca(char *s)
|
|
|
|
{
|
|
|
|
nomca = 1;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
early_param("nomca", setup_nomca);
|
|
|
|
|
2008-10-19 07:28:25 +04:00
|
|
|
#ifdef CONFIG_CRASH_DUMP
|
2009-05-23 00:49:49 +04:00
|
|
|
int __init reserve_elfcorehdr(u64 *start, u64 *end)
|
2007-03-06 13:34:26 +03:00
|
|
|
{
|
2009-05-23 00:49:49 +04:00
|
|
|
u64 length;
|
2007-03-06 13:34:26 +03:00
|
|
|
|
|
|
|
/* We get the address using the kernel command line,
|
|
|
|
* but the size is extracted from the EFI tables.
|
|
|
|
* Both address and size are required for reservation
|
|
|
|
* to work properly.
|
|
|
|
*/
|
|
|
|
|
kdump: add is_vmcore_usable() and vmcore_unusable()
The usage of elfcorehdr_addr has changed recently such that being set to
ELFCORE_ADDR_MAX is used by is_kdump_kernel() to indicate if the code is
executing in a kernel executed as a crash kernel.
However, arch/ia64/kernel/setup.c:reserve_elfcorehdr will rest
elfcorehdr_addr to ELFCORE_ADDR_MAX on error, which means any subsequent
calls to is_kdump_kernel() will return 0, even though they should return
1.
Ok, at this point in time there are no subsequent calls, but I think its
fair to say that there is ample scope for error or at the very least
confusion.
This patch add an extra state, ELFCORE_ADDR_ERR, which indicates that
elfcorehdr_addr was passed on the command line, and thus execution is
taking place in a crashdump kernel, but vmcore can't be used for some
reason. This is tested for using is_vmcore_usable() and set using
vmcore_unusable(). A subsequent patch makes use of this new code.
To summarise, the states that elfcorehdr_addr can now be in are as follows:
ELFCORE_ADDR_MAX: not a crashdump kernel
ELFCORE_ADDR_ERR: crashdump kernel but vmcore is unusable
any other value: crash dump kernel and vmcore is usable
Signed-off-by: Simon Horman <horms@verge.net.au>
Cc: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-10-19 07:28:29 +04:00
|
|
|
if (!is_vmcore_usable())
|
2007-03-06 13:34:26 +03:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
if ((length = vmcore_find_descriptor_size(elfcorehdr_addr)) == 0) {
|
kdump: add is_vmcore_usable() and vmcore_unusable()
The usage of elfcorehdr_addr has changed recently such that being set to
ELFCORE_ADDR_MAX is used by is_kdump_kernel() to indicate if the code is
executing in a kernel executed as a crash kernel.
However, arch/ia64/kernel/setup.c:reserve_elfcorehdr will rest
elfcorehdr_addr to ELFCORE_ADDR_MAX on error, which means any subsequent
calls to is_kdump_kernel() will return 0, even though they should return
1.
Ok, at this point in time there are no subsequent calls, but I think its
fair to say that there is ample scope for error or at the very least
confusion.
This patch add an extra state, ELFCORE_ADDR_ERR, which indicates that
elfcorehdr_addr was passed on the command line, and thus execution is
taking place in a crashdump kernel, but vmcore can't be used for some
reason. This is tested for using is_vmcore_usable() and set using
vmcore_unusable(). A subsequent patch makes use of this new code.
To summarise, the states that elfcorehdr_addr can now be in are as follows:
ELFCORE_ADDR_MAX: not a crashdump kernel
ELFCORE_ADDR_ERR: crashdump kernel but vmcore is unusable
any other value: crash dump kernel and vmcore is usable
Signed-off-by: Simon Horman <horms@verge.net.au>
Cc: Vivek Goyal <vgoyal@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
2008-10-19 07:28:29 +04:00
|
|
|
vmcore_unusable();
|
2007-03-06 13:34:26 +03:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
*start = (unsigned long)__va(elfcorehdr_addr);
|
|
|
|
*end = *start + length;
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2006-12-12 11:49:03 +03:00
|
|
|
#endif /* CONFIG_PROC_VMCORE */
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
void __init
|
|
|
|
setup_arch (char **cmdline_p)
|
|
|
|
{
|
|
|
|
unw_init();
|
|
|
|
|
|
|
|
ia64_patch_vtop((u64) __start___vtop_patchlist, (u64) __end___vtop_patchlist);
|
|
|
|
|
|
|
|
*cmdline_p = __va(ia64_boot_param->command_line);
|
2007-02-12 11:54:12 +03:00
|
|
|
strlcpy(boot_command_line, *cmdline_p, COMMAND_LINE_SIZE);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
efi_init();
|
|
|
|
io_port_init();
|
|
|
|
|
|
|
|
#ifdef CONFIG_IA64_GENERIC
|
2007-07-25 11:06:25 +04:00
|
|
|
/* machvec needs to be parsed from the command line
|
|
|
|
* before parse_early_param() is called to ensure
|
|
|
|
* that ia64_mv is initialised before any command line
|
|
|
|
* settings may cause console setup to occur
|
|
|
|
*/
|
|
|
|
machvec_init_from_cmdline(*cmdline_p);
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif
|
|
|
|
|
2007-07-25 11:06:25 +04:00
|
|
|
parse_early_param();
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
if (early_console_setup(*cmdline_p) == 0)
|
|
|
|
mark_bsp_online();
|
|
|
|
|
2005-08-24 20:07:20 +04:00
|
|
|
#ifdef CONFIG_ACPI
|
2005-04-17 02:20:36 +04:00
|
|
|
/* Initialize the ACPI boot-time table parser */
|
|
|
|
acpi_table_init();
|
2008-11-06 01:57:52 +03:00
|
|
|
early_acpi_boot_init();
|
2005-04-17 02:20:36 +04:00
|
|
|
# ifdef CONFIG_ACPI_NUMA
|
|
|
|
acpi_numa_init();
|
2016-05-25 01:35:34 +03:00
|
|
|
acpi_numa_fixup();
|
2009-10-02 08:28:56 +04:00
|
|
|
# ifdef CONFIG_ACPI_HOTPLUG_CPU
|
2008-11-06 01:57:52 +03:00
|
|
|
prefill_possible_map();
|
2009-10-02 08:28:56 +04:00
|
|
|
# endif
|
2015-03-05 03:19:16 +03:00
|
|
|
per_cpu_scan_finalize((cpumask_weight(&early_cpu_possible_map) == 0 ?
|
|
|
|
32 : cpumask_weight(&early_cpu_possible_map)),
|
2008-07-01 02:03:14 +04:00
|
|
|
additional_cpus > 0 ? additional_cpus : 0);
|
2005-04-17 02:20:36 +04:00
|
|
|
# endif
|
|
|
|
#endif /* CONFIG_APCI_BOOT */
|
|
|
|
|
2009-10-02 08:28:56 +04:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
smp_build_cpu_map();
|
|
|
|
#endif
|
2005-04-17 02:20:36 +04:00
|
|
|
find_memory();
|
|
|
|
|
|
|
|
/* process SAL system table: */
|
2006-03-26 13:37:08 +04:00
|
|
|
ia64_sal_init(__va(efi.sal_systab));
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-05-28 00:23:16 +04:00
|
|
|
#ifdef CONFIG_ITANIUM
|
|
|
|
ia64_patch_rse((u64) __start___rse_patchlist, (u64) __end___rse_patchlist);
|
|
|
|
#else
|
|
|
|
{
|
2009-05-23 00:49:49 +04:00
|
|
|
unsigned long num_phys_stacked;
|
2008-05-28 00:23:16 +04:00
|
|
|
|
|
|
|
if (ia64_pal_rse_info(&num_phys_stacked, 0) == 0 && num_phys_stacked > 96)
|
|
|
|
ia64_patch_rse((u64) __start___rse_patchlist, (u64) __end___rse_patchlist);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
cpu_physical_id(0) = hard_smp_processor_id();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
cpu_init(); /* initialize the bootstrap CPU */
|
2005-11-01 00:44:47 +03:00
|
|
|
mmu_context_init(); /* initialize context_id bitmap */
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
#ifdef CONFIG_VT
|
|
|
|
if (!conswitchp) {
|
|
|
|
# if defined(CONFIG_DUMMY_CONSOLE)
|
|
|
|
conswitchp = &dummy_con;
|
|
|
|
# endif
|
|
|
|
# if defined(CONFIG_VGA_CONSOLE)
|
|
|
|
/*
|
|
|
|
* Non-legacy systems may route legacy VGA MMIO range to system
|
|
|
|
* memory. vga_con probes the MMIO hole, so memory looks like
|
|
|
|
* a VGA device to it. The EFI memory map can tell us if it's
|
|
|
|
* memory so we can avoid this problem.
|
|
|
|
*/
|
|
|
|
if (efi_mem_type(0xA0000) != EFI_CONVENTIONAL_MEMORY)
|
|
|
|
conswitchp = &vga_con;
|
|
|
|
# endif
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* enable IA-64 Machine Check Abort Handling unless disabled */
|
2006-03-24 01:27:12 +03:00
|
|
|
if (!nomca)
|
2005-04-17 02:20:36 +04:00
|
|
|
ia64_mca_init();
|
|
|
|
|
|
|
|
platform_setup(cmdline_p);
|
2008-09-17 04:25:33 +04:00
|
|
|
#ifndef CONFIG_IA64_HP_SIM
|
2008-06-24 19:30:09 +04:00
|
|
|
check_sal_cache_flush();
|
2008-09-17 04:25:33 +04:00
|
|
|
#endif
|
2005-04-17 02:20:36 +04:00
|
|
|
paging_init();
|
2017-01-19 16:36:33 +03:00
|
|
|
|
|
|
|
clear_sched_clock_stable();
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
2007-05-12 01:55:43 +04:00
|
|
|
* Display cpu info for all CPUs.
|
2005-04-17 02:20:36 +04:00
|
|
|
*/
|
|
|
|
static int
|
|
|
|
show_cpuinfo (struct seq_file *m, void *v)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
# define lpj c->loops_per_jiffy
|
|
|
|
# define cpunum c->cpu
|
|
|
|
#else
|
|
|
|
# define lpj loops_per_jiffy
|
|
|
|
# define cpunum 0
|
|
|
|
#endif
|
|
|
|
static struct {
|
|
|
|
unsigned long mask;
|
|
|
|
const char *feature_name;
|
|
|
|
} feature_bits[] = {
|
|
|
|
{ 1UL << 0, "branchlong" },
|
|
|
|
{ 1UL << 1, "spontaneous deferral"},
|
|
|
|
{ 1UL << 2, "16-byte atomic ops" }
|
|
|
|
};
|
2007-02-06 00:54:31 +03:00
|
|
|
char features[128], *cp, *sep;
|
2005-04-17 02:20:36 +04:00
|
|
|
struct cpuinfo_ia64 *c = v;
|
|
|
|
unsigned long mask;
|
2006-01-06 00:30:52 +03:00
|
|
|
unsigned long proc_freq;
|
2007-02-06 00:54:31 +03:00
|
|
|
int i, size;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
mask = c->features;
|
|
|
|
|
|
|
|
/* build the feature string: */
|
2007-02-06 00:54:31 +03:00
|
|
|
memcpy(features, "standard", 9);
|
2005-04-17 02:20:36 +04:00
|
|
|
cp = features;
|
2007-02-06 00:54:31 +03:00
|
|
|
size = sizeof(features);
|
|
|
|
sep = "";
|
|
|
|
for (i = 0; i < ARRAY_SIZE(feature_bits) && size > 1; ++i) {
|
2005-04-17 02:20:36 +04:00
|
|
|
if (mask & feature_bits[i].mask) {
|
2007-02-06 00:54:31 +03:00
|
|
|
cp += snprintf(cp, size, "%s%s", sep,
|
|
|
|
feature_bits[i].feature_name),
|
|
|
|
sep = ", ";
|
2005-04-17 02:20:36 +04:00
|
|
|
mask &= ~feature_bits[i].mask;
|
2007-02-06 00:54:31 +03:00
|
|
|
size = sizeof(features) - (cp - features);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
}
|
2007-02-06 00:54:31 +03:00
|
|
|
if (mask && size > 1) {
|
|
|
|
/* print unknown features as a hex value */
|
|
|
|
snprintf(cp, size, "%s0x%lx", sep, mask);
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
2005-12-02 21:43:20 +03:00
|
|
|
proc_freq = cpufreq_quick_get(cpunum);
|
|
|
|
if (!proc_freq)
|
|
|
|
proc_freq = c->proc_freq / 1000;
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
seq_printf(m,
|
|
|
|
"processor : %d\n"
|
|
|
|
"vendor : %s\n"
|
|
|
|
"arch : IA-64\n"
|
2006-06-06 00:54:14 +04:00
|
|
|
"family : %u\n"
|
2005-04-17 02:20:36 +04:00
|
|
|
"model : %u\n"
|
2006-06-06 00:54:14 +04:00
|
|
|
"model name : %s\n"
|
2005-04-17 02:20:36 +04:00
|
|
|
"revision : %u\n"
|
|
|
|
"archrev : %u\n"
|
2007-02-06 00:54:31 +03:00
|
|
|
"features : %s\n"
|
2005-04-17 02:20:36 +04:00
|
|
|
"cpu number : %lu\n"
|
|
|
|
"cpu regs : %u\n"
|
2007-04-06 21:04:49 +04:00
|
|
|
"cpu MHz : %lu.%03lu\n"
|
2005-04-17 02:20:36 +04:00
|
|
|
"itc MHz : %lu.%06lu\n"
|
2005-04-26 00:25:06 +04:00
|
|
|
"BogoMIPS : %lu.%02lu\n",
|
2006-06-06 00:54:14 +04:00
|
|
|
cpunum, c->vendor, c->family, c->model,
|
|
|
|
c->model_name, c->revision, c->archrev,
|
2005-04-17 02:20:36 +04:00
|
|
|
features, c->ppn, c->number,
|
2005-12-02 21:43:20 +03:00
|
|
|
proc_freq / 1000, proc_freq % 1000,
|
2005-04-17 02:20:36 +04:00
|
|
|
c->itc_freq / 1000000, c->itc_freq % 1000000,
|
|
|
|
lpj*HZ/500000, (lpj*HZ/5000) % 100);
|
2005-04-26 00:25:06 +04:00
|
|
|
#ifdef CONFIG_SMP
|
2015-03-05 03:19:16 +03:00
|
|
|
seq_printf(m, "siblings : %u\n",
|
|
|
|
cpumask_weight(&cpu_core_map[cpunum]));
|
2007-10-19 23:20:09 +04:00
|
|
|
if (c->socket_id != -1)
|
|
|
|
seq_printf(m, "physical id: %u\n", c->socket_id);
|
2005-04-26 00:25:06 +04:00
|
|
|
if (c->threads_per_core > 1 || c->cores_per_socket > 1)
|
|
|
|
seq_printf(m,
|
2007-10-19 23:20:09 +04:00
|
|
|
"core id : %u\n"
|
|
|
|
"thread id : %u\n",
|
|
|
|
c->core_id, c->thread_id);
|
2005-04-26 00:25:06 +04:00
|
|
|
#endif
|
|
|
|
seq_printf(m,"\n");
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
c_start (struct seq_file *m, loff_t *pos)
|
|
|
|
{
|
|
|
|
#ifdef CONFIG_SMP
|
2009-03-16 06:42:42 +03:00
|
|
|
while (*pos < nr_cpu_ids && !cpu_online(*pos))
|
2005-04-17 02:20:36 +04:00
|
|
|
++*pos;
|
|
|
|
#endif
|
2009-03-16 06:42:42 +03:00
|
|
|
return *pos < nr_cpu_ids ? cpu_data(*pos) : NULL;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void *
|
|
|
|
c_next (struct seq_file *m, void *v, loff_t *pos)
|
|
|
|
{
|
|
|
|
++*pos;
|
|
|
|
return c_start(m, pos);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
c_stop (struct seq_file *m, void *v)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2008-01-22 22:42:07 +03:00
|
|
|
const struct seq_operations cpuinfo_op = {
|
2005-04-17 02:20:36 +04:00
|
|
|
.start = c_start,
|
|
|
|
.next = c_next,
|
|
|
|
.stop = c_stop,
|
|
|
|
.show = show_cpuinfo
|
|
|
|
};
|
|
|
|
|
2007-03-12 16:07:49 +03:00
|
|
|
#define MAX_BRANDS 8
|
|
|
|
static char brandname[MAX_BRANDS][128];
|
2006-06-06 00:54:14 +04:00
|
|
|
|
2013-06-17 23:51:20 +04:00
|
|
|
static char *
|
2006-06-06 00:54:14 +04:00
|
|
|
get_model_name(__u8 family, __u8 model)
|
|
|
|
{
|
2007-03-12 16:07:49 +03:00
|
|
|
static int overflow;
|
2006-06-06 00:54:14 +04:00
|
|
|
char brand[128];
|
2007-03-12 16:07:49 +03:00
|
|
|
int i;
|
2006-06-06 00:54:14 +04:00
|
|
|
|
2006-12-12 22:56:36 +03:00
|
|
|
memcpy(brand, "Unknown", 8);
|
2006-06-06 00:54:14 +04:00
|
|
|
if (ia64_pal_get_brand_info(brand)) {
|
|
|
|
if (family == 0x7)
|
|
|
|
memcpy(brand, "Merced", 7);
|
|
|
|
else if (family == 0x1f) switch (model) {
|
|
|
|
case 0: memcpy(brand, "McKinley", 9); break;
|
|
|
|
case 1: memcpy(brand, "Madison", 8); break;
|
|
|
|
case 2: memcpy(brand, "Madison up to 9M cache", 23); break;
|
2006-12-12 22:56:36 +03:00
|
|
|
}
|
2006-06-06 00:54:14 +04:00
|
|
|
}
|
2007-03-12 16:07:49 +03:00
|
|
|
for (i = 0; i < MAX_BRANDS; i++)
|
|
|
|
if (strcmp(brandname[i], brand) == 0)
|
|
|
|
return brandname[i];
|
|
|
|
for (i = 0; i < MAX_BRANDS; i++)
|
|
|
|
if (brandname[i][0] == '\0')
|
|
|
|
return strcpy(brandname[i], brand);
|
|
|
|
if (overflow++ == 0)
|
|
|
|
printk(KERN_ERR
|
|
|
|
"%s: Table overflow. Some processor model information will be missing\n",
|
2008-03-05 02:15:00 +03:00
|
|
|
__func__);
|
2007-03-12 16:07:49 +03:00
|
|
|
return "Unknown";
|
2006-06-06 00:54:14 +04:00
|
|
|
}
|
|
|
|
|
2013-06-17 23:51:20 +04:00
|
|
|
static void
|
2005-04-17 02:20:36 +04:00
|
|
|
identify_cpu (struct cpuinfo_ia64 *c)
|
|
|
|
{
|
|
|
|
union {
|
|
|
|
unsigned long bits[5];
|
|
|
|
struct {
|
|
|
|
/* id 0 & 1: */
|
|
|
|
char vendor[16];
|
|
|
|
|
|
|
|
/* id 2 */
|
|
|
|
u64 ppn; /* processor serial number */
|
|
|
|
|
|
|
|
/* id 3: */
|
|
|
|
unsigned number : 8;
|
|
|
|
unsigned revision : 8;
|
|
|
|
unsigned model : 8;
|
|
|
|
unsigned family : 8;
|
|
|
|
unsigned archrev : 8;
|
|
|
|
unsigned reserved : 24;
|
|
|
|
|
|
|
|
/* id 4: */
|
|
|
|
u64 features;
|
|
|
|
} field;
|
|
|
|
} cpuid;
|
|
|
|
pal_vm_info_1_u_t vm1;
|
|
|
|
pal_vm_info_2_u_t vm2;
|
|
|
|
pal_status_t status;
|
|
|
|
unsigned long impl_va_msb = 50, phys_addr_size = 44; /* Itanium defaults */
|
|
|
|
int i;
|
|
|
|
for (i = 0; i < 5; ++i)
|
|
|
|
cpuid.bits[i] = ia64_get_cpuid(i);
|
|
|
|
|
|
|
|
memcpy(c->vendor, cpuid.field.vendor, 16);
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
c->cpu = smp_processor_id();
|
2005-04-26 00:25:06 +04:00
|
|
|
|
|
|
|
/* below default values will be overwritten by identify_siblings()
|
2007-05-12 01:55:43 +04:00
|
|
|
* for Multi-Threading/Multi-Core capable CPUs
|
2005-04-26 00:25:06 +04:00
|
|
|
*/
|
|
|
|
c->threads_per_core = c->cores_per_socket = c->num_log = 1;
|
|
|
|
c->socket_id = -1;
|
|
|
|
|
|
|
|
identify_siblings(c);
|
2007-10-19 23:20:09 +04:00
|
|
|
|
|
|
|
if (c->threads_per_core > smp_num_siblings)
|
|
|
|
smp_num_siblings = c->threads_per_core;
|
2005-04-17 02:20:36 +04:00
|
|
|
#endif
|
|
|
|
c->ppn = cpuid.field.ppn;
|
|
|
|
c->number = cpuid.field.number;
|
|
|
|
c->revision = cpuid.field.revision;
|
|
|
|
c->model = cpuid.field.model;
|
|
|
|
c->family = cpuid.field.family;
|
|
|
|
c->archrev = cpuid.field.archrev;
|
|
|
|
c->features = cpuid.field.features;
|
2006-06-06 00:54:14 +04:00
|
|
|
c->model_name = get_model_name(c->family, c->model);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
status = ia64_pal_vm_summary(&vm1, &vm2);
|
|
|
|
if (status == PAL_STATUS_SUCCESS) {
|
|
|
|
impl_va_msb = vm2.pal_vm_info_2_s.impl_va_msb;
|
|
|
|
phys_addr_size = vm1.pal_vm_info_1_s.phys_add_size;
|
|
|
|
}
|
|
|
|
c->unimpl_va_mask = ~((7L<<61) | ((1L << (impl_va_msb + 1)) - 1));
|
|
|
|
c->unimpl_pa_mask = ~((1L<<63) | ((1L << phys_addr_size) - 1));
|
|
|
|
}
|
|
|
|
|
2005-06-03 16:36:00 +04:00
|
|
|
/*
|
2008-10-17 23:14:13 +04:00
|
|
|
* Do the following calculations:
|
2005-06-03 16:36:00 +04:00
|
|
|
*
|
2008-10-17 23:14:13 +04:00
|
|
|
* 1. the max. cache line size.
|
|
|
|
* 2. the minimum of the i-cache stride sizes for "flush_icache_range()".
|
|
|
|
* 3. the minimum of the cache stride sizes for "clflush_cache_range()".
|
2005-06-03 16:36:00 +04:00
|
|
|
*/
|
2013-06-17 23:51:20 +04:00
|
|
|
static void
|
2008-10-17 23:14:13 +04:00
|
|
|
get_cache_info(void)
|
2005-04-17 02:20:36 +04:00
|
|
|
{
|
|
|
|
unsigned long line_size, max = 1;
|
2009-05-23 00:49:49 +04:00
|
|
|
unsigned long l, levels, unique_caches;
|
|
|
|
pal_cache_config_info_t cci;
|
|
|
|
long status;
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
status = ia64_pal_cache_summary(&levels, &unique_caches);
|
|
|
|
if (status != 0) {
|
|
|
|
printk(KERN_ERR "%s: ia64_pal_cache_summary() failed (status=%ld)\n",
|
2008-03-05 02:15:00 +03:00
|
|
|
__func__, status);
|
2005-04-17 02:20:36 +04:00
|
|
|
max = SMP_CACHE_BYTES;
|
2005-06-03 16:36:00 +04:00
|
|
|
/* Safest setup for "flush_icache_range()" */
|
|
|
|
ia64_i_cache_stride_shift = I_CACHE_STRIDE_SHIFT;
|
2008-10-17 23:14:13 +04:00
|
|
|
/* Safest setup for "clflush_cache_range()" */
|
|
|
|
ia64_cache_stride_shift = CACHE_STRIDE_SHIFT;
|
2005-04-17 02:20:36 +04:00
|
|
|
goto out;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (l = 0; l < levels; ++l) {
|
2008-10-17 23:14:13 +04:00
|
|
|
/* cache_type (data_or_unified)=2 */
|
|
|
|
status = ia64_pal_cache_config_info(l, 2, &cci);
|
2005-04-17 02:20:36 +04:00
|
|
|
if (status != 0) {
|
2009-05-23 00:49:49 +04:00
|
|
|
printk(KERN_ERR "%s: ia64_pal_cache_config_info"
|
|
|
|
"(l=%lu, 2) failed (status=%ld)\n",
|
|
|
|
__func__, l, status);
|
2005-04-17 02:20:36 +04:00
|
|
|
max = SMP_CACHE_BYTES;
|
2005-06-03 16:36:00 +04:00
|
|
|
/* The safest setup for "flush_icache_range()" */
|
|
|
|
cci.pcci_stride = I_CACHE_STRIDE_SHIFT;
|
2008-10-17 23:14:13 +04:00
|
|
|
/* The safest setup for "clflush_cache_range()" */
|
|
|
|
ia64_cache_stride_shift = CACHE_STRIDE_SHIFT;
|
2005-06-03 16:36:00 +04:00
|
|
|
cci.pcci_unified = 1;
|
2008-10-17 23:14:13 +04:00
|
|
|
} else {
|
|
|
|
if (cci.pcci_stride < ia64_cache_stride_shift)
|
|
|
|
ia64_cache_stride_shift = cci.pcci_stride;
|
|
|
|
|
|
|
|
line_size = 1 << cci.pcci_line_size;
|
|
|
|
if (line_size > max)
|
|
|
|
max = line_size;
|
2005-04-17 02:20:36 +04:00
|
|
|
}
|
2008-10-17 23:14:13 +04:00
|
|
|
|
2005-06-03 16:36:00 +04:00
|
|
|
if (!cci.pcci_unified) {
|
2008-10-17 23:14:13 +04:00
|
|
|
/* cache_type (instruction)=1*/
|
|
|
|
status = ia64_pal_cache_config_info(l, 1, &cci);
|
2005-06-03 16:36:00 +04:00
|
|
|
if (status != 0) {
|
2009-05-23 00:49:49 +04:00
|
|
|
printk(KERN_ERR "%s: ia64_pal_cache_config_info"
|
|
|
|
"(l=%lu, 1) failed (status=%ld)\n",
|
2008-03-05 02:15:00 +03:00
|
|
|
__func__, l, status);
|
2009-05-23 00:49:49 +04:00
|
|
|
/* The safest setup for flush_icache_range() */
|
2005-06-03 16:36:00 +04:00
|
|
|
cci.pcci_stride = I_CACHE_STRIDE_SHIFT;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (cci.pcci_stride < ia64_i_cache_stride_shift)
|
|
|
|
ia64_i_cache_stride_shift = cci.pcci_stride;
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
out:
|
|
|
|
if (max > ia64_max_cacheline_size)
|
|
|
|
ia64_max_cacheline_size = max;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* cpu_init() initializes state that is per-CPU. This function acts
|
|
|
|
* as a 'CPU state barrier', nothing should get across.
|
|
|
|
*/
|
2013-06-17 23:51:20 +04:00
|
|
|
void
|
2005-04-17 02:20:36 +04:00
|
|
|
cpu_init (void)
|
|
|
|
{
|
2013-06-17 23:51:20 +04:00
|
|
|
extern void ia64_mmu_init(void *);
|
2006-10-13 21:05:45 +04:00
|
|
|
static unsigned long max_num_phys_stacked = IA64_NUM_PHYS_STACK_REG;
|
2005-04-17 02:20:36 +04:00
|
|
|
unsigned long num_phys_stacked;
|
|
|
|
pal_vm_info_2_u_t vmi;
|
|
|
|
unsigned int max_ctx;
|
|
|
|
struct cpuinfo_ia64 *cpu_info;
|
|
|
|
void *cpu_data;
|
|
|
|
|
|
|
|
cpu_data = per_cpu_init();
|
2007-10-17 00:17:22 +04:00
|
|
|
#ifdef CONFIG_SMP
|
2007-10-16 12:24:05 +04:00
|
|
|
/*
|
|
|
|
* insert boot cpu into sibling and core mapes
|
|
|
|
* (must be done after per_cpu area is setup)
|
|
|
|
*/
|
|
|
|
if (smp_processor_id() == 0) {
|
2015-03-05 03:19:16 +03:00
|
|
|
cpumask_set_cpu(0, &per_cpu(cpu_sibling_map, 0));
|
|
|
|
cpumask_set_cpu(0, &cpu_core_map[0]);
|
2008-08-12 21:34:20 +04:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* Set ar.k3 so that assembly code in MCA handler can compute
|
|
|
|
* physical addresses of per cpu variables with a simple:
|
|
|
|
* phys = ar.k3 + &per_cpu_var
|
|
|
|
* and the alt-dtlb-miss handler can set per-cpu mapping into
|
|
|
|
* the TLB when needed. head.S already did this for cpu0.
|
|
|
|
*/
|
|
|
|
ia64_set_kr(IA64_KR_PER_CPU_DATA,
|
|
|
|
ia64_tpa(cpu_data) - (long) __per_cpu_start);
|
2007-10-16 12:24:05 +04:00
|
|
|
}
|
2007-10-17 00:17:22 +04:00
|
|
|
#endif
|
2005-04-17 02:20:36 +04:00
|
|
|
|
2008-10-17 23:14:13 +04:00
|
|
|
get_cache_info();
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We can't pass "local_cpu_data" to identify_cpu() because we haven't called
|
|
|
|
* ia64_mmu_init() yet. And we can't call ia64_mmu_init() first because it
|
|
|
|
* depends on the data returned by identify_cpu(). We break the dependency by
|
|
|
|
* accessing cpu_data() through the canonical per-CPU address.
|
|
|
|
*/
|
2009-10-29 16:34:14 +03:00
|
|
|
cpu_info = cpu_data + ((char *) &__ia64_per_cpu_var(ia64_cpu_info) - __per_cpu_start);
|
2005-04-17 02:20:36 +04:00
|
|
|
identify_cpu(cpu_info);
|
|
|
|
|
|
|
|
#ifdef CONFIG_MCKINLEY
|
|
|
|
{
|
|
|
|
# define FEATURE_SET 16
|
|
|
|
struct ia64_pal_retval iprv;
|
|
|
|
|
|
|
|
if (cpu_info->family == 0x1f) {
|
|
|
|
PAL_CALL_PHYS(iprv, PAL_PROC_GET_FEATURES, 0, FEATURE_SET, 0);
|
|
|
|
if ((iprv.status == 0) && (iprv.v0 & 0x80) && (iprv.v2 & 0x80))
|
|
|
|
PAL_CALL_PHYS(iprv, PAL_PROC_SET_FEATURES,
|
|
|
|
(iprv.v1 | 0x80), FEATURE_SET, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Clear the stack memory reserved for pt_regs: */
|
2006-01-12 12:06:06 +03:00
|
|
|
memset(task_pt_regs(current), 0, sizeof(struct pt_regs));
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
ia64_set_kr(IA64_KR_FPU_OWNER, 0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Initialize the page-table base register to a global
|
|
|
|
* directory with all zeroes. This ensure that we can handle
|
|
|
|
* TLB-misses to user address-space even before we created the
|
|
|
|
* first user address-space. This may happen, e.g., due to
|
|
|
|
* aggressive use of lfetch.fault.
|
|
|
|
*/
|
|
|
|
ia64_set_kr(IA64_KR_PT_BASE, __pa(ia64_imva(empty_zero_page)));
|
|
|
|
|
|
|
|
/*
|
2005-06-08 23:12:48 +04:00
|
|
|
* Initialize default control register to defer speculative faults except
|
|
|
|
* for those arising from TLB misses, which are not deferred. The
|
2005-04-17 02:20:36 +04:00
|
|
|
* kernel MUST NOT depend on a particular setting of these bits (in other words,
|
|
|
|
* the kernel must have recovery code for all speculative accesses). Turn on
|
|
|
|
* dcr.lc as per recommendation by the architecture team. Most IA-32 apps
|
|
|
|
* shouldn't be affected by this (moral: keep your ia32 locks aligned and you'll
|
|
|
|
* be fine).
|
|
|
|
*/
|
|
|
|
ia64_setreg(_IA64_REG_CR_DCR, ( IA64_DCR_DP | IA64_DCR_DK | IA64_DCR_DX | IA64_DCR_DR
|
|
|
|
| IA64_DCR_DA | IA64_DCR_DD | IA64_DCR_LC));
|
2017-02-28 01:30:07 +03:00
|
|
|
mmgrab(&init_mm);
|
2005-04-17 02:20:36 +04:00
|
|
|
current->active_mm = &init_mm;
|
2009-03-10 08:10:30 +03:00
|
|
|
BUG_ON(current->mm);
|
2005-04-17 02:20:36 +04:00
|
|
|
|
|
|
|
ia64_mmu_init(ia64_imva(cpu_data));
|
|
|
|
ia64_mca_cpu_init(ia64_imva(cpu_data));
|
|
|
|
|
2007-05-12 01:55:43 +04:00
|
|
|
/* Clear ITC to eliminate sched_clock() overflows in human time. */
|
2005-04-17 02:20:36 +04:00
|
|
|
ia64_set_itc(0);
|
|
|
|
|
|
|
|
/* disable all local interrupt sources: */
|
|
|
|
ia64_set_itv(1 << 16);
|
|
|
|
ia64_set_lrr0(1 << 16);
|
|
|
|
ia64_set_lrr1(1 << 16);
|
|
|
|
ia64_setreg(_IA64_REG_CR_PMV, 1 << 16);
|
|
|
|
ia64_setreg(_IA64_REG_CR_CMCV, 1 << 16);
|
|
|
|
|
|
|
|
/* clear TPR & XTP to enable all interrupt classes: */
|
|
|
|
ia64_setreg(_IA64_REG_CR_TPR, 0);
|
2007-08-22 14:53:30 +04:00
|
|
|
|
|
|
|
/* Clear any pending interrupts left by SAL/EFI */
|
|
|
|
while (ia64_get_ivr() != IA64_SPURIOUS_INT_VECTOR)
|
|
|
|
ia64_eoi();
|
|
|
|
|
2005-04-17 02:20:36 +04:00
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
normal_xtp();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* set ia64_ctx.max_rid to the maximum RID that is supported by all CPUs: */
|
2008-04-04 22:05:59 +04:00
|
|
|
if (ia64_pal_vm_summary(NULL, &vmi) == 0) {
|
2005-04-17 02:20:36 +04:00
|
|
|
max_ctx = (1U << (vmi.pal_vm_info_2_s.rid_size - 3)) - 1;
|
2008-03-14 23:57:08 +03:00
|
|
|
setup_ptcg_sem(vmi.pal_vm_info_2_s.max_purges, NPTCG_FROM_PAL);
|
2008-04-04 22:05:59 +04:00
|
|
|
} else {
|
2005-04-17 02:20:36 +04:00
|
|
|
printk(KERN_WARNING "cpu_init: PAL VM summary failed, assuming 18 RID bits\n");
|
|
|
|
max_ctx = (1U << 15) - 1; /* use architected minimum */
|
|
|
|
}
|
|
|
|
while (max_ctx < ia64_ctx.max_ctx) {
|
|
|
|
unsigned int old = ia64_ctx.max_ctx;
|
|
|
|
if (cmpxchg(&ia64_ctx.max_ctx, old, max_ctx) == old)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ia64_pal_rse_info(&num_phys_stacked, NULL) != 0) {
|
|
|
|
printk(KERN_WARNING "cpu_init: PAL RSE info failed; assuming 96 physical "
|
|
|
|
"stacked regs\n");
|
|
|
|
num_phys_stacked = 96;
|
|
|
|
}
|
|
|
|
/* size of physical stacked register partition plus 8 bytes: */
|
2006-10-13 21:05:45 +04:00
|
|
|
if (num_phys_stacked > max_num_phys_stacked) {
|
|
|
|
ia64_patch_phys_stack_reg(num_phys_stacked*8 + 8);
|
|
|
|
max_num_phys_stacked = num_phys_stacked;
|
|
|
|
}
|
2005-04-17 02:20:36 +04:00
|
|
|
platform_cpu_init();
|
|
|
|
}
|
|
|
|
|
2006-03-12 20:00:13 +03:00
|
|
|
void __init
|
2005-04-17 02:20:36 +04:00
|
|
|
check_bugs (void)
|
|
|
|
{
|
|
|
|
ia64_patch_mckinley_e9((unsigned long) __start___mckinley_e9_bundles,
|
|
|
|
(unsigned long) __end___mckinley_e9_bundles);
|
|
|
|
}
|
[PATCH] ia64: use i386 dmi_scan.c
Enable DMI table parsing on ia64.
Andi Kleen has a patch in his x86_64 tree which enables the use of i386
dmi_scan.c on x86_64. dmi_scan.c functions are being used by the
drivers/char/ipmi/ipmi_si_intf.c driver for autodetecting the ports or
memory spaces where the IPMI controllers may be found.
This patch adds equivalent changes for ia64 as to what is in the x86_64
tree. In addition, I reworked the DMI detection, such that on EFI-capable
systems, it uses the efi.smbios pointer to find the table, rather than
brute-force searching from 0xF0000. On non-EFI systems, it continues the
brute-force search.
My test system, an Intel S870BN4 'Tiger4', aka Dell PowerEdge 7250, with
latest BIOS, does not list the IPMI controller in the ACPI namespace, nor
does it have an ACPI SPMI table. Also note, currently shipping Dell x8xx
EM64T servers don't have these either, so DMI is the only method for
obtaining the address of the IPMI controller.
Signed-off-by: Matt Domsch <Matt_Domsch@dell.com>
Acked-by: "Luck, Tony" <tony.luck@intel.com>
Cc: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-26 13:37:03 +04:00
|
|
|
|
|
|
|
static int __init run_dmi_scan(void)
|
|
|
|
{
|
|
|
|
dmi_scan_machine();
|
2013-10-19 01:29:25 +04:00
|
|
|
dmi_memdev_walk();
|
2013-05-01 02:27:15 +04:00
|
|
|
dmi_set_dump_stack_arch_desc();
|
[PATCH] ia64: use i386 dmi_scan.c
Enable DMI table parsing on ia64.
Andi Kleen has a patch in his x86_64 tree which enables the use of i386
dmi_scan.c on x86_64. dmi_scan.c functions are being used by the
drivers/char/ipmi/ipmi_si_intf.c driver for autodetecting the ports or
memory spaces where the IPMI controllers may be found.
This patch adds equivalent changes for ia64 as to what is in the x86_64
tree. In addition, I reworked the DMI detection, such that on EFI-capable
systems, it uses the efi.smbios pointer to find the table, rather than
brute-force searching from 0xF0000. On non-EFI systems, it continues the
brute-force search.
My test system, an Intel S870BN4 'Tiger4', aka Dell PowerEdge 7250, with
latest BIOS, does not list the IPMI controller in the ACPI namespace, nor
does it have an ACPI SPMI table. Also note, currently shipping Dell x8xx
EM64T servers don't have these either, so DMI is the only method for
obtaining the address of the IPMI controller.
Signed-off-by: Matt Domsch <Matt_Domsch@dell.com>
Acked-by: "Luck, Tony" <tony.luck@intel.com>
Cc: Andi Kleen <ak@muc.de>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-03-26 13:37:03 +04:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
core_initcall(run_dmi_scan);
|