include/uapi/linux/tps6594_pfsm.h

Source file repositories/reference/linux-study-clean/include/uapi/linux/tps6594_pfsm.h

File Facts

System
Linux kernel
Corpus path
include/uapi/linux/tps6594_pfsm.h
Extension
.h
Size
1160 bytes
Lines
38
Domain
Core OS
Bucket
Core Kernel Interface
Inferred role
Core OS: implementation source
Status
source implementation candidate

Why This File Exists

Core operating-system implementation surface: boot, tasks, memory, VFS, syscall-facing interfaces, synchronization, credentials, and isolation.

Dependency Surface

Detected Declarations

Annotated Snippet

struct pmic_state_opt {
	__u8 gpio_retention;
	__u8 ddr_retention;
	__u8 mcu_only_startup_dest;
};

/* Commands */
#define PMIC_BASE			'P'

#define PMIC_GOTO_STANDBY		_IO(PMIC_BASE, 0)
#define PMIC_GOTO_LP_STANDBY		_IO(PMIC_BASE, 1)
#define PMIC_UPDATE_PGM			_IO(PMIC_BASE, 2)
#define PMIC_SET_ACTIVE_STATE		_IO(PMIC_BASE, 3)
#define PMIC_SET_MCU_ONLY_STATE		_IOW(PMIC_BASE, 4, struct pmic_state_opt)
#define PMIC_SET_RETENTION_STATE	_IOW(PMIC_BASE, 5, struct pmic_state_opt)

#endif /*  __TPS6594_PFSM_H */

Annotation

Implementation Notes