]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - rpmsg/hwspinlock.git/blobdiff - drivers/soc/ti/wkup_m3_ipc.c
wkup_m3_ipc: Add support for toggling VTT regulator
[rpmsg/hwspinlock.git] / drivers / soc / ti / wkup_m3_ipc.c
index f5cb8c0af09f3ab8ade4443ada270bf1f1eefa92..5a9c1f5042207f84390f4cdeebae538896b1a99c 100644 (file)
 #define M3_FW_VERSION_MASK             0xffff
 #define M3_WAKE_SRC_MASK               0xff
 
+#define IPC_MEM_TYPE_SHIFT             (0x0)
+#define IPC_MEM_TYPE_MASK              (0x7 << 0)
+#define IPC_VTT_STAT_SHIFT             (0x3)
+#define IPC_VTT_STAT_MASK              (0x1 << 3)
+#define IPC_VTT_GPIO_PIN_SHIFT         (0x4)
+#define IPC_VTT_GPIO_PIN_MASK          (0x3f << 4)
+
 #define M3_STATE_UNKNOWN               0
 #define M3_STATE_RESET                 1
 #define M3_STATE_INITED                        2
@@ -222,6 +229,12 @@ static int wkup_m3_is_available(struct wkup_m3_ipc *m3_ipc)
                (m3_ipc->state != M3_STATE_UNKNOWN));
 }
 
+static void wkup_m3_set_vtt_gpio(struct wkup_m3_ipc *m3_ipc, int gpio)
+{
+       m3_ipc->vtt_conf = (1 << IPC_VTT_STAT_SHIFT) |
+                           (gpio << IPC_VTT_GPIO_PIN_SHIFT);
+}
+
 /* Public functions */
 /**
  * wkup_m3_set_mem_type - Pass wkup_m3 which type of memory is in use
@@ -297,7 +310,8 @@ static int wkup_m3_prepare_low_power(struct wkup_m3_ipc *m3_ipc, int state)
        /* Program each required IPC register then write defaults to others */
        wkup_m3_ctrl_ipc_write(m3_ipc, m3_ipc->resume_addr, 0);
        wkup_m3_ctrl_ipc_write(m3_ipc, m3_power_state, 1);
-       wkup_m3_ctrl_ipc_write(m3_ipc, m3_ipc->mem_type, 4);
+       wkup_m3_ctrl_ipc_write(m3_ipc, m3_ipc->mem_type |
+                              m3_ipc->vtt_conf, 4);
 
        wkup_m3_ctrl_ipc_write(m3_ipc, DS_IPC_DEFAULT, 2);
        wkup_m3_ctrl_ipc_write(m3_ipc, DS_IPC_DEFAULT, 3);
@@ -433,12 +447,13 @@ static void wkup_m3_rproc_boot_thread(struct wkup_m3_ipc *m3_ipc)
 static int wkup_m3_ipc_probe(struct platform_device *pdev)
 {
        struct device *dev = &pdev->dev;
-       int irq, ret;
+       int irq, ret, temp;
        phandle rproc_phandle;
        struct rproc *m3_rproc;
        struct resource *res;
        struct task_struct *task;
        struct wkup_m3_ipc *m3_ipc;
+       struct device_node *np = dev->of_node;
 
        m3_ipc = devm_kzalloc(dev, sizeof(*m3_ipc), GFP_KERNEL);
        if (!m3_ipc)
@@ -498,6 +513,14 @@ static int wkup_m3_ipc_probe(struct platform_device *pdev)
 
        m3_ipc->ops = &ipc_ops;
 
+       if (of_find_property(np, "ti,needs-vtt-toggle", NULL) &&
+           !(of_property_read_u32(np, "ti,vtt-gpio-pin", &temp))) {
+               if (temp >= 0 && temp <= 31)
+                       wkup_m3_set_vtt_gpio(m3_ipc, temp);
+               else
+                       dev_warn(dev, "Invalid VTT GPIO(%d) pin\n", temp);
+       }
+
        /*
         * Wait for firmware loading completion in a thread so we
         * can boot the wkup_m3 as soon as it's ready without holding