2 * Amlogic Meson GX eFuse Driver
4 * Copyright (c) 2016 Endless Computers, Inc.
5 * Author: Carlo Caione <carlo@endlessm.com>
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.
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
17 #include <linux/module.h>
18 #include <linux/nvmem-provider.h>
20 #include <linux/platform_device.h>
22 #include <linux/firmware/meson/meson_sm.h>
24 static int meson_efuse_read(void *context
, unsigned int offset
,
25 void *val
, size_t bytes
)
27 return meson_sm_call_read((u8
*)val
, bytes
, SM_EFUSE_READ
, offset
,
31 static int meson_efuse_write(void *context
, unsigned int offset
,
32 void *val
, size_t bytes
)
34 return meson_sm_call_write((u8
*)val
, bytes
, SM_EFUSE_WRITE
, offset
,
38 static const struct of_device_id meson_efuse_match
[] = {
39 { .compatible
= "amlogic,meson-gxbb-efuse", },
42 MODULE_DEVICE_TABLE(of
, meson_efuse_match
);
44 static int meson_efuse_probe(struct platform_device
*pdev
)
46 struct device
*dev
= &pdev
->dev
;
47 struct nvmem_device
*nvmem
;
48 struct nvmem_config
*econfig
;
51 if (meson_sm_call(SM_EFUSE_USER_MAX
, &size
, 0, 0, 0, 0, 0) < 0)
54 econfig
= devm_kzalloc(dev
, sizeof(*econfig
), GFP_KERNEL
);
59 econfig
->name
= dev_name(dev
);
61 econfig
->word_size
= 1;
62 econfig
->reg_read
= meson_efuse_read
;
63 econfig
->reg_write
= meson_efuse_write
;
66 nvmem
= devm_nvmem_register(&pdev
->dev
, econfig
);
68 return PTR_ERR_OR_ZERO(nvmem
);
71 static struct platform_driver meson_efuse_driver
= {
72 .probe
= meson_efuse_probe
,
74 .name
= "meson-efuse",
75 .of_match_table
= meson_efuse_match
,
79 module_platform_driver(meson_efuse_driver
);
81 MODULE_AUTHOR("Carlo Caione <carlo@endlessm.com>");
82 MODULE_DESCRIPTION("Amlogic Meson GX NVMEM driver");
83 MODULE_LICENSE("GPL v2");