Files
baremetal-drivers/tools/reg_analyzer/vsi_isp8000/isp_afm.c
2022-09-13 10:34:53 +08:00

50 lines
1.6 KiB
C

/*
* Copyright (C) 2021 Alibaba Group Holding Limited
* Author: LuChongzhi <chongzhi.lcz@alibaba-inc.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*/
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <string.h>
#include "ra_common.h"
#define REG_BASE 0x00002000
static const reg_field_s reg_desc[] = {
/* structure field order
reg_name, offset,reset_value,msb,lsb, field_name, field_desc */
{"ISP_AFM_CTRL", "Auto Focus Measurement Unit Control Register",
0x00002000, 0x00000000, 0, 0, "afm_en", "AF measurement enable. 0: disable; 1: enable" LINE_PADDING_6TAB
"Writing a 1 to this register starts a new measurement " LINE_PADDING_6TAB
"and resets the afm_fin (measurement finished) interrupt to 0." LINE_PADDING_6TAB
"As long as the afm_en is 1, the AFM unit calculates new sharpness values for each frame."},
};
int light_isp_afm_reg_dump(reg_analyzer_info_s *ra_info)
{
uint32_t count = sizeof(reg_desc) / sizeof(reg_desc[0]);
return ra_dump_reg_fields(ra_info, reg_desc, count);
}
int light_isp_afm_reg_define(reg_analyzer_info_s *ra_info)
{
uint32_t count = sizeof(reg_desc) / sizeof(reg_desc[0]);
return ra_dump_reg_define(ra_info, reg_desc, count);
}
int light_isp_afm_reg_find(reg_analyzer_info_s *ra_info)
{
uint32_t count = sizeof(reg_desc) / sizeof(reg_desc[0]);
return ra_dump_reg_find(ra_info, reg_desc, count);
}