forked from Minki/linux
crypto: caam - simplfy clock initialization
Simplify clock initialization code by converting it to use clk-bulk, devres and soc_device_match() match table. No functional change intended. Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com> Reviewed-by: Leonard Crestez <leonard.crestez@nxp.com> Tested-by: Iuliana Prodan <iuliana.prodan@nxp.com> Cc: Chris Spencer <christopher.spencer@sea.co.uk> Cc: Cory Tusar <cory.tusar@zii.aero> Cc: Chris Healy <cphealy@gmail.com> Cc: Lucas Stach <l.stach@pengutronix.de> Cc: Horia Geantă <horia.geanta@nxp.com> Cc: Aymen Sghaier <aymen.sghaier@nxp.com> Cc: Leonard Crestez <leonard.crestez@nxp.com> Cc: linux-crypto@vger.kernel.org Cc: linux-kernel@vger.kernel.org Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
parent
70c0cda27a
commit
51e002e949
@ -25,16 +25,6 @@ EXPORT_SYMBOL(caam_dpaa2);
|
||||
#include "qi.h"
|
||||
#endif
|
||||
|
||||
/*
|
||||
* i.MX targets tend to have clock control subsystems that can
|
||||
* enable/disable clocking to our device.
|
||||
*/
|
||||
static inline struct clk *caam_drv_identify_clk(struct device *dev,
|
||||
char *clk_name)
|
||||
{
|
||||
return caam_imx ? devm_clk_get(dev, clk_name) : NULL;
|
||||
}
|
||||
|
||||
/*
|
||||
* Descriptor to instantiate RNG State Handle 0 in normal mode and
|
||||
* load the JDKEK, TDKEK and TDSK registers
|
||||
@ -342,13 +332,6 @@ static int caam_remove(struct platform_device *pdev)
|
||||
/* Unmap controller region */
|
||||
iounmap(ctrl);
|
||||
|
||||
/* shut clocks off before finalizing shutdown */
|
||||
clk_disable_unprepare(ctrlpriv->caam_ipg);
|
||||
if (ctrlpriv->caam_mem)
|
||||
clk_disable_unprepare(ctrlpriv->caam_mem);
|
||||
clk_disable_unprepare(ctrlpriv->caam_aclk);
|
||||
if (ctrlpriv->caam_emi_slow)
|
||||
clk_disable_unprepare(ctrlpriv->caam_emi_slow);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@ -497,20 +480,98 @@ static const struct of_device_id caam_match[] = {
|
||||
};
|
||||
MODULE_DEVICE_TABLE(of, caam_match);
|
||||
|
||||
struct caam_imx_data {
|
||||
const struct clk_bulk_data *clks;
|
||||
int num_clks;
|
||||
};
|
||||
|
||||
static const struct clk_bulk_data caam_imx6_clks[] = {
|
||||
{ .id = "ipg" },
|
||||
{ .id = "mem" },
|
||||
{ .id = "aclk" },
|
||||
{ .id = "emi_slow" },
|
||||
};
|
||||
|
||||
static const struct caam_imx_data caam_imx6_data = {
|
||||
.clks = caam_imx6_clks,
|
||||
.num_clks = ARRAY_SIZE(caam_imx6_clks),
|
||||
};
|
||||
|
||||
static const struct clk_bulk_data caam_imx7_clks[] = {
|
||||
{ .id = "ipg" },
|
||||
{ .id = "aclk" },
|
||||
};
|
||||
|
||||
static const struct caam_imx_data caam_imx7_data = {
|
||||
.clks = caam_imx7_clks,
|
||||
.num_clks = ARRAY_SIZE(caam_imx7_clks),
|
||||
};
|
||||
|
||||
static const struct clk_bulk_data caam_imx6ul_clks[] = {
|
||||
{ .id = "ipg" },
|
||||
{ .id = "mem" },
|
||||
{ .id = "aclk" },
|
||||
};
|
||||
|
||||
static const struct caam_imx_data caam_imx6ul_data = {
|
||||
.clks = caam_imx6ul_clks,
|
||||
.num_clks = ARRAY_SIZE(caam_imx6ul_clks),
|
||||
};
|
||||
|
||||
static const struct soc_device_attribute caam_imx_soc_table[] = {
|
||||
{ .soc_id = "i.MX6UL", .data = &caam_imx6ul_data },
|
||||
{ .soc_id = "i.MX6*", .data = &caam_imx6_data },
|
||||
{ .soc_id = "i.MX7*", .data = &caam_imx7_data },
|
||||
{ .family = "Freescale i.MX" },
|
||||
{ /* sentinel */ }
|
||||
};
|
||||
|
||||
static void disable_clocks(void *data)
|
||||
{
|
||||
struct caam_drv_private *ctrlpriv = data;
|
||||
|
||||
clk_bulk_disable_unprepare(ctrlpriv->num_clks, ctrlpriv->clks);
|
||||
}
|
||||
|
||||
static int init_clocks(struct device *dev, const struct caam_imx_data *data)
|
||||
{
|
||||
struct caam_drv_private *ctrlpriv = dev_get_drvdata(dev);
|
||||
int ret;
|
||||
|
||||
ctrlpriv->num_clks = data->num_clks;
|
||||
ctrlpriv->clks = devm_kmemdup(dev, data->clks,
|
||||
data->num_clks * sizeof(data->clks[0]),
|
||||
GFP_KERNEL);
|
||||
if (!ctrlpriv->clks)
|
||||
return -ENOMEM;
|
||||
|
||||
ret = devm_clk_bulk_get(dev, ctrlpriv->num_clks, ctrlpriv->clks);
|
||||
if (ret) {
|
||||
dev_err(dev,
|
||||
"Failed to request all necessary clocks\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
ret = clk_bulk_prepare_enable(ctrlpriv->num_clks, ctrlpriv->clks);
|
||||
if (ret) {
|
||||
dev_err(dev,
|
||||
"Failed to prepare/enable all necessary clocks\n");
|
||||
return ret;
|
||||
}
|
||||
|
||||
return devm_add_action_or_reset(dev, disable_clocks, ctrlpriv);
|
||||
}
|
||||
|
||||
/* Probe routine for CAAM top (controller) level */
|
||||
static int caam_probe(struct platform_device *pdev)
|
||||
{
|
||||
int ret, ring, gen_sk, ent_delay = RTSDCTL_ENT_DLY_MIN;
|
||||
u64 caam_id;
|
||||
static const struct soc_device_attribute imx_soc[] = {
|
||||
{.family = "Freescale i.MX"},
|
||||
{},
|
||||
};
|
||||
const struct soc_device_attribute *imx_soc_match;
|
||||
struct device *dev;
|
||||
struct device_node *nprop, *np;
|
||||
struct caam_ctrl __iomem *ctrl;
|
||||
struct caam_drv_private *ctrlpriv;
|
||||
struct clk *clk;
|
||||
#ifdef CONFIG_DEBUG_FS
|
||||
struct caam_perfmon *perfmon;
|
||||
#endif
|
||||
@ -537,7 +598,8 @@ static int caam_probe(struct platform_device *pdev)
|
||||
|
||||
caam_little_end = !(bool)(rd_reg32(&ctrl->perfmon.status) &
|
||||
(CSTA_PLEND | CSTA_ALT_PLEND));
|
||||
caam_imx = (bool)soc_device_match(imx_soc);
|
||||
imx_soc_match = soc_device_match(caam_imx_soc_table);
|
||||
caam_imx = (bool)imx_soc_match;
|
||||
|
||||
comp_params = rd_reg32(&ctrl->perfmon.comp_parms_ms);
|
||||
caam_dpaa2 = !!(comp_params & CTPR_MS_DPAA2);
|
||||
@ -568,81 +630,17 @@ static int caam_probe(struct platform_device *pdev)
|
||||
}
|
||||
#endif
|
||||
|
||||
/* Enable clocking */
|
||||
clk = caam_drv_identify_clk(&pdev->dev, "ipg");
|
||||
if (IS_ERR(clk)) {
|
||||
ret = PTR_ERR(clk);
|
||||
dev_err(&pdev->dev,
|
||||
"can't identify CAAM ipg clk: %d\n", ret);
|
||||
goto iounmap_ctrl;
|
||||
}
|
||||
ctrlpriv->caam_ipg = clk;
|
||||
|
||||
if (!of_machine_is_compatible("fsl,imx7d") &&
|
||||
!of_machine_is_compatible("fsl,imx7s") &&
|
||||
!of_machine_is_compatible("fsl,imx7ulp")) {
|
||||
clk = caam_drv_identify_clk(&pdev->dev, "mem");
|
||||
if (IS_ERR(clk)) {
|
||||
ret = PTR_ERR(clk);
|
||||
dev_err(&pdev->dev,
|
||||
"can't identify CAAM mem clk: %d\n", ret);
|
||||
goto iounmap_ctrl;
|
||||
if (imx_soc_match) {
|
||||
if (!imx_soc_match->data) {
|
||||
dev_err(dev, "No clock data provided for i.MX SoC");
|
||||
return -EINVAL;
|
||||
}
|
||||
ctrlpriv->caam_mem = clk;
|
||||
|
||||
ret = init_clocks(dev, imx_soc_match->data);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
|
||||
clk = caam_drv_identify_clk(&pdev->dev, "aclk");
|
||||
if (IS_ERR(clk)) {
|
||||
ret = PTR_ERR(clk);
|
||||
dev_err(&pdev->dev,
|
||||
"can't identify CAAM aclk clk: %d\n", ret);
|
||||
goto iounmap_ctrl;
|
||||
}
|
||||
ctrlpriv->caam_aclk = clk;
|
||||
|
||||
if (!of_machine_is_compatible("fsl,imx6ul") &&
|
||||
!of_machine_is_compatible("fsl,imx7d") &&
|
||||
!of_machine_is_compatible("fsl,imx7s") &&
|
||||
!of_machine_is_compatible("fsl,imx7ulp")) {
|
||||
clk = caam_drv_identify_clk(&pdev->dev, "emi_slow");
|
||||
if (IS_ERR(clk)) {
|
||||
ret = PTR_ERR(clk);
|
||||
dev_err(&pdev->dev,
|
||||
"can't identify CAAM emi_slow clk: %d\n", ret);
|
||||
goto iounmap_ctrl;
|
||||
}
|
||||
ctrlpriv->caam_emi_slow = clk;
|
||||
}
|
||||
|
||||
ret = clk_prepare_enable(ctrlpriv->caam_ipg);
|
||||
if (ret < 0) {
|
||||
dev_err(&pdev->dev, "can't enable CAAM ipg clock: %d\n", ret);
|
||||
goto iounmap_ctrl;
|
||||
}
|
||||
|
||||
if (ctrlpriv->caam_mem) {
|
||||
ret = clk_prepare_enable(ctrlpriv->caam_mem);
|
||||
if (ret < 0) {
|
||||
dev_err(&pdev->dev, "can't enable CAAM secure mem clock: %d\n",
|
||||
ret);
|
||||
goto disable_caam_ipg;
|
||||
}
|
||||
}
|
||||
|
||||
ret = clk_prepare_enable(ctrlpriv->caam_aclk);
|
||||
if (ret < 0) {
|
||||
dev_err(&pdev->dev, "can't enable CAAM aclk clock: %d\n", ret);
|
||||
goto disable_caam_mem;
|
||||
}
|
||||
|
||||
if (ctrlpriv->caam_emi_slow) {
|
||||
ret = clk_prepare_enable(ctrlpriv->caam_emi_slow);
|
||||
if (ret < 0) {
|
||||
dev_err(&pdev->dev, "can't enable CAAM emi slow clock: %d\n",
|
||||
ret);
|
||||
goto disable_caam_aclk;
|
||||
}
|
||||
}
|
||||
|
||||
/* Allocating the BLOCK_OFFSET based on the supported page size on
|
||||
* the platform
|
||||
@ -714,7 +712,7 @@ static int caam_probe(struct platform_device *pdev)
|
||||
ret = dma_set_mask_and_coherent(dev, caam_get_dma_mask(dev));
|
||||
if (ret) {
|
||||
dev_err(dev, "dma_set_mask_and_coherent failed (%d)\n", ret);
|
||||
goto disable_caam_emi_slow;
|
||||
goto iounmap_ctrl;
|
||||
}
|
||||
|
||||
ctrlpriv->era = caam_get_era(ctrl);
|
||||
@ -919,16 +917,6 @@ shutdown_qi:
|
||||
if (ctrlpriv->qi_init)
|
||||
caam_qi_shutdown(dev);
|
||||
#endif
|
||||
disable_caam_emi_slow:
|
||||
if (ctrlpriv->caam_emi_slow)
|
||||
clk_disable_unprepare(ctrlpriv->caam_emi_slow);
|
||||
disable_caam_aclk:
|
||||
clk_disable_unprepare(ctrlpriv->caam_aclk);
|
||||
disable_caam_mem:
|
||||
if (ctrlpriv->caam_mem)
|
||||
clk_disable_unprepare(ctrlpriv->caam_mem);
|
||||
disable_caam_ipg:
|
||||
clk_disable_unprepare(ctrlpriv->caam_ipg);
|
||||
iounmap_ctrl:
|
||||
iounmap(ctrl);
|
||||
return ret;
|
||||
|
@ -94,11 +94,8 @@ struct caam_drv_private {
|
||||
Handles of the RNG4 block are initialized
|
||||
by this driver */
|
||||
|
||||
struct clk *caam_ipg;
|
||||
struct clk *caam_mem;
|
||||
struct clk *caam_aclk;
|
||||
struct clk *caam_emi_slow;
|
||||
|
||||
struct clk_bulk_data *clks;
|
||||
int num_clks;
|
||||
/*
|
||||
* debugfs entries for developer view into driver/device
|
||||
* variables at runtime.
|
||||
|
Loading…
Reference in New Issue
Block a user