2019-05-27 14:55:01 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2016-10-06 01:18:20 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2016 Imagination Technologies
|
2017-10-26 08:04:33 +08:00
|
|
|
* Author: Paul Burton <paul.burton@mips.com>
|
2016-10-06 01:18:20 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/clk.h>
|
|
|
|
#include <linux/clk-provider.h>
|
|
|
|
#include <linux/clocksource.h>
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/types.h>
|
|
|
|
|
|
|
|
#include <asm/irq.h>
|
2017-08-13 12:36:34 +08:00
|
|
|
#include <asm/mips-cps.h>
|
2017-08-24 02:17:45 +08:00
|
|
|
#include <asm/time.h>
|
2016-10-06 01:18:20 +08:00
|
|
|
|
|
|
|
int get_c0_fdc_int(void)
|
|
|
|
{
|
|
|
|
int mips_cpu_fdc_irq;
|
|
|
|
|
2018-01-05 18:31:07 +08:00
|
|
|
if (mips_gic_present())
|
2016-10-06 01:18:20 +08:00
|
|
|
mips_cpu_fdc_irq = gic_get_c0_fdc_int();
|
2018-01-05 18:31:07 +08:00
|
|
|
else if (cpu_has_veic)
|
|
|
|
panic("Unimplemented!");
|
2016-10-06 01:18:20 +08:00
|
|
|
else if (cp0_fdc_irq >= 0)
|
|
|
|
mips_cpu_fdc_irq = MIPS_CPU_IRQ_BASE + cp0_fdc_irq;
|
|
|
|
else
|
|
|
|
mips_cpu_fdc_irq = -1;
|
|
|
|
|
|
|
|
return mips_cpu_fdc_irq;
|
|
|
|
}
|
|
|
|
|
|
|
|
int get_c0_perfcount_int(void)
|
|
|
|
{
|
|
|
|
int mips_cpu_perf_irq;
|
|
|
|
|
2018-01-05 18:31:07 +08:00
|
|
|
if (mips_gic_present())
|
2016-10-06 01:18:20 +08:00
|
|
|
mips_cpu_perf_irq = gic_get_c0_perfcount_int();
|
2018-01-05 18:31:07 +08:00
|
|
|
else if (cpu_has_veic)
|
|
|
|
panic("Unimplemented!");
|
2016-10-06 01:18:20 +08:00
|
|
|
else if (cp0_perfcount_irq >= 0)
|
|
|
|
mips_cpu_perf_irq = MIPS_CPU_IRQ_BASE + cp0_perfcount_irq;
|
|
|
|
else
|
|
|
|
mips_cpu_perf_irq = -1;
|
|
|
|
|
|
|
|
return mips_cpu_perf_irq;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int get_c0_compare_int(void)
|
|
|
|
{
|
|
|
|
int mips_cpu_timer_irq;
|
|
|
|
|
2018-01-05 18:31:07 +08:00
|
|
|
if (mips_gic_present())
|
2016-10-06 01:18:20 +08:00
|
|
|
mips_cpu_timer_irq = gic_get_c0_compare_int();
|
2018-01-05 18:31:07 +08:00
|
|
|
else if (cpu_has_veic)
|
|
|
|
panic("Unimplemented!");
|
2016-10-06 01:18:20 +08:00
|
|
|
else
|
|
|
|
mips_cpu_timer_irq = MIPS_CPU_IRQ_BASE + cp0_compare_irq;
|
|
|
|
|
|
|
|
return mips_cpu_timer_irq;
|
|
|
|
}
|