summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Walleij2019-02-10 22:42:26 +0100
committerLinus Walleij2019-04-23 16:02:16 +0200
commite00797f2e05b7f3758bb96e6248aff8d95999cec (patch)
treedde8f419b6d3372397bd3d78e947db1a9362b1ec
parentsoc: ixp4xx: Add DT bindings for IXP4xx NPE (diff)
downloadkernel-qcow2-linux-e00797f2e05b7f3758bb96e6248aff8d95999cec.tar.gz
kernel-qcow2-linux-e00797f2e05b7f3758bb96e6248aff8d95999cec.tar.xz
kernel-qcow2-linux-e00797f2e05b7f3758bb96e6248aff8d95999cec.zip
soc: ixp4xx: npe: Add DT probe code
This makes the NPE driver able to probe from the device tree. It only needs to get three memory resources and the plaform device provide these, so all is pretty simple. Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
-rw-r--r--drivers/soc/ixp4xx/ixp4xx-npe.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/soc/ixp4xx/ixp4xx-npe.c b/drivers/soc/ixp4xx/ixp4xx-npe.c
index d2dd916816d4..15979d4376ab 100644
--- a/drivers/soc/ixp4xx/ixp4xx-npe.c
+++ b/drivers/soc/ixp4xx/ixp4xx-npe.c
@@ -729,9 +729,17 @@ static int ixp4xx_npe_remove(struct platform_device *pdev)
return 0;
}
+static const struct of_device_id ixp4xx_npe_of_match[] = {
+ {
+ .compatible = "intel,ixp4xx-network-processing-engine",
+ },
+ {},
+};
+
static struct platform_driver ixp4xx_npe_driver = {
.driver = {
.name = "ixp4xx-npe",
+ .of_match_table = of_match_ptr(ixp4xx_npe_of_match),
},
.probe = ixp4xx_npe_probe,
.remove = ixp4xx_npe_remove,