hwmon: (core) Add power attribute support to new API
[linux/fpc-iii.git] / drivers / soc / ti / wkup_m3_ipc.c
blob8823cc81ae45345bd0d632436eb4ce387d456e0b
1 /*
2 * AMx3 Wkup M3 IPC driver
4 * Copyright (C) 2015 Texas Instruments, Inc.
6 * Dave Gerlach <d-gerlach@ti.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License
10 * version 2 as published by the Free Software Foundation.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
18 #include <linux/err.h>
19 #include <linux/kernel.h>
20 #include <linux/kthread.h>
21 #include <linux/interrupt.h>
22 #include <linux/irq.h>
23 #include <linux/module.h>
24 #include <linux/of.h>
25 #include <linux/omap-mailbox.h>
26 #include <linux/platform_device.h>
27 #include <linux/remoteproc.h>
28 #include <linux/suspend.h>
29 #include <linux/wkup_m3_ipc.h>
31 #define AM33XX_CTRL_IPC_REG_COUNT 0x8
32 #define AM33XX_CTRL_IPC_REG_OFFSET(m) (0x4 + 4 * (m))
34 /* AM33XX M3_TXEV_EOI register */
35 #define AM33XX_CONTROL_M3_TXEV_EOI 0x00
37 #define AM33XX_M3_TXEV_ACK (0x1 << 0)
38 #define AM33XX_M3_TXEV_ENABLE (0x0 << 0)
40 #define IPC_CMD_DS0 0x4
41 #define IPC_CMD_STANDBY 0xc
42 #define IPC_CMD_IDLE 0x10
43 #define IPC_CMD_RESET 0xe
44 #define DS_IPC_DEFAULT 0xffffffff
45 #define M3_VERSION_UNKNOWN 0x0000ffff
46 #define M3_BASELINE_VERSION 0x191
47 #define M3_STATUS_RESP_MASK (0xffff << 16)
48 #define M3_FW_VERSION_MASK 0xffff
50 #define M3_STATE_UNKNOWN 0
51 #define M3_STATE_RESET 1
52 #define M3_STATE_INITED 2
53 #define M3_STATE_MSG_FOR_LP 3
54 #define M3_STATE_MSG_FOR_RESET 4
56 static struct wkup_m3_ipc *m3_ipc_state;
58 static void am33xx_txev_eoi(struct wkup_m3_ipc *m3_ipc)
60 writel(AM33XX_M3_TXEV_ACK,
61 m3_ipc->ipc_mem_base + AM33XX_CONTROL_M3_TXEV_EOI);
64 static void am33xx_txev_enable(struct wkup_m3_ipc *m3_ipc)
66 writel(AM33XX_M3_TXEV_ENABLE,
67 m3_ipc->ipc_mem_base + AM33XX_CONTROL_M3_TXEV_EOI);
70 static void wkup_m3_ctrl_ipc_write(struct wkup_m3_ipc *m3_ipc,
71 u32 val, int ipc_reg_num)
73 if (WARN(ipc_reg_num < 0 || ipc_reg_num > AM33XX_CTRL_IPC_REG_COUNT,
74 "ipc register operation out of range"))
75 return;
77 writel(val, m3_ipc->ipc_mem_base +
78 AM33XX_CTRL_IPC_REG_OFFSET(ipc_reg_num));
81 static unsigned int wkup_m3_ctrl_ipc_read(struct wkup_m3_ipc *m3_ipc,
82 int ipc_reg_num)
84 if (WARN(ipc_reg_num < 0 || ipc_reg_num > AM33XX_CTRL_IPC_REG_COUNT,
85 "ipc register operation out of range"))
86 return 0;
88 return readl(m3_ipc->ipc_mem_base +
89 AM33XX_CTRL_IPC_REG_OFFSET(ipc_reg_num));
92 static int wkup_m3_fw_version_read(struct wkup_m3_ipc *m3_ipc)
94 int val;
96 val = wkup_m3_ctrl_ipc_read(m3_ipc, 2);
98 return val & M3_FW_VERSION_MASK;
101 static irqreturn_t wkup_m3_txev_handler(int irq, void *ipc_data)
103 struct wkup_m3_ipc *m3_ipc = ipc_data;
104 struct device *dev = m3_ipc->dev;
105 int ver = 0;
107 am33xx_txev_eoi(m3_ipc);
109 switch (m3_ipc->state) {
110 case M3_STATE_RESET:
111 ver = wkup_m3_fw_version_read(m3_ipc);
113 if (ver == M3_VERSION_UNKNOWN ||
114 ver < M3_BASELINE_VERSION) {
115 dev_warn(dev, "CM3 Firmware Version %x not supported\n",
116 ver);
117 } else {
118 dev_info(dev, "CM3 Firmware Version = 0x%x\n", ver);
121 m3_ipc->state = M3_STATE_INITED;
122 complete(&m3_ipc->sync_complete);
123 break;
124 case M3_STATE_MSG_FOR_RESET:
125 m3_ipc->state = M3_STATE_INITED;
126 complete(&m3_ipc->sync_complete);
127 break;
128 case M3_STATE_MSG_FOR_LP:
129 complete(&m3_ipc->sync_complete);
130 break;
131 case M3_STATE_UNKNOWN:
132 dev_warn(dev, "Unknown CM3 State\n");
135 am33xx_txev_enable(m3_ipc);
137 return IRQ_HANDLED;
140 static int wkup_m3_ping(struct wkup_m3_ipc *m3_ipc)
142 struct device *dev = m3_ipc->dev;
143 mbox_msg_t dummy_msg = 0;
144 int ret;
146 if (!m3_ipc->mbox) {
147 dev_err(dev,
148 "No IPC channel to communicate with wkup_m3!\n");
149 return -EIO;
153 * Write a dummy message to the mailbox in order to trigger the RX
154 * interrupt to alert the M3 that data is available in the IPC
155 * registers. We must enable the IRQ here and disable it after in
156 * the RX callback to avoid multiple interrupts being received
157 * by the CM3.
159 ret = mbox_send_message(m3_ipc->mbox, &dummy_msg);
160 if (ret < 0) {
161 dev_err(dev, "%s: mbox_send_message() failed: %d\n",
162 __func__, ret);
163 return ret;
166 ret = wait_for_completion_timeout(&m3_ipc->sync_complete,
167 msecs_to_jiffies(500));
168 if (!ret) {
169 dev_err(dev, "MPU<->CM3 sync failure\n");
170 m3_ipc->state = M3_STATE_UNKNOWN;
171 return -EIO;
174 mbox_client_txdone(m3_ipc->mbox, 0);
175 return 0;
178 static int wkup_m3_ping_noirq(struct wkup_m3_ipc *m3_ipc)
180 struct device *dev = m3_ipc->dev;
181 mbox_msg_t dummy_msg = 0;
182 int ret;
184 if (!m3_ipc->mbox) {
185 dev_err(dev,
186 "No IPC channel to communicate with wkup_m3!\n");
187 return -EIO;
190 ret = mbox_send_message(m3_ipc->mbox, &dummy_msg);
191 if (ret < 0) {
192 dev_err(dev, "%s: mbox_send_message() failed: %d\n",
193 __func__, ret);
194 return ret;
197 mbox_client_txdone(m3_ipc->mbox, 0);
198 return 0;
201 static int wkup_m3_is_available(struct wkup_m3_ipc *m3_ipc)
203 return ((m3_ipc->state != M3_STATE_RESET) &&
204 (m3_ipc->state != M3_STATE_UNKNOWN));
207 /* Public functions */
209 * wkup_m3_set_mem_type - Pass wkup_m3 which type of memory is in use
210 * @mem_type: memory type value read directly from emif
212 * wkup_m3 must know what memory type is in use to properly suspend
213 * and resume.
215 static void wkup_m3_set_mem_type(struct wkup_m3_ipc *m3_ipc, int mem_type)
217 m3_ipc->mem_type = mem_type;
221 * wkup_m3_set_resume_address - Pass wkup_m3 resume address
222 * @addr: Physical address from which resume code should execute
224 static void wkup_m3_set_resume_address(struct wkup_m3_ipc *m3_ipc, void *addr)
226 m3_ipc->resume_addr = (unsigned long)addr;
230 * wkup_m3_request_pm_status - Retrieve wkup_m3 status code after suspend
232 * Returns code representing the status of a low power mode transition.
233 * 0 - Successful transition
234 * 1 - Failure to transition to low power state
236 static int wkup_m3_request_pm_status(struct wkup_m3_ipc *m3_ipc)
238 unsigned int i;
239 int val;
241 val = wkup_m3_ctrl_ipc_read(m3_ipc, 1);
243 i = M3_STATUS_RESP_MASK & val;
244 i >>= __ffs(M3_STATUS_RESP_MASK);
246 return i;
250 * wkup_m3_prepare_low_power - Request preparation for transition to
251 * low power state
252 * @state: A kernel suspend state to enter, either MEM or STANDBY
254 * Returns 0 if preparation was successful, otherwise returns error code
256 static int wkup_m3_prepare_low_power(struct wkup_m3_ipc *m3_ipc, int state)
258 struct device *dev = m3_ipc->dev;
259 int m3_power_state;
260 int ret = 0;
262 if (!wkup_m3_is_available(m3_ipc))
263 return -ENODEV;
265 switch (state) {
266 case WKUP_M3_DEEPSLEEP:
267 m3_power_state = IPC_CMD_DS0;
268 break;
269 case WKUP_M3_STANDBY:
270 m3_power_state = IPC_CMD_STANDBY;
271 break;
272 case WKUP_M3_IDLE:
273 m3_power_state = IPC_CMD_IDLE;
274 break;
275 default:
276 return 1;
279 /* Program each required IPC register then write defaults to others */
280 wkup_m3_ctrl_ipc_write(m3_ipc, m3_ipc->resume_addr, 0);
281 wkup_m3_ctrl_ipc_write(m3_ipc, m3_power_state, 1);
282 wkup_m3_ctrl_ipc_write(m3_ipc, m3_ipc->mem_type, 4);
284 wkup_m3_ctrl_ipc_write(m3_ipc, DS_IPC_DEFAULT, 2);
285 wkup_m3_ctrl_ipc_write(m3_ipc, DS_IPC_DEFAULT, 3);
286 wkup_m3_ctrl_ipc_write(m3_ipc, DS_IPC_DEFAULT, 5);
287 wkup_m3_ctrl_ipc_write(m3_ipc, DS_IPC_DEFAULT, 6);
288 wkup_m3_ctrl_ipc_write(m3_ipc, DS_IPC_DEFAULT, 7);
290 m3_ipc->state = M3_STATE_MSG_FOR_LP;
292 if (state == WKUP_M3_IDLE)
293 ret = wkup_m3_ping_noirq(m3_ipc);
294 else
295 ret = wkup_m3_ping(m3_ipc);
297 if (ret) {
298 dev_err(dev, "Unable to ping CM3\n");
299 return ret;
302 return 0;
306 * wkup_m3_finish_low_power - Return m3 to reset state
308 * Returns 0 if reset was successful, otherwise returns error code
310 static int wkup_m3_finish_low_power(struct wkup_m3_ipc *m3_ipc)
312 struct device *dev = m3_ipc->dev;
313 int ret = 0;
315 if (!wkup_m3_is_available(m3_ipc))
316 return -ENODEV;
318 wkup_m3_ctrl_ipc_write(m3_ipc, IPC_CMD_RESET, 1);
319 wkup_m3_ctrl_ipc_write(m3_ipc, DS_IPC_DEFAULT, 2);
321 m3_ipc->state = M3_STATE_MSG_FOR_RESET;
323 ret = wkup_m3_ping(m3_ipc);
324 if (ret) {
325 dev_err(dev, "Unable to ping CM3\n");
326 return ret;
329 return 0;
332 static struct wkup_m3_ipc_ops ipc_ops = {
333 .set_mem_type = wkup_m3_set_mem_type,
334 .set_resume_address = wkup_m3_set_resume_address,
335 .prepare_low_power = wkup_m3_prepare_low_power,
336 .finish_low_power = wkup_m3_finish_low_power,
337 .request_pm_status = wkup_m3_request_pm_status,
341 * wkup_m3_ipc_get - Return handle to wkup_m3_ipc
343 * Returns NULL if the wkup_m3 is not yet available, otherwise returns
344 * pointer to wkup_m3_ipc struct.
346 struct wkup_m3_ipc *wkup_m3_ipc_get(void)
348 if (m3_ipc_state)
349 get_device(m3_ipc_state->dev);
350 else
351 return NULL;
353 return m3_ipc_state;
355 EXPORT_SYMBOL_GPL(wkup_m3_ipc_get);
358 * wkup_m3_ipc_put - Free handle to wkup_m3_ipc returned from wkup_m3_ipc_get
359 * @m3_ipc: A pointer to wkup_m3_ipc struct returned by wkup_m3_ipc_get
361 void wkup_m3_ipc_put(struct wkup_m3_ipc *m3_ipc)
363 if (m3_ipc_state)
364 put_device(m3_ipc_state->dev);
366 EXPORT_SYMBOL_GPL(wkup_m3_ipc_put);
368 static void wkup_m3_rproc_boot_thread(struct wkup_m3_ipc *m3_ipc)
370 struct device *dev = m3_ipc->dev;
371 int ret;
373 wait_for_completion(&m3_ipc->rproc->firmware_loading_complete);
375 init_completion(&m3_ipc->sync_complete);
377 ret = rproc_boot(m3_ipc->rproc);
378 if (ret)
379 dev_err(dev, "rproc_boot failed\n");
381 do_exit(0);
384 static int wkup_m3_ipc_probe(struct platform_device *pdev)
386 struct device *dev = &pdev->dev;
387 int irq, ret;
388 phandle rproc_phandle;
389 struct rproc *m3_rproc;
390 struct resource *res;
391 struct task_struct *task;
392 struct wkup_m3_ipc *m3_ipc;
394 m3_ipc = devm_kzalloc(dev, sizeof(*m3_ipc), GFP_KERNEL);
395 if (!m3_ipc)
396 return -ENOMEM;
398 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
399 m3_ipc->ipc_mem_base = devm_ioremap_resource(dev, res);
400 if (IS_ERR(m3_ipc->ipc_mem_base)) {
401 dev_err(dev, "could not ioremap ipc_mem\n");
402 return PTR_ERR(m3_ipc->ipc_mem_base);
405 irq = platform_get_irq(pdev, 0);
406 if (!irq) {
407 dev_err(&pdev->dev, "no irq resource\n");
408 return -ENXIO;
411 ret = devm_request_irq(dev, irq, wkup_m3_txev_handler,
412 0, "wkup_m3_txev", m3_ipc);
413 if (ret) {
414 dev_err(dev, "request_irq failed\n");
415 return ret;
418 m3_ipc->mbox_client.dev = dev;
419 m3_ipc->mbox_client.tx_done = NULL;
420 m3_ipc->mbox_client.tx_prepare = NULL;
421 m3_ipc->mbox_client.rx_callback = NULL;
422 m3_ipc->mbox_client.tx_block = false;
423 m3_ipc->mbox_client.knows_txdone = false;
425 m3_ipc->mbox = mbox_request_channel(&m3_ipc->mbox_client, 0);
427 if (IS_ERR(m3_ipc->mbox)) {
428 dev_err(dev, "IPC Request for A8->M3 Channel failed! %ld\n",
429 PTR_ERR(m3_ipc->mbox));
430 return PTR_ERR(m3_ipc->mbox);
433 if (of_property_read_u32(dev->of_node, "ti,rproc", &rproc_phandle)) {
434 dev_err(&pdev->dev, "could not get rproc phandle\n");
435 ret = -ENODEV;
436 goto err_free_mbox;
439 m3_rproc = rproc_get_by_phandle(rproc_phandle);
440 if (!m3_rproc) {
441 dev_err(&pdev->dev, "could not get rproc handle\n");
442 ret = -EPROBE_DEFER;
443 goto err_free_mbox;
446 m3_ipc->rproc = m3_rproc;
447 m3_ipc->dev = dev;
448 m3_ipc->state = M3_STATE_RESET;
450 m3_ipc->ops = &ipc_ops;
453 * Wait for firmware loading completion in a thread so we
454 * can boot the wkup_m3 as soon as it's ready without holding
455 * up kernel boot
457 task = kthread_run((void *)wkup_m3_rproc_boot_thread, m3_ipc,
458 "wkup_m3_rproc_loader");
460 if (IS_ERR(task)) {
461 dev_err(dev, "can't create rproc_boot thread\n");
462 goto err_put_rproc;
465 m3_ipc_state = m3_ipc;
467 return 0;
469 err_put_rproc:
470 rproc_put(m3_rproc);
471 err_free_mbox:
472 mbox_free_channel(m3_ipc->mbox);
473 return ret;
476 static int wkup_m3_ipc_remove(struct platform_device *pdev)
478 mbox_free_channel(m3_ipc_state->mbox);
480 rproc_shutdown(m3_ipc_state->rproc);
481 rproc_put(m3_ipc_state->rproc);
483 m3_ipc_state = NULL;
485 return 0;
488 static const struct of_device_id wkup_m3_ipc_of_match[] = {
489 { .compatible = "ti,am3352-wkup-m3-ipc", },
490 { .compatible = "ti,am4372-wkup-m3-ipc", },
493 MODULE_DEVICE_TABLE(of, wkup_m3_ipc_of_match);
495 static struct platform_driver wkup_m3_ipc_driver = {
496 .probe = wkup_m3_ipc_probe,
497 .remove = wkup_m3_ipc_remove,
498 .driver = {
499 .name = "wkup_m3_ipc",
500 .of_match_table = wkup_m3_ipc_of_match,
504 module_platform_driver(wkup_m3_ipc_driver);
506 MODULE_LICENSE("GPL v2");
507 MODULE_DESCRIPTION("wkup m3 remote processor ipc driver");
508 MODULE_AUTHOR("Dave Gerlach <d-gerlach@ti.com>");