Matt Wagantall | 39f90cb | 2012-02-08 14:09:11 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2010-2012, Code Aurora Forum. All rights reserved. |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/module.h> |
| 14 | #include <linux/string.h> |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 15 | #include <linux/device.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 16 | #include <linux/firmware.h> |
| 17 | #include <linux/io.h> |
| 18 | #include <linux/debugfs.h> |
| 19 | #include <linux/elf.h> |
| 20 | #include <linux/mutex.h> |
| 21 | #include <linux/memblock.h> |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 22 | #include <linux/slab.h> |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 23 | #include <linux/atomic.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 24 | |
| 25 | #include <asm/uaccess.h> |
| 26 | #include <asm/setup.h> |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 27 | #include <mach/peripheral-loader.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 28 | |
| 29 | #include "peripheral-loader.h" |
| 30 | |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 31 | struct pil_device { |
| 32 | struct pil_desc *desc; |
| 33 | int count; |
| 34 | struct mutex lock; |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 35 | struct device dev; |
| 36 | struct module *owner; |
| 37 | #ifdef CONFIG_DEBUG_FS |
| 38 | struct dentry *dentry; |
| 39 | #endif |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 40 | }; |
| 41 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 42 | #define to_pil_device(d) container_of(d, struct pil_device, dev) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 43 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 44 | struct bus_type pil_bus_type = { |
| 45 | .name = "pil", |
| 46 | }; |
| 47 | |
| 48 | static int __find_peripheral(struct device *dev, void *data) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 49 | { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 50 | struct pil_device *pdev = to_pil_device(dev); |
| 51 | return !strncmp(pdev->desc->name, data, INT_MAX); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 52 | } |
| 53 | |
| 54 | static struct pil_device *find_peripheral(const char *str) |
| 55 | { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 56 | struct device *dev; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 57 | |
| 58 | if (!str) |
| 59 | return NULL; |
| 60 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 61 | dev = bus_find_device(&pil_bus_type, NULL, (void *)str, |
| 62 | __find_peripheral); |
| 63 | return dev ? to_pil_device(dev) : NULL; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | #define IOMAP_SIZE SZ_4M |
| 67 | |
| 68 | static int load_segment(const struct elf32_phdr *phdr, unsigned num, |
| 69 | struct pil_device *pil) |
| 70 | { |
| 71 | int ret, count, paddr; |
| 72 | char fw_name[30]; |
| 73 | const struct firmware *fw = NULL; |
| 74 | const u8 *data; |
| 75 | |
| 76 | if (memblock_is_region_memory(phdr->p_paddr, phdr->p_memsz)) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 77 | dev_err(&pil->dev, "Kernel memory would be overwritten"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 78 | return -EPERM; |
| 79 | } |
| 80 | |
| 81 | if (phdr->p_filesz) { |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 82 | snprintf(fw_name, ARRAY_SIZE(fw_name), "%s.b%02d", |
| 83 | pil->desc->name, num); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 84 | ret = request_firmware(&fw, fw_name, &pil->dev); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 85 | if (ret) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 86 | dev_err(&pil->dev, "Failed to locate blob %s\n", |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 87 | fw_name); |
| 88 | return ret; |
| 89 | } |
| 90 | |
| 91 | if (fw->size != phdr->p_filesz) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 92 | dev_err(&pil->dev, "Blob size %u doesn't match %u\n", |
| 93 | fw->size, phdr->p_filesz); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 94 | ret = -EPERM; |
| 95 | goto release_fw; |
| 96 | } |
| 97 | } |
| 98 | |
| 99 | /* Load the segment into memory */ |
| 100 | count = phdr->p_filesz; |
| 101 | paddr = phdr->p_paddr; |
| 102 | data = fw ? fw->data : NULL; |
| 103 | while (count > 0) { |
| 104 | int size; |
| 105 | u8 __iomem *buf; |
| 106 | |
| 107 | size = min_t(size_t, IOMAP_SIZE, count); |
| 108 | buf = ioremap(paddr, size); |
| 109 | if (!buf) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 110 | dev_err(&pil->dev, "Failed to map memory\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 111 | ret = -ENOMEM; |
| 112 | goto release_fw; |
| 113 | } |
| 114 | memcpy(buf, data, size); |
| 115 | iounmap(buf); |
| 116 | |
| 117 | count -= size; |
| 118 | paddr += size; |
| 119 | data += size; |
| 120 | } |
| 121 | |
| 122 | /* Zero out trailing memory */ |
| 123 | count = phdr->p_memsz - phdr->p_filesz; |
| 124 | while (count > 0) { |
| 125 | int size; |
| 126 | u8 __iomem *buf; |
| 127 | |
| 128 | size = min_t(size_t, IOMAP_SIZE, count); |
| 129 | buf = ioremap(paddr, size); |
| 130 | if (!buf) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 131 | dev_err(&pil->dev, "Failed to map memory\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 132 | ret = -ENOMEM; |
| 133 | goto release_fw; |
| 134 | } |
| 135 | memset(buf, 0, size); |
| 136 | iounmap(buf); |
| 137 | |
| 138 | count -= size; |
| 139 | paddr += size; |
| 140 | } |
| 141 | |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 142 | ret = pil->desc->ops->verify_blob(pil->desc, phdr->p_paddr, |
| 143 | phdr->p_memsz); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 144 | if (ret) |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 145 | dev_err(&pil->dev, "Blob %u failed verification\n", num); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 146 | |
| 147 | release_fw: |
| 148 | release_firmware(fw); |
| 149 | return ret; |
| 150 | } |
| 151 | |
| 152 | #define segment_is_hash(flag) (((flag) & (0x7 << 24)) == (0x2 << 24)) |
| 153 | |
| 154 | static int segment_is_loadable(const struct elf32_phdr *p) |
| 155 | { |
| 156 | return (p->p_type & PT_LOAD) && !segment_is_hash(p->p_flags); |
| 157 | } |
| 158 | |
| 159 | static int load_image(struct pil_device *pil) |
| 160 | { |
| 161 | int i, ret; |
| 162 | char fw_name[30]; |
| 163 | struct elf32_hdr *ehdr; |
| 164 | const struct elf32_phdr *phdr; |
| 165 | const struct firmware *fw; |
| 166 | |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 167 | snprintf(fw_name, sizeof(fw_name), "%s.mdt", pil->desc->name); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 168 | ret = request_firmware(&fw, fw_name, &pil->dev); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 169 | if (ret) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 170 | dev_err(&pil->dev, "Failed to locate %s\n", fw_name); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 171 | goto out; |
| 172 | } |
| 173 | |
| 174 | if (fw->size < sizeof(*ehdr)) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 175 | dev_err(&pil->dev, "Not big enough to be an elf header\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 176 | ret = -EIO; |
| 177 | goto release_fw; |
| 178 | } |
| 179 | |
| 180 | ehdr = (struct elf32_hdr *)fw->data; |
| 181 | if (memcmp(ehdr->e_ident, ELFMAG, SELFMAG)) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 182 | dev_err(&pil->dev, "Not an elf header\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 183 | ret = -EIO; |
| 184 | goto release_fw; |
| 185 | } |
| 186 | |
| 187 | if (ehdr->e_phnum == 0) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 188 | dev_err(&pil->dev, "No loadable segments\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 189 | ret = -EIO; |
| 190 | goto release_fw; |
| 191 | } |
Stephen Boyd | 96a9f90 | 2011-07-18 18:43:00 -0700 | [diff] [blame] | 192 | if (sizeof(struct elf32_phdr) * ehdr->e_phnum + |
| 193 | sizeof(struct elf32_hdr) > fw->size) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 194 | dev_err(&pil->dev, "Program headers not within mdt\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 195 | ret = -EIO; |
| 196 | goto release_fw; |
| 197 | } |
| 198 | |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 199 | ret = pil->desc->ops->init_image(pil->desc, fw->data, fw->size); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 200 | if (ret) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 201 | dev_err(&pil->dev, "Invalid firmware metadata\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 202 | goto release_fw; |
| 203 | } |
| 204 | |
Stephen Boyd | c9753e1 | 2011-07-13 17:58:48 -0700 | [diff] [blame] | 205 | phdr = (const struct elf32_phdr *)(fw->data + sizeof(struct elf32_hdr)); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 206 | for (i = 0; i < ehdr->e_phnum; i++, phdr++) { |
| 207 | if (!segment_is_loadable(phdr)) |
| 208 | continue; |
| 209 | |
| 210 | ret = load_segment(phdr, i, pil); |
| 211 | if (ret) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 212 | dev_err(&pil->dev, "Failed to load segment %d\n", |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 213 | i); |
| 214 | goto release_fw; |
| 215 | } |
| 216 | } |
| 217 | |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 218 | ret = pil->desc->ops->auth_and_reset(pil->desc); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 219 | if (ret) { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 220 | dev_err(&pil->dev, "Failed to bring out of reset\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 221 | goto release_fw; |
| 222 | } |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 223 | dev_info(&pil->dev, "brought %s out of reset\n", pil->desc->name); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 224 | |
| 225 | release_fw: |
| 226 | release_firmware(fw); |
| 227 | out: |
| 228 | return ret; |
| 229 | } |
| 230 | |
| 231 | /** |
| 232 | * pil_get() - Load a peripheral into memory and take it out of reset |
| 233 | * @name: pointer to a string containing the name of the peripheral to load |
| 234 | * |
| 235 | * This function returns a pointer if it succeeds. If an error occurs an |
| 236 | * ERR_PTR is returned. |
| 237 | * |
| 238 | * If PIL is not enabled in the kernel, the value %NULL will be returned. |
| 239 | */ |
| 240 | void *pil_get(const char *name) |
| 241 | { |
| 242 | int ret; |
| 243 | struct pil_device *pil; |
| 244 | struct pil_device *pil_d; |
| 245 | void *retval; |
| 246 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 247 | if (!name) |
| 248 | return NULL; |
| 249 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 250 | pil = retval = find_peripheral(name); |
| 251 | if (!pil) |
| 252 | return ERR_PTR(-ENODEV); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 253 | if (!try_module_get(pil->owner)) { |
| 254 | put_device(&pil->dev); |
| 255 | return ERR_PTR(-ENODEV); |
| 256 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 257 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 258 | pil_d = pil_get(pil->desc->depends_on); |
| 259 | if (IS_ERR(pil_d)) { |
| 260 | retval = pil_d; |
| 261 | goto err_depends; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 262 | } |
| 263 | |
| 264 | mutex_lock(&pil->lock); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 265 | if (!pil->count++) { |
| 266 | ret = load_image(pil); |
| 267 | if (ret) { |
| 268 | retval = ERR_PTR(ret); |
| 269 | goto err_load; |
| 270 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 271 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 272 | mutex_unlock(&pil->lock); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 273 | out: |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 274 | return retval; |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 275 | err_load: |
| 276 | mutex_unlock(&pil->lock); |
| 277 | pil_put(pil_d); |
| 278 | err_depends: |
| 279 | put_device(&pil->dev); |
| 280 | module_put(pil->owner); |
| 281 | goto out; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 282 | } |
| 283 | EXPORT_SYMBOL(pil_get); |
| 284 | |
| 285 | /** |
| 286 | * pil_put() - Inform PIL the peripheral no longer needs to be active |
| 287 | * @peripheral_handle: pointer from a previous call to pil_get() |
| 288 | * |
| 289 | * This doesn't imply that a peripheral is shutdown or in reset since another |
| 290 | * driver could be using the peripheral. |
| 291 | */ |
| 292 | void pil_put(void *peripheral_handle) |
| 293 | { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 294 | struct pil_device *pil_d, *pil = peripheral_handle; |
| 295 | |
| 296 | if (IS_ERR_OR_NULL(pil)) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 297 | return; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 298 | |
| 299 | mutex_lock(&pil->lock); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 300 | if (WARN(!pil->count, "%s: Reference count mismatch\n", __func__)) |
| 301 | goto err_out; |
| 302 | if (!--pil->count) |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 303 | pil->desc->ops->shutdown(pil->desc); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 304 | mutex_unlock(&pil->lock); |
| 305 | |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 306 | pil_d = find_peripheral(pil->desc->depends_on); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 307 | module_put(pil->owner); |
| 308 | if (pil_d) { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 309 | pil_put(pil_d); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 310 | put_device(&pil_d->dev); |
| 311 | } |
| 312 | put_device(&pil->dev); |
| 313 | return; |
| 314 | err_out: |
| 315 | mutex_unlock(&pil->lock); |
| 316 | return; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 317 | } |
| 318 | EXPORT_SYMBOL(pil_put); |
| 319 | |
| 320 | void pil_force_shutdown(const char *name) |
| 321 | { |
| 322 | struct pil_device *pil; |
| 323 | |
| 324 | pil = find_peripheral(name); |
| 325 | if (!pil) |
| 326 | return; |
| 327 | |
| 328 | mutex_lock(&pil->lock); |
| 329 | if (!WARN(!pil->count, "%s: Reference count mismatch\n", __func__)) |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 330 | pil->desc->ops->shutdown(pil->desc); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 331 | mutex_unlock(&pil->lock); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 332 | put_device(&pil->dev); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 333 | } |
| 334 | EXPORT_SYMBOL(pil_force_shutdown); |
| 335 | |
| 336 | int pil_force_boot(const char *name) |
| 337 | { |
| 338 | int ret = -EINVAL; |
| 339 | struct pil_device *pil; |
| 340 | |
| 341 | pil = find_peripheral(name); |
| 342 | if (!pil) |
| 343 | return -EINVAL; |
| 344 | |
| 345 | mutex_lock(&pil->lock); |
| 346 | if (!WARN(!pil->count, "%s: Reference count mismatch\n", __func__)) |
| 347 | ret = load_image(pil); |
| 348 | mutex_unlock(&pil->lock); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 349 | put_device(&pil->dev); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 350 | |
| 351 | return ret; |
| 352 | } |
| 353 | EXPORT_SYMBOL(pil_force_boot); |
| 354 | |
| 355 | #ifdef CONFIG_DEBUG_FS |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 356 | static int msm_pil_debugfs_open(struct inode *inode, struct file *filp) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 357 | { |
| 358 | filp->private_data = inode->i_private; |
| 359 | return 0; |
| 360 | } |
| 361 | |
| 362 | static ssize_t msm_pil_debugfs_read(struct file *filp, char __user *ubuf, |
| 363 | size_t cnt, loff_t *ppos) |
| 364 | { |
| 365 | int r; |
| 366 | char buf[40]; |
| 367 | struct pil_device *pil = filp->private_data; |
| 368 | |
| 369 | mutex_lock(&pil->lock); |
| 370 | r = snprintf(buf, sizeof(buf), "%d\n", pil->count); |
| 371 | mutex_unlock(&pil->lock); |
| 372 | return simple_read_from_buffer(ubuf, cnt, ppos, buf, r); |
| 373 | } |
| 374 | |
| 375 | static ssize_t msm_pil_debugfs_write(struct file *filp, |
| 376 | const char __user *ubuf, size_t cnt, loff_t *ppos) |
| 377 | { |
| 378 | struct pil_device *pil = filp->private_data; |
| 379 | char buf[4]; |
| 380 | |
| 381 | if (cnt > sizeof(buf)) |
| 382 | return -EINVAL; |
| 383 | |
| 384 | if (copy_from_user(&buf, ubuf, cnt)) |
| 385 | return -EFAULT; |
| 386 | |
| 387 | if (!strncmp(buf, "get", 3)) { |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 388 | if (IS_ERR(pil_get(pil->desc->name))) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 389 | return -EIO; |
| 390 | } else if (!strncmp(buf, "put", 3)) |
| 391 | pil_put(pil); |
| 392 | else |
| 393 | return -EINVAL; |
| 394 | |
| 395 | return cnt; |
| 396 | } |
| 397 | |
| 398 | static const struct file_operations msm_pil_debugfs_fops = { |
| 399 | .open = msm_pil_debugfs_open, |
| 400 | .read = msm_pil_debugfs_read, |
| 401 | .write = msm_pil_debugfs_write, |
| 402 | }; |
| 403 | |
| 404 | static struct dentry *pil_base_dir; |
| 405 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 406 | static int __init msm_pil_debugfs_init(void) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 407 | { |
| 408 | pil_base_dir = debugfs_create_dir("pil", NULL); |
| 409 | if (!pil_base_dir) { |
| 410 | pil_base_dir = NULL; |
| 411 | return -ENOMEM; |
| 412 | } |
| 413 | |
| 414 | return 0; |
| 415 | } |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 416 | |
| 417 | static void __exit msm_pil_debugfs_exit(void) |
| 418 | { |
| 419 | debugfs_remove_recursive(pil_base_dir); |
| 420 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 421 | |
| 422 | static int msm_pil_debugfs_add(struct pil_device *pil) |
| 423 | { |
| 424 | if (!pil_base_dir) |
| 425 | return -ENOMEM; |
| 426 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 427 | pil->dentry = debugfs_create_file(pil->desc->name, S_IRUGO | S_IWUSR, |
| 428 | pil_base_dir, pil, &msm_pil_debugfs_fops); |
| 429 | return !pil->dentry ? -ENOMEM : 0; |
| 430 | } |
| 431 | |
| 432 | static void msm_pil_debugfs_remove(struct pil_device *pil) |
| 433 | { |
| 434 | debugfs_remove(pil->dentry); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 435 | } |
| 436 | #else |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 437 | static int __init msm_pil_debugfs_init(void) { return 0; }; |
| 438 | static void __exit msm_pil_debugfs_exit(void) { return 0; }; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 439 | static int msm_pil_debugfs_add(struct pil_device *pil) { return 0; } |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 440 | static void msm_pil_debugfs_remove(struct pil_device *pil) { } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 441 | #endif |
| 442 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 443 | static int __msm_pil_shutdown(struct device *dev, void *data) |
| 444 | { |
| 445 | struct pil_device *pil = to_pil_device(dev); |
| 446 | pil->desc->ops->shutdown(pil->desc); |
| 447 | return 0; |
| 448 | } |
| 449 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 450 | static int msm_pil_shutdown_at_boot(void) |
| 451 | { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 452 | return bus_for_each_dev(&pil_bus_type, NULL, NULL, __msm_pil_shutdown); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 453 | } |
| 454 | late_initcall(msm_pil_shutdown_at_boot); |
| 455 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 456 | static void pil_device_release(struct device *dev) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 457 | { |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 458 | struct pil_device *pil = to_pil_device(dev); |
| 459 | mutex_destroy(&pil->lock); |
| 460 | kfree(pil); |
| 461 | } |
| 462 | |
| 463 | struct pil_device *msm_pil_register(struct pil_desc *desc) |
| 464 | { |
| 465 | int err; |
| 466 | static atomic_t pil_count = ATOMIC_INIT(-1); |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 467 | struct pil_device *pil = kzalloc(sizeof(*pil), GFP_KERNEL); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 468 | |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 469 | if (!pil) |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 470 | return ERR_PTR(-ENOMEM); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 471 | |
| 472 | mutex_init(&pil->lock); |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 473 | pil->desc = desc; |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 474 | pil->owner = desc->owner; |
| 475 | pil->dev.parent = desc->dev; |
| 476 | pil->dev.bus = &pil_bus_type; |
| 477 | pil->dev.release = pil_device_release; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 478 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 479 | dev_set_name(&pil->dev, "pil%d", atomic_inc_return(&pil_count)); |
| 480 | err = device_register(&pil->dev); |
| 481 | if (err) { |
| 482 | put_device(&pil->dev); |
| 483 | mutex_destroy(&pil->lock); |
| 484 | kfree(pil); |
| 485 | return ERR_PTR(err); |
| 486 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 487 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 488 | err = msm_pil_debugfs_add(pil); |
| 489 | if (err) { |
| 490 | device_unregister(&pil->dev); |
| 491 | return ERR_PTR(err); |
| 492 | } |
| 493 | |
| 494 | return pil; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 495 | } |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 496 | EXPORT_SYMBOL(msm_pil_register); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 497 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame^] | 498 | void msm_pil_unregister(struct pil_device *pil) |
| 499 | { |
| 500 | if (IS_ERR_OR_NULL(pil)) |
| 501 | return; |
| 502 | |
| 503 | if (get_device(&pil->dev)) { |
| 504 | mutex_lock(&pil->lock); |
| 505 | WARN_ON(pil->count); |
| 506 | msm_pil_debugfs_remove(pil); |
| 507 | device_unregister(&pil->dev); |
| 508 | mutex_unlock(&pil->lock); |
| 509 | put_device(&pil->dev); |
| 510 | } |
| 511 | } |
| 512 | EXPORT_SYMBOL(msm_pil_unregister); |
| 513 | |
| 514 | static int __init msm_pil_init(void) |
| 515 | { |
| 516 | int ret = msm_pil_debugfs_init(); |
| 517 | if (ret) |
| 518 | return ret; |
| 519 | return bus_register(&pil_bus_type); |
| 520 | } |
| 521 | subsys_initcall(msm_pil_init); |
| 522 | |
| 523 | static void __exit msm_pil_exit(void) |
| 524 | { |
| 525 | bus_unregister(&pil_bus_type); |
| 526 | msm_pil_debugfs_exit(); |
| 527 | } |
| 528 | module_exit(msm_pil_exit); |
| 529 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 530 | MODULE_LICENSE("GPL v2"); |
| 531 | MODULE_DESCRIPTION("Load peripheral images and bring peripherals out of reset"); |