mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-13 01:08:50 +00:00
serial: 8250: Validate dmaengine tx chan meets requirements
8250 dma support requires the dmaegine driver support terminate. Query slave caps to determine if necessary commands/properties are supported; disable dma if not. Note this means dmaengine driver must support slave caps reporting as well. Signed-off-by: Peter Hurley <peter@hurleysoftware.com> Reviewed-by: Heikki Krogerus <heikki.krogerus@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
ec5a11a91e
commit
ddedfd82bc
@ -201,6 +201,15 @@ int serial8250_request_dma(struct uart_8250_port *p)
|
|||||||
goto release_rx;
|
goto release_rx;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* 8250 tx dma requires dmaengine driver to support terminate */
|
||||||
|
ret = dma_get_slave_caps(dma->txchan, &caps);
|
||||||
|
if (ret)
|
||||||
|
goto err;
|
||||||
|
if (!caps.cmd_terminate) {
|
||||||
|
ret = -EINVAL;
|
||||||
|
goto err;
|
||||||
|
}
|
||||||
|
|
||||||
dmaengine_slave_config(dma->txchan, &dma->txconf);
|
dmaengine_slave_config(dma->txchan, &dma->txconf);
|
||||||
|
|
||||||
/* RX buffer */
|
/* RX buffer */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user