mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-01 09:13:37 +00:00
Now that all drivers are converted to OF we are able to remove some remaining pieces of orphaned code. Signed-off-by: John Crispin <blogic@openwrt.org> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/3841/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
24 lines
713 B
C
24 lines
713 B
C
/*
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License version 2 as published
|
|
* by the Free Software Foundation.
|
|
*
|
|
* Copyright (C) 2010 John Crispin <blogic@openwrt.org>
|
|
*/
|
|
|
|
#ifndef _LANTIQ_XWAY_IRQ_H__
|
|
#define _LANTIQ_XWAY_IRQ_H__
|
|
|
|
#define INT_NUM_IRQ0 8
|
|
#define INT_NUM_IM0_IRL0 (INT_NUM_IRQ0 + 0)
|
|
#define INT_NUM_IM1_IRL0 (INT_NUM_IRQ0 + 32)
|
|
#define INT_NUM_IM2_IRL0 (INT_NUM_IRQ0 + 64)
|
|
#define INT_NUM_IM3_IRL0 (INT_NUM_IRQ0 + 96)
|
|
#define INT_NUM_IM4_IRL0 (INT_NUM_IRQ0 + 128)
|
|
#define INT_NUM_IM_OFFSET (INT_NUM_IM1_IRL0 - INT_NUM_IM0_IRL0)
|
|
|
|
#define LTQ_DMA_CH0_INT (INT_NUM_IM2_IRL0)
|
|
|
|
#define MIPS_CPU_TIMER_IRQ 7
|
|
|
|
#endif
|