Home
last modified time | relevance | path

Searched refs:client (Results 1 – 25 of 1957) sorted by relevance

12345678910>>...79

/kernel/linux/linux-5.10/drivers/media/i2c/cx25840/
Dcx25840-core.c74 static void cx23888_std_setup(struct i2c_client *client);
76 int cx25840_write(struct i2c_client *client, u16 addr, u8 value) in cx25840_write() argument
83 return i2c_master_send(client, buffer, 3); in cx25840_write()
86 int cx25840_write4(struct i2c_client *client, u16 addr, u32 value) in cx25840_write4() argument
96 return i2c_master_send(client, buffer, 6); in cx25840_write4()
99 u8 cx25840_read(struct i2c_client *client, u16 addr) in cx25840_read() argument
107 msgs[0].addr = client->addr; in cx25840_read()
113 msgs[1].addr = client->addr; in cx25840_read()
118 if (i2c_transfer(client->adapter, msgs, 2) < 2) in cx25840_read()
124 u32 cx25840_read4(struct i2c_client *client, u16 addr) in cx25840_read4() argument
[all …]
Dcx25840-audio.c31 static int cx25840_set_audclk_freq(struct i2c_client *client, u32 freq) in cx25840_set_audclk_freq() argument
33 struct cx25840_state *state = to_state(i2c_get_clientdata(client)); in cx25840_set_audclk_freq()
42 cx25840_write4(client, 0x108, 0x1006040f); in cx25840_set_audclk_freq()
57 cx25840_write4(client, 0x110, 0x01bb39ee); in cx25840_set_audclk_freq()
63 cx25840_write(client, 0x127, 0x50); in cx25840_set_audclk_freq()
70 cx25840_write4(client, 0x900, 0x0801f77f); in cx25840_set_audclk_freq()
71 cx25840_write4(client, 0x904, 0x0801f77f); in cx25840_set_audclk_freq()
72 cx25840_write4(client, 0x90c, 0x0801f77f); in cx25840_set_audclk_freq()
80 cx25840_write4(client, 0x108, 0x1009040f); in cx25840_set_audclk_freq()
94 cx25840_write4(client, 0x110, 0x00ec6bd6); in cx25840_set_audclk_freq()
[all …]
Dcx25840-firmware.c32 static void start_fw_load(struct i2c_client *client) in start_fw_load() argument
35 cx25840_write(client, 0x800, 0x00); in start_fw_load()
36 cx25840_write(client, 0x801, 0x00); in start_fw_load()
38 cx25840_write(client, 0x803, 0x0b); in start_fw_load()
40 cx25840_write(client, 0x000, 0x20); in start_fw_load()
43 static void end_fw_load(struct i2c_client *client) in end_fw_load() argument
46 cx25840_write(client, 0x000, 0x00); in end_fw_load()
48 cx25840_write(client, 0x803, 0x03); in end_fw_load()
55 static const char *get_fw_name(struct i2c_client *client) in get_fw_name() argument
57 struct cx25840_state *state = to_state(i2c_get_clientdata(client)); in get_fw_name()
[all …]
/kernel/linux/linux-5.10/drivers/media/i2c/
Dmt9t112.c60 #define mt9t112_reg_write(ret, client, a, b) \ argument
61 ECHECKER(ret, __mt9t112_reg_write(client, a, b))
62 #define mt9t112_mcu_write(ret, client, a, b) \ argument
63 ECHECKER(ret, __mt9t112_mcu_write(client, a, b))
65 #define mt9t112_reg_mask_set(ret, client, a, b, c) \ argument
66 ECHECKER(ret, __mt9t112_reg_mask_set(client, a, b, c))
67 #define mt9t112_mcu_mask_set(ret, client, a, b, c) \ argument
68 ECHECKER(ret, __mt9t112_mcu_mask_set(client, a, b, c))
70 #define mt9t112_reg_read(ret, client, a) \ argument
71 ECHECKER(ret, __mt9t112_reg_read(client, a))
[all …]
Dmsp3400-kthreads.c175 static void msp_set_source(struct i2c_client *client, u16 src) in msp_set_source() argument
177 struct msp_state *state = to_state(i2c_get_clientdata(client)); in msp_set_source()
180 msp_write_dsp(client, 0x0008, 0x0520); /* I2S1 */ in msp_set_source()
181 msp_write_dsp(client, 0x0009, 0x0620); /* I2S2 */ in msp_set_source()
183 msp_write_dsp(client, 0x0008, src); in msp_set_source()
184 msp_write_dsp(client, 0x0009, src); in msp_set_source()
186 msp_write_dsp(client, 0x000a, src); in msp_set_source()
187 msp_write_dsp(client, 0x000b, src); in msp_set_source()
188 msp_write_dsp(client, 0x000c, src); in msp_set_source()
190 msp_write_dsp(client, 0x0041, src); in msp_set_source()
[all …]
Drj54n1cb0c.c425 static struct rj54n1 *to_rj54n1(const struct i2c_client *client) in to_rj54n1() argument
427 return container_of(i2c_get_clientdata(client), struct rj54n1, subdev); in to_rj54n1()
430 static int reg_read(struct i2c_client *client, const u16 reg) in reg_read() argument
432 struct rj54n1 *rj54n1 = to_rj54n1(client); in reg_read()
437 dev_dbg(&client->dev, "[0x%x] = 0x%x\n", 0xff, reg >> 8); in reg_read()
438 ret = i2c_smbus_write_byte_data(client, 0xff, reg >> 8); in reg_read()
443 return i2c_smbus_read_byte_data(client, reg & 0xff); in reg_read()
446 static int reg_write(struct i2c_client *client, const u16 reg, in reg_write() argument
449 struct rj54n1 *rj54n1 = to_rj54n1(client); in reg_write()
454 dev_dbg(&client->dev, "[0x%x] = 0x%x\n", 0xff, reg >> 8); in reg_write()
[all …]
/kernel/linux/linux-5.10/drivers/firewire/
Dcore-cdev.c46 struct client { struct
71 static inline void client_get(struct client *client) in client_get() argument
73 kref_get(&client->kref); in client_get()
78 struct client *client = container_of(kref, struct client, kref); in client_release() local
80 fw_device_put(client->device); in client_release()
81 kfree(client); in client_release()
84 static void client_put(struct client *client) in client_put() argument
86 kref_put(&client->kref, client_release); in client_put()
90 typedef void (*client_resource_release_fn_t)(struct client *,
101 struct client *client; member
[all …]
/kernel/linux/linux-5.10/drivers/gpu/vga/
Dvga_switcheroo.c189 struct vga_switcheroo_client *client; in vga_switcheroo_enable() local
195 list_for_each_entry(client, &vgasr_priv.clients, list) { in vga_switcheroo_enable()
196 if (!client_is_vga(client) || in vga_switcheroo_enable()
197 client_id(client) != VGA_SWITCHEROO_UNKNOWN_ID) in vga_switcheroo_enable()
200 ret = vgasr_priv.handler->get_client_id(client->pdev); in vga_switcheroo_enable()
204 client->id = ret; in vga_switcheroo_enable()
207 list_for_each_entry(client, &vgasr_priv.clients, list) { in vga_switcheroo_enable()
208 if (!client_is_audio(client) || in vga_switcheroo_enable()
209 client_id(client) != VGA_SWITCHEROO_UNKNOWN_ID) in vga_switcheroo_enable()
212 ret = vgasr_priv.handler->get_client_id(client->vga_dev); in vga_switcheroo_enable()
[all …]
/kernel/linux/linux-5.10/drivers/misc/
Disl29003.c50 struct i2c_client *client; member
64 static int __isl29003_read_reg(struct i2c_client *client, in __isl29003_read_reg() argument
67 struct isl29003_data *data = i2c_get_clientdata(client); in __isl29003_read_reg()
72 static int __isl29003_write_reg(struct i2c_client *client, in __isl29003_write_reg() argument
75 struct isl29003_data *data = i2c_get_clientdata(client); in __isl29003_write_reg()
88 ret = i2c_smbus_write_byte_data(client, reg, tmp); in __isl29003_write_reg()
101 static int isl29003_get_range(struct i2c_client *client) in isl29003_get_range() argument
103 return __isl29003_read_reg(client, ISL29003_REG_CONTROL, in isl29003_get_range()
107 static int isl29003_set_range(struct i2c_client *client, int range) in isl29003_set_range() argument
109 return __isl29003_write_reg(client, ISL29003_REG_CONTROL, in isl29003_set_range()
[all …]
Dapds9802als.c35 struct i2c_client *client = to_i2c_client(dev); in als_sensing_range_show() local
38 val = i2c_smbus_read_byte_data(client, 0x81); in als_sensing_range_show()
49 struct i2c_client *client = to_i2c_client(dev); in als_wait_for_data_ready() local
55 ret = i2c_smbus_read_byte_data(client, 0x86); in als_wait_for_data_ready()
69 struct i2c_client *client = to_i2c_client(dev); in als_lux0_input_data_show() local
70 struct als_data *data = i2c_get_clientdata(client); in als_lux0_input_data_show()
79 i2c_smbus_write_byte(client, 0x40); in als_lux0_input_data_show()
81 temp = i2c_smbus_read_byte_data(client, 0x81); in als_lux0_input_data_show()
82 i2c_smbus_write_byte_data(client, 0x81, temp | 0x08); in als_lux0_input_data_show()
88 temp = i2c_smbus_read_byte_data(client, 0x8C); /* LSB data */ in als_lux0_input_data_show()
[all …]
/kernel/linux/linux-5.10/drivers/input/mouse/
Delan_i2c_i2c.c74 static int elan_i2c_read_block(struct i2c_client *client, in elan_i2c_read_block() argument
82 .addr = client->addr, in elan_i2c_read_block()
83 .flags = client->flags & I2C_M_TEN, in elan_i2c_read_block()
88 .addr = client->addr, in elan_i2c_read_block()
89 .flags = (client->flags & I2C_M_TEN) | I2C_M_RD, in elan_i2c_read_block()
96 ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs)); in elan_i2c_read_block()
100 static int elan_i2c_read_cmd(struct i2c_client *client, u16 reg, u8 *val) in elan_i2c_read_cmd() argument
104 retval = elan_i2c_read_block(client, reg, val, ETP_I2C_INF_LENGTH); in elan_i2c_read_cmd()
106 dev_err(&client->dev, "reading cmd (0x%04x) fail.\n", reg); in elan_i2c_read_cmd()
113 static int elan_i2c_write_cmd(struct i2c_client *client, u16 reg, u16 cmd) in elan_i2c_write_cmd() argument
[all …]
Delan_i2c_smbus.c54 static int elan_smbus_initialize(struct i2c_client *client) in elan_smbus_initialize() argument
61 len = i2c_smbus_read_block_data(client, in elan_smbus_initialize()
64 dev_err(&client->dev, "hello packet length fail: %d\n", len); in elan_smbus_initialize()
71 dev_err(&client->dev, "hello packet fail [%*ph]\n", in elan_smbus_initialize()
77 error = i2c_smbus_write_byte(client, ETP_SMBUS_ENABLE_TP); in elan_smbus_initialize()
79 dev_err(&client->dev, "failed to enable touchpad: %d\n", error); in elan_smbus_initialize()
86 static int elan_smbus_set_mode(struct i2c_client *client, u8 mode) in elan_smbus_set_mode() argument
90 return i2c_smbus_write_block_data(client, ETP_SMBUS_IAP_CMD, in elan_smbus_set_mode()
94 static int elan_smbus_sleep_control(struct i2c_client *client, bool sleep) in elan_smbus_sleep_control() argument
97 return i2c_smbus_write_byte(client, ETP_SMBUS_SLEEP_CMD); in elan_smbus_sleep_control()
[all …]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvif/
Dclient.c33 nvif_client_ioctl(struct nvif_client *client, void *data, u32 size) in nvif_client_ioctl() argument
35 return client->driver->ioctl(client->object.priv, client->super, data, size, NULL); in nvif_client_ioctl()
39 nvif_client_suspend(struct nvif_client *client) in nvif_client_suspend() argument
41 return client->driver->suspend(client->object.priv); in nvif_client_suspend()
45 nvif_client_resume(struct nvif_client *client) in nvif_client_resume() argument
47 return client->driver->resume(client->object.priv); in nvif_client_resume()
51 nvif_client_dtor(struct nvif_client *client) in nvif_client_dtor() argument
53 nvif_object_dtor(&client->object); in nvif_client_dtor()
54 if (client->driver) { in nvif_client_dtor()
55 if (client->driver->fini) in nvif_client_dtor()
[all …]
/kernel/linux/linux-5.10/drivers/gpu/drm/nouveau/nvkm/core/
Dclient.c41 struct nvkm_client *client; in nvkm_uclient_new() local
47 NULL, oclass->client->ntfy, &client); in nvkm_uclient_new()
53 client->object.client = oclass->client; in nvkm_uclient_new()
54 client->object.handle = oclass->handle; in nvkm_uclient_new()
55 client->object.route = oclass->route; in nvkm_uclient_new()
56 client->object.token = oclass->token; in nvkm_uclient_new()
57 client->object.object = oclass->object; in nvkm_uclient_new()
58 client->debug = oclass->client->debug; in nvkm_uclient_new()
59 *pobject = &client->object; in nvkm_uclient_new()
72 struct nvkm_client *client; member
[all …]
/kernel/linux/linux-5.10/drivers/gpu/drm/
Ddrm_client.c34 static int drm_client_open(struct drm_client_dev *client) in drm_client_open() argument
36 struct drm_device *dev = client->dev; in drm_client_open()
47 client->file = file; in drm_client_open()
52 static void drm_client_close(struct drm_client_dev *client) in drm_client_close() argument
54 struct drm_device *dev = client->dev; in drm_client_close()
57 list_del(&client->file->lhead); in drm_client_close()
60 drm_file_free(client->file); in drm_client_close()
78 int drm_client_init(struct drm_device *dev, struct drm_client_dev *client, in drm_client_init() argument
89 client->dev = dev; in drm_client_init()
90 client->name = name; in drm_client_init()
[all …]
/kernel/linux/linux-5.10/drivers/input/keyboard/
Dmax7359_keypad.c61 struct i2c_client *client; member
64 static int max7359_write_reg(struct i2c_client *client, u8 reg, u8 val) in max7359_write_reg() argument
66 int ret = i2c_smbus_write_byte_data(client, reg, val); in max7359_write_reg()
69 dev_err(&client->dev, "%s: reg 0x%x, val 0x%x, err %d\n", in max7359_write_reg()
74 static int max7359_read_reg(struct i2c_client *client, int reg) in max7359_read_reg() argument
76 int ret = i2c_smbus_read_byte_data(client, reg); in max7359_read_reg()
79 dev_err(&client->dev, "%s: reg 0x%x, err %d\n", in max7359_read_reg()
91 val = max7359_read_reg(keypad->client, MAX7359_REG_KEYFIFO); in max7359_interrupt()
98 dev_dbg(&keypad->client->dev, in max7359_interrupt()
113 static inline void max7359_fall_deepsleep(struct i2c_client *client) in max7359_fall_deepsleep() argument
[all …]
Dqt2160.c55 struct i2c_client *client; member
65 static int qt2160_read(struct i2c_client *client, u8 reg);
66 static int qt2160_write(struct i2c_client *client, u8 reg, u8 data);
75 struct i2c_client *client = qt2160->client; in qt2160_led_set() local
79 drive = qt2160_read(client, QT2160_CMD_DRIVE_X); in qt2160_led_set()
80 pwmen = qt2160_read(client, QT2160_CMD_PWMEN_X); in qt2160_led_set()
89 qt2160_write(client, QT2160_CMD_DRIVE_X, drive); in qt2160_led_set()
90 qt2160_write(client, QT2160_CMD_PWMEN_X, pwmen); in qt2160_led_set()
97 qt2160_write(client, QT2160_CMD_PWM_DUTY, value); in qt2160_led_set()
107 static int qt2160_read_block(struct i2c_client *client, in qt2160_read_block() argument
[all …]
/kernel/linux/linux-5.10/drivers/input/touchscreen/
Dbu21013_ts.c158 struct i2c_client *client; member
176 ret = i2c_smbus_read_i2c_block_data(ts->client, in bu21013_read_block_data()
245 dev_err(&ts->client->dev, "%s failed\n", __func__); in bu21013_gpio_irq()
263 struct i2c_client *client = ts->client; in bu21013_init_chip() local
266 error = i2c_smbus_write_byte_data(client, BU21013_RESET_REG, in bu21013_init_chip()
269 dev_err(&client->dev, "BU21013_RESET reg write failed\n"); in bu21013_init_chip()
274 error = i2c_smbus_write_byte_data(client, BU21013_SENSOR_0_7_REG, in bu21013_init_chip()
277 dev_err(&client->dev, "BU21013_SENSOR_0_7 reg write failed\n"); in bu21013_init_chip()
281 error = i2c_smbus_write_byte_data(client, BU21013_SENSOR_8_15_REG, in bu21013_init_chip()
284 dev_err(&client->dev, "BU21013_SENSOR_8_15 reg write failed\n"); in bu21013_init_chip()
[all …]
Delants_i2c.c138 struct i2c_client *client; member
174 static int elants_i2c_send(struct i2c_client *client, in elants_i2c_send() argument
179 ret = i2c_master_send(client, data, size); in elants_i2c_send()
186 dev_err(&client->dev, "%s failed (%*ph): %d\n", in elants_i2c_send()
192 static int elants_i2c_read(struct i2c_client *client, void *data, size_t size) in elants_i2c_read() argument
196 ret = i2c_master_recv(client, data, size); in elants_i2c_read()
203 dev_err(&client->dev, "%s failed: %d\n", __func__, ret); in elants_i2c_read()
208 static int elants_i2c_execute_command(struct i2c_client *client, in elants_i2c_execute_command() argument
231 dev_err(&client->dev, "(%s): invalid command: %*ph\n", in elants_i2c_execute_command()
237 msgs[0].addr = client->addr; in elants_i2c_execute_command()
[all …]
Draydium_i2c_ts.c117 struct i2c_client *client; member
149 static int raydium_i2c_xfer(struct i2c_client *client, u32 addr, in raydium_i2c_xfer() argument
160 ret = i2c_transfer(client->adapter, &xfer[xfer_start_idx], xfer_count); in raydium_i2c_xfer()
167 static int raydium_i2c_send(struct i2c_client *client, in raydium_i2c_send() argument
200 .addr = client->addr, in raydium_i2c_send()
205 .addr = client->addr, in raydium_i2c_send()
211 error = raydium_i2c_xfer(client, addr, xfer, ARRAY_SIZE(xfer)); in raydium_i2c_send()
218 dev_err(&client->dev, "%s failed: %d\n", __func__, error); in raydium_i2c_send()
224 static int raydium_i2c_read(struct i2c_client *client, in raydium_i2c_read() argument
249 .addr = client->addr, in raydium_i2c_read()
[all …]
Dzforce_ts.c107 struct i2c_client *client; member
137 struct i2c_client *client = ts->client; in zforce_command() local
141 dev_dbg(&client->dev, "%s: 0x%x\n", __func__, cmd); in zforce_command()
148 ret = i2c_master_send(client, &buf[0], ARRAY_SIZE(buf)); in zforce_command()
151 dev_err(&client->dev, "i2c send data request error: %d\n", ret); in zforce_command()
170 struct i2c_client *client = ts->client; in zforce_send_wait() local
175 dev_err(&client->dev, "already waiting for a command\n"); in zforce_send_wait()
179 dev_dbg(&client->dev, "sending %d bytes for command 0x%x\n", in zforce_send_wait()
185 ret = i2c_master_send(client, buf, len); in zforce_send_wait()
188 dev_err(&client->dev, "i2c send data request error: %d\n", ret); in zforce_send_wait()
[all …]
/kernel/linux/linux-5.10/drivers/media/common/siano/
Dsmsdvb-main.c64 static void sms_board_dvb3_event(struct smsdvb_client_t *client, in sms_board_dvb3_event() argument
67 struct smscore_device_t *coredev = client->coredev; in sms_board_dvb3_event()
82 if (client->event_fe_state != DVB3_EVENT_FE_LOCK) { in sms_board_dvb3_event()
83 client->event_fe_state = DVB3_EVENT_FE_LOCK; in sms_board_dvb3_event()
89 if (client->event_fe_state != DVB3_EVENT_FE_UNLOCK) { in sms_board_dvb3_event()
90 client->event_fe_state = DVB3_EVENT_FE_UNLOCK; in sms_board_dvb3_event()
96 if (client->event_unc_state != DVB3_EVENT_UNC_OK) { in sms_board_dvb3_event()
97 client->event_unc_state = DVB3_EVENT_UNC_OK; in sms_board_dvb3_event()
103 if (client->event_unc_state != DVB3_EVENT_UNC_ERR) { in sms_board_dvb3_event()
104 client->event_unc_state = DVB3_EVENT_UNC_ERR; in sms_board_dvb3_event()
[all …]
/kernel/linux/linux-5.10/sound/core/seq/
Dseq_clientmgr.c66 static int bounce_error_event(struct snd_seq_client *client,
69 static int snd_seq_deliver_single_event(struct snd_seq_client *client,
87 static inline int snd_seq_write_pool_allocated(struct snd_seq_client *client) in snd_seq_write_pool_allocated() argument
89 return snd_seq_total_cells(client->pool) > 0; in snd_seq_write_pool_allocated()
106 struct snd_seq_client *client; in snd_seq_client_use_ptr() local
114 client = clientptr(clientid); in snd_seq_client_use_ptr()
115 if (client) in snd_seq_client_use_ptr()
151 client = clientptr(clientid); in snd_seq_client_use_ptr()
152 if (client) in snd_seq_client_use_ptr()
160 snd_use_lock_use(&client->use_lock); in snd_seq_client_use_ptr()
[all …]
/kernel/linux/linux-5.10/drivers/rtc/
Drtc-ds1374.c72 struct i2c_client *client; member
88 static int ds1374_read_rtc(struct i2c_client *client, u32 *time, in ds1374_read_rtc() argument
98 ret = i2c_smbus_read_i2c_block_data(client, reg, nbytes, buf); in ds1374_read_rtc()
111 static int ds1374_write_rtc(struct i2c_client *client, u32 time, in ds1374_write_rtc() argument
127 return i2c_smbus_write_i2c_block_data(client, reg, nbytes, buf); in ds1374_write_rtc()
130 static int ds1374_check_rtc_status(struct i2c_client *client) in ds1374_check_rtc_status() argument
135 stat = i2c_smbus_read_byte_data(client, DS1374_REG_SR); in ds1374_check_rtc_status()
140 dev_warn(&client->dev, in ds1374_check_rtc_status()
145 ret = i2c_smbus_write_byte_data(client, DS1374_REG_SR, stat); in ds1374_check_rtc_status()
154 control = i2c_smbus_read_byte_data(client, DS1374_REG_CR); in ds1374_check_rtc_status()
[all …]
/kernel/linux/linux-5.10/drivers/power/supply/
Dsbs-battery.c192 struct i2c_client *client; member
211 static int sbs_read_word_data(struct i2c_client *client, u8 address);
212 static int sbs_write_word_data(struct i2c_client *client, u8 address, u16 value);
216 int val = sbs_read_word_data(chip->client, BATTERY_MODE_OFFSET); in sbs_disable_charger_broadcasts()
222 val = sbs_write_word_data(chip->client, BATTERY_MODE_OFFSET, val); in sbs_disable_charger_broadcasts()
226 dev_err(&chip->client->dev, in sbs_disable_charger_broadcasts()
229 dev_dbg(&chip->client->dev, "%s\n", __func__); in sbs_disable_charger_broadcasts()
234 struct i2c_client *client = chip->client; in sbs_update_presence() local
245 client->flags &= ~I2C_CLIENT_PEC; in sbs_update_presence()
251 ret = i2c_smbus_read_word_data(client, REG_ADDR_SPEC_INFO); in sbs_update_presence()
[all …]

12345678910>>...79