summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorTom Rini <[email protected]>2020-10-09 18:10:24 -0400
committerTom Rini <[email protected]>2020-10-09 18:10:24 -0400
commit0437cc415517c06c864bee5dbce3001d70b2c2cb (patch)
tree760afc39c86954919d0a3abe3b9edba4a49dbe36 /drivers
parent0570938e3c1835a6bcd0ce5b47a501ad5a09a9b3 (diff)
parent0817daa7606ec55ba551acb0208eaba33a548804 (diff)
Merge branch '2020-10-09-kconfig-reorg'
- Re-organize a number of Kconfig related entries to be better organized for long term maintenance.
Diffstat (limited to 'drivers')
-rw-r--r--drivers/core/Kconfig11
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/core/Kconfig b/drivers/core/Kconfig
index 1ca5d66141b..07d3a6a7a43 100644
--- a/drivers/core/Kconfig
+++ b/drivers/core/Kconfig
@@ -286,4 +286,15 @@ config INTEL_ACPIGEN
information such as P states and T stages. Also included is a way
to create a GNVS table and set it up.
+config BOUNCE_BUFFER
+ bool "Include bounce buffer API"
+ help
+ Some peripherals support DMA from a subset of physically
+ addressable memory only. To support such peripherals, the
+ bounce buffer API uses a temporary buffer: it copies data
+ to/from DMA regions while managing cache operations.
+
+ A second possible use of bounce buffers is their ability to
+ provide aligned buffers for DMA operations.
+
endmenu