Lines Matching refs:coeff_ram
69 struct coeff_ram { struct
88 static inline void coeff_ram_init(struct coeff_ram *ram) in coeff_ram_init() argument
135 struct coeff_ram dac_ram;
136 struct coeff_ram spk_ram;
137 struct coeff_ram sub_ram;
316 u8 *coeff_ram; in coeff_ram_get() local
320 coeff_ram = tscs454->dac_ram.cache; in coeff_ram_get()
323 coeff_ram = tscs454->spk_ram.cache; in coeff_ram_get()
326 coeff_ram = tscs454->sub_ram.cache; in coeff_ram_get()
335 &coeff_ram[ctl->addr * COEFF_SIZE], params->max); in coeff_ram_get()
343 static int write_coeff_ram(struct snd_soc_component *component, u8 *coeff_ram, in write_coeff_ram() argument
376 &coeff_ram[coeff_addr * COEFF_SIZE], in write_coeff_ram()
398 u8 *coeff_ram; in coeff_ram_put() local
408 coeff_ram = tscs454->dac_ram.cache; in coeff_ram_put()
415 coeff_ram = tscs454->spk_ram.cache; in coeff_ram_put()
422 coeff_ram = tscs454->sub_ram.cache; in coeff_ram_put()
436 memcpy(&coeff_ram[ctl->addr * COEFF_SIZE], in coeff_ram_put()
444 ret = write_coeff_ram(component, coeff_ram, in coeff_ram_put()