Lines Matching refs:coeff_ram
70 struct coeff_ram { struct
89 static inline void coeff_ram_init(struct coeff_ram *ram) in coeff_ram_init() argument
136 struct coeff_ram dac_ram;
137 struct coeff_ram spk_ram;
138 struct coeff_ram sub_ram;
317 u8 *coeff_ram; in coeff_ram_get() local
321 coeff_ram = tscs454->dac_ram.cache; in coeff_ram_get()
324 coeff_ram = tscs454->spk_ram.cache; in coeff_ram_get()
327 coeff_ram = tscs454->sub_ram.cache; in coeff_ram_get()
336 &coeff_ram[ctl->addr * COEFF_SIZE], params->max); in coeff_ram_get()
344 static int write_coeff_ram(struct snd_soc_component *component, u8 *coeff_ram, in write_coeff_ram() argument
382 &coeff_ram[coeff_addr * COEFF_SIZE], in write_coeff_ram()
404 u8 *coeff_ram; in coeff_ram_put() local
414 coeff_ram = tscs454->dac_ram.cache; in coeff_ram_put()
421 coeff_ram = tscs454->spk_ram.cache; in coeff_ram_put()
428 coeff_ram = tscs454->sub_ram.cache; in coeff_ram_put()
442 memcpy(&coeff_ram[ctl->addr * COEFF_SIZE], in coeff_ram_put()
455 ret = write_coeff_ram(component, coeff_ram, in coeff_ram_put()