vc4_render_cl.c 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634
  1. /*
  2. * Copyright © 2014-2015 Broadcom
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. */
  23. /**
  24. * DOC: Render command list generation
  25. *
  26. * In the VC4 driver, render command list generation is performed by the
  27. * kernel instead of userspace. We do this because validating a
  28. * user-submitted command list is hard to get right and has high CPU overhead,
  29. * while the number of valid configurations for render command lists is
  30. * actually fairly low.
  31. */
  32. #include "uapi/drm/vc4_drm.h"
  33. #include "vc4_drv.h"
  34. #include "vc4_packet.h"
  35. struct vc4_rcl_setup {
  36. struct drm_gem_cma_object *color_read;
  37. struct drm_gem_cma_object *color_write;
  38. struct drm_gem_cma_object *zs_read;
  39. struct drm_gem_cma_object *zs_write;
  40. struct drm_gem_cma_object *msaa_color_write;
  41. struct drm_gem_cma_object *msaa_zs_write;
  42. struct drm_gem_cma_object *rcl;
  43. u32 next_offset;
  44. };
  45. static inline void rcl_u8(struct vc4_rcl_setup *setup, u8 val)
  46. {
  47. *(u8 *)(setup->rcl->vaddr + setup->next_offset) = val;
  48. setup->next_offset += 1;
  49. }
  50. static inline void rcl_u16(struct vc4_rcl_setup *setup, u16 val)
  51. {
  52. *(u16 *)(setup->rcl->vaddr + setup->next_offset) = val;
  53. setup->next_offset += 2;
  54. }
  55. static inline void rcl_u32(struct vc4_rcl_setup *setup, u32 val)
  56. {
  57. *(u32 *)(setup->rcl->vaddr + setup->next_offset) = val;
  58. setup->next_offset += 4;
  59. }
  60. /*
  61. * Emits a no-op STORE_TILE_BUFFER_GENERAL.
  62. *
  63. * If we emit a PACKET_TILE_COORDINATES, it must be followed by a store of
  64. * some sort before another load is triggered.
  65. */
  66. static void vc4_store_before_load(struct vc4_rcl_setup *setup)
  67. {
  68. rcl_u8(setup, VC4_PACKET_STORE_TILE_BUFFER_GENERAL);
  69. rcl_u16(setup,
  70. VC4_SET_FIELD(VC4_LOADSTORE_TILE_BUFFER_NONE,
  71. VC4_LOADSTORE_TILE_BUFFER_BUFFER) |
  72. VC4_STORE_TILE_BUFFER_DISABLE_COLOR_CLEAR |
  73. VC4_STORE_TILE_BUFFER_DISABLE_ZS_CLEAR |
  74. VC4_STORE_TILE_BUFFER_DISABLE_VG_MASK_CLEAR);
  75. rcl_u32(setup, 0); /* no address, since we're in None mode */
  76. }
  77. /*
  78. * Calculates the physical address of the start of a tile in a RCL surface.
  79. *
  80. * Unlike the other load/store packets,
  81. * VC4_PACKET_LOAD/STORE_FULL_RES_TILE_BUFFER don't look at the tile
  82. * coordinates packet, and instead just store to the address given.
  83. */
  84. static uint32_t vc4_full_res_offset(struct vc4_exec_info *exec,
  85. struct drm_gem_cma_object *bo,
  86. struct drm_vc4_submit_rcl_surface *surf,
  87. uint8_t x, uint8_t y)
  88. {
  89. return bo->paddr + surf->offset + VC4_TILE_BUFFER_SIZE *
  90. (DIV_ROUND_UP(exec->args->width, 32) * y + x);
  91. }
  92. /*
  93. * Emits a PACKET_TILE_COORDINATES if one isn't already pending.
  94. *
  95. * The tile coordinates packet triggers a pending load if there is one, are
  96. * used for clipping during rendering, and determine where loads/stores happen
  97. * relative to their base address.
  98. */
  99. static void vc4_tile_coordinates(struct vc4_rcl_setup *setup,
  100. uint32_t x, uint32_t y)
  101. {
  102. rcl_u8(setup, VC4_PACKET_TILE_COORDINATES);
  103. rcl_u8(setup, x);
  104. rcl_u8(setup, y);
  105. }
  106. static void emit_tile(struct vc4_exec_info *exec,
  107. struct vc4_rcl_setup *setup,
  108. uint8_t x, uint8_t y, bool first, bool last)
  109. {
  110. struct drm_vc4_submit_cl *args = exec->args;
  111. bool has_bin = args->bin_cl_size != 0;
  112. /* Note that the load doesn't actually occur until the
  113. * tile coords packet is processed, and only one load
  114. * may be outstanding at a time.
  115. */
  116. if (setup->color_read) {
  117. if (args->color_read.flags &
  118. VC4_SUBMIT_RCL_SURFACE_READ_IS_FULL_RES) {
  119. rcl_u8(setup, VC4_PACKET_LOAD_FULL_RES_TILE_BUFFER);
  120. rcl_u32(setup,
  121. vc4_full_res_offset(exec, setup->color_read,
  122. &args->color_read, x, y) |
  123. VC4_LOADSTORE_FULL_RES_DISABLE_ZS);
  124. } else {
  125. rcl_u8(setup, VC4_PACKET_LOAD_TILE_BUFFER_GENERAL);
  126. rcl_u16(setup, args->color_read.bits);
  127. rcl_u32(setup, setup->color_read->paddr +
  128. args->color_read.offset);
  129. }
  130. }
  131. if (setup->zs_read) {
  132. if (args->zs_read.flags &
  133. VC4_SUBMIT_RCL_SURFACE_READ_IS_FULL_RES) {
  134. rcl_u8(setup, VC4_PACKET_LOAD_FULL_RES_TILE_BUFFER);
  135. rcl_u32(setup,
  136. vc4_full_res_offset(exec, setup->zs_read,
  137. &args->zs_read, x, y) |
  138. VC4_LOADSTORE_FULL_RES_DISABLE_COLOR);
  139. } else {
  140. if (setup->color_read) {
  141. /* Exec previous load. */
  142. vc4_tile_coordinates(setup, x, y);
  143. vc4_store_before_load(setup);
  144. }
  145. rcl_u8(setup, VC4_PACKET_LOAD_TILE_BUFFER_GENERAL);
  146. rcl_u16(setup, args->zs_read.bits);
  147. rcl_u32(setup, setup->zs_read->paddr +
  148. args->zs_read.offset);
  149. }
  150. }
  151. /* Clipping depends on tile coordinates having been
  152. * emitted, so we always need one here.
  153. */
  154. vc4_tile_coordinates(setup, x, y);
  155. /* Wait for the binner before jumping to the first
  156. * tile's lists.
  157. */
  158. if (first && has_bin)
  159. rcl_u8(setup, VC4_PACKET_WAIT_ON_SEMAPHORE);
  160. if (has_bin) {
  161. rcl_u8(setup, VC4_PACKET_BRANCH_TO_SUB_LIST);
  162. rcl_u32(setup, (exec->tile_bo->paddr +
  163. exec->tile_alloc_offset +
  164. (y * exec->bin_tiles_x + x) * 32));
  165. }
  166. if (setup->msaa_color_write) {
  167. bool last_tile_write = (!setup->msaa_zs_write &&
  168. !setup->zs_write &&
  169. !setup->color_write);
  170. uint32_t bits = VC4_LOADSTORE_FULL_RES_DISABLE_ZS;
  171. if (!last_tile_write)
  172. bits |= VC4_LOADSTORE_FULL_RES_DISABLE_CLEAR_ALL;
  173. else if (last)
  174. bits |= VC4_LOADSTORE_FULL_RES_EOF;
  175. rcl_u8(setup, VC4_PACKET_STORE_FULL_RES_TILE_BUFFER);
  176. rcl_u32(setup,
  177. vc4_full_res_offset(exec, setup->msaa_color_write,
  178. &args->msaa_color_write, x, y) |
  179. bits);
  180. }
  181. if (setup->msaa_zs_write) {
  182. bool last_tile_write = (!setup->zs_write &&
  183. !setup->color_write);
  184. uint32_t bits = VC4_LOADSTORE_FULL_RES_DISABLE_COLOR;
  185. if (setup->msaa_color_write)
  186. vc4_tile_coordinates(setup, x, y);
  187. if (!last_tile_write)
  188. bits |= VC4_LOADSTORE_FULL_RES_DISABLE_CLEAR_ALL;
  189. else if (last)
  190. bits |= VC4_LOADSTORE_FULL_RES_EOF;
  191. rcl_u8(setup, VC4_PACKET_STORE_FULL_RES_TILE_BUFFER);
  192. rcl_u32(setup,
  193. vc4_full_res_offset(exec, setup->msaa_zs_write,
  194. &args->msaa_zs_write, x, y) |
  195. bits);
  196. }
  197. if (setup->zs_write) {
  198. bool last_tile_write = !setup->color_write;
  199. if (setup->msaa_color_write || setup->msaa_zs_write)
  200. vc4_tile_coordinates(setup, x, y);
  201. rcl_u8(setup, VC4_PACKET_STORE_TILE_BUFFER_GENERAL);
  202. rcl_u16(setup, args->zs_write.bits |
  203. (last_tile_write ?
  204. 0 : VC4_STORE_TILE_BUFFER_DISABLE_COLOR_CLEAR));
  205. rcl_u32(setup,
  206. (setup->zs_write->paddr + args->zs_write.offset) |
  207. ((last && last_tile_write) ?
  208. VC4_LOADSTORE_TILE_BUFFER_EOF : 0));
  209. }
  210. if (setup->color_write) {
  211. if (setup->msaa_color_write || setup->msaa_zs_write ||
  212. setup->zs_write) {
  213. vc4_tile_coordinates(setup, x, y);
  214. }
  215. if (last)
  216. rcl_u8(setup, VC4_PACKET_STORE_MS_TILE_BUFFER_AND_EOF);
  217. else
  218. rcl_u8(setup, VC4_PACKET_STORE_MS_TILE_BUFFER);
  219. }
  220. }
  221. static int vc4_create_rcl_bo(struct drm_device *dev, struct vc4_exec_info *exec,
  222. struct vc4_rcl_setup *setup)
  223. {
  224. struct drm_vc4_submit_cl *args = exec->args;
  225. bool has_bin = args->bin_cl_size != 0;
  226. uint8_t min_x_tile = args->min_x_tile;
  227. uint8_t min_y_tile = args->min_y_tile;
  228. uint8_t max_x_tile = args->max_x_tile;
  229. uint8_t max_y_tile = args->max_y_tile;
  230. uint8_t xtiles = max_x_tile - min_x_tile + 1;
  231. uint8_t ytiles = max_y_tile - min_y_tile + 1;
  232. uint8_t x, y;
  233. uint32_t size, loop_body_size;
  234. size = VC4_PACKET_TILE_RENDERING_MODE_CONFIG_SIZE;
  235. loop_body_size = VC4_PACKET_TILE_COORDINATES_SIZE;
  236. if (args->flags & VC4_SUBMIT_CL_USE_CLEAR_COLOR) {
  237. size += VC4_PACKET_CLEAR_COLORS_SIZE +
  238. VC4_PACKET_TILE_COORDINATES_SIZE +
  239. VC4_PACKET_STORE_TILE_BUFFER_GENERAL_SIZE;
  240. }
  241. if (setup->color_read) {
  242. if (args->color_read.flags &
  243. VC4_SUBMIT_RCL_SURFACE_READ_IS_FULL_RES) {
  244. loop_body_size += VC4_PACKET_LOAD_FULL_RES_TILE_BUFFER_SIZE;
  245. } else {
  246. loop_body_size += VC4_PACKET_LOAD_TILE_BUFFER_GENERAL_SIZE;
  247. }
  248. }
  249. if (setup->zs_read) {
  250. if (args->zs_read.flags &
  251. VC4_SUBMIT_RCL_SURFACE_READ_IS_FULL_RES) {
  252. loop_body_size += VC4_PACKET_LOAD_FULL_RES_TILE_BUFFER_SIZE;
  253. } else {
  254. if (setup->color_read &&
  255. !(args->color_read.flags &
  256. VC4_SUBMIT_RCL_SURFACE_READ_IS_FULL_RES)) {
  257. loop_body_size += VC4_PACKET_TILE_COORDINATES_SIZE;
  258. loop_body_size += VC4_PACKET_STORE_TILE_BUFFER_GENERAL_SIZE;
  259. }
  260. loop_body_size += VC4_PACKET_LOAD_TILE_BUFFER_GENERAL_SIZE;
  261. }
  262. }
  263. if (has_bin) {
  264. size += VC4_PACKET_WAIT_ON_SEMAPHORE_SIZE;
  265. loop_body_size += VC4_PACKET_BRANCH_TO_SUB_LIST_SIZE;
  266. }
  267. if (setup->msaa_color_write)
  268. loop_body_size += VC4_PACKET_STORE_FULL_RES_TILE_BUFFER_SIZE;
  269. if (setup->msaa_zs_write)
  270. loop_body_size += VC4_PACKET_STORE_FULL_RES_TILE_BUFFER_SIZE;
  271. if (setup->zs_write)
  272. loop_body_size += VC4_PACKET_STORE_TILE_BUFFER_GENERAL_SIZE;
  273. if (setup->color_write)
  274. loop_body_size += VC4_PACKET_STORE_MS_TILE_BUFFER_SIZE;
  275. /* We need a VC4_PACKET_TILE_COORDINATES in between each store. */
  276. loop_body_size += VC4_PACKET_TILE_COORDINATES_SIZE *
  277. ((setup->msaa_color_write != NULL) +
  278. (setup->msaa_zs_write != NULL) +
  279. (setup->color_write != NULL) +
  280. (setup->zs_write != NULL) - 1);
  281. size += xtiles * ytiles * loop_body_size;
  282. setup->rcl = &vc4_bo_create(dev, size, true)->base;
  283. if (IS_ERR(setup->rcl))
  284. return PTR_ERR(setup->rcl);
  285. list_add_tail(&to_vc4_bo(&setup->rcl->base)->unref_head,
  286. &exec->unref_list);
  287. /* The tile buffer gets cleared when the previous tile is stored. If
  288. * the clear values changed between frames, then the tile buffer has
  289. * stale clear values in it, so we have to do a store in None mode (no
  290. * writes) so that we trigger the tile buffer clear.
  291. */
  292. if (args->flags & VC4_SUBMIT_CL_USE_CLEAR_COLOR) {
  293. rcl_u8(setup, VC4_PACKET_CLEAR_COLORS);
  294. rcl_u32(setup, args->clear_color[0]);
  295. rcl_u32(setup, args->clear_color[1]);
  296. rcl_u32(setup, args->clear_z);
  297. rcl_u8(setup, args->clear_s);
  298. vc4_tile_coordinates(setup, 0, 0);
  299. rcl_u8(setup, VC4_PACKET_STORE_TILE_BUFFER_GENERAL);
  300. rcl_u16(setup, VC4_LOADSTORE_TILE_BUFFER_NONE);
  301. rcl_u32(setup, 0); /* no address, since we're in None mode */
  302. }
  303. rcl_u8(setup, VC4_PACKET_TILE_RENDERING_MODE_CONFIG);
  304. rcl_u32(setup,
  305. (setup->color_write ? (setup->color_write->paddr +
  306. args->color_write.offset) :
  307. 0));
  308. rcl_u16(setup, args->width);
  309. rcl_u16(setup, args->height);
  310. rcl_u16(setup, args->color_write.bits);
  311. for (y = min_y_tile; y <= max_y_tile; y++) {
  312. for (x = min_x_tile; x <= max_x_tile; x++) {
  313. bool first = (x == min_x_tile && y == min_y_tile);
  314. bool last = (x == max_x_tile && y == max_y_tile);
  315. emit_tile(exec, setup, x, y, first, last);
  316. }
  317. }
  318. BUG_ON(setup->next_offset != size);
  319. exec->ct1ca = setup->rcl->paddr;
  320. exec->ct1ea = setup->rcl->paddr + setup->next_offset;
  321. return 0;
  322. }
  323. static int vc4_full_res_bounds_check(struct vc4_exec_info *exec,
  324. struct drm_gem_cma_object *obj,
  325. struct drm_vc4_submit_rcl_surface *surf)
  326. {
  327. struct drm_vc4_submit_cl *args = exec->args;
  328. u32 render_tiles_stride = DIV_ROUND_UP(exec->args->width, 32);
  329. if (surf->offset > obj->base.size) {
  330. DRM_ERROR("surface offset %d > BO size %zd\n",
  331. surf->offset, obj->base.size);
  332. return -EINVAL;
  333. }
  334. if ((obj->base.size - surf->offset) / VC4_TILE_BUFFER_SIZE <
  335. render_tiles_stride * args->max_y_tile + args->max_x_tile) {
  336. DRM_ERROR("MSAA tile %d, %d out of bounds "
  337. "(bo size %zd, offset %d).\n",
  338. args->max_x_tile, args->max_y_tile,
  339. obj->base.size,
  340. surf->offset);
  341. return -EINVAL;
  342. }
  343. return 0;
  344. }
  345. static int vc4_rcl_msaa_surface_setup(struct vc4_exec_info *exec,
  346. struct drm_gem_cma_object **obj,
  347. struct drm_vc4_submit_rcl_surface *surf)
  348. {
  349. if (surf->flags != 0 || surf->bits != 0) {
  350. DRM_ERROR("MSAA surface had nonzero flags/bits\n");
  351. return -EINVAL;
  352. }
  353. if (surf->hindex == ~0)
  354. return 0;
  355. *obj = vc4_use_bo(exec, surf->hindex);
  356. if (!*obj)
  357. return -EINVAL;
  358. if (surf->offset & 0xf) {
  359. DRM_ERROR("MSAA write must be 16b aligned.\n");
  360. return -EINVAL;
  361. }
  362. return vc4_full_res_bounds_check(exec, *obj, surf);
  363. }
  364. static int vc4_rcl_surface_setup(struct vc4_exec_info *exec,
  365. struct drm_gem_cma_object **obj,
  366. struct drm_vc4_submit_rcl_surface *surf)
  367. {
  368. uint8_t tiling = VC4_GET_FIELD(surf->bits,
  369. VC4_LOADSTORE_TILE_BUFFER_TILING);
  370. uint8_t buffer = VC4_GET_FIELD(surf->bits,
  371. VC4_LOADSTORE_TILE_BUFFER_BUFFER);
  372. uint8_t format = VC4_GET_FIELD(surf->bits,
  373. VC4_LOADSTORE_TILE_BUFFER_FORMAT);
  374. int cpp;
  375. int ret;
  376. if (surf->flags & ~VC4_SUBMIT_RCL_SURFACE_READ_IS_FULL_RES) {
  377. DRM_ERROR("Extra flags set\n");
  378. return -EINVAL;
  379. }
  380. if (surf->hindex == ~0)
  381. return 0;
  382. *obj = vc4_use_bo(exec, surf->hindex);
  383. if (!*obj)
  384. return -EINVAL;
  385. if (surf->flags & VC4_SUBMIT_RCL_SURFACE_READ_IS_FULL_RES) {
  386. if (surf == &exec->args->zs_write) {
  387. DRM_ERROR("general zs write may not be a full-res.\n");
  388. return -EINVAL;
  389. }
  390. if (surf->bits != 0) {
  391. DRM_ERROR("load/store general bits set with "
  392. "full res load/store.\n");
  393. return -EINVAL;
  394. }
  395. ret = vc4_full_res_bounds_check(exec, *obj, surf);
  396. if (!ret)
  397. return ret;
  398. return 0;
  399. }
  400. if (surf->bits & ~(VC4_LOADSTORE_TILE_BUFFER_TILING_MASK |
  401. VC4_LOADSTORE_TILE_BUFFER_BUFFER_MASK |
  402. VC4_LOADSTORE_TILE_BUFFER_FORMAT_MASK)) {
  403. DRM_ERROR("Unknown bits in load/store: 0x%04x\n",
  404. surf->bits);
  405. return -EINVAL;
  406. }
  407. if (tiling > VC4_TILING_FORMAT_LT) {
  408. DRM_ERROR("Bad tiling format\n");
  409. return -EINVAL;
  410. }
  411. if (buffer == VC4_LOADSTORE_TILE_BUFFER_ZS) {
  412. if (format != 0) {
  413. DRM_ERROR("No color format should be set for ZS\n");
  414. return -EINVAL;
  415. }
  416. cpp = 4;
  417. } else if (buffer == VC4_LOADSTORE_TILE_BUFFER_COLOR) {
  418. switch (format) {
  419. case VC4_LOADSTORE_TILE_BUFFER_BGR565:
  420. case VC4_LOADSTORE_TILE_BUFFER_BGR565_DITHER:
  421. cpp = 2;
  422. break;
  423. case VC4_LOADSTORE_TILE_BUFFER_RGBA8888:
  424. cpp = 4;
  425. break;
  426. default:
  427. DRM_ERROR("Bad tile buffer format\n");
  428. return -EINVAL;
  429. }
  430. } else {
  431. DRM_ERROR("Bad load/store buffer %d.\n", buffer);
  432. return -EINVAL;
  433. }
  434. if (surf->offset & 0xf) {
  435. DRM_ERROR("load/store buffer must be 16b aligned.\n");
  436. return -EINVAL;
  437. }
  438. if (!vc4_check_tex_size(exec, *obj, surf->offset, tiling,
  439. exec->args->width, exec->args->height, cpp)) {
  440. return -EINVAL;
  441. }
  442. return 0;
  443. }
  444. static int
  445. vc4_rcl_render_config_surface_setup(struct vc4_exec_info *exec,
  446. struct vc4_rcl_setup *setup,
  447. struct drm_gem_cma_object **obj,
  448. struct drm_vc4_submit_rcl_surface *surf)
  449. {
  450. uint8_t tiling = VC4_GET_FIELD(surf->bits,
  451. VC4_RENDER_CONFIG_MEMORY_FORMAT);
  452. uint8_t format = VC4_GET_FIELD(surf->bits,
  453. VC4_RENDER_CONFIG_FORMAT);
  454. int cpp;
  455. if (surf->flags != 0) {
  456. DRM_ERROR("No flags supported on render config.\n");
  457. return -EINVAL;
  458. }
  459. if (surf->bits & ~(VC4_RENDER_CONFIG_MEMORY_FORMAT_MASK |
  460. VC4_RENDER_CONFIG_FORMAT_MASK |
  461. VC4_RENDER_CONFIG_MS_MODE_4X |
  462. VC4_RENDER_CONFIG_DECIMATE_MODE_4X)) {
  463. DRM_ERROR("Unknown bits in render config: 0x%04x\n",
  464. surf->bits);
  465. return -EINVAL;
  466. }
  467. if (surf->hindex == ~0)
  468. return 0;
  469. *obj = vc4_use_bo(exec, surf->hindex);
  470. if (!*obj)
  471. return -EINVAL;
  472. if (tiling > VC4_TILING_FORMAT_LT) {
  473. DRM_ERROR("Bad tiling format\n");
  474. return -EINVAL;
  475. }
  476. switch (format) {
  477. case VC4_RENDER_CONFIG_FORMAT_BGR565_DITHERED:
  478. case VC4_RENDER_CONFIG_FORMAT_BGR565:
  479. cpp = 2;
  480. break;
  481. case VC4_RENDER_CONFIG_FORMAT_RGBA8888:
  482. cpp = 4;
  483. break;
  484. default:
  485. DRM_ERROR("Bad tile buffer format\n");
  486. return -EINVAL;
  487. }
  488. if (!vc4_check_tex_size(exec, *obj, surf->offset, tiling,
  489. exec->args->width, exec->args->height, cpp)) {
  490. return -EINVAL;
  491. }
  492. return 0;
  493. }
  494. int vc4_get_rcl(struct drm_device *dev, struct vc4_exec_info *exec)
  495. {
  496. struct vc4_rcl_setup setup = {0};
  497. struct drm_vc4_submit_cl *args = exec->args;
  498. bool has_bin = args->bin_cl_size != 0;
  499. int ret;
  500. if (args->min_x_tile > args->max_x_tile ||
  501. args->min_y_tile > args->max_y_tile) {
  502. DRM_ERROR("Bad render tile set (%d,%d)-(%d,%d)\n",
  503. args->min_x_tile, args->min_y_tile,
  504. args->max_x_tile, args->max_y_tile);
  505. return -EINVAL;
  506. }
  507. if (has_bin &&
  508. (args->max_x_tile > exec->bin_tiles_x ||
  509. args->max_y_tile > exec->bin_tiles_y)) {
  510. DRM_ERROR("Render tiles (%d,%d) outside of bin config "
  511. "(%d,%d)\n",
  512. args->max_x_tile, args->max_y_tile,
  513. exec->bin_tiles_x, exec->bin_tiles_y);
  514. return -EINVAL;
  515. }
  516. ret = vc4_rcl_render_config_surface_setup(exec, &setup,
  517. &setup.color_write,
  518. &args->color_write);
  519. if (ret)
  520. return ret;
  521. ret = vc4_rcl_surface_setup(exec, &setup.color_read, &args->color_read);
  522. if (ret)
  523. return ret;
  524. ret = vc4_rcl_surface_setup(exec, &setup.zs_read, &args->zs_read);
  525. if (ret)
  526. return ret;
  527. ret = vc4_rcl_surface_setup(exec, &setup.zs_write, &args->zs_write);
  528. if (ret)
  529. return ret;
  530. ret = vc4_rcl_msaa_surface_setup(exec, &setup.msaa_color_write,
  531. &args->msaa_color_write);
  532. if (ret)
  533. return ret;
  534. ret = vc4_rcl_msaa_surface_setup(exec, &setup.msaa_zs_write,
  535. &args->msaa_zs_write);
  536. if (ret)
  537. return ret;
  538. /* We shouldn't even have the job submitted to us if there's no
  539. * surface to write out.
  540. */
  541. if (!setup.color_write && !setup.zs_write &&
  542. !setup.msaa_color_write && !setup.msaa_zs_write) {
  543. DRM_ERROR("RCL requires color or Z/S write\n");
  544. return -EINVAL;
  545. }
  546. return vc4_create_rcl_bo(dev, exec, &setup);
  547. }