WIP FPC-III support
[linux/fpc-iii.git] / drivers / gpu / drm / tidss / tidss_scale_coefs.h
blob9c560d0fdac0546587d3eed67aff0b023d94e764
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com/
4 * Author: Jyri Sarha <jsarha@ti.com>
5 */
7 #ifndef __TIDSS_DISPC_COEF_H__
8 #define __TIDSS_DISPC_COEF_H__
10 #include <linux/types.h>
12 struct tidss_scale_coefs {
13 s16 c2[16];
14 s16 c1[16];
15 u16 c0[9];
18 const struct tidss_scale_coefs *tidss_get_scale_coefs(struct device *dev,
19 u32 firinc,
20 bool five_taps);
22 #endif