isp_ee.c 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * Copyright (C) 2021 Alibaba Group Holding Limited
  3. * Author: LuChongzhi <chongzhi.lcz@alibaba-inc.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. */
  9. #include <stdio.h>
  10. #include <stdlib.h>
  11. #include <stdint.h>
  12. #include <unistd.h>
  13. #include <string.h>
  14. #include "ra_common.h"
  15. #define REG_BASE 0x00003900
  16. static const reg_field_s reg_desc[] = {
  17. /* structure field order
  18. reg_name, offset,reset_value,msb,lsb, field_name, field_desc */
  19. {"ISP_EE_CTRL", "Edge Enhancement Control Register",
  20. 0x00003900, 0x00000000, 18, 11, "edge_enhancement_source_strength", "Edge Enhancement strength of process"},
  21. {NULL, NULL, 0x00003900, 0x00000000, 10, 3, "edge_enhancement_strength", "Edge Enhancement strength of smooth filter"},
  22. {NULL, NULL, 0x00003900, 0x00000000, 2, 2, "edge_enhancement_soft_reset", "Edge Enhancement software reset. 0: release; 1: reset"},
  23. {NULL, NULL, 0x00003900, 0x00000000, 1, 1, "edge_enhancement_input_sel", "Edge Enhancement input data format select. 0: RGB; 1: YUV"},
  24. {NULL, NULL, 0x00003900, 0x00000000, 0, 0, "edge_enhancement_enable", "Enable/Disable Edge Enhancement. 0: Disable the EE; 1: Enable the EE"},
  25. };
  26. int light_isp_ee_reg_dump(reg_analyzer_info_s *ra_info)
  27. {
  28. uint32_t count = sizeof(reg_desc) / sizeof(reg_desc[0]);
  29. return ra_dump_reg_fields(ra_info, reg_desc, count);
  30. }
  31. int light_isp_ee_reg_define(reg_analyzer_info_s *ra_info)
  32. {
  33. uint32_t count = sizeof(reg_desc) / sizeof(reg_desc[0]);
  34. return ra_dump_reg_define(ra_info, reg_desc, count);
  35. }
  36. int light_isp_ee_reg_find(reg_analyzer_info_s *ra_info)
  37. {
  38. uint32_t count = sizeof(reg_desc) / sizeof(reg_desc[0]);
  39. return ra_dump_reg_find(ra_info, reg_desc, count);
  40. }