Mark Brown | 2159ad9 | 2012-10-11 11:54:02 +0900 | [diff] [blame] | 1 | /* |
| 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 Brown | 973838a | 2012-11-28 17:20:32 +0000 | [diff] [blame] | 21 | struct regulator; |
| 22 | |
Mark Brown | 2159ad9 | 2012-10-11 11:54:02 +0900 | [diff] [blame] | 23 | struct wm_adsp_region { |
| 24 | int type; |
| 25 | unsigned int base; |
| 26 | }; |
| 27 | |
Mark Brown | 471f488 | 2013-01-08 16:09:31 +0000 | [diff] [blame^] | 28 | struct wm_adsp_alg_region { |
| 29 | struct list_head list; |
| 30 | unsigned int alg; |
| 31 | int type; |
| 32 | unsigned int base; |
| 33 | }; |
| 34 | |
Mark Brown | 2159ad9 | 2012-10-11 11:54:02 +0900 | [diff] [blame] | 35 | struct wm_adsp { |
| 36 | const char *part; |
| 37 | int num; |
| 38 | int type; |
| 39 | struct device *dev; |
| 40 | struct regmap *regmap; |
| 41 | |
| 42 | int base; |
| 43 | |
Mark Brown | 471f488 | 2013-01-08 16:09:31 +0000 | [diff] [blame^] | 44 | struct list_head alg_regions; |
| 45 | |
Mark Brown | 2159ad9 | 2012-10-11 11:54:02 +0900 | [diff] [blame] | 46 | const struct wm_adsp_region *mem; |
| 47 | int num_mems; |
Mark Brown | 973838a | 2012-11-28 17:20:32 +0000 | [diff] [blame] | 48 | |
| 49 | struct regulator *dvfs; |
Mark Brown | 2159ad9 | 2012-10-11 11:54:02 +0900 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | #define WM_ADSP1(wname, num) \ |
| 53 | { .id = snd_soc_dapm_pga, .name = wname, .reg = SND_SOC_NOPM, \ |
| 54 | .shift = num, .event = wm_adsp1_event, \ |
| 55 | .event_flags = SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD } |
| 56 | |
| 57 | #define WM_ADSP2(wname, num) \ |
| 58 | { .id = snd_soc_dapm_pga, .name = wname, .reg = SND_SOC_NOPM, \ |
| 59 | .shift = num, .event = wm_adsp2_event, \ |
| 60 | .event_flags = SND_SOC_DAPM_POST_PMU | SND_SOC_DAPM_PRE_PMD } |
| 61 | |
Mark Brown | 973838a | 2012-11-28 17:20:32 +0000 | [diff] [blame] | 62 | int wm_adsp2_init(struct wm_adsp *adsp, bool dvfs); |
Mark Brown | 2159ad9 | 2012-10-11 11:54:02 +0900 | [diff] [blame] | 63 | int wm_adsp1_event(struct snd_soc_dapm_widget *w, |
| 64 | struct snd_kcontrol *kcontrol, int event); |
| 65 | int wm_adsp2_event(struct snd_soc_dapm_widget *w, |
| 66 | struct snd_kcontrol *kcontrol, int event); |
| 67 | |
| 68 | #endif |