include/linux/mfd/da9150/core.h

Source file repositories/reference/linux-study-clean/include/linux/mfd/da9150/core.h

File Facts

System
Linux kernel
Corpus path
include/linux/mfd/da9150/core.h
Extension
.h
Size
2104 bytes
Lines
82
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 da9150_fg_pdata {
	u32 update_interval;	/* msecs */
	u8 warn_soc_lvl;	/* % value */
	u8 crit_soc_lvl;	/* % value */
};

struct da9150_pdata {
	int irq_base;
	struct da9150_fg_pdata *fg_pdata;
};

struct da9150 {
	struct device *dev;
	struct regmap *regmap;
	struct i2c_client *core_qif;

	struct regmap_irq_chip_data *regmap_irq_data;
	int irq;
	int irq_base;
};

/* Device I/O - Query Interface for FG and standard register access */
void da9150_read_qif(struct da9150 *da9150, u8 addr, int count, u8 *buf);
void da9150_write_qif(struct da9150 *da9150, u8 addr, int count, const u8 *buf);

u8 da9150_reg_read(struct da9150 *da9150, u16 reg);
void da9150_reg_write(struct da9150 *da9150, u16 reg, u8 val);
void da9150_set_bits(struct da9150 *da9150, u16 reg, u8 mask, u8 val);

void da9150_bulk_read(struct da9150 *da9150, u16 reg, int count, u8 *buf);
void da9150_bulk_write(struct da9150 *da9150, u16 reg, int count, const u8 *buf);

#endif /* __DA9150_CORE_H */

Annotation

Implementation Notes