Contributors: 10
Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
Harry Wentland |
36 |
34.29% |
3 |
20.00% |
Dillon Varone |
28 |
26.67% |
4 |
26.67% |
Tomasz Siemek |
22 |
20.95% |
1 |
6.67% |
Bhawanpreet Lakha |
6 |
5.71% |
1 |
6.67% |
Alex Deucher |
6 |
5.71% |
1 |
6.67% |
Qingqing Zhuo |
2 |
1.90% |
1 |
6.67% |
Sherry |
2 |
1.90% |
1 |
6.67% |
Stylon Wang |
1 |
0.95% |
1 |
6.67% |
Dave Airlie |
1 |
0.95% |
1 |
6.67% |
rodrigosiqueira |
1 |
0.95% |
1 |
6.67% |
Total |
105 |
|
15 |
|
/*
* Copyright 2023 Advanced Micro Devices, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*
* Authors: AMD
*
*/
#ifndef _DC_PLANE_H_
#define _DC_PLANE_H_
#include "dc_hw_types.h"
union dc_plane_status_update_flags {
struct {
uint32_t address : 1;
} bits;
uint32_t raw;
};
struct dc_plane_state *dc_create_plane_state(const struct dc *dc);
const struct dc_plane_status *dc_plane_get_status(
const struct dc_plane_state *plane_state,
union dc_plane_status_update_flags flags);
void dc_plane_state_retain(struct dc_plane_state *plane_state);
void dc_plane_state_release(struct dc_plane_state *plane_state);
void dc_plane_force_dcc_and_tiling_disable(struct dc_plane_state *plane_state,
bool clear_tiling);
void dc_plane_copy_config(struct dc_plane_state *dst, const struct dc_plane_state *src);
#endif /* _DC_PLANE_H_ */