Hello, I wrote:
Add support for Texas Instuments Common Platform Interrupt Controller (cp_intc).
It's being added as a part of DA830/OMAP-L137 support, however as cp_intc is not really specific to this architecture (or even ARM specific) I thought that the best place for this code will be in arch/arm/common/...
Signed-off-by: Steve Chen <[email protected]> Signed-off-by: Mark Greer <[email protected]> Signed-off-by: Sergei Shtylyov <[email protected]>
[...]
Index: linux-2.6/arch/arm/common/cp_intc.c =================================================================== --- /dev/null +++ linux-2.6/arch/arm/common/cp_intc.c @@ -0,0 +1,161 @@ +/* + * TI Common Platform Interrupt Controller (cp_intc) driver + * + * Author: Steve Chen <[email protected]> + * Copyright (C) 2008-2009, MontaVista Software, Inc. <[email protected]> + * + * This file is licensed under the terms of the GNU General Public License + * version 2. This program is licensed "as is" without any warranty of any + * kind, whether express or implied. + */ + +#include <linux/init.h> +#include <linux/sched.h> +#include <linux/interrupt.h> +#include <linux/kernel.h> +#include <linux/irq.h> +#include <linux/io.h> +#include <mach/hardware.h> +#include <mach/common.h>
Oops, these 2 are not really needed. I'll repost. WBR, Sergei _______________________________________________ Davinci-linux-open-source mailing list [email protected] http://linux.davincidsp.com/mailman/listinfo/davinci-linux-open-source
