]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
mei: cleanup slots to data conversions
authorTomas Winkler <tomas.winkler@intel.com>
Mon, 23 Jul 2018 10:21:22 +0000 (13:21 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 24 Jul 2018 12:16:57 +0000 (14:16 +0200)
Cleanup conversions between slots and data.
Define MEI_SLOT_SIZE instead of using 4 or sizeof(u32) across
the source code.

Signed-off-by: Tomas Winkler <tomas.winkler@intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/mei/client.c
drivers/misc/mei/hw-me.c
drivers/misc/mei/hw-txe.c
drivers/misc/mei/mei_dev.h

index 5a673d09585f6f00270e00a3c34aae24c13f5c10..79e200d71652c0041f08e55805810f2f87be2c8e 100644 (file)
@@ -1597,7 +1597,7 @@ int mei_cl_irq_write(struct mei_cl *cl, struct mei_cl_cb *cb,
        /* Split the message only if we can write the whole host buffer */
        } else if ((u32)slots == dev->hbuf_depth) {
                msg_slots = slots;
-               len = (slots * sizeof(u32)) - sizeof(struct mei_msg_hdr);
+               len = mei_slots2data(slots) - sizeof(struct mei_msg_hdr);
                mei_hdr.length = len;
                mei_hdr.msg_complete = 0;
        } else {
index 5bbea13ab171ace74eb3d646dfe564f207ca1228..016b7c956f18ceb552a40193f6ca06071468120e 100644 (file)
@@ -511,7 +511,7 @@ static int mei_me_hbuf_empty_slots(struct mei_device *dev)
  */
 static size_t mei_me_hbuf_max_len(const struct mei_device *dev)
 {
-       return dev->hbuf_depth * sizeof(u32) - sizeof(struct mei_msg_hdr);
+       return mei_slots2data(dev->hbuf_depth) - sizeof(struct mei_msg_hdr);
 }
 
 
@@ -549,7 +549,7 @@ static int mei_me_hbuf_write(struct mei_device *dev,
 
        mei_me_hcbww_write(dev, *((u32 *) header));
 
-       for (i = 0; i < length / 4; i++)
+       for (i = 0; i < length / MEI_SLOT_SIZE; i++)
                mei_me_hcbww_write(dev, reg_buf[i]);
 
        rem = length & 0x3;
@@ -604,11 +604,11 @@ static int mei_me_count_full_read_slots(struct mei_device *dev)
  * Return: always 0
  */
 static int mei_me_read_slots(struct mei_device *dev, unsigned char *buffer,
-                   unsigned long buffer_length)
+                            unsigned long buffer_length)
 {
        u32 *reg_buf = (u32 *)buffer;
 
-       for (; buffer_length >= sizeof(u32); buffer_length -= sizeof(u32))
+       for (; buffer_length >= MEI_SLOT_SIZE; buffer_length -= MEI_SLOT_SIZE)
                *reg_buf++ = mei_me_mecbrw_read(dev);
 
        if (buffer_length > 0) {
index a5e551ffb2dddd907aa1f75a3e187b5a8ca09acb..0facd823634e90b331add2d348137b651d61e925 100644 (file)
@@ -682,7 +682,7 @@ static void mei_txe_hw_config(struct mei_device *dev)
        struct mei_txe_hw *hw = to_txe_hw(dev);
 
        /* Doesn't change in runtime */
-       dev->hbuf_depth = PAYLOAD_SIZE / 4;
+       dev->hbuf_depth = PAYLOAD_SIZE / MEI_SLOT_SIZE;
 
        hw->aliveness = mei_txe_aliveness_get(dev);
        hw->readiness = mei_txe_readiness_get(dev);
@@ -766,7 +766,7 @@ static int mei_txe_write(struct mei_device *dev,
  *
  * @dev: the device structure
  *
- * Return: the PAYLOAD_SIZE - 4
+ * Return: the PAYLOAD_SIZE - header size
  */
 static size_t mei_txe_hbuf_max_len(const struct mei_device *dev)
 {
@@ -797,7 +797,7 @@ static int mei_txe_hbuf_empty_slots(struct mei_device *dev)
 static int mei_txe_count_full_read_slots(struct mei_device *dev)
 {
        /* read buffers has static size */
-       return  PAYLOAD_SIZE / 4;
+       return  PAYLOAD_SIZE / MEI_SLOT_SIZE;
 }
 
 /**
@@ -839,7 +839,7 @@ static int mei_txe_read(struct mei_device *dev,
        dev_dbg(dev->dev, "buffer-length = %lu buf[0]0x%08X\n",
                len, mei_txe_out_data_read(dev, 0));
 
-       for (i = 0; i < len / 4; i++) {
+       for (i = 0; i < len / MEI_SLOT_SIZE; i++) {
                /* skip header: index starts from 1 */
                reg = mei_txe_out_data_read(dev, i + 1);
                dev_dbg(dev->dev, "buf[%d] = 0x%08X\n", i, reg);
index d522585b71b7b3bab8f0a431040724e918c37097..897126dca5d0d185d8d739dbb86a487e75baf2d2 100644 (file)
@@ -26,7 +26,9 @@
 #include "hw.h"
 #include "hbm.h"
 
-#define MEI_RD_MSG_BUF_SIZE           (128 * sizeof(u32))
+#define MEI_SLOT_SIZE             sizeof(u32)
+#define MEI_RD_MSG_BUF_SIZE       (128 * MEI_SLOT_SIZE)
+
 
 /*
  * Number of Maximum MEI Clients
@@ -540,7 +542,7 @@ static inline unsigned long mei_secs_to_jiffies(unsigned long sec)
  */
 static inline u32 mei_data2slots(size_t length)
 {
-       return DIV_ROUND_UP(sizeof(struct mei_msg_hdr) + length, 4);
+       return DIV_ROUND_UP(sizeof(struct mei_msg_hdr) + length, MEI_SLOT_SIZE);
 }
 
 /**
@@ -552,7 +554,7 @@ static inline u32 mei_data2slots(size_t length)
  */
 static inline u32 mei_slots2data(int slots)
 {
-       return slots * 4;
+       return slots * MEI_SLOT_SIZE;
 }
 
 /*