blob: d769840d1e183a607e4e020660592c79512985dd [file] [log] [blame]
Carlo Caionead855ea2016-08-27 15:43:46 +02001/*
Martin Blumenstingl9593ad32017-10-09 15:26:40 +02002 * Amlogic Meson GX eFuse Driver
Carlo Caionead855ea2016-08-27 15:43:46 +02003 *
4 * Copyright (c) 2016 Endless Computers, Inc.
5 * Author: Carlo Caione <carlo@endlessm.com>
6 *
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of version 2 of the GNU General Public License as
9 * published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * more details.
15 */
16
17#include <linux/module.h>
18#include <linux/nvmem-provider.h>
19#include <linux/of.h>
20#include <linux/platform_device.h>
21
22#include <linux/firmware/meson/meson_sm.h>
23
24static int meson_efuse_read(void *context, unsigned int offset,
25 void *val, size_t bytes)
26{
Jerome Bruneta29a63b2018-05-11 12:07:00 +010027 return meson_sm_call_read((u8 *)val, bytes, SM_EFUSE_READ, offset,
28 bytes, 0, 0, 0);
Carlo Caionead855ea2016-08-27 15:43:46 +020029}
30
Jerome Brunete5507732018-05-11 12:07:01 +010031static int meson_efuse_write(void *context, unsigned int offset,
32 void *val, size_t bytes)
33{
34 return meson_sm_call_write((u8 *)val, bytes, SM_EFUSE_WRITE, offset,
35 bytes, 0, 0, 0);
36}
37
Carlo Caionead855ea2016-08-27 15:43:46 +020038static const struct of_device_id meson_efuse_match[] = {
39 { .compatible = "amlogic,meson-gxbb-efuse", },
40 { /* sentinel */ },
41};
42MODULE_DEVICE_TABLE(of, meson_efuse_match);
43
44static int meson_efuse_probe(struct platform_device *pdev)
45{
Jerome Brunet401488d2018-05-11 12:06:59 +010046 struct device *dev = &pdev->dev;
Carlo Caionead855ea2016-08-27 15:43:46 +020047 struct nvmem_device *nvmem;
Jerome Brunet401488d2018-05-11 12:06:59 +010048 struct nvmem_config *econfig;
Carlo Caionead855ea2016-08-27 15:43:46 +020049 unsigned int size;
50
51 if (meson_sm_call(SM_EFUSE_USER_MAX, &size, 0, 0, 0, 0, 0) < 0)
52 return -EINVAL;
53
Jerome Brunet401488d2018-05-11 12:06:59 +010054 econfig = devm_kzalloc(dev, sizeof(*econfig), GFP_KERNEL);
55 if (!econfig)
56 return -ENOMEM;
Carlo Caionead855ea2016-08-27 15:43:46 +020057
Jerome Brunet401488d2018-05-11 12:06:59 +010058 econfig->dev = dev;
59 econfig->name = dev_name(dev);
60 econfig->stride = 1;
61 econfig->word_size = 1;
Jerome Brunet401488d2018-05-11 12:06:59 +010062 econfig->reg_read = meson_efuse_read;
Jerome Brunete5507732018-05-11 12:07:01 +010063 econfig->reg_write = meson_efuse_write;
Jerome Brunet401488d2018-05-11 12:06:59 +010064 econfig->size = size;
65
66 nvmem = devm_nvmem_register(&pdev->dev, econfig);
Carlo Caionead855ea2016-08-27 15:43:46 +020067
Andrey Smirnov90696a42018-03-09 14:47:05 +000068 return PTR_ERR_OR_ZERO(nvmem);
Carlo Caionead855ea2016-08-27 15:43:46 +020069}
70
71static struct platform_driver meson_efuse_driver = {
72 .probe = meson_efuse_probe,
Carlo Caionead855ea2016-08-27 15:43:46 +020073 .driver = {
74 .name = "meson-efuse",
75 .of_match_table = meson_efuse_match,
76 },
77};
78
79module_platform_driver(meson_efuse_driver);
80
81MODULE_AUTHOR("Carlo Caione <carlo@endlessm.com>");
Martin Blumenstingl9593ad32017-10-09 15:26:40 +020082MODULE_DESCRIPTION("Amlogic Meson GX NVMEM driver");
Carlo Caionead855ea2016-08-27 15:43:46 +020083MODULE_LICENSE("GPL v2");