blob: a4f6b64deb61bcec9729d5d8355b135b647774c8 [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;
Dimitris Papastamos6ab2b7b2013-05-08 14:15:35 +010033 size_t len;
Mark Brown471f4882013-01-08 16:09:31 +000034};
35
Mark Brown2159ad92012-10-11 11:54:02 +090036struct wm_adsp {
37 const char *part;
38 int num;
39 int type;
40 struct device *dev;
41 struct regmap *regmap;
Dimitris Papastamos92bb4c32013-08-01 11:11:28 +010042 struct snd_soc_card *card;
Mark Brown2159ad92012-10-11 11:54:02 +090043
44 int base;
Chris Rattray94e205b2013-01-18 08:43:09 +000045 int sysclk_reg;
46 int sysclk_mask;
47 int sysclk_shift;
Mark Brown2159ad92012-10-11 11:54:02 +090048
Mark Brown471f4882013-01-08 16:09:31 +000049 struct list_head alg_regions;
50
Mark Brownf395a212013-03-05 22:39:54 +080051 int fw_id;
52
Mark Brown2159ad92012-10-11 11:54:02 +090053 const struct wm_adsp_region *mem;
54 int num_mems;
Mark Brown973838a2012-11-28 17:20:32 +000055
Mark Brown1023dbd2013-01-11 22:58:28 +000056 int fw;
57 bool running;
58
Mark Brown973838a2012-11-28 17:20:32 +000059 struct regulator *dvfs;
Dimitris Papastamos6ab2b7b2013-05-08 14:15:35 +010060
Dimitris Papastamos81ad93e2013-07-29 13:51:59 +010061 struct list_head ctl_list;
Charles Keepaxd8a64d62014-01-08 17:42:18 +000062
63 struct work_struct boot_work;
Mark Brown2159ad92012-10-11 11:54:02 +090064};
65
66#define WM_ADSP1(wname, num) \
Lars-Peter Clausenf9eeae92013-06-19 19:34:02 +020067 SND_SOC_DAPM_PGA_E(wname, SND_SOC_NOPM, num, 0, NULL, 0, \
68 wm_adsp1_event, SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD)
Mark Brown2159ad92012-10-11 11:54:02 +090069
70#define WM_ADSP2(wname, num) \
Charles Keepax12db5ed2014-01-08 17:42:19 +000071{ .id = snd_soc_dapm_dai_link, .name = wname " Preloader", \
72 .reg = SND_SOC_NOPM, .shift = num, .event = wm_adsp2_early_event, \
73 .event_flags = SND_SOC_DAPM_PRE_PMU }, \
74{ .id = snd_soc_dapm_out_drv, .name = wname, \
75 .reg = SND_SOC_NOPM, .shift = num, .event = wm_adsp2_event, \
76 .event_flags = SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD }
Mark Brown2159ad92012-10-11 11:54:02 +090077
Mark Brownb6ed61cf2013-03-29 18:00:24 +000078extern const struct snd_kcontrol_new wm_adsp1_fw_controls[];
79extern const struct snd_kcontrol_new wm_adsp2_fw_controls[];
Mark Brown1023dbd2013-01-11 22:58:28 +000080
Mark Brown5e7a7a22013-01-16 10:03:56 +090081int wm_adsp1_init(struct wm_adsp *adsp);
Mark Brown973838a2012-11-28 17:20:32 +000082int wm_adsp2_init(struct wm_adsp *adsp, bool dvfs);
Mark Brown2159ad92012-10-11 11:54:02 +090083int wm_adsp1_event(struct snd_soc_dapm_widget *w,
84 struct snd_kcontrol *kcontrol, int event);
Charles Keepax12db5ed2014-01-08 17:42:19 +000085int wm_adsp2_early_event(struct snd_soc_dapm_widget *w,
86 struct snd_kcontrol *kcontrol, int event);
Mark Brown2159ad92012-10-11 11:54:02 +090087int wm_adsp2_event(struct snd_soc_dapm_widget *w,
88 struct snd_kcontrol *kcontrol, int event);
89
90#endif