isp_dpcc.c 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  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 0x00002900
  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_DPCC_MODE", "Global control register",
  20. 0x00002900, 0x00000004, 2, 2, "stage1_enable", "0: bypass stage1; 1: enable stage1 (Default)"},
  21. {NULL, NULL, 0x00002900, 0x00000004, 1, 1, "grayscale_mode", "0: BAYER DATA INPUT (Default)" LINE_PADDING_6TAB
  22. " 1: enable gray scale data input from black and white sensors (without color filter array)"},
  23. {NULL, NULL, 0x00002900, 0x00000004, 0, 0, "dpcc_enable", "0: bypass DPCC (Default); 1: enable DPCC"},
  24. };
  25. int light_isp_dpcc_reg_dump(reg_analyzer_info_s *ra_info)
  26. {
  27. uint32_t count = sizeof(reg_desc) / sizeof(reg_desc[0]);
  28. return ra_dump_reg_fields(ra_info, reg_desc, count);
  29. }
  30. int light_isp_dpcc_reg_define(reg_analyzer_info_s *ra_info)
  31. {
  32. uint32_t count = sizeof(reg_desc) / sizeof(reg_desc[0]);
  33. return ra_dump_reg_define(ra_info, reg_desc, count);
  34. }
  35. int light_isp_dpcc_reg_find(reg_analyzer_info_s *ra_info)
  36. {
  37. uint32_t count = sizeof(reg_desc) / sizeof(reg_desc[0]);
  38. return ra_dump_reg_find(ra_info, reg_desc, count);
  39. }