common: Move enable/disable_interrupts out of common.h

Move these two functions into the irq_funcs.h header file. Also move
interrupt_handler_t as this is used by the irq_install_handler() function.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
Simon Glass 2019-11-14 12:57:42 -07:00 committed by Tom Rini
parent c30b7adbca
commit 36bf446b64
61 changed files with 69 additions and 7 deletions

View File

@ -3,6 +3,7 @@
* Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved.
*/
#include <irq_func.h>
#include <asm/cache.h>
#include <common.h>

View File

@ -17,6 +17,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <asm/system.h>
static void cache_flush(void);

View File

@ -15,6 +15,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <asm/system.h>
static void cache_flush(void);

View File

@ -15,6 +15,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <asm/system.h>
static void cache_flush(void);

View File

@ -15,6 +15,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <asm/system.h>
#include <asm/io.h>

View File

@ -17,6 +17,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <asm/system.h>
#include <asm/cache.h>
#include <asm/armv7.h>

View File

@ -9,6 +9,7 @@
#include <common.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <asm/io.h>
#include <asm/armv7m.h>

View File

@ -13,6 +13,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <asm/system.h>
#include <asm/secure.h>
#include <linux/compiler.h>

View File

@ -11,6 +11,7 @@
#include <common.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <asm/arch/pxa-regs.h>
#include <asm/io.h>
#include <asm/system.h>

View File

@ -16,6 +16,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <asm/system.h>
#include <asm/io.h>

View File

@ -21,6 +21,7 @@
*/
#include <common.h>
#include <irq_func.h>
__weak void reset_misc(void)
{

View File

@ -25,6 +25,7 @@
*/
#include <common.h>
#include <irq_func.h>
#include <asm/arch/tegra.h>
#include <asm/arch-tegra/pmc.h>

View File

@ -5,6 +5,8 @@
* Michal SIMEK <monstr@monstr.cz>
*/
#include <irq_func.h>
typedef volatile struct microblaze_intc_t {
int isr; /* interrupt status register */
int ipr; /* interrupt pending register */

View File

@ -16,6 +16,7 @@
#include <common.h>
#include <command.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <watchdog.h>
#include <asm/cache.h>

View File

@ -9,6 +9,7 @@
#include <cpu_func.h>
#include <dm.h>
#include <errno.h>
#include <irq_func.h>
#include <asm/cache.h>
DECLARE_GLOBAL_DATA_PTR;

View File

@ -6,6 +6,7 @@
#include <common.h>
#include <cpu_func.h>
#include <irq_func.h>
#define NIOS_MAGIC 0x534f494e /* enable command line and initrd passing */

View File

@ -11,6 +11,7 @@
#include <common.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <vsprintf.h>
#include <watchdog.h>
#include <command.h>

View File

@ -7,6 +7,7 @@
*/
#include <common.h>
#include <irq_func.h>
#include <mpc83xx.h>
#include <command.h>

View File

@ -11,6 +11,7 @@
#include <config.h>
#include <common.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <vsprintf.h>
#include <watchdog.h>
#include <command.h>

View File

@ -5,6 +5,7 @@
#include <common.h>
#include <dm.h>
#include <irq_func.h>
/*
* cleanup_before_linux() is called just before we call linux

View File

@ -6,6 +6,7 @@
#include <common.h>
#include <command.h>
#include <irq_func.h>
#include <cpu_func.h>
#include <netdev.h>
#include <asm/processor.h>

View File

@ -10,6 +10,7 @@
*/
#include <common.h>
#include <irq_func.h>
#include <asm/io.h>
#include <asm/zimage.h>

View File

@ -14,6 +14,7 @@
#include <common.h>
#include <env.h>
#include <irq_func.h>
#include <malloc.h>
#include <asm/acpi_table.h>
#include <asm/io.h>

View File

@ -14,6 +14,7 @@
#include <common.h>
#include <env.h>
#include <errno.h>
#include <irq_func.h>
#include <spl.h>
#include <asm/arch/cpu.h>
#include <asm/arch/hardware.h>

View File

@ -7,6 +7,7 @@
#include <common.h>
#include <console.h>
#include <cpu_func.h>
#include <irq_func.h>
#define PHYS_FLASH_1 CONFIG_SYS_FLASH_BASE
#define FLASH_BANK_SIZE 0x200000

View File

@ -7,6 +7,7 @@
#include <command.h>
#include <env.h>
#include <i2c.h>
#include <irq_func.h>
#include <netdev.h>
#include <linux/compiler.h>
#include <asm/mmu.h>

View File

@ -7,6 +7,7 @@
#include <command.h>
#include <env.h>
#include <i2c.h>
#include <irq_func.h>
#include <asm/io.h>
#ifdef CONFIG_FSL_LSCH2
#include <asm/arch/immap_lsch2.h>

View File

@ -8,6 +8,7 @@
*/
#include <common.h>
#include <irq_func.h>
#include <asm/immap.h>

View File

@ -7,6 +7,7 @@
#include <command.h>
#include <env.h>
#include <i2c.h>
#include <irq_func.h>
#include <netdev.h>
#include <linux/compiler.h>
#include <asm/mmu.h>

View File

@ -8,6 +8,7 @@
#include <config.h>
#include <cpu_func.h>
#include <env.h>
#include <irq_func.h>
#include <linux/printk.h>
#include <linux/kernel.h>
#include <linux/io.h>

View File

@ -8,6 +8,7 @@
#include <bootm.h>
#include <command.h>
#include <image.h>
#include <irq_func.h>
#include <lmb.h>
#include <mapmem.h>
#include <linux/kernel.h>

View File

@ -7,6 +7,7 @@
#include <common.h>
#include <bootm.h>
#include <command.h>
#include <irq_func.h>
#include <lmb.h>
#include <linux/compiler.h>

View File

@ -11,6 +11,7 @@
#include <config.h>
#include <command.h>
#include <image.h>
#include <irq_func.h>
#undef FDC_DEBUG

View File

@ -6,6 +6,7 @@
#include <common.h>
#include <config.h>
#include <command.h>
#include <irq_func.h>
static int do_interrupts(cmd_tbl_t *cmdtp, int flag, int argc,
char * const argv[])

View File

@ -12,6 +12,7 @@
#include <common.h>
#include <api.h>
#include <cpu_func.h>
#include <irq_func.h>
#include <u-boot/crc.h>
/* TODO: can we just include all these headers whether needed or not? */
#if defined(CONFIG_CMD_BEDBUG)

View File

@ -11,6 +11,7 @@
#include <env.h>
#include <errno.h>
#include <fdt_support.h>
#include <irq_func.h>
#include <lmb.h>
#include <malloc.h>
#include <mapmem.h>

View File

@ -8,6 +8,7 @@
#include <common.h>
#include <dm.h>
#include <irq_func.h>
#include <dm/lists.h>
#include <efi_loader.h>
#include <linux/libfdt.h>

View File

@ -10,6 +10,7 @@
#include <dm.h>
#include <fdt_support.h>
#include <flash.h>
#include <irq_func.h>
#include <mach/pic32.h>
#include <wait_bit.h>

View File

@ -46,8 +46,6 @@ typedef volatile unsigned char vu_char;
#include <log.h>
typedef void (interrupt_handler_t)(void *);
#include <asm/u-boot.h> /* boot information for Linux kernel */
#include <asm/global_data.h> /* global data used for startup functions */
@ -207,10 +205,6 @@ int get_clocks (void);
ulong get_bus_freq (ulong);
int get_serial_clock(void);
/* $(CPU)/interrupts.c */
void enable_interrupts (void);
int disable_interrupts (void);
/* lib/uuid.c */
#include <uuid.h>

View File

@ -9,6 +9,8 @@
#include <phy_interface.h>
#endif
#include <irq_func.h>
struct spi_slave;
/* These are declarations of exported functions available in C code */

View File

@ -9,11 +9,18 @@
#ifndef __IRQ_FUNC_H
#define __IRQ_FUNC_H
struct pt_regs;
typedef void (interrupt_handler_t)(void *arg);
int interrupt_init(void);
void timer_interrupt(struct pt_regs *regs);
void external_interrupt(struct pt_regs *regs);
void irq_install_handler (int vec, interrupt_handler_t *handler, void *arg);
void irq_install_handler(int vec, interrupt_handler_t *handler, void *arg);
void irq_free_handler(int vec);
void reset_timer(void);
void enable_interrupts(void);
int disable_interrupts(void);
#endif

View File

@ -8,6 +8,7 @@
#include <common.h>
#include <div64.h>
#include <efi_loader.h>
#include <irq_func.h>
#include <malloc.h>
#include <time.h>
#include <linux/libfdt_env.h>

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test

View File

@ -5,6 +5,7 @@
*/
#include <common.h>
#include <irq_func.h>
/*
* CPU test