cmpi.c 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. /*
  2. * (C) Copyright 2002
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. */
  23. #include <common.h>
  24. /*
  25. * CPU test
  26. * Integer compare instructions: cmpwi, cmplwi
  27. *
  28. * To verify these instructions the test runs them with
  29. * different combinations of operands, reads the condition
  30. * register value and compares it with the expected one.
  31. * The test contains a pre-built table
  32. * containing the description of each test case: the instruction,
  33. * the values of the operands, the condition field to save
  34. * the result in and the expected result.
  35. */
  36. #ifdef CONFIG_POST
  37. #include <post.h>
  38. #include "cpu_asm.h"
  39. #if CONFIG_POST & CFG_POST_CPU
  40. extern void cpu_post_exec_11 (ulong *code, ulong *res, ulong op1);
  41. static struct cpu_post_cmpi_s
  42. {
  43. ulong cmd;
  44. ulong op1;
  45. ushort op2;
  46. ulong cr;
  47. ulong res;
  48. } cpu_post_cmpi_table[] =
  49. {
  50. {
  51. OP_CMPWI,
  52. 123,
  53. 123,
  54. 2,
  55. 0x02
  56. },
  57. {
  58. OP_CMPWI,
  59. 123,
  60. 133,
  61. 3,
  62. 0x08
  63. },
  64. {
  65. OP_CMPWI,
  66. 123,
  67. -133,
  68. 4,
  69. 0x04
  70. },
  71. {
  72. OP_CMPLWI,
  73. 123,
  74. 123,
  75. 2,
  76. 0x02
  77. },
  78. {
  79. OP_CMPLWI,
  80. 123,
  81. -133,
  82. 3,
  83. 0x08
  84. },
  85. {
  86. OP_CMPLWI,
  87. 123,
  88. 113,
  89. 4,
  90. 0x04
  91. },
  92. };
  93. static unsigned int cpu_post_cmpi_size =
  94. sizeof (cpu_post_cmpi_table) / sizeof (struct cpu_post_cmpi_s);
  95. int cpu_post_test_cmpi (void)
  96. {
  97. int ret = 0;
  98. unsigned int i;
  99. for (i = 0; i < cpu_post_cmpi_size && ret == 0; i++)
  100. {
  101. struct cpu_post_cmpi_s *test = cpu_post_cmpi_table + i;
  102. unsigned long code[] =
  103. {
  104. ASM_1IC(test->cmd, test->cr, 3, test->op2),
  105. ASM_MFCR(3),
  106. ASM_BLR
  107. };
  108. ulong res;
  109. cpu_post_exec_11 (code, & res, test->op1);
  110. ret = ((res >> (28 - 4 * test->cr)) & 0xe) == test->res ? 0 : -1;
  111. if (ret != 0)
  112. {
  113. post_log ("Error at cmpi test %d !\n", i);
  114. }
  115. }
  116. return ret;
  117. }
  118. #endif
  119. #endif