| Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0-only */ |
| Manuel Lauss | 4a161d2 | 2008-07-09 16:27:56 +0200 | [diff] [blame] | 2 | /* |
| Manuel Lauss | b3c70c9 | 2011-07-25 13:44:45 +0200 | [diff] [blame] | 3 | * Alchemy ALSA ASoC audio support. |
| Manuel Lauss | 4a161d2 | 2008-07-09 16:27:56 +0200 | [diff] [blame] | 4 | * |
| Manuel Lauss | b3c70c9 | 2011-07-25 13:44:45 +0200 | [diff] [blame] | 5 | * (c) 2007-2011 MSC Vertriebsges.m.b.H., |
| Manuel Lauss | 0f83d63 | 2009-10-31 20:15:08 +0100 | [diff] [blame] | 6 | * Manuel Lauss <manuel.lauss@gmail.com> |
| Manuel Lauss | 4a161d2 | 2008-07-09 16:27:56 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #ifndef _AU1X_PCM_H |
| 10 | #define _AU1X_PCM_H |
| 11 | |
| Manuel Lauss | 4a161d2 | 2008-07-09 16:27:56 +0200 | [diff] [blame] | 12 | struct au1xpsc_audio_data { |
| 13 | void __iomem *mmio; |
| 14 | |
| 15 | unsigned long cfg; |
| 16 | unsigned long rate; |
| 17 | |
| Manuel Lauss | ffc4fdb | 2010-08-26 14:53:51 +0200 | [diff] [blame] | 18 | struct snd_soc_dai_driver dai_drv; |
| 19 | |
| Manuel Lauss | 4a161d2 | 2008-07-09 16:27:56 +0200 | [diff] [blame] | 20 | unsigned long pm[2]; |
| Manuel Lauss | cdc65fb | 2009-09-08 19:45:17 +0200 | [diff] [blame] | 21 | struct mutex lock; |
| Manuel Lauss | b3c70c9 | 2011-07-25 13:44:45 +0200 | [diff] [blame] | 22 | int dmaids[2]; |
| Manuel Lauss | 4a161d2 | 2008-07-09 16:27:56 +0200 | [diff] [blame] | 23 | }; |
| 24 | |
| Manuel Lauss | 4a161d2 | 2008-07-09 16:27:56 +0200 | [diff] [blame] | 25 | /* easy access macros */ |
| Manuel Lauss | 2f73bfb | 2014-07-23 16:36:26 +0200 | [diff] [blame] | 26 | #define PSC_CTRL(x) ((x)->mmio + PSC_CTRL_OFFSET) |
| 27 | #define PSC_SEL(x) ((x)->mmio + PSC_SEL_OFFSET) |
| 28 | #define I2S_STAT(x) ((x)->mmio + PSC_I2SSTAT_OFFSET) |
| 29 | #define I2S_CFG(x) ((x)->mmio + PSC_I2SCFG_OFFSET) |
| 30 | #define I2S_PCR(x) ((x)->mmio + PSC_I2SPCR_OFFSET) |
| 31 | #define AC97_CFG(x) ((x)->mmio + PSC_AC97CFG_OFFSET) |
| 32 | #define AC97_CDC(x) ((x)->mmio + PSC_AC97CDC_OFFSET) |
| 33 | #define AC97_EVNT(x) ((x)->mmio + PSC_AC97EVNT_OFFSET) |
| 34 | #define AC97_PCR(x) ((x)->mmio + PSC_AC97PCR_OFFSET) |
| 35 | #define AC97_RST(x) ((x)->mmio + PSC_AC97RST_OFFSET) |
| 36 | #define AC97_STAT(x) ((x)->mmio + PSC_AC97STAT_OFFSET) |
| Manuel Lauss | 4a161d2 | 2008-07-09 16:27:56 +0200 | [diff] [blame] | 37 | |
| 38 | #endif |