-
Notifications
You must be signed in to change notification settings - Fork 6.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
drivers: i2c: Base OMAP I2C support for TI-K3 series processor #80113
base: main
Are you sure you want to change the base?
Conversation
Hello @malto101, and thank you very much for your first pull request to the Zephyr project! |
04702a7
to
b72aaf4
Compare
6d050eb
to
bf0b17b
Compare
b39ca6e
to
715c86d
Compare
boards/beagle/beaglebone_ai64/beaglebone_ai64_j721e_main_r5f0_0_defconfig
Outdated
Show resolved
Hide resolved
hello @pdgendt, If everything looks fine, Could you approve the PR? |
The OMAP I2C provides support for I2C serial interface on TI K3 series. It is compatible with Philips I2C physical layer. The commit includes: Zephyr i2c api implementation Polling Mode Signed-off-by: Dhruv Menon <[email protected]>
The bus recovery feature utilizing bit-bang operations, which sends SCL clock pulses to recover the bus and checks if the line is down. Upon recovery, it disables the system test register before resuming the transactions. Signed-off-by: Dhruv Menon <[email protected]>
Provide I2C Support to BeagleBone AI64 board. Signed-off-by: Dhruv Menon <[email protected]>
194536d
to
2ab31bd
Compare
I have resolved the merge conflicts present in CMakeLists.txt and Kconfig, updated the branch, and pushed the changes. |
This PR adds the support for I2C serial interface on TI K3 series. It is compatible with Philips I2C physical layer.
The commit includes:
Zephyr i2c api implementation
speed Select(100Kbps and 400Kbps)
Bus recovery
This driver is tested on BeagleBone AI64
Note: This PR is based #71527