gdma_periph.c 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. // Copyright 2020 Espressif Systems (Shanghai) PTE LTD
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. #include "soc/gdma_periph.h"
  15. const gdma_signal_conn_t gdma_periph_signals = {
  16. .groups = {
  17. [0] = {
  18. .module = PERIPH_GDMA_MODULE,
  19. .pairs = {
  20. [0] = {
  21. .rx_irq_id = ETS_DMA_IN_CH0_INTR_SOURCE,
  22. .tx_irq_id = ETS_DMA_OUT_CH0_INTR_SOURCE,
  23. },
  24. [1] = {
  25. .rx_irq_id = ETS_DMA_IN_CH1_INTR_SOURCE,
  26. .tx_irq_id = ETS_DMA_OUT_CH1_INTR_SOURCE,
  27. },
  28. [2] = {
  29. .rx_irq_id = ETS_DMA_IN_CH2_INTR_SOURCE,
  30. .tx_irq_id = ETS_DMA_OUT_CH2_INTR_SOURCE,
  31. },
  32. [3] = {
  33. .rx_irq_id = ETS_DMA_IN_CH3_INTR_SOURCE,
  34. .tx_irq_id = ETS_DMA_OUT_CH3_INTR_SOURCE,
  35. },
  36. [4] = {
  37. .rx_irq_id = ETS_DMA_IN_CH4_INTR_SOURCE,
  38. .tx_irq_id = ETS_DMA_OUT_CH4_INTR_SOURCE,
  39. }
  40. }
  41. }
  42. }
  43. };