staging: wfx: relocate wfx_fill_sl_key() in secure_link.h
authorJérôme Pouiller <jerome.pouiller@silabs.com>
Thu, 17 Oct 2019 09:40:05 +0000 (09:40 +0000)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 26 Oct 2019 18:42:31 +0000 (20:42 +0200)
"Secure link" feature is not available in in-tree driver (because it
depends on mbedtls). Thus, secure_link.h only empty functions.

Module parameter "slk_key" and associated function wfx_fill_sl_key() had
an unjustifiable place in main.c. This patch relocate them to
secure_link.h.

BTW, content of wfx_fill_sl_key() is now useless. Just keep a warning if
user try to use "slk_key" attribute (unsupported by this driver).

Signed-off-by: Jérôme Pouiller <jerome.pouiller@silabs.com>
Link: https://lore.kernel.org/r/20191017093954.657-2-Jerome.Pouiller@silabs.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/wfx/main.c
drivers/staging/wfx/main.h
drivers/staging/wfx/secure_link.h

index 157e0fc0107efed2e4dc442357b9b47fee644b71..3a43f190d96ac68aadedf9a34577d2e33b63b385 100644 (file)
@@ -44,10 +44,6 @@ static int gpio_wakeup = -2;
 module_param(gpio_wakeup, int, 0644);
 MODULE_PARM_DESC(gpio_wakeup, "gpio number for wakeup. -1 for none.");
 
-static char *slk_key;
-module_param(slk_key, charp, 0600);
-MODULE_PARM_DESC(slk_key, "secret key for secure link (expect 64 hexadecimal digits).");
-
 #define RATETAB_ENT(_rate, _rateid, _flags) { \
        .bitrate  = (_rate),   \
        .hw_value = (_rateid), \
@@ -194,29 +190,6 @@ struct gpio_desc *wfx_get_gpio(struct device *dev, int override, const char *lab
        return ret;
 }
 
-static void wfx_fill_sl_key(struct device *dev, struct wfx_platform_data *pdata)
-{
-       const char *ascii_key = NULL;
-       int ret = 0;
-
-       if (slk_key)
-               ascii_key = slk_key;
-       if (!ascii_key)
-               ret = of_property_read_string(dev->of_node, "slk_key", &ascii_key);
-       if (ret == -EILSEQ || ret == -ENODATA)
-               dev_err(dev, "ignoring malformatted key from DT\n");
-       if (!ascii_key)
-               return;
-
-       ret = hex2bin(pdata->slk_key, ascii_key, sizeof(pdata->slk_key));
-       if (ret) {
-               dev_err(dev, "ignoring malformatted key: %s\n", ascii_key);
-               memset(pdata->slk_key, 0, sizeof(pdata->slk_key));
-               return;
-       }
-       dev_err(dev, "secure link is not supported by this driver, ignoring provided key\n");
-}
-
 /* NOTE: wfx_send_pds() destroy buf */
 int wfx_send_pds(struct wfx_dev *wdev, unsigned char *buf, size_t len)
 {
@@ -334,7 +307,7 @@ struct wfx_dev *wfx_init_common(struct device *dev,
        memcpy(&wdev->pdata, pdata, sizeof(*pdata));
        of_property_read_string(dev->of_node, "config-file", &wdev->pdata.file_pds);
        wdev->pdata.gpio_wakeup = wfx_get_gpio(dev, gpio_wakeup, "wakeup");
-       wfx_fill_sl_key(dev, &wdev->pdata);
+       wfx_sl_fill_pdata(dev, &wdev->pdata);
 
        mutex_init(&wdev->conf_mutex);
        mutex_init(&wdev->rx_stats_lock);
index f2b07ed1627c8c845bb76a1c411c74804d642b36..875f8c2278037d8699156f1d06784d71529b1bcf 100644 (file)
@@ -22,7 +22,6 @@ struct wfx_platform_data {
        /* Keyset and ".sec" extention will appended to this string */
        const char *file_fw;
        const char *file_pds;
-       unsigned char slk_key[API_KEY_VALUE_SIZE];
        struct gpio_desc *gpio_wakeup;
        /*
         * if true HIF D_out is sampled on the rising edge of the clock
index e2da1c73c7609c4ece09cad647c37f14ba23c593..376d7bc4c0c466e4fb2e86bcfe154b0d57edbe5e 100644 (file)
@@ -5,6 +5,8 @@
 #ifndef WFX_SECURE_LINK_H
 #define WFX_SECURE_LINK_H
 
+#include <linux/of.h>
+
 #include "hif_api_general.h"
 
 struct wfx_dev;
@@ -33,6 +35,13 @@ static inline int wfx_sl_check_pubkey(struct wfx_dev *wdev, uint8_t *ncp_pubkey,
        return -EIO;
 }
 
+static inline void wfx_sl_fill_pdata(struct device *dev,
+                                    struct wfx_platform_data *pdata)
+{
+       if (of_find_property(dev->of_node, "slk_key", NULL))
+               dev_err(dev, "secure link is not supported by this driver, ignoring provided key\n");
+}
+
 static inline int wfx_sl_init(struct wfx_dev *wdev)
 {
        return -EIO;