The init/main.c file contains some extern declarations for functions defined in architecture code, and it defines some other functions that are called from architecture code with a custom prototype. Both of those result in warnings with 'make W=1': init/calibrate.c:261:37: error: no previous prototype for 'calibrate_delay_is_known' [-Werror=missing-prototypes] init/main.c:790:20: error: no previous prototype for 'mem_encrypt_init' [-Werror=missing-prototypes] init/main.c:792:20: error: no previous prototype for 'poking_init' [-Werror=missing-prototypes] arch/arm64/kernel/irq.c:122:13: error: no previous prototype for 'init_IRQ' [-Werror=missing-prototypes] arch/arm64/kernel/time.c:55:13: error: no previous prototype for 'time_init' [-Werror=missing-prototypes] arch/x86/kernel/process.c:935:13: error: no previous prototype for 'arch_post_acpi_subsys_init' [-Werror=missing-prototypes] init/calibrate.c:261:37: error: no previous prototype for 'calibrate_delay_is_known' [-Werror=missing-prototypes] kernel/fork.c:991:20: error: no previous prototype for 'arch_task_cache_init' [-Werror=missing-prototypes] Add prototypes for all of these in include/linux/init.h or another appropriate header, and remove the duplicate declarations from architecture specific code. [sfr@canb.auug.org.au: declare time_init_early()] Link: https://lkml.kernel.org/r/20230519124311.5167221c@canb.auug.org.au Link: https://lkml.kernel.org/r/20230517131102.934196-12-arnd@kernel.org Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Stephen Rothwell <sfr@canb.auug.org.au> Cc: Boqun Feng <boqun.feng@gmail.com> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Christoph Lameter <cl@linux.com> Cc: Dennis Zhou <dennis@kernel.org> Cc: Eric Paris <eparis@redhat.com> Cc: Heiko Carstens <hca@linux.ibm.com> Cc: Helge Deller <deller@gmx.de> Cc: Ingo Molnar <mingo@redhat.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Michal Simek <monstr@monstr.eu> Cc: Palmer Dabbelt <palmer@dabbelt.com> Cc: Paul Moore <paul@paul-moore.com> Cc: Pavel Machek <pavel@ucw.cz> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Rafael J. Wysocki <rafael@kernel.org> Cc: Russell King <linux@armlinux.org.uk> Cc: Tejun Heo <tj@kernel.org> Cc: Thomas Bogendoerfer <tsbogend@alpha.franken.de> Cc: Thomas Gleixner <tglx@linutronix.de> Cc: Waiman Long <longman@redhat.com> Cc: Will Deacon <will@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
98 lines
3 KiB
C
98 lines
3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/* irq.h: IRQ registers on the 64-bit Sparc.
|
|
*
|
|
* Copyright (C) 1996 David S. Miller (davem@davemloft.net)
|
|
* Copyright (C) 1998 Jakub Jelinek (jj@ultra.linux.cz)
|
|
*/
|
|
|
|
#ifndef _SPARC64_IRQ_H
|
|
#define _SPARC64_IRQ_H
|
|
|
|
#include <linux/linkage.h>
|
|
#include <linux/kernel.h>
|
|
#include <linux/errno.h>
|
|
#include <linux/interrupt.h>
|
|
#include <asm/pil.h>
|
|
#include <asm/ptrace.h>
|
|
|
|
/* IMAP/ICLR register defines */
|
|
#define IMAP_VALID 0x80000000UL /* IRQ Enabled */
|
|
#define IMAP_TID_UPA 0x7c000000UL /* UPA TargetID */
|
|
#define IMAP_TID_JBUS 0x7c000000UL /* JBUS TargetID */
|
|
#define IMAP_TID_SHIFT 26
|
|
#define IMAP_AID_SAFARI 0x7c000000UL /* Safari AgentID */
|
|
#define IMAP_AID_SHIFT 26
|
|
#define IMAP_NID_SAFARI 0x03e00000UL /* Safari NodeID */
|
|
#define IMAP_NID_SHIFT 21
|
|
#define IMAP_IGN 0x000007c0UL /* IRQ Group Number */
|
|
#define IMAP_INO 0x0000003fUL /* IRQ Number */
|
|
#define IMAP_INR 0x000007ffUL /* Full interrupt number*/
|
|
|
|
#define ICLR_IDLE 0x00000000UL /* Idle state */
|
|
#define ICLR_TRANSMIT 0x00000001UL /* Transmit state */
|
|
#define ICLR_PENDING 0x00000003UL /* Pending state */
|
|
|
|
/* The largest number of unique interrupt sources we support.
|
|
* If this needs to ever be larger than 255, you need to change
|
|
* the type of ino_bucket->irq as appropriate.
|
|
*
|
|
* ino_bucket->irq allocation is made during {sun4v_,}build_irq().
|
|
*/
|
|
#define NR_IRQS (2048)
|
|
|
|
void irq_install_pre_handler(int irq,
|
|
void (*func)(unsigned int, void *, void *),
|
|
void *arg1, void *arg2);
|
|
#define irq_canonicalize(irq) (irq)
|
|
unsigned int build_irq(int inofixup, unsigned long iclr, unsigned long imap);
|
|
unsigned int sun4v_build_irq(u32 devhandle, unsigned int devino);
|
|
unsigned int sun4v_build_virq(u32 devhandle, unsigned int devino);
|
|
unsigned int sun4v_build_msi(u32 devhandle, unsigned int *irq_p,
|
|
unsigned int msi_devino_start,
|
|
unsigned int msi_devino_end);
|
|
void sun4v_destroy_msi(unsigned int irq);
|
|
unsigned int sun4u_build_msi(u32 portid, unsigned int *irq_p,
|
|
unsigned int msi_devino_start,
|
|
unsigned int msi_devino_end,
|
|
unsigned long imap_base,
|
|
unsigned long iclr_base);
|
|
void sun4u_destroy_msi(unsigned int irq);
|
|
|
|
unsigned int irq_alloc(unsigned int dev_handle, unsigned int dev_ino);
|
|
void irq_free(unsigned int irq);
|
|
|
|
void fixup_irqs(void);
|
|
|
|
static inline void set_softint(unsigned long bits)
|
|
{
|
|
__asm__ __volatile__("wr %0, 0x0, %%set_softint"
|
|
: /* No outputs */
|
|
: "r" (bits));
|
|
}
|
|
|
|
static inline void clear_softint(unsigned long bits)
|
|
{
|
|
__asm__ __volatile__("wr %0, 0x0, %%clear_softint"
|
|
: /* No outputs */
|
|
: "r" (bits));
|
|
}
|
|
|
|
static inline unsigned long get_softint(void)
|
|
{
|
|
unsigned long retval;
|
|
|
|
__asm__ __volatile__("rd %%softint, %0"
|
|
: "=r" (retval));
|
|
return retval;
|
|
}
|
|
|
|
void arch_trigger_cpumask_backtrace(const struct cpumask *mask,
|
|
bool exclude_self);
|
|
#define arch_trigger_cpumask_backtrace arch_trigger_cpumask_backtrace
|
|
|
|
extern void *hardirq_stack[NR_CPUS];
|
|
extern void *softirq_stack[NR_CPUS];
|
|
|
|
#define NO_IRQ 0xffffffff
|
|
|
|
#endif
|