summaryrefslogtreecommitdiff
path: root/src/geode_common.c
blob: 2e02af17b99d1b350b3080ec5f214bc5d5adeec7 (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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
 * Copyright (c) 2007 Advanced Micro Devices, Inc.
 *
 * 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
 * AUTHORS OR COPYRIGHT HOLDERS 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.
 *
 * Neither the name of the Advanced Micro Devices, Inc. nor the names of its
 * contributors may be used to endorse or promote products derived from this
 * software without specific prior written permission.
 */

/* We want to share as much code between GX and LX as we possibly can for obvious reasons */

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

#include <string.h>		       /* memcmp() */
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <sys/ioctl.h>

#include "xf86.h"
#include "geode.h"

#define move0(d,s,n) \
  __asm__ __volatile__( \
  "   rep; movsl\n" \
  : "=&c" (d0), "=&S" (d1), "=&D" (d2) \
  : "0" (n), "1" (s), "2" (d) \
  : "memory")

#define move1(d,s,n) \
  __asm__ __volatile__( \
  "   rep; movsl\n" \
  "   movsb\n" \
  : "=&c" (d0), "=&S" (d1), "=&D" (d2) \
  : "0" (n), "1" (s), "2" (d) \
  : "memory")

#define move2(d,s,n) \
  __asm__ __volatile__( \
  "   rep; movsl\n" \
  "   movsw\n" \
  : "=&c" (d0), "=&S" (d1), "=&D" (d2) \
  : "0" (n), "1" (s), "2" (d) \
  : "memory")

#define move3(d,s,n) \
  __asm__ __volatile__( \
  "   rep; movsl\n" \
  "   movsw\n" \
  "   movsb\n" \
  : "=&c" (d0), "=&S" (d1), "=&D" (d2) \
  : "0" (n), "1" (s), "2" (d) \
  : "memory")

void
geode_memory_to_screen_blt(unsigned long src, unsigned long dst,
    unsigned long sp, unsigned long dp, long w, long h, int bpp)
{
    int d0, d1, d2;
    int n = w * (bpp >> 3);
    int m = n >> 2;

    switch (n & 3) {
    case 0:
	while (--h >= 0) {
	    move0(dst, src, m);
	    src += sp;
	    dst += dp;
	}
	break;
    case 1:
	while (--h >= 0) {
	    move1(dst, src, m);
	    src += sp;
	    dst += dp;
	}
	break;
    case 2:
	while (--h >= 0) {
	    move2(dst, src, m);
	    src += sp;
	    dst += dp;
	}
	break;
    case 3:
	while (--h >= 0) {
	    move3(dst, src, m);
	    src += sp;
	    dst += dp;
	}
	break;
    }
}

/* I borrowed this function from the i830 driver - its much better
   then what we had before
*/

int
GeodeGetRefreshRate(DisplayModePtr pMode)
{
    if (pMode->VRefresh)
	return (int)(pMode->VRefresh + 0.5);

    return (int)(pMode->Clock * 1000.0 / pMode->HTotal / pMode->VTotal + 0.5);
}

/* This is used by both GX and LX.  It could be accelerated for LX, probably, but
   that would involve a two pass blt, the first to copy the data, and the second
   to copy the grey (using a pattern).  That seems like a bit of work for a
   very underused format - so we'll just use the slow version.
*/

void
GeodeCopyGreyscale(unsigned char *src, unsigned char *dst,
    int dstPitch, int srcPitch, int h, int w)
{
    int i;
    unsigned char *src2 = src;
    unsigned char *dst2 = dst;
    unsigned char *dst3;
    unsigned char *src3;

    dstPitch <<= 1;

    while (h--) {
	dst3 = dst2;
	src3 = src2;
	for (i = 0; i < w; i++) {
	    *dst3++ = *src3++;	       /* Copy Y data */
	    *dst3++ = 0x80;	       /* Fill UV with 0x80 - greyscale */
	}

	src3 = src2;
	for (i = 0; i < w; i++) {
	    *dst3++ = *src3++;	       /* Copy Y data */
	    *dst3++ = 0x80;	       /* Fill UV with 0x80 - greyscale */
	}

	dst2 += dstPitch;
	src2 += srcPitch;
    }
}

#if defined(linux)

#include <linux/fb.h>

int
GeodeGetSizeFromFB(unsigned int *size)
{
    struct fb_fix_screeninfo fix;
    int ret;
    int fd = open("/dev/fb0", O_RDONLY);

    if (fd == -1)
	return -1;

    ret = ioctl(fd, FBIOGET_FSCREENINFO, &fix);
    close(fd);

    if (!ret) {
	if (!memcmp(fix.id, "Geode", 5)) {
	    *size = fix.smem_len;
	    return 0;
	}
    }

    return -1;
}

#else

int
GeodeGetSizeFromFB(unsigned int *size)
{
    return -1;
}

#endif