blob: 36533eac420ee8fc684fdaf04aa81dbd153fa90d [file] [log] [blame]
Mark Brown2159ad92012-10-11 11:54:02 +09001/*
2 * wm_adsp.h -- Wolfson ADSP support
3 *
4 * Copyright 2012 Wolfson Microelectronics plc
5 *
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#ifndef __WM_ADSP_H
14#define __WM_ADSP_H
15
16#include <sound/soc.h>
17#include <sound/soc-dapm.h>
18
19#include "wmfw.h"
20
Mark Brown973838a2012-11-28 17:20:32 +000021struct regulator;
22
Mark Brown2159ad92012-10-11 11:54:02 +090023struct wm_adsp_region {
24 int type;
25 unsigned int base;
26};
27
Mark Brown471f4882013-01-08 16:09:31 +000028struct wm_adsp_alg_region {
29 struct list_head list;
30 unsigned int alg;
31 int type;
32 unsigned int base;
33};
34
Mark Brown2159ad92012-10-11 11:54:02 +090035struct wm_adsp {
36 const char *part;
37 int num;
38 int type;
39 struct device *dev;
40 struct regmap *regmap;
41
42 int base;
Chris Rattray94e205b2013-01-18 08:43:09 +000043 int sysclk_reg;
44 int sysclk_mask;
45 int sysclk_shift;
Mark Brown2159ad92012-10-11 11:54:02 +090046
Mark Brown471f4882013-01-08 16:09:31 +000047 struct list_head alg_regions;
48
Mark Brownf395a212013-03-05 22:39:54 +080049 int fw_id;
50
Mark Brown2159ad92012-10-11 11:54:02 +090051 const struct wm_adsp_region *mem;
52 int num_mems;
Mark Brown973838a2012-11-28 17:20:32 +000053
Mark Brown1023dbd2013-01-11 22:58:28 +000054 int fw;
55 bool running;
56
Mark Brown973838a2012-11-28 17:20:32 +000057 struct regulator *dvfs;
Mark Brown2159ad92012-10-11 11:54:02 +090058};
59
60#define WM_ADSP1(wname, num) \
Lars-Peter Clausenf9eeae92013-06-19 19:34:02 +020061 SND_SOC_DAPM_PGA_E(wname, SND_SOC_NOPM, num, 0, NULL, 0, \
62 wm_adsp1_event, SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD)
Mark Brown2159ad92012-10-11 11:54:02 +090063
64#define WM_ADSP2(wname, num) \
Lars-Peter Clausenf9eeae92013-06-19 19:34:02 +020065 SND_SOC_DAPM_PGA_E(wname, SND_SOC_NOPM, num, 0, NULL, 0, \
66 wm_adsp2_event, SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD)
Mark Brown2159ad92012-10-11 11:54:02 +090067
Mark Brownb6ed61cf2013-03-29 18:00:24 +000068extern const struct snd_kcontrol_new wm_adsp1_fw_controls[];
69extern const struct snd_kcontrol_new wm_adsp2_fw_controls[];
Mark Brown1023dbd2013-01-11 22:58:28 +000070
Mark Brown5e7a7a22013-01-16 10:03:56 +090071int wm_adsp1_init(struct wm_adsp *adsp);
Mark Brown973838a2012-11-28 17:20:32 +000072int wm_adsp2_init(struct wm_adsp *adsp, bool dvfs);
Mark Brown2159ad92012-10-11 11:54:02 +090073int wm_adsp1_event(struct snd_soc_dapm_widget *w,
74 struct snd_kcontrol *kcontrol, int event);
75int wm_adsp2_event(struct snd_soc_dapm_widget *w,
76 struct snd_kcontrol *kcontrol, int event);
77
78#endif