Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 1 | /* |
| 2 | * omap-ocp2scp.c - transform ocp interface protocol to scp protocol |
| 3 | * |
| 4 | * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com |
| 5 | * This program is free software; you can redistribute it and/or modify |
| 6 | * it under the terms of the GNU General Public License as published by |
| 7 | * the Free Software Foundation; either version 2 of the License, or |
| 8 | * (at your option) any later version. |
| 9 | * |
| 10 | * Author: Kishon Vijay Abraham I <kishon@ti.com> |
| 11 | * |
| 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. |
| 16 | * |
| 17 | */ |
| 18 | |
Kishon Vijay Abraham I | cdf6124 | 2015-03-17 16:54:51 +0530 | [diff] [blame] | 19 | #include <linux/io.h> |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 20 | #include <linux/module.h> |
| 21 | #include <linux/platform_device.h> |
| 22 | #include <linux/err.h> |
| 23 | #include <linux/pm_runtime.h> |
| 24 | #include <linux/of.h> |
| 25 | #include <linux/of_platform.h> |
| 26 | |
Kishon Vijay Abraham I | cdf6124 | 2015-03-17 16:54:51 +0530 | [diff] [blame] | 27 | #define OCP2SCP_TIMING 0x18 |
| 28 | #define SYNC2_MASK 0xf |
| 29 | |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 30 | static int ocp2scp_remove_devices(struct device *dev, void *c) |
| 31 | { |
| 32 | struct platform_device *pdev = to_platform_device(dev); |
| 33 | |
| 34 | platform_device_unregister(pdev); |
| 35 | |
| 36 | return 0; |
| 37 | } |
| 38 | |
Greg Kroah-Hartman | 0fe763c | 2012-12-21 15:14:44 -0800 | [diff] [blame] | 39 | static int omap_ocp2scp_probe(struct platform_device *pdev) |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 40 | { |
Kishon Vijay Abraham I | 0133370 | 2012-11-02 13:44:46 +0530 | [diff] [blame] | 41 | int ret; |
Kishon Vijay Abraham I | cdf6124 | 2015-03-17 16:54:51 +0530 | [diff] [blame] | 42 | u32 reg; |
| 43 | void __iomem *regs; |
| 44 | struct resource *res; |
Kishon Vijay Abraham I | 0133370 | 2012-11-02 13:44:46 +0530 | [diff] [blame] | 45 | struct device_node *np = pdev->dev.of_node; |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 46 | |
| 47 | if (np) { |
| 48 | ret = of_platform_populate(np, NULL, NULL, &pdev->dev); |
| 49 | if (ret) { |
Kishon Vijay Abraham I | 0133370 | 2012-11-02 13:44:46 +0530 | [diff] [blame] | 50 | dev_err(&pdev->dev, |
| 51 | "failed to add resources for ocp2scp child\n"); |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 52 | goto err0; |
| 53 | } |
| 54 | } |
Kishon Vijay Abraham I | 0133370 | 2012-11-02 13:44:46 +0530 | [diff] [blame] | 55 | |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 56 | pm_runtime_enable(&pdev->dev); |
Kishon Vijay Abraham I | cdf6124 | 2015-03-17 16:54:51 +0530 | [diff] [blame] | 57 | /* |
| 58 | * As per AM572x TRM: http://www.ti.com/lit/ug/spruhz6/spruhz6.pdf |
| 59 | * under section 26.3.2.2, table 26-26 OCP2SCP TIMING Caution; |
| 60 | * As per OMAP4430 TRM: http://www.ti.com/lit/ug/swpu231ap/swpu231ap.pdf |
| 61 | * under section 23.12.6.2.2 , Table 23-1213 OCP2SCP TIMING Caution; |
| 62 | * As per OMAP4460 TRM: http://www.ti.com/lit/ug/swpu235ab/swpu235ab.pdf |
| 63 | * under section 23.12.6.2.2, Table 23-1213 OCP2SCP TIMING Caution; |
| 64 | * As per OMAP543x TRM http://www.ti.com/lit/pdf/swpu249 |
| 65 | * under section 27.3.2.2, Table 27-27 OCP2SCP TIMING Caution; |
| 66 | * |
| 67 | * Read path of OCP2SCP is not working properly due to low reset value |
| 68 | * of SYNC2 parameter in OCP2SCP. Suggested reset value is 0x6 or more. |
| 69 | */ |
| 70 | if (!of_device_is_compatible(np, "ti,am437x-ocp2scp")) { |
| 71 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 72 | regs = devm_ioremap_resource(&pdev->dev, res); |
| 73 | if (IS_ERR(regs)) |
| 74 | goto err0; |
| 75 | |
| 76 | pm_runtime_get_sync(&pdev->dev); |
| 77 | reg = readl_relaxed(regs + OCP2SCP_TIMING); |
| 78 | reg &= ~(SYNC2_MASK); |
| 79 | reg |= 0x6; |
| 80 | writel_relaxed(reg, regs + OCP2SCP_TIMING); |
| 81 | pm_runtime_put_sync(&pdev->dev); |
| 82 | } |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 83 | |
| 84 | return 0; |
| 85 | |
| 86 | err0: |
| 87 | device_for_each_child(&pdev->dev, NULL, ocp2scp_remove_devices); |
| 88 | |
| 89 | return ret; |
| 90 | } |
| 91 | |
Greg Kroah-Hartman | 0fe763c | 2012-12-21 15:14:44 -0800 | [diff] [blame] | 92 | static int omap_ocp2scp_remove(struct platform_device *pdev) |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 93 | { |
| 94 | pm_runtime_disable(&pdev->dev); |
| 95 | device_for_each_child(&pdev->dev, NULL, ocp2scp_remove_devices); |
| 96 | |
| 97 | return 0; |
| 98 | } |
| 99 | |
| 100 | #ifdef CONFIG_OF |
| 101 | static const struct of_device_id omap_ocp2scp_id_table[] = { |
| 102 | { .compatible = "ti,omap-ocp2scp" }, |
Kishon Vijay Abraham I | cdf6124 | 2015-03-17 16:54:51 +0530 | [diff] [blame] | 103 | { .compatible = "ti,am437x-ocp2scp" }, |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 104 | {} |
| 105 | }; |
Kishon Vijay Abraham I | 46ca681 | 2012-08-23 23:10:26 +0530 | [diff] [blame] | 106 | MODULE_DEVICE_TABLE(of, omap_ocp2scp_id_table); |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 107 | #endif |
| 108 | |
| 109 | static struct platform_driver omap_ocp2scp_driver = { |
| 110 | .probe = omap_ocp2scp_probe, |
Greg Kroah-Hartman | 0fe763c | 2012-12-21 15:14:44 -0800 | [diff] [blame] | 111 | .remove = omap_ocp2scp_remove, |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 112 | .driver = { |
| 113 | .name = "omap-ocp2scp", |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 114 | .of_match_table = of_match_ptr(omap_ocp2scp_id_table), |
| 115 | }, |
| 116 | }; |
| 117 | |
| 118 | module_platform_driver(omap_ocp2scp_driver); |
| 119 | |
Axel Lin | 7ef71b7 | 2015-09-25 08:51:42 +0800 | [diff] [blame] | 120 | MODULE_ALIAS("platform:omap-ocp2scp"); |
Kishon Vijay Abraham I | 26a84b3 | 2012-08-22 14:10:02 +0530 | [diff] [blame] | 121 | MODULE_AUTHOR("Texas Instruments Inc."); |
| 122 | MODULE_DESCRIPTION("OMAP OCP2SCP driver"); |
| 123 | MODULE_LICENSE("GPL v2"); |