aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/ports/STM32/LLD/DMAv1_MUX/notes.txt
diff options
context:
space:
mode:
authorGiovanni Di Sirio <gdisirio@gmail.com>2018-12-28 10:03:25 +0000
committerGiovanni Di Sirio <gdisirio@gmail.com>2018-12-28 10:03:25 +0000
commitdead88309c1875a0a18f7f92ad2919bc67d15e8a (patch)
tree8c8aa71c2faee44e4d6435559d9970910e30e216 /os/hal/ports/STM32/LLD/DMAv1_MUX/notes.txt
parenta38c79d1d2afbe9f4377ea52cc033b791935c76e (diff)
downloadChibiOS-dead88309c1875a0a18f7f92ad2919bc67d15e8a.tar.gz
ChibiOS-dead88309c1875a0a18f7f92ad2919bc67d15e8a.tar.bz2
ChibiOS-dead88309c1875a0a18f7f92ad2919bc67d15e8a.zip
DMA rework.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@12487 110e8d01-0319-4d1e-a829-52ad28d1bb01
Diffstat (limited to 'os/hal/ports/STM32/LLD/DMAv1_MUX/notes.txt')
-rw-r--r--os/hal/ports/STM32/LLD/DMAv1_MUX/notes.txt26
1 files changed, 0 insertions, 26 deletions
diff --git a/os/hal/ports/STM32/LLD/DMAv1_MUX/notes.txt b/os/hal/ports/STM32/LLD/DMAv1_MUX/notes.txt
deleted file mode 100644
index dc4663890..000000000
--- a/os/hal/ports/STM32/LLD/DMAv1_MUX/notes.txt
+++ /dev/null
@@ -1,26 +0,0 @@
-STM32 DMAv1 driver.
-
-Driver capability:
-
-- The driver supports the STM32 traditional DMA controller in the following
- configurations: 5ch, 7ch, 7ch+5ch, 7ch+7ch.
-- Support for automatic the channel selection through the CSELR register.
-- For devices without CSELR register it is possible to select channels but
- the SYSCFG CFGR register is not configured, the user has to configure it
- before starting the DMA driver.
-- The driver supports shared ISR handlers with a quirk: the IRQ priority is
- established by the first allocated channel among the channels sharing the
- ISR.
-
-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_DMA_SUPPORTS_CSELR - TRUE if the DMA have a CSELR register.
-STM32_DMA_SUPPORTS_DMAMUX - TRUE if the DMA is riven by a DMAMUX.
-STM32_DMAn_NUM_CHANNELS - Number of channels in DMAs "n" (1..2).
-STM32_DMAn_CHx_HANDLER - Vector name for IRQ "x" (1..7). If the macro
- is not exported then the ISR is not declared.
-STM32_DMAn_CHx_NUMBER - Vector number for IRQ "x" (1..7).