Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame^] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 2 | /* |
| 3 | * omap_device implementation |
| 4 | * |
Paul Walmsley | 887adea | 2010-07-26 16:34:33 -0600 | [diff] [blame] | 5 | * Copyright (C) 2009-2010 Nokia Corporation |
Paul Walmsley | 4788da2 | 2010-05-18 20:24:05 -0600 | [diff] [blame] | 6 | * Paul Walmsley, Kevin Hilman |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 7 | * |
| 8 | * Developed in collaboration with (alphabetical order): Benoit |
Paul Walmsley | 4788da2 | 2010-05-18 20:24:05 -0600 | [diff] [blame] | 9 | * Cousson, Thara Gopinath, Tony Lindgren, Rajendra Nayak, Vikram |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 10 | * Pandita, Sakari Poussa, Anand Sawant, Santosh Shilimkar, Richard |
| 11 | * Woodruff |
| 12 | * |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 13 | * This code provides a consistent interface for OMAP device drivers |
| 14 | * to control power management and interconnect properties of their |
| 15 | * devices. |
| 16 | * |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 17 | * In the medium- to long-term, this code should be implemented as a |
| 18 | * proper omap_bus/omap_device in Linux, no more platform_data func |
| 19 | * pointers |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 20 | */ |
| 21 | #undef DEBUG |
| 22 | |
| 23 | #include <linux/kernel.h> |
| 24 | #include <linux/platform_device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 25 | #include <linux/slab.h> |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 26 | #include <linux/err.h> |
| 27 | #include <linux/io.h> |
Partha Basak | 4ef7aca | 2010-09-21 19:23:04 +0200 | [diff] [blame] | 28 | #include <linux/clk.h> |
Rajendra Nayak | da0653f | 2011-02-25 15:40:21 -0700 | [diff] [blame] | 29 | #include <linux/clkdev.h> |
Tomeu Vizoso | 989561d | 2016-01-07 16:46:13 +0100 | [diff] [blame] | 30 | #include <linux/pm_domain.h> |
Kevin Hilman | 345f79b | 2011-05-31 16:08:09 -0700 | [diff] [blame] | 31 | #include <linux/pm_runtime.h> |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 32 | #include <linux/of.h> |
Tony Lindgren | d85a2d6 | 2017-10-10 14:23:35 -0700 | [diff] [blame] | 33 | #include <linux/of_address.h> |
| 34 | #include <linux/of_irq.h> |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 35 | #include <linux/notifier.h> |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 36 | |
Tony Lindgren | dad12d1 | 2013-12-06 10:52:58 -0800 | [diff] [blame] | 37 | #include "common.h" |
Tony Lindgren | b76c8b19 | 2013-01-11 11:24:18 -0800 | [diff] [blame] | 38 | #include "soc.h" |
Tony Lindgren | 25c7d49 | 2012-10-02 17:25:48 -0700 | [diff] [blame] | 39 | #include "omap_device.h" |
Tony Lindgren | 2a296c8 | 2012-10-02 17:41:35 -0700 | [diff] [blame] | 40 | #include "omap_hwmod.h" |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 41 | |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 42 | /* Private functions */ |
| 43 | |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 44 | static void _add_clkdev(struct omap_device *od, const char *clk_alias, |
| 45 | const char *clk_name) |
| 46 | { |
| 47 | struct clk *r; |
Russell King | 1ca90bd | 2015-03-02 15:46:03 +0000 | [diff] [blame] | 48 | int rc; |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 49 | |
| 50 | if (!clk_alias || !clk_name) |
| 51 | return; |
| 52 | |
Kevin Hilman | d66b3fe | 2011-07-21 13:58:51 -0700 | [diff] [blame] | 53 | dev_dbg(&od->pdev->dev, "Creating %s -> %s\n", clk_alias, clk_name); |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 54 | |
Kevin Hilman | d66b3fe | 2011-07-21 13:58:51 -0700 | [diff] [blame] | 55 | r = clk_get_sys(dev_name(&od->pdev->dev), clk_alias); |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 56 | if (!IS_ERR(r)) { |
Markus Pargmann | 9a02ae4 | 2014-08-25 16:15:34 -0700 | [diff] [blame] | 57 | dev_dbg(&od->pdev->dev, |
Kevin Hilman | 49882c9 | 2011-07-21 09:58:36 -0700 | [diff] [blame] | 58 | "alias %s already exists\n", clk_alias); |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 59 | clk_put(r); |
| 60 | return; |
| 61 | } |
| 62 | |
Tero Kristo | 59dcfc4 | 2016-06-30 16:14:59 +0300 | [diff] [blame] | 63 | r = clk_get_sys(NULL, clk_name); |
| 64 | |
Tony Lindgren | 1aa8f0c | 2017-05-31 15:51:37 -0700 | [diff] [blame] | 65 | if (IS_ERR(r)) { |
Tero Kristo | 59dcfc4 | 2016-06-30 16:14:59 +0300 | [diff] [blame] | 66 | struct of_phandle_args clkspec; |
| 67 | |
| 68 | clkspec.np = of_find_node_by_name(NULL, clk_name); |
| 69 | |
| 70 | r = of_clk_get_from_provider(&clkspec); |
| 71 | |
| 72 | rc = clk_register_clkdev(r, clk_alias, |
| 73 | dev_name(&od->pdev->dev)); |
| 74 | } else { |
| 75 | rc = clk_add_alias(clk_alias, dev_name(&od->pdev->dev), |
| 76 | clk_name, NULL); |
| 77 | } |
| 78 | |
Russell King | 1ca90bd | 2015-03-02 15:46:03 +0000 | [diff] [blame] | 79 | if (rc) { |
| 80 | if (rc == -ENODEV || rc == -ENOMEM) |
| 81 | dev_err(&od->pdev->dev, |
| 82 | "clkdev_alloc for %s failed\n", clk_alias); |
| 83 | else |
| 84 | dev_err(&od->pdev->dev, |
| 85 | "clk_get for %s failed\n", clk_name); |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 86 | } |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 87 | } |
| 88 | |
Partha Basak | 4ef7aca | 2010-09-21 19:23:04 +0200 | [diff] [blame] | 89 | /** |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 90 | * _add_hwmod_clocks_clkdev - Add clkdev entry for hwmod optional clocks |
| 91 | * and main clock |
Partha Basak | 4ef7aca | 2010-09-21 19:23:04 +0200 | [diff] [blame] | 92 | * @od: struct omap_device *od |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 93 | * @oh: struct omap_hwmod *oh |
Partha Basak | 4ef7aca | 2010-09-21 19:23:04 +0200 | [diff] [blame] | 94 | * |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 95 | * For the main clock and every optional clock present per hwmod per |
| 96 | * omap_device, this function adds an entry in the clkdev table of the |
| 97 | * form <dev-id=dev_name, con-id=role> if it does not exist already. |
Partha Basak | 4ef7aca | 2010-09-21 19:23:04 +0200 | [diff] [blame] | 98 | * |
| 99 | * The function is called from inside omap_device_build_ss(), after |
| 100 | * omap_device_register. |
| 101 | * |
| 102 | * This allows drivers to get a pointer to its optional clocks based on its role |
| 103 | * by calling clk_get(<dev*>, <role>). |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 104 | * In the case of the main clock, a "fck" alias is used. |
Partha Basak | 4ef7aca | 2010-09-21 19:23:04 +0200 | [diff] [blame] | 105 | * |
| 106 | * No return value. |
| 107 | */ |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 108 | static void _add_hwmod_clocks_clkdev(struct omap_device *od, |
| 109 | struct omap_hwmod *oh) |
Partha Basak | 4ef7aca | 2010-09-21 19:23:04 +0200 | [diff] [blame] | 110 | { |
| 111 | int i; |
| 112 | |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 113 | _add_clkdev(od, "fck", oh->main_clk); |
Partha Basak | 4ef7aca | 2010-09-21 19:23:04 +0200 | [diff] [blame] | 114 | |
Benoit Cousson | bf1e077 | 2011-07-10 05:54:12 -0600 | [diff] [blame] | 115 | for (i = 0; i < oh->opt_clks_cnt; i++) |
| 116 | _add_clkdev(od, oh->opt_clks[i].role, oh->opt_clks[i].clk); |
Partha Basak | 4ef7aca | 2010-09-21 19:23:04 +0200 | [diff] [blame] | 117 | } |
| 118 | |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 119 | |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 120 | /** |
| 121 | * omap_device_build_from_dt - build an omap_device with multiple hwmods |
| 122 | * @pdev_name: name of the platform_device driver to use |
| 123 | * @pdev_id: this platform_device's connection ID |
| 124 | * @oh: ptr to the single omap_hwmod that backs this omap_device |
| 125 | * @pdata: platform_data ptr to associate with the platform_device |
| 126 | * @pdata_len: amount of memory pointed to by @pdata |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 127 | * |
| 128 | * Function for building an omap_device already registered from device-tree |
| 129 | * |
| 130 | * Returns 0 or PTR_ERR() on error. |
| 131 | */ |
| 132 | static int omap_device_build_from_dt(struct platform_device *pdev) |
| 133 | { |
| 134 | struct omap_hwmod **hwmods; |
| 135 | struct omap_device *od; |
| 136 | struct omap_hwmod *oh; |
| 137 | struct device_node *node = pdev->dev.of_node; |
Tony Lindgren | 695eea3 | 2018-02-22 14:05:31 -0800 | [diff] [blame] | 138 | struct resource res; |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 139 | const char *oh_name; |
| 140 | int oh_cnt, i, ret = 0; |
Tony Lindgren | 7194100 | 2018-04-16 10:24:14 -0700 | [diff] [blame] | 141 | bool device_active = false, skip_pm_domain = false; |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 142 | |
| 143 | oh_cnt = of_property_count_strings(node, "ti,hwmods"); |
Russell King | c48cd65 | 2013-03-13 20:44:21 +0000 | [diff] [blame] | 144 | if (oh_cnt <= 0) { |
Benoit Cousson | 5dc06b7 | 2012-01-20 18:14:00 +0100 | [diff] [blame] | 145 | dev_dbg(&pdev->dev, "No 'hwmods' to build omap_device\n"); |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 146 | return -ENODEV; |
| 147 | } |
| 148 | |
Tony Lindgren | 7194100 | 2018-04-16 10:24:14 -0700 | [diff] [blame] | 149 | /* SDMA still needs special handling for omap_device_build() */ |
| 150 | ret = of_property_read_string_index(node, "ti,hwmods", 0, &oh_name); |
| 151 | if (!ret && (!strncmp("dma_system", oh_name, 10) || |
| 152 | !strncmp("dma", oh_name, 3))) |
| 153 | skip_pm_domain = true; |
| 154 | |
Tony Lindgren | 695eea3 | 2018-02-22 14:05:31 -0800 | [diff] [blame] | 155 | /* Use ti-sysc driver instead of omap_device? */ |
Tony Lindgren | 7194100 | 2018-04-16 10:24:14 -0700 | [diff] [blame] | 156 | if (!skip_pm_domain && |
| 157 | !omap_hwmod_parse_module_range(NULL, node, &res)) |
Tony Lindgren | 695eea3 | 2018-02-22 14:05:31 -0800 | [diff] [blame] | 158 | return -ENODEV; |
| 159 | |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 160 | hwmods = kcalloc(oh_cnt, sizeof(struct omap_hwmod *), GFP_KERNEL); |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 161 | if (!hwmods) { |
| 162 | ret = -ENOMEM; |
| 163 | goto odbfd_exit; |
| 164 | } |
| 165 | |
| 166 | for (i = 0; i < oh_cnt; i++) { |
| 167 | of_property_read_string_index(node, "ti,hwmods", i, &oh_name); |
| 168 | oh = omap_hwmod_lookup(oh_name); |
| 169 | if (!oh) { |
| 170 | dev_err(&pdev->dev, "Cannot lookup hwmod '%s'\n", |
| 171 | oh_name); |
| 172 | ret = -EINVAL; |
| 173 | goto odbfd_exit1; |
| 174 | } |
| 175 | hwmods[i] = oh; |
Rajendra Nayak | 7268032 | 2013-07-28 23:01:51 -0600 | [diff] [blame] | 176 | if (oh->flags & HWMOD_INIT_NO_IDLE) |
| 177 | device_active = true; |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 178 | } |
| 179 | |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 180 | od = omap_device_alloc(pdev, hwmods, oh_cnt); |
Wei Yongjun | 4cf9cf8 | 2013-09-18 12:01:58 -0700 | [diff] [blame] | 181 | if (IS_ERR(od)) { |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 182 | dev_err(&pdev->dev, "Cannot allocate omap_device for :%s\n", |
| 183 | oh_name); |
| 184 | ret = PTR_ERR(od); |
| 185 | goto odbfd_exit1; |
| 186 | } |
| 187 | |
Peter Ujfalusi | 3956a1a | 2012-08-23 16:54:09 +0300 | [diff] [blame] | 188 | /* Fix up missing resource names */ |
| 189 | for (i = 0; i < pdev->num_resources; i++) { |
| 190 | struct resource *r = &pdev->resource[i]; |
| 191 | |
| 192 | if (r->name == NULL) |
| 193 | r->name = dev_name(&pdev->dev); |
| 194 | } |
| 195 | |
Tony Lindgren | 7194100 | 2018-04-16 10:24:14 -0700 | [diff] [blame] | 196 | if (!skip_pm_domain) { |
| 197 | dev_pm_domain_set(&pdev->dev, &omap_device_pm_domain); |
| 198 | if (device_active) { |
| 199 | omap_device_enable(pdev); |
| 200 | pm_runtime_set_active(&pdev->dev); |
| 201 | } |
Rajendra Nayak | 7268032 | 2013-07-28 23:01:51 -0600 | [diff] [blame] | 202 | } |
| 203 | |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 204 | odbfd_exit1: |
| 205 | kfree(hwmods); |
| 206 | odbfd_exit: |
Nishanth Menon | f5c33b0 | 2013-12-03 19:39:13 -0600 | [diff] [blame] | 207 | /* if data/we are at fault.. load up a fail handler */ |
| 208 | if (ret) |
Tomeu Vizoso | 989561d | 2016-01-07 16:46:13 +0100 | [diff] [blame] | 209 | dev_pm_domain_set(&pdev->dev, &omap_device_fail_pm_domain); |
Nishanth Menon | f5c33b0 | 2013-12-03 19:39:13 -0600 | [diff] [blame] | 210 | |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 211 | return ret; |
| 212 | } |
| 213 | |
| 214 | static int _omap_device_notifier_call(struct notifier_block *nb, |
| 215 | unsigned long event, void *dev) |
| 216 | { |
| 217 | struct platform_device *pdev = to_platform_device(dev); |
Kevin Hilman | e753345 | 2012-07-10 11:13:16 -0700 | [diff] [blame] | 218 | struct omap_device *od; |
Tony Lindgren | cf26f11 | 2016-02-12 08:56:52 -0800 | [diff] [blame] | 219 | int err; |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 220 | |
| 221 | switch (event) { |
Grygorii Strashko | 213fa10 | 2016-07-28 20:50:37 +0300 | [diff] [blame] | 222 | case BUS_NOTIFY_REMOVED_DEVICE: |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 223 | if (pdev->archdata.od) |
| 224 | omap_device_delete(pdev->archdata.od); |
| 225 | break; |
Tony Lindgren | cf26f11 | 2016-02-12 08:56:52 -0800 | [diff] [blame] | 226 | case BUS_NOTIFY_UNBOUND_DRIVER: |
| 227 | od = to_omap_device(pdev); |
| 228 | if (od && (od->_state == OMAP_DEVICE_STATE_ENABLED)) { |
| 229 | dev_info(dev, "enabled after unload, idling\n"); |
| 230 | err = omap_device_idle(pdev); |
| 231 | if (err) |
| 232 | dev_err(dev, "failed to idle\n"); |
| 233 | } |
| 234 | break; |
Dave Gerlach | 04abaf0 | 2017-03-30 14:58:18 -0500 | [diff] [blame] | 235 | case BUS_NOTIFY_BIND_DRIVER: |
| 236 | od = to_omap_device(pdev); |
| 237 | if (od && (od->_state == OMAP_DEVICE_STATE_ENABLED) && |
| 238 | pm_runtime_status_suspended(dev)) { |
| 239 | od->_driver_status = BUS_NOTIFY_BIND_DRIVER; |
| 240 | pm_runtime_set_active(dev); |
| 241 | } |
| 242 | break; |
Kevin Hilman | e753345 | 2012-07-10 11:13:16 -0700 | [diff] [blame] | 243 | case BUS_NOTIFY_ADD_DEVICE: |
| 244 | if (pdev->dev.of_node) |
| 245 | omap_device_build_from_dt(pdev); |
Tony Lindgren | dad12d1 | 2013-12-06 10:52:58 -0800 | [diff] [blame] | 246 | omap_auxdata_legacy_init(dev); |
Kevin Hilman | e753345 | 2012-07-10 11:13:16 -0700 | [diff] [blame] | 247 | /* fall through */ |
| 248 | default: |
| 249 | od = to_omap_device(pdev); |
| 250 | if (od) |
| 251 | od->_driver_status = event; |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 252 | } |
| 253 | |
| 254 | return NOTIFY_DONE; |
| 255 | } |
| 256 | |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 257 | /** |
| 258 | * _omap_device_enable_hwmods - call omap_hwmod_enable() on all hwmods |
| 259 | * @od: struct omap_device *od |
| 260 | * |
| 261 | * Enable all underlying hwmods. Returns 0. |
| 262 | */ |
| 263 | static int _omap_device_enable_hwmods(struct omap_device *od) |
| 264 | { |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 265 | int ret = 0; |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 266 | int i; |
| 267 | |
| 268 | for (i = 0; i < od->hwmods_cnt; i++) |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 269 | ret |= omap_hwmod_enable(od->hwmods[i]); |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 270 | |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 271 | return ret; |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | /** |
| 275 | * _omap_device_idle_hwmods - call omap_hwmod_idle() on all hwmods |
| 276 | * @od: struct omap_device *od |
| 277 | * |
| 278 | * Idle all underlying hwmods. Returns 0. |
| 279 | */ |
| 280 | static int _omap_device_idle_hwmods(struct omap_device *od) |
| 281 | { |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 282 | int ret = 0; |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 283 | int i; |
| 284 | |
| 285 | for (i = 0; i < od->hwmods_cnt; i++) |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 286 | ret |= omap_hwmod_idle(od->hwmods[i]); |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 287 | |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 288 | return ret; |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 289 | } |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 290 | |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 291 | /* Public functions for use by core code */ |
| 292 | |
| 293 | /** |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 294 | * omap_device_get_context_loss_count - get lost context count |
| 295 | * @od: struct omap_device * |
| 296 | * |
| 297 | * Using the primary hwmod, query the context loss count for this |
| 298 | * device. |
| 299 | * |
| 300 | * Callers should consider context for this device lost any time this |
| 301 | * function returns a value different than the value the caller got |
| 302 | * the last time it called this function. |
| 303 | * |
Andrea Gelmini | f733e7c | 2016-05-21 13:50:25 +0200 | [diff] [blame] | 304 | * If any hwmods exist for the omap_device associated with @pdev, |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 305 | * return the context loss counter for that hwmod, otherwise return |
| 306 | * zero. |
| 307 | */ |
Tomi Valkeinen | fc01387 | 2011-06-09 16:56:23 +0300 | [diff] [blame] | 308 | int omap_device_get_context_loss_count(struct platform_device *pdev) |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 309 | { |
| 310 | struct omap_device *od; |
| 311 | u32 ret = 0; |
| 312 | |
Kevin Hilman | 8f0d69d | 2011-07-09 19:15:20 -0600 | [diff] [blame] | 313 | od = to_omap_device(pdev); |
Kevin Hilman | c80705a | 2010-12-21 21:31:55 -0700 | [diff] [blame] | 314 | |
| 315 | if (od->hwmods_cnt) |
| 316 | ret = omap_hwmod_get_context_loss_count(od->hwmods[0]); |
| 317 | |
| 318 | return ret; |
| 319 | } |
| 320 | |
| 321 | /** |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 322 | * omap_device_alloc - allocate an omap_device |
| 323 | * @pdev: platform_device that will be included in this omap_device |
| 324 | * @oh: ptr to the single omap_hwmod that backs this omap_device |
| 325 | * @pdata: platform_data ptr to associate with the platform_device |
| 326 | * @pdata_len: amount of memory pointed to by @pdata |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 327 | * |
| 328 | * Convenience function for allocating an omap_device structure and filling |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 329 | * hwmods, and resources. |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 330 | * |
| 331 | * Returns an struct omap_device pointer or ERR_PTR() on error; |
| 332 | */ |
Ohad Ben-Cohen | 993e4fb | 2012-02-20 09:43:29 -0800 | [diff] [blame] | 333 | struct omap_device *omap_device_alloc(struct platform_device *pdev, |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 334 | struct omap_hwmod **ohs, int oh_cnt) |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 335 | { |
| 336 | int ret = -ENOMEM; |
| 337 | struct omap_device *od; |
Tony Lindgren | c2b84a9 | 2017-10-10 14:27:26 -0700 | [diff] [blame] | 338 | int i; |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 339 | struct omap_hwmod **hwmods; |
| 340 | |
| 341 | od = kzalloc(sizeof(struct omap_device), GFP_KERNEL); |
| 342 | if (!od) { |
| 343 | ret = -ENOMEM; |
| 344 | goto oda_exit1; |
| 345 | } |
| 346 | od->hwmods_cnt = oh_cnt; |
| 347 | |
| 348 | hwmods = kmemdup(ohs, sizeof(struct omap_hwmod *) * oh_cnt, GFP_KERNEL); |
| 349 | if (!hwmods) |
| 350 | goto oda_exit2; |
| 351 | |
| 352 | od->hwmods = hwmods; |
| 353 | od->pdev = pdev; |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 354 | pdev->archdata.od = od; |
| 355 | |
| 356 | for (i = 0; i < oh_cnt; i++) { |
| 357 | hwmods[i]->od = od; |
| 358 | _add_hwmod_clocks_clkdev(od, hwmods[i]); |
| 359 | } |
| 360 | |
| 361 | return od; |
| 362 | |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 363 | oda_exit2: |
| 364 | kfree(od); |
| 365 | oda_exit1: |
| 366 | dev_err(&pdev->dev, "omap_device: build failed (%d)\n", ret); |
| 367 | |
| 368 | return ERR_PTR(ret); |
| 369 | } |
| 370 | |
Ohad Ben-Cohen | 993e4fb | 2012-02-20 09:43:29 -0800 | [diff] [blame] | 371 | void omap_device_delete(struct omap_device *od) |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 372 | { |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 373 | if (!od) |
| 374 | return; |
| 375 | |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 376 | od->pdev->archdata.od = NULL; |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 377 | kfree(od->hwmods); |
| 378 | kfree(od); |
| 379 | } |
| 380 | |
| 381 | /** |
Tony Lindgren | d85a2d6 | 2017-10-10 14:23:35 -0700 | [diff] [blame] | 382 | * omap_device_copy_resources - Add legacy IO and IRQ resources |
| 383 | * @oh: interconnect target module |
| 384 | * @pdev: platform device to copy resources to |
| 385 | * |
| 386 | * We still have legacy DMA and smartreflex needing resources. |
| 387 | * Let's populate what they need until we can eventually just |
| 388 | * remove this function. Note that there should be no need to |
| 389 | * call this from omap_device_build_from_dt(), nor should there |
| 390 | * be any need to call it for other devices. |
| 391 | */ |
| 392 | static int |
| 393 | omap_device_copy_resources(struct omap_hwmod *oh, |
| 394 | struct platform_device *pdev) |
| 395 | { |
| 396 | struct device_node *np, *child; |
| 397 | struct property *prop; |
| 398 | struct resource *res; |
| 399 | const char *name; |
| 400 | int error, irq = 0; |
| 401 | |
Tony Lindgren | f0c96c6 | 2017-10-30 10:01:39 -0700 | [diff] [blame] | 402 | if (!oh || !oh->od || !oh->od->pdev) |
| 403 | return -EINVAL; |
Tony Lindgren | d85a2d6 | 2017-10-10 14:23:35 -0700 | [diff] [blame] | 404 | |
| 405 | np = oh->od->pdev->dev.of_node; |
| 406 | if (!np) { |
| 407 | error = -ENODEV; |
| 408 | goto error; |
| 409 | } |
| 410 | |
Kees Cook | 6396bb2 | 2018-06-12 14:03:40 -0700 | [diff] [blame] | 411 | res = kcalloc(2, sizeof(*res), GFP_KERNEL); |
Tony Lindgren | d85a2d6 | 2017-10-10 14:23:35 -0700 | [diff] [blame] | 412 | if (!res) |
| 413 | return -ENOMEM; |
| 414 | |
| 415 | /* Do we have a dts range for the interconnect target module? */ |
| 416 | error = omap_hwmod_parse_module_range(oh, np, res); |
| 417 | |
| 418 | /* No ranges, rely on device reg entry */ |
| 419 | if (error) |
| 420 | error = of_address_to_resource(np, 0, res); |
| 421 | if (error) |
| 422 | goto free; |
| 423 | |
| 424 | /* SmartReflex needs first IO resource name to be "mpu" */ |
| 425 | res[0].name = "mpu"; |
| 426 | |
| 427 | /* |
| 428 | * We may have a configured "ti,sysc" interconnect target with a |
| 429 | * dts child with the interrupt. If so use the first child's |
| 430 | * first interrupt for "ti-hwmods" legacy support. |
| 431 | */ |
| 432 | of_property_for_each_string(np, "compatible", prop, name) |
| 433 | if (!strncmp("ti,sysc-", name, 8)) |
| 434 | break; |
| 435 | |
| 436 | child = of_get_next_available_child(np, NULL); |
| 437 | |
| 438 | if (name) |
| 439 | irq = irq_of_parse_and_map(child, 0); |
| 440 | if (!irq) |
| 441 | irq = irq_of_parse_and_map(np, 0); |
Wei Yongjun | 552ee30 | 2017-10-13 09:29:25 +0000 | [diff] [blame] | 442 | if (!irq) { |
| 443 | error = -EINVAL; |
Tony Lindgren | d85a2d6 | 2017-10-10 14:23:35 -0700 | [diff] [blame] | 444 | goto free; |
Wei Yongjun | 552ee30 | 2017-10-13 09:29:25 +0000 | [diff] [blame] | 445 | } |
Tony Lindgren | d85a2d6 | 2017-10-10 14:23:35 -0700 | [diff] [blame] | 446 | |
| 447 | /* Legacy DMA code needs interrupt name to be "0" */ |
| 448 | res[1].start = irq; |
| 449 | res[1].end = irq; |
| 450 | res[1].flags = IORESOURCE_IRQ; |
| 451 | res[1].name = "0"; |
| 452 | |
| 453 | error = platform_device_add_resources(pdev, res, 2); |
| 454 | |
| 455 | free: |
| 456 | kfree(res); |
| 457 | |
| 458 | error: |
| 459 | WARN(error, "%s: %s device %s failed: %i\n", |
| 460 | __func__, oh->name, dev_name(&pdev->dev), |
| 461 | error); |
| 462 | |
| 463 | return error; |
| 464 | } |
| 465 | |
| 466 | /** |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 467 | * omap_device_build - build and register an omap_device with one omap_hwmod |
| 468 | * @pdev_name: name of the platform_device driver to use |
| 469 | * @pdev_id: this platform_device's connection ID |
| 470 | * @oh: ptr to the single omap_hwmod that backs this omap_device |
| 471 | * @pdata: platform_data ptr to associate with the platform_device |
| 472 | * @pdata_len: amount of memory pointed to by @pdata |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 473 | * |
| 474 | * Convenience function for building and registering a single |
| 475 | * omap_device record, which in turn builds and registers a |
| 476 | * platform_device record. See omap_device_build_ss() for more |
| 477 | * information. Returns ERR_PTR(-EINVAL) if @oh is NULL; otherwise, |
| 478 | * passes along the return value of omap_device_build_ss(). |
| 479 | */ |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 480 | struct platform_device __init *omap_device_build(const char *pdev_name, |
| 481 | int pdev_id, |
| 482 | struct omap_hwmod *oh, |
| 483 | void *pdata, int pdata_len) |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 484 | { |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 485 | int ret = -ENOMEM; |
Kevin Hilman | d66b3fe | 2011-07-21 13:58:51 -0700 | [diff] [blame] | 486 | struct platform_device *pdev; |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 487 | struct omap_device *od; |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 488 | |
Tony Lindgren | d85a2d6 | 2017-10-10 14:23:35 -0700 | [diff] [blame] | 489 | if (!oh || !pdev_name) |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 490 | return ERR_PTR(-EINVAL); |
| 491 | |
| 492 | if (!pdata && pdata_len > 0) |
| 493 | return ERR_PTR(-EINVAL); |
| 494 | |
Tony Lindgren | d85a2d6 | 2017-10-10 14:23:35 -0700 | [diff] [blame] | 495 | if (strncmp(oh->name, "smartreflex", 11) && |
| 496 | strncmp(oh->name, "dma", 3)) { |
| 497 | pr_warn("%s need to update %s to probe with dt\na", |
| 498 | __func__, pdev_name); |
| 499 | ret = -ENODEV; |
| 500 | goto odbs_exit; |
| 501 | } |
| 502 | |
Kevin Hilman | d66b3fe | 2011-07-21 13:58:51 -0700 | [diff] [blame] | 503 | pdev = platform_device_alloc(pdev_name, pdev_id); |
| 504 | if (!pdev) { |
| 505 | ret = -ENOMEM; |
| 506 | goto odbs_exit; |
| 507 | } |
| 508 | |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 509 | /* Set the dev_name early to allow dev_xxx in omap_device_alloc */ |
| 510 | if (pdev->id != -1) |
| 511 | dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id); |
| 512 | else |
| 513 | dev_set_name(&pdev->dev, "%s", pdev->name); |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 514 | |
Tony Lindgren | d85a2d6 | 2017-10-10 14:23:35 -0700 | [diff] [blame] | 515 | /* |
| 516 | * Must be called before omap_device_alloc() as oh->od |
| 517 | * only contains the currently registered omap_device |
| 518 | * and will get overwritten by omap_device_alloc(). |
| 519 | */ |
| 520 | ret = omap_device_copy_resources(oh, pdev); |
| 521 | if (ret) |
| 522 | goto odbs_exit1; |
| 523 | |
| 524 | od = omap_device_alloc(pdev, &oh, 1); |
Dan Carpenter | e9a9bb4 | 2017-11-14 09:06:48 +0300 | [diff] [blame] | 525 | if (IS_ERR(od)) { |
| 526 | ret = PTR_ERR(od); |
Kevin Hilman | d66b3fe | 2011-07-21 13:58:51 -0700 | [diff] [blame] | 527 | goto odbs_exit1; |
Dan Carpenter | e9a9bb4 | 2017-11-14 09:06:48 +0300 | [diff] [blame] | 528 | } |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 529 | |
Kevin Hilman | d66b3fe | 2011-07-21 13:58:51 -0700 | [diff] [blame] | 530 | ret = platform_device_add_data(pdev, pdata, pdata_len); |
Artem Bityutskiy | 49b368a | 2010-07-12 13:38:07 +0000 | [diff] [blame] | 531 | if (ret) |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 532 | goto odbs_exit2; |
Kevin Hilman | d66b3fe | 2011-07-21 13:58:51 -0700 | [diff] [blame] | 533 | |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 534 | ret = omap_device_register(pdev); |
Kevin Hilman | d66b3fe | 2011-07-21 13:58:51 -0700 | [diff] [blame] | 535 | if (ret) |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 536 | goto odbs_exit2; |
Kevin Hilman | 0656358 | 2010-07-26 16:34:30 -0600 | [diff] [blame] | 537 | |
Kevin Hilman | d66b3fe | 2011-07-21 13:58:51 -0700 | [diff] [blame] | 538 | return pdev; |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 539 | |
Kevin Hilman | d66b3fe | 2011-07-21 13:58:51 -0700 | [diff] [blame] | 540 | odbs_exit2: |
Benoit Cousson | a4f6cdb | 2011-08-09 16:47:01 +0200 | [diff] [blame] | 541 | omap_device_delete(od); |
Kevin Hilman | d66b3fe | 2011-07-21 13:58:51 -0700 | [diff] [blame] | 542 | odbs_exit1: |
| 543 | platform_device_put(pdev); |
| 544 | odbs_exit: |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 545 | |
| 546 | pr_err("omap_device: %s: build failed (%d)\n", pdev_name, ret); |
| 547 | |
| 548 | return ERR_PTR(ret); |
| 549 | } |
| 550 | |
Rafael J. Wysocki | bf7c544 | 2014-12-13 00:42:49 +0100 | [diff] [blame] | 551 | #ifdef CONFIG_PM |
Kevin Hilman | 638080c | 2011-04-29 00:36:42 +0200 | [diff] [blame] | 552 | static int _od_runtime_suspend(struct device *dev) |
| 553 | { |
| 554 | struct platform_device *pdev = to_platform_device(dev); |
Kevin Hilman | 345f79b | 2011-05-31 16:08:09 -0700 | [diff] [blame] | 555 | int ret; |
Kevin Hilman | 638080c | 2011-04-29 00:36:42 +0200 | [diff] [blame] | 556 | |
Kevin Hilman | 345f79b | 2011-05-31 16:08:09 -0700 | [diff] [blame] | 557 | ret = pm_generic_runtime_suspend(dev); |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 558 | if (ret) |
| 559 | return ret; |
Kevin Hilman | 345f79b | 2011-05-31 16:08:09 -0700 | [diff] [blame] | 560 | |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 561 | return omap_device_idle(pdev); |
Kevin Hilman | 345f79b | 2011-05-31 16:08:09 -0700 | [diff] [blame] | 562 | } |
| 563 | |
Kevin Hilman | 638080c | 2011-04-29 00:36:42 +0200 | [diff] [blame] | 564 | static int _od_runtime_resume(struct device *dev) |
| 565 | { |
| 566 | struct platform_device *pdev = to_platform_device(dev); |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 567 | int ret; |
Kevin Hilman | 638080c | 2011-04-29 00:36:42 +0200 | [diff] [blame] | 568 | |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 569 | ret = omap_device_enable(pdev); |
Tony Lindgren | 08c78e9 | 2016-02-12 08:56:52 -0800 | [diff] [blame] | 570 | if (ret) { |
| 571 | dev_err(dev, "use pm_runtime_put_sync_suspend() in driver?\n"); |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 572 | return ret; |
Tony Lindgren | 08c78e9 | 2016-02-12 08:56:52 -0800 | [diff] [blame] | 573 | } |
Kevin Hilman | 345f79b | 2011-05-31 16:08:09 -0700 | [diff] [blame] | 574 | |
| 575 | return pm_generic_runtime_resume(dev); |
Kevin Hilman | 638080c | 2011-04-29 00:36:42 +0200 | [diff] [blame] | 576 | } |
Nishanth Menon | f5c33b0 | 2013-12-03 19:39:13 -0600 | [diff] [blame] | 577 | |
| 578 | static int _od_fail_runtime_suspend(struct device *dev) |
| 579 | { |
| 580 | dev_warn(dev, "%s: FIXME: missing hwmod/omap_dev info\n", __func__); |
| 581 | return -ENODEV; |
| 582 | } |
| 583 | |
| 584 | static int _od_fail_runtime_resume(struct device *dev) |
| 585 | { |
| 586 | dev_warn(dev, "%s: FIXME: missing hwmod/omap_dev info\n", __func__); |
| 587 | return -ENODEV; |
| 588 | } |
| 589 | |
Kevin Hilman | 256a543 | 2011-07-12 22:48:03 +0200 | [diff] [blame] | 590 | #endif |
Kevin Hilman | 638080c | 2011-04-29 00:36:42 +0200 | [diff] [blame] | 591 | |
Kevin Hilman | c03f007 | 2011-07-12 22:48:19 +0200 | [diff] [blame] | 592 | #ifdef CONFIG_SUSPEND |
| 593 | static int _od_suspend_noirq(struct device *dev) |
| 594 | { |
| 595 | struct platform_device *pdev = to_platform_device(dev); |
| 596 | struct omap_device *od = to_omap_device(pdev); |
| 597 | int ret; |
| 598 | |
Kevin Hilman | 72bb6f9 | 2012-07-10 15:29:04 -0700 | [diff] [blame] | 599 | /* Don't attempt late suspend on a driver that is not bound */ |
| 600 | if (od->_driver_status != BUS_NOTIFY_BOUND_DRIVER) |
| 601 | return 0; |
| 602 | |
Kevin Hilman | c03f007 | 2011-07-12 22:48:19 +0200 | [diff] [blame] | 603 | ret = pm_generic_suspend_noirq(dev); |
| 604 | |
| 605 | if (!ret && !pm_runtime_status_suspended(dev)) { |
| 606 | if (pm_generic_runtime_suspend(dev) == 0) { |
Sourav Poddar | 4b7ec5a | 2013-04-27 01:55:34 +0530 | [diff] [blame] | 607 | omap_device_idle(pdev); |
Kevin Hilman | c03f007 | 2011-07-12 22:48:19 +0200 | [diff] [blame] | 608 | od->flags |= OMAP_DEVICE_SUSPENDED; |
| 609 | } |
| 610 | } |
| 611 | |
| 612 | return ret; |
| 613 | } |
| 614 | |
| 615 | static int _od_resume_noirq(struct device *dev) |
| 616 | { |
| 617 | struct platform_device *pdev = to_platform_device(dev); |
| 618 | struct omap_device *od = to_omap_device(pdev); |
| 619 | |
Nishanth Menon | 3522bf7 | 2013-11-14 11:05:16 -0600 | [diff] [blame] | 620 | if (od->flags & OMAP_DEVICE_SUSPENDED) { |
Kevin Hilman | c03f007 | 2011-07-12 22:48:19 +0200 | [diff] [blame] | 621 | od->flags &= ~OMAP_DEVICE_SUSPENDED; |
Sourav Poddar | 4b7ec5a | 2013-04-27 01:55:34 +0530 | [diff] [blame] | 622 | omap_device_enable(pdev); |
Kevin Hilman | c03f007 | 2011-07-12 22:48:19 +0200 | [diff] [blame] | 623 | pm_generic_runtime_resume(dev); |
| 624 | } |
| 625 | |
| 626 | return pm_generic_resume_noirq(dev); |
| 627 | } |
Kevin Hilman | 126caf1 | 2011-09-01 10:59:36 -0700 | [diff] [blame] | 628 | #else |
| 629 | #define _od_suspend_noirq NULL |
| 630 | #define _od_resume_noirq NULL |
Kevin Hilman | c03f007 | 2011-07-12 22:48:19 +0200 | [diff] [blame] | 631 | #endif |
| 632 | |
Nishanth Menon | f5c33b0 | 2013-12-03 19:39:13 -0600 | [diff] [blame] | 633 | struct dev_pm_domain omap_device_fail_pm_domain = { |
| 634 | .ops = { |
| 635 | SET_RUNTIME_PM_OPS(_od_fail_runtime_suspend, |
| 636 | _od_fail_runtime_resume, NULL) |
| 637 | } |
| 638 | }; |
| 639 | |
Kevin Hilman | 3ec2dec | 2012-02-15 11:47:45 -0800 | [diff] [blame] | 640 | struct dev_pm_domain omap_device_pm_domain = { |
Kevin Hilman | 638080c | 2011-04-29 00:36:42 +0200 | [diff] [blame] | 641 | .ops = { |
Kevin Hilman | 256a543 | 2011-07-12 22:48:03 +0200 | [diff] [blame] | 642 | SET_RUNTIME_PM_OPS(_od_runtime_suspend, _od_runtime_resume, |
Rafael J. Wysocki | 45f0a85 | 2013-06-03 21:49:52 +0200 | [diff] [blame] | 643 | NULL) |
Kevin Hilman | 638080c | 2011-04-29 00:36:42 +0200 | [diff] [blame] | 644 | USE_PLATFORM_PM_SLEEP_OPS |
Grygorii Strashko | c381f22 | 2015-04-27 21:24:32 +0300 | [diff] [blame] | 645 | SET_NOIRQ_SYSTEM_SLEEP_PM_OPS(_od_suspend_noirq, |
| 646 | _od_resume_noirq) |
Kevin Hilman | 638080c | 2011-04-29 00:36:42 +0200 | [diff] [blame] | 647 | } |
| 648 | }; |
| 649 | |
Thara Gopinath | c23a97d | 2010-02-24 12:05:58 -0700 | [diff] [blame] | 650 | /** |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 651 | * omap_device_register - register an omap_device with one omap_hwmod |
| 652 | * @od: struct omap_device * to register |
| 653 | * |
| 654 | * Register the omap_device structure. This currently just calls |
| 655 | * platform_device_register() on the underlying platform_device. |
| 656 | * Returns the return value of platform_device_register(). |
| 657 | */ |
Ohad Ben-Cohen | 993e4fb | 2012-02-20 09:43:29 -0800 | [diff] [blame] | 658 | int omap_device_register(struct platform_device *pdev) |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 659 | { |
Kevin Hilman | bfae4f8 | 2011-07-21 14:47:53 -0700 | [diff] [blame] | 660 | pr_debug("omap_device: %s: registering\n", pdev->name); |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 661 | |
Tomeu Vizoso | 989561d | 2016-01-07 16:46:13 +0100 | [diff] [blame] | 662 | dev_pm_domain_set(&pdev->dev, &omap_device_pm_domain); |
Kevin Hilman | d66b3fe | 2011-07-21 13:58:51 -0700 | [diff] [blame] | 663 | return platform_device_add(pdev); |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 664 | } |
| 665 | |
| 666 | |
| 667 | /* Public functions for use by device drivers through struct platform_data */ |
| 668 | |
| 669 | /** |
| 670 | * omap_device_enable - fully activate an omap_device |
| 671 | * @od: struct omap_device * to activate |
| 672 | * |
| 673 | * Do whatever is necessary for the hwmods underlying omap_device @od |
| 674 | * to be accessible and ready to operate. This generally involves |
| 675 | * enabling clocks, setting SYSCONFIG registers; and in the future may |
| 676 | * involve remuxing pins. Device drivers should call this function |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 677 | * indirectly via pm_runtime_get*(). Returns -EINVAL if called when |
| 678 | * the omap_device is already enabled, or passes along the return |
| 679 | * value of _omap_device_enable_hwmods(). |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 680 | */ |
| 681 | int omap_device_enable(struct platform_device *pdev) |
| 682 | { |
| 683 | int ret; |
| 684 | struct omap_device *od; |
| 685 | |
Kevin Hilman | 8f0d69d | 2011-07-09 19:15:20 -0600 | [diff] [blame] | 686 | od = to_omap_device(pdev); |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 687 | |
| 688 | if (od->_state == OMAP_DEVICE_STATE_ENABLED) { |
Kevin Hilman | 49882c9 | 2011-07-21 09:58:36 -0700 | [diff] [blame] | 689 | dev_warn(&pdev->dev, |
| 690 | "omap_device: %s() called from invalid state %d\n", |
| 691 | __func__, od->_state); |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 692 | return -EINVAL; |
| 693 | } |
| 694 | |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 695 | ret = _omap_device_enable_hwmods(od); |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 696 | |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 697 | if (ret == 0) |
| 698 | od->_state = OMAP_DEVICE_STATE_ENABLED; |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 699 | |
| 700 | return ret; |
| 701 | } |
| 702 | |
| 703 | /** |
| 704 | * omap_device_idle - idle an omap_device |
| 705 | * @od: struct omap_device * to idle |
| 706 | * |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 707 | * Idle omap_device @od. Device drivers call this function indirectly |
| 708 | * via pm_runtime_put*(). Returns -EINVAL if the omap_device is not |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 709 | * currently enabled, or passes along the return value of |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 710 | * _omap_device_idle_hwmods(). |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 711 | */ |
| 712 | int omap_device_idle(struct platform_device *pdev) |
| 713 | { |
| 714 | int ret; |
| 715 | struct omap_device *od; |
| 716 | |
Kevin Hilman | 8f0d69d | 2011-07-09 19:15:20 -0600 | [diff] [blame] | 717 | od = to_omap_device(pdev); |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 718 | |
| 719 | if (od->_state != OMAP_DEVICE_STATE_ENABLED) { |
Kevin Hilman | 49882c9 | 2011-07-21 09:58:36 -0700 | [diff] [blame] | 720 | dev_warn(&pdev->dev, |
| 721 | "omap_device: %s() called from invalid state %d\n", |
| 722 | __func__, od->_state); |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 723 | return -EINVAL; |
| 724 | } |
| 725 | |
Paul Walmsley | c1d1cd5 | 2013-01-26 00:48:53 -0700 | [diff] [blame] | 726 | ret = _omap_device_idle_hwmods(od); |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 727 | |
Pali Rohár | 6da2335 | 2015-02-26 14:49:51 +0100 | [diff] [blame] | 728 | if (ret == 0) |
| 729 | od->_state = OMAP_DEVICE_STATE_IDLE; |
Paul Walmsley | b04b65a | 2009-09-03 20:14:05 +0300 | [diff] [blame] | 730 | |
| 731 | return ret; |
| 732 | } |
| 733 | |
| 734 | /** |
Omar Ramirez Luna | 8bb9fde | 2012-09-23 17:28:18 -0600 | [diff] [blame] | 735 | * omap_device_assert_hardreset - set a device's hardreset line |
| 736 | * @pdev: struct platform_device * to reset |
| 737 | * @name: const char * name of the reset line |
| 738 | * |
| 739 | * Set the hardreset line identified by @name on the IP blocks |
| 740 | * associated with the hwmods backing the platform_device @pdev. All |
| 741 | * of the hwmods associated with @pdev must have the same hardreset |
| 742 | * line linked to them for this to work. Passes along the return value |
| 743 | * of omap_hwmod_assert_hardreset() in the event of any failure, or |
| 744 | * returns 0 upon success. |
| 745 | */ |
| 746 | int omap_device_assert_hardreset(struct platform_device *pdev, const char *name) |
| 747 | { |
| 748 | struct omap_device *od = to_omap_device(pdev); |
| 749 | int ret = 0; |
| 750 | int i; |
| 751 | |
| 752 | for (i = 0; i < od->hwmods_cnt; i++) { |
| 753 | ret = omap_hwmod_assert_hardreset(od->hwmods[i], name); |
| 754 | if (ret) |
| 755 | break; |
| 756 | } |
| 757 | |
| 758 | return ret; |
| 759 | } |
| 760 | |
| 761 | /** |
| 762 | * omap_device_deassert_hardreset - release a device's hardreset line |
| 763 | * @pdev: struct platform_device * to reset |
| 764 | * @name: const char * name of the reset line |
| 765 | * |
| 766 | * Release the hardreset line identified by @name on the IP blocks |
| 767 | * associated with the hwmods backing the platform_device @pdev. All |
| 768 | * of the hwmods associated with @pdev must have the same hardreset |
| 769 | * line linked to them for this to work. Passes along the return |
| 770 | * value of omap_hwmod_deassert_hardreset() in the event of any |
| 771 | * failure, or returns 0 upon success. |
| 772 | */ |
| 773 | int omap_device_deassert_hardreset(struct platform_device *pdev, |
| 774 | const char *name) |
| 775 | { |
| 776 | struct omap_device *od = to_omap_device(pdev); |
| 777 | int ret = 0; |
| 778 | int i; |
| 779 | |
| 780 | for (i = 0; i < od->hwmods_cnt; i++) { |
| 781 | ret = omap_hwmod_deassert_hardreset(od->hwmods[i], name); |
| 782 | if (ret) |
| 783 | break; |
| 784 | } |
| 785 | |
| 786 | return ret; |
| 787 | } |
| 788 | |
| 789 | /** |
Nishanth Menon | 1f8a7d5 | 2011-07-27 15:02:32 -0500 | [diff] [blame] | 790 | * omap_device_get_by_hwmod_name() - convert a hwmod name to |
| 791 | * device pointer. |
| 792 | * @oh_name: name of the hwmod device |
| 793 | * |
| 794 | * Returns back a struct device * pointer associated with a hwmod |
| 795 | * device represented by a hwmod_name |
| 796 | */ |
| 797 | struct device *omap_device_get_by_hwmod_name(const char *oh_name) |
| 798 | { |
| 799 | struct omap_hwmod *oh; |
| 800 | |
| 801 | if (!oh_name) { |
| 802 | WARN(1, "%s: no hwmod name!\n", __func__); |
| 803 | return ERR_PTR(-EINVAL); |
| 804 | } |
| 805 | |
| 806 | oh = omap_hwmod_lookup(oh_name); |
Russell King | 857835c | 2013-02-24 10:56:59 +0000 | [diff] [blame] | 807 | if (!oh) { |
Nishanth Menon | 1f8a7d5 | 2011-07-27 15:02:32 -0500 | [diff] [blame] | 808 | WARN(1, "%s: no hwmod for %s\n", __func__, |
| 809 | oh_name); |
Russell King | 857835c | 2013-02-24 10:56:59 +0000 | [diff] [blame] | 810 | return ERR_PTR(-ENODEV); |
Nishanth Menon | 1f8a7d5 | 2011-07-27 15:02:32 -0500 | [diff] [blame] | 811 | } |
Russell King | 857835c | 2013-02-24 10:56:59 +0000 | [diff] [blame] | 812 | if (!oh->od) { |
Nishanth Menon | 1f8a7d5 | 2011-07-27 15:02:32 -0500 | [diff] [blame] | 813 | WARN(1, "%s: no omap_device for %s\n", __func__, |
| 814 | oh_name); |
Russell King | 857835c | 2013-02-24 10:56:59 +0000 | [diff] [blame] | 815 | return ERR_PTR(-ENODEV); |
Nishanth Menon | 1f8a7d5 | 2011-07-27 15:02:32 -0500 | [diff] [blame] | 816 | } |
| 817 | |
Nishanth Menon | 1f8a7d5 | 2011-07-27 15:02:32 -0500 | [diff] [blame] | 818 | return &oh->od->pdev->dev; |
| 819 | } |
Kevin Hilman | 0d5e825 | 2010-08-23 08:10:55 -0700 | [diff] [blame] | 820 | |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 821 | static struct notifier_block platform_nb = { |
| 822 | .notifier_call = _omap_device_notifier_call, |
| 823 | }; |
| 824 | |
Kevin Hilman | 0d5e825 | 2010-08-23 08:10:55 -0700 | [diff] [blame] | 825 | static int __init omap_device_init(void) |
| 826 | { |
Benoit Cousson | dc2d07e | 2011-08-10 13:32:08 +0200 | [diff] [blame] | 827 | bus_register_notifier(&platform_bus_type, &platform_nb); |
Kevin Hilman | 3ec2dec | 2012-02-15 11:47:45 -0800 | [diff] [blame] | 828 | return 0; |
Kevin Hilman | 0d5e825 | 2010-08-23 08:10:55 -0700 | [diff] [blame] | 829 | } |
Tony Lindgren | 8dd5ea7 | 2015-12-03 11:38:09 -0800 | [diff] [blame] | 830 | omap_postcore_initcall(omap_device_init); |
Kevin Hilman | 9634c8d | 2012-07-10 15:06:11 -0700 | [diff] [blame] | 831 | |
| 832 | /** |
| 833 | * omap_device_late_idle - idle devices without drivers |
| 834 | * @dev: struct device * associated with omap_device |
| 835 | * @data: unused |
| 836 | * |
| 837 | * Check the driver bound status of this device, and idle it |
| 838 | * if there is no driver attached. |
| 839 | */ |
| 840 | static int __init omap_device_late_idle(struct device *dev, void *data) |
| 841 | { |
| 842 | struct platform_device *pdev = to_platform_device(dev); |
| 843 | struct omap_device *od = to_omap_device(pdev); |
Rajendra Nayak | f66e329 | 2013-07-28 23:01:50 -0600 | [diff] [blame] | 844 | int i; |
Kevin Hilman | 9634c8d | 2012-07-10 15:06:11 -0700 | [diff] [blame] | 845 | |
| 846 | if (!od) |
| 847 | return 0; |
| 848 | |
| 849 | /* |
| 850 | * If omap_device state is enabled, but has no driver bound, |
| 851 | * idle it. |
| 852 | */ |
Rajendra Nayak | f66e329 | 2013-07-28 23:01:50 -0600 | [diff] [blame] | 853 | |
| 854 | /* |
| 855 | * Some devices (like memory controllers) are always kept |
| 856 | * enabled, and should not be idled even with no drivers. |
| 857 | */ |
| 858 | for (i = 0; i < od->hwmods_cnt; i++) |
| 859 | if (od->hwmods[i]->flags & HWMOD_INIT_NO_IDLE) |
| 860 | return 0; |
| 861 | |
Grygorii Strashko | fe8291e | 2015-09-01 13:59:24 -0700 | [diff] [blame] | 862 | if (od->_driver_status != BUS_NOTIFY_BOUND_DRIVER && |
| 863 | od->_driver_status != BUS_NOTIFY_BIND_DRIVER) { |
Kevin Hilman | 9634c8d | 2012-07-10 15:06:11 -0700 | [diff] [blame] | 864 | if (od->_state == OMAP_DEVICE_STATE_ENABLED) { |
| 865 | dev_warn(dev, "%s: enabled but no driver. Idling\n", |
| 866 | __func__); |
| 867 | omap_device_idle(pdev); |
| 868 | } |
| 869 | } |
| 870 | |
| 871 | return 0; |
| 872 | } |
| 873 | |
| 874 | static int __init omap_device_late_init(void) |
| 875 | { |
| 876 | bus_for_each_dev(&platform_bus_type, NULL, NULL, omap_device_late_idle); |
Tony Lindgren | 4b91f7f | 2014-10-27 13:05:54 -0700 | [diff] [blame] | 877 | |
Kevin Hilman | 9634c8d | 2012-07-10 15:06:11 -0700 | [diff] [blame] | 878 | return 0; |
| 879 | } |
Kevin Hilman | e7e17c5 | 2013-05-08 16:48:01 -0700 | [diff] [blame] | 880 | omap_late_initcall_sync(omap_device_late_init); |