cmd_portio.c 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  1. /*
  2. * (C) Copyright 2003
  3. * Marc Singer, elf@buici.com
  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. /*
  24. * Port I/O Functions
  25. *
  26. * Copied from FADS ROM, Dan Malek (dmalek@jlc.net)
  27. */
  28. #include <common.h>
  29. #include <command.h>
  30. #include <cmd_portio.h>
  31. #if (CONFIG_COMMANDS & CFG_CMD_PORTIO)
  32. extern int cmd_get_data_size (char *arg, int default_size);
  33. /* Display values from last command.
  34. * Memory modify remembered values are different from display memory.
  35. */
  36. static uint in_last_addr, in_last_size;
  37. static uint out_last_addr, out_last_size, out_last_value;
  38. int do_portio_out (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
  39. {
  40. uint addr = out_last_addr;
  41. uint size = out_last_size;
  42. uint value = out_last_value;
  43. if (argc != 3) {
  44. printf ("Usage:\n%s\n", cmdtp->usage);
  45. return 1;
  46. }
  47. if ((flag & CMD_FLAG_REPEAT) == 0) {
  48. /* New command specified. Check for a size specification.
  49. * Defaults to long if no or incorrect specification.
  50. */
  51. size = cmd_get_data_size (argv[0], 1);
  52. addr = simple_strtoul (argv[1], NULL, 16);
  53. value = simple_strtoul (argv[2], NULL, 16);
  54. }
  55. #if defined (CONFIG_X86)
  56. {
  57. unsigned short port = addr;
  58. switch (size) {
  59. default:
  60. case 1:
  61. {
  62. unsigned char ch = value;
  63. __asm__ volatile ("out %0, %%dx"::"a" (ch), "d" (port));
  64. }
  65. break;
  66. case 2:
  67. {
  68. unsigned short w = value;
  69. __asm__ volatile ("out %0, %%dx"::"a" (w), "d" (port));
  70. }
  71. break;
  72. case 4:
  73. __asm__ volatile ("out %0, %%dx"::"a" (value), "d" (port));
  74. break;
  75. }
  76. }
  77. #endif /* CONFIG_X86 */
  78. out_last_addr = addr;
  79. out_last_size = size;
  80. out_last_value = value;
  81. return 0;
  82. }
  83. int do_portio_in (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[])
  84. {
  85. uint addr = in_last_addr;
  86. uint size = in_last_size;
  87. if (argc != 2) {
  88. printf ("Usage:\n%s\n", cmdtp->usage);
  89. return 1;
  90. }
  91. if ((flag & CMD_FLAG_REPEAT) == 0) {
  92. /* New command specified. Check for a size specification.
  93. * Defaults to long if no or incorrect specification.
  94. */
  95. size = cmd_get_data_size (argv[0], 1);
  96. addr = simple_strtoul (argv[1], NULL, 16);
  97. }
  98. #if defined (CONFIG_X86)
  99. {
  100. unsigned short port = addr;
  101. switch (size) {
  102. default:
  103. case 1:
  104. {
  105. unsigned char ch;
  106. __asm__ volatile ("in %%dx, %0":"=a" (ch):"d" (port));
  107. printf (" %02x\n", ch);
  108. }
  109. break;
  110. case 2:
  111. {
  112. unsigned short w;
  113. __asm__ volatile ("in %%dx, %0":"=a" (w):"d" (port));
  114. printf (" %04x\n", w);
  115. }
  116. break;
  117. case 4:
  118. {
  119. unsigned long l;
  120. __asm__ volatile ("in %%dx, %0":"=a" (l):"d" (port));
  121. printf (" %08lx\n", l);
  122. }
  123. break;
  124. }
  125. }
  126. #endif /* CONFIG_X86 */
  127. in_last_addr = addr;
  128. in_last_size = size;
  129. return 0;
  130. }
  131. #endif /* CFG_CMD_PORTIO */