summaryrefslogtreecommitdiff
path: root/tests/tegra/drm-test-tegra.c
blob: 21d8b47fed6d9da1c30df96b2818aa72e666f562 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
/*
 * Copyright © 2014 NVIDIA Corporation
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 */

#ifdef HAVE_CONFIG_H
#  include "config.h"
#endif

#include <errno.h>
#include <stdio.h>

#include "drm-test-tegra.h"
#include "tegra.h"

int drm_tegra_gr2d_open(struct drm_tegra_gr2d **gr2dp, struct drm_tegra *drm)
{
    struct drm_tegra_gr2d *gr2d;
    int err;

    gr2d = calloc(1, sizeof(*gr2d));
    if (!gr2d)
        return -ENOMEM;

    gr2d->drm = drm;

    err = drm_tegra_channel_open(&gr2d->channel, drm, DRM_TEGRA_GR2D);
    if (err < 0) {
        free(gr2d);
        return err;
    }

    *gr2dp = gr2d;

    return 0;
}

int drm_tegra_gr2d_close(struct drm_tegra_gr2d *gr2d)
{
    if (!gr2d)
        return -EINVAL;

    drm_tegra_channel_close(gr2d->channel);
    free(gr2d);

    return 0;
}

int drm_tegra_gr2d_fill(struct drm_tegra_pushbuf *pushbuf,
                        struct drm_framebuffer *fb, unsigned int x,
                        unsigned int y, unsigned int width,
                        unsigned int height, uint32_t color)
{
    struct drm_tegra_bo *bo = fb->data;
    int err;

    err = drm_tegra_pushbuf_prepare(pushbuf, 32);
    if (err < 0)
        return err;

    *pushbuf->ptr++ = HOST1X_OPCODE_SETCL(0, HOST1X_CLASS_GR2D, 0);

    *pushbuf->ptr++ = HOST1X_OPCODE_MASK(0x9, 0x9);
    *pushbuf->ptr++ = 0x0000003a;
    *pushbuf->ptr++ = 0x00000000;

    *pushbuf->ptr++ = HOST1X_OPCODE_MASK(0x1e, 0x7);
    *pushbuf->ptr++ = 0x00000000;
    *pushbuf->ptr++ = (2 << 16) | (1 << 6) | (1 << 2);
    *pushbuf->ptr++ = 0x000000cc;

    *pushbuf->ptr++ = HOST1X_OPCODE_MASK(0x2b, 0x9);

    /* relocate destination buffer */
    err = drm_tegra_pushbuf_relocate(pushbuf, bo, 0, 0);
    if (err < 0) {
        fprintf(stderr, "failed to relocate buffer object: %d\n", err);
        return err;
    }

    *pushbuf->ptr++ = fb->pitch;

    *pushbuf->ptr++ = HOST1X_OPCODE_NONINCR(0x35, 1);
    *pushbuf->ptr++ = color;

    *pushbuf->ptr++ = HOST1X_OPCODE_NONINCR(0x46, 1);
    *pushbuf->ptr++ = 0x00000000;

    *pushbuf->ptr++ = HOST1X_OPCODE_MASK(0x38, 0x5);
    *pushbuf->ptr++ = height << 16 | width;
    *pushbuf->ptr++ = y << 16 | x;

    return 0;
}

int drm_tegra_gr2d_fill_simple(struct drm_tegra_gr2d *gr2d,
                               struct drm_framebuffer *fb, unsigned int x,
                               unsigned int y, unsigned int width,
                               unsigned int height, uint32_t color)
{
    struct drm_tegra_pushbuf *pushbuf;
    struct drm_tegra_fence *fence;
    struct drm_tegra_job *job;
    int err;

    err = drm_tegra_job_new(&job, gr2d->channel);
    if (err < 0)
        return err;

    err = drm_tegra_pushbuf_new(&pushbuf, job);
    if (err < 0)
        return err;

    err = drm_tegra_gr2d_fill(pushbuf, fb, x, y, width, height, color);
    if (err < 0) {
        fprintf(stderr, "failed to compose 2D fill: %d\n", err);
        return err;
    }

    err = drm_tegra_job_submit(job, &fence);
    if (err < 0) {
        fprintf(stderr, "failed to submit job: %d\n", err);
        return err;
    }

    err = drm_tegra_fence_wait(fence);
    if (err < 0) {
        fprintf(stderr, "failed to wait for fence: %d\n", err);
        return err;
    }

    drm_tegra_fence_free(fence);
    drm_tegra_pushbuf_free(pushbuf);
    drm_tegra_job_free(job);

    return 0;
}