2010-01-14 03:24:16 -07:00
|
|
|
/*
|
2009-06-17 01:47:42 -06:00
|
|
|
* Copyright © 2008 Nicolai Haehnle
|
|
|
|
* Copyright © 2008 Jérôme Glisse
|
|
|
|
* All Rights Reserved.
|
2010-01-14 03:24:16 -07:00
|
|
|
*
|
2009-06-17 01:47:42 -06:00
|
|
|
* 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, sub license, 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:
|
2010-01-14 03:24:16 -07:00
|
|
|
*
|
2009-06-17 01:47:42 -06:00
|
|
|
* 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 NON-INFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
|
2010-01-14 03:24:16 -07:00
|
|
|
* 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
|
2009-06-17 01:47:42 -06:00
|
|
|
* USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the
|
|
|
|
* next paragraph) shall be included in all copies or substantial portions
|
|
|
|
* of the Software.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Authors:
|
|
|
|
* Aapo Tahkola <aet@rasterburn.org>
|
|
|
|
* Nicolai Haehnle <prefect_@gmx.net>
|
|
|
|
* Jérôme Glisse <glisse@freedesktop.org>
|
|
|
|
*/
|
|
|
|
#ifndef RADEON_CS_H
|
|
|
|
#define RADEON_CS_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include "drm.h"
|
|
|
|
#include "radeon_drm.h"
|
|
|
|
#include "radeon_bo.h"
|
|
|
|
|
|
|
|
struct radeon_cs_reloc {
|
|
|
|
struct radeon_bo *bo;
|
|
|
|
uint32_t read_domain;
|
|
|
|
uint32_t write_domain;
|
|
|
|
uint32_t flags;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#define RADEON_CS_SPACE_OK 0
|
|
|
|
#define RADEON_CS_SPACE_OP_TO_BIG 1
|
|
|
|
#define RADEON_CS_SPACE_FLUSH 2
|
|
|
|
|
|
|
|
struct radeon_cs {
|
2009-12-16 21:11:55 -07:00
|
|
|
uint32_t *packets;
|
|
|
|
unsigned cdw;
|
|
|
|
unsigned ndw;
|
2009-06-17 01:47:42 -06:00
|
|
|
unsigned section_ndw;
|
|
|
|
unsigned section_cdw;
|
|
|
|
};
|
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
#define MAX_SPACE_BOS (32)
|
2009-08-18 09:51:38 -06:00
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
struct radeon_cs_manager;
|
2009-07-05 21:34:24 -06:00
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
extern struct radeon_cs *radeon_cs_create(struct radeon_cs_manager *csm,
|
2010-01-14 03:24:16 -07:00
|
|
|
uint32_t ndw);
|
2009-12-16 21:11:55 -07:00
|
|
|
|
|
|
|
extern int radeon_cs_begin(struct radeon_cs *cs,
|
2010-01-14 03:24:16 -07:00
|
|
|
uint32_t ndw,
|
|
|
|
const char *file,
|
|
|
|
const char *func, int line);
|
2009-12-16 21:11:55 -07:00
|
|
|
extern int radeon_cs_end(struct radeon_cs *cs,
|
2010-01-14 03:24:16 -07:00
|
|
|
const char *file,
|
|
|
|
const char *func,
|
|
|
|
int line);
|
2009-12-16 21:11:55 -07:00
|
|
|
extern int radeon_cs_emit(struct radeon_cs *cs);
|
|
|
|
extern int radeon_cs_destroy(struct radeon_cs *cs);
|
|
|
|
extern int radeon_cs_erase(struct radeon_cs *cs);
|
|
|
|
extern int radeon_cs_need_flush(struct radeon_cs *cs);
|
|
|
|
extern void radeon_cs_print(struct radeon_cs *cs, FILE *file);
|
|
|
|
extern void radeon_cs_set_limit(struct radeon_cs *cs, uint32_t domain, uint32_t limit);
|
|
|
|
extern void radeon_cs_space_set_flush(struct radeon_cs *cs, void (*fn)(void *), void *data);
|
|
|
|
extern int radeon_cs_write_reloc(struct radeon_cs *cs,
|
2010-01-14 03:24:16 -07:00
|
|
|
struct radeon_bo *bo,
|
|
|
|
uint32_t read_domain,
|
|
|
|
uint32_t write_domain,
|
|
|
|
uint32_t flags);
|
2009-08-29 03:08:57 -06:00
|
|
|
extern uint32_t radeon_cs_get_id(struct radeon_cs *cs);
|
2009-07-05 21:34:24 -06:00
|
|
|
/*
|
|
|
|
* add a persistent BO to the list
|
|
|
|
* a persistent BO is one that will be referenced across flushes,
|
|
|
|
* i.e. colorbuffer, textures etc.
|
|
|
|
* They get reset when a new "operation" happens, where an operation
|
|
|
|
* is a state emission with a color/textures etc followed by a bunch of vertices.
|
|
|
|
*/
|
|
|
|
void radeon_cs_space_add_persistent_bo(struct radeon_cs *cs,
|
2010-01-14 03:24:16 -07:00
|
|
|
struct radeon_bo *bo,
|
|
|
|
uint32_t read_domains,
|
|
|
|
uint32_t write_domain);
|
2009-07-05 21:34:24 -06:00
|
|
|
|
|
|
|
/* reset the persistent BO list */
|
|
|
|
void radeon_cs_space_reset_bos(struct radeon_cs *cs);
|
|
|
|
|
|
|
|
/* do a space check with the current persistent BO list */
|
|
|
|
int radeon_cs_space_check(struct radeon_cs *cs);
|
|
|
|
|
|
|
|
/* do a space check with the current persistent BO list and a temporary BO
|
|
|
|
* a temporary BO is like a DMA buffer, which gets flushed with the
|
|
|
|
* command buffer */
|
|
|
|
int radeon_cs_space_check_with_bo(struct radeon_cs *cs,
|
2010-01-14 03:24:16 -07:00
|
|
|
struct radeon_bo *bo,
|
|
|
|
uint32_t read_domains,
|
|
|
|
uint32_t write_domain);
|
2009-07-05 21:34:24 -06:00
|
|
|
|
2009-12-16 21:11:55 -07:00
|
|
|
static inline void radeon_cs_write_dword(struct radeon_cs *cs, uint32_t dword)
|
|
|
|
{
|
|
|
|
cs->packets[cs->cdw++] = dword;
|
|
|
|
if (cs->section_ndw) {
|
|
|
|
cs->section_cdw++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void radeon_cs_write_qword(struct radeon_cs *cs, uint64_t qword)
|
|
|
|
{
|
|
|
|
memcpy(cs->packets + cs->cdw, &qword, sizeof(uint64_t));
|
|
|
|
cs->cdw += 2;
|
|
|
|
if (cs->section_ndw) {
|
|
|
|
cs->section_cdw += 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void radeon_cs_write_table(struct radeon_cs *cs,
|
2010-04-26 12:06:53 -06:00
|
|
|
const void *data, uint32_t size)
|
2009-12-16 21:11:55 -07:00
|
|
|
{
|
|
|
|
memcpy(cs->packets + cs->cdw, data, size * 4);
|
|
|
|
cs->cdw += size;
|
|
|
|
if (cs->section_ndw) {
|
2010-01-14 03:24:16 -07:00
|
|
|
cs->section_cdw += size;
|
2009-12-16 21:11:55 -07:00
|
|
|
}
|
|
|
|
}
|
2009-06-17 01:47:42 -06:00
|
|
|
#endif
|