omap_device.h 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. /*
  2. * omap_device headers
  3. *
  4. * Copyright (C) 2009 Nokia Corporation
  5. * Paul Walmsley
  6. *
  7. * Developed in collaboration with (alphabetical order): Benoit
  8. * Cousson, Kevin Hilman, Tony Lindgren, Rajendra Nayak, Vikram
  9. * Pandita, Sakari Poussa, Anand Sawant, Santosh Shilimkar, Richard
  10. * Woodruff
  11. *
  12. * This program is free software; you can redistribute it and/or modify
  13. * it under the terms of the GNU General Public License version 2 as
  14. * published by the Free Software Foundation.
  15. *
  16. * Eventually this type of functionality should either be
  17. * a) implemented via arch-specific pointers in platform_device
  18. * or
  19. * b) implemented as a proper omap_bus/omap_device in Linux, no more
  20. * platform_device
  21. *
  22. * omap_device differs from omap_hwmod in that it includes external
  23. * (e.g., board- and system-level) integration details. omap_hwmod
  24. * stores hardware data that is invariant for a given OMAP chip.
  25. *
  26. * To do:
  27. * - GPIO integration
  28. * - regulator integration
  29. *
  30. */
  31. #ifndef __ARCH_ARM_PLAT_OMAP_INCLUDE_MACH_OMAP_DEVICE_H
  32. #define __ARCH_ARM_PLAT_OMAP_INCLUDE_MACH_OMAP_DEVICE_H
  33. #include <linux/kernel.h>
  34. #include <linux/platform_device.h>
  35. #include <mach/omap_hwmod.h>
  36. /* omap_device._state values */
  37. #define OMAP_DEVICE_STATE_UNKNOWN 0
  38. #define OMAP_DEVICE_STATE_ENABLED 1
  39. #define OMAP_DEVICE_STATE_IDLE 2
  40. #define OMAP_DEVICE_STATE_SHUTDOWN 3
  41. /**
  42. * struct omap_device - omap_device wrapper for platform_devices
  43. * @pdev: platform_device
  44. * @hwmods: (one .. many per omap_device)
  45. * @hwmods_cnt: ARRAY_SIZE() of @hwmods
  46. * @pm_lats: ptr to an omap_device_pm_latency table
  47. * @pm_lats_cnt: ARRAY_SIZE() of what is passed to @pm_lats
  48. * @pm_lat_level: array index of the last odpl entry executed - -1 if never
  49. * @dev_wakeup_lat: dev wakeup latency in microseconds
  50. * @_dev_wakeup_lat_limit: dev wakeup latency limit in usec - set by OMAP PM
  51. * @_state: one of OMAP_DEVICE_STATE_* (see above)
  52. * @flags: device flags
  53. *
  54. * Integrates omap_hwmod data into Linux platform_device.
  55. *
  56. * Field names beginning with underscores are for the internal use of
  57. * the omap_device code.
  58. *
  59. */
  60. struct omap_device {
  61. struct platform_device pdev;
  62. struct omap_hwmod **hwmods;
  63. struct omap_device_pm_latency *pm_lats;
  64. u32 dev_wakeup_lat;
  65. u32 _dev_wakeup_lat_limit;
  66. u8 pm_lats_cnt;
  67. s8 pm_lat_level;
  68. u8 hwmods_cnt;
  69. u8 _state;
  70. };
  71. /* Device driver interface (call via platform_data fn ptrs) */
  72. int omap_device_enable(struct platform_device *pdev);
  73. int omap_device_idle(struct platform_device *pdev);
  74. int omap_device_shutdown(struct platform_device *pdev);
  75. /* Core code interface */
  76. int omap_device_count_resources(struct omap_device *od);
  77. int omap_device_fill_resources(struct omap_device *od, struct resource *res);
  78. struct omap_device *omap_device_build(const char *pdev_name, int pdev_id,
  79. struct omap_hwmod *oh, void *pdata,
  80. int pdata_len,
  81. struct omap_device_pm_latency *pm_lats,
  82. int pm_lats_cnt);
  83. struct omap_device *omap_device_build_ss(const char *pdev_name, int pdev_id,
  84. struct omap_hwmod **oh, int oh_cnt,
  85. void *pdata, int pdata_len,
  86. struct omap_device_pm_latency *pm_lats,
  87. int pm_lats_cnt);
  88. int omap_device_register(struct omap_device *od);
  89. /* OMAP PM interface */
  90. int omap_device_align_pm_lat(struct platform_device *pdev,
  91. u32 new_wakeup_lat_limit);
  92. struct powerdomain *omap_device_get_pwrdm(struct omap_device *od);
  93. /* Other */
  94. int omap_device_idle_hwmods(struct omap_device *od);
  95. int omap_device_enable_hwmods(struct omap_device *od);
  96. int omap_device_disable_clocks(struct omap_device *od);
  97. int omap_device_enable_clocks(struct omap_device *od);
  98. /*
  99. * Entries should be kept in latency order ascending
  100. *
  101. * deact_lat is the maximum number of microseconds required to complete
  102. * deactivate_func() at the device's slowest OPP.
  103. *
  104. * act_lat is the maximum number of microseconds required to complete
  105. * activate_func() at the device's slowest OPP.
  106. *
  107. * This will result in some suboptimal power management decisions at fast
  108. * OPPs, but avoids having to recompute all device power management decisions
  109. * if the system shifts from a fast OPP to a slow OPP (in order to meet
  110. * latency requirements).
  111. *
  112. * XXX should deactivate_func/activate_func() take platform_device pointers
  113. * rather than omap_device pointers?
  114. */
  115. struct omap_device_pm_latency {
  116. u32 deactivate_lat;
  117. int (*deactivate_func)(struct omap_device *od);
  118. u32 activate_lat;
  119. int (*activate_func)(struct omap_device *od);
  120. };
  121. #endif