aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/STM32/LLD/DMAv3/notes.txt
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2017-12-26 13:18:16 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2017-12-26 13:18:16 +0000
commit8b719ae5594bb8f667794a3f129f509a74bf5a12 (patch)
tree2204febe1ef205a7fdc4696d121415edb85524d4 /os/hal/ports/STM32/LLD/DMAv3/notes.txt
parentdc3872cef8b0340421c8f948665cbe7d38798ae4 (diff)
downloadChibiOS-8b719ae5594bb8f667794a3f129f509a74bf5a12.tar.gz
ChibiOS-8b719ae5594bb8f667794a3f129f509a74bf5a12.tar.bz2
ChibiOS-8b719ae5594bb8f667794a3f129f509a74bf5a12.zip
Added stub DMA and SPI drivers for H7.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@11191 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/ports/STM32/LLD/DMAv3/notes.txt')
-rw-r--r--os/hal/ports/STM32/LLD/DMAv3/notes.txt20
1 files changed, 20 insertions, 0 deletions
diff --git a/os/hal/ports/STM32/LLD/DMAv3/notes.txt b/os/hal/ports/STM32/LLD/DMAv3/notes.txt
new file mode 100644
index 000000000..a4e14d38d
--- /dev/null
+++ b/os/hal/ports/STM32/LLD/DMAv3/notes.txt
@@ -0,0 +1,20 @@
+STM32 DMAv2 driver.
+
+Driver capability:
+
+- The driver supports the STM32 enhanced DMA controller found on F2, F4 and
+ F7 sub-families.
+- Support for automatic the channel selection.
+- Support for cache flushing and invalidation.
+
+The file registry must export:
+
+STM32_ADVANCED_DMA - TRUE not used by the DMA drivers but other
+ drivers use it to enable checks on DMA
+ channels. Probably will be removed in the
+ future.
+STM32_HAS_DMAx - Support for DMA unit "x" (1..2).
+STM32_DMAx_CHn_HANDLER - Vector name for channel "n" (0..7).
+STM32_DMAn_CHx_NUMBER - Vector number for channel "n" (0..7).
+STM32_DMA_CACHE_HANDLING - TRUE if the device requires explicit cache
+ handling on DMA buffers. \ No newline at end of file