drivers/gpu/msm/adreno_ringbuffer.c (750 lines of code) (raw):

/* Copyright (c) 2002,2007-2016,2019-2020, The Linux Foundation. All rights reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 and * only version 2 as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * */ #include <linux/slab.h> #include <linux/sched.h> #include <linux/log2.h> #include <linux/time.h> #include <linux/delay.h> #include "kgsl.h" #include "kgsl_sharedmem.h" #include "kgsl_cffdump.h" #include "kgsl_trace.h" #include "kgsl_pwrctrl.h" #include "adreno.h" #include "adreno_iommu.h" #include "adreno_pm4types.h" #include "adreno_ringbuffer.h" #include "a3xx_reg.h" #include "adreno_a5xx.h" #define RB_HOSTPTR(_rb, _pos) \ ((unsigned int *) ((_rb)->buffer_desc.hostptr + \ ((_pos) * sizeof(unsigned int)))) #define RB_GPUADDR(_rb, _pos) \ ((_rb)->buffer_desc.gpuaddr + ((_pos) * sizeof(unsigned int))) static void _cff_write_ringbuffer(struct adreno_ringbuffer *rb) { struct adreno_device *adreno_dev = ADRENO_RB_DEVICE(rb); struct kgsl_device *device = KGSL_DEVICE(adreno_dev); uint64_t gpuaddr; unsigned int *hostptr; size_t size; if (device->cff_dump_enable == 0) return; /* * This code is predicated on the fact that we write a full block of * stuff without wrapping */ BUG_ON(rb->_wptr < rb->last_wptr); size = (rb->_wptr - rb->last_wptr) * sizeof(unsigned int); hostptr = RB_HOSTPTR(rb, rb->last_wptr); gpuaddr = RB_GPUADDR(rb, rb->last_wptr); kgsl_cffdump_memcpy(device, gpuaddr, hostptr, size); rb->last_wptr = rb->_wptr; } static void adreno_get_submit_time(struct adreno_device *adreno_dev, struct adreno_submit_time *time) { unsigned long flags; /* * Here we are attempting to create a mapping between the * GPU time domain (alwayson counter) and the CPU time domain * (local_clock) by sampling both values as close together as * possible. This is useful for many types of debugging and * profiling. In order to make this mapping as accurate as * possible, we must turn off interrupts to avoid running * interrupt handlers between the two samples. */ local_irq_save(flags); /* Read always on registers */ if (!adreno_is_a3xx(adreno_dev)) { adreno_readreg64(adreno_dev, ADRENO_REG_RBBM_ALWAYSON_COUNTER_LO, ADRENO_REG_RBBM_ALWAYSON_COUNTER_HI, &time->ticks); /* Mask hi bits as they may be incorrect on some targets */ if (ADRENO_GPUREV(adreno_dev) >= 400 && ADRENO_GPUREV(adreno_dev) <= ADRENO_REV_A530) time->ticks &= 0xFFFFFFFF; } else time->ticks = 0; /* Get the kernel clock for time since boot */ time->ktime = local_clock(); /* Get the timeofday for the wall time (for the user) */ getnstimeofday(&time->utime); local_irq_restore(flags); } void adreno_ringbuffer_wptr(struct adreno_device *adreno_dev, struct adreno_ringbuffer *rb) { unsigned long flags; spin_lock_irqsave(&rb->preempt_lock, flags); if (adreno_in_preempt_state(adreno_dev, ADRENO_PREEMPT_NONE)) { if (adreno_dev->cur_rb == rb) { /* * Let the pwrscale policy know that new commands have * been submitted. */ kgsl_pwrscale_busy(KGSL_DEVICE(adreno_dev)); adreno_writereg(adreno_dev, ADRENO_REG_CP_RB_WPTR, rb->_wptr); } } rb->wptr = rb->_wptr; spin_unlock_irqrestore(&rb->preempt_lock, flags); } void adreno_ringbuffer_submit(struct adreno_ringbuffer *rb, struct adreno_submit_time *time) { struct adreno_device *adreno_dev = ADRENO_RB_DEVICE(rb); /* Write the changes to CFF if so enabled */ _cff_write_ringbuffer(rb); if (time != NULL) adreno_get_submit_time(adreno_dev, time); adreno_ringbuffer_wptr(adreno_dev, rb); } int adreno_ringbuffer_submit_spin_nosync(struct adreno_ringbuffer *rb, struct adreno_submit_time *time, unsigned int timeout) { struct adreno_device *adreno_dev = ADRENO_RB_DEVICE(rb); adreno_ringbuffer_submit(rb, time); return adreno_spin_idle(adreno_dev, timeout); } /* * adreno_ringbuffer_submit_spin() - Submit the cmds and wait until GPU is idle * @rb: Pointer to ringbuffer * @time: Pointer to adreno_submit_time * @timeout: timeout value in ms * * Add commands to the ringbuffer and wait until GPU goes to idle. This routine * inserts a WHERE_AM_I packet to trigger a shadow rptr update. So, use * adreno_ringbuffer_submit_spin_nosync() if the previous cmd in the RB is a * CSY packet because CSY followed by WHERE_AM_I is not legal.. */ int adreno_ringbuffer_submit_spin(struct adreno_ringbuffer *rb, struct adreno_submit_time *time, unsigned int timeout) { struct adreno_device *adreno_dev = ADRENO_RB_DEVICE(rb); struct kgsl_device *device = KGSL_DEVICE(adreno_dev); unsigned int *cmds; if (adreno_is_a3xx(adreno_dev)) return adreno_ringbuffer_submit_spin_nosync(rb, time, timeout); cmds = adreno_ringbuffer_allocspace(rb, 3); if (IS_ERR(cmds)) return PTR_ERR(cmds); *cmds++ = cp_packet(adreno_dev, CP_WHERE_AM_I, 2); cmds += cp_gpuaddr(adreno_dev, cmds, SCRATCH_RPTR_GPU_ADDR(device, rb->id)); return adreno_ringbuffer_submit_spin_nosync(rb, time, timeout); } unsigned int *adreno_ringbuffer_allocspace(struct adreno_ringbuffer *rb, unsigned int dwords) { struct adreno_device *adreno_dev = ADRENO_RB_DEVICE(rb); unsigned int rptr = adreno_get_rptr(rb); unsigned int ret; if (rptr <= rb->_wptr) { unsigned int *cmds; if (rb->_wptr + dwords <= (KGSL_RB_DWORDS - 2)) { ret = rb->_wptr; rb->_wptr = (rb->_wptr + dwords) % KGSL_RB_DWORDS; return RB_HOSTPTR(rb, ret); } /* * There isn't enough space toward the end of ringbuffer. So * look for space from the beginning of ringbuffer upto the * read pointer. */ if (dwords < rptr) { cmds = RB_HOSTPTR(rb, rb->_wptr); *cmds = cp_packet(adreno_dev, CP_NOP, KGSL_RB_DWORDS - rb->_wptr - 1); rb->_wptr = dwords; return RB_HOSTPTR(rb, 0); } } if (rb->_wptr + dwords < rptr) { ret = rb->_wptr; rb->_wptr = (rb->_wptr + dwords) % KGSL_RB_DWORDS; return RB_HOSTPTR(rb, ret); } return ERR_PTR(-ENOSPC); } /** * adreno_ringbuffer_start() - Ringbuffer start * @adreno_dev: Pointer to adreno device * @start_type: Warm or cold start */ int adreno_ringbuffer_start(struct adreno_device *adreno_dev, unsigned int start_type) { struct adreno_gpudev *gpudev = ADRENO_GPU_DEVICE(adreno_dev); struct kgsl_device *device = KGSL_DEVICE(adreno_dev); struct adreno_ringbuffer *rb; int i; /* Setup the ringbuffers state before we start */ FOR_EACH_RINGBUFFER(adreno_dev, rb, i) { kgsl_sharedmem_set(device, &(rb->buffer_desc), 0, 0xAA, KGSL_RB_SIZE); if (!adreno_is_a3xx(adreno_dev)) kgsl_sharedmem_writel(device, &device->scratch, SCRATCH_RPTR_OFFSET(rb->id), 0); rb->wptr = 0; rb->_wptr = 0; rb->wptr_preempt_end = 0xFFFFFFFF; rb->starve_timer_state = ADRENO_DISPATCHER_RB_STARVE_TIMER_UNINIT; } /* start is specific GPU rb */ return gpudev->rb_start(adreno_dev, start_type); } void adreno_ringbuffer_stop(struct adreno_device *adreno_dev) { struct adreno_ringbuffer *rb; int i; FOR_EACH_RINGBUFFER(adreno_dev, rb, i) kgsl_cancel_events(KGSL_DEVICE(adreno_dev), &(rb->events)); } static int _rb_readtimestamp(struct kgsl_device *device, void *priv, enum kgsl_timestamp_type type, unsigned int *timestamp) { return adreno_rb_readtimestamp(ADRENO_DEVICE(device), priv, type, timestamp); } static int _adreno_ringbuffer_probe(struct adreno_device *adreno_dev, int id) { struct adreno_ringbuffer *rb = &adreno_dev->ringbuffers[id]; int ret; char name[64]; rb->id = id; snprintf(name, sizeof(name), "rb_events-%d", id); kgsl_add_event_group(&rb->events, NULL, name, _rb_readtimestamp, rb); rb->timestamp = 0; init_waitqueue_head(&rb->ts_expire_waitq); spin_lock_init(&rb->preempt_lock); /* * Allocate mem for storing RB pagetables and commands to * switch pagetable */ ret = kgsl_allocate_global(KGSL_DEVICE(adreno_dev), &rb->pagetable_desc, PAGE_SIZE, 0, KGSL_MEMDESC_PRIVILEGED, "pagetable_desc"); if (ret) return ret; /* allocate a chunk of memory to create user profiling IB1s */ kgsl_allocate_global(KGSL_DEVICE(adreno_dev), &rb->profile_desc, PAGE_SIZE, KGSL_MEMFLAGS_GPUREADONLY, 0, "profile_desc"); return kgsl_allocate_global(KGSL_DEVICE(adreno_dev), &rb->buffer_desc, KGSL_RB_SIZE, KGSL_MEMFLAGS_GPUREADONLY, 0, "ringbuffer"); } int adreno_ringbuffer_probe(struct adreno_device *adreno_dev, bool nopreempt) { struct kgsl_device *device = KGSL_DEVICE(adreno_dev); struct adreno_gpudev *gpudev = ADRENO_GPU_DEVICE(adreno_dev); unsigned int priv = KGSL_MEMDESC_RANDOM | KGSL_MEMDESC_PRIVILEGED; int i, status; if (!adreno_is_a3xx(adreno_dev)) { status = kgsl_allocate_global(device, &device->scratch, PAGE_SIZE, 0, priv, "scratch"); if (status != 0) return status; } if (nopreempt == false && ADRENO_FEATURE(adreno_dev, ADRENO_PREEMPTION)) adreno_dev->num_ringbuffers = gpudev->num_prio_levels; else adreno_dev->num_ringbuffers = 1; for (i = 0; i < adreno_dev->num_ringbuffers; i++) { status = _adreno_ringbuffer_probe(adreno_dev, i); if (status != 0) break; } if (status) adreno_ringbuffer_close(adreno_dev); else adreno_dev->cur_rb = &(adreno_dev->ringbuffers[0]); return status; } static void _adreno_ringbuffer_close(struct adreno_device *adreno_dev, struct adreno_ringbuffer *rb) { struct kgsl_device *device = KGSL_DEVICE(adreno_dev); kgsl_free_global(device, &rb->pagetable_desc); kgsl_free_global(device, &rb->preemption_desc); kgsl_free_global(device, &rb->profile_desc); kgsl_free_global(device, &rb->buffer_desc); kgsl_del_event_group(&rb->events); memset(rb, 0, sizeof(struct adreno_ringbuffer)); } void adreno_ringbuffer_close(struct adreno_device *adreno_dev) { struct kgsl_device *device = KGSL_DEVICE(adreno_dev); struct adreno_ringbuffer *rb; int i; if (!adreno_is_a3xx(adreno_dev)) kgsl_free_global(device, &device->scratch); FOR_EACH_RINGBUFFER(adreno_dev, rb, i) _adreno_ringbuffer_close(adreno_dev, rb); } /* * cp_secure_mode() - Put GPU in trusted mode * @adreno_dev: Pointer to adreno device * @cmds: Pointer to cmds to be put in the ringbuffer * @set: 1 - secure mode, 0 - unsecure mode * * Add commands to the ringbuffer to put the GPU in secure mode * or unsecure mode based on the variable set. */ int cp_secure_mode(struct adreno_device *adreno_dev, uint *cmds, int set) { uint *start = cmds; if (adreno_is_a4xx(adreno_dev)) { cmds += cp_wait_for_idle(adreno_dev, cmds); /* * The two commands will stall the PFP until the PFP-ME-AHB * is drained and the GPU is idle. As soon as this happens, * the PFP will start moving again. */ cmds += cp_wait_for_me(adreno_dev, cmds); /* * Below commands are processed by ME. GPU will be * idle when they are processed. But the PFP will continue * to fetch instructions at the same time. */ *cmds++ = cp_packet(adreno_dev, CP_SET_PROTECTED_MODE, 1); *cmds++ = 0; *cmds++ = cp_packet(adreno_dev, CP_WIDE_REG_WRITE, 2); *cmds++ = adreno_getreg(adreno_dev, ADRENO_REG_RBBM_SECVID_TRUST_CONTROL); *cmds++ = set; *cmds++ = cp_packet(adreno_dev, CP_SET_PROTECTED_MODE, 1); *cmds++ = 1; /* Stall PFP until all above commands are complete */ cmds += cp_wait_for_me(adreno_dev, cmds); } else { /* * A5xx has a separate opcode specifically to put the GPU * in and out of secure mode. */ *cmds++ = cp_packet(adreno_dev, CP_SET_SECURE_MODE, 1); *cmds++ = set; } return cmds - start; } static inline int cp_mem_write(struct adreno_device *adreno_dev, unsigned int *cmds, uint64_t gpuaddr, unsigned int value) { int dwords = 0; cmds[dwords++] = cp_mem_packet(adreno_dev, CP_MEM_WRITE, 2, 1); dwords += cp_gpuaddr(adreno_dev, &cmds[dwords], gpuaddr); cmds[dwords++] = value; return dwords; } static int adreno_ringbuffer_addcmds(struct adreno_ringbuffer *rb, unsigned int flags, unsigned int *cmds, unsigned int sizedwords, uint32_t timestamp, struct adreno_submit_time *time) { struct adreno_device *adreno_dev = ADRENO_RB_DEVICE(rb); struct adreno_gpudev *gpudev = ADRENO_GPU_DEVICE(adreno_dev); struct kgsl_device *device = KGSL_DEVICE(adreno_dev); unsigned int *ringcmds, *start; unsigned int total_sizedwords = sizedwords; unsigned int i; unsigned int context_id = 0; bool profile_ready; struct adreno_context *drawctxt = rb->drawctxt_active; struct kgsl_context *context = NULL; bool secured_ctxt = false; static unsigned int _seq_cnt; if (drawctxt != NULL && kgsl_context_detached(&drawctxt->base) && !(flags & KGSL_CMD_FLAGS_INTERNAL_ISSUE)) return -ENOENT; /* On fault return error so that we don't keep submitting */ if (adreno_gpu_fault(adreno_dev) != 0) return -EPROTO; rb->timestamp++; /* If this is a internal IB, use the global timestamp for it */ if (!drawctxt || (flags & KGSL_CMD_FLAGS_INTERNAL_ISSUE)) timestamp = rb->timestamp; else { context_id = drawctxt->base.id; context = &drawctxt->base; } /* * Note that we cannot safely take drawctxt->mutex here without * potential mutex inversion with device->mutex which is held * here. As a result, any other code that accesses this variable * must also use device->mutex. */ if (drawctxt) { drawctxt->internal_timestamp = rb->timestamp; if (drawctxt->base.flags & KGSL_CONTEXT_SECURE) secured_ctxt = true; } /* * If in stream ib profiling is enabled and there are counters * assigned, then space needs to be reserved for profiling. This * space in the ringbuffer is always consumed (might be filled with * NOPs in error case. profile_ready needs to be consistent through * the _addcmds call since it is allocating additional ringbuffer * command space. */ profile_ready = drawctxt && adreno_profile_assignments_ready(&adreno_dev->profile) && !(flags & KGSL_CMD_FLAGS_INTERNAL_ISSUE); /* reserve space to temporarily turn off protected mode * error checking if needed */ total_sizedwords += flags & KGSL_CMD_FLAGS_PMODE ? 4 : 0; /* 2 dwords to store the start of command sequence */ total_sizedwords += 2; /* internal ib command identifier for the ringbuffer */ total_sizedwords += (flags & KGSL_CMD_FLAGS_INTERNAL_ISSUE) ? 2 : 0; total_sizedwords += (secured_ctxt) ? 26 : 0; /* _seq mem write for each submission */ total_sizedwords += 4; /* context rollover */ if (adreno_is_a3xx(adreno_dev)) total_sizedwords += 3; /* For HLSQ updates below */ if (adreno_is_a4xx(adreno_dev) || adreno_is_a3xx(adreno_dev)) total_sizedwords += 4; if (gpudev->preemption_pre_ibsubmit && adreno_is_preemption_enabled(adreno_dev)) total_sizedwords += 22; if (gpudev->preemption_post_ibsubmit && adreno_is_preemption_enabled(adreno_dev)) total_sizedwords += 5; else if (!adreno_is_a3xx(adreno_dev)) total_sizedwords += 3; /* * a5xx uses 64 bit memory address. pm4 commands that involve read/write * from memory take 4 bytes more than a4xx because of 64 bit addressing. * This function is shared between gpucores, so reserve the max size * required in ringbuffer and adjust the write pointer depending on * gpucore at the end of this function. */ total_sizedwords += 8; /* sop timestamp */ total_sizedwords += 5; /* eop timestamp */ if (drawctxt && !(flags & KGSL_CMD_FLAGS_INTERNAL_ISSUE)) { total_sizedwords += 4; /* global timestamp without cache * flush for non-zero context */ } if (flags & KGSL_CMD_FLAGS_WFI) total_sizedwords += 2; /* WFI */ if (profile_ready) total_sizedwords += 8; /* space for pre_ib and post_ib */ /* Add space for the power on shader fixup if we need it */ if (flags & KGSL_CMD_FLAGS_PWRON_FIXUP) total_sizedwords += 9; /* WAIT_MEM_WRITES - needed in the stall on fault case * to prevent out of order CP operations that can result * in a CACHE_FLUSH_TS interrupt storm */ if (test_bit(KGSL_FT_PAGEFAULT_GPUHALT_ENABLE, &adreno_dev->ft_pf_policy)) total_sizedwords += 1; ringcmds = adreno_ringbuffer_allocspace(rb, total_sizedwords); if (IS_ERR(ringcmds)) return PTR_ERR(ringcmds); start = ringcmds; *ringcmds++ = cp_packet(adreno_dev, CP_NOP, 1); *ringcmds++ = KGSL_CMD_IDENTIFIER; if (adreno_is_preemption_enabled(adreno_dev) && gpudev->preemption_pre_ibsubmit) ringcmds += gpudev->preemption_pre_ibsubmit( adreno_dev, rb, ringcmds, context); if (flags & KGSL_CMD_FLAGS_INTERNAL_ISSUE) { *ringcmds++ = cp_packet(adreno_dev, CP_NOP, 1); *ringcmds++ = KGSL_CMD_INTERNAL_IDENTIFIER; } if (flags & KGSL_CMD_FLAGS_PWRON_FIXUP) { /* Disable protected mode for the fixup */ *ringcmds++ = cp_packet(adreno_dev, CP_SET_PROTECTED_MODE, 1); *ringcmds++ = 0; *ringcmds++ = cp_packet(adreno_dev, CP_NOP, 1); *ringcmds++ = KGSL_PWRON_FIXUP_IDENTIFIER; *ringcmds++ = cp_mem_packet(adreno_dev, CP_INDIRECT_BUFFER_PFE, 2, 1); ringcmds += cp_gpuaddr(adreno_dev, ringcmds, adreno_dev->pwron_fixup.gpuaddr); *ringcmds++ = adreno_dev->pwron_fixup_dwords; /* Re-enable protected mode */ *ringcmds++ = cp_packet(adreno_dev, CP_SET_PROTECTED_MODE, 1); *ringcmds++ = 1; } /* Add any IB required for profiling if it is enabled */ if (profile_ready) adreno_profile_preib_processing(adreno_dev, drawctxt, &flags, &ringcmds); /* start-of-pipeline timestamp for the context */ if (drawctxt && !(flags & KGSL_CMD_FLAGS_INTERNAL_ISSUE)) ringcmds += cp_mem_write(adreno_dev, ringcmds, MEMSTORE_ID_GPU_ADDR(device, context_id, soptimestamp), timestamp); /* start-of-pipeline timestamp for the ringbuffer */ ringcmds += cp_mem_write(adreno_dev, ringcmds, MEMSTORE_RB_GPU_ADDR(device, rb, soptimestamp), rb->timestamp); if (secured_ctxt) ringcmds += cp_secure_mode(adreno_dev, ringcmds, 1); if (flags & KGSL_CMD_FLAGS_PMODE) { /* disable protected mode error checking */ *ringcmds++ = cp_packet(adreno_dev, CP_SET_PROTECTED_MODE, 1); *ringcmds++ = 0; } for (i = 0; i < sizedwords; i++) *ringcmds++ = cmds[i]; if (flags & KGSL_CMD_FLAGS_PMODE) { /* re-enable protected mode error checking */ *ringcmds++ = cp_packet(adreno_dev, CP_SET_PROTECTED_MODE, 1); *ringcmds++ = 1; } /* * Flush HLSQ lazy updates to make sure there are no * resources pending for indirect loads after the timestamp */ if (adreno_is_a4xx(adreno_dev) || adreno_is_a3xx(adreno_dev)) { *ringcmds++ = cp_packet(adreno_dev, CP_EVENT_WRITE, 1); *ringcmds++ = 0x07; /* HLSQ_FLUSH */ ringcmds += cp_wait_for_idle(adreno_dev, ringcmds); } /* Add any postIB required for profiling if it is enabled and has assigned counters */ if (profile_ready) adreno_profile_postib_processing(adreno_dev, &flags, &ringcmds); /* * WAIT_MEM_WRITES - needed in the stall on fault case to prevent * out of order CP operations that can result in a CACHE_FLUSH_TS * interrupt storm */ if (test_bit(KGSL_FT_PAGEFAULT_GPUHALT_ENABLE, &adreno_dev->ft_pf_policy)) *ringcmds++ = cp_packet(adreno_dev, CP_WAIT_MEM_WRITES, 0); /* * Do a unique memory write from the GPU. This can be used in * early detection of timestamp interrupt storms to stave * off system collapse. */ ringcmds += cp_mem_write(adreno_dev, ringcmds, MEMSTORE_ID_GPU_ADDR(device, KGSL_MEMSTORE_GLOBAL, ref_wait_ts), ++_seq_cnt); /* * end-of-pipeline timestamp. If per context timestamps is not * enabled, then drawctxt will be NULL or internal command flag will be * set and hence the rb timestamp will be used in else statement below. */ *ringcmds++ = cp_mem_packet(adreno_dev, CP_EVENT_WRITE, 3, 1); if (drawctxt || (flags & KGSL_CMD_FLAGS_INTERNAL_ISSUE)) *ringcmds++ = CACHE_FLUSH_TS | (1 << 31); else *ringcmds++ = CACHE_FLUSH_TS; if (drawctxt && !(flags & KGSL_CMD_FLAGS_INTERNAL_ISSUE)) { ringcmds += cp_gpuaddr(adreno_dev, ringcmds, MEMSTORE_ID_GPU_ADDR(device, context_id, eoptimestamp)); *ringcmds++ = timestamp; /* Write the end of pipeline timestamp to the ringbuffer too */ ringcmds += cp_mem_write(adreno_dev, ringcmds, MEMSTORE_RB_GPU_ADDR(device, rb, eoptimestamp), rb->timestamp); } else { ringcmds += cp_gpuaddr(adreno_dev, ringcmds, MEMSTORE_RB_GPU_ADDR(device, rb, eoptimestamp)); *ringcmds++ = timestamp; } if (adreno_is_a3xx(adreno_dev)) { /* Dummy set-constant to trigger context rollover */ *ringcmds++ = cp_packet(adreno_dev, CP_SET_CONSTANT, 2); *ringcmds++ = (0x4<<16) | (A3XX_HLSQ_CL_KERNEL_GROUP_X_REG - 0x2000); *ringcmds++ = 0; } if (flags & KGSL_CMD_FLAGS_WFI) { ringcmds += cp_wait_for_idle(adreno_dev, ringcmds); } if (secured_ctxt) ringcmds += cp_secure_mode(adreno_dev, ringcmds, 0); if (gpudev->preemption_post_ibsubmit && adreno_is_preemption_enabled(adreno_dev)) ringcmds += gpudev->preemption_post_ibsubmit(adreno_dev, ringcmds); else if (!adreno_is_a3xx(adreno_dev)) { *ringcmds++ = cp_packet(adreno_dev, CP_WHERE_AM_I, 2); ringcmds += cp_gpuaddr(adreno_dev, ringcmds, SCRATCH_RPTR_GPU_ADDR(device, rb->id)); } /* * If we have more ringbuffer commands than space reserved * in ringbuffer BUG() to fix this because it will lead to * weird errors. */ if ((ringcmds - start) > total_sizedwords) BUG(); /* * Allocate total_sizedwords space in RB, this is the max space * required. If we have commands less than the space reserved in RB * adjust the wptr accordingly. */ rb->_wptr = rb->_wptr - (total_sizedwords - (ringcmds - start)); adreno_ringbuffer_submit(rb, time); return 0; } int adreno_ringbuffer_issuecmds(struct adreno_ringbuffer *rb, unsigned int flags, unsigned int *cmds, int sizedwords) { flags |= KGSL_CMD_FLAGS_INTERNAL_ISSUE; return adreno_ringbuffer_addcmds(rb, flags, cmds, sizedwords, 0, NULL); } /** * _ringbuffer_verify_ib() - Check if an IB's size is within a permitted limit * @device: The kgsl device pointer * @ibdesc: Pointer to the IB descriptor */ static inline bool _ringbuffer_verify_ib(struct kgsl_device_private *dev_priv, struct kgsl_context *context, struct kgsl_memobj_node *ib) { struct kgsl_device *device = dev_priv->device; struct kgsl_process_private *private = dev_priv->process_priv; /* The maximum allowable size for an IB in the CP is 0xFFFFF dwords */ if (ib->size == 0 || ((ib->size >> 2) > 0xFFFFF)) { pr_context(device, context, "ctxt %d invalid ib size %lld\n", context->id, ib->size); return false; } /* Make sure that the address is mapped */ if (!kgsl_mmu_gpuaddr_in_range(private->pagetable, ib->gpuaddr)) { pr_context(device, context, "ctxt %d invalid ib gpuaddr %llX\n", context->id, ib->gpuaddr); return false; } return true; } int adreno_ringbuffer_issueibcmds(struct kgsl_device_private *dev_priv, struct kgsl_context *context, struct kgsl_cmdbatch *cmdbatch, uint32_t *timestamp) { struct kgsl_device *device = dev_priv->device; struct adreno_device *adreno_dev = ADRENO_DEVICE(device); struct adreno_context *drawctxt = ADRENO_CONTEXT(context); struct kgsl_memobj_node *ib; int ret; if (kgsl_context_invalid(context)) return -EDEADLK; /* Verify the IBs before they get queued */ list_for_each_entry(ib, &cmdbatch->cmdlist, node) if (_ringbuffer_verify_ib(dev_priv, context, ib) == false) return -EINVAL; /* wait for the suspend gate */ wait_for_completion(&device->cmdbatch_gate); /* * Clear the wake on touch bit to indicate an IB has been * submitted since the last time we set it. But only clear * it when we have rendering commands. */ if (!(cmdbatch->flags & KGSL_CMDBATCH_MARKER) && !(cmdbatch->flags & KGSL_CMDBATCH_SYNC)) device->flags &= ~KGSL_FLAG_WAKE_ON_TOUCH; /* A3XX does not have support for command batch profiling */ if (adreno_is_a3xx(adreno_dev) && (cmdbatch->flags & KGSL_CMDBATCH_PROFILING)) return -EOPNOTSUPP; /* Queue the command in the ringbuffer */ ret = adreno_dispatcher_queue_cmd(adreno_dev, drawctxt, cmdbatch, timestamp); /* * Return -EPROTO if the device has faulted since the last time we * checked - userspace uses this to perform post-fault activities */ if (!ret && test_and_clear_bit(ADRENO_CONTEXT_FAULT, &context->priv)) ret = -EPROTO; return ret; } static void adreno_ringbuffer_set_constraint(struct kgsl_device *device, struct kgsl_cmdbatch *cmdbatch) { struct kgsl_context *context = cmdbatch->context; /* * Check if the context has a constraint and constraint flags are * set. */ if (context->pwr_constraint.type && ((context->flags & KGSL_CONTEXT_PWR_CONSTRAINT) || (cmdbatch->flags & KGSL_CONTEXT_PWR_CONSTRAINT))) kgsl_pwrctrl_set_constraint(device, &context->pwr_constraint, context->id); } static inline int _get_alwayson_counter(struct adreno_device *adreno_dev, unsigned int *cmds, uint64_t gpuaddr) { unsigned int *p = cmds; *p++ = cp_mem_packet(adreno_dev, CP_REG_TO_MEM, 2, 1); /* * For a4x and some a5x the alwayson_hi read through CPU * will be masked. Only do 32 bit CP reads for keeping the * numbers consistent */ if (ADRENO_GPUREV(adreno_dev) >= 400 && ADRENO_GPUREV(adreno_dev) <= ADRENO_REV_A530) *p++ = adreno_getreg(adreno_dev, ADRENO_REG_RBBM_ALWAYSON_COUNTER_LO); else *p++ = adreno_getreg(adreno_dev, ADRENO_REG_RBBM_ALWAYSON_COUNTER_LO) | (1 << 30) | (2 << 18); p += cp_gpuaddr(adreno_dev, p, gpuaddr); return (unsigned int)(p - cmds); } /* This is the maximum possible size for 64 bit targets */ #define PROFILE_IB_DWORDS 4 #define PROFILE_IB_SLOTS (PAGE_SIZE / (PROFILE_IB_DWORDS << 2)) static int set_user_profiling(struct adreno_device *adreno_dev, struct adreno_ringbuffer *rb, u32 *cmds, u64 gpuaddr) { int dwords, index = 0; u64 ib_gpuaddr; u32 *ib; if (!rb->profile_desc.hostptr) return 0; ib = ((u32 *) rb->profile_desc.hostptr) + (rb->profile_index * PROFILE_IB_DWORDS); ib_gpuaddr = rb->profile_desc.gpuaddr + (rb->profile_index * (PROFILE_IB_DWORDS << 2)); dwords = _get_alwayson_counter(adreno_dev, ib, gpuaddr); /* Make an indirect buffer for the request */ cmds[index++] = cp_mem_packet(adreno_dev, CP_INDIRECT_BUFFER_PFE, 2, 1); index += cp_gpuaddr(adreno_dev, &cmds[index], ib_gpuaddr); cmds[index++] = dwords; rb->profile_index = (rb->profile_index + 1) % PROFILE_IB_SLOTS; return index; } /* adreno_rindbuffer_submitcmd - submit userspace IBs to the GPU */ int adreno_ringbuffer_submitcmd(struct adreno_device *adreno_dev, struct kgsl_cmdbatch *cmdbatch, struct adreno_submit_time *time) { struct kgsl_device *device = KGSL_DEVICE(adreno_dev); struct adreno_gpudev *gpudev = ADRENO_GPU_DEVICE(adreno_dev); struct kgsl_memobj_node *ib; unsigned int numibs = 0; unsigned int *link; unsigned int *cmds; struct kgsl_context *context; struct adreno_context *drawctxt; bool use_preamble = true; bool cmdbatch_user_profiling = false; bool cmdbatch_kernel_profiling = false; int flags = KGSL_CMD_FLAGS_NONE; int ret; struct adreno_ringbuffer *rb; struct kgsl_cmdbatch_profiling_buffer *profile_buffer = NULL; unsigned int dwords = 0; struct adreno_submit_time local; struct kgsl_mem_entry *entry = cmdbatch->profiling_buf_entry; if (entry) profile_buffer = kgsl_gpuaddr_to_vaddr(&entry->memdesc, cmdbatch->profiling_buffer_gpuaddr); context = cmdbatch->context; drawctxt = ADRENO_CONTEXT(context); /* Get the total IBs in the list */ list_for_each_entry(ib, &cmdbatch->cmdlist, node) numibs++; rb = drawctxt->rb; /* process any profiling results that are available into the log_buf */ adreno_profile_process_results(adreno_dev); /* * If SKIP CMD flag is set for current context * a) set SKIPCMD as fault_recovery for current commandbatch * b) store context's commandbatch fault_policy in current * commandbatch fault_policy and clear context's commandbatch * fault_policy * c) force preamble for commandbatch */ if (test_bit(ADRENO_CONTEXT_SKIP_CMD, &drawctxt->base.priv) && (!test_bit(CMDBATCH_FLAG_SKIP, &cmdbatch->priv))) { set_bit(KGSL_FT_SKIPCMD, &cmdbatch->fault_recovery); cmdbatch->fault_policy = drawctxt->fault_policy; set_bit(CMDBATCH_FLAG_FORCE_PREAMBLE, &cmdbatch->priv); /* if context is detached print fault recovery */ adreno_fault_skipcmd_detached(adreno_dev, drawctxt, cmdbatch); /* clear the drawctxt flags */ clear_bit(ADRENO_CONTEXT_SKIP_CMD, &drawctxt->base.priv); drawctxt->fault_policy = 0; } /*When preamble is enabled, the preamble buffer with state restoration commands are stored in the first node of the IB chain. We can skip that if a context switch hasn't occured */ if ((drawctxt->base.flags & KGSL_CONTEXT_PREAMBLE) && !test_bit(CMDBATCH_FLAG_FORCE_PREAMBLE, &cmdbatch->priv) && (rb->drawctxt_active == drawctxt)) use_preamble = false; /* * In skip mode don't issue the draw IBs but keep all the other * accoutrements of a submision (including the interrupt) to keep * the accounting sane. Set start_index and numibs to 0 to just * generate the start and end markers and skip everything else */ if (test_bit(CMDBATCH_FLAG_SKIP, &cmdbatch->priv)) { use_preamble = false; numibs = 0; } /* * a5xx uses 64 bit memory address. pm4 commands that involve read/write * from memory take 4 bytes more than a4xx because of 64 bit addressing. * This function is shared between gpucores, so reserve the max size * required and adjust the number of commands before calling addcmds. * Each submission needs 7 dwords max for wrappers and other red tape. */ dwords = 7; /* Each IB takes up 30 dwords in worst case */ dwords += (numibs * 30); if (cmdbatch->flags & KGSL_CMDBATCH_PROFILING && !adreno_is_a3xx(adreno_dev) && profile_buffer) { cmdbatch_user_profiling = true; /* * User side profiling uses two IB1s, one before with 4 dwords * per INDIRECT_BUFFER_PFE call */ dwords += 8; /* * we want to use an adreno_submit_time struct to get the * precise moment when the command is submitted to the * ringbuffer. If an upstream caller already passed down a * pointer piggyback on that otherwise use a local struct */ if (time == NULL) time = &local; } if (test_bit(CMDBATCH_FLAG_PROFILE, &cmdbatch->priv)) { cmdbatch_kernel_profiling = true; dwords += 6; if (adreno_is_a5xx(adreno_dev)) dwords += 2; } if (gpudev->preemption_yield_enable && adreno_is_preemption_enabled(adreno_dev)) dwords += 8; link = kzalloc(sizeof(unsigned int) * dwords, GFP_KERNEL); if (!link) { ret = -ENOMEM; goto done; } cmds = link; *cmds++ = cp_packet(adreno_dev, CP_NOP, 1); *cmds++ = KGSL_START_OF_IB_IDENTIFIER; if (cmdbatch_kernel_profiling) { cmds += _get_alwayson_counter(adreno_dev, cmds, adreno_dev->cmdbatch_profile_buffer.gpuaddr + ADRENO_CMDBATCH_PROFILE_OFFSET(cmdbatch->profile_index, started)); } /* * Add IB1 to read the GPU ticks at the start of the cmdbatch and * write it into the appropriate cmdbatch profiling buffer offset */ if (cmdbatch_user_profiling) { cmds += set_user_profiling(adreno_dev, rb, cmds, cmdbatch->profiling_buffer_gpuaddr + offsetof(struct kgsl_cmdbatch_profiling_buffer, gpu_ticks_submitted)); } if (numibs) { list_for_each_entry(ib, &cmdbatch->cmdlist, node) { /* * Skip 0 sized IBs - these are presumed to have been * removed from consideration by the FT policy */ if (ib->priv & MEMOBJ_SKIP || (ib->priv & MEMOBJ_PREAMBLE && use_preamble == false)) *cmds++ = cp_mem_packet(adreno_dev, CP_NOP, 3, 1); *cmds++ = cp_mem_packet(adreno_dev, CP_INDIRECT_BUFFER_PFE, 2, 1); cmds += cp_gpuaddr(adreno_dev, cmds, ib->gpuaddr); *cmds++ = (unsigned int) ib->size >> 2; /* preamble is required on only for first command */ use_preamble = false; } } if (gpudev->preemption_yield_enable && adreno_is_preemption_enabled(adreno_dev)) cmds += gpudev->preemption_yield_enable(cmds); if (cmdbatch_kernel_profiling) { cmds += _get_alwayson_counter(adreno_dev, cmds, adreno_dev->cmdbatch_profile_buffer.gpuaddr + ADRENO_CMDBATCH_PROFILE_OFFSET(cmdbatch->profile_index, retired)); } /* * Add IB1 to read the GPU ticks at the end of the cmdbatch and * write it into the appropriate cmdbatch profiling buffer offset */ if (cmdbatch_user_profiling) { cmds += set_user_profiling(adreno_dev, rb, cmds, cmdbatch->profiling_buffer_gpuaddr + offsetof(struct kgsl_cmdbatch_profiling_buffer, gpu_ticks_retired)); } *cmds++ = cp_packet(adreno_dev, CP_NOP, 1); *cmds++ = KGSL_END_OF_IB_IDENTIFIER; /* Context switches commands should *always* be on the GPU */ ret = adreno_drawctxt_switch(adreno_dev, rb, drawctxt, ADRENO_CONTEXT_SWITCH_FORCE_GPU); /* * In the unlikely event of an error in the drawctxt switch, * treat it like a hang */ if (ret) { /* * It is "normal" to get a -ENOSPC or a -ENOENT. Don't log it, * the upper layers know how to handle it */ if (ret != -ENOSPC && ret != -ENOENT) KGSL_DRV_ERR(device, "Unable to switch draw context: %d\n", ret); goto done; } if (test_bit(CMDBATCH_FLAG_WFI, &cmdbatch->priv)) flags = KGSL_CMD_FLAGS_WFI; /* * For some targets, we need to execute a dummy shader operation after a * power collapse */ if (test_and_clear_bit(ADRENO_DEVICE_PWRON, &adreno_dev->priv) && test_bit(ADRENO_DEVICE_PWRON_FIXUP, &adreno_dev->priv)) flags |= KGSL_CMD_FLAGS_PWRON_FIXUP; /* Set the constraints before adding to ringbuffer */ adreno_ringbuffer_set_constraint(device, cmdbatch); /* CFF stuff executed only if CFF is enabled */ kgsl_cffdump_capture_ib_desc(device, context, cmdbatch); ret = adreno_ringbuffer_addcmds(rb, flags, &link[0], (cmds - link), cmdbatch->timestamp, time); if (!ret) { cmdbatch->global_ts = drawctxt->internal_timestamp; /* Put the timevalues in the profiling buffer */ if (cmdbatch_user_profiling) { /* * Return kernel clock time to the the client * if requested */ if (cmdbatch->flags & KGSL_CMDBATCH_PROFILING_KTIME) { uint64_t secs = time->ktime; profile_buffer->wall_clock_ns = do_div(secs, NSEC_PER_SEC); profile_buffer->wall_clock_s = secs; } else { profile_buffer->wall_clock_s = time->utime.tv_sec; profile_buffer->wall_clock_ns = time->utime.tv_nsec; } profile_buffer->gpu_ticks_queued = time->ticks; } } kgsl_cffdump_regpoll(device, adreno_getreg(adreno_dev, ADRENO_REG_RBBM_STATUS) << 2, 0x00000000, 0x80000000); done: /* Corresponding unmap to the memdesc map of profile_buffer */ if (entry) kgsl_memdesc_unmap(&entry->memdesc); trace_kgsl_issueibcmds(device, context->id, cmdbatch, numibs, cmdbatch->timestamp, cmdbatch->flags, ret, drawctxt->type); kfree(link); return ret; } /** * adreno_ringbuffer_wait_callback() - Callback function for event registered * on a ringbuffer timestamp * @device: Device for which the the callback is valid * @context: The context of the event * @priv: The private parameter of the event * @result: Result of the event trigger */ static void adreno_ringbuffer_wait_callback(struct kgsl_device *device, struct kgsl_event_group *group, void *priv, int result) { struct adreno_ringbuffer *rb = group->priv; wake_up_all(&rb->ts_expire_waitq); } /* check if timestamp is greater than the current rb timestamp */ static inline int adreno_ringbuffer_check_timestamp( struct adreno_ringbuffer *rb, unsigned int timestamp, int type) { struct adreno_device *adreno_dev = ADRENO_RB_DEVICE(rb); unsigned int ts; adreno_rb_readtimestamp(adreno_dev, rb, type, &ts); return (timestamp_cmp(ts, timestamp) >= 0); } /** * adreno_ringbuffer_waittimestamp() - Wait for a RB timestamp * @rb: The ringbuffer to wait on * @timestamp: The timestamp to wait for * @msecs: The wait timeout period */ int adreno_ringbuffer_waittimestamp(struct adreno_ringbuffer *rb, unsigned int timestamp, unsigned int msecs) { struct adreno_device *adreno_dev = ADRENO_RB_DEVICE(rb); struct kgsl_device *device = KGSL_DEVICE(adreno_dev); int ret; unsigned long wait_time; /* force a timeout from caller for the wait */ BUG_ON(0 == msecs); ret = kgsl_add_event(device, &rb->events, timestamp, adreno_ringbuffer_wait_callback, NULL); if (ret) return ret; mutex_unlock(&device->mutex); wait_time = msecs_to_jiffies(msecs); if (0 == wait_event_timeout(rb->ts_expire_waitq, !kgsl_event_pending(device, &rb->events, timestamp, adreno_ringbuffer_wait_callback, NULL), wait_time)) ret = -ETIMEDOUT; mutex_lock(&device->mutex); /* * after wake up make sure that expected timestamp has retired * because the wakeup could have happened due to a cancel event */ if (!ret && !adreno_ringbuffer_check_timestamp(rb, timestamp, KGSL_TIMESTAMP_RETIRED)) { ret = -EAGAIN; } return ret; }