162306a36Sopenharmony_ci/* 262306a36Sopenharmony_ci * Copyright (C) 2017 Jernej Skrabec <jernej.skrabec@siol.net> 362306a36Sopenharmony_ci * 462306a36Sopenharmony_ci * This file is licensed under the terms of the GNU General Public 562306a36Sopenharmony_ci * License version 2. This program is licensed "as is" without any 662306a36Sopenharmony_ci * warranty of any kind, whether express or implied. 762306a36Sopenharmony_ci */ 862306a36Sopenharmony_ci 962306a36Sopenharmony_ci#ifndef _SUN8I_UI_SCALER_H_ 1062306a36Sopenharmony_ci#define _SUN8I_UI_SCALER_H_ 1162306a36Sopenharmony_ci 1262306a36Sopenharmony_ci#include "sun8i_mixer.h" 1362306a36Sopenharmony_ci 1462306a36Sopenharmony_ci#define DE2_UI_SCALER_UNIT_SIZE 0x10000 1562306a36Sopenharmony_ci#define DE3_UI_SCALER_UNIT_SIZE 0x08000 1662306a36Sopenharmony_ci 1762306a36Sopenharmony_ci/* this two macros assumes 16 fractional bits which is standard in DRM */ 1862306a36Sopenharmony_ci#define SUN8I_UI_SCALER_SCALE_MIN 1 1962306a36Sopenharmony_ci#define SUN8I_UI_SCALER_SCALE_MAX ((1UL << 20) - 1) 2062306a36Sopenharmony_ci 2162306a36Sopenharmony_ci#define SUN8I_UI_SCALER_SCALE_FRAC 20 2262306a36Sopenharmony_ci#define SUN8I_UI_SCALER_PHASE_FRAC 20 2362306a36Sopenharmony_ci#define SUN8I_UI_SCALER_COEFF_COUNT 16 2462306a36Sopenharmony_ci#define SUN8I_UI_SCALER_SIZE(w, h) (((h) - 1) << 16 | ((w) - 1)) 2562306a36Sopenharmony_ci 2662306a36Sopenharmony_ci#define SUN8I_SCALER_GSU_CTRL(base) ((base) + 0x0) 2762306a36Sopenharmony_ci#define SUN8I_SCALER_GSU_OUTSIZE(base) ((base) + 0x40) 2862306a36Sopenharmony_ci#define SUN8I_SCALER_GSU_INSIZE(base) ((base) + 0x80) 2962306a36Sopenharmony_ci#define SUN8I_SCALER_GSU_HSTEP(base) ((base) + 0x88) 3062306a36Sopenharmony_ci#define SUN8I_SCALER_GSU_VSTEP(base) ((base) + 0x8c) 3162306a36Sopenharmony_ci#define SUN8I_SCALER_GSU_HPHASE(base) ((base) + 0x90) 3262306a36Sopenharmony_ci#define SUN8I_SCALER_GSU_VPHASE(base) ((base) + 0x98) 3362306a36Sopenharmony_ci#define SUN8I_SCALER_GSU_HCOEFF(base, index) ((base) + 0x200 + 0x4 * (index)) 3462306a36Sopenharmony_ci 3562306a36Sopenharmony_ci#define SUN8I_SCALER_GSU_CTRL_EN BIT(0) 3662306a36Sopenharmony_ci#define SUN8I_SCALER_GSU_CTRL_COEFF_RDY BIT(4) 3762306a36Sopenharmony_ci 3862306a36Sopenharmony_civoid sun8i_ui_scaler_enable(struct sun8i_mixer *mixer, int layer, bool enable); 3962306a36Sopenharmony_civoid sun8i_ui_scaler_setup(struct sun8i_mixer *mixer, int layer, 4062306a36Sopenharmony_ci u32 src_w, u32 src_h, u32 dst_w, u32 dst_h, 4162306a36Sopenharmony_ci u32 hscale, u32 vscale, u32 hphase, u32 vphase); 4262306a36Sopenharmony_ci 4362306a36Sopenharmony_ci#endif 44