ipp.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * Copyright 2017 Advanced Micro Devices, Inc.
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice shall be included in
  12. * all copies or substantial portions of the Software.
  13. *
  14. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  17. * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
  18. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  19. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  20. * OTHER DEALINGS IN THE SOFTWARE.
  21. *
  22. * Authors: AMD
  23. *
  24. */
  25. #ifndef __DAL_IPP_H__
  26. #define __DAL_IPP_H__
  27. #include "hw_shared.h"
  28. #include "dc_hw_types.h"
  29. #define MAXTRIX_COEFFICIENTS_NUMBER 12
  30. #define MAXTRIX_COEFFICIENTS_WRAP_NUMBER (MAXTRIX_COEFFICIENTS_NUMBER + 4)
  31. #define MAX_OVL_MATRIX_COUNT 12
  32. /* IPP RELATED */
  33. struct input_pixel_processor {
  34. struct dc_context *ctx;
  35. unsigned int inst;
  36. const struct ipp_funcs *funcs;
  37. };
  38. enum ipp_prescale_mode {
  39. IPP_PRESCALE_MODE_BYPASS,
  40. IPP_PRESCALE_MODE_FIXED_SIGNED,
  41. IPP_PRESCALE_MODE_FLOAT_SIGNED,
  42. IPP_PRESCALE_MODE_FIXED_UNSIGNED,
  43. IPP_PRESCALE_MODE_FLOAT_UNSIGNED
  44. };
  45. struct ipp_prescale_params {
  46. enum ipp_prescale_mode mode;
  47. uint16_t bias;
  48. uint16_t scale;
  49. };
  50. enum ovl_color_space {
  51. OVL_COLOR_SPACE_UNKNOWN = 0,
  52. OVL_COLOR_SPACE_RGB,
  53. OVL_COLOR_SPACE_YUV601,
  54. OVL_COLOR_SPACE_YUV709
  55. };
  56. struct ipp_funcs {
  57. /*** cursor ***/
  58. void (*ipp_cursor_set_position)(
  59. struct input_pixel_processor *ipp,
  60. const struct dc_cursor_position *position,
  61. const struct dc_cursor_mi_param *param);
  62. void (*ipp_cursor_set_attributes)(
  63. struct input_pixel_processor *ipp,
  64. const struct dc_cursor_attributes *attributes);
  65. /*** setup input pixel processing ***/
  66. /* put the entire pixel processor to bypass */
  67. void (*ipp_full_bypass)(
  68. struct input_pixel_processor *ipp);
  69. /* setup ipp to expand/convert input to pixel processor internal format */
  70. void (*ipp_setup)(
  71. struct input_pixel_processor *ipp,
  72. enum surface_pixel_format format,
  73. enum expansion_mode mode,
  74. struct csc_transform input_csc_color_matrix,
  75. enum dc_color_space input_color_space);
  76. /* DCE function to setup IPP. TODO: see if we can consolidate to setup */
  77. void (*ipp_program_prescale)(
  78. struct input_pixel_processor *ipp,
  79. struct ipp_prescale_params *params);
  80. void (*ipp_program_input_lut)(
  81. struct input_pixel_processor *ipp,
  82. const struct dc_gamma *gamma);
  83. /*** DEGAMMA RELATED ***/
  84. void (*ipp_set_degamma)(
  85. struct input_pixel_processor *ipp,
  86. enum ipp_degamma_mode mode);
  87. void (*ipp_program_degamma_pwl)(
  88. struct input_pixel_processor *ipp,
  89. const struct pwl_params *params);
  90. void (*ipp_destroy)(struct input_pixel_processor **ipp);
  91. };
  92. #endif /* __DAL_IPP_H__ */