2 * Copyright 2019 Advanced Micro Devices, Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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.
24 #include "smuio/smuio_11_0_0_offset.h"
25 #include "smuio/smuio_11_0_0_sh_mask.h"
27 #include "smu_v11_0_i2c.h"
29 #include "soc15_common.h"
30 #include <drm/drm_fixed.h>
31 #include <drm/drm_drv.h>
32 #include "amdgpu_amdkfd.h"
33 #include <linux/i2c.h>
34 #include <linux/pci.h>
38 #define I2C_NAK_7B_ADDR_NOACK 1
39 #define I2C_NAK_TXDATA_NOACK 2
41 #define I2C_SW_TIMEOUT 8
42 #define I2C_ABORT 0x10
44 /* I2C transaction flags */
48 #define to_amdgpu_device(x) (container_of(x, struct amdgpu_device, pm.smu_i2c))
50 static void smu_v11_0_i2c_set_clock_gating(struct i2c_adapter *control, bool en)
52 struct amdgpu_device *adev = to_amdgpu_device(control);
53 uint32_t reg = RREG32_SOC15(SMUIO, 0, mmSMUIO_PWRMGT);
55 reg = REG_SET_FIELD(reg, SMUIO_PWRMGT, i2c_clk_gate_en, en ? 1 : 0);
56 WREG32_SOC15(SMUIO, 0, mmSMUIO_PWRMGT, reg);
60 static void smu_v11_0_i2c_enable(struct i2c_adapter *control, bool enable)
62 struct amdgpu_device *adev = to_amdgpu_device(control);
64 WREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_ENABLE, enable ? 1 : 0);
67 static void smu_v11_0_i2c_clear_status(struct i2c_adapter *control)
69 struct amdgpu_device *adev = to_amdgpu_device(control);
72 RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_CLR_INTR);
74 } /* while (reg_CKSVII2C_ic_clr_intr == 0) */
77 static void smu_v11_0_i2c_configure(struct i2c_adapter *control)
79 struct amdgpu_device *adev = to_amdgpu_device(control);
82 reg = REG_SET_FIELD(reg, CKSVII2C_IC_CON, IC_SLAVE_DISABLE, 1);
83 reg = REG_SET_FIELD(reg, CKSVII2C_IC_CON, IC_RESTART_EN, 1);
84 reg = REG_SET_FIELD(reg, CKSVII2C_IC_CON, IC_10BITADDR_MASTER, 0);
85 reg = REG_SET_FIELD(reg, CKSVII2C_IC_CON, IC_10BITADDR_SLAVE, 0);
87 reg = REG_SET_FIELD(reg, CKSVII2C_IC_CON, IC_MAX_SPEED_MODE, 2);
88 reg = REG_SET_FIELD(reg, CKSVII2C_IC_CON, IC_MASTER_MODE, 1);
90 WREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_CON, reg);
93 static void smu_v11_0_i2c_set_clock(struct i2c_adapter *control)
95 struct amdgpu_device *adev = to_amdgpu_device(control);
98 * Standard mode speed, These values are taken from SMUIO MAS,
99 * but are different from what is given is
100 * Synopsys spec. The values here are based on assumption
101 * that refclock is 100MHz
103 * Configuration for standard mode; Speed = 100kbps
104 * Scale linearly, for now only support standard speed clock
105 * This will work only with 100M ref clock
107 * TBD:Change the calculation to take into account ref clock values also.
110 WREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_FS_SPKLEN, 2);
111 WREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_SS_SCL_HCNT, 120);
112 WREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_SS_SCL_LCNT, 130);
113 WREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_SDA_HOLD, 20);
116 static void smu_v11_0_i2c_set_address(struct i2c_adapter *control, uint8_t address)
118 struct amdgpu_device *adev = to_amdgpu_device(control);
120 /* Convert fromr 8-bit to 7-bit address */
122 WREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_TAR, (address & 0xFF));
125 static uint32_t smu_v11_0_i2c_poll_tx_status(struct i2c_adapter *control)
127 struct amdgpu_device *adev = to_amdgpu_device(control);
128 uint32_t ret = I2C_OK;
129 uint32_t reg, reg_c_tx_abrt_source;
131 /*Check if transmission is completed */
132 unsigned long timeout_counter = jiffies + msecs_to_jiffies(20);
135 if (time_after(jiffies, timeout_counter)) {
136 ret |= I2C_SW_TIMEOUT;
140 reg = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_STATUS);
142 } while (REG_GET_FIELD(reg, CKSVII2C_IC_STATUS, TFE) == 0);
147 /* This only checks if NAK is received and transaction got aborted */
148 reg = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_INTR_STAT);
150 if (REG_GET_FIELD(reg, CKSVII2C_IC_INTR_STAT, R_TX_ABRT) == 1) {
151 reg_c_tx_abrt_source = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_TX_ABRT_SOURCE);
152 DRM_INFO("TX was terminated, IC_TX_ABRT_SOURCE val is:%x", reg_c_tx_abrt_source);
154 /* Check for stop due to NACK */
155 if (REG_GET_FIELD(reg_c_tx_abrt_source,
156 CKSVII2C_IC_TX_ABRT_SOURCE,
157 ABRT_TXDATA_NOACK) == 1) {
159 ret |= I2C_NAK_TXDATA_NOACK;
161 } else if (REG_GET_FIELD(reg_c_tx_abrt_source,
162 CKSVII2C_IC_TX_ABRT_SOURCE,
163 ABRT_7B_ADDR_NOACK) == 1) {
165 ret |= I2C_NAK_7B_ADDR_NOACK;
170 smu_v11_0_i2c_clear_status(control);
176 static uint32_t smu_v11_0_i2c_poll_rx_status(struct i2c_adapter *control)
178 struct amdgpu_device *adev = to_amdgpu_device(control);
179 uint32_t ret = I2C_OK;
180 uint32_t reg_ic_status, reg_c_tx_abrt_source;
182 reg_c_tx_abrt_source = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_TX_ABRT_SOURCE);
184 /* If slave is not present */
185 if (REG_GET_FIELD(reg_c_tx_abrt_source,
186 CKSVII2C_IC_TX_ABRT_SOURCE,
187 ABRT_7B_ADDR_NOACK) == 1) {
188 ret |= I2C_NAK_7B_ADDR_NOACK;
190 smu_v11_0_i2c_clear_status(control);
191 } else { /* wait till some data is there in RXFIFO */
192 /* Poll for some byte in RXFIFO */
193 unsigned long timeout_counter = jiffies + msecs_to_jiffies(20);
196 if (time_after(jiffies, timeout_counter)) {
197 ret |= I2C_SW_TIMEOUT;
201 reg_ic_status = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_STATUS);
203 } while (REG_GET_FIELD(reg_ic_status, CKSVII2C_IC_STATUS, RFNE) == 0);
213 * smu_v11_0_i2c_transmit - Send a block of data over the I2C bus to a slave device.
215 * @address: The I2C address of the slave device.
216 * @data: The data to transmit over the bus.
217 * @numbytes: The amount of data to transmit.
218 * @i2c_flag: Flags for transmission
220 * Returns 0 on success or error.
222 static uint32_t smu_v11_0_i2c_transmit(struct i2c_adapter *control,
223 uint8_t address, uint8_t *data,
224 uint32_t numbytes, uint32_t i2c_flag)
226 struct amdgpu_device *adev = to_amdgpu_device(control);
227 uint32_t bytes_sent, reg, ret = 0;
228 unsigned long timeout_counter;
232 DRM_DEBUG_DRIVER("I2C_Transmit(), address = %x, bytes = %d , data: ",
233 (uint16_t)address, numbytes);
235 if (drm_debug_enabled(DRM_UT_DRIVER)) {
236 print_hex_dump(KERN_INFO, "data: ", DUMP_PREFIX_NONE,
237 16, 1, data, numbytes, false);
240 /* Set the I2C slave address */
241 smu_v11_0_i2c_set_address(control, address);
243 smu_v11_0_i2c_enable(control, true);
245 /* Clear status bits */
246 smu_v11_0_i2c_clear_status(control);
249 timeout_counter = jiffies + msecs_to_jiffies(20);
251 while (numbytes > 0) {
252 reg = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_STATUS);
253 if (REG_GET_FIELD(reg, CKSVII2C_IC_STATUS, TFNF)) {
257 * Prepare transaction, no need to set RESTART. I2C engine will send
258 * START as soon as it sees data in TXFIFO
261 reg = REG_SET_FIELD(reg, CKSVII2C_IC_DATA_CMD, RESTART,
262 (i2c_flag & I2C_RESTART) ? 1 : 0);
263 reg = REG_SET_FIELD(reg, CKSVII2C_IC_DATA_CMD, DAT, data[bytes_sent]);
265 /* determine if we need to send STOP bit or not */
267 /* Final transaction, so send stop unless I2C_NO_STOP */
268 reg = REG_SET_FIELD(reg, CKSVII2C_IC_DATA_CMD, STOP,
269 (i2c_flag & I2C_NO_STOP) ? 0 : 1);
271 reg = REG_SET_FIELD(reg, CKSVII2C_IC_DATA_CMD, CMD, 0);
272 WREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_DATA_CMD, reg);
274 /* Record that the bytes were transmitted */
278 reg = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_STATUS);
280 } while (numbytes && REG_GET_FIELD(reg, CKSVII2C_IC_STATUS, TFNF));
284 * We waited too long for the transmission FIFO to become not-full.
285 * Exit the loop with error.
287 if (time_after(jiffies, timeout_counter)) {
288 ret |= I2C_SW_TIMEOUT;
293 ret = smu_v11_0_i2c_poll_tx_status(control);
296 /* Any error, no point in proceeding */
298 if (ret & I2C_SW_TIMEOUT)
299 DRM_ERROR("TIMEOUT ERROR !!!");
301 if (ret & I2C_NAK_7B_ADDR_NOACK)
302 DRM_ERROR("Received I2C_NAK_7B_ADDR_NOACK !!!");
305 if (ret & I2C_NAK_TXDATA_NOACK)
306 DRM_ERROR("Received I2C_NAK_TXDATA_NOACK !!!");
314 * smu_v11_0_i2c_receive - Receive a block of data over the I2C bus from a slave device.
316 * @address: The I2C address of the slave device.
317 * @numbytes: The amount of data to transmit.
318 * @i2c_flag: Flags for transmission
320 * Returns 0 on success or error.
322 static uint32_t smu_v11_0_i2c_receive(struct i2c_adapter *control,
323 uint8_t address, uint8_t *data,
324 uint32_t numbytes, uint8_t i2c_flag)
326 struct amdgpu_device *adev = to_amdgpu_device(control);
327 uint32_t bytes_received, ret = I2C_OK;
331 /* Set the I2C slave address */
332 smu_v11_0_i2c_set_address(control, address);
335 smu_v11_0_i2c_enable(control, true);
337 while (numbytes > 0) {
340 smu_v11_0_i2c_clear_status(control);
343 /* Prepare transaction */
345 /* Each time we disable I2C, so this is not a restart */
346 if (bytes_received == 0)
347 reg = REG_SET_FIELD(reg, CKSVII2C_IC_DATA_CMD, RESTART,
348 (i2c_flag & I2C_RESTART) ? 1 : 0);
350 reg = REG_SET_FIELD(reg, CKSVII2C_IC_DATA_CMD, DAT, 0);
352 reg = REG_SET_FIELD(reg, CKSVII2C_IC_DATA_CMD, CMD, 1);
354 /* Transmitting last byte */
356 /* Final transaction, so send stop if requested */
357 reg = REG_SET_FIELD(reg, CKSVII2C_IC_DATA_CMD, STOP,
358 (i2c_flag & I2C_NO_STOP) ? 0 : 1);
360 WREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_DATA_CMD, reg);
362 ret = smu_v11_0_i2c_poll_rx_status(control);
364 /* Any error, no point in proceeding */
366 if (ret & I2C_SW_TIMEOUT)
367 DRM_ERROR("TIMEOUT ERROR !!!");
369 if (ret & I2C_NAK_7B_ADDR_NOACK)
370 DRM_ERROR("Received I2C_NAK_7B_ADDR_NOACK !!!");
372 if (ret & I2C_NAK_TXDATA_NOACK)
373 DRM_ERROR("Received I2C_NAK_TXDATA_NOACK !!!");
378 reg = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_DATA_CMD);
379 data[bytes_received] = REG_GET_FIELD(reg, CKSVII2C_IC_DATA_CMD, DAT);
381 /* Record that the bytes were received */
386 DRM_DEBUG_DRIVER("I2C_Receive(), address = %x, bytes = %d, data :",
387 (uint16_t)address, bytes_received);
389 if (drm_debug_enabled(DRM_UT_DRIVER)) {
390 print_hex_dump(KERN_INFO, "data: ", DUMP_PREFIX_NONE,
391 16, 1, data, bytes_received, false);
397 static void smu_v11_0_i2c_abort(struct i2c_adapter *control)
399 struct amdgpu_device *adev = to_amdgpu_device(control);
402 /* Enable I2C engine; */
403 reg = REG_SET_FIELD(reg, CKSVII2C_IC_ENABLE, ENABLE, 1);
404 WREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_ENABLE, reg);
406 /* Abort previous transaction */
407 reg = REG_SET_FIELD(reg, CKSVII2C_IC_ENABLE, ABORT, 1);
408 WREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_ENABLE, reg);
410 DRM_DEBUG_DRIVER("I2C_Abort() Done.");
414 static bool smu_v11_0_i2c_activity_done(struct i2c_adapter *control)
416 struct amdgpu_device *adev = to_amdgpu_device(control);
418 const uint32_t IDLE_TIMEOUT = 1024;
419 uint32_t timeout_count = 0;
420 uint32_t reg_ic_enable, reg_ic_enable_status, reg_ic_clr_activity;
422 reg_ic_enable_status = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_ENABLE_STATUS);
423 reg_ic_enable = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_ENABLE);
426 if ((REG_GET_FIELD(reg_ic_enable, CKSVII2C_IC_ENABLE, ENABLE) == 0) &&
427 (REG_GET_FIELD(reg_ic_enable_status, CKSVII2C_IC_ENABLE_STATUS, IC_EN) == 1)) {
429 * Nobody is using I2C engine, but engine remains active because
430 * someone missed to send STOP
432 smu_v11_0_i2c_abort(control);
433 } else if (REG_GET_FIELD(reg_ic_enable, CKSVII2C_IC_ENABLE, ENABLE) == 0) {
434 /* Nobody is using I2C engine */
438 /* Keep reading activity bit until it's cleared */
440 reg_ic_clr_activity = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_CLR_ACTIVITY);
442 if (REG_GET_FIELD(reg_ic_clr_activity,
443 CKSVII2C_IC_CLR_ACTIVITY, CLR_ACTIVITY) == 0)
448 } while (timeout_count < IDLE_TIMEOUT);
453 static void smu_v11_0_i2c_init(struct i2c_adapter *control)
455 /* Disable clock gating */
456 smu_v11_0_i2c_set_clock_gating(control, false);
458 if (!smu_v11_0_i2c_activity_done(control))
459 DRM_WARN("I2C busy !");
462 smu_v11_0_i2c_enable(control, false);
464 /* Configure I2C to operate as master and in standard mode */
465 smu_v11_0_i2c_configure(control);
467 /* Initialize the clock to 50 kHz default */
468 smu_v11_0_i2c_set_clock(control);
472 static void smu_v11_0_i2c_fini(struct i2c_adapter *control)
474 struct amdgpu_device *adev = to_amdgpu_device(control);
475 uint32_t reg_ic_enable_status, reg_ic_enable;
477 smu_v11_0_i2c_enable(control, false);
479 /* Double check if disabled, else force abort */
480 reg_ic_enable_status = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_ENABLE_STATUS);
481 reg_ic_enable = RREG32_SOC15(SMUIO, 0, mmCKSVII2C_IC_ENABLE);
483 if ((REG_GET_FIELD(reg_ic_enable, CKSVII2C_IC_ENABLE, ENABLE) == 0) &&
484 (REG_GET_FIELD(reg_ic_enable_status,
485 CKSVII2C_IC_ENABLE_STATUS, IC_EN) == 1)) {
487 * Nobody is using I2C engine, but engine remains active because
488 * someone missed to send STOP
490 smu_v11_0_i2c_abort(control);
493 /* Restore clock gating */
496 * TODO Reenabling clock gating seems to break subsequent SMU operation
497 * on the I2C bus. My guess is that SMU doesn't disable clock gating like
498 * we do here before working with the bus. So for now just don't restore
499 * it but later work with SMU to see if they have this issue and can
500 * update their code appropriately
502 /* smu_v11_0_i2c_set_clock_gating(control, true); */
506 static bool smu_v11_0_i2c_bus_lock(struct i2c_adapter *control)
508 struct amdgpu_device *adev = to_amdgpu_device(control);
510 /* Send PPSMC_MSG_RequestI2CBus */
511 if (!adev->powerplay.pp_funcs->smu_i2c_bus_access)
515 if (!adev->powerplay.pp_funcs->smu_i2c_bus_access(adev->powerplay.pp_handle, true))
522 static bool smu_v11_0_i2c_bus_unlock(struct i2c_adapter *control)
524 struct amdgpu_device *adev = to_amdgpu_device(control);
526 /* Send PPSMC_MSG_RequestI2CBus */
527 if (!adev->powerplay.pp_funcs->smu_i2c_bus_access)
530 /* Send PPSMC_MSG_ReleaseI2CBus */
531 if (!adev->powerplay.pp_funcs->smu_i2c_bus_access(adev->powerplay.pp_handle,
539 /***************************** I2C GLUE ****************************/
541 static uint32_t smu_v11_0_i2c_read_data(struct i2c_adapter *control,
548 /* First 2 bytes are dummy write to set EEPROM address */
549 ret = smu_v11_0_i2c_transmit(control, address, data, 2, I2C_NO_STOP);
553 /* Now read data starting with that address */
554 ret = smu_v11_0_i2c_receive(control, address, data + 2, numbytes - 2,
559 DRM_ERROR("ReadData() - I2C error occurred :%x", ret);
564 static uint32_t smu_v11_0_i2c_write_data(struct i2c_adapter *control,
571 ret = smu_v11_0_i2c_transmit(control, address, data, numbytes, 0);
574 DRM_ERROR("WriteI2CData() - I2C error occurred :%x", ret);
577 * According to EEPROM spec there is a MAX of 10 ms required for
578 * EEPROM to flush internal RX buffer after STOP was issued at the
579 * end of write transaction. During this time the EEPROM will not be
580 * responsive to any more commands - so wait a bit more.
582 * TODO Improve to wait for first ACK for slave address after
583 * internal write cycle done.
591 static void lock_bus(struct i2c_adapter *i2c, unsigned int flags)
593 struct amdgpu_device *adev = to_amdgpu_device(i2c);
595 if (!smu_v11_0_i2c_bus_lock(i2c)) {
596 DRM_ERROR("Failed to lock the bus from SMU");
600 adev->pm.bus_locked = true;
603 static int trylock_bus(struct i2c_adapter *i2c, unsigned int flags)
605 WARN_ONCE(1, "This operation not supposed to run in atomic context!");
609 static void unlock_bus(struct i2c_adapter *i2c, unsigned int flags)
611 struct amdgpu_device *adev = to_amdgpu_device(i2c);
613 if (!smu_v11_0_i2c_bus_unlock(i2c)) {
614 DRM_ERROR("Failed to unlock the bus from SMU");
618 adev->pm.bus_locked = false;
621 static const struct i2c_lock_operations smu_v11_0_i2c_i2c_lock_ops = {
622 .lock_bus = lock_bus,
623 .trylock_bus = trylock_bus,
624 .unlock_bus = unlock_bus,
627 static int smu_v11_0_i2c_xfer(struct i2c_adapter *i2c_adap,
628 struct i2c_msg *msgs, int num)
631 struct amdgpu_device *adev = to_amdgpu_device(i2c_adap);
633 if (!adev->pm.bus_locked) {
634 DRM_ERROR("I2C bus unlocked, stopping transaction!");
638 smu_v11_0_i2c_init(i2c_adap);
640 for (i = 0; i < num; i++) {
641 if (msgs[i].flags & I2C_M_RD)
642 ret = smu_v11_0_i2c_read_data(i2c_adap,
643 (uint8_t)msgs[i].addr,
644 msgs[i].buf, msgs[i].len);
646 ret = smu_v11_0_i2c_write_data(i2c_adap,
647 (uint8_t)msgs[i].addr,
648 msgs[i].buf, msgs[i].len);
656 smu_v11_0_i2c_fini(i2c_adap);
660 static u32 smu_v11_0_i2c_func(struct i2c_adapter *adap)
662 return I2C_FUNC_I2C | I2C_FUNC_SMBUS_EMUL;
666 static const struct i2c_algorithm smu_v11_0_i2c_algo = {
667 .master_xfer = smu_v11_0_i2c_xfer,
668 .functionality = smu_v11_0_i2c_func,
671 int smu_v11_0_i2c_control_init(struct i2c_adapter *control)
673 struct amdgpu_device *adev = to_amdgpu_device(control);
676 control->owner = THIS_MODULE;
677 control->class = I2C_CLASS_SPD;
678 control->dev.parent = &adev->pdev->dev;
679 control->algo = &smu_v11_0_i2c_algo;
680 snprintf(control->name, sizeof(control->name), "AMDGPU SMU");
681 control->lock_ops = &smu_v11_0_i2c_i2c_lock_ops;
683 res = i2c_add_adapter(control);
685 DRM_ERROR("Failed to register hw i2c, err: %d\n", res);
690 void smu_v11_0_i2c_control_fini(struct i2c_adapter *control)
692 i2c_del_adapter(control);
696 * Keep this for future unit test if bugs arise
699 #define I2C_TARGET_ADDR 0xA0
701 bool smu_v11_0_i2c_test_bus(struct i2c_adapter *control)
704 uint32_t ret = I2C_OK;
705 uint8_t data[6] = {0xf, 0, 0xde, 0xad, 0xbe, 0xef};
710 if (!smu_v11_0_i2c_bus_lock(control)) {
711 DRM_ERROR("Failed to lock the bus!.");
715 smu_v11_0_i2c_init(control);
717 /* Write 0xde to address 0x0000 on the EEPROM */
718 ret = smu_v11_0_i2c_write_data(control, I2C_TARGET_ADDR, data, 6);
720 ret = smu_v11_0_i2c_read_data(control, I2C_TARGET_ADDR, data, 6);
722 smu_v11_0_i2c_fini(control);
724 smu_v11_0_i2c_bus_unlock(control);