Apple SoC PMGR driver updates for 5.17
* Adds an auto-PM feature that is necessary for a single device * Disables module builds, which were broken anyway -----BEGIN PGP SIGNATURE----- iHUEABYIAB0WIQSU7I7lUkZru3Mt15+lhN6SrnTN2AUCYbnTUgAKCRClhN6SrnTN 2B28AP9KqcASRLcJ8dHSv+ILmHQimW6/AeUuhuwkGjk9tRRFgQEAqDsHYL/hFlUe ayxR7RTLhlZUowdRHqzsAtI6mYyzEwE= =wksk -----END PGP SIGNATURE----- gpgsig -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEo6/YBQwIrVS28WGKmmx57+YAGNkFAmG6AngACgkQmmx57+YA GNkkChAAnU1lHryrPb23W7l0Tbm0niV3/7mXvPosLInoKWTff3PvvnZDX8F7azBR RTKrnERY3AWbh3n5ln+teKUT0QI90k9NfonZ/uFEYXeaQ374AntmyWUn7oY9GbuU 0X/MbRbtjNi8Ug9qdHZlOAG5Kd+H3BktfXH+wTDlz/GULBcV5bk/jYoX2TkZrDAg 3/wJGmd3FIyLXxGzABrE4+snJUP5tXwATGZjaCidMY8FbXxfHAe/IyK3UFHtFt8B 7Qz/1nMVGtgVTboRou0QNz3hzyo0jKFVBeAfCokxjP7B+0Z2we/pFZMGAR/mvuw7 4atuY6YiZwCsLEqH8VTzJiMt1vBLnHBaWKq6dBeBRJC7M2y6z3yagZdyHQEZeVj/ /5QDb66/0BmkYiFnGaZUvv/ylKWfNPa099x7lBpCD+/2mK29IKoY0Xe5WzdwNBQ0 1EyL5C0TgUL8/R+DgSxJWIpVffB4TsS1Npa3o9u/E+CgSocHgZaGYidvmO4viFCv sYrR4fISPdjwG57pkdYV9zwdvT4QmvLrVbsqxojp4JIpvB5dcIxhorno+AlbqXbB OCev6bqFV43SOdb878ePw9NzZZ9DXubi9G61zTZJAvVjOZuMAwcmMuxZYlQxL6ZS /JlaXZxQqfVU8GIZmFwGEWcXoqi2NOEnM5c4+hK+qWdONCW11Eg= =WaN0 -----END PGP SIGNATURE----- Merge tag 'asahi-soc-pmgr-5.17-v2' of https://github.com/AsahiLinux/linux into arm/drivers Apple SoC PMGR driver updates for 5.17 * Adds an auto-PM feature that is necessary for a single device * Disables module builds, which were broken anyway * tag 'asahi-soc-pmgr-5.17-v2' of https://github.com/AsahiLinux/linux: soc: apple: apple-pmgr-pwrstate: Do not build as a module soc: apple: apple-pmgr-pwrstate: Add auto-PM min level support Link: https://lore.kernel.org/r/660f6f7f-0857-b54c-c415-79bcb93f0e02@marcan.st Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
commit
d9bd3e9aca
|
@ -5,7 +5,7 @@ if ARCH_APPLE || COMPILE_TEST
|
|||
menu "Apple SoC drivers"
|
||||
|
||||
config APPLE_PMGR_PWRSTATE
|
||||
tristate "Apple SoC PMGR power state control"
|
||||
bool "Apple SoC PMGR power state control"
|
||||
depends on PM
|
||||
select REGMAP
|
||||
select MFD_SYSCON
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#define APPLE_PMGR_RESET BIT(31)
|
||||
#define APPLE_PMGR_AUTO_ENABLE BIT(28)
|
||||
#define APPLE_PMGR_PS_AUTO GENMASK(27, 24)
|
||||
#define APPLE_PMGR_PS_MIN GENMASK(19, 16)
|
||||
#define APPLE_PMGR_PARENT_OFF BIT(11)
|
||||
#define APPLE_PMGR_DEV_DISABLE BIT(10)
|
||||
#define APPLE_PMGR_WAS_CLKGATED BIT(9)
|
||||
|
@ -42,6 +43,7 @@ struct apple_pmgr_ps {
|
|||
struct reset_controller_dev rcdev;
|
||||
struct regmap *regmap;
|
||||
u32 offset;
|
||||
u32 min_state;
|
||||
};
|
||||
|
||||
#define genpd_to_apple_pmgr_ps(_genpd) container_of(_genpd, struct apple_pmgr_ps, genpd)
|
||||
|
@ -224,6 +226,11 @@ static int apple_pmgr_ps_probe(struct platform_device *pdev)
|
|||
ps->genpd.power_on = apple_pmgr_ps_power_on;
|
||||
ps->genpd.power_off = apple_pmgr_ps_power_off;
|
||||
|
||||
ret = of_property_read_u32(node, "apple,min-state", &ps->min_state);
|
||||
if (ret == 0 && ps->min_state <= APPLE_PMGR_PS_ACTIVE)
|
||||
regmap_update_bits(regmap, ps->offset, APPLE_PMGR_FLAGS | APPLE_PMGR_PS_MIN,
|
||||
FIELD_PREP(APPLE_PMGR_PS_MIN, ps->min_state));
|
||||
|
||||
active = apple_pmgr_ps_is_active(ps);
|
||||
if (of_property_read_bool(node, "apple,always-on")) {
|
||||
ps->genpd.flags |= GENPD_FLAG_ALWAYS_ON;
|
||||
|
|
Loading…
Reference in New Issue