Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 1 | /* |
| 2 | * |
| 3 | * Implementation of primary ALSA driver code base for NVIDIA Tegra HDA. |
| 4 | * |
| 5 | * This program is free software; you can redistribute it and/or modify it |
| 6 | * under the terms and conditions of the GNU General Public License, |
| 7 | * version 2, as published by the Free Software Foundation. |
| 8 | * |
| 9 | * This program is distributed in the hope it will be useful, but WITHOUT |
| 10 | * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
| 11 | * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for |
| 12 | * more details. |
| 13 | * |
| 14 | * You should have received a copy of the GNU General Public License |
| 15 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 16 | * |
| 17 | */ |
| 18 | |
| 19 | #include <linux/clk.h> |
| 20 | #include <linux/clocksource.h> |
| 21 | #include <linux/completion.h> |
| 22 | #include <linux/delay.h> |
| 23 | #include <linux/dma-mapping.h> |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/interrupt.h> |
| 26 | #include <linux/io.h> |
| 27 | #include <linux/kernel.h> |
| 28 | #include <linux/module.h> |
| 29 | #include <linux/moduleparam.h> |
| 30 | #include <linux/mutex.h> |
| 31 | #include <linux/of_device.h> |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 32 | #include <linux/slab.h> |
| 33 | #include <linux/time.h> |
| 34 | |
| 35 | #include <sound/core.h> |
| 36 | #include <sound/initval.h> |
| 37 | |
| 38 | #include "hda_codec.h" |
| 39 | #include "hda_controller.h" |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 40 | |
| 41 | /* Defines for Nvidia Tegra HDA support */ |
| 42 | #define HDA_BAR0 0x8000 |
| 43 | |
| 44 | #define HDA_CFG_CMD 0x1004 |
| 45 | #define HDA_CFG_BAR0 0x1010 |
| 46 | |
| 47 | #define HDA_ENABLE_IO_SPACE (1 << 0) |
| 48 | #define HDA_ENABLE_MEM_SPACE (1 << 1) |
| 49 | #define HDA_ENABLE_BUS_MASTER (1 << 2) |
| 50 | #define HDA_ENABLE_SERR (1 << 8) |
| 51 | #define HDA_DISABLE_INTR (1 << 10) |
| 52 | #define HDA_BAR0_INIT_PROGRAM 0xFFFFFFFF |
| 53 | #define HDA_BAR0_FINAL_PROGRAM (1 << 14) |
| 54 | |
| 55 | /* IPFS */ |
| 56 | #define HDA_IPFS_CONFIG 0x180 |
| 57 | #define HDA_IPFS_EN_FPCI 0x1 |
| 58 | |
| 59 | #define HDA_IPFS_FPCI_BAR0 0x80 |
| 60 | #define HDA_FPCI_BAR0_START 0x40 |
| 61 | |
| 62 | #define HDA_IPFS_INTR_MASK 0x188 |
| 63 | #define HDA_IPFS_EN_INTR (1 << 16) |
| 64 | |
| 65 | /* max number of SDs */ |
| 66 | #define NUM_CAPTURE_SD 1 |
| 67 | #define NUM_PLAYBACK_SD 1 |
| 68 | |
| 69 | struct hda_tegra { |
| 70 | struct azx chip; |
| 71 | struct device *dev; |
| 72 | struct clk *hda_clk; |
| 73 | struct clk *hda2codec_2x_clk; |
| 74 | struct clk *hda2hdmi_clk; |
| 75 | void __iomem *regs; |
Takashi Iwai | 8351044 | 2015-09-24 11:00:18 +0200 | [diff] [blame] | 76 | struct work_struct probe_work; |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 77 | }; |
| 78 | |
Arnd Bergmann | 16c2395 | 2014-05-26 21:15:20 +0200 | [diff] [blame] | 79 | #ifdef CONFIG_PM |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 80 | static int power_save = CONFIG_SND_HDA_POWER_SAVE_DEFAULT; |
| 81 | module_param(power_save, bint, 0644); |
| 82 | MODULE_PARM_DESC(power_save, |
| 83 | "Automatic power-saving timeout (in seconds, 0 = disable)."); |
Arnd Bergmann | 16c2395 | 2014-05-26 21:15:20 +0200 | [diff] [blame] | 84 | #else |
Takashi Iwai | bb57392 | 2015-02-20 09:26:04 +0100 | [diff] [blame] | 85 | #define power_save 0 |
Arnd Bergmann | 16c2395 | 2014-05-26 21:15:20 +0200 | [diff] [blame] | 86 | #endif |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 87 | |
| 88 | /* |
| 89 | * DMA page allocation ops. |
| 90 | */ |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 91 | static int dma_alloc_pages(struct hdac_bus *bus, int type, size_t size, |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 92 | struct snd_dma_buffer *buf) |
| 93 | { |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 94 | return snd_dma_alloc_pages(type, bus->dev, size, buf); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 95 | } |
| 96 | |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 97 | static void dma_free_pages(struct hdac_bus *bus, struct snd_dma_buffer *buf) |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 98 | { |
| 99 | snd_dma_free_pages(buf); |
| 100 | } |
| 101 | |
| 102 | static int substream_alloc_pages(struct azx *chip, |
| 103 | struct snd_pcm_substream *substream, |
| 104 | size_t size) |
| 105 | { |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 106 | return snd_pcm_lib_malloc_pages(substream, size); |
| 107 | } |
| 108 | |
| 109 | static int substream_free_pages(struct azx *chip, |
| 110 | struct snd_pcm_substream *substream) |
| 111 | { |
| 112 | return snd_pcm_lib_free_pages(substream); |
| 113 | } |
| 114 | |
| 115 | /* |
| 116 | * Register access ops. Tegra HDA register access is DWORD only. |
| 117 | */ |
Ben Dooks | c9058d4 | 2016-06-21 19:18:32 +0100 | [diff] [blame] | 118 | static void hda_tegra_writel(u32 value, u32 __iomem *addr) |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 119 | { |
| 120 | writel(value, addr); |
| 121 | } |
| 122 | |
Ben Dooks | c9058d4 | 2016-06-21 19:18:32 +0100 | [diff] [blame] | 123 | static u32 hda_tegra_readl(u32 __iomem *addr) |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 124 | { |
| 125 | return readl(addr); |
| 126 | } |
| 127 | |
Ben Dooks | c9058d4 | 2016-06-21 19:18:32 +0100 | [diff] [blame] | 128 | static void hda_tegra_writew(u16 value, u16 __iomem *addr) |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 129 | { |
| 130 | unsigned int shift = ((unsigned long)(addr) & 0x3) << 3; |
Ben Dooks | c9058d4 | 2016-06-21 19:18:32 +0100 | [diff] [blame] | 131 | void __iomem *dword_addr = (void __iomem *)((unsigned long)(addr) & ~0x3); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 132 | u32 v; |
| 133 | |
| 134 | v = readl(dword_addr); |
| 135 | v &= ~(0xffff << shift); |
| 136 | v |= value << shift; |
| 137 | writel(v, dword_addr); |
| 138 | } |
| 139 | |
Ben Dooks | c9058d4 | 2016-06-21 19:18:32 +0100 | [diff] [blame] | 140 | static u16 hda_tegra_readw(u16 __iomem *addr) |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 141 | { |
| 142 | unsigned int shift = ((unsigned long)(addr) & 0x3) << 3; |
Ben Dooks | c9058d4 | 2016-06-21 19:18:32 +0100 | [diff] [blame] | 143 | void __iomem *dword_addr = (void __iomem *)((unsigned long)(addr) & ~0x3); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 144 | u32 v; |
| 145 | |
| 146 | v = readl(dword_addr); |
| 147 | return (v >> shift) & 0xffff; |
| 148 | } |
| 149 | |
Ben Dooks | c9058d4 | 2016-06-21 19:18:32 +0100 | [diff] [blame] | 150 | static void hda_tegra_writeb(u8 value, u8 __iomem *addr) |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 151 | { |
| 152 | unsigned int shift = ((unsigned long)(addr) & 0x3) << 3; |
Ben Dooks | c9058d4 | 2016-06-21 19:18:32 +0100 | [diff] [blame] | 153 | void __iomem *dword_addr = (void __iomem *)((unsigned long)(addr) & ~0x3); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 154 | u32 v; |
| 155 | |
| 156 | v = readl(dword_addr); |
| 157 | v &= ~(0xff << shift); |
| 158 | v |= value << shift; |
| 159 | writel(v, dword_addr); |
| 160 | } |
| 161 | |
Ben Dooks | c9058d4 | 2016-06-21 19:18:32 +0100 | [diff] [blame] | 162 | static u8 hda_tegra_readb(u8 __iomem *addr) |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 163 | { |
| 164 | unsigned int shift = ((unsigned long)(addr) & 0x3) << 3; |
Ben Dooks | c9058d4 | 2016-06-21 19:18:32 +0100 | [diff] [blame] | 165 | void __iomem *dword_addr = (void __iomem *)((unsigned long)(addr) & ~0x3); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 166 | u32 v; |
| 167 | |
| 168 | v = readl(dword_addr); |
| 169 | return (v >> shift) & 0xff; |
| 170 | } |
| 171 | |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 172 | static const struct hdac_io_ops hda_tegra_io_ops = { |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 173 | .reg_writel = hda_tegra_writel, |
| 174 | .reg_readl = hda_tegra_readl, |
| 175 | .reg_writew = hda_tegra_writew, |
| 176 | .reg_readw = hda_tegra_readw, |
| 177 | .reg_writeb = hda_tegra_writeb, |
| 178 | .reg_readb = hda_tegra_readb, |
| 179 | .dma_alloc_pages = dma_alloc_pages, |
| 180 | .dma_free_pages = dma_free_pages, |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 181 | }; |
| 182 | |
| 183 | static const struct hda_controller_ops hda_tegra_ops = { |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 184 | .substream_alloc_pages = substream_alloc_pages, |
| 185 | .substream_free_pages = substream_free_pages, |
| 186 | }; |
| 187 | |
| 188 | static void hda_tegra_init(struct hda_tegra *hda) |
| 189 | { |
| 190 | u32 v; |
| 191 | |
| 192 | /* Enable PCI access */ |
| 193 | v = readl(hda->regs + HDA_IPFS_CONFIG); |
| 194 | v |= HDA_IPFS_EN_FPCI; |
| 195 | writel(v, hda->regs + HDA_IPFS_CONFIG); |
| 196 | |
| 197 | /* Enable MEM/IO space and bus master */ |
| 198 | v = readl(hda->regs + HDA_CFG_CMD); |
| 199 | v &= ~HDA_DISABLE_INTR; |
| 200 | v |= HDA_ENABLE_MEM_SPACE | HDA_ENABLE_IO_SPACE | |
| 201 | HDA_ENABLE_BUS_MASTER | HDA_ENABLE_SERR; |
| 202 | writel(v, hda->regs + HDA_CFG_CMD); |
| 203 | |
| 204 | writel(HDA_BAR0_INIT_PROGRAM, hda->regs + HDA_CFG_BAR0); |
| 205 | writel(HDA_BAR0_FINAL_PROGRAM, hda->regs + HDA_CFG_BAR0); |
| 206 | writel(HDA_FPCI_BAR0_START, hda->regs + HDA_IPFS_FPCI_BAR0); |
| 207 | |
| 208 | v = readl(hda->regs + HDA_IPFS_INTR_MASK); |
| 209 | v |= HDA_IPFS_EN_INTR; |
| 210 | writel(v, hda->regs + HDA_IPFS_INTR_MASK); |
| 211 | } |
| 212 | |
| 213 | static int hda_tegra_enable_clocks(struct hda_tegra *data) |
| 214 | { |
| 215 | int rc; |
| 216 | |
| 217 | rc = clk_prepare_enable(data->hda_clk); |
| 218 | if (rc) |
| 219 | return rc; |
| 220 | rc = clk_prepare_enable(data->hda2codec_2x_clk); |
| 221 | if (rc) |
| 222 | goto disable_hda; |
| 223 | rc = clk_prepare_enable(data->hda2hdmi_clk); |
| 224 | if (rc) |
| 225 | goto disable_codec_2x; |
| 226 | |
| 227 | return 0; |
| 228 | |
| 229 | disable_codec_2x: |
| 230 | clk_disable_unprepare(data->hda2codec_2x_clk); |
| 231 | disable_hda: |
| 232 | clk_disable_unprepare(data->hda_clk); |
| 233 | return rc; |
| 234 | } |
| 235 | |
Thierry Reding | 525549d | 2014-07-07 15:13:12 +0200 | [diff] [blame] | 236 | #ifdef CONFIG_PM_SLEEP |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 237 | static void hda_tegra_disable_clocks(struct hda_tegra *data) |
| 238 | { |
| 239 | clk_disable_unprepare(data->hda2hdmi_clk); |
| 240 | clk_disable_unprepare(data->hda2codec_2x_clk); |
| 241 | clk_disable_unprepare(data->hda_clk); |
| 242 | } |
| 243 | |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 244 | /* |
| 245 | * power management |
| 246 | */ |
| 247 | static int hda_tegra_suspend(struct device *dev) |
| 248 | { |
| 249 | struct snd_card *card = dev_get_drvdata(dev); |
| 250 | struct azx *chip = card->private_data; |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 251 | struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip); |
| 252 | |
| 253 | snd_power_change_state(card, SNDRV_CTL_POWER_D3hot); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 254 | |
| 255 | azx_stop_chip(chip); |
| 256 | azx_enter_link_reset(chip); |
| 257 | hda_tegra_disable_clocks(hda); |
| 258 | |
| 259 | return 0; |
| 260 | } |
| 261 | |
| 262 | static int hda_tegra_resume(struct device *dev) |
| 263 | { |
| 264 | struct snd_card *card = dev_get_drvdata(dev); |
| 265 | struct azx *chip = card->private_data; |
| 266 | struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 267 | |
| 268 | hda_tegra_enable_clocks(hda); |
| 269 | |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 270 | hda_tegra_init(hda); |
| 271 | |
| 272 | azx_init_chip(chip, 1); |
| 273 | |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 274 | snd_power_change_state(card, SNDRV_CTL_POWER_D0); |
| 275 | |
| 276 | return 0; |
| 277 | } |
| 278 | #endif /* CONFIG_PM_SLEEP */ |
| 279 | |
| 280 | static const struct dev_pm_ops hda_tegra_pm = { |
| 281 | SET_SYSTEM_SLEEP_PM_OPS(hda_tegra_suspend, hda_tegra_resume) |
| 282 | }; |
| 283 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 284 | static int hda_tegra_dev_disconnect(struct snd_device *device) |
| 285 | { |
| 286 | struct azx *chip = device->device_data; |
| 287 | |
| 288 | chip->bus.shutdown = 1; |
| 289 | return 0; |
| 290 | } |
| 291 | |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 292 | /* |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 293 | * destructor |
| 294 | */ |
| 295 | static int hda_tegra_dev_free(struct snd_device *device) |
| 296 | { |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 297 | struct azx *chip = device->device_data; |
Takashi Iwai | 8351044 | 2015-09-24 11:00:18 +0200 | [diff] [blame] | 298 | struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 299 | |
Takashi Iwai | 8351044 | 2015-09-24 11:00:18 +0200 | [diff] [blame] | 300 | cancel_work_sync(&hda->probe_work); |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 301 | if (azx_bus(chip)->chip_init) { |
Takashi Iwai | 7833c3f | 2015-04-14 18:13:13 +0200 | [diff] [blame] | 302 | azx_stop_all_streams(chip); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 303 | azx_stop_chip(chip); |
| 304 | } |
| 305 | |
| 306 | azx_free_stream_pages(chip); |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 307 | azx_free_streams(chip); |
Takashi Iwai | 4cfe99c | 2015-04-16 12:02:30 +0200 | [diff] [blame] | 308 | snd_hdac_bus_exit(azx_bus(chip)); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 309 | |
| 310 | return 0; |
| 311 | } |
| 312 | |
| 313 | static int hda_tegra_init_chip(struct azx *chip, struct platform_device *pdev) |
| 314 | { |
| 315 | struct hda_tegra *hda = container_of(chip, struct hda_tegra, chip); |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 316 | struct hdac_bus *bus = azx_bus(chip); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 317 | struct device *dev = hda->dev; |
| 318 | struct resource *res; |
| 319 | int err; |
| 320 | |
| 321 | hda->hda_clk = devm_clk_get(dev, "hda"); |
Thierry Reding | 6a464a4 | 2015-05-05 14:56:21 +0200 | [diff] [blame] | 322 | if (IS_ERR(hda->hda_clk)) { |
| 323 | dev_err(dev, "failed to get hda clock\n"); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 324 | return PTR_ERR(hda->hda_clk); |
Thierry Reding | 6a464a4 | 2015-05-05 14:56:21 +0200 | [diff] [blame] | 325 | } |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 326 | hda->hda2codec_2x_clk = devm_clk_get(dev, "hda2codec_2x"); |
Thierry Reding | 6a464a4 | 2015-05-05 14:56:21 +0200 | [diff] [blame] | 327 | if (IS_ERR(hda->hda2codec_2x_clk)) { |
| 328 | dev_err(dev, "failed to get hda2codec_2x clock\n"); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 329 | return PTR_ERR(hda->hda2codec_2x_clk); |
Thierry Reding | 6a464a4 | 2015-05-05 14:56:21 +0200 | [diff] [blame] | 330 | } |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 331 | hda->hda2hdmi_clk = devm_clk_get(dev, "hda2hdmi"); |
Thierry Reding | 6a464a4 | 2015-05-05 14:56:21 +0200 | [diff] [blame] | 332 | if (IS_ERR(hda->hda2hdmi_clk)) { |
| 333 | dev_err(dev, "failed to get hda2hdmi clock\n"); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 334 | return PTR_ERR(hda->hda2hdmi_clk); |
Thierry Reding | 6a464a4 | 2015-05-05 14:56:21 +0200 | [diff] [blame] | 335 | } |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 336 | |
| 337 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 338 | hda->regs = devm_ioremap_resource(dev, res); |
Eliot Blennerhassett | 93ceaa3 | 2015-02-14 15:32:24 +1300 | [diff] [blame] | 339 | if (IS_ERR(hda->regs)) |
| 340 | return PTR_ERR(hda->regs); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 341 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 342 | bus->remap_addr = hda->regs + HDA_BAR0; |
| 343 | bus->addr = res->start + HDA_BAR0; |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 344 | |
| 345 | err = hda_tegra_enable_clocks(hda); |
Thierry Reding | 6a464a4 | 2015-05-05 14:56:21 +0200 | [diff] [blame] | 346 | if (err) { |
| 347 | dev_err(dev, "failed to get enable clocks\n"); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 348 | return err; |
Thierry Reding | 6a464a4 | 2015-05-05 14:56:21 +0200 | [diff] [blame] | 349 | } |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 350 | |
| 351 | hda_tegra_init(hda); |
| 352 | |
| 353 | return 0; |
| 354 | } |
| 355 | |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 356 | static int hda_tegra_first_init(struct azx *chip, struct platform_device *pdev) |
| 357 | { |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 358 | struct hdac_bus *bus = azx_bus(chip); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 359 | struct snd_card *card = chip->card; |
| 360 | int err; |
| 361 | unsigned short gcap; |
| 362 | int irq_id = platform_get_irq(pdev, 0); |
| 363 | |
| 364 | err = hda_tegra_init_chip(chip, pdev); |
| 365 | if (err) |
| 366 | return err; |
| 367 | |
| 368 | err = devm_request_irq(chip->card->dev, irq_id, azx_interrupt, |
| 369 | IRQF_SHARED, KBUILD_MODNAME, chip); |
| 370 | if (err) { |
| 371 | dev_err(chip->card->dev, |
| 372 | "unable to request IRQ %d, disabling device\n", |
| 373 | irq_id); |
| 374 | return err; |
| 375 | } |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 376 | bus->irq = irq_id; |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 377 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 378 | synchronize_irq(bus->irq); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 379 | |
| 380 | gcap = azx_readw(chip, GCAP); |
| 381 | dev_dbg(card->dev, "chipset global capabilities = 0x%x\n", gcap); |
| 382 | |
| 383 | /* read number of streams from GCAP register instead of using |
| 384 | * hardcoded value |
| 385 | */ |
| 386 | chip->capture_streams = (gcap >> 8) & 0x0f; |
| 387 | chip->playback_streams = (gcap >> 12) & 0x0f; |
| 388 | if (!chip->playback_streams && !chip->capture_streams) { |
| 389 | /* gcap didn't give any info, switching to old method */ |
| 390 | chip->playback_streams = NUM_PLAYBACK_SD; |
| 391 | chip->capture_streams = NUM_CAPTURE_SD; |
| 392 | } |
| 393 | chip->capture_index_offset = 0; |
| 394 | chip->playback_index_offset = chip->capture_streams; |
| 395 | chip->num_streams = chip->playback_streams + chip->capture_streams; |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 396 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 397 | /* initialize streams */ |
| 398 | err = azx_init_streams(chip); |
Thierry Reding | 6a464a4 | 2015-05-05 14:56:21 +0200 | [diff] [blame] | 399 | if (err < 0) { |
| 400 | dev_err(card->dev, "failed to initialize streams: %d\n", err); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 401 | return err; |
Thierry Reding | 6a464a4 | 2015-05-05 14:56:21 +0200 | [diff] [blame] | 402 | } |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 403 | |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 404 | err = azx_alloc_stream_pages(chip); |
Thierry Reding | 6a464a4 | 2015-05-05 14:56:21 +0200 | [diff] [blame] | 405 | if (err < 0) { |
| 406 | dev_err(card->dev, "failed to allocate stream pages: %d\n", |
| 407 | err); |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 408 | return err; |
Thierry Reding | 6a464a4 | 2015-05-05 14:56:21 +0200 | [diff] [blame] | 409 | } |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 410 | |
| 411 | /* initialize chip */ |
| 412 | azx_init_chip(chip, 1); |
| 413 | |
| 414 | /* codec detection */ |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 415 | if (!bus->codec_mask) { |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 416 | dev_err(card->dev, "no codecs found!\n"); |
| 417 | return -ENODEV; |
| 418 | } |
| 419 | |
| 420 | strcpy(card->driver, "tegra-hda"); |
| 421 | strcpy(card->shortname, "tegra-hda"); |
| 422 | snprintf(card->longname, sizeof(card->longname), |
| 423 | "%s at 0x%lx irq %i", |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 424 | card->shortname, bus->addr, bus->irq); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 425 | |
| 426 | return 0; |
| 427 | } |
| 428 | |
| 429 | /* |
| 430 | * constructor |
| 431 | */ |
Takashi Iwai | 8351044 | 2015-09-24 11:00:18 +0200 | [diff] [blame] | 432 | |
| 433 | static void hda_tegra_probe_work(struct work_struct *work); |
| 434 | |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 435 | static int hda_tegra_create(struct snd_card *card, |
| 436 | unsigned int driver_caps, |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 437 | struct hda_tegra *hda) |
| 438 | { |
| 439 | static struct snd_device_ops ops = { |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 440 | .dev_disconnect = hda_tegra_dev_disconnect, |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 441 | .dev_free = hda_tegra_dev_free, |
| 442 | }; |
| 443 | struct azx *chip; |
| 444 | int err; |
| 445 | |
| 446 | chip = &hda->chip; |
| 447 | |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 448 | mutex_init(&chip->open_mutex); |
| 449 | chip->card = card; |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 450 | chip->ops = &hda_tegra_ops; |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 451 | chip->driver_caps = driver_caps; |
| 452 | chip->driver_type = driver_caps & 0xff; |
| 453 | chip->dev_index = 0; |
| 454 | INIT_LIST_HEAD(&chip->pcm_list); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 455 | |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 456 | chip->codec_probe_mask = -1; |
| 457 | |
| 458 | chip->single_cmd = false; |
| 459 | chip->snoop = true; |
| 460 | |
Takashi Iwai | 8351044 | 2015-09-24 11:00:18 +0200 | [diff] [blame] | 461 | INIT_WORK(&hda->probe_work, hda_tegra_probe_work); |
| 462 | |
Thierry Reding | 3b90f40 | 2015-05-05 14:45:57 +0200 | [diff] [blame] | 463 | err = azx_bus_init(chip, NULL, &hda_tegra_io_ops); |
| 464 | if (err < 0) |
| 465 | return err; |
| 466 | |
Takashi Iwai | 7d9a180 | 2015-12-17 08:23:39 +0100 | [diff] [blame] | 467 | chip->bus.needs_damn_long_delay = 1; |
| 468 | |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 469 | err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, chip, &ops); |
| 470 | if (err < 0) { |
| 471 | dev_err(card->dev, "Error creating device\n"); |
| 472 | return err; |
| 473 | } |
| 474 | |
| 475 | return 0; |
| 476 | } |
| 477 | |
| 478 | static const struct of_device_id hda_tegra_match[] = { |
| 479 | { .compatible = "nvidia,tegra30-hda" }, |
| 480 | {}, |
| 481 | }; |
Dylan Reid | f73387c | 2014-05-20 11:26:12 -0700 | [diff] [blame] | 482 | MODULE_DEVICE_TABLE(of, hda_tegra_match); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 483 | |
| 484 | static int hda_tegra_probe(struct platform_device *pdev) |
| 485 | { |
Takashi Iwai | 7d9a180 | 2015-12-17 08:23:39 +0100 | [diff] [blame] | 486 | const unsigned int driver_flags = AZX_DCAPS_CORBRP_SELF_CLEAR; |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 487 | struct snd_card *card; |
| 488 | struct azx *chip; |
| 489 | struct hda_tegra *hda; |
| 490 | int err; |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 491 | |
| 492 | hda = devm_kzalloc(&pdev->dev, sizeof(*hda), GFP_KERNEL); |
| 493 | if (!hda) |
| 494 | return -ENOMEM; |
| 495 | hda->dev = &pdev->dev; |
| 496 | chip = &hda->chip; |
| 497 | |
| 498 | err = snd_card_new(&pdev->dev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1, |
| 499 | THIS_MODULE, 0, &card); |
| 500 | if (err < 0) { |
| 501 | dev_err(&pdev->dev, "Error creating card!\n"); |
| 502 | return err; |
| 503 | } |
| 504 | |
Takashi Iwai | a43ff5b | 2015-04-14 17:26:00 +0200 | [diff] [blame] | 505 | err = hda_tegra_create(card, driver_flags, hda); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 506 | if (err < 0) |
| 507 | goto out_free; |
| 508 | card->private_data = chip; |
| 509 | |
| 510 | dev_set_drvdata(&pdev->dev, card); |
Takashi Iwai | 8351044 | 2015-09-24 11:00:18 +0200 | [diff] [blame] | 511 | schedule_work(&hda->probe_work); |
| 512 | |
| 513 | return 0; |
| 514 | |
| 515 | out_free: |
| 516 | snd_card_free(card); |
| 517 | return err; |
| 518 | } |
| 519 | |
| 520 | static void hda_tegra_probe_work(struct work_struct *work) |
| 521 | { |
| 522 | struct hda_tegra *hda = container_of(work, struct hda_tegra, probe_work); |
| 523 | struct azx *chip = &hda->chip; |
| 524 | struct platform_device *pdev = to_platform_device(hda->dev); |
| 525 | int err; |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 526 | |
| 527 | err = hda_tegra_first_init(chip, pdev); |
| 528 | if (err < 0) |
| 529 | goto out_free; |
| 530 | |
| 531 | /* create codec instances */ |
Takashi Iwai | 96d2bd6 | 2015-02-19 18:12:22 +0100 | [diff] [blame] | 532 | err = azx_probe_codecs(chip, 0); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 533 | if (err < 0) |
| 534 | goto out_free; |
| 535 | |
| 536 | err = azx_codec_configure(chip); |
| 537 | if (err < 0) |
| 538 | goto out_free; |
| 539 | |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 540 | err = snd_card_register(chip->card); |
| 541 | if (err < 0) |
| 542 | goto out_free; |
| 543 | |
| 544 | chip->running = 1; |
Takashi Iwai | a41d122 | 2015-04-14 22:13:18 +0200 | [diff] [blame] | 545 | snd_hda_set_power_save(&chip->bus, power_save * 1000); |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 546 | |
Takashi Iwai | 8351044 | 2015-09-24 11:00:18 +0200 | [diff] [blame] | 547 | out_free: |
| 548 | return; /* no error return from async probe */ |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 549 | } |
| 550 | |
| 551 | static int hda_tegra_remove(struct platform_device *pdev) |
| 552 | { |
| 553 | return snd_card_free(dev_get_drvdata(&pdev->dev)); |
| 554 | } |
| 555 | |
Takashi Iwai | b2a0baf | 2015-03-05 17:21:32 +0100 | [diff] [blame] | 556 | static void hda_tegra_shutdown(struct platform_device *pdev) |
| 557 | { |
| 558 | struct snd_card *card = dev_get_drvdata(&pdev->dev); |
| 559 | struct azx *chip; |
| 560 | |
| 561 | if (!card) |
| 562 | return; |
| 563 | chip = card->private_data; |
| 564 | if (chip && chip->running) |
| 565 | azx_stop_chip(chip); |
| 566 | } |
| 567 | |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 568 | static struct platform_driver tegra_platform_hda = { |
| 569 | .driver = { |
| 570 | .name = "tegra-hda", |
| 571 | .pm = &hda_tegra_pm, |
| 572 | .of_match_table = hda_tegra_match, |
| 573 | }, |
| 574 | .probe = hda_tegra_probe, |
| 575 | .remove = hda_tegra_remove, |
Takashi Iwai | b2a0baf | 2015-03-05 17:21:32 +0100 | [diff] [blame] | 576 | .shutdown = hda_tegra_shutdown, |
Dylan Reid | 3c320f3 | 2014-05-19 19:18:27 -0700 | [diff] [blame] | 577 | }; |
| 578 | module_platform_driver(tegra_platform_hda); |
| 579 | |
| 580 | MODULE_DESCRIPTION("Tegra HDA bus driver"); |
| 581 | MODULE_LICENSE("GPL v2"); |