Thomas Gleixner | 8e8e69d | 2019-05-29 07:17:59 -0700 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 2 | /* |
| 3 | * hdac-ext-bus.c - HD-audio extended core bus functions. |
| 4 | * |
| 5 | * Copyright (C) 2014-2015 Intel Corp |
| 6 | * Author: Jeeja KP <jeeja.kp@intel.com> |
| 7 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 8 | * |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 9 | * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
| 10 | */ |
| 11 | |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/slab.h> |
Vinod Koul | 42f2bb1 | 2015-10-13 14:57:49 +0530 | [diff] [blame] | 14 | #include <linux/io.h> |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 15 | #include <sound/hdaudio_ext.h> |
| 16 | |
| 17 | MODULE_DESCRIPTION("HDA extended core"); |
| 18 | MODULE_LICENSE("GPL v2"); |
| 19 | |
Vinod Koul | 99463b3 | 2015-06-17 11:20:18 +0530 | [diff] [blame] | 20 | static void hdac_ext_writel(u32 value, u32 __iomem *addr) |
| 21 | { |
| 22 | writel(value, addr); |
| 23 | } |
| 24 | |
| 25 | static u32 hdac_ext_readl(u32 __iomem *addr) |
| 26 | { |
| 27 | return readl(addr); |
| 28 | } |
| 29 | |
| 30 | static void hdac_ext_writew(u16 value, u16 __iomem *addr) |
| 31 | { |
| 32 | writew(value, addr); |
| 33 | } |
| 34 | |
| 35 | static u16 hdac_ext_readw(u16 __iomem *addr) |
| 36 | { |
| 37 | return readw(addr); |
| 38 | } |
| 39 | |
| 40 | static void hdac_ext_writeb(u8 value, u8 __iomem *addr) |
| 41 | { |
| 42 | writeb(value, addr); |
| 43 | } |
| 44 | |
| 45 | static u8 hdac_ext_readb(u8 __iomem *addr) |
| 46 | { |
| 47 | return readb(addr); |
| 48 | } |
| 49 | |
| 50 | static int hdac_ext_dma_alloc_pages(struct hdac_bus *bus, int type, |
| 51 | size_t size, struct snd_dma_buffer *buf) |
| 52 | { |
| 53 | return snd_dma_alloc_pages(type, bus->dev, size, buf); |
| 54 | } |
| 55 | |
| 56 | static void hdac_ext_dma_free_pages(struct hdac_bus *bus, struct snd_dma_buffer *buf) |
| 57 | { |
| 58 | snd_dma_free_pages(buf); |
| 59 | } |
| 60 | |
| 61 | static const struct hdac_io_ops hdac_ext_default_io = { |
| 62 | .reg_writel = hdac_ext_writel, |
| 63 | .reg_readl = hdac_ext_readl, |
| 64 | .reg_writew = hdac_ext_writew, |
| 65 | .reg_readw = hdac_ext_readw, |
| 66 | .reg_writeb = hdac_ext_writeb, |
| 67 | .reg_readb = hdac_ext_readb, |
| 68 | .dma_alloc_pages = hdac_ext_dma_alloc_pages, |
| 69 | .dma_free_pages = hdac_ext_dma_free_pages, |
| 70 | }; |
| 71 | |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 72 | /** |
| 73 | * snd_hdac_ext_bus_init - initialize a HD-audio extended bus |
| 74 | * @ebus: the pointer to extended bus object |
| 75 | * @dev: device pointer |
| 76 | * @ops: bus verb operators |
Vinod Koul | 99463b3 | 2015-06-17 11:20:18 +0530 | [diff] [blame] | 77 | * @io_ops: lowlevel I/O operators, can be NULL. If NULL core will use |
| 78 | * default ops |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 79 | * |
| 80 | * Returns 0 if successful, or a negative error code. |
| 81 | */ |
Rakesh Ughreja | 76f56fa | 2018-06-01 22:53:50 -0500 | [diff] [blame] | 82 | int snd_hdac_ext_bus_init(struct hdac_bus *bus, struct device *dev, |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 83 | const struct hdac_bus_ops *ops, |
Rakesh Ughreja | cb04ba3 | 2018-06-01 22:53:58 -0500 | [diff] [blame] | 84 | const struct hdac_io_ops *io_ops, |
| 85 | const struct hdac_ext_bus_ops *ext_ops) |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 86 | { |
| 87 | int ret; |
| 88 | static int idx; |
| 89 | |
Vinod Koul | 99463b3 | 2015-06-17 11:20:18 +0530 | [diff] [blame] | 90 | /* check if io ops are provided, if not load the defaults */ |
| 91 | if (io_ops == NULL) |
| 92 | io_ops = &hdac_ext_default_io; |
| 93 | |
Rakesh Ughreja | 76f56fa | 2018-06-01 22:53:50 -0500 | [diff] [blame] | 94 | ret = snd_hdac_bus_init(bus, dev, ops, io_ops); |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 95 | if (ret < 0) |
| 96 | return ret; |
| 97 | |
Rakesh Ughreja | cb04ba3 | 2018-06-01 22:53:58 -0500 | [diff] [blame] | 98 | bus->ext_ops = ext_ops; |
Rakesh Ughreja | 76f56fa | 2018-06-01 22:53:50 -0500 | [diff] [blame] | 99 | bus->idx = idx++; |
Rakesh Ughreja | 76f56fa | 2018-06-01 22:53:50 -0500 | [diff] [blame] | 100 | bus->cmd_dma_state = true; |
Vinod Koul | 4446085d | 2016-05-12 08:58:53 +0530 | [diff] [blame] | 101 | |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 102 | return 0; |
| 103 | } |
| 104 | EXPORT_SYMBOL_GPL(snd_hdac_ext_bus_init); |
| 105 | |
| 106 | /** |
| 107 | * snd_hdac_ext_bus_exit - clean up a HD-audio extended bus |
| 108 | * @ebus: the pointer to extended bus object |
| 109 | */ |
Rakesh Ughreja | 76f56fa | 2018-06-01 22:53:50 -0500 | [diff] [blame] | 110 | void snd_hdac_ext_bus_exit(struct hdac_bus *bus) |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 111 | { |
Rakesh Ughreja | 76f56fa | 2018-06-01 22:53:50 -0500 | [diff] [blame] | 112 | snd_hdac_bus_exit(bus); |
| 113 | WARN_ON(!list_empty(&bus->hlink_list)); |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 114 | } |
| 115 | EXPORT_SYMBOL_GPL(snd_hdac_ext_bus_exit); |
| 116 | |
| 117 | static void default_release(struct device *dev) |
| 118 | { |
| 119 | snd_hdac_ext_bus_device_exit(container_of(dev, struct hdac_device, dev)); |
| 120 | } |
| 121 | |
| 122 | /** |
Vinod Koul | a512f56 | 2015-08-21 15:47:41 +0530 | [diff] [blame] | 123 | * snd_hdac_ext_bus_device_init - initialize the HDA extended codec base device |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 124 | * @ebus: hdac extended bus to attach to |
| 125 | * @addr: codec address |
| 126 | * |
| 127 | * Returns zero for success or a negative error code. |
| 128 | */ |
Rakesh Ughreja | 6298542 | 2018-06-01 22:53:57 -0500 | [diff] [blame] | 129 | int snd_hdac_ext_bus_device_init(struct hdac_bus *bus, int addr, |
| 130 | struct hdac_device *hdev) |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 131 | { |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 132 | char name[15]; |
| 133 | int ret; |
| 134 | |
Rakesh Ughreja | 3787a39 | 2018-06-01 22:53:49 -0500 | [diff] [blame] | 135 | hdev->bus = bus; |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 136 | |
Rakesh Ughreja | 76f56fa | 2018-06-01 22:53:50 -0500 | [diff] [blame] | 137 | snprintf(name, sizeof(name), "ehdaudio%dD%d", bus->idx, addr); |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 138 | |
| 139 | ret = snd_hdac_device_init(hdev, bus, name, addr); |
| 140 | if (ret < 0) { |
| 141 | dev_err(bus->dev, "device init failed for hdac device\n"); |
| 142 | return ret; |
| 143 | } |
| 144 | hdev->type = HDA_DEV_ASOC; |
| 145 | hdev->dev.release = default_release; |
| 146 | |
| 147 | ret = snd_hdac_device_register(hdev); |
| 148 | if (ret) { |
| 149 | dev_err(bus->dev, "failed to register hdac device\n"); |
| 150 | snd_hdac_ext_bus_device_exit(hdev); |
| 151 | return ret; |
| 152 | } |
Vinod Koul | a512f56 | 2015-08-21 15:47:41 +0530 | [diff] [blame] | 153 | |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 154 | return 0; |
| 155 | } |
| 156 | EXPORT_SYMBOL_GPL(snd_hdac_ext_bus_device_init); |
| 157 | |
| 158 | /** |
| 159 | * snd_hdac_ext_bus_device_exit - clean up a HD-audio extended codec base device |
| 160 | * @hdev: hdac device to clean up |
| 161 | */ |
| 162 | void snd_hdac_ext_bus_device_exit(struct hdac_device *hdev) |
| 163 | { |
| 164 | snd_hdac_device_exit(hdev); |
Rakesh Ughreja | 3787a39 | 2018-06-01 22:53:49 -0500 | [diff] [blame] | 165 | kfree(hdev); |
Jeeja KP | dfe66a1 | 2015-06-11 14:11:47 +0530 | [diff] [blame] | 166 | } |
| 167 | EXPORT_SYMBOL_GPL(snd_hdac_ext_bus_device_exit); |
Vinod Koul | ee2d51b | 2015-08-21 15:47:40 +0530 | [diff] [blame] | 168 | |
| 169 | /** |
| 170 | * snd_hdac_ext_bus_device_remove - remove HD-audio extended codec base devices |
| 171 | * |
| 172 | * @ebus: HD-audio extended bus |
| 173 | */ |
Rakesh Ughreja | 76f56fa | 2018-06-01 22:53:50 -0500 | [diff] [blame] | 174 | void snd_hdac_ext_bus_device_remove(struct hdac_bus *bus) |
Vinod Koul | ee2d51b | 2015-08-21 15:47:40 +0530 | [diff] [blame] | 175 | { |
| 176 | struct hdac_device *codec, *__codec; |
| 177 | /* |
| 178 | * we need to remove all the codec devices objects created in the |
| 179 | * snd_hdac_ext_bus_device_init |
| 180 | */ |
Rakesh Ughreja | 76f56fa | 2018-06-01 22:53:50 -0500 | [diff] [blame] | 181 | list_for_each_entry_safe(codec, __codec, &bus->codec_list, list) { |
Vinod Koul | ee2d51b | 2015-08-21 15:47:40 +0530 | [diff] [blame] | 182 | snd_hdac_device_unregister(codec); |
| 183 | put_device(&codec->dev); |
| 184 | } |
| 185 | } |
| 186 | EXPORT_SYMBOL_GPL(snd_hdac_ext_bus_device_remove); |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 187 | #define dev_to_hdac(dev) (container_of((dev), \ |
| 188 | struct hdac_device, dev)) |
| 189 | |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 190 | static inline struct hdac_driver *get_hdrv(struct device *dev) |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 191 | { |
| 192 | struct hdac_driver *hdrv = drv_to_hdac_driver(dev->driver); |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 193 | return hdrv; |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 194 | } |
| 195 | |
Rakesh Ughreja | 3787a39 | 2018-06-01 22:53:49 -0500 | [diff] [blame] | 196 | static inline struct hdac_device *get_hdev(struct device *dev) |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 197 | { |
| 198 | struct hdac_device *hdev = dev_to_hdac_dev(dev); |
Rakesh Ughreja | 3787a39 | 2018-06-01 22:53:49 -0500 | [diff] [blame] | 199 | return hdev; |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | static int hda_ext_drv_probe(struct device *dev) |
| 203 | { |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 204 | return (get_hdrv(dev))->probe(get_hdev(dev)); |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 205 | } |
| 206 | |
| 207 | static int hdac_ext_drv_remove(struct device *dev) |
| 208 | { |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 209 | return (get_hdrv(dev))->remove(get_hdev(dev)); |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 210 | } |
| 211 | |
| 212 | static void hdac_ext_drv_shutdown(struct device *dev) |
| 213 | { |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 214 | return (get_hdrv(dev))->shutdown(get_hdev(dev)); |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | /** |
| 218 | * snd_hda_ext_driver_register - register a driver for ext hda devices |
| 219 | * |
| 220 | * @drv: ext hda driver structure |
| 221 | */ |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 222 | int snd_hda_ext_driver_register(struct hdac_driver *drv) |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 223 | { |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 224 | drv->type = HDA_DEV_ASOC; |
| 225 | drv->driver.bus = &snd_hda_bus_type; |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 226 | /* we use default match */ |
| 227 | |
| 228 | if (drv->probe) |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 229 | drv->driver.probe = hda_ext_drv_probe; |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 230 | if (drv->remove) |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 231 | drv->driver.remove = hdac_ext_drv_remove; |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 232 | if (drv->shutdown) |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 233 | drv->driver.shutdown = hdac_ext_drv_shutdown; |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 234 | |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 235 | return driver_register(&drv->driver); |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 236 | } |
| 237 | EXPORT_SYMBOL_GPL(snd_hda_ext_driver_register); |
| 238 | |
| 239 | /** |
| 240 | * snd_hda_ext_driver_unregister - unregister a driver for ext hda devices |
| 241 | * |
| 242 | * @drv: ext hda driver structure |
| 243 | */ |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 244 | void snd_hda_ext_driver_unregister(struct hdac_driver *drv) |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 245 | { |
Rakesh Ughreja | e1df931 | 2018-06-01 22:53:51 -0500 | [diff] [blame] | 246 | driver_unregister(&drv->driver); |
Vinod Koul | d51783c | 2015-08-21 15:47:42 +0530 | [diff] [blame] | 247 | } |
| 248 | EXPORT_SYMBOL_GPL(snd_hda_ext_driver_unregister); |