123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- #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 {
- uint32_t *packets;
- unsigned cdw;
- unsigned ndw;
- unsigned section_ndw;
- unsigned section_cdw;
- };
- #define MAX_SPACE_BOS (32)
- struct radeon_cs_manager;
- extern struct radeon_cs *radeon_cs_create(struct radeon_cs_manager *csm,
- uint32_t ndw);
- extern int radeon_cs_begin(struct radeon_cs *cs,
- uint32_t ndw,
- const char *file,
- const char *func, int line);
- extern int radeon_cs_end(struct radeon_cs *cs,
- const char *file,
- const char *func,
- int line);
- 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,
- struct radeon_bo *bo,
- uint32_t read_domain,
- uint32_t write_domain,
- uint32_t flags);
- extern uint32_t radeon_cs_get_id(struct radeon_cs *cs);
- void radeon_cs_space_add_persistent_bo(struct radeon_cs *cs,
- struct radeon_bo *bo,
- uint32_t read_domains,
- uint32_t write_domain);
- void radeon_cs_space_reset_bos(struct radeon_cs *cs);
- int radeon_cs_space_check(struct radeon_cs *cs);
- int radeon_cs_space_check_with_bo(struct radeon_cs *cs,
- struct radeon_bo *bo,
- uint32_t read_domains,
- uint32_t write_domain);
- 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,
- const void *data, uint32_t size)
- {
- memcpy(cs->packets + cs->cdw, data, size * 4);
- cs->cdw += size;
- if (cs->section_ndw) {
- cs->section_cdw += size;
- }
- }
- #endif
|