diff options
Diffstat (limited to 'kernel/arch/arm/mach-clps711x/common.h')
-rw-r--r-- | kernel/arch/arm/mach-clps711x/common.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/kernel/arch/arm/mach-clps711x/common.h b/kernel/arch/arm/mach-clps711x/common.h new file mode 100644 index 000000000..370200b26 --- /dev/null +++ b/kernel/arch/arm/mach-clps711x/common.h @@ -0,0 +1,23 @@ +/* + * linux/arch/arm/mach-clps711x/common.h + * + * Common bits. + */ + +#include <linux/reboot.h> + +#define CLPS711X_NR_GPIO (4 * 8 + 3) +#define CLPS711X_GPIO(prt, bit) ((prt) * 8 + (bit)) + +extern void clps711x_map_io(void); +extern void clps711x_init_irq(void); +extern void clps711x_timer_init(void); +extern void clps711x_restart(enum reboot_mode mode, const char *cmd); + +/* drivers/irqchip/irq-clps711x.c */ +void clps711x_intc_init(phys_addr_t, resource_size_t); +/* drivers/clk/clk-clps711x.c */ +void clps711x_clk_init(void __iomem *base); +/* drivers/clocksource/clps711x-timer.c */ +void clps711x_clksrc_init(void __iomem *tc1_base, void __iomem *tc2_base, + unsigned int irq); |