Merge tag 'io_uring-5.11-2021-01-16' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / drivers / gpu / drm / sti / sti_awg_utils.h
blob8ddfdc049b103e2b5e1296d5786c2351e1f0e5df
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Copyright (C) STMicroelectronics SA 2014
4 * Author: Vincent Abriou <vincent.abriou@st.com> for STMicroelectronics.
5 */
7 #ifndef _STI_AWG_UTILS_H_
8 #define _STI_AWG_UTILS_H_
10 #include <linux/types.h>
12 #define AWG_MAX_INST 64
14 struct awg_code_generation_params {
15 u32 *ram_code;
16 u8 instruction_offset;
19 struct awg_timing {
20 u32 total_lines;
21 u32 active_lines;
22 u32 blanking_lines;
23 u32 trailing_lines;
24 u32 total_pixels;
25 u32 active_pixels;
26 u32 blanking_pixels;
27 u32 trailing_pixels;
28 u32 blanking_level;
31 int sti_awg_generate_code_data_enable_mode(
32 struct awg_code_generation_params *fw_gen_params,
33 struct awg_timing *timing);
34 #endif