Linux 4.19-rc7
[linux-2.6/btrfs-unstable.git] / sound / soc / codecs / sigmadsp.h
blob614475cbb823f282c857b60fd9a5160c190b192d
1 /*
2 * Load firmware files from Analog Devices SigmaStudio
4 * Copyright 2009-2011 Analog Devices Inc.
6 * Licensed under the GPL-2 or later.
7 */
9 #ifndef __SIGMA_FIRMWARE_H__
10 #define __SIGMA_FIRMWARE_H__
12 #include <linux/device.h>
13 #include <linux/regmap.h>
14 #include <linux/list.h>
16 #include <sound/pcm.h>
18 struct sigmadsp;
19 struct snd_soc_component;
20 struct snd_pcm_substream;
22 struct sigmadsp_ops {
23 int (*safeload)(struct sigmadsp *sigmadsp, unsigned int addr,
24 const uint8_t *data, size_t len);
27 struct sigmadsp {
28 const struct sigmadsp_ops *ops;
30 struct list_head ctrl_list;
31 struct list_head data_list;
33 struct snd_pcm_hw_constraint_list rate_constraints;
35 unsigned int current_samplerate;
36 struct snd_soc_component *component;
37 struct device *dev;
39 struct mutex lock;
41 void *control_data;
42 int (*write)(void *, unsigned int, const uint8_t *, size_t);
43 int (*read)(void *, unsigned int, uint8_t *, size_t);
46 struct sigmadsp *devm_sigmadsp_init(struct device *dev,
47 const struct sigmadsp_ops *ops, const char *firmware_name);
48 void sigmadsp_reset(struct sigmadsp *sigmadsp);
50 int sigmadsp_restrict_params(struct sigmadsp *sigmadsp,
51 struct snd_pcm_substream *substream);
53 struct i2c_client;
55 struct sigmadsp *devm_sigmadsp_init_regmap(struct device *dev,
56 struct regmap *regmap, const struct sigmadsp_ops *ops,
57 const char *firmware_name);
58 struct sigmadsp *devm_sigmadsp_init_i2c(struct i2c_client *client,
59 const struct sigmadsp_ops *ops, const char *firmware_name);
61 int sigmadsp_attach(struct sigmadsp *sigmadsp,
62 struct snd_soc_component *component);
63 int sigmadsp_setup(struct sigmadsp *sigmadsp, unsigned int rate);
64 void sigmadsp_reset(struct sigmadsp *sigmadsp);
66 #endif