#
fdafd315 |
| 24-Nov-2023 |
Warner Losh <imp@FreeBSD.org> |
sys: Automated cleanup of cdefs and other formatting
Apply the following automated changes to try to eliminate no-longer-needed sys/cdefs.h includes as well as now-empty blank lines in a row.
Remov
sys: Automated cleanup of cdefs and other formatting
Apply the following automated changes to try to eliminate no-longer-needed sys/cdefs.h includes as well as now-empty blank lines in a row.
Remove /^#if.*\n#endif.*\n#include\s+<sys/cdefs.h>.*\n/ Remove /\n+#include\s+<sys/cdefs.h>.*\n+#if.*\n#endif.*\n+/ Remove /\n+#if.*\n#endif.*\n+/ Remove /^#if.*\n#endif.*\n/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/types.h>/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/param.h>/ Remove /\n+#include\s+<sys/cdefs.h>\n#include\s+<sys/capsicum.h>/
Sponsored by: Netflix
show more ...
|
Revision tags: release/14.0.0 |
|
#
685dc743 |
| 16-Aug-2023 |
Warner Losh <imp@FreeBSD.org> |
sys: Remove $FreeBSD$: one-line .c pattern
Remove /^[\s*]*__FBSDID\("\$FreeBSD\$"\);?\s*\n/
|
Revision tags: release/13.2.0, release/12.4.0, release/13.1.0 |
|
#
a3f08403 |
| 10-May-2022 |
John Baldwin <jhb@FreeBSD.org> |
xdma: Remove unused devclass arguments to DRIVER_MODULE.
|
Revision tags: release/12.3.0, release/13.0.0, release/12.2.0, release/11.4.0 |
|
#
44e86fbd |
| 13-Feb-2020 |
Dimitry Andric <dim@FreeBSD.org> |
Merge ^/head r357662 through r357854.
|
#
d987842d |
| 09-Feb-2020 |
Ruslan Bukin <br@FreeBSD.org> |
Enter the network epoch in the xdma interrupt handler if required by a peripheral device driver.
Sponsored by: DARPA, AFRL
|
Revision tags: release/12.1.0, release/11.3.0, release/12.0.0, release/11.2.0 |
|
#
3d5b3b0a |
| 12-Apr-2018 |
Ruslan Bukin <br@FreeBSD.org> |
Tune xDMA interface slightly: o Move descriptors allocation to DMA engine driver o Add generic xdma_request() routine o Add less-generic scatter-gather application based on xdma interface
Typical op
Tune xDMA interface slightly: o Move descriptors allocation to DMA engine driver o Add generic xdma_request() routine o Add less-generic scatter-gather application based on xdma interface
Typical operation flow in peripheral device driver is:
1. Get xDMA controller sc->xdma_tx = xdma_ofw_get(sc->dev, "tx");
2. Allocate virtual channel sc->xchan_tx = xdma_channel_alloc(sc->xdma_tx, caps);
3. Setup transfer status callback xdma_setup_intr(sc->xchan_tx, my_tx_intr, sc, &sc->ih_tx);
4. Request a transfer(s) ret = xdma_request(sc->xchan_tx, &req);
5. Free the channel xdma_channel_free(sc->xdma_tx);
6. Free the controller xdma_put(sc->xdma_tx);
Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D14971
show more ...
|
Revision tags: release/10.4.0, release/11.1.0 |
|
#
85debf7f |
| 20-Dec-2016 |
Ruslan Bukin <br@FreeBSD.org> |
Add xDMA -- the DMA abstraction layer, initial verison.
xDMA is a DMA framework designed to abstract the interaction between device drivers and DMA engines.
Project wiki: https://wiki.freebsd.org/x
Add xDMA -- the DMA abstraction layer, initial verison.
xDMA is a DMA framework designed to abstract the interaction between device drivers and DMA engines.
Project wiki: https://wiki.freebsd.org/xdma
Sponsored by: DARPA, AFRL Differential Revision: https://reviews.freebsd.org/D8807
show more ...
|