cmd_portio.c 3.5 KB

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