2012-10-07 17:57:31 -06:00
|
|
|
/* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2012 Rob Clark <robclark@freedesktop.org>
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 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.
|
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Rob Clark <robclark@freedesktop.org>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef FREEDRENO_PRIV_H_
|
|
|
|
#define FREEDRENO_PRIV_H_
|
|
|
|
|
2014-08-04 03:23:20 -06:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2012-10-07 17:57:31 -06:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <sys/ioctl.h>
|
2013-05-15 11:18:02 -06:00
|
|
|
#include <pthread.h>
|
2013-07-10 13:20:04 -06:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <assert.h>
|
2012-10-07 17:57:31 -06:00
|
|
|
|
2015-04-05 08:51:59 -06:00
|
|
|
#include "libdrm_macros.h"
|
2012-10-07 17:57:31 -06:00
|
|
|
#include "xf86drm.h"
|
|
|
|
#include "xf86atomic.h"
|
|
|
|
|
2015-05-07 11:03:47 -06:00
|
|
|
#include "util_double_list.h"
|
2012-10-07 17:57:31 -06:00
|
|
|
|
|
|
|
#include "freedreno_drmif.h"
|
2013-07-10 13:20:04 -06:00
|
|
|
#include "freedreno_ringbuffer.h"
|
2013-08-29 14:31:52 -06:00
|
|
|
#include "drm.h"
|
2013-07-10 13:20:04 -06:00
|
|
|
|
|
|
|
struct fd_device_funcs {
|
|
|
|
int (*bo_new_handle)(struct fd_device *dev, uint32_t size,
|
|
|
|
uint32_t flags, uint32_t *handle);
|
|
|
|
struct fd_bo * (*bo_from_handle)(struct fd_device *dev,
|
|
|
|
uint32_t size, uint32_t handle);
|
|
|
|
struct fd_pipe * (*pipe_new)(struct fd_device *dev, enum fd_pipe_id id);
|
|
|
|
void (*destroy)(struct fd_device *dev);
|
|
|
|
};
|
2012-10-07 17:57:31 -06:00
|
|
|
|
2013-12-13 10:48:30 -07:00
|
|
|
struct fd_bo_bucket {
|
|
|
|
uint32_t size;
|
|
|
|
struct list_head list;
|
|
|
|
};
|
|
|
|
|
2012-10-07 17:57:31 -06:00
|
|
|
struct fd_device {
|
|
|
|
int fd;
|
2013-05-15 11:18:02 -06:00
|
|
|
atomic_t refcnt;
|
|
|
|
|
|
|
|
/* tables to keep track of bo's, to avoid "evil-twin" fd_bo objects:
|
|
|
|
*
|
|
|
|
* handle_table: maps handle to fd_bo
|
|
|
|
* name_table: maps flink name to fd_bo
|
|
|
|
*
|
|
|
|
* We end up needing two tables, because DRM_IOCTL_GEM_OPEN always
|
|
|
|
* returns a new handle. So we need to figure out if the bo is already
|
|
|
|
* open in the process first, before calling gem-open.
|
|
|
|
*/
|
|
|
|
void *handle_table, *name_table;
|
2013-07-10 13:20:04 -06:00
|
|
|
|
|
|
|
struct fd_device_funcs *funcs;
|
2013-12-13 10:48:30 -07:00
|
|
|
|
|
|
|
struct fd_bo_bucket cache_bucket[14 * 4];
|
|
|
|
int num_buckets;
|
|
|
|
time_t time;
|
2014-01-12 06:27:36 -07:00
|
|
|
|
|
|
|
int closefd; /* call close(fd) upon destruction */
|
2013-07-10 13:20:04 -06:00
|
|
|
};
|
|
|
|
|
2015-03-23 15:35:38 -06:00
|
|
|
drm_private void fd_cleanup_bo_cache(struct fd_device *dev, time_t time);
|
2013-12-13 10:48:30 -07:00
|
|
|
|
|
|
|
/* for where @table_lock is already held: */
|
2015-03-23 15:35:38 -06:00
|
|
|
drm_private void fd_device_del_locked(struct fd_device *dev);
|
2013-12-13 10:48:30 -07:00
|
|
|
|
2013-07-10 13:20:04 -06:00
|
|
|
struct fd_pipe_funcs {
|
|
|
|
struct fd_ringbuffer * (*ringbuffer_new)(struct fd_pipe *pipe, uint32_t size);
|
|
|
|
int (*get_param)(struct fd_pipe *pipe, enum fd_param_id param, uint64_t *value);
|
|
|
|
int (*wait)(struct fd_pipe *pipe, uint32_t timestamp);
|
|
|
|
void (*destroy)(struct fd_pipe *pipe);
|
2012-10-07 17:57:31 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
struct fd_pipe {
|
|
|
|
struct fd_device *dev;
|
|
|
|
enum fd_pipe_id id;
|
2013-07-10 13:20:04 -06:00
|
|
|
struct fd_pipe_funcs *funcs;
|
|
|
|
};
|
2012-10-07 17:57:31 -06:00
|
|
|
|
2013-07-10 13:20:04 -06:00
|
|
|
struct fd_ringmarker {
|
|
|
|
struct fd_ringbuffer *ring;
|
|
|
|
uint32_t *cur;
|
|
|
|
};
|
2013-04-25 14:36:15 -06:00
|
|
|
|
2013-07-10 13:20:04 -06:00
|
|
|
struct fd_ringbuffer_funcs {
|
|
|
|
void * (*hostptr)(struct fd_ringbuffer *ring);
|
|
|
|
int (*flush)(struct fd_ringbuffer *ring, uint32_t *last_start);
|
2014-02-19 09:01:23 -07:00
|
|
|
void (*reset)(struct fd_ringbuffer *ring);
|
2013-07-10 13:20:04 -06:00
|
|
|
void (*emit_reloc)(struct fd_ringbuffer *ring,
|
|
|
|
const struct fd_reloc *reloc);
|
|
|
|
void (*emit_reloc_ring)(struct fd_ringbuffer *ring,
|
|
|
|
struct fd_ringmarker *target, struct fd_ringmarker *end);
|
|
|
|
void (*destroy)(struct fd_ringbuffer *ring);
|
2012-10-07 17:57:31 -06:00
|
|
|
};
|
|
|
|
|
2013-07-10 13:20:04 -06:00
|
|
|
struct fd_bo_funcs {
|
|
|
|
int (*offset)(struct fd_bo *bo, uint64_t *offset);
|
|
|
|
int (*cpu_prep)(struct fd_bo *bo, struct fd_pipe *pipe, uint32_t op);
|
|
|
|
void (*cpu_fini)(struct fd_bo *bo);
|
|
|
|
void (*destroy)(struct fd_bo *bo);
|
|
|
|
};
|
2012-10-07 17:57:31 -06:00
|
|
|
|
|
|
|
struct fd_bo {
|
|
|
|
struct fd_device *dev;
|
|
|
|
uint32_t size;
|
|
|
|
uint32_t handle;
|
|
|
|
uint32_t name;
|
2014-09-16 14:26:50 -06:00
|
|
|
int fd; /* dmabuf handle */
|
2012-10-07 17:57:31 -06:00
|
|
|
void *map;
|
|
|
|
atomic_t refcnt;
|
2013-07-10 13:20:04 -06:00
|
|
|
struct fd_bo_funcs *funcs;
|
2013-12-13 10:48:30 -07:00
|
|
|
|
|
|
|
int bo_reuse;
|
|
|
|
struct list_head list; /* bucket-list entry */
|
|
|
|
time_t free_time; /* time when added to bucket-list */
|
2012-10-07 17:57:31 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
#define ALIGN(v,a) (((v) + (a) - 1) & ~((a) - 1))
|
|
|
|
#define ARRAY_SIZE(arr) (sizeof(arr) / sizeof((arr)[0]))
|
|
|
|
|
2013-07-20 18:35:31 -06:00
|
|
|
#define enable_debug 0 /* TODO make dynamic */
|
2012-10-07 17:57:31 -06:00
|
|
|
|
|
|
|
#define INFO_MSG(fmt, ...) \
|
|
|
|
do { drmMsg("[I] "fmt " (%s:%d)\n", \
|
|
|
|
##__VA_ARGS__, __FUNCTION__, __LINE__); } while (0)
|
|
|
|
#define DEBUG_MSG(fmt, ...) \
|
|
|
|
do if (enable_debug) { drmMsg("[D] "fmt " (%s:%d)\n", \
|
|
|
|
##__VA_ARGS__, __FUNCTION__, __LINE__); } while (0)
|
|
|
|
#define WARN_MSG(fmt, ...) \
|
|
|
|
do { drmMsg("[W] "fmt " (%s:%d)\n", \
|
|
|
|
##__VA_ARGS__, __FUNCTION__, __LINE__); } while (0)
|
|
|
|
#define ERROR_MSG(fmt, ...) \
|
|
|
|
do { drmMsg("[E] " fmt " (%s:%d)\n", \
|
|
|
|
##__VA_ARGS__, __FUNCTION__, __LINE__); } while (0)
|
|
|
|
|
2013-07-10 13:20:04 -06:00
|
|
|
#define U642VOID(x) ((void *)(unsigned long)(x))
|
|
|
|
#define VOID2U64(x) ((uint64_t)(unsigned long)(x))
|
|
|
|
|
2012-10-07 17:57:31 -06:00
|
|
|
#endif /* FREEDRENO_PRIV_H_ */
|