Merge branch 'vmwgfx-next-3.13' of git://people.freedesktop.org/~thomash/linux into...
[cascardo/linux.git] / drivers / gpu / drm / nouveau / core / subdev / bus / hwsq.c
1 /*
2  * Copyright 2013 Red Hat Inc.
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 shall be included in
12  * all copies or substantial portions of the Software.
13  *
14  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
17  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20  * OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * Authors: Ben Skeggs <bskeggs@redhat.com>
23  */
24
25 #include <subdev/timer.h>
26 #include <subdev/bus.h>
27
28 struct nouveau_hwsq {
29         struct nouveau_bus *pbus;
30         u32 addr;
31         u32 data;
32         struct {
33                 u8 data[512];
34                 u8 size;
35         } c;
36 };
37
38 static void
39 hwsq_cmd(struct nouveau_hwsq *hwsq, int size, u8 data[])
40 {
41         memcpy(&hwsq->c.data[hwsq->c.size], data, size * sizeof(data[0]));
42         hwsq->c.size += size;
43 }
44
45 int
46 nouveau_hwsq_init(struct nouveau_bus *pbus, struct nouveau_hwsq **phwsq)
47 {
48         struct nouveau_hwsq *hwsq;
49
50         hwsq = *phwsq = kmalloc(sizeof(*hwsq), GFP_KERNEL);
51         if (hwsq) {
52                 hwsq->pbus = pbus;
53                 hwsq->addr = ~0;
54                 hwsq->data = ~0;
55                 memset(hwsq->c.data, 0x7f, sizeof(hwsq->c.data));
56                 hwsq->c.size = 0;
57         }
58
59         return hwsq ? 0 : -ENOMEM;
60 }
61
62 int
63 nouveau_hwsq_fini(struct nouveau_hwsq **phwsq, bool exec)
64 {
65         struct nouveau_hwsq *hwsq = *phwsq;
66         int ret = 0, i;
67         if (hwsq) {
68                 struct nouveau_bus *pbus = hwsq->pbus;
69                 hwsq->c.size = (hwsq->c.size + 4) / 4;
70                 if (hwsq->c.size <= pbus->hwsq_size) {
71                         if (exec)
72                                 ret = pbus->hwsq_exec(pbus, (u32 *)hwsq->c.data,
73                                                       hwsq->c.size);
74                         if (ret)
75                                 nv_error(pbus, "hwsq exec failed: %d\n", ret);
76                 } else {
77                         nv_error(pbus, "hwsq ucode too large\n");
78                         ret = -ENOSPC;
79                 }
80
81                 for (i = 0; ret && i < hwsq->c.size; i++)
82                         nv_error(pbus, "\t0x%08x\n", ((u32 *)hwsq->c.data)[i]);
83
84                 *phwsq = NULL;
85                 kfree(hwsq);
86         }
87         return ret;
88 }
89
90 void
91 nouveau_hwsq_wr32(struct nouveau_hwsq *hwsq, u32 addr, u32 data)
92 {
93         nv_debug(hwsq->pbus, "R[%06x] = 0x%08x\n", addr, data);
94
95         if (hwsq->data != data) {
96                 if ((data & 0xffff0000) != (hwsq->data & 0xffff0000)) {
97                         hwsq_cmd(hwsq, 5, (u8[]){ 0xe2, data, data >> 8,
98                                                   data >> 16, data >> 24 });
99                 } else {
100                         hwsq_cmd(hwsq, 3, (u8[]){ 0x42, data, data >> 8 });
101                 }
102         }
103
104         if ((addr & 0xffff0000) != (hwsq->addr & 0xffff0000)) {
105                 hwsq_cmd(hwsq, 5, (u8[]){ 0xe0, addr, addr >> 8,
106                                           addr >> 16, addr >> 24 });
107         } else {
108                 hwsq_cmd(hwsq, 3, (u8[]){ 0x40, addr, addr >> 8 });
109         }
110
111         hwsq->addr = addr;
112         hwsq->data = data;
113 }
114
115 void
116 nouveau_hwsq_setf(struct nouveau_hwsq *hwsq, u8 flag, int data)
117 {
118         nv_debug(hwsq->pbus, " FLAG[%02x] = %d\n", flag, data);
119         flag += 0x80;
120         if (data >= 0)
121                 flag += 0x20;
122         if (data >= 1)
123                 flag += 0x20;
124         hwsq_cmd(hwsq, 1, (u8[]){ flag });
125 }
126
127 void
128 nouveau_hwsq_wait(struct nouveau_hwsq *hwsq, u8 flag, u8 data)
129 {
130         nv_debug(hwsq->pbus, " WAIT[%02x] = %d\n", flag, data);
131         hwsq_cmd(hwsq, 3, (u8[]){ 0x5f, flag, data });
132 }
133
134 void
135 nouveau_hwsq_nsec(struct nouveau_hwsq *hwsq, u32 nsec)
136 {
137         u8 shift = 0, usec = nsec / 1000;
138         while (usec & ~3) {
139                 usec >>= 2;
140                 shift++;
141         }
142
143         nv_debug(hwsq->pbus, "    DELAY = %d ns\n", nsec);
144         hwsq_cmd(hwsq, 1, (u8[]){ 0x00 | (shift << 2) | usec });
145 }