compressor.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. /*
  2. * Copyright 2012-15 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_COMPRESSOR_H__
  26. #define __DAL_COMPRESSOR_H__
  27. #include "include/grph_object_id.h"
  28. #include "bios_parser_interface.h"
  29. enum fbc_compress_ratio {
  30. FBC_COMPRESS_RATIO_INVALID = 0,
  31. FBC_COMPRESS_RATIO_1TO1 = 1,
  32. FBC_COMPRESS_RATIO_2TO1 = 2,
  33. FBC_COMPRESS_RATIO_4TO1 = 4,
  34. FBC_COMPRESS_RATIO_8TO1 = 8,
  35. };
  36. union fbc_physical_address {
  37. struct {
  38. uint32_t low_part;
  39. int32_t high_part;
  40. } addr;
  41. };
  42. struct compr_addr_and_pitch_params {
  43. uint32_t inst;
  44. uint32_t source_view_width;
  45. uint32_t source_view_height;
  46. };
  47. enum fbc_hw_max_resolution_supported {
  48. FBC_MAX_X = 3840,
  49. FBC_MAX_Y = 2400
  50. };
  51. struct compressor {
  52. struct dc_context *ctx;
  53. uint32_t attached_inst;
  54. bool is_enabled;
  55. union {
  56. uint32_t raw;
  57. struct {
  58. uint32_t FBC_SUPPORT:1;
  59. uint32_t FB_POOL:1;
  60. uint32_t DYNAMIC_ALLOC:1;
  61. uint32_t LPT_SUPPORT:1;
  62. uint32_t LPT_MC_CONFIG:1;
  63. uint32_t DUMMY_BACKEND:1;
  64. uint32_t CLK_GATING_DISABLED:1;
  65. } bits;
  66. } options;
  67. union fbc_physical_address compr_surface_address;
  68. uint32_t embedded_panel_h_size;
  69. uint32_t embedded_panel_v_size;
  70. uint32_t memory_bus_width;
  71. uint32_t banks_num;
  72. uint32_t raw_size;
  73. uint32_t channel_interleave_size;
  74. uint32_t dram_channels_num;
  75. uint32_t allocated_size;
  76. uint32_t preferred_requested_size;
  77. uint32_t lpt_channels_num;
  78. enum fbc_compress_ratio min_compress_ratio;
  79. };
  80. #endif