common.h 651 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright 2004-2007 Freescale Semiconductor, Inc. All Rights Reserved.
  3. */
  4. /*
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #ifndef __ASM_ARCH_MXC_COMMON_H__
  10. #define __ASM_ARCH_MXC_COMMON_H__
  11. struct platform_device;
  12. extern void mxc_map_io(void);
  13. extern void mxc_init_irq(void);
  14. extern void mxc_timer_init(const char *clk_timer);
  15. extern int mxc_clocks_init(unsigned long fref);
  16. extern int mxc_register_gpios(void);
  17. extern int mxc_register_device(struct platform_device *pdev, void *data);
  18. #endif