Files

39 lines
1.1 KiB
C
Raw Permalink Normal View History

/* SPDX-License-Identifier: GPL-2.0 */
2005-04-16 15:20:36 -07:00
#ifndef _MIPS_SETUP_H
#define _MIPS_SETUP_H
#include <linux/init.h>
2018-07-13 17:51:56 +02:00
#include <linux/types.h>
#include <uapi/asm/setup.h>
2005-04-16 15:20:36 -07:00
2018-07-13 17:51:56 +02:00
extern void prom_putchar(char);
extern void setup_early_printk(void);
2012-03-28 18:30:02 +01:00
#ifdef CONFIG_EARLY_PRINTK_8250
extern void setup_8250_early_printk_port(unsigned long base,
unsigned int reg_shift, unsigned int timeout);
#else
static inline void setup_8250_early_printk_port(unsigned long base,
unsigned int reg_shift, unsigned int timeout) {}
#endif
void set_handler(unsigned long offset, const void *addr, unsigned long len);
2012-03-28 18:30:02 +01:00
extern void set_uncached_handler(unsigned long offset, void *addr, unsigned long len);
typedef void (*vi_handler_t)(void);
extern void *set_vi_handler(int n, vi_handler_t addr);
extern void *set_except_vector(int n, void *addr);
extern unsigned long ebase;
2016-06-15 19:29:53 +01:00
extern unsigned int hwrena;
2012-05-15 00:04:50 -07:00
extern void per_cpu_trap_init(bool);
extern void cpu_cache_init(void);
2023-12-04 12:57:01 +01:00
extern void tlb_init(void);
2012-03-28 18:30:02 +01:00
#ifdef CONFIG_RELOCATABLE
extern void * __init relocate_kernel(void);
extern int plat_post_relocation(long);
#endif
2005-04-16 15:20:36 -07:00
#endif /* __SETUP_H */