1b8e80941Smrg/*
2b8e80941Smrg * Copyright © 2014 Broadcom
3b8e80941Smrg *
4b8e80941Smrg * Permission is hereby granted, free of charge, to any person obtaining a
5b8e80941Smrg * copy of this software and associated documentation files (the "Software"),
6b8e80941Smrg * to deal in the Software without restriction, including without limitation
7b8e80941Smrg * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8b8e80941Smrg * and/or sell copies of the Software, and to permit persons to whom the
9b8e80941Smrg * Software is furnished to do so, subject to the following conditions:
10b8e80941Smrg *
11b8e80941Smrg * The above copyright notice and this permission notice (including the next
12b8e80941Smrg * paragraph) shall be included in all copies or substantial portions of the
13b8e80941Smrg * Software.
14b8e80941Smrg *
15b8e80941Smrg * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16b8e80941Smrg * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17b8e80941Smrg * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18b8e80941Smrg * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19b8e80941Smrg * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20b8e80941Smrg * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21b8e80941Smrg * IN THE SOFTWARE.
22b8e80941Smrg */
23b8e80941Smrg
24b8e80941Smrg#ifndef VC4_TILING_H
25b8e80941Smrg#define VC4_TILING_H
26b8e80941Smrg
27b8e80941Smrg#include <stdbool.h>
28b8e80941Smrg#include <stdint.h>
29b8e80941Smrg#include "util/macros.h"
30b8e80941Smrg#include "util/u_cpu_detect.h"
31b8e80941Smrg
32b8e80941Smrg/** Return the width in pixels of a 64-byte microtile. */
33b8e80941Smrgstatic inline uint32_t
34b8e80941Smrgvc4_utile_width(int cpp)
35b8e80941Smrg{
36b8e80941Smrg        switch (cpp) {
37b8e80941Smrg        case 1:
38b8e80941Smrg        case 2:
39b8e80941Smrg                return 8;
40b8e80941Smrg        case 4:
41b8e80941Smrg                return 4;
42b8e80941Smrg        case 8:
43b8e80941Smrg                return 2;
44b8e80941Smrg        default:
45b8e80941Smrg                unreachable("unknown cpp");
46b8e80941Smrg        }
47b8e80941Smrg}
48b8e80941Smrg
49b8e80941Smrg/** Return the height in pixels of a 64-byte microtile. */
50b8e80941Smrgstatic inline uint32_t
51b8e80941Smrgvc4_utile_height(int cpp)
52b8e80941Smrg{
53b8e80941Smrg        switch (cpp) {
54b8e80941Smrg        case 1:
55b8e80941Smrg                return 8;
56b8e80941Smrg        case 2:
57b8e80941Smrg        case 4:
58b8e80941Smrg        case 8:
59b8e80941Smrg                return 4;
60b8e80941Smrg        default:
61b8e80941Smrg                unreachable("unknown cpp");
62b8e80941Smrg        }
63b8e80941Smrg}
64b8e80941Smrg
65b8e80941Smrgbool vc4_size_is_lt(uint32_t width, uint32_t height, int cpp) ATTRIBUTE_CONST;
66b8e80941Smrgvoid vc4_load_lt_image_base(void *dst, uint32_t dst_stride,
67b8e80941Smrg                            void *src, uint32_t src_stride,
68b8e80941Smrg                            int cpp, const struct pipe_box *box);
69b8e80941Smrgvoid vc4_store_lt_image_base(void *dst, uint32_t dst_stride,
70b8e80941Smrg                             void *src, uint32_t src_stride,
71b8e80941Smrg                             int cpp, const struct pipe_box *box);
72b8e80941Smrgvoid vc4_load_lt_image_neon(void *dst, uint32_t dst_stride,
73b8e80941Smrg                            void *src, uint32_t src_stride,
74b8e80941Smrg                            int cpp, const struct pipe_box *box);
75b8e80941Smrgvoid vc4_store_lt_image_neon(void *dst, uint32_t dst_stride,
76b8e80941Smrg                             void *src, uint32_t src_stride,
77b8e80941Smrg                             int cpp, const struct pipe_box *box);
78b8e80941Smrgvoid vc4_load_tiled_image(void *dst, uint32_t dst_stride,
79b8e80941Smrg                          void *src, uint32_t src_stride,
80b8e80941Smrg                          uint8_t tiling_format, int cpp,
81b8e80941Smrg                          const struct pipe_box *box);
82b8e80941Smrgvoid vc4_store_tiled_image(void *dst, uint32_t dst_stride,
83b8e80941Smrg                           void *src, uint32_t src_stride,
84b8e80941Smrg                           uint8_t tiling_format, int cpp,
85b8e80941Smrg                           const struct pipe_box *box);
86b8e80941Smrg
87b8e80941Smrgstatic inline void
88b8e80941Smrgvc4_load_lt_image(void *dst, uint32_t dst_stride,
89b8e80941Smrg                  void *src, uint32_t src_stride,
90b8e80941Smrg                  int cpp, const struct pipe_box *box)
91b8e80941Smrg{
92b8e80941Smrg#ifdef USE_ARM_ASM
93b8e80941Smrg        if (util_cpu_caps.has_neon) {
94b8e80941Smrg                vc4_load_lt_image_neon(dst, dst_stride, src, src_stride,
95b8e80941Smrg                                       cpp, box);
96b8e80941Smrg                return;
97b8e80941Smrg        }
98b8e80941Smrg#endif
99b8e80941Smrg        vc4_load_lt_image_base(dst, dst_stride, src, src_stride,
100b8e80941Smrg                               cpp, box);
101b8e80941Smrg}
102b8e80941Smrg
103b8e80941Smrgstatic inline void
104b8e80941Smrgvc4_store_lt_image(void *dst, uint32_t dst_stride,
105b8e80941Smrg                   void *src, uint32_t src_stride,
106b8e80941Smrg                   int cpp, const struct pipe_box *box)
107b8e80941Smrg{
108b8e80941Smrg#ifdef USE_ARM_ASM
109b8e80941Smrg        if (util_cpu_caps.has_neon) {
110b8e80941Smrg                vc4_store_lt_image_neon(dst, dst_stride, src, src_stride,
111b8e80941Smrg                                        cpp, box);
112b8e80941Smrg                return;
113b8e80941Smrg        }
114b8e80941Smrg#endif
115b8e80941Smrg
116b8e80941Smrg        vc4_store_lt_image_base(dst, dst_stride, src, src_stride,
117b8e80941Smrg                                cpp, box);
118b8e80941Smrg}
119b8e80941Smrg
120b8e80941Smrg#endif /* VC4_TILING_H */
121