2 * Copyright (c) 2015 Pengutronix, Sascha Hauer <kernel@pengutronix.de>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
14 #include <linux/export.h>
15 #include <linux/jiffies.h>
16 #include <linux/regmap.h>
17 #include <linux/soc/mediatek/infracfg.h>
18 #include <asm/processor.h>
20 #define INFRA_TOPAXI_PROTECTEN 0x0220
21 #define INFRA_TOPAXI_PROTECTSTA1 0x0228
24 * mtk_infracfg_set_bus_protection - enable bus protection
25 * @regmap: The infracfg regmap
26 * @mask: The mask containing the protection bits to be enabled.
28 * This function enables the bus protection bits for disabled power
29 * domains so that the system does not hang when some unit accesses the
30 * bus while in power down.
32 int mtk_infracfg_set_bus_protection(struct regmap
*infracfg
, u32 mask
)
34 unsigned long expired
;
38 regmap_update_bits(infracfg
, INFRA_TOPAXI_PROTECTEN
, mask
, mask
);
40 expired
= jiffies
+ HZ
;
43 ret
= regmap_read(infracfg
, INFRA_TOPAXI_PROTECTSTA1
, &val
);
47 if ((val
& mask
) == mask
)
51 if (time_after(jiffies
, expired
))
59 * mtk_infracfg_clear_bus_protection - disable bus protection
60 * @regmap: The infracfg regmap
61 * @mask: The mask containing the protection bits to be disabled.
63 * This function disables the bus protection bits previously enabled with
64 * mtk_infracfg_set_bus_protection.
66 int mtk_infracfg_clear_bus_protection(struct regmap
*infracfg
, u32 mask
)
68 unsigned long expired
;
71 regmap_update_bits(infracfg
, INFRA_TOPAXI_PROTECTEN
, mask
, 0);
73 expired
= jiffies
+ HZ
;
78 ret
= regmap_read(infracfg
, INFRA_TOPAXI_PROTECTSTA1
, &val
);
86 if (time_after(jiffies
, expired
))