blob: b5806430ace14d1714060266df365e68780fb7af [file] [log] [blame]
Stéphane Marchesin25a26062014-09-12 16:18:59 -07001/*
Daniele Castagna7a755de2016-12-16 17:32:30 -05002 * Copyright 2014 The Chromium OS Authors. All rights reserved.
Stéphane Marchesin25a26062014-09-12 16:18:59 -07003 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file.
5 */
6
7#ifndef HELPERS_H
8#define HELPERS_H
9
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070010#include "drv.h"
11
Gurchetan Singh4f298f92017-03-23 11:29:26 -070012uint32_t drv_stride_from_format(uint32_t format, uint32_t width, size_t plane);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080013int drv_bo_from_format(struct bo *bo, uint32_t stride, uint32_t aligned_height, uint32_t format);
14int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height, uint32_t format,
15 uint32_t flags);
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070016int drv_dumb_bo_destroy(struct bo *bo);
17int drv_gem_bo_destroy(struct bo *bo);
Gurchetan Singh71611d62017-01-03 16:49:56 -080018int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data);
Joe Kniss65705852017-06-29 15:02:46 -070019void *drv_dumb_bo_map(struct bo *bo, struct map_info *data, size_t plane, int prot);
Gurchetan Singhba6bd502017-09-18 15:29:47 -070020int drv_bo_munmap(struct bo *bo, struct map_info *data);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080021uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo, size_t plane);
22void drv_increment_reference_count(struct driver *drv, struct bo *bo, size_t plane);
23void drv_decrement_reference_count(struct driver *drv, struct bo *bo, size_t plane);
Akshu Agrawal0337d9b2016-07-28 15:35:45 +053024uint32_t drv_log_base2(uint32_t value);
Gurchetan Singh1b1d56a2017-03-10 16:25:23 -080025int drv_add_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
26 uint64_t usage);
27int drv_add_combinations(struct driver *drv, const uint32_t *formats, uint32_t num_formats,
28 struct format_metadata *metadata, uint64_t usage);
29void drv_modify_combination(struct driver *drv, uint32_t format, struct format_metadata *metadata,
30 uint64_t usage);
Gurchetan Singh6b41fb52017-03-01 20:14:39 -080031struct kms_item *drv_query_kms(struct driver *drv, uint32_t *num_items);
Gurchetan Singh8ac0c9a2017-05-15 09:34:22 -070032int drv_modify_linear_combinations(struct driver *drv);
Stéphane Marchesin25a26062014-09-12 16:18:59 -070033#endif