blob: c16111e04fa3c64178966c1f5698bbd6d9f92f4c [file] [log] [blame]
Ray Zhangb59a9ec2019-04-25 19:19:38 +08001/*
2* Copyright (c) 2019, The Linux Foundation. All rights reserved.
3*
4* Redistribution and use in source and binary forms, with or without modification, are permitted
5* provided that the following conditions are met:
6* * Redistributions of source code must retain the above copyright notice, this list of
7* conditions and the following disclaimer.
8* * Redistributions in binary form must reproduce the above copyright notice, this list of
9* conditions and the following disclaimer in the documentation and/or other materials provided
10* with the distribution.
11* * Neither the name of The Linux Foundation nor the names of its contributors may be used to
12* endorse or promote products derived from this software without specific prior written
13* permission.
14*
15* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17* NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE
18* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
19* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
20* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
21* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
22* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
23*/
24
25/*! @file smomo.h
26 @brief Interface file for SmoMo which defines the public interface exposed to SmoMo clients.
27
28 @details SmoMo clients use these interfaces to feed SmoMo required info like frame rate, refresh
29 rate, these info are used to update SmoMo internal state.
30*/
31
32#ifndef __SMOMO_INTERFACE_H__
33#define __SMOMO_INTERFACE_H__
34
35#include <sys/types.h>
36
37#include <vector>
38#include <string>
39
40namespace smomo {
41
Ray Zhang7c96b4a2019-08-07 19:23:17 +080042#define SMOMO_LIBRARY_NAME "libsmomo.qti.so"
43#define CREATE_SMOMO_INTERFACE_NAME "CreateSmomoInterface"
44#define DESTROY_SMOMO_INTERFACE_NAME "DestroySmomoInterface"
45
46#define SMOMO_REVISION_MAJOR (1)
47#define SMOMO_REVISION_MINOR (0)
48#define SMOMO_VERSION_TAG ((uint16_t) ((SMOMO_REVISION_MAJOR << 8) \
49 | SMOMO_REVISION_MINOR))
50
Ray Zhangb59a9ec2019-04-25 19:19:38 +080051typedef int64_t nsecs_t;
52
53/*! @brief This structure defines the layer stats required by SmoMo.
54
55 @sa SmomoIntf::updateSmomoState
56*/
57struct SmomoLayerStats {
58 std::string name; // layer full name
Ray Zhang7c96b4a2019-08-07 19:23:17 +080059 int32_t id; // layer ID
Ray Zhangb59a9ec2019-04-25 19:19:38 +080060};
61
62/*! @brief This structure defines the buffer stats required by SmoMo.
63
64 @sa SmomoIntf::CollectLayerStats
65 @sa SmomoIntf::ShouldPresentNow
66*/
67struct SmomoBufferStats {
Ray Zhang7c96b4a2019-08-07 19:23:17 +080068 int32_t id; // layer ID
Ray Zhangb59a9ec2019-04-25 19:19:38 +080069 int32_t queued_frames; // queued frame count of this layer
70 bool auto_timestamp; // whether timestamp was generated automatically
71 nsecs_t timestamp; // layer buffer's timestamp
Ray Zhang7c96b4a2019-08-07 19:23:17 +080072 nsecs_t dequeue_latency; // last dequeue duration
Ray Zhangb59a9ec2019-04-25 19:19:38 +080073};
74
75/*! @brief SmoMo interface implemented by SmoMo library.
76
77 @details This class declares prototype for SmoMo public interfaces which must be
78 implemented by SmoMo library. SmoMo clients will use these methods to feed required
79 info to SmoMo implementation.
80*/
81class SmomoIntf {
82 public:
83 virtual ~SmomoIntf() = default;
84
85 /*! @brief Update SmoMo internal state.
86
87 @details This function is called once per each composition so that required layer info are feed
88 to SmoMo, the SmoMo uses these info to update its internal state.
89
90 @param[in] layers \link SmomoLayerStats \endlink
91 @param[in] refresh_rate current display refresh rate
92
93 @return \link void \endlink
94 */
95 virtual void UpdateSmomoState(const std::vector<SmomoLayerStats> &layers,
96 float refresh_rate) = 0;
97
98 /*! @brief Collect layer buffer stats.
99
100 @details This function is called once new buffer is ready for this layer. It's used to collect
101 layer's buffer stats for SmoMo.
102
103 @param[in] \link SmomoBufferStats \endlink
104
105 @return \link void \endlink
106 */
107 virtual void CollectLayerStats(const SmomoBufferStats &buffer_stats) = 0;
108
109 /*! @brief Is this layer buffer ready to present.
110
111 @details This function is called by SmoMo clients used to check whether this layer buffer is
112 due to present.
113
114 @param[in] \link SmomoBufferStats \endlink
115 @param[in] next_vsync_time When next VSYNC arrives
116
117 @return \link bool \endlink
118 */
119 virtual bool ShouldPresentNow(const SmomoBufferStats &buffer_stats,
120 const nsecs_t next_vsync_time) = 0;
121
122 /*! @brief Change refresh rate callback type definition.
123 */
124 using ChangeRefreshRateCallback = std::function<void(int32_t)>;
125
126 /*! @brief Set the callback used by SmoMo to change display refresh rate.
127
128 @details This function is called by SmoMo clients used to set the refresh rate callback.
129
130 @param[in] callback \link ChangeRefreshRateCallback \endlink
131
132 @return \link void \endlink
133 */
134 virtual void SetChangeRefreshRateCallback(
135 const ChangeRefreshRateCallback& callback) = 0;
136
137 /*! @brief Set the refersh rates supported by display.
138
139 @details This function is called to tell SmoMo what refresh rates this display can suport.
140
Ray Zhang7c96b4a2019-08-07 19:23:17 +0800141 @param[in] refresh_rates The refresh rates supported by the display
Ray Zhangb59a9ec2019-04-25 19:19:38 +0800142
143 @return \link void \endlink
144 */
145 virtual void SetDisplayRefreshRates(const std::vector<float> &refresh_rates) = 0;
Sushil Chauhana69888f2020-04-17 17:40:57 -0700146
147 /*! @brief Get the current frame rate from SmoMo.
148
149 @details This function is called by SmoMo client to query the current frame rate, which is
150 based on the internal state of SmoMo. Client needs to call the UpdateSmomoState API before
151 calling this function. SmoMo only returns a valid frame rate when it's settled to a state.
152
153 @return > 0 if valid, -1 if invalid.
154
155 @return \link int \endlink
156 */
157 virtual int GetFrameRate() = 0;
Ray Zhangb59a9ec2019-04-25 19:19:38 +0800158};
159
Ray Zhang7c96b4a2019-08-07 19:23:17 +0800160typedef bool (*CreateSmomoInterface)(uint16_t version, SmomoIntf **interface);
161typedef void (*DestroySmomoInterface)(SmomoIntf *interface);
162
Ray Zhangb59a9ec2019-04-25 19:19:38 +0800163} // namespace smomo
164
165#endif // __SMOMO_INTERFACE_H__