OSDN Git Service

freedreno/msm: remove dead error path
[android-x86/external-libdrm.git] / amdgpu / amdgpu_internal.h
index 8e6fbf4..e68246b 100644 (file)
@@ -19,6 +19,7 @@
  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  * OTHER DEALINGS IN THE SOFTWARE.
+ *
  */
 
 #ifndef _AMDGPU_INTERNAL_H_
@@ -30,6 +31,8 @@
 
 #include <assert.h>
 #include <pthread.h>
+
+#include "libdrm_macros.h"
 #include "xf86atomic.h"
 #include "amdgpu.h"
 #include "util_double_list.h"
@@ -41,6 +44,7 @@
 #define ROUND_DOWN(x, y) ((x) & ~__round_mask(x, y))
 
 #define AMDGPU_INVALID_VA_ADDRESS      0xffffffffffffffff
+#define AMDGPU_NULL_SUBMIT_SEQ         0
 
 struct amdgpu_bo_va_hole {
        struct list_head list;
@@ -49,7 +53,6 @@ struct amdgpu_bo_va_hole {
 };
 
 struct amdgpu_bo_va_mgr {
-       atomic_t refcount;
        /* the start virtual address */
        uint64_t va_offset;
        uint64_t va_max;
@@ -58,6 +61,20 @@ struct amdgpu_bo_va_mgr {
        uint32_t va_alignment;
 };
 
+struct amdgpu_va {
+       amdgpu_device_handle dev;
+       uint64_t address;
+       uint64_t size;
+       enum amdgpu_gpu_va_range range;
+       struct amdgpu_bo_va_mgr *vamgr;
+};
+
+struct amdgpu_asic_id {
+       uint32_t did;
+       uint32_t rid;
+       char *marketing_name;
+};
+
 struct amdgpu_device {
        atomic_t refcount;
        int fd;
@@ -65,6 +82,8 @@ struct amdgpu_device {
        unsigned major_version;
        unsigned minor_version;
 
+       /** Lookup table of asic device id, revision id and marketing name */
+       struct amdgpu_asic_id *asic_ids;
        /** List of buffer handles. Protected by bo_table_mutex. */
        struct util_hash_table *bo_handles;
        /** List of buffer GEM flink names. Protected by bo_table_mutex. */
@@ -73,7 +92,10 @@ struct amdgpu_device {
        pthread_mutex_t bo_table_mutex;
        struct drm_amdgpu_info_device dev_info;
        struct amdgpu_gpu_info info;
-       struct amdgpu_bo_va_mgr *vamgr;
+       /** The global VA manager for the whole virtual address space */
+       struct amdgpu_bo_va_mgr vamgr;
+       /** The VA manager for the 32bit address space */
+       struct amdgpu_bo_va_mgr vamgr_32;
 };
 
 struct amdgpu_bo {
@@ -81,7 +103,6 @@ struct amdgpu_bo {
        struct amdgpu_device *dev;
 
        uint64_t alloc_size;
-       uint64_t virtual_mc_base_address;
 
        uint32_t handle;
        uint32_t flink_name;
@@ -102,36 +123,45 @@ struct amdgpu_context {
        /** Mutex for accessing fences and to maintain command submissions
            in good sequence. */
        pthread_mutex_t sequence_mutex;
-       /** Buffer for user fences */
-       struct amdgpu_bo *fence_bo;
-       void *fence_cpu;
-       /** The newest expired fence for the ring of the ip blocks. */
-       uint64_t expired_fences[AMDGPU_HW_IP_NUM][AMDGPU_HW_IP_INSTANCE_MAX_COUNT][AMDGPU_CS_MAX_RINGS];
        /* context id*/
        uint32_t id;
+       uint64_t last_seq[AMDGPU_HW_IP_NUM][AMDGPU_HW_IP_INSTANCE_MAX_COUNT][AMDGPU_CS_MAX_RINGS];
+       struct list_head sem_list[AMDGPU_HW_IP_NUM][AMDGPU_HW_IP_INSTANCE_MAX_COUNT][AMDGPU_CS_MAX_RINGS];
+};
+
+/**
+ * Structure describing sw semaphore based on scheduler
+ *
+ */
+struct amdgpu_semaphore {
+       atomic_t refcount;
+       struct list_head list;
+       struct amdgpu_cs_fence signal_fence;
 };
 
 /**
  * Functions.
  */
 
-void amdgpu_device_free_internal(amdgpu_device_handle dev);
+drm_private void amdgpu_bo_free_internal(amdgpu_bo_handle bo);
 
-void amdgpu_bo_free_internal(amdgpu_bo_handle bo);
+drm_private void amdgpu_vamgr_init(struct amdgpu_bo_va_mgr *mgr, uint64_t start,
+                      uint64_t max, uint64_t alignment);
 
-struct amdgpu_bo_va_mgr* amdgpu_vamgr_get_global(struct amdgpu_device *dev);
+drm_private void amdgpu_vamgr_deinit(struct amdgpu_bo_va_mgr *mgr);
 
-void amdgpu_vamgr_reference(struct amdgpu_bo_va_mgr **dst, struct amdgpu_bo_va_mgr *src);
+drm_private uint64_t
+amdgpu_vamgr_find_va(struct amdgpu_bo_va_mgr *mgr, uint64_t size,
+                    uint64_t alignment, uint64_t base_required);
 
-uint64_t amdgpu_vamgr_find_va(struct amdgpu_bo_va_mgr *mgr, uint64_t size,
-                               uint64_t alignment, uint64_t base_preferred);
+drm_private void
+amdgpu_vamgr_free_va(struct amdgpu_bo_va_mgr *mgr, uint64_t va, uint64_t size);
 
-void amdgpu_vamgr_free_va(struct amdgpu_bo_va_mgr *mgr, uint64_t va, 
-                               uint64_t size);
+drm_private int amdgpu_parse_asic_ids(struct amdgpu_asic_id **asic_ids);
 
-int amdgpu_query_gpu_info_init(amdgpu_device_handle dev);
+drm_private int amdgpu_query_gpu_info_init(amdgpu_device_handle dev);
 
-uint64_t amdgpu_cs_calculate_timeout(uint64_t timeout);
+drm_private uint64_t amdgpu_cs_calculate_timeout(uint64_t timeout);
 
 /**
  * Inline functions.
@@ -181,20 +211,4 @@ static inline void amdgpu_bo_reference(struct amdgpu_bo **dst,
        *dst = src;
 }
 
-/**
- * Assignment between two amdgpu_device pointers with reference counting.
- *
- * Usage:
- *    struct amdgpu_device *dst = ... , *src = ...;
- *
- *    dst = src;
- *    // No reference counting. Only use this when you need to move
- *    // a reference from one pointer to another.
- *
- *    amdgpu_device_reference(&dst, src);
- *    // Reference counters are updated. dst is decremented and src is
- *    // incremented. dst is freed if its reference counter is 0.
- */
-void amdgpu_device_reference(struct amdgpu_device **dst,
-                            struct amdgpu_device *src);
 #endif