drm/amd/display: Flush framebuffer data before passing to DMCUB
authorNicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Thu, 12 Dec 2019 01:53:22 +0000 (20:53 -0500)
committerAlex Deucher <alexander.deucher@amd.com>
Thu, 16 Jan 2020 18:42:16 +0000 (13:42 -0500)
[Why]
There's a data race that can occur between when we update the
inbox write pointer vs when the memory for the command actually gets
flushed from the map to the framebuffer.

DMCUB can read stale or partially invalid data when this race occurs.

[How]
Before updating the write pointer we can read back all pending commands
to ensure that we stall for the writes to be flushed to framebuffer.

We don't need to worry about choosing HDP vs VM flush with this
mechanism.

Drop the dmub_srv_cmd_submit() while we're updating this to work
correctly since nothing was actually using this API and the caller
should be explicit about the API flow here - by doing this on execute
we can give some extra time for the flush to finish while
preparing other commands.

We should try to avoid writing single commands
because of this overhead.

Signed-off-by: Nicholas Kazlauskas <nicholas.kazlauskas@amd.com>
Reviewed-by: Tony Cheng <Tony.Cheng@amd.com>
Acked-by: Harry Wentland <harry.wentland@amd.com>
Acked-by: Rodrigo Siqueira <Rodrigo.Siqueira@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dmub/inc/dmub_rb.h
drivers/gpu/drm/amd/display/dmub/inc/dmub_srv.h
drivers/gpu/drm/amd/display/dmub/src/dmub_srv.c

index ac22744eaa948742a77e241d39cf9adde093101a..ade688fd32f0556e4c1aa3fb8bde35bdad51e21c 100644 (file)
@@ -113,6 +113,23 @@ static inline bool dmub_rb_pop_front(struct dmub_rb *rb)
        return true;
 }
 
+static inline void dmub_rb_flush_pending(const struct dmub_rb *rb)
+{
+       uint8_t buf[DMUB_RB_CMD_SIZE];
+       uint32_t rptr = rb->rptr;
+       uint32_t wptr = rb->wrpt;
+
+       while (rptr != wptr) {
+               const uint8_t *data = (const uint8_t *)rb->base_address + rptr;
+
+               dmub_memcpy(buf, data, DMUB_RB_CMD_SIZE);
+
+               rptr += DMUB_RB_CMD_SIZE;
+               if (rptr >= rb->capacity)
+                       rptr %= rb->capacity;
+       }
+}
+
 static inline void dmub_rb_init(struct dmub_rb *rb,
                                struct dmub_rb_init_params *init_params)
 {
index f34a50dd36eabb367787270c34e33260d3658ba2..8e23a70175886df02afda6a8b7ceb54f7e83c94c 100644 (file)
@@ -444,25 +444,6 @@ enum dmub_status dmub_srv_cmd_queue(struct dmub_srv *dmub,
  */
 enum dmub_status dmub_srv_cmd_execute(struct dmub_srv *dmub);
 
-/**
- * dmub_srv_cmd_submit() - submits a command to the DMUB immediately
- * @dmub: the dmub service
- * @cmd: the command to submit
- * @timeout_us: the maximum number of microseconds to wait
- *
- * Submits a command to the DMUB with an optional timeout.
- * If timeout_us is given then the service will attempt to
- * resubmit for the given number of microseconds.
- *
- * Return:
- *   DMUB_STATUS_OK - success
- *   DMUB_STATUS_TIMEOUT - wait for submit timed out
- *   DMUB_STATUS_INVALID - unspecified error
- */
-enum dmub_status dmub_srv_cmd_submit(struct dmub_srv *dmub,
-                                    const struct dmub_cmd_header *cmd,
-                                    uint32_t timeout_us);
-
 /**
  * dmub_srv_wait_for_auto_load() - Waits for firmware auto load to complete
  * @dmub: the dmub service
index 9a959f871f1102e94b509990b2cd117d24da671d..23ca1fe97757400acce4c968e1ff29e6e7d6ce99 100644 (file)
@@ -405,33 +405,17 @@ enum dmub_status dmub_srv_cmd_execute(struct dmub_srv *dmub)
        if (!dmub->hw_init)
                return DMUB_STATUS_INVALID;
 
+       /**
+        * Read back all the queued commands to ensure that they've
+        * been flushed to framebuffer memory. Otherwise DMCUB might
+        * read back stale, fully invalid or partially invalid data.
+        */
+       dmub_rb_flush_pending(&dmub->inbox1_rb);
+
        dmub->hw_funcs.set_inbox1_wptr(dmub, dmub->inbox1_rb.wrpt);
        return DMUB_STATUS_OK;
 }
 
-enum dmub_status dmub_srv_cmd_submit(struct dmub_srv *dmub,
-                                    const struct dmub_cmd_header *cmd,
-                                    uint32_t timeout_us)
-{
-       uint32_t i = 0;
-
-       if (!dmub->hw_init)
-               return DMUB_STATUS_INVALID;
-
-       for (i = 0; i <= timeout_us; ++i) {
-               dmub->inbox1_rb.rptr = dmub->hw_funcs.get_inbox1_rptr(dmub);
-               if (dmub_rb_push_front(&dmub->inbox1_rb, cmd)) {
-                       dmub->hw_funcs.set_inbox1_wptr(dmub,
-                                                      dmub->inbox1_rb.wrpt);
-                       return DMUB_STATUS_OK;
-               }
-
-               udelay(1);
-       }
-
-       return DMUB_STATUS_TIMEOUT;
-}
-
 enum dmub_status dmub_srv_wait_for_auto_load(struct dmub_srv *dmub,
                                             uint32_t timeout_us)
 {