drivers/media/pci/mgb4/mgb4_i2c.h

Source file repositories/reference/linux-study-clean/drivers/media/pci/mgb4/mgb4_i2c.h

File Facts

System
Linux kernel
Corpus path
drivers/media/pci/mgb4/mgb4_i2c.h
Extension
.h
Size
895 bytes
Lines
36
Domain
Driver Families
Bucket
drivers/media
Inferred role
Driver Families: implementation source
Status
source implementation candidate

Why This File Exists

Repeatable hardware-adapter layer. Deep compatibility for every driver is out of scope; this atlas records patterns, probe lifecycles, bus glue, IRQ/DMA usage, and links back to core abstractions.

Dependency Surface

Detected Declarations

Annotated Snippet

struct mgb4_i2c_client {
	struct i2c_client *client;
	int addr_size;
};

struct mgb4_i2c_kv {
	u16 reg;
	u8 mask;
	u8 val;
};

int mgb4_i2c_init(struct mgb4_i2c_client *client, struct i2c_adapter *adap,
		  struct i2c_board_info const *info, int addr_size);
void mgb4_i2c_free(struct mgb4_i2c_client *client);

s32 mgb4_i2c_read_byte(struct mgb4_i2c_client *client, u16 reg);
s32 mgb4_i2c_write_byte(struct mgb4_i2c_client *client, u16 reg, u8 val);
s32 mgb4_i2c_mask_byte(struct mgb4_i2c_client *client, u16 reg, u8 mask,
		       u8 val);

int mgb4_i2c_configure(struct mgb4_i2c_client *client,
		       const struct mgb4_i2c_kv *values, size_t count);

#endif

Annotation

Implementation Notes