2007-07-10 05:06:53 +08: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 16:19:40 +08:00
|
|
|
struct platform_device;
|
|
|
|
|
2007-07-10 05:06:53 +08:00
|
|
|
extern void mxc_map_io(void);
|
|
|
|
extern void mxc_init_irq(void);
|
2008-07-05 16:02:50 +08:00
|
|
|
extern void mxc_timer_init(const char *clk_timer);
|
2008-07-05 16:02:48 +08:00
|
|
|
extern int mxc_clocks_init(unsigned long fref);
|
2008-07-05 16:02:49 +08:00
|
|
|
extern int mxc_register_gpios(void);
|
2008-09-09 16:19:40 +08:00
|
|
|
extern int mxc_register_device(struct platform_device *pdev, void *data);
|
2007-07-10 05:06:53 +08:00
|
|
|
|
|
|
|
#endif
|