generic.h 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * linux/arch/arm/mach-pxa/generic.h
  3. *
  4. * Author: Nicolas Pitre
  5. * Copyright: MontaVista Software Inc.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. */
  11. struct sys_timer;
  12. extern struct sys_timer pxa_timer;
  13. extern void __init pxa_init_irq(int irq_nr,
  14. int (*set_wake)(unsigned int, unsigned int));
  15. extern void __init pxa25x_init_irq(void);
  16. #ifdef CONFIG_CPU_PXA26x
  17. extern void __init pxa26x_init_irq(void);
  18. #endif
  19. extern void __init pxa27x_init_irq(void);
  20. extern void __init pxa3xx_init_irq(void);
  21. extern void __init pxa_map_io(void);
  22. extern unsigned int get_clk_frequency_khz(int info);
  23. #define SET_BANK(__nr,__start,__size) \
  24. mi->bank[__nr].start = (__start), \
  25. mi->bank[__nr].size = (__size)
  26. #define ARRAY_AND_SIZE(x) (x), ARRAY_SIZE(x)
  27. #ifdef CONFIG_PXA25x
  28. extern unsigned pxa25x_get_clk_frequency_khz(int);
  29. extern unsigned pxa25x_get_memclk_frequency_10khz(void);
  30. #else
  31. #define pxa25x_get_clk_frequency_khz(x) (0)
  32. #define pxa25x_get_memclk_frequency_10khz() (0)
  33. #endif
  34. #ifdef CONFIG_PXA27x
  35. extern unsigned pxa27x_get_clk_frequency_khz(int);
  36. extern unsigned pxa27x_get_memclk_frequency_10khz(void);
  37. #else
  38. #define pxa27x_get_clk_frequency_khz(x) (0)
  39. #define pxa27x_get_memclk_frequency_10khz() (0)
  40. #endif
  41. #if defined(CONFIG_PXA25x) || defined(CONFIG_PXA27x)
  42. extern void pxa2xx_clear_reset_status(unsigned int);
  43. #else
  44. static inline void pxa2xx_clear_reset_status(unsigned int mask) {}
  45. #endif
  46. #ifdef CONFIG_PXA3xx
  47. extern unsigned pxa3xx_get_clk_frequency_khz(int);
  48. extern void pxa3xx_clear_reset_status(unsigned int);
  49. #else
  50. #define pxa3xx_get_clk_frequency_khz(x) (0)
  51. static inline void pxa3xx_clear_reset_status(unsigned int mask) {}
  52. #endif
  53. extern struct sysdev_class pxa_irq_sysclass;
  54. extern struct sysdev_class pxa_gpio_sysclass;
  55. extern struct sysdev_class pxa2xx_mfp_sysclass;
  56. extern struct sysdev_class pxa3xx_mfp_sysclass;
  57. void __init pxa_set_ffuart_info(void *info);
  58. void __init pxa_set_btuart_info(void *info);
  59. void __init pxa_set_stuart_info(void *info);
  60. void __init pxa_set_hwuart_info(void *info);