diff options
author | Boris BREZILLON | 2015-06-18 15:46:19 +0200 |
---|---|---|
committer | Herbert Xu | 2015-06-19 16:18:02 +0200 |
commit | 1fa2e9ae1d3782bd8f737487dc6306ba16b4d016 (patch) | |
tree | 8129de02717a2c41d6cd5122ef0a378c53e26766 /drivers/crypto/mv_cesa.c | |
parent | crypto: mv_cesa - use gen_pool to reserve the SRAM memory region (diff) | |
download | kernel-qcow2-linux-1fa2e9ae1d3782bd8f737487dc6306ba16b4d016.tar.gz kernel-qcow2-linux-1fa2e9ae1d3782bd8f737487dc6306ba16b4d016.tar.xz kernel-qcow2-linux-1fa2e9ae1d3782bd8f737487dc6306ba16b4d016.zip |
crypto: mv_cesa - explicitly define kirkwood and dove compatible strings
We are about to add a new driver to support new features like using the
TDMA engine to offload the CPU.
Orion, Dove and Kirkwood platforms are already using the mv_cesa driver,
but Orion SoCs do not embed the TDMA engine, which means we will have to
differentiate them if we want to get TDMA support on Dove and Kirkwood.
In the other hand, the migration from the old driver to the new one is not
something all people are willing to do without first auditing the new
driver.
Hence we have to support the new compatible in the mv_cesa driver so that
new platforms with updated DTs can still attach their crypto engine device
to this driver.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Diffstat (limited to 'drivers/crypto/mv_cesa.c')
-rw-r--r-- | drivers/crypto/mv_cesa.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/crypto/mv_cesa.c b/drivers/crypto/mv_cesa.c index e31d82c1eebe..5bcd575fa96f 100644 --- a/drivers/crypto/mv_cesa.c +++ b/drivers/crypto/mv_cesa.c @@ -1034,7 +1034,7 @@ static int mv_cesa_get_sram(struct platform_device *pdev, &sram_size); cp->sram_size = sram_size; - cp->sram_pool = of_get_named_gen_pool(&pdev->dev.of_node, + cp->sram_pool = of_get_named_gen_pool(pdev->dev.of_node, "marvell,crypto-srams", 0); if (cp->sram_pool) { cp->sram = gen_pool_dma_alloc(cp->sram_pool, sram_size, @@ -1197,6 +1197,8 @@ static int mv_remove(struct platform_device *pdev) static const struct of_device_id mv_cesa_of_match_table[] = { { .compatible = "marvell,orion-crypto", }, + { .compatible = "marvell,kirkwood-crypto", }, + { .compatible = "marvell,dove-crypto", }, {} }; MODULE_DEVICE_TABLE(of, mv_cesa_of_match_table); |