generic.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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. #include <linux/reboot.h>
  12. struct irq_data;
  13. extern unsigned int get_clk_frequency_khz(int info);
  14. extern void __init pxa_dt_irq_init(int (*fn)(struct irq_data *,
  15. unsigned int));
  16. extern void __init pxa_map_io(void);
  17. extern void pxa_timer_init(void);
  18. #define SET_BANK(__nr,__start,__size) \
  19. mi->bank[__nr].start = (__start), \
  20. mi->bank[__nr].size = (__size)
  21. #define ARRAY_AND_SIZE(x) (x), ARRAY_SIZE(x)
  22. #define pxa25x_handle_irq icip_handle_irq
  23. extern int __init pxa25x_clocks_init(void);
  24. extern void __init pxa25x_init_irq(void);
  25. extern void __init pxa25x_map_io(void);
  26. extern void __init pxa26x_init_irq(void);
  27. #define pxa27x_handle_irq ichp_handle_irq
  28. extern int __init pxa27x_clocks_init(void);
  29. extern void __init pxa27x_dt_init_irq(void);
  30. extern unsigned pxa27x_get_clk_frequency_khz(int);
  31. extern void __init pxa27x_init_irq(void);
  32. extern void __init pxa27x_map_io(void);
  33. #define pxa3xx_handle_irq ichp_handle_irq
  34. extern int __init pxa3xx_clocks_init(void);
  35. extern void __init pxa3xx_dt_init_irq(void);
  36. extern void __init pxa3xx_init_irq(void);
  37. extern void __init pxa3xx_map_io(void);
  38. extern struct syscore_ops pxa_irq_syscore_ops;
  39. extern struct syscore_ops pxa2xx_mfp_syscore_ops;
  40. extern struct syscore_ops pxa3xx_mfp_syscore_ops;
  41. void __init pxa_set_ffuart_info(void *info);
  42. void __init pxa_set_btuart_info(void *info);
  43. void __init pxa_set_stuart_info(void *info);
  44. void __init pxa_set_hwuart_info(void *info);
  45. void pxa_restart(enum reboot_mode, const char *);
  46. #if defined(CONFIG_PXA25x) || defined(CONFIG_PXA27x)
  47. extern void pxa2xx_clear_reset_status(unsigned int);
  48. #else
  49. static inline void pxa2xx_clear_reset_status(unsigned int mask) {}
  50. #endif
  51. /*
  52. * Once fully converted to the clock framework, all these functions should be
  53. * removed, and replaced with a clk_get(NULL, "core").
  54. */
  55. #ifdef CONFIG_PXA25x
  56. extern unsigned pxa25x_get_clk_frequency_khz(int);
  57. #else
  58. #define pxa25x_get_clk_frequency_khz(x) (0)
  59. #endif
  60. #ifdef CONFIG_PXA27x
  61. #else
  62. #define pxa27x_get_clk_frequency_khz(x) (0)
  63. #endif
  64. #ifdef CONFIG_PXA3xx
  65. extern unsigned pxa3xx_get_clk_frequency_khz(int);
  66. #else
  67. #define pxa3xx_get_clk_frequency_khz(x) (0)
  68. #endif