ra_light_visys.c 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. static const reg_field_s reg_desc[] = {
  16. /* structure field order
  17. reg_name, offset,reset_value,msb,lsb, field_name, field_desc */
  18. {"TEST","This is demo register-0 description",
  19. 0x1200, 0x00000000, 0, 0, "mcm_bypass_en", "Bypass enable. 0: bypass disabled; 1: bypass enabled"},
  20. };
  21. int light_visys_reg_dump(reg_analyzer_info_s *ra_info)
  22. {
  23. uint32_t count = sizeof(reg_desc) / sizeof(reg_desc[0]);
  24. return ra_dump_reg_fields(ra_info, reg_desc, count);
  25. }
  26. int light_visys_reg_define(reg_analyzer_info_s *ra_info)
  27. {
  28. uint32_t count = sizeof(reg_desc) / sizeof(reg_desc[0]);
  29. return ra_dump_reg_define(ra_info, reg_desc, count);
  30. }
  31. int light_visys_reg_find(reg_analyzer_info_s *ra_info)
  32. {
  33. uint32_t count = sizeof(reg_desc) / sizeof(reg_desc[0]);
  34. return ra_dump_reg_find(ra_info, reg_desc, count);
  35. }