]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
staging: mei: removing dependency between WD and AMTHI init function.
authorOren Weil <oren.jer.weil@intel.com>
Wed, 7 Sep 2011 06:03:07 +0000 (09:03 +0300)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 9 Sep 2011 20:28:20 +0000 (13:28 -0700)
AMTHI need to be initialized after WD Client was initialized, moving the AMTHI outside
of the WD initialization function.
in order to remove the coupling between the initialization of those clients.

AMTHI is getting initialized (getting connected to the FW feature/client) in two ways:
 1) if mei driver fails to send connect message to watchdog client (WD initialization), then
    immediately the AMTHI client getting initialized right after the watchdog initialization function.
 2) if Watchdog client success to send connect message to watchdog client, then only after
    the driver is getting the connect response message the AMTHI client is getting initialized

Signed-off-by: Oren Weil <oren.jer.weil@intel.com>
Acked-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/mei/init.c
drivers/staging/mei/interface.h
drivers/staging/mei/wd.c

index 0fa8216fd0eb09d48dd0f4b9d8165a9954beef9d..69a57e77a09d78b561a971b84e4afdcc169f6a34 100644 (file)
@@ -521,7 +521,13 @@ void mei_host_client_properties(struct mei_device *dev)
        bitmap_set(dev->host_clients_map, 0, 3);
        dev->mei_state = MEI_ENABLED;
 
-       mei_wd_host_init(dev);
+       /* if wd initialization fails, initialization the AMTHI client,
+        * otherwise the AMTHI client will be initialized after the WD client connect response
+        * will be received
+        */
+       if (mei_wd_host_init(dev))
+               mei_host_init_iamthif(dev);
+
        return;
 }
 
index d0bf5cf4f3ec83c2afa37c86bf002f62b63d5c00..7bcf0966030a218901fe366ccf2b34d268a7c045 100644 (file)
@@ -48,7 +48,7 @@ int mei_flow_ctrl_creds(struct mei_device *dev, struct mei_cl *cl);
 
 int mei_wd_send(struct mei_device *dev);
 int mei_wd_stop(struct mei_device *dev, bool preserve);
-void mei_wd_host_init(struct mei_device *dev);
+bool mei_wd_host_init(struct mei_device *dev);
 void mei_wd_start_setup(struct mei_device *dev);
 
 int mei_flow_ctrl_reduce(struct mei_device *dev, struct mei_cl *cl);
index 42f04efc90e4e477a6968be72aeb095e1a87554c..721487d05ba8c99ffd548a564b17bf7a75d996db 100644 (file)
@@ -63,8 +63,10 @@ void mei_wd_start_setup(struct mei_device *dev)
  *
  * @dev: the device structure
  */
-void mei_wd_host_init(struct mei_device *dev)
+bool mei_wd_host_init(struct mei_device *dev)
 {
+       bool ret = false;
+
        mei_cl_init(&dev->wd_cl, dev);
 
        /* look for WD client and connect to it */
@@ -83,19 +85,25 @@ void mei_wd_host_init(struct mei_device *dev)
                                dev_dbg(&dev->pdev->dev, "Failed to connect to WD client\n");
                                dev->wd_cl.state = MEI_FILE_DISCONNECTED;
                                dev->wd_cl.host_client_id = 0;
-                               mei_host_init_iamthif(dev) ;
+                               ret = false;
+                               goto end;
                        } else {
                                dev->wd_cl.timer_count = CONNECT_TIMEOUT;
                        }
                } else {
                        dev_dbg(&dev->pdev->dev, "Failed to find WD client\n");
-                       mei_host_init_iamthif(dev) ;
+                       ret = false;
+                       goto end;
                }
        } else {
                dev->wd_bypass = true;
                dev_dbg(&dev->pdev->dev, "WD requested to be disabled\n");
-               mei_host_init_iamthif(dev) ;
+               ret = false;
+               goto end;
        }
+
+end:
+       return ret;
 }
 
 /**