cmd_portio.c 3.6 KB

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