/** * DOC: PCODE * * Xe PCODE is the component responsible for interfacing with the PCODE * firmware. * It shall provide a very simple ABI to other Xe components, but be the * single and consolidated place that will communicate with PCODE. All read * and write operations to PCODE will be internal and private to this component. * * What's next: * - PCODE hw metrics * - PCODE for display operations
*/
/** * xe_pcode_request - send PCODE request until acknowledgment * @tile: tile * @mbox: PCODE mailbox ID the request is targeted for * @request: request ID * @reply_mask: mask used to check for request acknowledgment * @reply: value used to check for request acknowledgment * @timeout_base_ms: timeout for polling with preemption enabled * * Keep resending the @request to @mbox until PCODE acknowledges it, PCODE * reports an error or an overall timeout of @timeout_base_ms+50 ms expires. * The request is acknowledged once the PCODE reply dword equals @reply after * applying @reply_mask. Polling is first attempted with preemption enabled * for @timeout_base_ms and if this times out for another 50 ms with * preemption disabled. * * Returns 0 on success, %-ETIMEDOUT in case of a timeout, <0 in case of some * other error as reported by PCODE.
*/ int xe_pcode_request(struct xe_tile *tile, u32 mbox, u32 request,
u32 reply_mask, u32 reply, int timeout_base_ms)
{
u32 status; int ret;
xe_tile_assert(tile, timeout_base_ms <= 3);
mutex_lock(&tile->pcode.lock);
ret = pcode_try_request(tile, mbox, request, reply_mask, reply, &status, false, timeout_base_ms * 1000, true); if (!ret) goto out;
/* * The above can time out if the number of requests was low (2 in the * worst case) _and_ PCODE was busy for some reason even after a * (queued) request and @timeout_base_ms delay. As a workaround retry * the poll with preemption disabled to maximize the number of * requests. Increase the timeout from @timeout_base_ms to 50ms to * account for interrupts that could reduce the number of these * requests, and for any quirks of the PCODE firmware that delays * the request completion.
*/
drm_err(&tile_to_xe(tile)->drm, "PCODE timeout, retrying with preemption disabled\n");
preempt_disable();
ret = pcode_try_request(tile, mbox, request, reply_mask, reply, &status, true, 50 * 1000, true);
preempt_enable();
out:
mutex_unlock(&tile->pcode.lock); return status ? status : ret;
} /** * xe_pcode_init_min_freq_table - Initialize PCODE's QOS frequency table * @tile: tile instance * @min_gt_freq: Minimal (RPn) GT frequency in units of 50MHz. * @max_gt_freq: Maximal (RP0) GT frequency in units of 50MHz. * * This function initialize PCODE's QOS frequency table for a proper minimal * frequency/power steering decision, depending on the current requested GT * frequency. For older platforms this was a more complete table including * the IA freq. However for the latest platforms this table become a simple * 1-1 Ring vs GT frequency. Even though, without setting it, PCODE might * not take the right decisions for some memory frequencies and affect latency. * * It returns 0 on success, and -ERROR number on failure, -EINVAL if max * frequency is higher then the minimal, and other errors directly translated * from the PCODE Error returns: * - -ENXIO: "Illegal Command" * - -ETIMEDOUT: "Timed out" * - -EINVAL: "Illegal Data" * - -ENXIO, "Illegal Subcommand" * - -EBUSY: "PCODE Locked" * - -EOVERFLOW, "GT ratio out of range" * - -EACCES, "PCODE Rejected" * - -EPROTO, "Unknown"
*/ int xe_pcode_init_min_freq_table(struct xe_tile *tile, u32 min_gt_freq,
u32 max_gt_freq)
{ int ret;
u32 freq;
if (!tile_to_xe(tile)->info.has_llc) return 0;
if (max_gt_freq <= min_gt_freq) return -EINVAL;
mutex_lock(&tile->pcode.lock); for (freq = min_gt_freq; freq <= max_gt_freq; freq++) {
u32 data = freq << PCODE_FREQ_RING_RATIO_SHIFT | freq;
ret = pcode_mailbox_rw(tile, PCODE_WRITE_MIN_FREQ_TABLE,
&data, NULL, 1, false, false); if (ret) goto unlock;
}
/** * xe_pcode_ready - Ensure PCODE is initialized * @xe: xe instance * @locked: true if lock held, false otherwise * * PCODE init mailbox is polled only on root gt of root tile * as the root tile provides the initialization is complete only * after all the tiles have completed the initialization. * Called only on early probe without locks and with locks in * resume path. * * Returns 0 on success, and -error number on failure.
*/ int xe_pcode_ready(struct xe_device *xe, bool locked)
{
u32 status, request = DGFX_GET_INIT_STATUS; struct xe_tile *tile = xe_device_get_root_tile(xe); int timeout_us = 180000000; /* 3 min */ int ret;
if (ret)
drm_err(&xe->drm, "PCODE initialization timedout after: 3 min\n");
return ret;
}
/** * xe_pcode_init: initialize components of PCODE * @tile: tile instance * * This function initializes the xe_pcode component. * To be called once only during probe.
*/ void xe_pcode_init(struct xe_tile *tile)
{
drmm_mutex_init(&tile_to_xe(tile)->drm, &tile->pcode.lock);
}
/** * xe_pcode_probe_early: initializes PCODE * @xe: xe instance * * This function checks the initialization status of PCODE * To be called once only during early probe without locks. * * Returns 0 on success, error code otherwise
*/ int xe_pcode_probe_early(struct xe_device *xe)
{ return xe_pcode_ready(xe, false);
}
ALLOW_ERROR_INJECTION(xe_pcode_probe_early, ERRNO); /* See xe_pci_probe */
/* Helpers with drm device. These should only be called by the display side */ #if IS_ENABLED(CONFIG_DRM_XE_DISPLAY)
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.