soc: rockchip: support rk3328 pm config

Change-Id: If19dba160fbfdce147e1c851c5cc424d08e0c4fd
Signed-off-by: XiaoDong Huang <derrick.huang@rock-chips.com>
This commit is contained in:
XiaoDong Huang 2018-01-15 11:55:04 +08:00 committed by Tao Huang
commit 075df03bcd
2 changed files with 8 additions and 0 deletions

View file

@ -4,6 +4,7 @@ Required properties:
- compatible: Should be one of the following.
- "rockchip,pm-rk322x" - for RK322x SOCs.
- "rockchip,pm-rk3288" - for RK3288 SOCs.
- "rockchip,pm-rk3328" - for RK3328 SOCs.
- "rockchip,pm-rk3368" - for RK3368 SoCs.
- "rockchip,pm-rk3399" - for RK3399 SoCs.
@ -50,6 +51,12 @@ Example:
>;
};
rockchip_suspend: rockchip-suspend {
compatible = "rockchip,pm-rk3328";
status = "disabled";
rockchip,virtual-poweroff = <0>;
};
rockchip_suspend: rockchip-suspend {
compatible = "rockchip,pm-rk3368";
status = "disabled";

View file

@ -23,6 +23,7 @@
static const struct of_device_id pm_match_table[] = {
{ .compatible = "rockchip,pm-rk322x",},
{ .compatible = "rockchip,pm-rk3288",},
{ .compatible = "rockchip,pm-rk3328",},
{ .compatible = "rockchip,pm-rk3368",},
{ .compatible = "rockchip,pm-rk3399",},
{ },