1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3  * Copyright (c) 2022 MediaTek Inc.
4  * Author: Ping-Hsun Wu <ping-hsun.wu@mediatek.com>
5  */
6 
7 #ifndef __MDP_REG_CCORR_H__
8 #define __MDP_REG_CCORR_H__
9 
10 #define MDP_CCORR_EN                0x000
11 #define MDP_CCORR_CFG               0x020
12 #define MDP_CCORR_SIZE              0x030
13 
14 /* MASK */
15 #define MDP_CCORR_EN_MASK           0x00000001
16 #define MDP_CCORR_CFG_MASK          0x70001317
17 #define MDP_CCORR_SIZE_MASK         0x1fff1fff
18 
19 #endif  // __MDP_REG_CCORR_H__
20