Stephen Boyd | 06ce396 | 2013-01-02 15:03:14 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2010-2013, The Linux Foundation. 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> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 15 | #include <linux/firmware.h> |
| 16 | #include <linux/io.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 17 | #include <linux/elf.h> |
| 18 | #include <linux/mutex.h> |
| 19 | #include <linux/memblock.h> |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 20 | #include <linux/slab.h> |
Stephen Boyd | 80bde03 | 2012-03-16 00:14:42 -0700 | [diff] [blame] | 21 | #include <linux/suspend.h> |
| 22 | #include <linux/rwsem.h> |
Stephen Boyd | 20ad810 | 2011-10-09 21:28:01 -0700 | [diff] [blame] | 23 | #include <linux/sysfs.h> |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 24 | #include <linux/workqueue.h> |
| 25 | #include <linux/jiffies.h> |
| 26 | #include <linux/wakelock.h> |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 27 | #include <linux/err.h> |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 28 | #include <linux/msm_ion.h> |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 29 | #include <linux/list.h> |
| 30 | #include <linux/list_sort.h> |
Stephen Boyd | b455f32 | 2012-11-27 19:00:01 -0800 | [diff] [blame] | 31 | #include <linux/idr.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 32 | |
| 33 | #include <asm/uaccess.h> |
| 34 | #include <asm/setup.h> |
Stephen Boyd | b455f32 | 2012-11-27 19:00:01 -0800 | [diff] [blame] | 35 | #include <asm-generic/io-64-nonatomic-lo-hi.h> |
| 36 | |
| 37 | #include <mach/msm_iomap.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 38 | |
| 39 | #include "peripheral-loader.h" |
Stephen Boyd | 1066777 | 2012-11-28 16:45:35 -0800 | [diff] [blame] | 40 | #include "ramdump.h" |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 41 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 42 | #define pil_err(desc, fmt, ...) \ |
| 43 | dev_err(desc->dev, "%s: " fmt, desc->name, ##__VA_ARGS__) |
| 44 | #define pil_info(desc, fmt, ...) \ |
| 45 | dev_info(desc->dev, "%s: " fmt, desc->name, ##__VA_ARGS__) |
| 46 | |
Stephen Boyd | b455f32 | 2012-11-27 19:00:01 -0800 | [diff] [blame] | 47 | #define PIL_IMAGE_INFO_BASE (MSM_IMEM_BASE + 0x94c) |
| 48 | |
Matt Wagantall | 0aafa35 | 2012-05-14 16:40:41 -0700 | [diff] [blame] | 49 | /** |
| 50 | * proxy_timeout - Override for proxy vote timeouts |
| 51 | * -1: Use driver-specified timeout |
| 52 | * 0: Hold proxy votes until shutdown |
| 53 | * >0: Specify a custom timeout in ms |
| 54 | */ |
| 55 | static int proxy_timeout_ms = -1; |
| 56 | module_param(proxy_timeout_ms, int, S_IRUGO | S_IWUSR); |
| 57 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 58 | /** |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 59 | * struct pil_mdt - Representation of <name>.mdt file in memory |
| 60 | * @hdr: ELF32 header |
| 61 | * @phdr: ELF32 program headers |
| 62 | */ |
| 63 | struct pil_mdt { |
| 64 | struct elf32_hdr hdr; |
| 65 | struct elf32_phdr phdr[]; |
| 66 | }; |
| 67 | |
| 68 | /** |
| 69 | * struct pil_seg - memory map representing one segment |
| 70 | * @next: points to next seg mentor NULL if last segment |
| 71 | * @paddr: start address of segment |
| 72 | * @sz: size of segment |
| 73 | * @filesz: size of segment on disk |
| 74 | * @num: segment number |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 75 | * @relocated: true if segment is relocated, false otherwise |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 76 | * |
| 77 | * Loosely based on an elf program header. Contains all necessary information |
| 78 | * to load and initialize a segment of the image in memory. |
| 79 | */ |
| 80 | struct pil_seg { |
| 81 | phys_addr_t paddr; |
| 82 | unsigned long sz; |
| 83 | unsigned long filesz; |
| 84 | int num; |
| 85 | struct list_head list; |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 86 | bool relocated; |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 87 | }; |
| 88 | |
| 89 | /** |
Stephen Boyd | b455f32 | 2012-11-27 19:00:01 -0800 | [diff] [blame] | 90 | * struct pil_image_info - information in IMEM about image and where it is loaded |
| 91 | * @name: name of image (may or may not be NULL terminated) |
| 92 | * @start: indicates physical address where image starts (little endian) |
| 93 | * @size: size of image (little endian) |
| 94 | */ |
| 95 | struct pil_image_info { |
| 96 | char name[8]; |
| 97 | __le64 start; |
| 98 | __le32 size; |
| 99 | } __attribute__((__packed__)); |
| 100 | |
| 101 | /** |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 102 | * struct pil_priv - Private state for a pil_desc |
| 103 | * @proxy: work item used to run the proxy unvoting routine |
| 104 | * @wlock: wakelock to prevent suspend during pil_boot |
| 105 | * @wname: name of @wlock |
| 106 | * @desc: pointer to pil_desc this is private data for |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 107 | * @seg: list of segments sorted by physical address |
Stephen Boyd | 3030c25 | 2012-08-08 17:24:05 -0700 | [diff] [blame] | 108 | * @entry_addr: physical address where processor starts booting at |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 109 | * @base_addr: smallest start address among all segments that are relocatable |
Stephen Boyd | 379e733 | 2012-08-08 18:04:21 -0700 | [diff] [blame] | 110 | * @region_start: address where relocatable region starts or lowest address |
| 111 | * for non-relocatable images |
| 112 | * @region_end: address where relocatable region ends or highest address for |
| 113 | * non-relocatable images |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 114 | * @region: region allocated for relocatable images |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 115 | * |
| 116 | * This struct contains data for a pil_desc that should not be exposed outside |
| 117 | * of this file. This structure points to the descriptor and the descriptor |
| 118 | * points to this structure so that PIL drivers can't access the private |
| 119 | * data of a descriptor but this file can access both. |
| 120 | */ |
| 121 | struct pil_priv { |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 122 | struct delayed_work proxy; |
| 123 | struct wake_lock wlock; |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 124 | char wname[32]; |
| 125 | struct pil_desc *desc; |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 126 | struct list_head segs; |
Stephen Boyd | 3030c25 | 2012-08-08 17:24:05 -0700 | [diff] [blame] | 127 | phys_addr_t entry_addr; |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 128 | phys_addr_t base_addr; |
Stephen Boyd | 379e733 | 2012-08-08 18:04:21 -0700 | [diff] [blame] | 129 | phys_addr_t region_start; |
| 130 | phys_addr_t region_end; |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 131 | struct ion_handle *region; |
Stephen Boyd | b455f32 | 2012-11-27 19:00:01 -0800 | [diff] [blame] | 132 | struct pil_image_info __iomem *info; |
| 133 | int id; |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 134 | }; |
| 135 | |
Stephen Boyd | 1066777 | 2012-11-28 16:45:35 -0800 | [diff] [blame] | 136 | /** |
| 137 | * pil_do_ramdump() - Ramdump an image |
| 138 | * @desc: descriptor from pil_desc_init() |
| 139 | * @ramdump_dev: ramdump device returned from create_ramdump_device() |
| 140 | * |
| 141 | * Calls the ramdump API with a list of segments generated from the addresses |
| 142 | * that the descriptor corresponds to. |
| 143 | */ |
| 144 | int pil_do_ramdump(struct pil_desc *desc, void *ramdump_dev) |
| 145 | { |
| 146 | struct pil_priv *priv = desc->priv; |
| 147 | struct pil_seg *seg; |
| 148 | int count = 0, ret; |
| 149 | struct ramdump_segment *ramdump_segs, *s; |
| 150 | |
| 151 | list_for_each_entry(seg, &priv->segs, list) |
| 152 | count++; |
| 153 | |
| 154 | ramdump_segs = kmalloc_array(count, sizeof(*ramdump_segs), GFP_KERNEL); |
| 155 | if (!ramdump_segs) |
| 156 | return -ENOMEM; |
| 157 | |
| 158 | s = ramdump_segs; |
| 159 | list_for_each_entry(seg, &priv->segs, list) { |
| 160 | s->address = seg->paddr; |
| 161 | s->size = seg->sz; |
| 162 | s++; |
| 163 | } |
| 164 | |
| 165 | ret = do_elf_ramdump(ramdump_dev, ramdump_segs, count); |
| 166 | kfree(ramdump_segs); |
| 167 | |
| 168 | return ret; |
| 169 | } |
| 170 | EXPORT_SYMBOL(pil_do_ramdump); |
| 171 | |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 172 | static struct ion_client *ion; |
| 173 | |
Stephen Boyd | 3030c25 | 2012-08-08 17:24:05 -0700 | [diff] [blame] | 174 | /** |
| 175 | * pil_get_entry_addr() - Retrieve the entry address of a peripheral image |
| 176 | * @desc: descriptor from pil_desc_init() |
| 177 | * |
| 178 | * Returns the physical address where the image boots at or 0 if unknown. |
| 179 | */ |
| 180 | phys_addr_t pil_get_entry_addr(struct pil_desc *desc) |
| 181 | { |
| 182 | return desc->priv ? desc->priv->entry_addr : 0; |
| 183 | } |
| 184 | EXPORT_SYMBOL(pil_get_entry_addr); |
| 185 | |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 186 | static void pil_proxy_work(struct work_struct *work) |
| 187 | { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 188 | struct delayed_work *delayed = to_delayed_work(work); |
| 189 | struct pil_priv *priv = container_of(delayed, struct pil_priv, proxy); |
| 190 | struct pil_desc *desc = priv->desc; |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 191 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 192 | desc->ops->proxy_unvote(desc); |
| 193 | wake_unlock(&priv->wlock); |
| 194 | module_put(desc->owner); |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 197 | static int pil_proxy_vote(struct pil_desc *desc) |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 198 | { |
Stephen Boyd | 0a56314 | 2012-07-02 13:33:31 -0700 | [diff] [blame] | 199 | int ret = 0; |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 200 | struct pil_priv *priv = desc->priv; |
Stephen Boyd | 0a56314 | 2012-07-02 13:33:31 -0700 | [diff] [blame] | 201 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 202 | if (desc->ops->proxy_vote) { |
| 203 | wake_lock(&priv->wlock); |
| 204 | ret = desc->ops->proxy_vote(desc); |
Stephen Boyd | 0a56314 | 2012-07-02 13:33:31 -0700 | [diff] [blame] | 205 | if (ret) |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 206 | wake_unlock(&priv->wlock); |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 207 | } |
Stephen Boyd | 0a56314 | 2012-07-02 13:33:31 -0700 | [diff] [blame] | 208 | return ret; |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 209 | } |
| 210 | |
Seemanta Dutta | 78f4319 | 2013-03-04 18:29:43 -0800 | [diff] [blame] | 211 | static void pil_proxy_unvote(struct pil_desc *desc, int immediate) |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 212 | { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 213 | struct pil_priv *priv = desc->priv; |
Seemanta Dutta | 78f4319 | 2013-03-04 18:29:43 -0800 | [diff] [blame] | 214 | unsigned long timeout; |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 215 | |
Seemanta Dutta | 78f4319 | 2013-03-04 18:29:43 -0800 | [diff] [blame] | 216 | if (proxy_timeout_ms == 0 && !immediate) |
| 217 | return; |
| 218 | else if (proxy_timeout_ms > 0) |
Matt Wagantall | 0aafa35 | 2012-05-14 16:40:41 -0700 | [diff] [blame] | 219 | timeout = proxy_timeout_ms; |
Seemanta Dutta | 78f4319 | 2013-03-04 18:29:43 -0800 | [diff] [blame] | 220 | else |
| 221 | timeout = desc->proxy_timeout; |
Matt Wagantall | 0aafa35 | 2012-05-14 16:40:41 -0700 | [diff] [blame] | 222 | |
Seemanta Dutta | 78f4319 | 2013-03-04 18:29:43 -0800 | [diff] [blame] | 223 | if (desc->ops->proxy_unvote) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 224 | if (WARN_ON(!try_module_get(desc->owner))) |
| 225 | return; |
Seemanta Dutta | 78f4319 | 2013-03-04 18:29:43 -0800 | [diff] [blame] | 226 | |
| 227 | if (immediate) |
| 228 | timeout = 0; |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 229 | schedule_delayed_work(&priv->proxy, msecs_to_jiffies(timeout)); |
| 230 | } |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 231 | } |
| 232 | |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 233 | static bool segment_is_relocatable(const struct elf32_phdr *p) |
| 234 | { |
| 235 | return !!(p->p_flags & BIT(27)); |
| 236 | } |
| 237 | |
| 238 | static phys_addr_t pil_reloc(const struct pil_priv *priv, phys_addr_t addr) |
| 239 | { |
| 240 | return addr - priv->base_addr + priv->region_start; |
| 241 | } |
| 242 | |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 243 | static struct pil_seg *pil_init_seg(const struct pil_desc *desc, |
| 244 | const struct elf32_phdr *phdr, int num) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 245 | { |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 246 | bool reloc = segment_is_relocatable(phdr); |
| 247 | const struct pil_priv *priv = desc->priv; |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 248 | struct pil_seg *seg; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 249 | |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 250 | if (!reloc && memblock_overlaps_memory(phdr->p_paddr, phdr->p_memsz)) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 251 | pil_err(desc, "kernel memory would be overwritten [%#08lx, %#08lx)\n", |
Stephen Boyd | f79af53 | 2012-05-14 18:57:26 -0700 | [diff] [blame] | 252 | (unsigned long)phdr->p_paddr, |
| 253 | (unsigned long)(phdr->p_paddr + phdr->p_memsz)); |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 254 | return ERR_PTR(-EPERM); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 255 | } |
| 256 | |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 257 | seg = kmalloc(sizeof(*seg), GFP_KERNEL); |
| 258 | if (!seg) |
| 259 | return ERR_PTR(-ENOMEM); |
| 260 | seg->num = num; |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 261 | seg->paddr = reloc ? pil_reloc(priv, phdr->p_paddr) : phdr->p_paddr; |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 262 | seg->filesz = phdr->p_filesz; |
| 263 | seg->sz = phdr->p_memsz; |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 264 | seg->relocated = reloc; |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 265 | INIT_LIST_HEAD(&seg->list); |
| 266 | |
| 267 | return seg; |
| 268 | } |
| 269 | |
| 270 | #define segment_is_hash(flag) (((flag) & (0x7 << 24)) == (0x2 << 24)) |
| 271 | |
| 272 | static int segment_is_loadable(const struct elf32_phdr *p) |
| 273 | { |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 274 | return (p->p_type == PT_LOAD) && !segment_is_hash(p->p_flags) && |
| 275 | p->p_memsz; |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 276 | } |
| 277 | |
Stephen Boyd | 3030c25 | 2012-08-08 17:24:05 -0700 | [diff] [blame] | 278 | static void pil_dump_segs(const struct pil_priv *priv) |
| 279 | { |
| 280 | struct pil_seg *seg; |
| 281 | |
| 282 | list_for_each_entry(seg, &priv->segs, list) { |
| 283 | pil_info(priv->desc, "%d: %#08zx %#08lx\n", seg->num, |
| 284 | seg->paddr, seg->paddr + seg->sz); |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | /* |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 289 | * Ensure the entry address lies within the image limits and if the image is |
| 290 | * relocatable ensure it lies within a relocatable segment. |
Stephen Boyd | 3030c25 | 2012-08-08 17:24:05 -0700 | [diff] [blame] | 291 | */ |
| 292 | static int pil_init_entry_addr(struct pil_priv *priv, const struct pil_mdt *mdt) |
| 293 | { |
| 294 | struct pil_seg *seg; |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 295 | phys_addr_t entry = mdt->hdr.e_entry; |
| 296 | bool image_relocated = priv->region; |
Stephen Boyd | 3030c25 | 2012-08-08 17:24:05 -0700 | [diff] [blame] | 297 | |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 298 | if (image_relocated) |
| 299 | entry = pil_reloc(priv, entry); |
| 300 | priv->entry_addr = entry; |
Stephen Boyd | 3030c25 | 2012-08-08 17:24:05 -0700 | [diff] [blame] | 301 | |
| 302 | if (priv->desc->flags & PIL_SKIP_ENTRY_CHECK) |
| 303 | return 0; |
| 304 | |
| 305 | list_for_each_entry(seg, &priv->segs, list) { |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 306 | if (entry >= seg->paddr && entry < seg->paddr + seg->sz) { |
| 307 | if (!image_relocated) |
| 308 | return 0; |
| 309 | else if (seg->relocated) |
| 310 | return 0; |
| 311 | } |
Stephen Boyd | 3030c25 | 2012-08-08 17:24:05 -0700 | [diff] [blame] | 312 | } |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 313 | pil_err(priv->desc, "entry address %08zx not within range\n", entry); |
Stephen Boyd | 3030c25 | 2012-08-08 17:24:05 -0700 | [diff] [blame] | 314 | pil_dump_segs(priv); |
| 315 | return -EADDRNOTAVAIL; |
| 316 | } |
| 317 | |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 318 | static int pil_alloc_region(struct pil_priv *priv, phys_addr_t min_addr, |
| 319 | phys_addr_t max_addr, size_t align) |
| 320 | { |
| 321 | struct ion_handle *region; |
| 322 | int ret; |
| 323 | unsigned int mask; |
Stephen Boyd | 6385e31 | 2012-12-12 11:17:04 -0800 | [diff] [blame] | 324 | size_t size = max_addr - min_addr; |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 325 | |
| 326 | if (!ion) { |
| 327 | WARN_ON_ONCE("No ION client, can't support relocation\n"); |
| 328 | return -ENOMEM; |
| 329 | } |
| 330 | |
| 331 | /* Force alignment due to linker scripts not getting it right */ |
| 332 | if (align > SZ_1M) { |
| 333 | mask = ION_HEAP(ION_PIL2_HEAP_ID); |
| 334 | align = SZ_4M; |
| 335 | } else { |
| 336 | mask = ION_HEAP(ION_PIL1_HEAP_ID); |
| 337 | align = SZ_1M; |
| 338 | } |
| 339 | |
| 340 | region = ion_alloc(ion, size, align, mask, 0); |
| 341 | if (IS_ERR(region)) { |
| 342 | pil_err(priv->desc, "Failed to allocate relocatable region\n"); |
| 343 | return PTR_ERR(region); |
| 344 | } |
| 345 | |
| 346 | ret = ion_phys(ion, region, (ion_phys_addr_t *)&priv->region_start, |
| 347 | &size); |
| 348 | if (ret) { |
| 349 | ion_free(ion, region); |
| 350 | return ret; |
| 351 | } |
| 352 | |
| 353 | priv->region = region; |
| 354 | priv->region_end = priv->region_start + size; |
| 355 | priv->base_addr = min_addr; |
| 356 | |
| 357 | return 0; |
| 358 | } |
| 359 | |
Stephen Boyd | 379e733 | 2012-08-08 18:04:21 -0700 | [diff] [blame] | 360 | static int pil_setup_region(struct pil_priv *priv, const struct pil_mdt *mdt) |
| 361 | { |
| 362 | const struct elf32_phdr *phdr; |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 363 | phys_addr_t min_addr_r, min_addr_n, max_addr_r, max_addr_n, start, end; |
| 364 | size_t align = 0; |
| 365 | int i, ret = 0; |
| 366 | bool relocatable = false; |
Stephen Boyd | 379e733 | 2012-08-08 18:04:21 -0700 | [diff] [blame] | 367 | |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 368 | min_addr_n = min_addr_r = (phys_addr_t)ULLONG_MAX; |
| 369 | max_addr_n = max_addr_r = 0; |
Stephen Boyd | 379e733 | 2012-08-08 18:04:21 -0700 | [diff] [blame] | 370 | |
| 371 | /* Find the image limits */ |
| 372 | for (i = 0; i < mdt->hdr.e_phnum; i++) { |
| 373 | phdr = &mdt->phdr[i]; |
| 374 | if (!segment_is_loadable(phdr)) |
| 375 | continue; |
| 376 | |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 377 | start = phdr->p_paddr; |
| 378 | end = start + phdr->p_memsz; |
| 379 | |
| 380 | if (segment_is_relocatable(phdr)) { |
| 381 | min_addr_r = min(min_addr_r, start); |
| 382 | max_addr_r = max(max_addr_r, end); |
| 383 | /* |
| 384 | * Lowest relocatable segment dictates alignment of |
| 385 | * relocatable region |
| 386 | */ |
| 387 | if (min_addr_r == start) |
| 388 | align = phdr->p_align; |
| 389 | relocatable = true; |
| 390 | } else { |
| 391 | min_addr_n = min(min_addr_n, start); |
| 392 | max_addr_n = max(max_addr_n, end); |
| 393 | } |
| 394 | |
Stephen Boyd | 379e733 | 2012-08-08 18:04:21 -0700 | [diff] [blame] | 395 | } |
| 396 | |
Stephen Boyd | 6385e31 | 2012-12-12 11:17:04 -0800 | [diff] [blame] | 397 | /* |
| 398 | * Align the max address to the next 4K boundary to satisfy iommus and |
| 399 | * XPUs that operate on 4K chunks. |
| 400 | */ |
| 401 | max_addr_n = ALIGN(max_addr_n, SZ_4K); |
| 402 | max_addr_r = ALIGN(max_addr_r, SZ_4K); |
| 403 | |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 404 | if (relocatable) { |
| 405 | ret = pil_alloc_region(priv, min_addr_r, max_addr_r, align); |
| 406 | } else { |
| 407 | priv->region_start = min_addr_n; |
| 408 | priv->region_end = max_addr_n; |
| 409 | priv->base_addr = min_addr_n; |
| 410 | } |
Stephen Boyd | 379e733 | 2012-08-08 18:04:21 -0700 | [diff] [blame] | 411 | |
Stephen Boyd | b455f32 | 2012-11-27 19:00:01 -0800 | [diff] [blame] | 412 | writeq(priv->region_start, &priv->info->start); |
| 413 | writel_relaxed(priv->region_end - priv->region_start, |
| 414 | &priv->info->size); |
| 415 | |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 416 | return ret; |
Stephen Boyd | 379e733 | 2012-08-08 18:04:21 -0700 | [diff] [blame] | 417 | } |
| 418 | |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 419 | static int pil_cmp_seg(void *priv, struct list_head *a, struct list_head *b) |
| 420 | { |
| 421 | struct pil_seg *seg_a = list_entry(a, struct pil_seg, list); |
| 422 | struct pil_seg *seg_b = list_entry(b, struct pil_seg, list); |
| 423 | |
| 424 | return seg_a->paddr - seg_b->paddr; |
| 425 | } |
| 426 | |
| 427 | static int pil_init_mmap(struct pil_desc *desc, const struct pil_mdt *mdt) |
| 428 | { |
Stephen Boyd | 3030c25 | 2012-08-08 17:24:05 -0700 | [diff] [blame] | 429 | struct pil_priv *priv = desc->priv; |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 430 | const struct elf32_phdr *phdr; |
| 431 | struct pil_seg *seg; |
Stephen Boyd | 379e733 | 2012-08-08 18:04:21 -0700 | [diff] [blame] | 432 | int i, ret; |
| 433 | |
| 434 | ret = pil_setup_region(priv, mdt); |
| 435 | if (ret) |
| 436 | return ret; |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 437 | |
| 438 | for (i = 0; i < mdt->hdr.e_phnum; i++) { |
| 439 | phdr = &mdt->phdr[i]; |
| 440 | if (!segment_is_loadable(phdr)) |
| 441 | continue; |
| 442 | |
| 443 | seg = pil_init_seg(desc, phdr, i); |
| 444 | if (IS_ERR(seg)) |
| 445 | return PTR_ERR(seg); |
| 446 | |
| 447 | list_add_tail(&seg->list, &priv->segs); |
| 448 | } |
| 449 | list_sort(NULL, &priv->segs, pil_cmp_seg); |
| 450 | |
Stephen Boyd | 3030c25 | 2012-08-08 17:24:05 -0700 | [diff] [blame] | 451 | return pil_init_entry_addr(priv, mdt); |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | static void pil_release_mmap(struct pil_desc *desc) |
| 455 | { |
| 456 | struct pil_priv *priv = desc->priv; |
| 457 | struct pil_seg *p, *tmp; |
| 458 | |
Stephen Boyd | b455f32 | 2012-11-27 19:00:01 -0800 | [diff] [blame] | 459 | writeq(0, &priv->info->start); |
| 460 | writel_relaxed(0, &priv->info->size); |
| 461 | |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 462 | if (priv->region) |
| 463 | ion_free(ion, priv->region); |
Stephen Boyd | 3e29f10 | 2012-11-28 18:55:25 -0800 | [diff] [blame] | 464 | priv->region = NULL; |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 465 | list_for_each_entry_safe(p, tmp, &priv->segs, list) { |
| 466 | list_del(&p->list); |
| 467 | kfree(p); |
| 468 | } |
| 469 | } |
| 470 | |
| 471 | #define IOMAP_SIZE SZ_4M |
| 472 | |
| 473 | static int pil_load_seg(struct pil_desc *desc, struct pil_seg *seg) |
| 474 | { |
| 475 | int ret = 0, count, paddr; |
| 476 | char fw_name[30]; |
| 477 | const struct firmware *fw = NULL; |
| 478 | const u8 *data; |
| 479 | int num = seg->num; |
| 480 | |
| 481 | if (seg->filesz) { |
Stephen Boyd | 3f4da32 | 2011-08-30 01:03:23 -0700 | [diff] [blame] | 482 | snprintf(fw_name, ARRAY_SIZE(fw_name), "%s.b%02d", |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 483 | desc->name, num); |
| 484 | ret = request_firmware(&fw, fw_name, desc->dev); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 485 | if (ret) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 486 | pil_err(desc, "Failed to locate blob %s\n", fw_name); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 487 | return ret; |
| 488 | } |
| 489 | |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 490 | if (fw->size != seg->filesz) { |
| 491 | pil_err(desc, "Blob size %u doesn't match %lu\n", |
| 492 | fw->size, seg->filesz); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 493 | ret = -EPERM; |
| 494 | goto release_fw; |
| 495 | } |
| 496 | } |
| 497 | |
| 498 | /* Load the segment into memory */ |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 499 | count = seg->filesz; |
| 500 | paddr = seg->paddr; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 501 | data = fw ? fw->data : NULL; |
| 502 | while (count > 0) { |
| 503 | int size; |
| 504 | u8 __iomem *buf; |
| 505 | |
| 506 | size = min_t(size_t, IOMAP_SIZE, count); |
| 507 | buf = ioremap(paddr, size); |
| 508 | if (!buf) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 509 | pil_err(desc, "Failed to map memory\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 510 | ret = -ENOMEM; |
| 511 | goto release_fw; |
| 512 | } |
| 513 | memcpy(buf, data, size); |
| 514 | iounmap(buf); |
| 515 | |
| 516 | count -= size; |
| 517 | paddr += size; |
| 518 | data += size; |
| 519 | } |
| 520 | |
| 521 | /* Zero out trailing memory */ |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 522 | count = seg->sz - seg->filesz; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 523 | while (count > 0) { |
| 524 | int size; |
| 525 | u8 __iomem *buf; |
| 526 | |
| 527 | size = min_t(size_t, IOMAP_SIZE, count); |
| 528 | buf = ioremap(paddr, size); |
| 529 | if (!buf) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 530 | pil_err(desc, "Failed to map memory\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 531 | ret = -ENOMEM; |
| 532 | goto release_fw; |
| 533 | } |
| 534 | memset(buf, 0, size); |
| 535 | iounmap(buf); |
| 536 | |
| 537 | count -= size; |
| 538 | paddr += size; |
| 539 | } |
| 540 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 541 | if (desc->ops->verify_blob) { |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 542 | ret = desc->ops->verify_blob(desc, seg->paddr, seg->sz); |
Stephen Boyd | b0f1f80 | 2012-02-03 11:28:08 -0800 | [diff] [blame] | 543 | if (ret) |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 544 | pil_err(desc, "Blob%u failed verification\n", num); |
Stephen Boyd | b0f1f80 | 2012-02-03 11:28:08 -0800 | [diff] [blame] | 545 | } |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 546 | |
| 547 | release_fw: |
| 548 | release_firmware(fw); |
| 549 | return ret; |
| 550 | } |
| 551 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 552 | /* Synchronize request_firmware() with suspend */ |
Stephen Boyd | 80bde03 | 2012-03-16 00:14:42 -0700 | [diff] [blame] | 553 | static DECLARE_RWSEM(pil_pm_rwsem); |
| 554 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 555 | /** |
| 556 | * pil_boot() - Load a peripheral image into memory and boot it |
| 557 | * @desc: descriptor from pil_desc_init() |
| 558 | * |
| 559 | * Returns 0 on success or -ERROR on failure. |
| 560 | */ |
| 561 | int pil_boot(struct pil_desc *desc) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 562 | { |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 563 | int ret; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 564 | char fw_name[30]; |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 565 | const struct pil_mdt *mdt; |
| 566 | const struct elf32_hdr *ehdr; |
| 567 | struct pil_seg *seg; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 568 | const struct firmware *fw; |
Stephen Boyd | 379e733 | 2012-08-08 18:04:21 -0700 | [diff] [blame] | 569 | struct pil_priv *priv = desc->priv; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 570 | |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 571 | /* Reinitialize for new image */ |
| 572 | pil_release_mmap(desc); |
| 573 | |
Stephen Boyd | 80bde03 | 2012-03-16 00:14:42 -0700 | [diff] [blame] | 574 | down_read(&pil_pm_rwsem); |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 575 | snprintf(fw_name, sizeof(fw_name), "%s.mdt", desc->name); |
| 576 | ret = request_firmware(&fw, fw_name, desc->dev); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 577 | if (ret) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 578 | pil_err(desc, "Failed to locate %s\n", fw_name); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 579 | goto out; |
| 580 | } |
| 581 | |
| 582 | if (fw->size < sizeof(*ehdr)) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 583 | pil_err(desc, "Not big enough to be an elf header\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 584 | ret = -EIO; |
| 585 | goto release_fw; |
| 586 | } |
| 587 | |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 588 | mdt = (const struct pil_mdt *)fw->data; |
| 589 | ehdr = &mdt->hdr; |
| 590 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 591 | if (memcmp(ehdr->e_ident, ELFMAG, SELFMAG)) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 592 | pil_err(desc, "Not an elf header\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 593 | ret = -EIO; |
| 594 | goto release_fw; |
| 595 | } |
| 596 | |
| 597 | if (ehdr->e_phnum == 0) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 598 | pil_err(desc, "No loadable segments\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 599 | ret = -EIO; |
| 600 | goto release_fw; |
| 601 | } |
Stephen Boyd | 96a9f90 | 2011-07-18 18:43:00 -0700 | [diff] [blame] | 602 | if (sizeof(struct elf32_phdr) * ehdr->e_phnum + |
| 603 | sizeof(struct elf32_hdr) > fw->size) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 604 | pil_err(desc, "Program headers not within mdt\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 605 | ret = -EIO; |
| 606 | goto release_fw; |
| 607 | } |
| 608 | |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 609 | ret = pil_init_mmap(desc, mdt); |
| 610 | if (ret) |
| 611 | goto release_fw; |
| 612 | |
Stephen Boyd | 3030c25 | 2012-08-08 17:24:05 -0700 | [diff] [blame] | 613 | if (desc->ops->init_image) |
| 614 | ret = desc->ops->init_image(desc, fw->data, fw->size); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 615 | if (ret) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 616 | pil_err(desc, "Invalid firmware metadata\n"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 617 | goto release_fw; |
| 618 | } |
| 619 | |
Stephen Boyd | 379e733 | 2012-08-08 18:04:21 -0700 | [diff] [blame] | 620 | if (desc->ops->mem_setup) |
| 621 | ret = desc->ops->mem_setup(desc, priv->region_start, |
| 622 | priv->region_end - priv->region_start); |
| 623 | if (ret) { |
| 624 | pil_err(desc, "Memory setup error\n"); |
| 625 | goto release_fw; |
| 626 | } |
| 627 | |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 628 | list_for_each_entry(seg, &desc->priv->segs, list) { |
| 629 | ret = pil_load_seg(desc, seg); |
| 630 | if (ret) |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 631 | goto release_fw; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 632 | } |
| 633 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 634 | ret = pil_proxy_vote(desc); |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 635 | if (ret) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 636 | pil_err(desc, "Failed to proxy vote\n"); |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 637 | goto release_fw; |
| 638 | } |
| 639 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 640 | ret = desc->ops->auth_and_reset(desc); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 641 | if (ret) { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 642 | pil_err(desc, "Failed to bring out of reset\n"); |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 643 | goto err_boot; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 644 | } |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 645 | pil_info(desc, "Brought out of reset\n"); |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 646 | err_boot: |
Seemanta Dutta | 78f4319 | 2013-03-04 18:29:43 -0800 | [diff] [blame] | 647 | pil_proxy_unvote(desc, ret); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 648 | release_fw: |
| 649 | release_firmware(fw); |
| 650 | out: |
Stephen Boyd | 80bde03 | 2012-03-16 00:14:42 -0700 | [diff] [blame] | 651 | up_read(&pil_pm_rwsem); |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 652 | if (ret) |
| 653 | pil_release_mmap(desc); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 654 | return ret; |
| 655 | } |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 656 | EXPORT_SYMBOL(pil_boot); |
| 657 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 658 | /** |
| 659 | * pil_shutdown() - Shutdown a peripheral |
| 660 | * @desc: descriptor from pil_desc_init() |
| 661 | */ |
| 662 | void pil_shutdown(struct pil_desc *desc) |
Stephen Boyd | 36974ec | 2012-03-22 01:30:59 -0700 | [diff] [blame] | 663 | { |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 664 | struct pil_priv *priv = desc->priv; |
Matt Wagantall | 19b4859 | 2013-02-27 10:18:41 -0800 | [diff] [blame] | 665 | if (desc->ops->shutdown) |
| 666 | desc->ops->shutdown(desc); |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 667 | if (proxy_timeout_ms == 0 && desc->ops->proxy_unvote) |
| 668 | desc->ops->proxy_unvote(desc); |
Matt Wagantall | 0aafa35 | 2012-05-14 16:40:41 -0700 | [diff] [blame] | 669 | else |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 670 | flush_delayed_work(&priv->proxy); |
| 671 | } |
| 672 | EXPORT_SYMBOL(pil_shutdown); |
Matt Wagantall | 0aafa35 | 2012-05-14 16:40:41 -0700 | [diff] [blame] | 673 | |
Stephen Boyd | b455f32 | 2012-11-27 19:00:01 -0800 | [diff] [blame] | 674 | static DEFINE_IDA(pil_ida); |
| 675 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 676 | /** |
| 677 | * pil_desc_init() - Initialize a pil descriptor |
| 678 | * @desc: descriptor to intialize |
| 679 | * |
| 680 | * Initialize a pil descriptor for use by other pil functions. This function |
| 681 | * must be called before calling pil_boot() or pil_shutdown(). |
| 682 | * |
| 683 | * Returns 0 for success and -ERROR on failure. |
| 684 | */ |
| 685 | int pil_desc_init(struct pil_desc *desc) |
| 686 | { |
| 687 | struct pil_priv *priv; |
Stephen Boyd | b455f32 | 2012-11-27 19:00:01 -0800 | [diff] [blame] | 688 | int id; |
| 689 | void __iomem *addr; |
Stephen Boyd | 06ce396 | 2013-01-02 15:03:14 -0800 | [diff] [blame] | 690 | char buf[sizeof(priv->info->name)]; |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 691 | |
| 692 | /* Ignore users who don't make any sense */ |
| 693 | WARN(desc->ops->proxy_unvote && !desc->proxy_timeout, |
| 694 | "A proxy timeout of 0 was specified.\n"); |
| 695 | if (WARN(desc->ops->proxy_unvote && !desc->ops->proxy_vote, |
| 696 | "Invalid proxy voting. Ignoring\n")) |
| 697 | ((struct pil_reset_ops *)desc->ops)->proxy_unvote = NULL; |
| 698 | |
| 699 | priv = kzalloc(sizeof(*priv), GFP_KERNEL); |
| 700 | if (!priv) |
| 701 | return -ENOMEM; |
| 702 | desc->priv = priv; |
| 703 | priv->desc = desc; |
| 704 | |
Stephen Boyd | b455f32 | 2012-11-27 19:00:01 -0800 | [diff] [blame] | 705 | priv->id = id = ida_simple_get(&pil_ida, 0, 10, GFP_KERNEL); |
| 706 | if (id < 0) { |
| 707 | kfree(priv); |
| 708 | return id; |
| 709 | } |
| 710 | addr = PIL_IMAGE_INFO_BASE + sizeof(struct pil_image_info) * id; |
| 711 | priv->info = (struct pil_image_info __iomem *)addr; |
| 712 | |
Stephen Boyd | 06ce396 | 2013-01-02 15:03:14 -0800 | [diff] [blame] | 713 | strncpy(buf, desc->name, sizeof(buf)); |
| 714 | __iowrite32_copy(priv->info->name, buf, sizeof(buf) / 4); |
Stephen Boyd | b455f32 | 2012-11-27 19:00:01 -0800 | [diff] [blame] | 715 | |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 716 | snprintf(priv->wname, sizeof(priv->wname), "pil-%s", desc->name); |
| 717 | wake_lock_init(&priv->wlock, WAKE_LOCK_SUSPEND, priv->wname); |
| 718 | INIT_DELAYED_WORK(&priv->proxy, pil_proxy_work); |
Stephen Boyd | edff6cf | 2012-07-11 19:39:27 -0700 | [diff] [blame] | 719 | INIT_LIST_HEAD(&priv->segs); |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 720 | |
| 721 | return 0; |
| 722 | } |
| 723 | EXPORT_SYMBOL(pil_desc_init); |
| 724 | |
| 725 | /** |
| 726 | * pil_desc_release() - Release a pil descriptor |
| 727 | * @desc: descriptor to free |
| 728 | */ |
| 729 | void pil_desc_release(struct pil_desc *desc) |
| 730 | { |
| 731 | struct pil_priv *priv = desc->priv; |
| 732 | |
| 733 | if (priv) { |
Stephen Boyd | b455f32 | 2012-11-27 19:00:01 -0800 | [diff] [blame] | 734 | ida_simple_remove(&pil_ida, priv->id); |
Stephen Boyd | 163f1c3 | 2012-06-29 13:20:20 -0700 | [diff] [blame] | 735 | flush_delayed_work(&priv->proxy); |
| 736 | wake_lock_destroy(&priv->wlock); |
| 737 | } |
| 738 | desc->priv = NULL; |
| 739 | kfree(priv); |
| 740 | } |
| 741 | EXPORT_SYMBOL(pil_desc_release); |
| 742 | |
Stephen Boyd | 80bde03 | 2012-03-16 00:14:42 -0700 | [diff] [blame] | 743 | static int pil_pm_notify(struct notifier_block *b, unsigned long event, void *p) |
| 744 | { |
| 745 | switch (event) { |
| 746 | case PM_SUSPEND_PREPARE: |
| 747 | down_write(&pil_pm_rwsem); |
| 748 | break; |
| 749 | case PM_POST_SUSPEND: |
| 750 | up_write(&pil_pm_rwsem); |
| 751 | break; |
| 752 | } |
| 753 | return NOTIFY_DONE; |
| 754 | } |
| 755 | |
| 756 | static struct notifier_block pil_pm_notifier = { |
| 757 | .notifier_call = pil_pm_notify, |
| 758 | }; |
| 759 | |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame] | 760 | static int __init msm_pil_init(void) |
| 761 | { |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 762 | ion = msm_ion_client_create(UINT_MAX, "pil"); |
| 763 | if (IS_ERR(ion)) /* Can't support relocatable images */ |
| 764 | ion = NULL; |
Stephen Boyd | 0414812 | 2012-06-29 18:18:12 -0700 | [diff] [blame] | 765 | return register_pm_notifier(&pil_pm_notifier); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame] | 766 | } |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 767 | device_initcall(msm_pil_init); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame] | 768 | |
| 769 | static void __exit msm_pil_exit(void) |
| 770 | { |
Stephen Boyd | 80bde03 | 2012-03-16 00:14:42 -0700 | [diff] [blame] | 771 | unregister_pm_notifier(&pil_pm_notifier); |
Stephen Boyd | 2db158c | 2012-07-26 21:47:17 -0700 | [diff] [blame] | 772 | if (ion) |
| 773 | ion_client_destroy(ion); |
Stephen Boyd | 6d67d25 | 2011-09-27 11:50:05 -0700 | [diff] [blame] | 774 | } |
| 775 | module_exit(msm_pil_exit); |
| 776 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 777 | MODULE_LICENSE("GPL v2"); |
| 778 | MODULE_DESCRIPTION("Load peripheral images and bring peripherals out of reset"); |