blob: 64e8489e3917b6b47e9a58f1ebec995631f711c0 [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 Singh83dc4fb2016-07-19 15:52:33 -070012int drv_bpp_from_format(uint32_t format, size_t plane);
Gurchetan Singh42cc6d62016-08-29 18:19:19 -070013int drv_bo_from_format(struct bo *bo, uint32_t width, uint32_t height,
Gurchetan Singhf3b22da2016-11-21 10:46:38 -080014 uint32_t format);
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070015int drv_dumb_bo_create(struct bo *bo, uint32_t width, uint32_t height,
Stéphane Marchesinec88e892015-11-03 16:14:59 -080016 uint32_t format, uint32_t flags);
Gurchetan Singh46faf6b2016-08-05 14:40:07 -070017int drv_dumb_bo_destroy(struct bo *bo);
18int drv_gem_bo_destroy(struct bo *bo);
Gurchetan Singh71611d62017-01-03 16:49:56 -080019int drv_prime_bo_import(struct bo *bo, struct drv_import_fd_data *data);
Gurchetan Singh1a31e602016-10-06 10:58:00 -070020void *drv_dumb_bo_map(struct bo *bo, struct map_info *data, size_t plane);
Gurchetan Singh1647fbe2016-08-03 17:14:55 -070021uintptr_t drv_get_reference_count(struct driver *drv, struct bo *bo,
22 size_t plane);
23void drv_increment_reference_count(struct driver *drv, struct bo *bo,
24 size_t plane);
25void drv_decrement_reference_count(struct driver *drv, struct bo *bo,
26 size_t plane);
Akshu Agrawal0337d9b2016-07-28 15:35:45 +053027uint32_t drv_log_base2(uint32_t value);
Gurchetan Singh179687e2016-10-28 10:07:35 -070028void drv_insert_supported_combination(struct driver *drv, uint32_t format,
29 uint64_t usage, uint64_t modifier);
30void drv_insert_combinations(struct driver *drv,
31 struct supported_combination *combos,
32 uint32_t size);
Gurchetan Singh0cefbe92016-12-01 13:36:04 -080033void drv_modify_supported_combination(struct driver *drv, uint32_t format,
34 uint64_t usage, uint64_t modifier);
Gurchetan Singh179687e2016-10-28 10:07:35 -070035int drv_add_kms_flags(struct driver *drv);
Stéphane Marchesin25a26062014-09-12 16:18:59 -070036#endif