You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

86 lines
2.5KB

  1. /*
  2. * This file is part of FFmpeg.
  3. *
  4. * FFmpeg is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU Lesser General Public
  6. * License as published by the Free Software Foundation; either
  7. * version 2.1 of the License, or (at your option) any later version.
  8. *
  9. * FFmpeg is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * Lesser General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU Lesser General Public
  15. * License along with FFmpeg; if not, write to the Free Software
  16. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  17. */
  18. #ifdef __APPLE__
  19. #undef _POSIX_C_SOURCE
  20. #include <sys/sysctl.h>
  21. #elif defined(__OpenBSD__)
  22. #undef _POSIX_C_SOURCE
  23. #include <sys/param.h>
  24. #include <sys/sysctl.h>
  25. #include <machine/cpu.h>
  26. #elif defined(__AMIGAOS4__)
  27. #include <exec/exec.h>
  28. #include <interfaces/exec.h>
  29. #include <proto/exec.h>
  30. #endif /* __APPLE__ */
  31. #include "libavutil/cpu.h"
  32. #include "config.h"
  33. /**
  34. * This function MAY rely on signal() or fork() in order to make sure AltiVec
  35. * is present.
  36. */
  37. int ff_get_cpu_flags_ppc(void)
  38. {
  39. #if HAVE_ALTIVEC
  40. #ifdef __AMIGAOS4__
  41. ULONG result = 0;
  42. extern struct ExecIFace *IExec;
  43. IExec->GetCPUInfoTags(GCIT_VectorUnit, &result, TAG_DONE);
  44. if (result == VECTORTYPE_ALTIVEC)
  45. return AV_CPU_FLAG_ALTIVEC;
  46. return 0;
  47. #elif defined(__APPLE__) || defined(__OpenBSD__)
  48. #ifdef __OpenBSD__
  49. int sels[2] = {CTL_MACHDEP, CPU_ALTIVEC};
  50. #else
  51. int sels[2] = {CTL_HW, HW_VECTORUNIT};
  52. #endif
  53. int has_vu = 0;
  54. size_t len = sizeof(has_vu);
  55. int err;
  56. err = sysctl(sels, 2, &has_vu, &len, NULL, 0);
  57. if (err == 0)
  58. return has_vu ? AV_CPU_FLAG_ALTIVEC : 0;
  59. return 0;
  60. #elif CONFIG_RUNTIME_CPUDETECT
  61. int proc_ver;
  62. // Support of mfspr PVR emulation added in Linux 2.6.17.
  63. __asm__ volatile("mfspr %0, 287" : "=r" (proc_ver));
  64. proc_ver >>= 16;
  65. if (proc_ver & 0x8000 ||
  66. proc_ver == 0x000c ||
  67. proc_ver == 0x0039 || proc_ver == 0x003c ||
  68. proc_ver == 0x0044 || proc_ver == 0x0045 ||
  69. proc_ver == 0x0070)
  70. return AV_CPU_FLAG_ALTIVEC;
  71. return 0;
  72. #else
  73. // Since we were compiled for AltiVec, just assume we have it
  74. // until someone comes up with a proper way (not involving signal hacks).
  75. return AV_CPU_FLAG_ALTIVEC;
  76. #endif /* __AMIGAOS4__ */
  77. #endif /* HAVE_ALTIVEC */
  78. return 0;
  79. }