atombios_i2c.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  1. /*
  2. * Copyright 2011 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: Alex Deucher
  23. *
  24. */
  25. #include <drm/drmP.h>
  26. #include <drm/amdgpu_drm.h>
  27. #include "amdgpu.h"
  28. #include "atom.h"
  29. #include "amdgpu_atombios.h"
  30. #include "atombios_i2c.h"
  31. #define TARGET_HW_I2C_CLOCK 50
  32. /* these are a limitation of ProcessI2cChannelTransaction not the hw */
  33. #define ATOM_MAX_HW_I2C_WRITE 3
  34. #define ATOM_MAX_HW_I2C_READ 255
  35. static int amdgpu_atombios_i2c_process_i2c_ch(struct amdgpu_i2c_chan *chan,
  36. u8 slave_addr, u8 flags,
  37. u8 *buf, u8 num)
  38. {
  39. struct drm_device *dev = chan->dev;
  40. struct amdgpu_device *adev = dev->dev_private;
  41. PROCESS_I2C_CHANNEL_TRANSACTION_PS_ALLOCATION args;
  42. int index = GetIndexIntoMasterTable(COMMAND, ProcessI2cChannelTransaction);
  43. unsigned char *base;
  44. u16 out = cpu_to_le16(0);
  45. int r = 0;
  46. memset(&args, 0, sizeof(args));
  47. mutex_lock(&chan->mutex);
  48. base = (unsigned char *)adev->mode_info.atom_context->scratch;
  49. if (flags & HW_I2C_WRITE) {
  50. if (num > ATOM_MAX_HW_I2C_WRITE) {
  51. DRM_ERROR("hw i2c: tried to write too many bytes (%d vs 3)\n", num);
  52. r = -EINVAL;
  53. goto done;
  54. }
  55. if (buf == NULL)
  56. args.ucRegIndex = 0;
  57. else
  58. args.ucRegIndex = buf[0];
  59. if (num)
  60. num--;
  61. if (num)
  62. memcpy(&out, &buf[1], num);
  63. args.lpI2CDataOut = cpu_to_le16(out);
  64. } else {
  65. if (num > ATOM_MAX_HW_I2C_READ) {
  66. DRM_ERROR("hw i2c: tried to read too many bytes (%d vs 255)\n", num);
  67. r = -EINVAL;
  68. goto done;
  69. }
  70. args.ucRegIndex = 0;
  71. args.lpI2CDataOut = 0;
  72. }
  73. args.ucFlag = flags;
  74. args.ucI2CSpeed = TARGET_HW_I2C_CLOCK;
  75. args.ucTransBytes = num;
  76. args.ucSlaveAddr = slave_addr << 1;
  77. args.ucLineNumber = chan->rec.i2c_id;
  78. amdgpu_atom_execute_table(adev->mode_info.atom_context, index, (uint32_t *)&args);
  79. /* error */
  80. if (args.ucStatus != HW_ASSISTED_I2C_STATUS_SUCCESS) {
  81. DRM_DEBUG_KMS("hw_i2c error\n");
  82. r = -EIO;
  83. goto done;
  84. }
  85. if (!(flags & HW_I2C_WRITE))
  86. amdgpu_atombios_copy_swap(buf, base, num, false);
  87. done:
  88. mutex_unlock(&chan->mutex);
  89. return r;
  90. }
  91. int amdgpu_atombios_i2c_xfer(struct i2c_adapter *i2c_adap,
  92. struct i2c_msg *msgs, int num)
  93. {
  94. struct amdgpu_i2c_chan *i2c = i2c_get_adapdata(i2c_adap);
  95. struct i2c_msg *p;
  96. int i, remaining, current_count, buffer_offset, max_bytes, ret;
  97. u8 flags;
  98. /* check for bus probe */
  99. p = &msgs[0];
  100. if ((num == 1) && (p->len == 0)) {
  101. ret = amdgpu_atombios_i2c_process_i2c_ch(i2c,
  102. p->addr, HW_I2C_WRITE,
  103. NULL, 0);
  104. if (ret)
  105. return ret;
  106. else
  107. return num;
  108. }
  109. for (i = 0; i < num; i++) {
  110. p = &msgs[i];
  111. remaining = p->len;
  112. buffer_offset = 0;
  113. /* max_bytes are a limitation of ProcessI2cChannelTransaction not the hw */
  114. if (p->flags & I2C_M_RD) {
  115. max_bytes = ATOM_MAX_HW_I2C_READ;
  116. flags = HW_I2C_READ;
  117. } else {
  118. max_bytes = ATOM_MAX_HW_I2C_WRITE;
  119. flags = HW_I2C_WRITE;
  120. }
  121. while (remaining) {
  122. if (remaining > max_bytes)
  123. current_count = max_bytes;
  124. else
  125. current_count = remaining;
  126. ret = amdgpu_atombios_i2c_process_i2c_ch(i2c,
  127. p->addr, flags,
  128. &p->buf[buffer_offset], current_count);
  129. if (ret)
  130. return ret;
  131. remaining -= current_count;
  132. buffer_offset += current_count;
  133. }
  134. }
  135. return num;
  136. }
  137. u32 amdgpu_atombios_i2c_func(struct i2c_adapter *adap)
  138. {
  139. return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
  140. }
  141. void amdgpu_atombios_i2c_channel_trans(struct amdgpu_device* adev, u8 slave_addr, u8 line_number, u8 offset, u8 data)
  142. {
  143. PROCESS_I2C_CHANNEL_TRANSACTION_PS_ALLOCATION args;
  144. int index = GetIndexIntoMasterTable(COMMAND, ProcessI2cChannelTransaction);
  145. args.ucRegIndex = offset;
  146. args.lpI2CDataOut = data;
  147. args.ucFlag = 1;
  148. args.ucI2CSpeed = TARGET_HW_I2C_CLOCK;
  149. args.ucTransBytes = 1;
  150. args.ucSlaveAddr = slave_addr;
  151. args.ucLineNumber = line_number;
  152. amdgpu_atom_execute_table(adev->mode_info.atom_context, index, (uint32_t *)&args);
  153. }