Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Generic on-chip SRAM allocation driver |
| 3 | * |
| 4 | * Copyright (C) 2012 Philipp Zabel, Pengutronix |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version 2 |
| 9 | * of the License, or (at your option) any later version. |
| 10 | * This program is distributed in the hope that it will be useful, |
| 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 13 | * GNU General Public License for more details. |
| 14 | * |
| 15 | * You should have received a copy of the GNU General Public License |
| 16 | * along with this program; if not, write to the Free Software |
| 17 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
| 18 | * MA 02110-1301, USA. |
| 19 | */ |
| 20 | |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 21 | #include <linux/clk.h> |
Alexandre Belloni | 2ae2e28 | 2016-09-22 00:09:38 +0200 | [diff] [blame] | 22 | #include <linux/delay.h> |
Vladimir Zapolskiy | 98ce2d2 | 2015-06-01 15:30:00 +0300 | [diff] [blame] | 23 | #include <linux/genalloc.h> |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 24 | #include <linux/io.h> |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 25 | #include <linux/list_sort.h> |
Vladimir Zapolskiy | 98ce2d2 | 2015-06-01 15:30:00 +0300 | [diff] [blame] | 26 | #include <linux/of_address.h> |
Alexandre Belloni | 2ae2e28 | 2016-09-22 00:09:38 +0200 | [diff] [blame] | 27 | #include <linux/of_device.h> |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 28 | #include <linux/platform_device.h> |
Alexandre Belloni | 2ae2e28 | 2016-09-22 00:09:38 +0200 | [diff] [blame] | 29 | #include <linux/regmap.h> |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 30 | #include <linux/slab.h> |
Alexandre Belloni | 2ae2e28 | 2016-09-22 00:09:38 +0200 | [diff] [blame] | 31 | #include <linux/mfd/syscon.h> |
| 32 | #include <soc/at91/atmel-secumod.h> |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 33 | |
Dave Gerlach | cdd1737 | 2017-01-12 14:52:18 -0600 | [diff] [blame] | 34 | #include "sram.h" |
| 35 | |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 36 | #define SRAM_GRANULARITY 32 |
| 37 | |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 38 | static ssize_t sram_read(struct file *filp, struct kobject *kobj, |
| 39 | struct bin_attribute *attr, |
| 40 | char *buf, loff_t pos, size_t count) |
| 41 | { |
| 42 | struct sram_partition *part; |
| 43 | |
| 44 | part = container_of(attr, struct sram_partition, battr); |
| 45 | |
| 46 | mutex_lock(&part->lock); |
Vladimir Zapolskiy | 525d12f | 2015-10-18 20:57:09 +0300 | [diff] [blame] | 47 | memcpy_fromio(buf, part->base + pos, count); |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 48 | mutex_unlock(&part->lock); |
| 49 | |
| 50 | return count; |
| 51 | } |
| 52 | |
| 53 | static ssize_t sram_write(struct file *filp, struct kobject *kobj, |
| 54 | struct bin_attribute *attr, |
| 55 | char *buf, loff_t pos, size_t count) |
| 56 | { |
| 57 | struct sram_partition *part; |
| 58 | |
| 59 | part = container_of(attr, struct sram_partition, battr); |
| 60 | |
| 61 | mutex_lock(&part->lock); |
Vladimir Zapolskiy | 525d12f | 2015-10-18 20:57:09 +0300 | [diff] [blame] | 62 | memcpy_toio(part->base + pos, buf, count); |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 63 | mutex_unlock(&part->lock); |
| 64 | |
| 65 | return count; |
| 66 | } |
| 67 | |
| 68 | static int sram_add_pool(struct sram_dev *sram, struct sram_reserve *block, |
| 69 | phys_addr_t start, struct sram_partition *part) |
| 70 | { |
| 71 | int ret; |
| 72 | |
| 73 | part->pool = devm_gen_pool_create(sram->dev, ilog2(SRAM_GRANULARITY), |
| 74 | NUMA_NO_NODE, block->label); |
| 75 | if (IS_ERR(part->pool)) |
| 76 | return PTR_ERR(part->pool); |
| 77 | |
| 78 | ret = gen_pool_add_virt(part->pool, (unsigned long)part->base, start, |
| 79 | block->size, NUMA_NO_NODE); |
| 80 | if (ret < 0) { |
| 81 | dev_err(sram->dev, "failed to register subpool: %d\n", ret); |
| 82 | return ret; |
| 83 | } |
| 84 | |
| 85 | return 0; |
| 86 | } |
| 87 | |
| 88 | static int sram_add_export(struct sram_dev *sram, struct sram_reserve *block, |
| 89 | phys_addr_t start, struct sram_partition *part) |
| 90 | { |
| 91 | sysfs_bin_attr_init(&part->battr); |
| 92 | part->battr.attr.name = devm_kasprintf(sram->dev, GFP_KERNEL, |
| 93 | "%llx.sram", |
| 94 | (unsigned long long)start); |
| 95 | if (!part->battr.attr.name) |
| 96 | return -ENOMEM; |
| 97 | |
| 98 | part->battr.attr.mode = S_IRUSR | S_IWUSR; |
| 99 | part->battr.read = sram_read; |
| 100 | part->battr.write = sram_write; |
| 101 | part->battr.size = block->size; |
| 102 | |
| 103 | return device_create_bin_file(sram->dev, &part->battr); |
| 104 | } |
| 105 | |
| 106 | static int sram_add_partition(struct sram_dev *sram, struct sram_reserve *block, |
| 107 | phys_addr_t start) |
| 108 | { |
| 109 | int ret; |
| 110 | struct sram_partition *part = &sram->partition[sram->partitions]; |
| 111 | |
| 112 | mutex_init(&part->lock); |
| 113 | part->base = sram->virt_base + block->start; |
| 114 | |
| 115 | if (block->pool) { |
| 116 | ret = sram_add_pool(sram, block, start, part); |
| 117 | if (ret) |
| 118 | return ret; |
| 119 | } |
| 120 | if (block->export) { |
| 121 | ret = sram_add_export(sram, block, start, part); |
| 122 | if (ret) |
| 123 | return ret; |
| 124 | } |
Dave Gerlach | 37afff0 | 2017-01-12 14:52:20 -0600 | [diff] [blame] | 125 | if (block->protect_exec) { |
| 126 | ret = sram_check_protect_exec(sram, block, part); |
| 127 | if (ret) |
| 128 | return ret; |
| 129 | |
| 130 | ret = sram_add_pool(sram, block, start, part); |
| 131 | if (ret) |
| 132 | return ret; |
| 133 | |
| 134 | sram_add_protect_exec(part); |
| 135 | } |
| 136 | |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 137 | sram->partitions++; |
| 138 | |
| 139 | return 0; |
| 140 | } |
| 141 | |
| 142 | static void sram_free_partitions(struct sram_dev *sram) |
| 143 | { |
| 144 | struct sram_partition *part; |
| 145 | |
| 146 | if (!sram->partitions) |
| 147 | return; |
| 148 | |
| 149 | part = &sram->partition[sram->partitions - 1]; |
| 150 | for (; sram->partitions; sram->partitions--, part--) { |
| 151 | if (part->battr.size) |
| 152 | device_remove_bin_file(sram->dev, &part->battr); |
| 153 | |
| 154 | if (part->pool && |
| 155 | gen_pool_avail(part->pool) < gen_pool_size(part->pool)) |
| 156 | dev_err(sram->dev, "removed pool while SRAM allocated\n"); |
| 157 | } |
| 158 | } |
| 159 | |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 160 | static int sram_reserve_cmp(void *priv, struct list_head *a, |
| 161 | struct list_head *b) |
| 162 | { |
| 163 | struct sram_reserve *ra = list_entry(a, struct sram_reserve, list); |
| 164 | struct sram_reserve *rb = list_entry(b, struct sram_reserve, list); |
| 165 | |
| 166 | return ra->start - rb->start; |
| 167 | } |
| 168 | |
Vladimir Zapolskiy | a0a5be0 | 2015-06-01 15:29:59 +0300 | [diff] [blame] | 169 | static int sram_reserve_regions(struct sram_dev *sram, struct resource *res) |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 170 | { |
Vladimir Zapolskiy | a0a5be0 | 2015-06-01 15:29:59 +0300 | [diff] [blame] | 171 | struct device_node *np = sram->dev->of_node, *child; |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 172 | unsigned long size, cur_start, cur_size; |
| 173 | struct sram_reserve *rblocks, *block; |
| 174 | struct list_head reserve_list; |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 175 | unsigned int nblocks, exports = 0; |
| 176 | const char *label; |
Vladimir Zapolskiy | a0a5be0 | 2015-06-01 15:29:59 +0300 | [diff] [blame] | 177 | int ret = 0; |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 178 | |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 179 | INIT_LIST_HEAD(&reserve_list); |
| 180 | |
Alexander Shiyan | f3cbfa5 | 2013-06-10 18:43:53 +0400 | [diff] [blame] | 181 | size = resource_size(res); |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 182 | |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 183 | /* |
| 184 | * We need an additional block to mark the end of the memory region |
| 185 | * after the reserved blocks from the dt are processed. |
| 186 | */ |
| 187 | nblocks = (np) ? of_get_available_child_count(np) + 1 : 1; |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 188 | rblocks = kcalloc(nblocks, sizeof(*rblocks), GFP_KERNEL); |
Vladimir Zapolskiy | ee895cc | 2015-06-01 15:29:54 +0300 | [diff] [blame] | 189 | if (!rblocks) |
| 190 | return -ENOMEM; |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 191 | |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 192 | block = &rblocks[0]; |
| 193 | for_each_available_child_of_node(np, child) { |
| 194 | struct resource child_res; |
| 195 | |
| 196 | ret = of_address_to_resource(child, 0, &child_res); |
| 197 | if (ret < 0) { |
Vladimir Zapolskiy | 665d82f | 2015-06-01 15:29:58 +0300 | [diff] [blame] | 198 | dev_err(sram->dev, |
Rob Herring | 34d0eb5 | 2017-07-18 16:43:15 -0500 | [diff] [blame] | 199 | "could not get address for node %pOF\n", |
| 200 | child); |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 201 | goto err_chunks; |
| 202 | } |
| 203 | |
| 204 | if (child_res.start < res->start || child_res.end > res->end) { |
Vladimir Zapolskiy | 665d82f | 2015-06-01 15:29:58 +0300 | [diff] [blame] | 205 | dev_err(sram->dev, |
Rob Herring | 34d0eb5 | 2017-07-18 16:43:15 -0500 | [diff] [blame] | 206 | "reserved block %pOF outside the sram area\n", |
| 207 | child); |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 208 | ret = -EINVAL; |
| 209 | goto err_chunks; |
| 210 | } |
| 211 | |
| 212 | block->start = child_res.start - res->start; |
| 213 | block->size = resource_size(&child_res); |
| 214 | list_add_tail(&block->list, &reserve_list); |
| 215 | |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 216 | if (of_find_property(child, "export", NULL)) |
| 217 | block->export = true; |
| 218 | |
| 219 | if (of_find_property(child, "pool", NULL)) |
| 220 | block->pool = true; |
| 221 | |
Dave Gerlach | 37afff0 | 2017-01-12 14:52:20 -0600 | [diff] [blame] | 222 | if (of_find_property(child, "protect-exec", NULL)) |
| 223 | block->protect_exec = true; |
| 224 | |
| 225 | if ((block->export || block->pool || block->protect_exec) && |
| 226 | block->size) { |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 227 | exports++; |
| 228 | |
| 229 | label = NULL; |
| 230 | ret = of_property_read_string(child, "label", &label); |
| 231 | if (ret && ret != -EINVAL) { |
| 232 | dev_err(sram->dev, |
Rob Herring | 34d0eb5 | 2017-07-18 16:43:15 -0500 | [diff] [blame] | 233 | "%pOF has invalid label name\n", |
| 234 | child); |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 235 | goto err_chunks; |
| 236 | } |
| 237 | if (!label) |
| 238 | label = child->name; |
| 239 | |
| 240 | block->label = devm_kstrdup(sram->dev, |
| 241 | label, GFP_KERNEL); |
Pan Bian | ddc5c9a | 2016-12-03 17:29:28 +0800 | [diff] [blame] | 242 | if (!block->label) { |
| 243 | ret = -ENOMEM; |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 244 | goto err_chunks; |
Pan Bian | ddc5c9a | 2016-12-03 17:29:28 +0800 | [diff] [blame] | 245 | } |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 246 | |
| 247 | dev_dbg(sram->dev, "found %sblock '%s' 0x%x-0x%x\n", |
| 248 | block->export ? "exported " : "", block->label, |
| 249 | block->start, block->start + block->size); |
| 250 | } else { |
| 251 | dev_dbg(sram->dev, "found reserved block 0x%x-0x%x\n", |
| 252 | block->start, block->start + block->size); |
| 253 | } |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 254 | |
| 255 | block++; |
| 256 | } |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 257 | child = NULL; |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 258 | |
| 259 | /* the last chunk marks the end of the region */ |
| 260 | rblocks[nblocks - 1].start = size; |
| 261 | rblocks[nblocks - 1].size = 0; |
| 262 | list_add_tail(&rblocks[nblocks - 1].list, &reserve_list); |
| 263 | |
| 264 | list_sort(NULL, &reserve_list, sram_reserve_cmp); |
| 265 | |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 266 | if (exports) { |
Kees Cook | a86854d | 2018-06-12 14:07:58 -0700 | [diff] [blame] | 267 | sram->partition = devm_kcalloc(sram->dev, |
| 268 | exports, sizeof(*sram->partition), |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 269 | GFP_KERNEL); |
| 270 | if (!sram->partition) { |
| 271 | ret = -ENOMEM; |
| 272 | goto err_chunks; |
| 273 | } |
| 274 | } |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 275 | |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 276 | cur_start = 0; |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 277 | list_for_each_entry(block, &reserve_list, list) { |
| 278 | /* can only happen if sections overlap */ |
| 279 | if (block->start < cur_start) { |
Vladimir Zapolskiy | 665d82f | 2015-06-01 15:29:58 +0300 | [diff] [blame] | 280 | dev_err(sram->dev, |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 281 | "block at 0x%x starts after current offset 0x%lx\n", |
| 282 | block->start, cur_start); |
| 283 | ret = -EINVAL; |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 284 | sram_free_partitions(sram); |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 285 | goto err_chunks; |
| 286 | } |
| 287 | |
Dave Gerlach | 37afff0 | 2017-01-12 14:52:20 -0600 | [diff] [blame] | 288 | if ((block->export || block->pool || block->protect_exec) && |
| 289 | block->size) { |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 290 | ret = sram_add_partition(sram, block, |
| 291 | res->start + block->start); |
| 292 | if (ret) { |
| 293 | sram_free_partitions(sram); |
| 294 | goto err_chunks; |
| 295 | } |
| 296 | } |
| 297 | |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 298 | /* current start is in a reserved block, so continue after it */ |
| 299 | if (block->start == cur_start) { |
| 300 | cur_start = block->start + block->size; |
| 301 | continue; |
| 302 | } |
| 303 | |
| 304 | /* |
| 305 | * allocate the space between the current starting |
| 306 | * address and the following reserved block, or the |
| 307 | * end of the region. |
| 308 | */ |
| 309 | cur_size = block->start - cur_start; |
| 310 | |
Vladimir Zapolskiy | 665d82f | 2015-06-01 15:29:58 +0300 | [diff] [blame] | 311 | dev_dbg(sram->dev, "adding chunk 0x%lx-0x%lx\n", |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 312 | cur_start, cur_start + cur_size); |
Vladimir Zapolskiy | 665d82f | 2015-06-01 15:29:58 +0300 | [diff] [blame] | 313 | |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 314 | ret = gen_pool_add_virt(sram->pool, |
Vladimir Zapolskiy | 665d82f | 2015-06-01 15:29:58 +0300 | [diff] [blame] | 315 | (unsigned long)sram->virt_base + cur_start, |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 316 | res->start + cur_start, cur_size, -1); |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 317 | if (ret < 0) { |
| 318 | sram_free_partitions(sram); |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 319 | goto err_chunks; |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 320 | } |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 321 | |
| 322 | /* next allocation after this reserved block */ |
| 323 | cur_start = block->start + block->size; |
| 324 | } |
| 325 | |
Vladimir Zapolskiy | a0a5be0 | 2015-06-01 15:29:59 +0300 | [diff] [blame] | 326 | err_chunks: |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 327 | if (child) |
| 328 | of_node_put(child); |
| 329 | |
Heiko Stübner | 2da1968 | 2014-02-25 12:46:34 +0100 | [diff] [blame] | 330 | kfree(rblocks); |
| 331 | |
Vladimir Zapolskiy | a0a5be0 | 2015-06-01 15:29:59 +0300 | [diff] [blame] | 332 | return ret; |
| 333 | } |
| 334 | |
Alexandre Belloni | 2ae2e28 | 2016-09-22 00:09:38 +0200 | [diff] [blame] | 335 | static int atmel_securam_wait(void) |
| 336 | { |
| 337 | struct regmap *regmap; |
| 338 | u32 val; |
| 339 | |
| 340 | regmap = syscon_regmap_lookup_by_compatible("atmel,sama5d2-secumod"); |
| 341 | if (IS_ERR(regmap)) |
| 342 | return -ENODEV; |
| 343 | |
| 344 | return regmap_read_poll_timeout(regmap, AT91_SECUMOD_RAMRDY, val, |
| 345 | val & AT91_SECUMOD_RAMRDY_READY, |
| 346 | 10000, 500000); |
| 347 | } |
| 348 | |
Alexandre Belloni | 2ae2e28 | 2016-09-22 00:09:38 +0200 | [diff] [blame] | 349 | static const struct of_device_id sram_dt_ids[] = { |
| 350 | { .compatible = "mmio-sram" }, |
| 351 | { .compatible = "atmel,sama5d2-securam", .data = atmel_securam_wait }, |
| 352 | {} |
| 353 | }; |
Alexandre Belloni | 2ae2e28 | 2016-09-22 00:09:38 +0200 | [diff] [blame] | 354 | |
Vladimir Zapolskiy | a0a5be0 | 2015-06-01 15:29:59 +0300 | [diff] [blame] | 355 | static int sram_probe(struct platform_device *pdev) |
| 356 | { |
| 357 | struct sram_dev *sram; |
| 358 | struct resource *res; |
| 359 | size_t size; |
| 360 | int ret; |
Alexandre Belloni | 2ae2e28 | 2016-09-22 00:09:38 +0200 | [diff] [blame] | 361 | int (*init_func)(void); |
Vladimir Zapolskiy | a0a5be0 | 2015-06-01 15:29:59 +0300 | [diff] [blame] | 362 | |
| 363 | sram = devm_kzalloc(&pdev->dev, sizeof(*sram), GFP_KERNEL); |
| 364 | if (!sram) |
| 365 | return -ENOMEM; |
| 366 | |
| 367 | sram->dev = &pdev->dev; |
| 368 | |
| 369 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 370 | if (!res) { |
| 371 | dev_err(sram->dev, "found no memory resource\n"); |
| 372 | return -EINVAL; |
| 373 | } |
| 374 | |
| 375 | size = resource_size(res); |
| 376 | |
| 377 | if (!devm_request_mem_region(sram->dev, res->start, size, pdev->name)) { |
| 378 | dev_err(sram->dev, "could not request region for resource\n"); |
| 379 | return -EBUSY; |
| 380 | } |
| 381 | |
Marcin Wojtas | eb43e02 | 2016-03-14 09:38:56 +0100 | [diff] [blame] | 382 | if (of_property_read_bool(pdev->dev.of_node, "no-memory-wc")) |
| 383 | sram->virt_base = devm_ioremap(sram->dev, res->start, size); |
| 384 | else |
| 385 | sram->virt_base = devm_ioremap_wc(sram->dev, res->start, size); |
Vladimir Zapolskiy | d449d69 | 2016-03-23 04:52:45 +0200 | [diff] [blame] | 386 | if (!sram->virt_base) |
| 387 | return -ENOMEM; |
Vladimir Zapolskiy | a0a5be0 | 2015-06-01 15:29:59 +0300 | [diff] [blame] | 388 | |
Vladimir Zapolskiy | 7385817 | 2015-09-04 15:47:43 -0700 | [diff] [blame] | 389 | sram->pool = devm_gen_pool_create(sram->dev, ilog2(SRAM_GRANULARITY), |
| 390 | NUMA_NO_NODE, NULL); |
| 391 | if (IS_ERR(sram->pool)) |
| 392 | return PTR_ERR(sram->pool); |
Vladimir Zapolskiy | a0a5be0 | 2015-06-01 15:29:59 +0300 | [diff] [blame] | 393 | |
Vladimir Zapolskiy | 665d82f | 2015-06-01 15:29:58 +0300 | [diff] [blame] | 394 | sram->clk = devm_clk_get(sram->dev, NULL); |
Vladimir Zapolskiy | ee895cc | 2015-06-01 15:29:54 +0300 | [diff] [blame] | 395 | if (IS_ERR(sram->clk)) |
| 396 | sram->clk = NULL; |
| 397 | else |
| 398 | clk_prepare_enable(sram->clk); |
| 399 | |
Johan Hovold | d5b9653 | 2018-07-03 12:05:48 +0200 | [diff] [blame] | 400 | ret = sram_reserve_regions(sram, res); |
| 401 | if (ret) |
| 402 | goto err_disable_clk; |
| 403 | |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 404 | platform_set_drvdata(pdev, sram); |
| 405 | |
Alexandre Belloni | 2ae2e28 | 2016-09-22 00:09:38 +0200 | [diff] [blame] | 406 | init_func = of_device_get_match_data(&pdev->dev); |
| 407 | if (init_func) { |
| 408 | ret = init_func(); |
| 409 | if (ret) |
Johan Hovold | d5b9653 | 2018-07-03 12:05:48 +0200 | [diff] [blame] | 410 | goto err_free_partitions; |
Alexandre Belloni | 2ae2e28 | 2016-09-22 00:09:38 +0200 | [diff] [blame] | 411 | } |
| 412 | |
Vladimir Zapolskiy | 665d82f | 2015-06-01 15:29:58 +0300 | [diff] [blame] | 413 | dev_dbg(sram->dev, "SRAM pool: %zu KiB @ 0x%p\n", |
| 414 | gen_pool_size(sram->pool) / 1024, sram->virt_base); |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 415 | |
| 416 | return 0; |
Johan Hovold | f294d00 | 2018-07-03 12:05:47 +0200 | [diff] [blame] | 417 | |
Johan Hovold | d5b9653 | 2018-07-03 12:05:48 +0200 | [diff] [blame] | 418 | err_free_partitions: |
| 419 | sram_free_partitions(sram); |
Johan Hovold | f294d00 | 2018-07-03 12:05:47 +0200 | [diff] [blame] | 420 | err_disable_clk: |
| 421 | if (sram->clk) |
| 422 | clk_disable_unprepare(sram->clk); |
Johan Hovold | f294d00 | 2018-07-03 12:05:47 +0200 | [diff] [blame] | 423 | |
| 424 | return ret; |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 425 | } |
| 426 | |
| 427 | static int sram_remove(struct platform_device *pdev) |
| 428 | { |
| 429 | struct sram_dev *sram = platform_get_drvdata(pdev); |
| 430 | |
Vladimir Zapolskiy | b4c3fcb | 2015-09-21 23:52:46 +0300 | [diff] [blame] | 431 | sram_free_partitions(sram); |
| 432 | |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 433 | if (gen_pool_avail(sram->pool) < gen_pool_size(sram->pool)) |
Vladimir Zapolskiy | 665d82f | 2015-06-01 15:29:58 +0300 | [diff] [blame] | 434 | dev_err(sram->dev, "removed while SRAM allocated\n"); |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 435 | |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 436 | if (sram->clk) |
| 437 | clk_disable_unprepare(sram->clk); |
| 438 | |
| 439 | return 0; |
| 440 | } |
| 441 | |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 442 | static struct platform_driver sram_driver = { |
| 443 | .driver = { |
| 444 | .name = "sram", |
Arnd Bergmann | 2aa488a | 2016-11-22 15:30:54 +0100 | [diff] [blame] | 445 | .of_match_table = sram_dt_ids, |
Philipp Zabel | 4984c6f | 2013-04-29 16:17:12 -0700 | [diff] [blame] | 446 | }, |
| 447 | .probe = sram_probe, |
| 448 | .remove = sram_remove, |
| 449 | }; |
| 450 | |
| 451 | static int __init sram_init(void) |
| 452 | { |
| 453 | return platform_driver_register(&sram_driver); |
| 454 | } |
| 455 | |
| 456 | postcore_initcall(sram_init); |