Searched +full:dma +full:- +full:ch +full:- +full:sph (Results 1 – 3 of 3) sorted by relevance
/Zephyr-latest/dts/bindings/ethernet/ |
D | snps,dwcxgmac.yaml | 2 # SPDX - License - Identifier : Apache - 2.0 9 - name: reset-device.yaml 10 - name: ethernet-controller.yaml 17 max-frame-size: 23 means that normally xgmac will reject any frame above max-frame-size 27 max-speed: 30 - 10 31 - 100 32 - 1000 33 - 2500 [all …]
|
/Zephyr-latest/drivers/spi/ |
D | spi_pl022.c | 4 * SPDX-License-Identifier: Apache-2.0 22 #include <zephyr/drivers/dma.h> 71 #define SSP_CR0_MASK_SPH SSP_MASK(CR0, SPH) 206 * DMA Control Register 213 /* Receive DMA Enable bit */ 215 /* Transmit DMA Enable bit */ 293 const struct spi_pl022_dma_config dma[NUM_OF_DIRECTION]; member 303 struct spi_pl022_dma_data dma[NUM_OF_DIRECTION]; member 333 for (postdiv = SCR_MAX + 1; postdiv > SCR_MIN + 1; --postdiv) { in spi_pl022_calc_postdiv() 334 if (pclk / (prescale * (postdiv - 1)) > baud) { in spi_pl022_calc_postdiv() [all …]
|
/Zephyr-latest/drivers/ethernet/dwc_xgmac/ |
D | eth_dwc_xgmac.c | 4 * SPDX-License-Identifier: Apache-2.0 19 #define UPDATE_ETH_STATS_TX_PKT_CNT(dev_data, incr) (dev_data->stats.pkts.tx += incr) 20 #define UPDATE_ETH_STATS_RX_PKT_CNT(dev_data, incr) (dev_data->stats.pkts.rx += incr) 21 #define UPDATE_ETH_STATS_TX_BYTE_CNT(dev_data, incr) (dev_data->stats.bytes.sent += incr) 22 #define UPDATE_ETH_STATS_RX_BYTE_CNT(dev_data, incr) (dev_data->stats.bytes.received += incr) 23 #define UPDATE_ETH_STATS_TX_ERROR_PKT_CNT(dev_data, incr) (dev_data->stats.errors.tx += incr) 24 #define UPDATE_ETH_STATS_RX_ERROR_PKT_CNT(dev_data, incr) (dev_data->stats.errors.rx += incr) 25 #define UPDATE_ETH_STATS_TX_DROP_PKT_CNT(dev_data, incr) (dev_data->stats.tx_dropped += incr) 37 * @brief Run-time device configuration data structure. 40 * controller instance which is modifiable at run-time, such as [all …]
|