compensation.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /********************************************************************************
  2. * Copyright (c) 2018 Actions Semi Co., Ltd.
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. * Author: wuyufan<mikeyang@actions-semi.com>
  16. *
  17. * Description: usb_irq head file ( physical layer )
  18. *
  19. * Change log:
  20. * 2019/2/18: Created by wuyufan.
  21. *******************************************************************************/
  22. #ifndef COMPENSATION_H_
  23. #define COMPENSATION_H_
  24. #define RW_TRIM_CAP_EFUSE (0)
  25. #define RW_TRIM_CAP_SNOR (1)
  26. typedef enum
  27. {
  28. TRIM_CAP_WRITE_NO_ERROR,
  29. TRIM_CAP_WRITE_ERR_HW,
  30. TRIM_CAP_WRITE_ERR_NO_RESOURSE
  31. } trim_cap_write_result_e;
  32. typedef enum
  33. {
  34. TRIM_CAP_READ_NO_ERROR,
  35. TRIM_CAP_READ_ADJUST_VALUE,
  36. TRIM_CAP_READ_ERR_HW,
  37. TRIM_CAP_READ_ERR_NO_WRITE,
  38. TRIM_CAP_ERAD_ERR_VALUE
  39. } trim_cap_read_result_e;
  40. extern int32_t freq_compensation_read(uint32_t *trim_cap, uint32_t mode);
  41. extern int32_t freq_compensation_write(uint32_t *trim_cap, uint32_t mode);
  42. extern void cap_temp_comp_start(void);
  43. extern void cap_temp_comp_stop(void);
  44. extern uint32_t cap_temp_comp_enabled(void);
  45. extern int freq_compensation_get_cap(uint32_t *cap);
  46. #endif /* COMPENSATION_H_ */