Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 1 | /* |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 2 | ** |
| 3 | ** Copyright 2009, The Android Open Source Project |
| 4 | ** |
Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 5 | ** Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | ** you may not use this file except in compliance with the License. |
| 7 | ** You may obtain a copy of the License at |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 8 | ** |
Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 9 | ** http://www.apache.org/licenses/LICENSE-2.0 |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 10 | ** |
Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 11 | ** Unless required by applicable law or agreed to in writing, software |
| 12 | ** distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | ** See the License for the specific language governing permissions and |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 15 | ** limitations under the License. |
| 16 | */ |
| 17 | |
Mathias Agopian | 5629eb1 | 2010-04-15 14:57:39 -0700 | [diff] [blame] | 18 | #define LOG_TAG "GraphicBufferAllocator" |
Mathias Agopian | cf56319 | 2012-02-29 20:43:29 -0800 | [diff] [blame] | 19 | #define ATRACE_TAG ATRACE_TAG_GRAPHICS |
Mathias Agopian | 5629eb1 | 2010-04-15 14:57:39 -0700 | [diff] [blame] | 20 | |
Mark Salyzyn | 7823e12 | 2016-09-29 08:08:05 -0700 | [diff] [blame^] | 21 | #include <log/log.h> |
Mathias Agopian | 4243e66 | 2009-04-15 18:34:24 -0700 | [diff] [blame] | 22 | #include <utils/Singleton.h> |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 23 | #include <utils/String8.h> |
Mathias Agopian | cf56319 | 2012-02-29 20:43:29 -0800 | [diff] [blame] | 24 | #include <utils/Trace.h> |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 25 | |
Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 26 | #include <ui/GraphicBufferAllocator.h> |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 27 | #include <ui/Gralloc1On0Adapter.h> |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 28 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 29 | namespace android { |
| 30 | // --------------------------------------------------------------------------- |
| 31 | |
Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 32 | ANDROID_SINGLETON_STATIC_INSTANCE( GraphicBufferAllocator ) |
Mathias Agopian | 4243e66 | 2009-04-15 18:34:24 -0700 | [diff] [blame] | 33 | |
Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 34 | Mutex GraphicBufferAllocator::sLock; |
Mathias Agopian | b26af23 | 2009-10-05 18:19:57 -0700 | [diff] [blame] | 35 | KeyedVector<buffer_handle_t, |
| 36 | GraphicBufferAllocator::alloc_rec_t> GraphicBufferAllocator::sAllocList; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 37 | |
Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 38 | GraphicBufferAllocator::GraphicBufferAllocator() |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 39 | : mLoader(std::make_unique<Gralloc1::Loader>()), |
| 40 | mDevice(mLoader->getDevice()) {} |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 41 | |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 42 | GraphicBufferAllocator::~GraphicBufferAllocator() {} |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 43 | |
Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 44 | void GraphicBufferAllocator::dump(String8& result) const |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 45 | { |
| 46 | Mutex::Autolock _l(sLock); |
| 47 | KeyedVector<buffer_handle_t, alloc_rec_t>& list(sAllocList); |
| 48 | size_t total = 0; |
Erik Gilling | 1d21a9c | 2010-12-01 16:38:01 -0800 | [diff] [blame] | 49 | const size_t SIZE = 4096; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 50 | char buffer[SIZE]; |
| 51 | snprintf(buffer, SIZE, "Allocated buffers:\n"); |
| 52 | result.append(buffer); |
| 53 | const size_t c = list.size(); |
| 54 | for (size_t i=0 ; i<c ; i++) { |
| 55 | const alloc_rec_t& rec(list.valueAt(i)); |
Mathias Agopian | a947de8 | 2011-07-29 16:35:41 -0700 | [diff] [blame] | 56 | if (rec.size) { |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 57 | snprintf(buffer, SIZE, "%10p: %7.2f KiB | %4u (%4u) x %4u | %8X | 0x%08x | %s\n", |
Mathias Agopian | a947de8 | 2011-07-29 16:35:41 -0700 | [diff] [blame] | 58 | list.keyAt(i), rec.size/1024.0f, |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 59 | rec.width, rec.stride, rec.height, rec.format, rec.usage, |
| 60 | rec.requestorName.c_str()); |
Mathias Agopian | a947de8 | 2011-07-29 16:35:41 -0700 | [diff] [blame] | 61 | } else { |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 62 | snprintf(buffer, SIZE, "%10p: unknown | %4u (%4u) x %4u | %8X | 0x%08x | %s\n", |
Mathias Agopian | a947de8 | 2011-07-29 16:35:41 -0700 | [diff] [blame] | 63 | list.keyAt(i), |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 64 | rec.width, rec.stride, rec.height, rec.format, rec.usage, |
| 65 | rec.requestorName.c_str()); |
Mathias Agopian | a947de8 | 2011-07-29 16:35:41 -0700 | [diff] [blame] | 66 | } |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 67 | result.append(buffer); |
| 68 | total += rec.size; |
| 69 | } |
Mathias Agopian | a947de8 | 2011-07-29 16:35:41 -0700 | [diff] [blame] | 70 | snprintf(buffer, SIZE, "Total allocated (estimate): %.2f KB\n", total/1024.0f); |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 71 | result.append(buffer); |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 72 | std::string deviceDump = mDevice->dump(); |
| 73 | result.append(deviceDump.c_str(), deviceDump.size()); |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 74 | } |
| 75 | |
Mathias Agopian | 678bdd6 | 2010-12-03 17:33:09 -0800 | [diff] [blame] | 76 | void GraphicBufferAllocator::dumpToSystemLog() |
| 77 | { |
| 78 | String8 s; |
| 79 | GraphicBufferAllocator::getInstance().dump(s); |
Steve Block | 9d45368 | 2011-12-20 16:23:08 +0000 | [diff] [blame] | 80 | ALOGD("%s", s.string()); |
Mathias Agopian | 678bdd6 | 2010-12-03 17:33:09 -0800 | [diff] [blame] | 81 | } |
| 82 | |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 83 | status_t GraphicBufferAllocator::allocate(uint32_t width, uint32_t height, |
Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 84 | PixelFormat format, uint32_t usage, buffer_handle_t* handle, |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 85 | uint32_t* stride, uint64_t graphicBufferId, std::string requestorName) |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 86 | { |
Mathias Agopian | cf56319 | 2012-02-29 20:43:29 -0800 | [diff] [blame] | 87 | ATRACE_CALL(); |
Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 88 | |
Mathias Agopian | 5629eb1 | 2010-04-15 14:57:39 -0700 | [diff] [blame] | 89 | // make sure to not allocate a N x 0 or 0 x N buffer, since this is |
| 90 | // allowed from an API stand-point allocate a 1x1 buffer instead. |
Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 91 | if (!width || !height) |
| 92 | width = height = 1; |
Mathias Agopian | cbb288b | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 93 | |
Dan Stoza | 24fa67f | 2015-05-29 12:48:04 -0700 | [diff] [blame] | 94 | // Filter out any usage bits that should not be passed to the gralloc module |
| 95 | usage &= GRALLOC_USAGE_ALLOC_MASK; |
| 96 | |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 97 | auto descriptor = mDevice->createDescriptor(); |
| 98 | auto error = descriptor->setDimensions(width, height); |
| 99 | if (error != GRALLOC1_ERROR_NONE) { |
| 100 | ALOGE("Failed to set dimensions to (%u, %u): %d", width, height, error); |
| 101 | return BAD_VALUE; |
| 102 | } |
| 103 | error = descriptor->setFormat(static_cast<android_pixel_format_t>(format)); |
| 104 | if (error != GRALLOC1_ERROR_NONE) { |
| 105 | ALOGE("Failed to set format to %d: %d", format, error); |
| 106 | return BAD_VALUE; |
| 107 | } |
| 108 | error = descriptor->setProducerUsage( |
| 109 | static_cast<gralloc1_producer_usage_t>(usage)); |
| 110 | if (error != GRALLOC1_ERROR_NONE) { |
| 111 | ALOGE("Failed to set producer usage to %u: %d", usage, error); |
| 112 | return BAD_VALUE; |
| 113 | } |
| 114 | error = descriptor->setConsumerUsage( |
| 115 | static_cast<gralloc1_consumer_usage_t>(usage)); |
| 116 | if (error != GRALLOC1_ERROR_NONE) { |
| 117 | ALOGE("Failed to set consumer usage to %u: %d", usage, error); |
| 118 | return BAD_VALUE; |
| 119 | } |
Mathias Agopian | cbb288b | 2009-09-07 16:32:45 -0700 | [diff] [blame] | 120 | |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 121 | error = mDevice->allocate(descriptor, graphicBufferId, handle); |
| 122 | if (error != GRALLOC1_ERROR_NONE) { |
| 123 | ALOGE("Failed to allocate (%u x %u) format %d usage %u: %d", |
| 124 | width, height, format, usage, error); |
| 125 | return NO_MEMORY; |
| 126 | } |
Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 127 | |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 128 | error = mDevice->getStride(*handle, stride); |
| 129 | if (error != GRALLOC1_ERROR_NONE) { |
| 130 | ALOGW("Failed to get stride from buffer: %d", error); |
| 131 | } |
| 132 | |
| 133 | if (error == NO_ERROR) { |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 134 | Mutex::Autolock _l(sLock); |
| 135 | KeyedVector<buffer_handle_t, alloc_rec_t>& list(sAllocList); |
Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 136 | uint32_t bpp = bytesPerPixel(format); |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 137 | alloc_rec_t rec; |
Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 138 | rec.width = width; |
| 139 | rec.height = height; |
| 140 | rec.stride = *stride; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 141 | rec.format = format; |
| 142 | rec.usage = usage; |
Dan Stoza | d318240 | 2014-11-17 12:03:59 -0800 | [diff] [blame] | 143 | rec.size = static_cast<size_t>(height * (*stride) * bpp); |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 144 | rec.requestorName = std::move(requestorName); |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 145 | list.add(*handle, rec); |
| 146 | } |
| 147 | |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 148 | return NO_ERROR; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Mathias Agopian | 3330b20 | 2009-10-05 17:07:12 -0700 | [diff] [blame] | 151 | status_t GraphicBufferAllocator::free(buffer_handle_t handle) |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 152 | { |
Mathias Agopian | cf56319 | 2012-02-29 20:43:29 -0800 | [diff] [blame] | 153 | ATRACE_CALL(); |
Mathias Agopian | 0a75781 | 2010-12-08 16:40:01 -0800 | [diff] [blame] | 154 | |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 155 | auto error = mDevice->release(handle); |
| 156 | if (error != GRALLOC1_ERROR_NONE) { |
| 157 | ALOGE("Failed to free buffer: %d", error); |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 158 | } |
| 159 | |
Dan Stoza | f62eaf5 | 2016-06-01 18:21:44 -0700 | [diff] [blame] | 160 | Mutex::Autolock _l(sLock); |
| 161 | KeyedVector<buffer_handle_t, alloc_rec_t>& list(sAllocList); |
| 162 | list.removeItem(handle); |
| 163 | |
| 164 | return NO_ERROR; |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 165 | } |
| 166 | |
Mathias Agopian | 076b1cc | 2009-04-10 14:24:30 -0700 | [diff] [blame] | 167 | // --------------------------------------------------------------------------- |
| 168 | }; // namespace android |