]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
soc: mediatek: cmdq: reorder the parameter
authorBibby Hsieh <bibby.hsieh@mediatek.com>
Tue, 20 Aug 2019 08:49:27 +0000 (16:49 +0800)
committerMatthias Brugger <matthias.bgg@gmail.com>
Fri, 23 Aug 2019 12:03:56 +0000 (14:03 +0200)
The order of gce instructions is [subsys offset value]
so reorder the parameter of cmdq_pkt_write_mask
and cmdq_pkt_write function.

Signed-off-by: Bibby Hsieh <bibby.hsieh@mediatek.com>
Reviewed-by: CK Hu <ck.hu@mediatek.com>
Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
drivers/soc/mediatek/mtk-cmdq-helper.c
include/linux/soc/mediatek/mtk-cmdq.h

index ff9fef5a032b3d8a0ef78a640644b6f2654b6315..082b8978651e33cc4fe370977b94cdd8c43baa61 100644 (file)
@@ -136,7 +136,7 @@ static int cmdq_pkt_append_command(struct cmdq_pkt *pkt, enum cmdq_code code,
        return 0;
 }
 
-int cmdq_pkt_write(struct cmdq_pkt *pkt, u32 value, u32 subsys, u32 offset)
+int cmdq_pkt_write(struct cmdq_pkt *pkt, u32 subsys, u32 offset, u32 value)
 {
        u32 arg_a = (offset & CMDQ_ARG_A_WRITE_MASK) |
                    (subsys << CMDQ_SUBSYS_SHIFT);
@@ -145,8 +145,8 @@ int cmdq_pkt_write(struct cmdq_pkt *pkt, u32 value, u32 subsys, u32 offset)
 }
 EXPORT_SYMBOL(cmdq_pkt_write);
 
-int cmdq_pkt_write_mask(struct cmdq_pkt *pkt, u32 value,
-                       u32 subsys, u32 offset, u32 mask)
+int cmdq_pkt_write_mask(struct cmdq_pkt *pkt, u32 subsys,
+                       u32 offset, u32 value, u32 mask)
 {
        u32 offset_mask = offset;
        int err = 0;
index 54ade13a9b15730b538236c907e79b78842c0035..4bba1c8d97fa66a9284983241eb112007eea0ba6 100644 (file)
@@ -63,26 +63,26 @@ void cmdq_pkt_destroy(struct cmdq_pkt *pkt);
 /**
  * cmdq_pkt_write() - append write command to the CMDQ packet
  * @pkt:       the CMDQ packet
- * @value:     the specified target register value
  * @subsys:    the CMDQ sub system code
  * @offset:    register offset from CMDQ sub system
+ * @value:     the specified target register value
  *
  * Return: 0 for success; else the error code is returned
  */
-int cmdq_pkt_write(struct cmdq_pkt *pkt, u32 value, u32 subsys, u32 offset);
+int cmdq_pkt_write(struct cmdq_pkt *pkt, u32 subsys, u32 offset, u32 value);
 
 /**
  * cmdq_pkt_write_mask() - append write command with mask to the CMDQ packet
  * @pkt:       the CMDQ packet
- * @value:     the specified target register value
  * @subsys:    the CMDQ sub system code
  * @offset:    register offset from CMDQ sub system
+ * @value:     the specified target register value
  * @mask:      the specified target register mask
  *
  * Return: 0 for success; else the error code is returned
  */
-int cmdq_pkt_write_mask(struct cmdq_pkt *pkt, u32 value,
-                       u32 subsys, u32 offset, u32 mask);
+int cmdq_pkt_write_mask(struct cmdq_pkt *pkt, u32 subsys,
+                       u32 offset, u32 value, u32 mask);
 
 /**
  * cmdq_pkt_wfe() - append wait for event command to the CMDQ packet