OSDN Git Service

375506fd9b04fb6c320ea3d3190a653e9236c991
[android-x86/external-minigbm.git] / cros_gralloc / cros_gralloc_driver.h
1 /*
2  * Copyright 2017 The Chromium OS Authors. All rights reserved.
3  * 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 CROS_GRALLOC_DRIVER_H
8 #define CROS_GRALLOC_DRIVER_H
9
10 #include "cros_gralloc_buffer.h"
11
12 #include <unordered_map>
13
14 #include "cros_gralloc_spinlock.h"
15
16 class cros_gralloc_driver
17 {
18       public:
19         cros_gralloc_driver();
20         ~cros_gralloc_driver();
21
22         int32_t init();
23         bool is_supported(const struct cros_gralloc_buffer_descriptor *descriptor);
24         int32_t allocate(const struct cros_gralloc_buffer_descriptor *descriptor,
25                          buffer_handle_t *out_handle);
26
27         int32_t retain(buffer_handle_t handle);
28         int32_t release(buffer_handle_t handle);
29
30         int32_t lock(buffer_handle_t handle, int32_t acquire_fence, uint32_t map_flags,
31                      uint8_t *addr[DRV_MAX_PLANES]);
32         int32_t unlock(buffer_handle_t handle, int32_t *release_fence);
33
34         int32_t get_backing_store(buffer_handle_t handle, uint64_t *out_store);
35
36       private:
37         cros_gralloc_driver(cros_gralloc_driver const &);
38         cros_gralloc_driver operator=(cros_gralloc_driver const &);
39         cros_gralloc_buffer *get_buffer(cros_gralloc_handle_t hnd);
40
41         struct driver *drv_;
42         SpinLock mutex_;
43         std::unordered_map<uint32_t, cros_gralloc_buffer *> buffers_;
44         std::unordered_map<cros_gralloc_handle_t, std::pair<cros_gralloc_buffer *, int32_t>>
45             handles_;
46 };
47
48 #endif