Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * Copyright (C) 2018 Texas Instruments Incorporated - https://www.ti.com/
0004  * Author: Jyri Sarha <jsarha@ti.com>
0005  */
0006 
0007 #ifndef __TIDSS_DISPC_COEF_H__
0008 #define __TIDSS_DISPC_COEF_H__
0009 
0010 #include <linux/types.h>
0011 
0012 struct tidss_scale_coefs {
0013     s16 c2[16];
0014     s16 c1[16];
0015     u16 c0[9];
0016 };
0017 
0018 const struct tidss_scale_coefs *tidss_get_scale_coefs(struct device *dev,
0019                               u32 firinc,
0020                               bool five_taps);
0021 
0022 #endif