-
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.
The HSU DMA is developed to support High Speed UART controllers found in particular on Intel MID platforms such as Intel Medfield. The existing implementation is tighten to the drivers/tty/serial/mfd.c driver and has a lot of disadvantages. Besides that we would like to get rid of the old HS UART driver in regarding to extending the 8250 which supports generic DMAEngine API. That's why the current driver has been developed. Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
- Loading branch information
Andy Shevchenko
authored and
Greg Kroah-Hartman
committed
Mar 7, 2015
1 parent
84e0185
commit 2b49e0c
Showing
9 changed files
with
840 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,14 @@ | ||
# DMA engine configuration for hsu | ||
config HSU_DMA | ||
tristate "High Speed UART DMA support" | ||
select DMA_ENGINE | ||
select DMA_VIRTUAL_CHANNELS | ||
|
||
config HSU_DMA_PCI | ||
tristate "High Speed UART DMA PCI driver" | ||
depends on PCI | ||
select HSU_DMA | ||
help | ||
Support the High Speed UART DMA on the platfroms that | ||
enumerate it as a PCI device. For example, Intel Medfield | ||
has integrated this HSU DMA controller. |
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 @@ | ||
obj-$(CONFIG_HSU_DMA) += hsu_dma.o | ||
hsu_dma-objs := hsu.o | ||
|
||
obj-$(CONFIG_HSU_DMA_PCI) += hsu_dma_pci.o | ||
hsu_dma_pci-objs := pci.o |
Oops, something went wrong.