i2caux_interface.h 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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_I2CAUX_INTERFACE_H__
  26. #define __DAL_I2CAUX_INTERFACE_H__
  27. #include "dc_types.h"
  28. #include "gpio_service_interface.h"
  29. #define DEFAULT_AUX_MAX_DATA_SIZE 16
  30. #define AUX_MAX_DEFER_WRITE_RETRY 20
  31. struct aux_payload {
  32. /* set following flag to read/write I2C data,
  33. * reset it to read/write DPCD data */
  34. bool i2c_over_aux;
  35. /* set following flag to write data,
  36. * reset it to read data */
  37. bool write;
  38. uint32_t address;
  39. uint8_t length;
  40. uint8_t *data;
  41. };
  42. struct aux_command {
  43. struct aux_payload *payloads;
  44. uint8_t number_of_payloads;
  45. /* expressed in milliseconds
  46. * zero means "use default value" */
  47. uint32_t defer_delay;
  48. /* zero means "use default value" */
  49. uint32_t max_defer_write_retry;
  50. enum i2c_mot_mode mot;
  51. };
  52. union aux_config {
  53. struct {
  54. uint32_t ALLOW_AUX_WHEN_HPD_LOW:1;
  55. } bits;
  56. uint32_t raw;
  57. };
  58. struct i2caux;
  59. struct i2caux *dal_i2caux_create(
  60. struct dc_context *ctx);
  61. bool dal_i2caux_submit_i2c_command(
  62. struct i2caux *i2caux,
  63. struct ddc *ddc,
  64. struct i2c_command *cmd);
  65. bool dal_i2caux_submit_aux_command(
  66. struct i2caux *i2caux,
  67. struct ddc *ddc,
  68. struct aux_command *cmd);
  69. void dal_i2caux_configure_aux(
  70. struct i2caux *i2caux,
  71. struct ddc *ddc,
  72. union aux_config cfg);
  73. void dal_i2caux_destroy(
  74. struct i2caux **ptr);
  75. #endif