cpu.c 2.45 KB
Newer Older
1
/*
2
 * This file is part of Libav.
3
 *
4
 * Libav is free software; you can redistribute it and/or
5 6 7 8
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
9
 * Libav is distributed in the hope that it will be useful,
10 11 12 13 14
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
15
 * License along with Libav; if not, write to the Free Software
16 17 18 19 20
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 */

#ifdef __APPLE__
#include <sys/sysctl.h>
21
#elif defined(__OpenBSD__)
22 23 24
#include <sys/param.h>
#include <sys/sysctl.h>
#include <machine/cpu.h>
25
#elif defined(__AMIGAOS4__)
26 27 28 29 30
#include <exec/exec.h>
#include <interfaces/exec.h>
#include <proto/exec.h>
#endif /* __APPLE__ */

31
#include "libavutil/cpu.h"
32 33
#include "config.h"

34
/**
Diego Biurrun's avatar
Diego Biurrun committed
35 36
 * This function MAY rely on signal() or fork() in order to make sure AltiVec
 * is present.
37
 */
38
int ff_get_cpu_flags_ppc(void)
39
{
40
#if HAVE_ALTIVEC
41 42 43 44 45
#ifdef __AMIGAOS4__
    ULONG result = 0;
    extern struct ExecIFace *IExec;

    IExec->GetCPUInfoTags(GCIT_VectorUnit, &result, TAG_DONE);
46 47
    if (result == VECTORTYPE_ALTIVEC)
        return AV_CPU_FLAG_ALTIVEC;
48
    return 0;
49 50 51 52
#elif defined(__APPLE__) || defined(__OpenBSD__)
#ifdef __OpenBSD__
    int sels[2] = {CTL_MACHDEP, CPU_ALTIVEC};
#else
53
    int sels[2] = {CTL_HW, HW_VECTORUNIT};
54
#endif
55 56 57 58 59 60
    int has_vu = 0;
    size_t len = sizeof(has_vu);
    int err;

    err = sysctl(sels, 2, &has_vu, &len, NULL, 0);

61 62
    if (err == 0)
        return has_vu ? AV_CPU_FLAG_ALTIVEC : 0;
63
    return 0;
64
#elif CONFIG_RUNTIME_CPUDETECT
65
    int proc_ver;
Diego Biurrun's avatar
Diego Biurrun committed
66
    // Support of mfspr PVR emulation added in Linux 2.6.17.
67
    __asm__ volatile("mfspr %0, 287" : "=r" (proc_ver));
68 69 70 71 72 73
    proc_ver >>= 16;
    if (proc_ver  & 0x8000 ||
        proc_ver == 0x000c ||
        proc_ver == 0x0039 || proc_ver == 0x003c ||
        proc_ver == 0x0044 || proc_ver == 0x0045 ||
        proc_ver == 0x0070)
74
        return AV_CPU_FLAG_ALTIVEC;
75
    return 0;
76
#else
Diego Biurrun's avatar
Diego Biurrun committed
77
    // Since we were compiled for AltiVec, just assume we have it
78
    // until someone comes up with a proper way (not involving signal hacks).
79
    return AV_CPU_FLAG_ALTIVEC;
80
#endif /* __AMIGAOS4__ */
81 82
#endif /* HAVE_ALTIVEC */
    return 0;
83
}