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
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
2006-07-10 04:38:56 +08:00
|
|
|
* Copytight (C) 1999, 2000, 05, 06 Ralf Baechle (ralf@linux-mips.org)
|
2005-04-17 06:20:36 +08:00
|
|
|
* Copytight (C) 1999, 2000 Silicon Graphics, Inc.
|
|
|
|
*/
|
|
|
|
#include <linux/bcd.h>
|
2007-10-18 20:34:12 +08:00
|
|
|
#include <linux/clockchips.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/sched.h>
|
2015-03-08 02:30:29 +08:00
|
|
|
#include <linux/sched_clock.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/interrupt.h>
|
|
|
|
#include <linux/kernel_stat.h>
|
|
|
|
#include <linux/param.h>
|
2009-06-19 21:05:26 +08:00
|
|
|
#include <linux/smp.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
#include <linux/time.h>
|
|
|
|
#include <linux/timex.h>
|
|
|
|
#include <linux/mm.h>
|
2008-10-14 23:17:28 +08:00
|
|
|
#include <linux/platform_device.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#include <asm/time.h>
|
|
|
|
#include <asm/pgtable.h>
|
|
|
|
#include <asm/sgialib.h>
|
|
|
|
#include <asm/sn/ioc3.h>
|
|
|
|
#include <asm/sn/klconfig.h>
|
|
|
|
#include <asm/sn/arch.h>
|
|
|
|
#include <asm/sn/addrs.h>
|
|
|
|
#include <asm/sn/sn_private.h>
|
|
|
|
#include <asm/sn/sn0/ip27.h>
|
|
|
|
#include <asm/sn/sn0/hub.h>
|
|
|
|
|
|
|
|
#define TICK_SIZE (tick_nsec / 1000)
|
|
|
|
|
|
|
|
/* Includes for ioc3_init(). */
|
|
|
|
#include <asm/sn/types.h>
|
|
|
|
#include <asm/sn/sn0/addrs.h>
|
|
|
|
#include <asm/sn/sn0/hubni.h>
|
|
|
|
#include <asm/sn/sn0/hubio.h>
|
|
|
|
#include <asm/pci/bridge.h>
|
|
|
|
|
2011-03-24 05:09:12 +08:00
|
|
|
static void enable_rt_irq(struct irq_data *d)
|
2007-10-22 17:34:13 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2011-03-24 05:09:12 +08:00
|
|
|
static void disable_rt_irq(struct irq_data *d)
|
2007-10-22 17:34:13 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static struct irq_chip rt_irq_type = {
|
|
|
|
.name = "SN HUB RT timer",
|
2011-03-24 05:09:12 +08:00
|
|
|
.irq_mask = disable_rt_irq,
|
|
|
|
.irq_unmask = enable_rt_irq,
|
2007-10-22 17:34:13 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
static int rt_next_event(unsigned long delta, struct clock_event_device *evt)
|
2007-10-18 20:34:12 +08:00
|
|
|
{
|
|
|
|
unsigned int cpu = smp_processor_id();
|
2007-11-01 20:20:51 +08:00
|
|
|
int slice = cputoslice(cpu);
|
2007-10-18 20:34:12 +08:00
|
|
|
unsigned long cnt;
|
|
|
|
|
|
|
|
cnt = LOCAL_HUB_L(PI_RT_COUNT);
|
|
|
|
cnt += delta;
|
2007-10-29 07:02:37 +08:00
|
|
|
LOCAL_HUB_S(PI_RT_COMPARE_A + PI_COUNT_OFFSET * slice, cnt);
|
2007-10-18 20:34:12 +08:00
|
|
|
|
|
|
|
return LOCAL_HUB_L(PI_RT_COUNT) >= cnt ? -ETIME : 0;
|
|
|
|
}
|
|
|
|
|
2013-04-11 04:18:55 +08:00
|
|
|
unsigned int rt_timer_irq;
|
2007-10-18 20:34:12 +08:00
|
|
|
|
2008-04-09 05:43:57 +08:00
|
|
|
static DEFINE_PER_CPU(struct clock_event_device, hub_rt_clockevent);
|
|
|
|
static DEFINE_PER_CPU(char [11], hub_rt_name);
|
|
|
|
|
2007-10-22 17:34:13 +08:00
|
|
|
static irqreturn_t hub_rt_counter_handler(int irq, void *dev_id)
|
2007-10-18 20:34:12 +08:00
|
|
|
{
|
|
|
|
unsigned int cpu = smp_processor_id();
|
2008-04-09 05:43:57 +08:00
|
|
|
struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu);
|
2007-10-29 07:02:37 +08:00
|
|
|
int slice = cputoslice(cpu);
|
2007-10-18 20:34:12 +08:00
|
|
|
|
2007-10-29 07:02:37 +08:00
|
|
|
/*
|
|
|
|
* Ack
|
|
|
|
*/
|
2007-11-01 20:20:51 +08:00
|
|
|
LOCAL_HUB_S(PI_RT_PEND_A + PI_COUNT_OFFSET * slice, 0);
|
2007-10-18 20:34:12 +08:00
|
|
|
cd->event_handler(cd);
|
|
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
|
|
}
|
|
|
|
|
2007-10-22 17:34:13 +08:00
|
|
|
struct irqaction hub_rt_irqaction = {
|
|
|
|
.handler = hub_rt_counter_handler,
|
2011-11-22 22:38:03 +08:00
|
|
|
.flags = IRQF_PERCPU | IRQF_TIMER,
|
2007-10-22 17:34:13 +08:00
|
|
|
.name = "hub-rt",
|
2006-06-16 23:10:49 +08:00
|
|
|
};
|
|
|
|
|
2007-10-18 20:34:12 +08:00
|
|
|
/*
|
|
|
|
* This is a hack; we really need to figure these values out dynamically
|
|
|
|
*
|
|
|
|
* Since 800 ns works very well with various HUB frequencies, such as
|
|
|
|
* 360, 380, 390 and 400 MHZ, we use 800 ns rtc cycle time.
|
|
|
|
*
|
|
|
|
* Ralf: which clock rate is used to feed the counter?
|
|
|
|
*/
|
|
|
|
#define NSEC_PER_CYCLE 800
|
|
|
|
#define CYCLES_PER_SEC (NSEC_PER_SEC / NSEC_PER_CYCLE)
|
|
|
|
|
MIPS: Delete __cpuinit/__CPUINIT usage from MIPS code
commit 3747069b25e419f6b51395f48127e9812abc3596 upstream.
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)
and are flagged as __cpuinit -- so if we remove the __cpuinit from
the arch specific callers, we will also get section mismatch warnings.
As an intermediate step, we intend to turn the linux/init.h cpuinit
related content into no-ops as early as possible, since that will get
rid of these warnings. In any case, they are temporary and harmless.
Here, we remove all the MIPS __cpuinit from C code and __CPUINIT
from asm files. MIPS is interesting in this respect, because there
are also uasm users hiding behind their own renamed versions of the
__cpuinit macros.
[1] https://lkml.org/lkml/2013/5/20/589
[ralf@linux-mips.org: Folded in Paul's followup fix.]
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5494/
Patchwork: https://patchwork.linux-mips.org/patch/5495/
Patchwork: https://patchwork.linux-mips.org/patch/5509/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2013-06-18 21:38:59 +08:00
|
|
|
void hub_rt_clock_event_init(void)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2007-10-18 20:34:12 +08:00
|
|
|
unsigned int cpu = smp_processor_id();
|
2007-10-22 17:34:13 +08:00
|
|
|
struct clock_event_device *cd = &per_cpu(hub_rt_clockevent, cpu);
|
|
|
|
unsigned char *name = per_cpu(hub_rt_name, cpu);
|
|
|
|
int irq = rt_timer_irq;
|
|
|
|
|
|
|
|
sprintf(name, "hub-rt %d", cpu);
|
2008-04-09 05:43:57 +08:00
|
|
|
cd->name = name;
|
|
|
|
cd->features = CLOCK_EVT_FEAT_ONESHOT;
|
2007-10-22 17:34:13 +08:00
|
|
|
clockevent_set_clock(cd, CYCLES_PER_SEC);
|
2013-01-22 19:59:30 +08:00
|
|
|
cd->max_delta_ns = clockevent_delta2ns(0xfffffffffffff, cd);
|
2017-03-31 03:47:32 +08:00
|
|
|
cd->max_delta_ticks = 0xfffffffffffff;
|
2013-01-22 19:59:30 +08:00
|
|
|
cd->min_delta_ns = clockevent_delta2ns(0x300, cd);
|
2017-03-31 03:47:32 +08:00
|
|
|
cd->min_delta_ticks = 0x300;
|
2008-04-09 05:43:57 +08:00
|
|
|
cd->rating = 200;
|
|
|
|
cd->irq = irq;
|
2008-12-13 18:50:26 +08:00
|
|
|
cd->cpumask = cpumask_of(cpu);
|
2008-04-09 05:43:57 +08:00
|
|
|
cd->set_next_event = rt_next_event;
|
2007-10-18 20:34:12 +08:00
|
|
|
clockevents_register_device(cd);
|
2007-10-22 17:34:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void __init hub_rt_clock_event_global_init(void)
|
|
|
|
{
|
2008-04-16 23:09:58 +08:00
|
|
|
int irq;
|
2007-10-22 17:34:13 +08:00
|
|
|
|
|
|
|
do {
|
|
|
|
smp_wmb();
|
|
|
|
irq = rt_timer_irq;
|
|
|
|
if (irq)
|
|
|
|
break;
|
|
|
|
|
|
|
|
irq = allocate_irqno();
|
|
|
|
if (irq < 0)
|
|
|
|
panic("Allocation of irq number for timer failed");
|
|
|
|
} while (xchg(&rt_timer_irq, irq));
|
2007-10-18 20:34:12 +08:00
|
|
|
|
2011-03-27 21:19:28 +08:00
|
|
|
irq_set_chip_and_handler(irq, &rt_irq_type, handle_percpu_irq);
|
2007-10-22 17:34:13 +08:00
|
|
|
setup_irq(irq, &hub_rt_irqaction);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2016-12-22 03:32:01 +08:00
|
|
|
static u64 hub_rt_read(struct clocksource *cs)
|
2006-10-23 23:21:27 +08:00
|
|
|
{
|
|
|
|
return REMOTE_HUB_L(cputonasid(0), PI_RT_COUNT);
|
|
|
|
}
|
|
|
|
|
2007-10-22 17:34:13 +08:00
|
|
|
struct clocksource hub_rt_clocksource = {
|
2007-10-18 20:34:12 +08:00
|
|
|
.name = "HUB-RT",
|
2013-01-22 19:59:30 +08:00
|
|
|
.rating = 200,
|
2007-10-12 06:46:10 +08:00
|
|
|
.read = hub_rt_read,
|
|
|
|
.mask = CLOCKSOURCE_MASK(52),
|
|
|
|
.flags = CLOCK_SOURCE_IS_CONTINUOUS,
|
|
|
|
};
|
|
|
|
|
2015-03-08 02:30:29 +08:00
|
|
|
static u64 notrace hub_rt_read_sched_clock(void)
|
|
|
|
{
|
|
|
|
return REMOTE_HUB_L(cputonasid(0), PI_RT_COUNT);
|
|
|
|
}
|
|
|
|
|
2007-10-22 17:34:13 +08:00
|
|
|
static void __init hub_rt_clocksource_init(void)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2007-10-22 17:34:13 +08:00
|
|
|
struct clocksource *cs = &hub_rt_clocksource;
|
|
|
|
|
2010-04-27 11:23:11 +08:00
|
|
|
clocksource_register_hz(cs, CYCLES_PER_SEC);
|
2015-03-08 02:30:29 +08:00
|
|
|
|
|
|
|
sched_clock_register(hub_rt_read_sched_clock, 52, CYCLES_PER_SEC);
|
2005-04-17 06:20:36 +08:00
|
|
|
}
|
|
|
|
|
2007-10-18 20:34:12 +08:00
|
|
|
void __init plat_time_init(void)
|
|
|
|
{
|
2007-10-22 17:34:13 +08:00
|
|
|
hub_rt_clocksource_init();
|
|
|
|
hub_rt_clock_event_global_init();
|
2008-04-09 05:43:57 +08:00
|
|
|
hub_rt_clock_event_init();
|
2007-10-18 20:34:12 +08:00
|
|
|
}
|
|
|
|
|
MIPS: Delete __cpuinit/__CPUINIT usage from MIPS code
commit 3747069b25e419f6b51395f48127e9812abc3596 upstream.
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)
and are flagged as __cpuinit -- so if we remove the __cpuinit from
the arch specific callers, we will also get section mismatch warnings.
As an intermediate step, we intend to turn the linux/init.h cpuinit
related content into no-ops as early as possible, since that will get
rid of these warnings. In any case, they are temporary and harmless.
Here, we remove all the MIPS __cpuinit from C code and __CPUINIT
from asm files. MIPS is interesting in this respect, because there
are also uasm users hiding behind their own renamed versions of the
__cpuinit macros.
[1] https://lkml.org/lkml/2013/5/20/589
[ralf@linux-mips.org: Folded in Paul's followup fix.]
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5494/
Patchwork: https://patchwork.linux-mips.org/patch/5495/
Patchwork: https://patchwork.linux-mips.org/patch/5509/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2013-06-18 21:38:59 +08:00
|
|
|
void cpu_time_init(void)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
|
|
|
lboard_t *board;
|
|
|
|
klcpu_t *cpu;
|
|
|
|
int cpuid;
|
|
|
|
|
|
|
|
/* Don't use ARCS. ARCS is fragile. Klconfig is simple and sane. */
|
|
|
|
board = find_lboard(KL_CONFIG_INFO(get_nasid()), KLTYPE_IP27);
|
|
|
|
if (!board)
|
|
|
|
panic("Can't find board info for myself.");
|
|
|
|
|
|
|
|
cpuid = LOCAL_HUB_L(PI_CPU_NUM) ? IP27_CPU0_INDEX : IP27_CPU1_INDEX;
|
|
|
|
cpu = (klcpu_t *) KLCF_COMP(board, cpuid);
|
|
|
|
if (!cpu)
|
|
|
|
panic("No information about myself?");
|
|
|
|
|
|
|
|
printk("CPU %d clock is %dMHz.\n", smp_processor_id(), cpu->cpu_speed);
|
|
|
|
|
|
|
|
set_c0_status(SRB_TIMOCLK);
|
|
|
|
}
|
|
|
|
|
MIPS: Delete __cpuinit/__CPUINIT usage from MIPS code
commit 3747069b25e419f6b51395f48127e9812abc3596 upstream.
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)
and are flagged as __cpuinit -- so if we remove the __cpuinit from
the arch specific callers, we will also get section mismatch warnings.
As an intermediate step, we intend to turn the linux/init.h cpuinit
related content into no-ops as early as possible, since that will get
rid of these warnings. In any case, they are temporary and harmless.
Here, we remove all the MIPS __cpuinit from C code and __CPUINIT
from asm files. MIPS is interesting in this respect, because there
are also uasm users hiding behind their own renamed versions of the
__cpuinit macros.
[1] https://lkml.org/lkml/2013/5/20/589
[ralf@linux-mips.org: Folded in Paul's followup fix.]
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Cc: linux-mips@linux-mips.org
Patchwork: https://patchwork.linux-mips.org/patch/5494/
Patchwork: https://patchwork.linux-mips.org/patch/5495/
Patchwork: https://patchwork.linux-mips.org/patch/5509/
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
2013-06-18 21:38:59 +08:00
|
|
|
void hub_rtc_init(cnodeid_t cnode)
|
2005-04-17 06:20:36 +08:00
|
|
|
{
|
2008-10-14 23:17:28 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* We only need to initialize the current node.
|
|
|
|
* If this is not the current node then it is a cpuless
|
|
|
|
* node and timeouts will not happen there.
|
|
|
|
*/
|
|
|
|
if (get_compact_nodeid() == cnode) {
|
|
|
|
LOCAL_HUB_S(PI_RT_EN_A, 1);
|
|
|
|
LOCAL_HUB_S(PI_RT_EN_B, 1);
|
|
|
|
LOCAL_HUB_S(PI_PROF_EN_A, 0);
|
|
|
|
LOCAL_HUB_S(PI_PROF_EN_B, 0);
|
|
|
|
LOCAL_HUB_S(PI_RT_COUNT, 0);
|
|
|
|
LOCAL_HUB_S(PI_RT_PEND_A, 0);
|
|
|
|
LOCAL_HUB_S(PI_RT_PEND_B, 0);
|
|
|
|
}
|
|
|
|
}
|
2008-10-14 23:17:28 +08:00
|
|
|
|
|
|
|
static int __init sgi_ip27_rtc_devinit(void)
|
|
|
|
{
|
|
|
|
struct resource res;
|
|
|
|
|
|
|
|
memset(&res, 0, sizeof(res));
|
|
|
|
res.start = XPHYSADDR(KL_CONFIG_CH_CONS_INFO(master_nasid)->memory_base +
|
|
|
|
IOC3_BYTEBUS_DEV0);
|
|
|
|
res.end = res.start + 32767;
|
|
|
|
res.flags = IORESOURCE_MEM;
|
|
|
|
|
|
|
|
return IS_ERR(platform_device_register_simple("rtc-m48t35", -1,
|
|
|
|
&res, 1));
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* kludge make this a device_initcall after ioc3 resource conflicts
|
|
|
|
* are resolved
|
|
|
|
*/
|
|
|
|
late_initcall(sgi_ip27_rtc_devinit);
|