bios_uv.c 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. /*
  2. * BIOS run time interface routines.
  3. *
  4. * Copyright (c) 2008 Silicon Graphics, Inc. All Rights Reserved.
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 2 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program; if not, write to the Free Software
  18. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  19. */
  20. #include <asm/uv/bios.h>
  21. const char *
  22. x86_bios_strerror(long status)
  23. {
  24. const char *str;
  25. switch (status) {
  26. case 0: str = "Call completed without error"; break;
  27. case -1: str = "Not implemented"; break;
  28. case -2: str = "Invalid argument"; break;
  29. case -3: str = "Call completed with error"; break;
  30. default: str = "Unknown BIOS status code"; break;
  31. }
  32. return str;
  33. }
  34. long
  35. x86_bios_freq_base(unsigned long which, unsigned long *ticks_per_second,
  36. unsigned long *drift_info)
  37. {
  38. struct uv_bios_retval isrv;
  39. BIOS_CALL(isrv, BIOS_FREQ_BASE, which, 0, 0, 0, 0, 0, 0);
  40. *ticks_per_second = isrv.v0;
  41. *drift_info = isrv.v1;
  42. return isrv.status;
  43. }
  44. EXPORT_SYMBOL_GPL(x86_bios_freq_base);