-
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.
Adds HSI framework in to the linux kernel. High Speed Synchronous Serial Interface (HSI) is a serial interface mainly used for connecting application engines (APE) with cellular modem engines (CMT) in cellular handsets. HSI provides multiplexing for up to 16 logical channels, low-latency and full duplex communication. Signed-off-by: Carlos Chinea <carlos.chinea@nokia.com> Acked-by: Linus Walleij <linus.walleij@linaro.org>
- Loading branch information
Carlos Chinea
committed
Jan 5, 2012
1 parent
805a6af
commit a056ab8
Showing
8 changed files
with
1,026 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,17 @@ | ||
# | ||
# HSI driver configuration | ||
# | ||
menuconfig HSI | ||
tristate "HSI support" | ||
---help--- | ||
The "High speed synchronous Serial Interface" is | ||
synchronous serial interface used mainly to connect | ||
application engines and cellular modems. | ||
|
||
if HSI | ||
|
||
config HSI_BOARDINFO | ||
bool | ||
default y | ||
|
||
endif # HSI |
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,5 @@ | ||
# | ||
# Makefile for HSI | ||
# | ||
obj-$(CONFIG_HSI_BOARDINFO) += hsi_boardinfo.o | ||
obj-$(CONFIG_HSI) += hsi.o |
Oops, something went wrong.