Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 1 | /* |
| 2 | * drivers/mfd/mfd-core.c |
| 3 | * |
| 4 | * core MFD support |
| 5 | * Copyright (c) 2006 Ian Molton |
| 6 | * Copyright (c) 2007,2008 Dmitry Baryshkov |
| 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 | |
| 14 | #include <linux/kernel.h> |
| 15 | #include <linux/platform_device.h> |
Samuel Ortiz | 91feded | 2010-02-19 11:07:59 +0100 | [diff] [blame] | 16 | #include <linux/acpi.h> |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 17 | #include <linux/mfd/core.h> |
Mark Brown | 4c90aa9 | 2010-11-26 17:19:34 +0000 | [diff] [blame] | 18 | #include <linux/pm_runtime.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 19 | #include <linux/slab.h> |
Paul Gortmaker | 4e36dd3 | 2011-07-03 15:13:27 -0400 | [diff] [blame] | 20 | #include <linux/module.h> |
Lee Jones | c94bb23 | 2012-06-29 19:01:03 +0200 | [diff] [blame] | 21 | #include <linux/irqdomain.h> |
| 22 | #include <linux/of.h> |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 23 | |
Andres Salomon | f77289a | 2011-03-03 09:51:58 -0800 | [diff] [blame] | 24 | int mfd_cell_enable(struct platform_device *pdev) |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 25 | { |
| 26 | const struct mfd_cell *cell = mfd_get_cell(pdev); |
| 27 | int err = 0; |
| 28 | |
| 29 | /* only call enable hook if the cell wasn't previously enabled */ |
| 30 | if (atomic_inc_return(cell->usage_count) == 1) |
| 31 | err = cell->enable(pdev); |
| 32 | |
| 33 | /* if the enable hook failed, decrement counter to allow retries */ |
| 34 | if (err) |
| 35 | atomic_dec(cell->usage_count); |
| 36 | |
| 37 | return err; |
| 38 | } |
Andres Salomon | f77289a | 2011-03-03 09:51:58 -0800 | [diff] [blame] | 39 | EXPORT_SYMBOL(mfd_cell_enable); |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 40 | |
Andres Salomon | f77289a | 2011-03-03 09:51:58 -0800 | [diff] [blame] | 41 | int mfd_cell_disable(struct platform_device *pdev) |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 42 | { |
| 43 | const struct mfd_cell *cell = mfd_get_cell(pdev); |
| 44 | int err = 0; |
| 45 | |
| 46 | /* only disable if no other clients are using it */ |
| 47 | if (atomic_dec_return(cell->usage_count) == 0) |
| 48 | err = cell->disable(pdev); |
| 49 | |
| 50 | /* if the disable hook failed, increment to allow retries */ |
| 51 | if (err) |
| 52 | atomic_inc(cell->usage_count); |
| 53 | |
| 54 | /* sanity check; did someone call disable too many times? */ |
| 55 | WARN_ON(atomic_read(cell->usage_count) < 0); |
| 56 | |
| 57 | return err; |
| 58 | } |
Andres Salomon | f77289a | 2011-03-03 09:51:58 -0800 | [diff] [blame] | 59 | EXPORT_SYMBOL(mfd_cell_disable); |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 60 | |
Samuel Ortiz | e710d7d | 2011-04-08 00:43:01 +0200 | [diff] [blame] | 61 | static int mfd_platform_add_cell(struct platform_device *pdev, |
| 62 | const struct mfd_cell *cell) |
| 63 | { |
| 64 | if (!cell) |
| 65 | return 0; |
| 66 | |
| 67 | pdev->mfd_cell = kmemdup(cell, sizeof(*cell), GFP_KERNEL); |
| 68 | if (!pdev->mfd_cell) |
| 69 | return -ENOMEM; |
| 70 | |
| 71 | return 0; |
| 72 | } |
| 73 | |
Dmitry Baryshkov | 424f525 | 2008-07-29 01:30:26 +0200 | [diff] [blame] | 74 | static int mfd_add_device(struct device *parent, int id, |
Ben Dooks | 7f71ac9 | 2008-07-28 18:29:09 +0200 | [diff] [blame] | 75 | const struct mfd_cell *cell, |
| 76 | struct resource *mem_base, |
Mark Brown | 0848c94 | 2012-09-11 15:16:36 +0800 | [diff] [blame^] | 77 | int irq_base, struct irq_domain *domain) |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 78 | { |
Ian Molton | a87903f | 2008-07-25 22:59:29 +0100 | [diff] [blame] | 79 | struct resource *res; |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 80 | struct platform_device *pdev; |
Lee Jones | c94bb23 | 2012-06-29 19:01:03 +0200 | [diff] [blame] | 81 | struct device_node *np = NULL; |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 82 | int ret = -ENOMEM; |
| 83 | int r; |
| 84 | |
Mark Brown | 3bed6e4 | 2009-07-27 14:45:51 +0100 | [diff] [blame] | 85 | pdev = platform_device_alloc(cell->name, id + cell->id); |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 86 | if (!pdev) |
| 87 | goto fail_alloc; |
| 88 | |
Ian Molton | a87903f | 2008-07-25 22:59:29 +0100 | [diff] [blame] | 89 | res = kzalloc(sizeof(*res) * cell->num_resources, GFP_KERNEL); |
| 90 | if (!res) |
| 91 | goto fail_device; |
| 92 | |
Dmitry Baryshkov | 424f525 | 2008-07-29 01:30:26 +0200 | [diff] [blame] | 93 | pdev->dev.parent = parent; |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 94 | |
Lee Jones | c94bb23 | 2012-06-29 19:01:03 +0200 | [diff] [blame] | 95 | if (parent->of_node && cell->of_compatible) { |
| 96 | for_each_child_of_node(parent->of_node, np) { |
| 97 | if (of_device_is_compatible(np, cell->of_compatible)) { |
| 98 | pdev->dev.of_node = np; |
Lee Jones | c94bb23 | 2012-06-29 19:01:03 +0200 | [diff] [blame] | 99 | break; |
| 100 | } |
| 101 | } |
| 102 | } |
| 103 | |
Samuel Ortiz | eb89560 | 2011-04-06 16:52:52 +0200 | [diff] [blame] | 104 | if (cell->pdata_size) { |
| 105 | ret = platform_device_add_data(pdev, |
| 106 | cell->platform_data, cell->pdata_size); |
| 107 | if (ret) |
| 108 | goto fail_res; |
| 109 | } |
| 110 | |
Samuel Ortiz | e710d7d | 2011-04-08 00:43:01 +0200 | [diff] [blame] | 111 | ret = mfd_platform_add_cell(pdev, cell); |
Andres Salomon | fe891a0 | 2011-02-17 19:07:09 -0800 | [diff] [blame] | 112 | if (ret) |
| 113 | goto fail_res; |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 114 | |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 115 | for (r = 0; r < cell->num_resources; r++) { |
| 116 | res[r].name = cell->resources[r].name; |
| 117 | res[r].flags = cell->resources[r].flags; |
| 118 | |
| 119 | /* Find out base to use */ |
Samuel Ortiz | f03cfcb | 2010-03-26 01:09:04 +0100 | [diff] [blame] | 120 | if ((cell->resources[r].flags & IORESOURCE_MEM) && mem_base) { |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 121 | res[r].parent = mem_base; |
| 122 | res[r].start = mem_base->start + |
| 123 | cell->resources[r].start; |
| 124 | res[r].end = mem_base->start + |
| 125 | cell->resources[r].end; |
| 126 | } else if (cell->resources[r].flags & IORESOURCE_IRQ) { |
Lee Jones | c94bb23 | 2012-06-29 19:01:03 +0200 | [diff] [blame] | 127 | if (domain) { |
| 128 | /* Unable to create mappings for IRQ ranges. */ |
| 129 | WARN_ON(cell->resources[r].start != |
| 130 | cell->resources[r].end); |
| 131 | res[r].start = res[r].end = irq_create_mapping( |
| 132 | domain, cell->resources[r].start); |
| 133 | } else { |
| 134 | res[r].start = irq_base + |
| 135 | cell->resources[r].start; |
| 136 | res[r].end = irq_base + |
| 137 | cell->resources[r].end; |
| 138 | } |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 139 | } else { |
| 140 | res[r].parent = cell->resources[r].parent; |
| 141 | res[r].start = cell->resources[r].start; |
| 142 | res[r].end = cell->resources[r].end; |
| 143 | } |
Samuel Ortiz | 91feded | 2010-02-19 11:07:59 +0100 | [diff] [blame] | 144 | |
Daniel Drake | 5f2545f | 2010-09-30 21:55:36 +0100 | [diff] [blame] | 145 | if (!cell->ignore_resource_conflicts) { |
Jean Delvare | 855cc45 | 2012-02-18 17:54:23 +0100 | [diff] [blame] | 146 | ret = acpi_check_resource_conflict(&res[r]); |
Daniel Drake | 5f2545f | 2010-09-30 21:55:36 +0100 | [diff] [blame] | 147 | if (ret) |
| 148 | goto fail_res; |
| 149 | } |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 150 | } |
| 151 | |
Axel Lin | 8af5fe3 | 2010-05-31 17:30:55 +0800 | [diff] [blame] | 152 | ret = platform_device_add_resources(pdev, res, cell->num_resources); |
| 153 | if (ret) |
| 154 | goto fail_res; |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 155 | |
| 156 | ret = platform_device_add(pdev); |
| 157 | if (ret) |
Ian Molton | a87903f | 2008-07-25 22:59:29 +0100 | [diff] [blame] | 158 | goto fail_res; |
| 159 | |
Mark Brown | 4c90aa9 | 2010-11-26 17:19:34 +0000 | [diff] [blame] | 160 | if (cell->pm_runtime_no_callbacks) |
| 161 | pm_runtime_no_callbacks(&pdev->dev); |
| 162 | |
Ian Molton | a87903f | 2008-07-25 22:59:29 +0100 | [diff] [blame] | 163 | kfree(res); |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 164 | |
| 165 | return 0; |
| 166 | |
Ian Molton | a87903f | 2008-07-25 22:59:29 +0100 | [diff] [blame] | 167 | fail_res: |
| 168 | kfree(res); |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 169 | fail_device: |
| 170 | platform_device_put(pdev); |
| 171 | fail_alloc: |
| 172 | return ret; |
| 173 | } |
| 174 | |
Dmitry Baryshkov | 424f525 | 2008-07-29 01:30:26 +0200 | [diff] [blame] | 175 | int mfd_add_devices(struct device *parent, int id, |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 176 | struct mfd_cell *cells, int n_devs, |
Ben Dooks | 7f71ac9 | 2008-07-28 18:29:09 +0200 | [diff] [blame] | 177 | struct resource *mem_base, |
Mark Brown | 0848c94 | 2012-09-11 15:16:36 +0800 | [diff] [blame^] | 178 | int irq_base, struct irq_domain *domain) |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 179 | { |
| 180 | int i; |
| 181 | int ret = 0; |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 182 | atomic_t *cnts; |
| 183 | |
| 184 | /* initialize reference counting for all cells */ |
Axel Lin | d1b5c5e | 2012-02-12 17:43:22 +0800 | [diff] [blame] | 185 | cnts = kcalloc(n_devs, sizeof(*cnts), GFP_KERNEL); |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 186 | if (!cnts) |
| 187 | return -ENOMEM; |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 188 | |
| 189 | for (i = 0; i < n_devs; i++) { |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 190 | atomic_set(&cnts[i], 0); |
| 191 | cells[i].usage_count = &cnts[i]; |
Mark Brown | 0848c94 | 2012-09-11 15:16:36 +0800 | [diff] [blame^] | 192 | ret = mfd_add_device(parent, id, cells + i, mem_base, |
| 193 | irq_base, domain); |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 194 | if (ret) |
| 195 | break; |
| 196 | } |
| 197 | |
| 198 | if (ret) |
| 199 | mfd_remove_devices(parent); |
| 200 | |
| 201 | return ret; |
| 202 | } |
| 203 | EXPORT_SYMBOL(mfd_add_devices); |
| 204 | |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 205 | static int mfd_remove_devices_fn(struct device *dev, void *c) |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 206 | { |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 207 | struct platform_device *pdev = to_platform_device(dev); |
| 208 | const struct mfd_cell *cell = mfd_get_cell(pdev); |
| 209 | atomic_t **usage_count = c; |
| 210 | |
| 211 | /* find the base address of usage_count pointers (for freeing) */ |
| 212 | if (!*usage_count || (cell->usage_count < *usage_count)) |
| 213 | *usage_count = cell->usage_count; |
| 214 | |
| 215 | platform_device_unregister(pdev); |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 216 | return 0; |
| 217 | } |
| 218 | |
Dmitry Baryshkov | 424f525 | 2008-07-29 01:30:26 +0200 | [diff] [blame] | 219 | void mfd_remove_devices(struct device *parent) |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 220 | { |
Andres Salomon | 1e29af6 | 2011-02-17 19:07:34 -0800 | [diff] [blame] | 221 | atomic_t *cnts = NULL; |
| 222 | |
| 223 | device_for_each_child(parent, &cnts, mfd_remove_devices_fn); |
| 224 | kfree(cnts); |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 225 | } |
| 226 | EXPORT_SYMBOL(mfd_remove_devices); |
| 227 | |
Andres Salomon | fa1df69 | 2011-03-21 19:19:35 -0700 | [diff] [blame] | 228 | int mfd_clone_cell(const char *cell, const char **clones, size_t n_clones) |
Andres Salomon | a9bbba9 | 2011-02-17 19:07:35 -0800 | [diff] [blame] | 229 | { |
| 230 | struct mfd_cell cell_entry; |
| 231 | struct device *dev; |
| 232 | struct platform_device *pdev; |
Andres Salomon | fa1df69 | 2011-03-21 19:19:35 -0700 | [diff] [blame] | 233 | int i; |
Andres Salomon | a9bbba9 | 2011-02-17 19:07:35 -0800 | [diff] [blame] | 234 | |
| 235 | /* fetch the parent cell's device (should already be registered!) */ |
| 236 | dev = bus_find_device_by_name(&platform_bus_type, NULL, cell); |
| 237 | if (!dev) { |
| 238 | printk(KERN_ERR "failed to find device for cell %s\n", cell); |
| 239 | return -ENODEV; |
| 240 | } |
| 241 | pdev = to_platform_device(dev); |
| 242 | memcpy(&cell_entry, mfd_get_cell(pdev), sizeof(cell_entry)); |
| 243 | |
| 244 | WARN_ON(!cell_entry.enable); |
| 245 | |
Andres Salomon | fa1df69 | 2011-03-21 19:19:35 -0700 | [diff] [blame] | 246 | for (i = 0; i < n_clones; i++) { |
| 247 | cell_entry.name = clones[i]; |
| 248 | /* don't give up if a single call fails; just report error */ |
Mark Brown | 0848c94 | 2012-09-11 15:16:36 +0800 | [diff] [blame^] | 249 | if (mfd_add_device(pdev->dev.parent, -1, &cell_entry, NULL, 0, |
| 250 | NULL)) |
Andres Salomon | fa1df69 | 2011-03-21 19:19:35 -0700 | [diff] [blame] | 251 | dev_err(dev, "failed to create platform device '%s'\n", |
| 252 | clones[i]); |
| 253 | } |
| 254 | |
| 255 | return 0; |
Andres Salomon | a9bbba9 | 2011-02-17 19:07:35 -0800 | [diff] [blame] | 256 | } |
Andres Salomon | fa1df69 | 2011-03-21 19:19:35 -0700 | [diff] [blame] | 257 | EXPORT_SYMBOL(mfd_clone_cell); |
Andres Salomon | a9bbba9 | 2011-02-17 19:07:35 -0800 | [diff] [blame] | 258 | |
Dmitry Baryshkov | aa613de | 2008-06-27 10:37:19 +0100 | [diff] [blame] | 259 | MODULE_LICENSE("GPL"); |
| 260 | MODULE_AUTHOR("Ian Molton, Dmitry Baryshkov"); |