-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
staging: typec: Fairchild FUSB302 Type-c chip driver
Fairchild FUSB302 Type-C chip driver that works with Type-C Port Controller Manager to provide USB PD and USB Type-C functionalities. Signed-off-by: Yueyao Zhu <yueyao.zhu@gmail.com> Signed-off-by: Guenter Roeck <linux@roeck-us.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
- Loading branch information
Yueyao Zhu
authored and
Greg Kroah-Hartman
committed
Apr 28, 2017
1 parent
74e656d
commit c034a43
Showing
7 changed files
with
2,018 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
obj-$(CONFIG_TYPEC_TCPM) += tcpm.o | ||
obj-$(CONFIG_TYPEC_TCPCI) += tcpci.o | ||
obj-y += fusb302/ |
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,7 @@ | ||
config TYPEC_FUSB302 | ||
tristate "Fairchild FUSB302 Type-C chip driver" | ||
depends on I2C | ||
help | ||
The Fairchild FUSB302 Type-C chip driver that works with | ||
Type-C Port Controller Manager to provide USB PD and USB | ||
Type-C functionalities. |
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 @@ | ||
obj-$(CONFIG_TYPEC_FUSB302) += fusb302.o |
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,6 @@ | ||
fusb302: | ||
- Find a better logging scheme, at least not having the same debugging/logging | ||
code replicated here and in tcpm | ||
- Find a non-hacky way to coordinate between PM and I2C access | ||
- Documentation? The FUSB302 datasheet provides information on the chip to help | ||
understand the code. But it may still be helpful to have a documentation. |
Oops, something went wrong.