Blame view

cmd/ide.c 1.4 KB
d41ce506b   Eric Lee   Initial Release, ...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
  /*
   * (C) Copyright 2000-2011
   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
   *
   * SPDX-License-Identifier:	GPL-2.0+
   */
  
  /*
   * IDE support
   */
  
  #include <common.h>
  #include <blk.h>
  #include <config.h>
  #include <watchdog.h>
  #include <command.h>
  #include <image.h>
  #include <asm/byteorder.h>
  #include <asm/io.h>
  
  #if defined(CONFIG_IDE_PCMCIA)
  # include <pcmcia.h>
  #endif
  
  #include <ide.h>
  #include <ata.h>
  
  #ifdef CONFIG_LED_STATUS
  # include <status_led.h>
  #endif
  
  /* Current I/O Device	*/
  static int curr_device;
  
  int do_ide(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
  {
  	if (argc == 2) {
  		if (strncmp(argv[1], "res", 3) == 0) {
  			puts("
  Reset IDE: ");
  			ide_init();
  			return 0;
  		}
  	}
  
  	return blk_common_cmd(argc, argv, IF_TYPE_IDE, &curr_device);
  }
  
  int do_diskboot(cmd_tbl_t *cmdtp, int flag, int argc, char *const argv[])
  {
  	return common_diskboot(cmdtp, "ide", argc, argv);
  }
  
  U_BOOT_CMD(ide, 5, 1, do_ide,
  	   "IDE sub-system",
  	   "reset - reset IDE controller
  "
  	   "ide info  - show available IDE devices
  "
  	   "ide device [dev] - show or set current device
  "
  	   "ide part [dev] - print partition table of one or all IDE devices
  "
  	   "ide read  addr blk# cnt
  "
  	   "ide write addr blk# cnt - read/write `cnt'"
  	   " blocks starting at block `blk#'
  "
  	   "    to/from memory address `addr'");
  
  U_BOOT_CMD(diskboot, 3, 1, do_diskboot,
  	   "boot from IDE device", "loadAddr dev:part");