mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
141 lines
5.0 KiB
C
141 lines
5.0 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include <sys/param.h>
|
|
#include <string.h>
|
|
#include "sdkconfig.h"
|
|
#include "soc/soc_caps.h"
|
|
#include "hal/assert.h"
|
|
#include "hal/log.h"
|
|
#include "hal/isp_hal.h"
|
|
#include "hal/isp_ll.h"
|
|
#include "hal/isp_types.h"
|
|
#include "hal/hal_utils.h"
|
|
|
|
/**
|
|
* ISP HAL layer
|
|
*/
|
|
void isp_hal_init(isp_hal_context_t *hal, int isp_id)
|
|
{
|
|
//ISP hardware instance
|
|
hal->hw = ISP_LL_GET_HW(isp_id);
|
|
isp_ll_init(hal->hw);
|
|
}
|
|
|
|
/*---------------------------------------------------------------
|
|
AF
|
|
---------------------------------------------------------------*/
|
|
void isp_hal_af_window_config(const isp_hal_context_t *hal, int window_id, const isp_af_window_t *window)
|
|
{
|
|
isp_ll_af_set_window_range(hal->hw, window_id, window->top_left_x, window->top_left_y, window->bottom_right_x, window->bottom_right_y);
|
|
}
|
|
|
|
/*---------------------------------------------------------------
|
|
BF
|
|
---------------------------------------------------------------*/
|
|
void isp_hal_bf_config(isp_hal_context_t *hal, isp_hal_bf_cfg_t *config)
|
|
{
|
|
if (config) {
|
|
isp_ll_bf_set_sigma(hal->hw, config->denoising_level);
|
|
isp_ll_bf_set_padding_mode(hal->hw, config->padding_mode);
|
|
isp_ll_bf_set_padding_data(hal->hw, config->padding_data);
|
|
isp_ll_bf_set_padding_line_tail_valid_start_pixel(hal->hw, config->padding_line_tail_valid_start_pixel);
|
|
isp_ll_bf_set_padding_line_tail_valid_end_pixel(hal->hw, config->padding_line_tail_valid_end_pixel);
|
|
isp_ll_bf_set_template(hal->hw, config->bf_template);
|
|
} else {
|
|
isp_ll_bf_set_sigma(hal->hw, 0);
|
|
isp_ll_bf_set_padding_mode(hal->hw, 0);
|
|
isp_ll_bf_set_padding_data(hal->hw, 0);
|
|
isp_ll_bf_set_padding_line_tail_valid_start_pixel(hal->hw, 0);
|
|
isp_ll_bf_set_padding_line_tail_valid_end_pixel(hal->hw, 0);
|
|
uint8_t default_template[SOC_ISP_BF_TEMPLATE_X_NUMS][SOC_ISP_BF_TEMPLATE_Y_NUMS] = {};
|
|
memset(default_template, SOC_ISP_BF_TEMPLATE_X_NUMS, sizeof(default_template));
|
|
isp_ll_bf_set_template(hal->hw, default_template);
|
|
}
|
|
}
|
|
/*---------------------------------------------------------------
|
|
INTR, put in iram
|
|
---------------------------------------------------------------*/
|
|
uint32_t isp_hal_check_clear_intr_event(const isp_hal_context_t *hal, uint32_t mask)
|
|
{
|
|
uint32_t triggered_events = isp_ll_get_intr_status(hal->hw) & mask;
|
|
|
|
if (triggered_events) {
|
|
isp_ll_clear_intr(hal->hw, triggered_events);
|
|
}
|
|
|
|
return triggered_events;
|
|
}
|
|
/*---------------------------------------------------------------
|
|
AWB
|
|
---------------------------------------------------------------*/
|
|
bool isp_hal_awb_set_window_range(const isp_hal_context_t *hal, const isp_window_t *win)
|
|
{
|
|
if (win->top_left.x > win->btm_right.x ||
|
|
win->top_left.y > win->btm_right.y ||
|
|
win->btm_right.x > ISP_LL_AWB_WINDOW_MAX_RANGE ||
|
|
win->btm_right.y > ISP_LL_AWB_WINDOW_MAX_RANGE) {
|
|
return false;
|
|
}
|
|
isp_ll_awb_set_window_range(hal->hw, win->top_left.x, win->top_left.y,
|
|
win->btm_right.x, win->btm_right.y);
|
|
return true;
|
|
}
|
|
|
|
bool isp_hal_awb_set_luminance_range(const isp_hal_context_t *hal, uint32_t lum_min, uint32_t lum_max)
|
|
{
|
|
if (lum_min > lum_max || lum_max > ISP_LL_AWB_LUM_MAX_RANGE) {
|
|
return false;
|
|
}
|
|
isp_ll_awb_set_luminance_range(hal->hw, lum_min, lum_max);
|
|
return true;
|
|
}
|
|
|
|
bool isp_hal_awb_set_rg_ratio_range(const isp_hal_context_t *hal, float rg_min, float rg_max)
|
|
{
|
|
// Convert to fixed point
|
|
isp_ll_awb_rgb_ratio_t fp_rg_min = {};
|
|
isp_ll_awb_rgb_ratio_t fp_rg_max = {};
|
|
hal_utils_fixed_point_t fp_cfg = {
|
|
.int_bit = ISP_LL_AWB_RGB_RATIO_INT_BITS,
|
|
.frac_bit = ISP_LL_AWB_RGB_RATIO_FRAC_BITS,
|
|
.saturation = false,
|
|
};
|
|
if (hal_utils_float_to_fixed_point_32b(rg_min, &fp_cfg, &fp_rg_min.val) != 0) {
|
|
return false;
|
|
}
|
|
if (hal_utils_float_to_fixed_point_32b(rg_max, &fp_cfg, &fp_rg_max.val) != 0) {
|
|
return false;
|
|
}
|
|
|
|
// Set AWB white patch R/G ratio range
|
|
isp_ll_awb_set_rg_ratio_range(hal->hw, fp_rg_min, fp_rg_max);
|
|
return true;
|
|
}
|
|
|
|
bool isp_hal_awb_set_bg_ratio_range(const isp_hal_context_t *hal, float bg_min, float bg_max)
|
|
{
|
|
// Convert to fixed point
|
|
isp_ll_awb_rgb_ratio_t fp_bg_min = {};
|
|
isp_ll_awb_rgb_ratio_t fp_bg_max = {};
|
|
hal_utils_fixed_point_t fp_cfg = {
|
|
.int_bit = ISP_LL_AWB_RGB_RATIO_INT_BITS,
|
|
.frac_bit = ISP_LL_AWB_RGB_RATIO_FRAC_BITS,
|
|
.saturation = false,
|
|
};
|
|
if (hal_utils_float_to_fixed_point_32b(bg_min, &fp_cfg, &fp_bg_min.val) != 0) {
|
|
return false;
|
|
}
|
|
if (hal_utils_float_to_fixed_point_32b(bg_max, &fp_cfg, &fp_bg_max.val) != 0) {
|
|
return false;
|
|
}
|
|
|
|
// Set AWB white patch B/G ratio range
|
|
isp_ll_awb_set_bg_ratio_range(hal->hw, fp_bg_min, fp_bg_max);
|
|
return true;
|
|
}
|