cmd_doc.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * This program is free software; you can redistribute it and/or
  3. * modify it under the terms of the GNU General Public License as
  4. * published by the Free Software Foundation; either version 2 of
  5. * the License, or (at your option) any later version.
  6. *
  7. * This program is distributed in the hope that it will be useful,
  8. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  9. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  10. * GNU General Public License for more details.
  11. *
  12. * You should have received a copy of the GNU General Public License
  13. * along with this program; if not, write to the Free Software
  14. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  15. * MA 02111-1307 USA
  16. */
  17. /*
  18. * Disk-On-Chip support
  19. */
  20. #ifndef _CMD_DOC_H
  21. #define _CMD_DOC_H
  22. #include <common.h>
  23. #include <command.h>
  24. #if (CONFIG_COMMANDS & CFG_CMD_DOC)
  25. #define CMD_TBL_DOC MK_CMD_TBL_ENTRY( \
  26. "doc", 3, 5, 1, do_doc, \
  27. "doc - Disk-On-Chip sub-system\n", \
  28. "info - show available DOC devices\n" \
  29. "doc device [dev] - show or set current device\n" \
  30. "doc read addr off size\n" \
  31. "doc write addr off size - read/write `size'" \
  32. " bytes starting at offset `off'\n" \
  33. " to/from memory address `addr'\n" \
  34. "doc erase off size - erase `size' bytes of DOC from offset `off'\n" \
  35. ),
  36. #define CMD_TBL_DOCBOOT MK_CMD_TBL_ENTRY( \
  37. "docboot", 4, 4, 1, do_docboot, \
  38. "docboot - boot from DOC device\n", \
  39. "loadAddr dev\n" \
  40. ),
  41. int do_doc (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
  42. int do_docboot (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
  43. #else
  44. #define CMD_TBL_DOC
  45. #define CMD_TBL_DOCBOOT
  46. #endif
  47. #endif /* _CMD_DOC_H */