summaryrefslogtreecommitdiff
path: root/drivers/media/pci/mgb4/mgb4_i2c.h
blob: fac6a16344742eeb6fc313a9dea5b84c5cc04e0f (plain)
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: GPL-2.0-only */
/*
 * Copyright (C) 2021-2023 Digiteq Automotive
 *     author: Martin Tuma <martin.tuma@digiteqautomotive.com>
 */

#ifndef __MGB4_I2C_H__
#define __MGB4_I2C_H__

#include <linux/i2c.h>

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