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