mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-27 04:54:41 +08:00
785e3268e2
This patch attempts to modernize core Alchemy interrupt handling code. - add irq_chips for irq controllers instead of irq type, - add a set_type() hook to change irq trigger type during runtime, - add a set_wake() hook to control GPIO0..7 based wakeup, - use linux' IRQF_TRIGGER_ constants instead of homebrew ones, - enable GENERIC_HARDIRQS_NO__DO_IRQ. - simplify plat_irq_dispatch - merge au1xxx_irqmap into irq.c file, the only place where its contents are referenced. - board_init_irq() is now mandatory for every board; use it to register the remaining (gpio-based) interrupt sources; update all boards accordingly. Run-tested on Db1200 and other Au1200 based platforms. Signed-off-by: Manuel Lauss <mano@roarinelk.homelinux.net> Signed-off-by: Ralf Baechle <ralf@linux-mips.org> delete mode 100644 arch/mips/alchemy/common/au1xxx_irqmap.c
15 lines
350 B
Makefile
15 lines
350 B
Makefile
#
|
|
# Copyright 2000, 2008 MontaVista Software Inc.
|
|
# Author: MontaVista Software, Inc. <source@mvista.com>
|
|
#
|
|
# Makefile for the Alchemy Au1xx0 CPUs, generic files.
|
|
#
|
|
|
|
obj-y += prom.o irq.o puts.o time.o reset.o \
|
|
clocks.o platform.o power.o setup.o \
|
|
sleeper.o cputable.o dma.o dbdma.o gpio.o
|
|
|
|
obj-$(CONFIG_PCI) += pci.o
|
|
|
|
EXTRA_CFLAGS += -Werror
|