Replies: 7 comments
-
I don't have experience with it, but if you want to hack on the nvidia.ko source, it looks like you could specify the speed in I think add a line like:
or:
The speeds are defined in src/common/sdk/nvidia/inc/ctrl/ctrl402c.h.
It is probably a bug that the driver doesn't use DEFAULT today. Let me know if that helps. |
Beta Was this translation helpful? Give feedback.
-
After several attempts your solution works. Thank you very much. |
Beta Was this translation helpful? Give feedback.
-
Thanks for the update. What was ultimately the change you made that worked for you? I'd like to make sure the NVIDIA driver code gets updated with a fix. I imagine
would be the most generally applicable. |
Beta Was this translation helpful? Give feedback.
-
It's not that simple because i have two oem devices on the i2c bus , one in bus 4 (10khz) and another in bus 5 (100khz). |
Beta Was this translation helpful? Give feedback.
-
I finally did a dirty hard-coded hack to change the bus speeds. if (addr == 0x4a) // 10KHZ addr |
Beta Was this translation helpful? Give feedback.
-
I'm glad you got it working. Out of curiosity, who was the OEM of your RX4070 Super Ti? I'd like to try to replicate the problem. Thanks. |
Beta Was this translation helpful? Give feedback.
-
I was trying to help a developer of the OpenRGB project for ZOTAC GAMING GeForce RTX 4070 Ti SUPER Trinity * cards on Linux. On windows he solved the problem with struct ( NVAPI_I2C_INFO ) But for Linux we still don't have an elegant solution because NvAPI_I2CRead * Write are not implemented in libnvidia-api. Thanks again for your help. |
Beta Was this translation helpful? Give feedback.
-
I just bought a RX4070 Super Ti.
Unfortunately the funny manufacturer put on the i2c bus a controller
that runs at 10kz instead of the standard 100kz , so reading and writing always fails.
I know that nvapi can change the bus speed but the necessary function is not in libnvidia-api.
Is there another way to manage the i2c bus speed for a driver.
Thanks.
Beta Was this translation helpful? Give feedback.
All reactions