We use the terms "flags" and "usage" interchangeably in this repo,
since they essentally mean the same thing. However, let's be a
little more consistent since it's kind of confusing, especially
when buffer map flags come to play. Let's:
- refer to everything in the drv_* layer as use_flags
- refer to everything in the gbm/gralloc layers as
usages
BUG=chromium:764871
TEST=emerge-eve {arc-cros-gralloc, minigbm}
Change-Id: If987d72369b895f38cde87e50ce1080f78f2a084
Reviewed-on: https://chromium-review.googlesource.com/691423
Commit-Ready: Gurchetan Singh <gurchetansingh@chromium.org>
Tested-by: Gurchetan Singh <gurchetansingh@chromium.org>
Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
35 lines
1.7 KiB
C
35 lines
1.7 KiB
C
/*
|
|
* Copyright 2014 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
|
|
#ifndef HELPERS_H
|
|
#define HELPERS_H
|
|
|
|
#include "drv.h"
|
|
|
|
uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane);
|
|
uint32_t drv_size_from_format(uint32_t format, uint32_t stride, uint32_t height, size_t plane);
|
|
int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format);
|
|
int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
|
|
uint64_t use_flags);
|
|
int drv_dumb_bo_destroy(struct bo *bo);
|
|
int drv_map_info_destroy(struct bo *bo);
|
|
int drv_gem_bo_destroy(struct bo *bo);
|
|
int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data);
|
|
void *drv_dumb_bo_map(struct bo *bo, struct map_info *data, size_t plane, int prot);
|
|
int drv_bo_munmap(struct bo *bo, struct map_info *data);
|
|
uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo, size_t plane);
|
|
void drv_increment_reference_count(struct driver *drv, struct bo *bo, size_t plane);
|
|
void drv_decrement_reference_count(struct driver *drv, struct bo *bo, size_t plane);
|
|
uint32_t drv_log_base2(uint32_t value);
|
|
int drv_add_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
|
|
uint64_t usage);
|
|
int drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats,
|
|
struct format_metadata *metadata, uint64_t usage);
|
|
void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
|
|
uint64_t usage);
|
|
struct kms_item *drv_query_kms(struct driver *drv, uint32_t *num_items);
|
|
int drv_modify_linear_combinations(struct driver *drv);
|
|
#endif
|