PageRenderTime 61ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/drivers/gpu/arm/mali400/mali/common/mali_session.h

https://gitlab.com/buktemirlnk/mirrors
C Header | 136 lines | 90 code | 28 blank | 18 comment | 0 complexity | 6637d30277c56e9fdd30ee3e7825f452 MD5 | raw file
  1. /*
  2. * Copyright (C) 2010-2017 ARM Limited. All rights reserved.
  3. *
  4. * This program is free software and is provided to you under the terms of the GNU General Public License version 2
  5. * as published by the Free Software Foundation, and any use by you of this program is subject to the terms of such GNU licence.
  6. *
  7. * A copy of the licence is included with the program, and can also be obtained from Free Software
  8. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  9. */
  10. #ifndef __MALI_SESSION_H__
  11. #define __MALI_SESSION_H__
  12. #include "mali_mmu_page_directory.h"
  13. #include "mali_osk.h"
  14. #include "mali_osk_list.h"
  15. #include "mali_memory_types.h"
  16. #include "mali_memory_manager.h"
  17. struct mali_timeline_system;
  18. struct mali_soft_system;
  19. /* Number of frame builder job lists per session. */
  20. #define MALI_PP_JOB_FB_LOOKUP_LIST_SIZE 16
  21. #define MALI_PP_JOB_FB_LOOKUP_LIST_MASK (MALI_PP_JOB_FB_LOOKUP_LIST_SIZE - 1)
  22. /*Max pending big job allowed in kernel*/
  23. #define MALI_MAX_PENDING_BIG_JOB (2)
  24. struct mali_session_data {
  25. _mali_osk_notification_queue_t *ioctl_queue;
  26. _mali_osk_wait_queue_t *wait_queue; /**The wait queue to wait for the number of pp job become 0.*/
  27. _mali_osk_mutex_t *memory_lock; /**< Lock protecting the vm manipulation */
  28. _mali_osk_mutex_t *cow_lock; /** < Lock protecting the cow memory free manipulation */
  29. #if 0
  30. _mali_osk_list_t memory_head; /**< Track all the memory allocated in this session, for freeing on abnormal termination */
  31. #endif
  32. struct mali_page_directory *page_directory; /**< MMU page directory for this session */
  33. _MALI_OSK_LIST_HEAD(link); /**< Link for list of all sessions */
  34. _MALI_OSK_LIST_HEAD(pp_job_list); /**< List of all PP jobs on this session */
  35. #if defined(CONFIG_MALI_DVFS)
  36. _mali_osk_atomic_t number_of_window_jobs; /**< Record the window jobs completed on this session in a period */
  37. #endif
  38. _mali_osk_atomic_t number_of_pp_jobs; /** < Record the pp jobs on this session */
  39. _mali_osk_list_t pp_job_fb_lookup_list[MALI_PP_JOB_FB_LOOKUP_LIST_SIZE]; /**< List of PP job lists per frame builder id. Used to link jobs from same frame builder. */
  40. struct mali_soft_job_system *soft_job_system; /**< Soft job system for this session. */
  41. struct mali_timeline_system *timeline_system; /**< Timeline system for this session. */
  42. mali_bool is_aborting; /**< MALI_TRUE if the session is aborting, MALI_FALSE if not. */
  43. mali_bool use_high_priority_job_queue; /**< If MALI_TRUE, jobs added from this session will use the high priority job queues. */
  44. u32 pid;
  45. char *comm;
  46. atomic_t mali_mem_array[MALI_MEM_TYPE_MAX]; /**< The array to record mem types' usage for this session. */
  47. atomic_t mali_mem_allocated_pages; /** The current allocated mali memory pages, which include mali os memory and mali dedicated memory.*/
  48. size_t max_mali_mem_allocated_size; /**< The past max mali memory allocated size, which include mali os memory and mali dedicated memory. */
  49. /* Added for new memroy system */
  50. struct mali_allocation_manager allocation_mgr;
  51. #if defined(CONFIG_MALI_DMA_BUF_FENCE)
  52. u32 fence_context; /** < The execution dma fence context this fence is run on. */
  53. _mali_osk_atomic_t fence_seqno; /** < Alinear increasing sequence number for this dma fence context. */
  54. #endif
  55. };
  56. _mali_osk_errcode_t mali_session_initialize(void);
  57. void mali_session_terminate(void);
  58. /* List of all sessions. Actual list head in mali_kernel_core.c */
  59. extern _mali_osk_list_t mali_sessions;
  60. /* Lock to protect modification and access to the mali_sessions list */
  61. extern _mali_osk_spinlock_irq_t *mali_sessions_lock;
  62. MALI_STATIC_INLINE void mali_session_lock(void)
  63. {
  64. _mali_osk_spinlock_irq_lock(mali_sessions_lock);
  65. }
  66. MALI_STATIC_INLINE void mali_session_unlock(void)
  67. {
  68. _mali_osk_spinlock_irq_unlock(mali_sessions_lock);
  69. }
  70. void mali_session_add(struct mali_session_data *session);
  71. void mali_session_remove(struct mali_session_data *session);
  72. u32 mali_session_get_count(void);
  73. mali_bool mali_session_pp_job_is_empty(void *data);
  74. wait_queue_head_t *mali_session_get_wait_queue(void);
  75. #define MALI_SESSION_FOREACH(session, tmp, link) \
  76. _MALI_OSK_LIST_FOREACHENTRY(session, tmp, &mali_sessions, struct mali_session_data, link)
  77. MALI_STATIC_INLINE struct mali_page_directory *mali_session_get_page_directory(struct mali_session_data *session)
  78. {
  79. return session->page_directory;
  80. }
  81. MALI_STATIC_INLINE void mali_session_memory_lock(struct mali_session_data *session)
  82. {
  83. MALI_DEBUG_ASSERT_POINTER(session);
  84. _mali_osk_mutex_wait(session->memory_lock);
  85. }
  86. MALI_STATIC_INLINE void mali_session_memory_unlock(struct mali_session_data *session)
  87. {
  88. MALI_DEBUG_ASSERT_POINTER(session);
  89. _mali_osk_mutex_signal(session->memory_lock);
  90. }
  91. MALI_STATIC_INLINE void mali_session_send_notification(struct mali_session_data *session, _mali_osk_notification_t *object)
  92. {
  93. _mali_osk_notification_queue_send(session->ioctl_queue, object);
  94. }
  95. #if defined(CONFIG_MALI_DVFS)
  96. MALI_STATIC_INLINE void mali_session_inc_num_window_jobs(struct mali_session_data *session)
  97. {
  98. MALI_DEBUG_ASSERT_POINTER(session);
  99. _mali_osk_atomic_inc(&session->number_of_window_jobs);
  100. }
  101. /*
  102. * Get the max completed window jobs from all active session,
  103. * which will be used in window render frame per sec calculate
  104. */
  105. u32 mali_session_max_window_num(void);
  106. #endif
  107. void mali_session_memory_tracking(_mali_osk_print_ctx *print_ctx);
  108. #endif /* __MALI_SESSION_H__ */