ea0f8feaa0
The following moves the creation of IPR interupts into setup-7750.c and updates a few other things to make it all work after the "Drop CPU subtype IRQ headers" commit. It boots and runs fine on my titan board. - adds an ipr_idx to the ipr_data and uses a function in the subtype code to calculate the address of the IPR registers - adds a function to enable individual interrupt mode for externals in the subtype code and calls that from the titan board code instead of doing it directly. - I changed the shift in the ipr_data to be the actual # of bits to shift, instead of the numnber / 4 - made it easier to match with the manual. Signed-off-by: Jamie Lenehan <lenehan@twibble.org> Signed-off-by: Paul Mundt <lethal@linux-sh.org>
17 lines
398 B
C
17 lines
398 B
C
/*
|
|
* Platform defintions for Titan
|
|
*/
|
|
#ifndef _ASM_SH_TITAN_H
|
|
#define _ASM_SH_TITAN_H
|
|
|
|
#define __IO_PREFIX titan
|
|
#include <asm/io_generic.h>
|
|
|
|
/* IRQ assignments */
|
|
#define TITAN_IRQ_WAN 2 /* eth0 (WAN) */
|
|
#define TITAN_IRQ_LAN 5 /* eth1 (LAN) */
|
|
#define TITAN_IRQ_MPCIA 8 /* mPCI A */
|
|
#define TITAN_IRQ_MPCIB 11 /* mPCI B */
|
|
#define TITAN_IRQ_USB 11 /* USB */
|
|
|
|
#endif /* __ASM_SH_TITAN_H */
|