mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-26 20:44:32 +08:00
2f7e8faef5
Marvell MMP2 (aka ARMADA610) is a SoC based on PJ4 core. It's ARMv6 compatible. Support basic interrupt handler and timer, and basic support for MMP2 based FLINT platform. Signed-off-by: Haojian Zhuang <haojian.zhuang@marvell.com> Signed-off-by: Eric Miao <eric.y.miao@gmail.com>
16 lines
412 B
C
16 lines
412 B
C
#define ARRAY_AND_SIZE(x) (x), ARRAY_SIZE(x)
|
|
|
|
struct sys_timer;
|
|
|
|
extern void timer_init(int irq);
|
|
|
|
extern struct sys_timer pxa168_timer;
|
|
extern struct sys_timer pxa910_timer;
|
|
extern struct sys_timer mmp2_timer;
|
|
extern void __init pxa168_init_irq(void);
|
|
extern void __init pxa910_init_irq(void);
|
|
extern void __init mmp2_init_irq(void);
|
|
|
|
extern void __init icu_init_irq(void);
|
|
extern void __init pxa_map_io(void);
|