-
Notifications
You must be signed in to change notification settings - Fork 6.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drivers: i2c: Base OMAP I2C support for TI-K3 processor
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 Bus Recovery Bus recovery feature utilizing bit-bang operations, which sends 9 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 <dhruvmenon1104@gmail.com>
- Loading branch information
Showing
5 changed files
with
955 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
# Copyright (C) 2024 BeagleBoard.org Foundation | ||
# Copyright (C) 2024 Dhruv Menon <dhruvmenon1104@gmail.com> | ||
|
||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
config I2C_OMAP | ||
bool "TI OMAP I2C Driver" | ||
default y | ||
depends on DT_HAS_TI_OMAP_I2C_ENABLED | ||
select I2C_BITBANG | ||
help | ||
Enable the I2C driver for TI OMAP SoCs. |
Oops, something went wrong.