2007-07-09 15:06:53 -06:00
|
|
|
/*
|
|
|
|
* Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_ARCH_MXC_COMMON_H__
|
|
|
|
#define __ASM_ARCH_MXC_COMMON_H__
|
|
|
|
|
2008-09-09 02:19:40 -06:00
|
|
|
struct platform_device;
|
2009-02-16 06:36:49 -07:00
|
|
|
struct clk;
|
2008-09-09 02:19:40 -06:00
|
|
|
|
2009-04-02 14:32:10 -06:00
|
|
|
extern void mx1_map_io(void);
|
|
|
|
extern void mx21_map_io(void);
|
2009-06-04 03:32:12 -06:00
|
|
|
extern void mx25_map_io(void);
|
2009-04-02 14:32:10 -06:00
|
|
|
extern void mx27_map_io(void);
|
|
|
|
extern void mx31_map_io(void);
|
|
|
|
extern void mx35_map_io(void);
|
2010-02-04 13:21:53 -07:00
|
|
|
extern void mx51_map_io(void);
|
2009-07-31 05:29:22 -06:00
|
|
|
extern void mxc91231_map_io(void);
|
2009-05-25 09:36:19 -06:00
|
|
|
extern void mxc_init_irq(void __iomem *);
|
2009-12-03 13:36:41 -07:00
|
|
|
extern void tzic_init_irq(void __iomem *);
|
2009-05-25 09:36:19 -06:00
|
|
|
extern void mx1_init_irq(void);
|
|
|
|
extern void mx21_init_irq(void);
|
2009-06-04 03:32:12 -06:00
|
|
|
extern void mx25_init_irq(void);
|
2009-05-25 09:36:19 -06:00
|
|
|
extern void mx27_init_irq(void);
|
|
|
|
extern void mx31_init_irq(void);
|
|
|
|
extern void mx35_init_irq(void);
|
2010-02-04 13:21:53 -07:00
|
|
|
extern void mx51_init_irq(void);
|
2009-07-31 05:29:22 -06:00
|
|
|
extern void mxc91231_init_irq(void);
|
2009-05-25 04:21:38 -06:00
|
|
|
extern void mxc_timer_init(struct clk *timer_clk, void __iomem *, int);
|
2009-02-16 06:36:49 -07:00
|
|
|
extern int mx1_clocks_init(unsigned long fref);
|
2009-01-26 08:34:54 -07:00
|
|
|
extern int mx21_clocks_init(unsigned long lref, unsigned long fref);
|
2010-01-25 03:58:19 -07:00
|
|
|
extern int mx25_clocks_init(void);
|
2009-02-16 06:36:49 -07:00
|
|
|
extern int mx27_clocks_init(unsigned long fref);
|
|
|
|
extern int mx31_clocks_init(unsigned long fref);
|
2009-02-06 09:48:59 -07:00
|
|
|
extern int mx35_clocks_init(void);
|
2010-02-04 13:21:53 -07:00
|
|
|
extern int mx51_clocks_init(unsigned long ckil, unsigned long osc,
|
|
|
|
unsigned long ckih1, unsigned long ckih2);
|
2009-07-31 05:29:22 -06:00
|
|
|
extern int mxc91231_clocks_init(unsigned long fref);
|
2008-07-05 02:02:49 -06:00
|
|
|
extern int mxc_register_gpios(void);
|
2008-09-09 02:19:40 -06:00
|
|
|
extern int mxc_register_device(struct platform_device *pdev, void *data);
|
2009-02-06 07:38:22 -07:00
|
|
|
extern void mxc_set_cpu_type(unsigned int type);
|
2009-06-04 04:19:02 -06:00
|
|
|
extern void mxc_arch_reset_init(void __iomem *);
|
2009-07-31 05:29:22 -06:00
|
|
|
extern void mxc91231_power_off(void);
|
|
|
|
extern void mxc91231_arch_reset(int, const char *);
|
|
|
|
extern void mxc91231_prepare_idle(void);
|
2007-07-09 15:06:53 -06:00
|
|
|
|
|
|
|
#endif
|