Home
last modified time | relevance | path

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

/hal_nxp-latest/mcux/mcux-sdk/components/codec/tfa9xxx/vas_tfa_drv/
Dtfa2_dev.h376 int tfa2_process_patch_file(struct i2c_client *client, int length, const uint8_t *bytes);
389 struct i2c_client *client, uint16_t address, int32_t *input, int size, enum tfa2_cf_mem type);
390 int tfa2_i2c_read_cf_mem32(struct i2c_client *client, uint16_t address, int *data, int size, enum t…
392 struct i2c_client *client, uint16_t address, int32_t *input, int size, enum tfa2_cf_mem type);
394 struct i2c_client *client, uint16_t address, int *data, int size, enum tfa2_cf_mem type);
396 struct i2c_client *client, uint16_t address, uint8_t *input, int size, enum tfa2_cf_mem type);
397 int tfa2_i2c_read_cf_mem24(struct i2c_client *client, uint16_t address, uint8_t *data, int size, en…
399 int tfa2_i2c_write_bf(struct i2c_client *client, uint16_t bitfield, uint16_t value);
400 int tfa2_i2c_write_bf_volatile(struct i2c_client *client, uint16_t bitfield, uint16_t value);
401 int tfa2_i2c_read_bf(struct i2c_client *client, uint16_t bitfield);
[all …]
Dtfa2_dev.c1119 int tfa2_i2c_bf_poll(struct i2c_client *client, uint16_t bf, uint16_t wait_value, int loop) in tfa2_i2c_bf_poll() argument
1132 value = tfa2_i2c_read_bf(client, bf); /* read */ in tfa2_i2c_bf_poll()
1138 …dev_err(&client->dev, "timeout waiting for bitfield:0x%04x, value:%d, %d times\n", bf, wait_value,… in tfa2_i2c_bf_poll()
1271 int tfa2_i2c_read_reg(struct i2c_client *client, uint8_t reg) in tfa2_i2c_read_reg() argument
1277 rc = tfa2_i2c_write_read_raw(client, 1, &reg, 2, buffer); in tfa2_i2c_read_reg()
1280 dev_err(&client->dev, "i2c reg read for 0x%x failed\n", reg); in tfa2_i2c_read_reg()
1291 int tfa2_i2c_write_reg(struct i2c_client *client, uint8_t reg, uint16_t val) in tfa2_i2c_write_reg() argument
1300 rc = tfa2_i2c_write_raw(client, 3, buffer); in tfa2_i2c_write_reg()
1304 dev_err(&client->dev, "i2c reg write for 0x%x failed\n", reg); in tfa2_i2c_write_reg()
1337 int tfa2_i2c_read_bf(struct i2c_client *client, uint16_t bitfield) in tfa2_i2c_read_bf() argument
[all …]
Dtfa2_haptic.c98 int tfa2_haptic_start_object(struct i2c_client *client, struct haptic_data *data, int index) in tfa2_haptic_start_object() argument
120 …dev_err(&client->dev, "invalid object idx=%d, addr=%d, cmdobjsel_idx=%d\n", index, address, cmdobj… in tfa2_haptic_start_object()
125 dev_dbg(&client->dev, "started (%d) %s\n", index + 1, str); in tfa2_haptic_start_object()
154 …rc = tfa2_i2c_write_cf_mem32(client, address, (int32_t *)obj, FW_XMEM_OBJECTSIZE, TFA2_CF_MEM_XMEM… in tfa2_haptic_start_object()
160 … rc = tfa2_i2c_write_cf_mem32(client, cmdobjsel, (int32_t *)&cmdobjsel_index, 1, TFA2_CF_MEM_XMEM); in tfa2_haptic_start_object()
166 …dev_dbg(&client->dev, "tfa_haptic_start duration = %lld us (%lld )\n", delta_time, delta_time + 90… in tfa2_haptic_start_object()
276 int tfa2_haptic_read_r0(struct i2c_client *client, int *p_value) in tfa2_haptic_read_r0() argument
278 return tfa2_i2c_read_cf_mem32(client, FW_XMEM_R0, p_value, 1, TFA2_CF_MEM_XMEM); in tfa2_haptic_read_r0()
281 int tfa2_haptic_read_f0(struct i2c_client *client, int *p_value) in tfa2_haptic_read_f0() argument
283 return tfa2_i2c_read_cf_mem32(client, FW_XMEM_F0, p_value, 1, TFA2_CF_MEM_XMEM); in tfa2_haptic_read_f0()
[all …]
Dtfa2_haptic.h26 int tfa2_haptic_obj0_wait_finish(struct i2c_client *client);
32 int tfa2_haptic_start_object(struct i2c_client *client, struct haptic_data *data, int index);
34 int tfa2_haptic_read_f0(struct i2c_client *client, int *p_value);
35 int tfa2_haptic_disable_f0_trc(struct i2c_client *client, int disable);
/hal_nxp-latest/mcux/mcux-sdk/components/codec/tfa9xxx/
Dfsl_tfa9xxx_IMX.c100 int tfa2_i2c_write_read_raw(struct i2c_client *client, int wrlen, uint8_t *wrdata, int rdlen, uint8… in tfa2_i2c_write_read_raw() argument
106 …retval = TFA9XXX_I2C_Transfer(CODEC_I2C_Send, client->hal, client->addr, *wrdata, 1U, wrdata + 1U,… in tfa2_i2c_write_read_raw()
110 … retval = TFA9XXX_I2C_Transfer(CODEC_I2C_Send, client->hal, client->addr, 0, 0, wrdata, wrlen); in tfa2_i2c_write_read_raw()
115 … retval = TFA9XXX_I2C_Transfer(CODEC_I2C_Receive, client->hal, client->addr, 0, 0, rddata, rdlen); in tfa2_i2c_write_read_raw()
133 int tfa2_i2c_write_raw(struct i2c_client *client, int len, const uint8_t *data) in tfa2_i2c_write_raw() argument
135 return tfa2_i2c_write_read_raw(client, len, (uint8_t *)data, 0, NULL); in tfa2_i2c_write_raw()
/hal_nxp-latest/mcux/middleware/mcux-sdk-middleware-multicore/
DChangeLogKSDK.txt14 - eRPC: Fix Python client TCPTransports not being able to close, GitHub PR #390.
54 - eRPC: Fix NULL check for pending client creation, GitHub PR #341.
136 - eRPC: Construct the USB CDC transport, rather than a client, GitHub PR #220.
268 …- eRPC: The ClientManager and the ArbitratedClientManager updated to avoid performing client reque…
388 - eRPC: Support for running both erpc client and erpc server on one side.
/hal_nxp-latest/mcux/mcux-sdk/components/edgefast_wifi/include/
Dwpl.h178 wpl_ret_t WPL_GetIP(char *ip, int client);
/hal_nxp-latest/mcux/mcux-sdk/components/edgefast_wifi/source/
Dwpl_nxp.c829 wpl_ret_t WPL_GetIP(char *ip, int client) in WPL_GetIP() argument
842 if (client == 1) in WPL_GetIP()