/*
 * This file is auto-generated. Modifications will be lost.
 *
 * See https://android.googlesource.com/platform/bionic/+/master/libc/kernel/
 * for more information.
 */
#ifndef _UAPI_PISP_BE_CONFIG_H_
#define _UAPI_PISP_BE_CONFIG_H_
#include <linux/types.h>
#include "pisp_common.h"
#define PISP_BACK_END_INPUT_ALIGN 4u
#define PISP_BACK_END_COMPRESSED_ALIGN 8u
#define PISP_BACK_END_OUTPUT_MIN_ALIGN 16u
#define PISP_BACK_END_OUTPUT_MAX_ALIGN 64u
#define PISP_BACK_END_MIN_TILE_WIDTH 16u
#define PISP_BACK_END_MIN_TILE_HEIGHT 16u
#define PISP_BACK_END_NUM_OUTPUTS 2
#define PISP_BACK_END_HOG_OUTPUT 1
#define PISP_BACK_END_NUM_TILES 64
enum pisp_be_bayer_enable {
  PISP_BE_BAYER_ENABLE_INPUT = 0x000001,
  PISP_BE_BAYER_ENABLE_DECOMPRESS = 0x000002,
  PISP_BE_BAYER_ENABLE_DPC = 0x000004,
  PISP_BE_BAYER_ENABLE_GEQ = 0x000008,
  PISP_BE_BAYER_ENABLE_TDN_INPUT = 0x000010,
  PISP_BE_BAYER_ENABLE_TDN_DECOMPRESS = 0x000020,
  PISP_BE_BAYER_ENABLE_TDN = 0x000040,
  PISP_BE_BAYER_ENABLE_TDN_COMPRESS = 0x000080,
  PISP_BE_BAYER_ENABLE_TDN_OUTPUT = 0x000100,
  PISP_BE_BAYER_ENABLE_SDN = 0x000200,
  PISP_BE_BAYER_ENABLE_BLC = 0x000400,
  PISP_BE_BAYER_ENABLE_STITCH_INPUT = 0x000800,
  PISP_BE_BAYER_ENABLE_STITCH_DECOMPRESS = 0x001000,
  PISP_BE_BAYER_ENABLE_STITCH = 0x002000,
  PISP_BE_BAYER_ENABLE_STITCH_COMPRESS = 0x004000,
  PISP_BE_BAYER_ENABLE_STITCH_OUTPUT = 0x008000,
  PISP_BE_BAYER_ENABLE_WBG = 0x010000,
  PISP_BE_BAYER_ENABLE_CDN = 0x020000,
  PISP_BE_BAYER_ENABLE_LSC = 0x040000,
  PISP_BE_BAYER_ENABLE_TONEMAP = 0x080000,
  PISP_BE_BAYER_ENABLE_CAC = 0x100000,
  PISP_BE_BAYER_ENABLE_DEBIN = 0x200000,
  PISP_BE_BAYER_ENABLE_DEMOSAIC = 0x400000,
};
enum pisp_be_rgb_enable {
  PISP_BE_RGB_ENABLE_INPUT = 0x000001,
  PISP_BE_RGB_ENABLE_CCM = 0x000002,
  PISP_BE_RGB_ENABLE_SAT_CONTROL = 0x000004,
  PISP_BE_RGB_ENABLE_YCBCR = 0x000008,
  PISP_BE_RGB_ENABLE_FALSE_COLOUR = 0x000010,
  PISP_BE_RGB_ENABLE_SHARPEN = 0x000020,
  PISP_BE_RGB_ENABLE_YCBCR_INVERSE = 0x000080,
  PISP_BE_RGB_ENABLE_GAMMA = 0x000100,
  PISP_BE_RGB_ENABLE_CSC0 = 0x000200,
  PISP_BE_RGB_ENABLE_CSC1 = 0x000400,
  PISP_BE_RGB_ENABLE_DOWNSCALE0 = 0x001000,
  PISP_BE_RGB_ENABLE_DOWNSCALE1 = 0x002000,
  PISP_BE_RGB_ENABLE_RESAMPLE0 = 0x008000,
  PISP_BE_RGB_ENABLE_RESAMPLE1 = 0x010000,
  PISP_BE_RGB_ENABLE_OUTPUT0 = 0x040000,
  PISP_BE_RGB_ENABLE_OUTPUT1 = 0x080000,
  PISP_BE_RGB_ENABLE_HOG = 0x200000
};
#define PISP_BE_RGB_ENABLE_CSC(i) (PISP_BE_RGB_ENABLE_CSC0 << (i))
#define PISP_BE_RGB_ENABLE_DOWNSCALE(i) (PISP_BE_RGB_ENABLE_DOWNSCALE0 << (i))
#define PISP_BE_RGB_ENABLE_RESAMPLE(i) (PISP_BE_RGB_ENABLE_RESAMPLE0 << (i))
#define PISP_BE_RGB_ENABLE_OUTPUT(i) (PISP_BE_RGB_ENABLE_OUTPUT0 << (i))
enum pisp_be_dirty {
  PISP_BE_DIRTY_GLOBAL = 0x0001,
  PISP_BE_DIRTY_SH_FC_COMBINE = 0x0002,
  PISP_BE_DIRTY_CROP = 0x0004
};
struct pisp_be_global_config {
  __u32 bayer_enables;
  __u32 rgb_enables;
  __u8 bayer_order;
  __u8 pad[3];
} __attribute__((packed));
struct pisp_be_input_buffer_config {
  __u32 addr[3][2];
} __attribute__((packed));
struct pisp_be_dpc_config {
  __u8 coeff_level;
  __u8 coeff_range;
  __u8 pad;
#define PISP_BE_DPC_FLAG_FOLDBACK 1
  __u8 flags;
} __attribute__((packed));
struct pisp_be_geq_config {
  __u16 offset;
#define PISP_BE_GEQ_SHARPER (1U << 15)
#define PISP_BE_GEQ_SLOPE ((1 << 10) - 1)
  __u16 slope_sharper;
  __u16 min;
  __u16 max;
} __attribute__((packed));
struct pisp_be_tdn_input_buffer_config {
  __u32 addr[2];
} __attribute__((packed));
struct pisp_be_tdn_config {
  __u16 black_level;
  __u16 ratio;
  __u16 noise_constant;
  __u16 noise_slope;
  __u16 threshold;
  __u8 reset;
  __u8 pad;
} __attribute__((packed));
struct pisp_be_tdn_output_buffer_config {
  __u32 addr[2];
} __attribute__((packed));
struct pisp_be_sdn_config {
  __u16 black_level;
  __u8 leakage;
  __u8 pad;
  __u16 noise_constant;
  __u16 noise_slope;
  __u16 noise_constant2;
  __u16 noise_slope2;
} __attribute__((packed));
struct pisp_be_stitch_input_buffer_config {
  __u32 addr[2];
} __attribute__((packed));
#define PISP_BE_STITCH_STREAMING_LONG 0x8000
#define PISP_BE_STITCH_EXPOSURE_RATIO_MASK 0x7fff
struct pisp_be_stitch_config {
  __u16 threshold_lo;
  __u8 threshold_diff_power;
  __u8 pad;
  __u16 exposure_ratio;
  __u8 motion_threshold_256;
  __u8 motion_threshold_recip;
} __attribute__((packed));
struct pisp_be_stitch_output_buffer_config {
  __u32 addr[2];
} __attribute__((packed));
struct pisp_be_cdn_config {
  __u16 thresh;
  __u8 iir_strength;
  __u8 g_adjust;
} __attribute__((packed));
#define PISP_BE_LSC_LOG_GRID_SIZE 5
#define PISP_BE_LSC_GRID_SIZE (1 << PISP_BE_LSC_LOG_GRID_SIZE)
#define PISP_BE_LSC_STEP_PRECISION 18
struct pisp_be_lsc_config {
  __u16 grid_step_x;
  __u16 grid_step_y;
#define PISP_BE_LSC_LUT_SIZE (PISP_BE_LSC_GRID_SIZE + 1)
  __u32 lut_packed[PISP_BE_LSC_LUT_SIZE][PISP_BE_LSC_LUT_SIZE];
} __attribute__((packed));
struct pisp_be_lsc_extra {
  __u16 offset_x;
  __u16 offset_y;
} __attribute__((packed));
#define PISP_BE_CAC_LOG_GRID_SIZE 3
#define PISP_BE_CAC_GRID_SIZE (1 << PISP_BE_CAC_LOG_GRID_SIZE)
#define PISP_BE_CAC_STEP_PRECISION 20
struct pisp_be_cac_config {
  __u16 grid_step_x;
  __u16 grid_step_y;
#define PISP_BE_CAC_LUT_SIZE (PISP_BE_CAC_GRID_SIZE + 1)
  __s8 lut[PISP_BE_CAC_LUT_SIZE][PISP_BE_CAC_LUT_SIZE][2][2];
} __attribute__((packed));
struct pisp_be_cac_extra {
  __u16 offset_x;
  __u16 offset_y;
} __attribute__((packed));
#define PISP_BE_DEBIN_NUM_COEFFS 4
struct pisp_be_debin_config {
  __s8 coeffs[PISP_BE_DEBIN_NUM_COEFFS];
  __s8 h_enable;
  __s8 v_enable;
  __s8 pad[2];
} __attribute__((packed));
#define PISP_BE_TONEMAP_LUT_SIZE 64
struct pisp_be_tonemap_config {
  __u16 detail_constant;
  __u16 detail_slope;
  __u16 iir_strength;
  __u16 strength;
  __u32 lut[PISP_BE_TONEMAP_LUT_SIZE];
} __attribute__((packed));
struct pisp_be_demosaic_config {
  __u8 sharper;
  __u8 fc_mode;
  __u8 pad[2];
} __attribute__((packed));
struct pisp_be_ccm_config {
  __s16 coeffs[9];
  __u8 pad[2];
  __s32 offsets[3];
} __attribute__((packed));
struct pisp_be_sat_control_config {
  __u8 shift_r;
  __u8 shift_g;
  __u8 shift_b;
  __u8 pad;
} __attribute__((packed));
struct pisp_be_false_colour_config {
  __u8 distance;
  __u8 pad[3];
} __attribute__((packed));
#define PISP_BE_SHARPEN_SIZE 5
#define PISP_BE_SHARPEN_FUNC_NUM_POINTS 9
struct pisp_be_sharpen_config {
  __s8 kernel0[PISP_BE_SHARPEN_SIZE * PISP_BE_SHARPEN_SIZE];
  __s8 pad0[3];
  __s8 kernel1[PISP_BE_SHARPEN_SIZE * PISP_BE_SHARPEN_SIZE];
  __s8 pad1[3];
  __s8 kernel2[PISP_BE_SHARPEN_SIZE * PISP_BE_SHARPEN_SIZE];
  __s8 pad2[3];
  __s8 kernel3[PISP_BE_SHARPEN_SIZE * PISP_BE_SHARPEN_SIZE];
  __s8 pad3[3];
  __s8 kernel4[PISP_BE_SHARPEN_SIZE * PISP_BE_SHARPEN_SIZE];
  __s8 pad4[3];
  __u16 threshold_offset0;
  __u16 threshold_slope0;
  __u16 scale0;
  __u16 pad5;
  __u16 threshold_offset1;
  __u16 threshold_slope1;
  __u16 scale1;
  __u16 pad6;
  __u16 threshold_offset2;
  __u16 threshold_slope2;
  __u16 scale2;
  __u16 pad7;
  __u16 threshold_offset3;
  __u16 threshold_slope3;
  __u16 scale3;
  __u16 pad8;
  __u16 threshold_offset4;
  __u16 threshold_slope4;
  __u16 scale4;
  __u16 pad9;
  __u16 positive_strength;
  __u16 positive_pre_limit;
  __u16 positive_func[PISP_BE_SHARPEN_FUNC_NUM_POINTS];
  __u16 positive_limit;
  __u16 negative_strength;
  __u16 negative_pre_limit;
  __u16 negative_func[PISP_BE_SHARPEN_FUNC_NUM_POINTS];
  __u16 negative_limit;
  __u8 enables;
  __u8 white;
  __u8 black;
  __u8 grey;
} __attribute__((packed));
struct pisp_be_sh_fc_combine_config {
  __u8 y_factor;
  __u8 c1_factor;
  __u8 c2_factor;
  __u8 pad;
} __attribute__((packed));
#define PISP_BE_GAMMA_LUT_SIZE 64
struct pisp_be_gamma_config {
  __u32 lut[PISP_BE_GAMMA_LUT_SIZE];
} __attribute__((packed));
struct pisp_be_crop_config {
  __u16 offset_x, offset_y;
  __u16 width, height;
} __attribute__((packed));
#define PISP_BE_RESAMPLE_FILTER_SIZE 96
struct pisp_be_resample_config {
  __u16 scale_factor_h, scale_factor_v;
  __s16 coef[PISP_BE_RESAMPLE_FILTER_SIZE];
} __attribute__((packed));
struct pisp_be_resample_extra {
  __u16 scaled_width;
  __u16 scaled_height;
  __s16 initial_phase_h[3];
  __s16 initial_phase_v[3];
} __attribute__((packed));
struct pisp_be_downscale_config {
  __u16 scale_factor_h;
  __u16 scale_factor_v;
  __u16 scale_recip_h;
  __u16 scale_recip_v;
} __attribute__((packed));
struct pisp_be_downscale_extra {
  __u16 scaled_width;
  __u16 scaled_height;
} __attribute__((packed));
struct pisp_be_hog_config {
  __u8 compute_signed;
  __u8 channel_mix[3];
  __u32 stride;
} __attribute__((packed));
struct pisp_be_axi_config {
  __u8 r_qos;
  __u8 r_cache_prot;
  __u8 w_qos;
  __u8 w_cache_prot;
} __attribute__((packed));
enum pisp_be_transform {
  PISP_BE_TRANSFORM_NONE = 0x0,
  PISP_BE_TRANSFORM_HFLIP = 0x1,
  PISP_BE_TRANSFORM_VFLIP = 0x2,
  PISP_BE_TRANSFORM_ROT180 = (PISP_BE_TRANSFORM_HFLIP | PISP_BE_TRANSFORM_VFLIP)
};
struct pisp_be_output_format_config {
  struct pisp_image_format_config image;
  __u8 transform;
  __u8 pad[3];
  __u16 lo;
  __u16 hi;
  __u16 lo2;
  __u16 hi2;
} __attribute__((packed));
struct pisp_be_output_buffer_config {
  __u32 addr[3][2];
} __attribute__((packed));
struct pisp_be_hog_buffer_config {
  __u32 addr[2];
} __attribute__((packed));
struct pisp_be_config {
  struct pisp_be_input_buffer_config input_buffer;
  struct pisp_be_tdn_input_buffer_config tdn_input_buffer;
  struct pisp_be_stitch_input_buffer_config stitch_input_buffer;
  struct pisp_be_tdn_output_buffer_config tdn_output_buffer;
  struct pisp_be_stitch_output_buffer_config stitch_output_buffer;
  struct pisp_be_output_buffer_config output_buffer[PISP_BACK_END_NUM_OUTPUTS];
  struct pisp_be_hog_buffer_config hog_buffer;
  struct pisp_be_global_config global;
  struct pisp_image_format_config input_format;
  struct pisp_decompress_config decompress;
  struct pisp_be_dpc_config dpc;
  struct pisp_be_geq_config geq;
  struct pisp_image_format_config tdn_input_format;
  struct pisp_decompress_config tdn_decompress;
  struct pisp_be_tdn_config tdn;
  struct pisp_compress_config tdn_compress;
  struct pisp_image_format_config tdn_output_format;
  struct pisp_be_sdn_config sdn;
  struct pisp_bla_config blc;
  struct pisp_compress_config stitch_compress;
  struct pisp_image_format_config stitch_output_format;
  struct pisp_image_format_config stitch_input_format;
  struct pisp_decompress_config stitch_decompress;
  struct pisp_be_stitch_config stitch;
  struct pisp_be_lsc_config lsc;
  struct pisp_wbg_config wbg;
  struct pisp_be_cdn_config cdn;
  struct pisp_be_cac_config cac;
  struct pisp_be_debin_config debin;
  struct pisp_be_tonemap_config tonemap;
  struct pisp_be_demosaic_config demosaic;
  struct pisp_be_ccm_config ccm;
  struct pisp_be_sat_control_config sat_control;
  struct pisp_be_ccm_config ycbcr;
  struct pisp_be_sharpen_config sharpen;
  struct pisp_be_false_colour_config false_colour;
  struct pisp_be_sh_fc_combine_config sh_fc_combine;
  struct pisp_be_ccm_config ycbcr_inverse;
  struct pisp_be_gamma_config gamma;
  struct pisp_be_ccm_config csc[PISP_BACK_END_NUM_OUTPUTS];
  struct pisp_be_downscale_config downscale[PISP_BACK_END_NUM_OUTPUTS];
  struct pisp_be_resample_config resample[PISP_BACK_END_NUM_OUTPUTS];
  struct pisp_be_output_format_config output_format[PISP_BACK_END_NUM_OUTPUTS];
  struct pisp_be_hog_config hog;
  struct pisp_be_axi_config axi;
  struct pisp_be_lsc_extra lsc_extra;
  struct pisp_be_cac_extra cac_extra;
  struct pisp_be_downscale_extra downscale_extra[PISP_BACK_END_NUM_OUTPUTS];
  struct pisp_be_resample_extra resample_extra[PISP_BACK_END_NUM_OUTPUTS];
  struct pisp_be_crop_config crop;
  struct pisp_image_format_config hog_format;
  __u32 dirty_flags_bayer;
  __u32 dirty_flags_rgb;
  __u32 dirty_flags_extra;
} __attribute__((packed));
enum pisp_tile_edge {
  PISP_LEFT_EDGE = (1 << 0),
  PISP_RIGHT_EDGE = (1 << 1),
  PISP_TOP_EDGE = (1 << 2),
  PISP_BOTTOM_EDGE = (1 << 3)
};
struct pisp_tile {
  __u8 edge;
  __u8 pad0[3];
  __u32 input_addr_offset;
  __u32 input_addr_offset2;
  __u16 input_offset_x;
  __u16 input_offset_y;
  __u16 input_width;
  __u16 input_height;
  __u32 tdn_input_addr_offset;
  __u32 tdn_output_addr_offset;
  __u32 stitch_input_addr_offset;
  __u32 stitch_output_addr_offset;
  __u32 lsc_grid_offset_x;
  __u32 lsc_grid_offset_y;
  __u32 cac_grid_offset_x;
  __u32 cac_grid_offset_y;
  __u16 crop_x_start[PISP_BACK_END_NUM_OUTPUTS];
  __u16 crop_x_end[PISP_BACK_END_NUM_OUTPUTS];
  __u16 crop_y_start[PISP_BACK_END_NUM_OUTPUTS];
  __u16 crop_y_end[PISP_BACK_END_NUM_OUTPUTS];
  __u16 downscale_phase_x[3 * PISP_BACK_END_NUM_OUTPUTS];
  __u16 downscale_phase_y[3 * PISP_BACK_END_NUM_OUTPUTS];
  __u16 resample_in_width[PISP_BACK_END_NUM_OUTPUTS];
  __u16 resample_in_height[PISP_BACK_END_NUM_OUTPUTS];
  __u16 resample_phase_x[3 * PISP_BACK_END_NUM_OUTPUTS];
  __u16 resample_phase_y[3 * PISP_BACK_END_NUM_OUTPUTS];
  __u16 output_offset_x[PISP_BACK_END_NUM_OUTPUTS];
  __u16 output_offset_y[PISP_BACK_END_NUM_OUTPUTS];
  __u16 output_width[PISP_BACK_END_NUM_OUTPUTS];
  __u16 output_height[PISP_BACK_END_NUM_OUTPUTS];
  __u32 output_addr_offset[PISP_BACK_END_NUM_OUTPUTS];
  __u32 output_addr_offset2[PISP_BACK_END_NUM_OUTPUTS];
  __u32 output_hog_addr_offset;
} __attribute__((packed));
struct pisp_be_tiles_config {
  struct pisp_be_config config;
  struct pisp_tile tiles[PISP_BACK_END_NUM_TILES];
  __u32 num_tiles;
} __attribute__((packed));
#endif
