s5p_mfc_opr.c 870 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * drivers/media/platform/s5p-mfc/s5p_mfc_opr.c
  3. *
  4. * Samsung MFC (Multi Function Codec - FIMV) driver
  5. * This file contains hw related functions.
  6. *
  7. * Kamil Debski, Copyright (c) 2012 Samsung Electronics Co., Ltd.
  8. * http://www.samsung.com/
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #include "s5p_mfc_opr.h"
  15. #include "s5p_mfc_opr_v5.h"
  16. #include "s5p_mfc_opr_v6.h"
  17. static struct s5p_mfc_hw_ops *s5p_mfc_ops;
  18. void s5p_mfc_init_hw_ops(struct s5p_mfc_dev *dev)
  19. {
  20. if (IS_MFCV6(dev)) {
  21. s5p_mfc_ops = s5p_mfc_init_hw_ops_v6();
  22. dev->warn_start = S5P_FIMV_ERR_WARNINGS_START_V6;
  23. } else {
  24. s5p_mfc_ops = s5p_mfc_init_hw_ops_v5();
  25. dev->warn_start = S5P_FIMV_ERR_WARNINGS_START;
  26. }
  27. dev->mfc_ops = s5p_mfc_ops;
  28. }