~ubuntu-branches/ubuntu/maverick/tvtime/maverick

« back to all changes in this revision

Viewing changes to src/cpu_accel.c

  • Committer: Bazaar Package Importer
  • Author(s): Simon Law
  • Date: 2004-01-13 18:00:36 UTC
  • Revision ID: james.westby@ubuntu.com-20040113180036-h996q67t476jymsu
Tags: upstream-0.9.12
ImportĀ upstreamĀ versionĀ 0.9.12

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * cpu_accel.c
 
3
 * Copyright (C) 2000-2002 Michel Lespinasse <walken@zoy.org>
 
4
 * Copyright (C) 1999-2000 Aaron Holtzman <aholtzma@ess.engr.uvic.ca>
 
5
 *
 
6
 * This file is part of mpeg2dec, a free MPEG-2 video stream decoder.
 
7
 * See http://libmpeg2.sourceforge.net/ for updates.
 
8
 *
 
9
 * mpeg2dec is free software; you can redistribute it and/or modify
 
10
 * it under the terms of the GNU General Public License as published by
 
11
 * the Free Software Foundation; either version 2 of the License, or
 
12
 * (at your option) any later version.
 
13
 *
 
14
 * mpeg2dec is distributed in the hope that it will be useful,
 
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 * GNU General Public License for more details.
 
18
 *
 
19
 * You should have received a copy of the GNU General Public License
 
20
 * along with this program; if not, write to the Free Software
 
21
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
22
 */
 
23
 
 
24
#ifdef HAVE_CONFIG_H
 
25
# include "config.h"
 
26
#endif
 
27
 
 
28
#include <stdint.h>
 
29
#include "mm_accel.h"
 
30
 
 
31
#ifdef ARCH_X86
 
32
static inline uint32_t arch_accel (void)
 
33
{
 
34
    uint32_t eax, ebx, ecx, edx;
 
35
    int AMD;
 
36
    uint32_t caps;
 
37
 
 
38
#ifndef PIC
 
39
#define cpuid(op,eax,ebx,ecx,edx)       \
 
40
    __asm__ ("cpuid"                    \
 
41
             : "=a" (eax),              \
 
42
               "=b" (ebx),              \
 
43
               "=c" (ecx),              \
 
44
               "=d" (edx)               \
 
45
             : "a" (op)                 \
 
46
             : "cc")
 
47
#else   /* PIC version : save ebx */
 
48
#define cpuid(op,eax,ebx,ecx,edx)       \
 
49
    __asm__ ("pushl %%ebx\n\t"          \
 
50
             "cpuid\n\t"                \
 
51
             "movl %%ebx,%1\n\t"        \
 
52
             "popl %%ebx"               \
 
53
             : "=a" (eax),              \
 
54
               "=r" (ebx),              \
 
55
               "=c" (ecx),              \
 
56
               "=d" (edx)               \
 
57
             : "a" (op)                 \
 
58
             : "cc")
 
59
#endif
 
60
 
 
61
    __asm__ ("pushfl\n\t"
 
62
             "pushfl\n\t"
 
63
             "popl %0\n\t"
 
64
             "movl %0,%1\n\t"
 
65
             "xorl $0x200000,%0\n\t"
 
66
             "pushl %0\n\t"
 
67
             "popfl\n\t"
 
68
             "pushfl\n\t"
 
69
             "popl %0\n\t"
 
70
             "popfl"
 
71
             : "=r" (eax),
 
72
               "=r" (ebx)
 
73
             :
 
74
             : "cc");
 
75
 
 
76
    if (eax == ebx)             /* no cpuid */
 
77
        return 0;
 
78
 
 
79
    cpuid (0x00000000, eax, ebx, ecx, edx);
 
80
    if (!eax)                   /* vendor string only */
 
81
        return 0;
 
82
 
 
83
    AMD = (ebx == 0x68747541) && (ecx == 0x444d4163) && (edx == 0x69746e65);
 
84
 
 
85
    cpuid (0x00000001, eax, ebx, ecx, edx);
 
86
    if (! (edx & 0x00800000))   /* no MMX */
 
87
        return 0;
 
88
 
 
89
    caps = MM_ACCEL_X86_MMX;
 
90
    if (edx & 0x02000000)       /* SSE - identical to AMD MMX extensions */
 
91
        caps = MM_ACCEL_X86_MMX | MM_ACCEL_X86_MMXEXT;
 
92
 
 
93
    cpuid (0x80000000, eax, ebx, ecx, edx);
 
94
    if (eax < 0x80000001)       /* no extended capabilities */
 
95
        return caps;
 
96
 
 
97
    cpuid (0x80000001, eax, ebx, ecx, edx);
 
98
 
 
99
    if (edx & 0x80000000)
 
100
        caps |= MM_ACCEL_X86_3DNOW;
 
101
 
 
102
    if (AMD && (edx & 0x00400000))      /* AMD MMX extensions */
 
103
        caps |= MM_ACCEL_X86_MMXEXT;
 
104
 
 
105
    return caps;
 
106
}
 
107
#endif /* ARCH_X86 */
 
108
 
 
109
#ifdef ARCH_PPC
 
110
#include <signal.h>
 
111
#include <setjmp.h>
 
112
 
 
113
static sigjmp_buf jmpbuf;
 
114
static volatile sig_atomic_t canjump = 0;
 
115
 
 
116
static RETSIGTYPE sigill_handler (int sig)
 
117
{
 
118
    if (!canjump) {
 
119
        signal (sig, SIG_DFL);
 
120
        raise (sig);
 
121
    }
 
122
 
 
123
    canjump = 0;
 
124
    siglongjmp (jmpbuf, 1);
 
125
}
 
126
 
 
127
static inline uint32_t arch_accel (void)
 
128
{
 
129
    signal (SIGILL, sigill_handler);
 
130
    if (sigsetjmp (jmpbuf, 1)) {
 
131
        signal (SIGILL, SIG_DFL);
 
132
        return 0;
 
133
    }
 
134
 
 
135
    canjump = 1;
 
136
 
 
137
    asm volatile ("mtspr 256, %0\n\t"
 
138
                  "vand %%v0, %%v0, %%v0"
 
139
                  :
 
140
                  : "r" (-1));
 
141
 
 
142
    signal (SIGILL, SIG_DFL);
 
143
    return MM_ACCEL_PPC_ALTIVEC;
 
144
}
 
145
#endif /* ARCH_PPC */
 
146
 
 
147
uint32_t mm_accel (void)
 
148
{
 
149
#if defined (ARCH_X86) || defined (ARCH_PPC)
 
150
    static int got_accel = 0;
 
151
    static uint32_t accel;
 
152
 
 
153
    if (!got_accel) {
 
154
        got_accel = 1;
 
155
        accel = arch_accel ();
 
156
    }
 
157
 
 
158
    return accel;
 
159
#else
 
160
    return 0;
 
161
#endif
 
162
}