Skip to content

Commit 7a15cf2

Browse files
Romain Periergregkh
authored andcommitted
nvmem: rockchip: add support for RK3368
This adds the necessary function for handling support on RK3368 SoCs Signed-off-by: Romain Perier <romain.perier@collabora.com> Acked-by: Rob Herring <robh@kernel.org> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 33d426a commit 7a15cf2

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

Documentation/devicetree/bindings/nvmem/rockchip-efuse.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Required properties:
66
- "rockchip,rk3188-efuse" - for RK3188 SoCs.
77
- "rockchip,rk3228-efuse" - for RK3228 SoCs.
88
- "rockchip,rk3288-efuse" - for RK3288 SoCs.
9+
- "rockchip,rk3368-efuse" - for RK3368 SoCs.
910
- "rockchip,rk3399-efuse" - for RK3399 SoCs.
1011
- reg: Should contain the registers location and exact eFuse size
1112
- clocks: Should be the clock id of eFuse

drivers/nvmem/rockchip-efuse.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,10 @@ static const struct of_device_id rockchip_efuse_match[] = {
177177
.compatible = "rockchip,rk3288-efuse",
178178
.data = (void *)&rockchip_rk3288_efuse_read,
179179
},
180+
{
181+
.compatible = "rockchip,rk3368-efuse",
182+
.data = (void *)&rockchip_rk3288_efuse_read,
183+
},
180184
{
181185
.compatible = "rockchip,rk3399-efuse",
182186
.data = (void *)&rockchip_rk3399_efuse_read,

0 commit comments

Comments
 (0)