forked from AsahiLinux/m1n1
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpmgr.h
More file actions
35 lines (23 loc) · 819 Bytes
/
pmgr.h
File metadata and controls
35 lines (23 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
/* SPDX-License-Identifier: MIT */
#ifndef PMGR_H
#define PMGR_H
#include "types.h"
#define PMGR_DIE_OFFSET 0x2000000000
#define PMGR_DEVICE_ID GENMASK(15, 0)
#define PMGR_DIE_ID GENMASK(31, 28)
#define PMGR_PS_ACTIVE 0xf
#define PMGR_PS_CLKGATE 0x4
#define PMGR_PS_PWRGATE 0x0
int pmgr_init(void);
int pmgr_power_enable(u32 id);
int pmgr_power_disable(u32 id);
int pmgr_adt_power_enable(const char *path);
int pmgr_adt_power_disable(const char *path);
int pmgr_adt_power_enable_index(const char *path, u32 index);
int pmgr_adt_power_disable_index(const char *path, u32 index);
int pmgr_adt_reset(const char *path);
int pmgr_reset(int die, const char *name);
int pmgr_power_on(int die, const char *name);
int pmgr_set_mode(uintptr_t addr, u8 target_mode);
u32 pmgr_get_feature(const char *name);
#endif