Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1255784 > unrolled thread
| Started by | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> |
|---|---|
| First post | 2015-10-26 11:00 +0100 |
| Last post | 2015-10-27 10:30 +0100 |
| Articles | 5 — 3 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH 2/3] nvmem: mediatek: Add Mediatek EFUSE driver Srinivas Kandagatla <srinivas.kandagatla@linaro.org> - 2015-10-26 11:00 +0100
Re: [PATCH 2/3] nvmem: mediatek: Add Mediatek EFUSE driver Sascha Hauer <s.hauer@pengutronix.de> - 2015-10-26 11:30 +0100
Re: [PATCH 2/3] nvmem: mediatek: Add Mediatek EFUSE driver Srinivas Kandagatla <srinivas.kandagatla@linaro.org> - 2015-10-26 11:50 +0100
Re: [PATCH 2/3] nvmem: mediatek: Add Mediatek EFUSE driver andrew-ct chen <andrew-ct.chen@mediatek.com> - 2015-10-27 06:40 +0100
Re: [PATCH 2/3] nvmem: mediatek: Add Mediatek EFUSE driver andrew-ct chen <andrew-ct.chen@mediatek.com> - 2015-10-27 10:30 +0100
| From | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> |
|---|---|
| Date | 2015-10-26 11:00 +0100 |
| Subject | Re: [PATCH 2/3] nvmem: mediatek: Add Mediatek EFUSE driver |
| Message-ID | <qnMJj-6CU-11@gated-at.bofh.it> |
On 16/10/15 09:39, andrew-ct.chen@mediatek.com wrote:
> From: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
>
> Add Mediatek EFUSE driver to access hardware data like
> thermal sensor calibration or HDMI impedance.
>
> Signed-off-by: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
Dirver looks pretty simple, below are few minor nits.
Please rebase this patch on top of v4.4-rc1 once its released in few
weeks, so that I can queue this driver for v4.5.
> ---
> drivers/nvmem/Kconfig | 11 ++++++
> drivers/nvmem/Makefile | 1 +
> drivers/nvmem/mtk-efuse.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++
> 3 files changed, 101 insertions(+)
> create mode 100644 drivers/nvmem/mtk-efuse.c
>
> diff --git a/drivers/nvmem/Kconfig b/drivers/nvmem/Kconfig
> index 8db2978..1bd5badc 100644
> --- a/drivers/nvmem/Kconfig
> +++ b/drivers/nvmem/Kconfig
> @@ -14,6 +14,17 @@ menuconfig NVMEM
>
> if NVMEM
>
> +config MTK_EFUSE
> + tristate "Mediatek SoCs EFUSE support"
> + depends on ARCH_MEDIATEK || COMPILE_TEST
> + select REGMAP_MMIO
> + help
> + This is a driver to access hardware related data like sensor
> + calibration, HDMI impedance etc.
> +
> + This driver can also be built as a module. If so, the module
> + will be called efuse-mtk.
> +
> config QCOM_QFPROM
> tristate "QCOM QFPROM Support"
> depends on ARCH_QCOM || COMPILE_TEST
> diff --git a/drivers/nvmem/Makefile b/drivers/nvmem/Makefile
> index 4328b93..916b727 100644
> --- a/drivers/nvmem/Makefile
> +++ b/drivers/nvmem/Makefile
> @@ -6,6 +6,7 @@ obj-$(CONFIG_NVMEM) += nvmem_core.o
> nvmem_core-y := core.o
>
> # Devices
> +obj-$(CONFIG_MTK_EFUSE) += mtk-efuse.o
For consistency reasons, could you do this similar to other drivers.
> obj-$(CONFIG_QCOM_QFPROM) += nvmem_qfprom.o
> nvmem_qfprom-y := qfprom.o
> obj-$(CONFIG_NVMEM_SUNXI_SID) += nvmem_sunxi_sid.o
> diff --git a/drivers/nvmem/mtk-efuse.c b/drivers/nvmem/mtk-efuse.c
> new file mode 100644
> index 0000000..9021c0b
> --- /dev/null
> +++ b/drivers/nvmem/mtk-efuse.c
> @@ -0,0 +1,89 @@
> +/*
> + * Copyright (c) 2015 MediaTek Inc.
> + * Author: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
> + *
> + * This program is free software; you can redistribute it and/or modify
> + * it under the terms of the GNU General Public License version 2 as
> + * published by the Free Software Foundation.
> + *
> + * This program is distributed in the hope that it will be useful,
> + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> + * GNU General Public License for more details.
> + */
> +
> +#include <linux/device.h>
> +#include <linux/module.h>
> +#include <linux/nvmem-provider.h>
> +#include <linux/platform_device.h>
> +#include <linux/regmap.h>
> +
> +static struct regmap_config mtk_regmap_config = {
> + .reg_bits = 32,
> + .val_bits = 32,
> + .reg_stride = 4,
> +};
> +
> +static int mtk_efuse_probe(struct platform_device *pdev)
> +{
> + struct device *dev = &pdev->dev;
> + struct resource *res;
> + struct nvmem_device *nvmem;
> + struct nvmem_config *econfig;
> + struct regmap *regmap;
> + void __iomem *base;
> +
> + res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> + base = devm_ioremap_resource(dev, res);
> + if (IS_ERR(base))
> + return PTR_ERR(base);
> +
> + econfig = devm_kzalloc(dev, sizeof(*econfig), GFP_KERNEL);
> + if (!econfig)
> + return -ENOMEM;
Why not use static econfig variable?
> +
> + mtk_regmap_config.max_register = resource_size(res) - 1;
> +
> + regmap = devm_regmap_init_mmio(dev, base, &mtk_regmap_config);
> + if (IS_ERR(regmap)) {
> + dev_err(dev, "regmap init failed\n");
> + return PTR_ERR(regmap);
> + }
> +
> + econfig->dev = dev;
> + econfig->owner = THIS_MODULE;
> + nvmem = nvmem_register(econfig);
> + if (IS_ERR(nvmem))
> + return PTR_ERR(nvmem);
> +
> + platform_set_drvdata(pdev, nvmem);
> +
> + return 0;
> +}
> +
> +static int mtk_efuse_remove(struct platform_device *pdev)
> +{
> + struct nvmem_device *nvmem = platform_get_drvdata(pdev);
> +
> + return nvmem_unregister(nvmem);
> +}
> +
> +static const struct of_device_id mtk_efuse_of_match[] = {
> + { .compatible = "mediatek,mt8135-efuse",},
> + { .compatible = "mediatek,mt8173-efuse",},
> + {/* sentinel */},
> +};
> +MODULE_DEVICE_TABLE(of, mtk_efuse_of_match);
> +
> +static struct platform_driver mtk_efuse_driver = {
> + .probe = mtk_efuse_probe,
> + .remove = mtk_efuse_remove,
> + .driver = {
> + .name = "mediatek,efuse",
> + .of_match_table = mtk_efuse_of_match,
> + },
> +};
> +module_platform_driver(mtk_efuse_driver);
> +MODULE_AUTHOR("Andrew-CT Chen <andrew-ct.chen@mediatek.com>");
> +MODULE_DESCRIPTION("Mediatek EFUSE driver");
> +MODULE_LICENSE("GPL v2");
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [next] | [standalone]
| From | Sascha Hauer <s.hauer@pengutronix.de> |
|---|---|
| Date | 2015-10-26 11:30 +0100 |
| Message-ID | <qnNcm-71B-19@gated-at.bofh.it> |
| In reply to | #1255784 |
On Mon, Oct 26, 2015 at 09:56:24AM +0000, Srinivas Kandagatla wrote:
> >+ .val_bits = 32,
> >+ .reg_stride = 4,
> >+};
> >+
> >+static int mtk_efuse_probe(struct platform_device *pdev)
> >+{
> >+ struct device *dev = &pdev->dev;
> >+ struct resource *res;
> >+ struct nvmem_device *nvmem;
> >+ struct nvmem_config *econfig;
> >+ struct regmap *regmap;
> >+ void __iomem *base;
> >+
> >+ res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> >+ base = devm_ioremap_resource(dev, res);
> >+ if (IS_ERR(base))
> >+ return PTR_ERR(base);
> >+
> >+ econfig = devm_kzalloc(dev, sizeof(*econfig), GFP_KERNEL);
> >+ if (!econfig)
> >+ return -ENOMEM;
> Why not use static econfig variable?
Because drivers should not assume there is only one instance of them in
the system. The qfprom driver does this and it's only a matter of
putting a second qcom,qfprom node into the device tree to break the
driver.
Sascha
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | Srinivas Kandagatla <srinivas.kandagatla@linaro.org> |
|---|---|
| Date | 2015-10-26 11:50 +0100 |
| Message-ID | <qnNvI-78a-35@gated-at.bofh.it> |
| In reply to | #1255802 |
On 26/10/15 10:28, Sascha Hauer wrote:
> On Mon, Oct 26, 2015 at 09:56:24AM +0000, Srinivas Kandagatla wrote:
>>> + .val_bits = 32,
>>> + .reg_stride = 4,
>>> +};
>>> +
>>> +static int mtk_efuse_probe(struct platform_device *pdev)
>>> +{
>>> + struct device *dev = &pdev->dev;
>>> + struct resource *res;
>>> + struct nvmem_device *nvmem;
>>> + struct nvmem_config *econfig;
>>> + struct regmap *regmap;
>>> + void __iomem *base;
>>> +
>>> + res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
>>> + base = devm_ioremap_resource(dev, res);
>>> + if (IS_ERR(base))
>>> + return PTR_ERR(base);
>>> +
>>> + econfig = devm_kzalloc(dev, sizeof(*econfig), GFP_KERNEL);
>>> + if (!econfig)
>>> + return -ENOMEM;
>> Why not use static econfig variable?
>
> Because drivers should not assume there is only one instance of them in
> the system. The qfprom driver does this and it's only a matter of
Good point, Yes, you are right. If MTK has possibility of having more
than one efuse we can leave the code as it is.
> putting a second qcom,qfprom node into the device tree to break the
> driver.
It would indeed.
--srini
>
> Sascha
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | andrew-ct chen <andrew-ct.chen@mediatek.com> |
|---|---|
| Date | 2015-10-27 06:40 +0100 |
| Message-ID | <qo59g-1gU-19@gated-at.bofh.it> |
| In reply to | #1255784 |
On Mon, 2015-10-26 at 09:56 +0000, Srinivas Kandagatla wrote:
> On 16/10/15 09:39, andrew-ct.chen@mediatek.com wrote:
> > From: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
> >
> > Add Mediatek EFUSE driver to access hardware data like
> > thermal sensor calibration or HDMI impedance.
> >
> > Signed-off-by: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
>
> Dirver looks pretty simple, below are few minor nits.
>
> Please rebase this patch on top of v4.4-rc1 once its released in few
> weeks, so that I can queue this driver for v4.5.
We will rebase it.
>
> > ---
> > drivers/nvmem/Kconfig | 11 ++++++
> > drivers/nvmem/Makefile | 1 +
> > drivers/nvmem/mtk-efuse.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++
> > 3 files changed, 101 insertions(+)
> > create mode 100644 drivers/nvmem/mtk-efuse.c
> >
> > diff --git a/drivers/nvmem/Kconfig b/drivers/nvmem/Kconfig
> > index 8db2978..1bd5badc 100644
> > --- a/drivers/nvmem/Kconfig
> > +++ b/drivers/nvmem/Kconfig
> > @@ -14,6 +14,17 @@ menuconfig NVMEM
> >
> > if NVMEM
> >
> > +config MTK_EFUSE
> > + tristate "Mediatek SoCs EFUSE support"
> > + depends on ARCH_MEDIATEK || COMPILE_TEST
> > + select REGMAP_MMIO
> > + help
> > + This is a driver to access hardware related data like sensor
> > + calibration, HDMI impedance etc.
> > +
> > + This driver can also be built as a module. If so, the module
> > + will be called efuse-mtk.
> > +
> > config QCOM_QFPROM
> > tristate "QCOM QFPROM Support"
> > depends on ARCH_QCOM || COMPILE_TEST
> > diff --git a/drivers/nvmem/Makefile b/drivers/nvmem/Makefile
> > index 4328b93..916b727 100644
> > --- a/drivers/nvmem/Makefile
> > +++ b/drivers/nvmem/Makefile
> > @@ -6,6 +6,7 @@ obj-$(CONFIG_NVMEM) += nvmem_core.o
> > nvmem_core-y := core.o
> >
> > # Devices
> > +obj-$(CONFIG_MTK_EFUSE) += mtk-efuse.o
>
> For consistency reasons, could you do this similar to other drivers.
>
> > obj-$(CONFIG_QCOM_QFPROM) += nvmem_qfprom.o
> > nvmem_qfprom-y := qfprom.o
> > obj-$(CONFIG_NVMEM_SUNXI_SID) += nvmem_sunxi_sid.o
> > diff --git a/drivers/nvmem/mtk-efuse.c b/drivers/nvmem/mtk-efuse.c
> > new file mode 100644
> > index 0000000..9021c0b
> > --- /dev/null
> > +++ b/drivers/nvmem/mtk-efuse.c
> > @@ -0,0 +1,89 @@
> > +/*
> > + * Copyright (c) 2015 MediaTek Inc.
> > + * Author: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
> > + *
> > + * This program is free software; you can redistribute it and/or modify
> > + * it under the terms of the GNU General Public License version 2 as
> > + * published by the Free Software Foundation.
> > + *
> > + * This program is distributed in the hope that it will be useful,
> > + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> > + * GNU General Public License for more details.
> > + */
> > +
> > +#include <linux/device.h>
> > +#include <linux/module.h>
> > +#include <linux/nvmem-provider.h>
> > +#include <linux/platform_device.h>
> > +#include <linux/regmap.h>
> > +
> > +static struct regmap_config mtk_regmap_config = {
> > + .reg_bits = 32,
> > + .val_bits = 32,
> > + .reg_stride = 4,
> > +};
> > +
> > +static int mtk_efuse_probe(struct platform_device *pdev)
> > +{
> > + struct device *dev = &pdev->dev;
> > + struct resource *res;
> > + struct nvmem_device *nvmem;
> > + struct nvmem_config *econfig;
> > + struct regmap *regmap;
> > + void __iomem *base;
> > +
> > + res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > + base = devm_ioremap_resource(dev, res);
> > + if (IS_ERR(base))
> > + return PTR_ERR(base);
> > +
> > + econfig = devm_kzalloc(dev, sizeof(*econfig), GFP_KERNEL);
> > + if (!econfig)
> > + return -ENOMEM;
> Why not use static econfig variable?
>
> > +
> > + mtk_regmap_config.max_register = resource_size(res) - 1;
> > +
> > + regmap = devm_regmap_init_mmio(dev, base, &mtk_regmap_config);
> > + if (IS_ERR(regmap)) {
> > + dev_err(dev, "regmap init failed\n");
> > + return PTR_ERR(regmap);
> > + }
> > +
> > + econfig->dev = dev;
> > + econfig->owner = THIS_MODULE;
> > + nvmem = nvmem_register(econfig);
> > + if (IS_ERR(nvmem))
> > + return PTR_ERR(nvmem);
> > +
> > + platform_set_drvdata(pdev, nvmem);
> > +
> > + return 0;
> > +}
> > +
> > +static int mtk_efuse_remove(struct platform_device *pdev)
> > +{
> > + struct nvmem_device *nvmem = platform_get_drvdata(pdev);
> > +
> > + return nvmem_unregister(nvmem);
> > +}
> > +
> > +static const struct of_device_id mtk_efuse_of_match[] = {
> > + { .compatible = "mediatek,mt8135-efuse",},
> > + { .compatible = "mediatek,mt8173-efuse",},
> > + {/* sentinel */},
> > +};
> > +MODULE_DEVICE_TABLE(of, mtk_efuse_of_match);
> > +
> > +static struct platform_driver mtk_efuse_driver = {
> > + .probe = mtk_efuse_probe,
> > + .remove = mtk_efuse_remove,
> > + .driver = {
> > + .name = "mediatek,efuse",
> > + .of_match_table = mtk_efuse_of_match,
> > + },
> > +};
> > +module_platform_driver(mtk_efuse_driver);
> > +MODULE_AUTHOR("Andrew-CT Chen <andrew-ct.chen@mediatek.com>");
> > +MODULE_DESCRIPTION("Mediatek EFUSE driver");
> > +MODULE_LICENSE("GPL v2");
> >
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [next] | [standalone]
| From | andrew-ct chen <andrew-ct.chen@mediatek.com> |
|---|---|
| Date | 2015-10-27 10:30 +0100 |
| Message-ID | <qo8JR-3sW-17@gated-at.bofh.it> |
| In reply to | #1256469 |
On Tue, 2015-10-27 at 13:32 +0800, andrew-ct chen wrote:
> On Mon, 2015-10-26 at 09:56 +0000, Srinivas Kandagatla wrote:
> > On 16/10/15 09:39, andrew-ct.chen@mediatek.com wrote:
> > > From: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
> > >
> > > Add Mediatek EFUSE driver to access hardware data like
> > > thermal sensor calibration or HDMI impedance.
> > >
> > > Signed-off-by: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
> >
> > Dirver looks pretty simple, below are few minor nits.
> >
> > Please rebase this patch on top of v4.4-rc1 once its released in few
> > weeks, so that I can queue this driver for v4.5.
>
> We will rebase it.
>
> >
> > > ---
> > > drivers/nvmem/Kconfig | 11 ++++++
> > > drivers/nvmem/Makefile | 1 +
> > > drivers/nvmem/mtk-efuse.c | 89 +++++++++++++++++++++++++++++++++++++++++++++++
> > > 3 files changed, 101 insertions(+)
> > > create mode 100644 drivers/nvmem/mtk-efuse.c
> > >
> > > diff --git a/drivers/nvmem/Kconfig b/drivers/nvmem/Kconfig
> > > index 8db2978..1bd5badc 100644
> > > --- a/drivers/nvmem/Kconfig
> > > +++ b/drivers/nvmem/Kconfig
> > > @@ -14,6 +14,17 @@ menuconfig NVMEM
> > >
> > > if NVMEM
> > >
> > > +config MTK_EFUSE
> > > + tristate "Mediatek SoCs EFUSE support"
> > > + depends on ARCH_MEDIATEK || COMPILE_TEST
> > > + select REGMAP_MMIO
> > > + help
> > > + This is a driver to access hardware related data like sensor
> > > + calibration, HDMI impedance etc.
> > > +
> > > + This driver can also be built as a module. If so, the module
> > > + will be called efuse-mtk.
> > > +
> > > config QCOM_QFPROM
> > > tristate "QCOM QFPROM Support"
> > > depends on ARCH_QCOM || COMPILE_TEST
> > > diff --git a/drivers/nvmem/Makefile b/drivers/nvmem/Makefile
> > > index 4328b93..916b727 100644
> > > --- a/drivers/nvmem/Makefile
> > > +++ b/drivers/nvmem/Makefile
> > > @@ -6,6 +6,7 @@ obj-$(CONFIG_NVMEM) += nvmem_core.o
> > > nvmem_core-y := core.o
> > >
> > > # Devices
> > > +obj-$(CONFIG_MTK_EFUSE) += mtk-efuse.o
> >
> > For consistency reasons, could you do this similar to other drivers.
We will do this for the consistency.
> >
> > > obj-$(CONFIG_QCOM_QFPROM) += nvmem_qfprom.o
> > > nvmem_qfprom-y := qfprom.o
> > > obj-$(CONFIG_NVMEM_SUNXI_SID) += nvmem_sunxi_sid.o
> > > diff --git a/drivers/nvmem/mtk-efuse.c b/drivers/nvmem/mtk-efuse.c
> > > new file mode 100644
> > > index 0000000..9021c0b
> > > --- /dev/null
> > > +++ b/drivers/nvmem/mtk-efuse.c
> > > @@ -0,0 +1,89 @@
> > > +/*
> > > + * Copyright (c) 2015 MediaTek Inc.
> > > + * Author: Andrew-CT Chen <andrew-ct.chen@mediatek.com>
> > > + *
> > > + * This program is free software; you can redistribute it and/or modify
> > > + * it under the terms of the GNU General Public License version 2 as
> > > + * published by the Free Software Foundation.
> > > + *
> > > + * This program is distributed in the hope that it will be useful,
> > > + * but WITHOUT ANY WARRANTY; without even the implied warranty of
> > > + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
> > > + * GNU General Public License for more details.
> > > + */
> > > +
> > > +#include <linux/device.h>
> > > +#include <linux/module.h>
> > > +#include <linux/nvmem-provider.h>
> > > +#include <linux/platform_device.h>
> > > +#include <linux/regmap.h>
> > > +
> > > +static struct regmap_config mtk_regmap_config = {
> > > + .reg_bits = 32,
> > > + .val_bits = 32,
> > > + .reg_stride = 4,
> > > +};
> > > +
> > > +static int mtk_efuse_probe(struct platform_device *pdev)
> > > +{
> > > + struct device *dev = &pdev->dev;
> > > + struct resource *res;
> > > + struct nvmem_device *nvmem;
> > > + struct nvmem_config *econfig;
> > > + struct regmap *regmap;
> > > + void __iomem *base;
> > > +
> > > + res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> > > + base = devm_ioremap_resource(dev, res);
> > > + if (IS_ERR(base))
> > > + return PTR_ERR(base);
> > > +
> > > + econfig = devm_kzalloc(dev, sizeof(*econfig), GFP_KERNEL);
> > > + if (!econfig)
> > > + return -ENOMEM;
> > Why not use static econfig variable?
> >
> > > +
> > > + mtk_regmap_config.max_register = resource_size(res) - 1;
> > > +
> > > + regmap = devm_regmap_init_mmio(dev, base, &mtk_regmap_config);
> > > + if (IS_ERR(regmap)) {
> > > + dev_err(dev, "regmap init failed\n");
> > > + return PTR_ERR(regmap);
> > > + }
> > > +
> > > + econfig->dev = dev;
> > > + econfig->owner = THIS_MODULE;
> > > + nvmem = nvmem_register(econfig);
> > > + if (IS_ERR(nvmem))
> > > + return PTR_ERR(nvmem);
> > > +
> > > + platform_set_drvdata(pdev, nvmem);
> > > +
> > > + return 0;
> > > +}
> > > +
> > > +static int mtk_efuse_remove(struct platform_device *pdev)
> > > +{
> > > + struct nvmem_device *nvmem = platform_get_drvdata(pdev);
> > > +
> > > + return nvmem_unregister(nvmem);
> > > +}
> > > +
> > > +static const struct of_device_id mtk_efuse_of_match[] = {
> > > + { .compatible = "mediatek,mt8135-efuse",},
> > > + { .compatible = "mediatek,mt8173-efuse",},
> > > + {/* sentinel */},
> > > +};
> > > +MODULE_DEVICE_TABLE(of, mtk_efuse_of_match);
> > > +
> > > +static struct platform_driver mtk_efuse_driver = {
> > > + .probe = mtk_efuse_probe,
> > > + .remove = mtk_efuse_remove,
> > > + .driver = {
> > > + .name = "mediatek,efuse",
> > > + .of_match_table = mtk_efuse_of_match,
> > > + },
> > > +};
> > > +module_platform_driver(mtk_efuse_driver);
> > > +MODULE_AUTHOR("Andrew-CT Chen <andrew-ct.chen@mediatek.com>");
> > > +MODULE_DESCRIPTION("Mediatek EFUSE driver");
> > > +MODULE_LICENSE("GPL v2");
> > >
>
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web