blob: 036489fda979b8656cc9cd9f2a21867513c21e3c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenkc6097192002-11-03 00:24:07 +00002/*
Wolfgang Denk34c202c2011-10-29 09:41:40 +00003 * (C) Copyright 2000-2011
wdenkc6097192002-11-03 00:24:07 +00004 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenkc6097192002-11-03 00:24:07 +00005 */
6
7/*
8 * IDE support
9 */
Albert Aribaud113bfe42010-08-08 05:17:06 +053010
Simon Glass2a981dc2016-02-29 15:25:52 -070011#include <blk.h>
Simon Glass80778f52023-04-25 10:54:30 -060012#include <dm.h>
wdenkc6097192002-11-03 00:24:07 +000013#include <config.h>
14#include <watchdog.h>
15#include <command.h>
16#include <image.h>
17#include <asm/byteorder.h>
Heiko Schocherf98984c2007-08-28 17:39:14 +020018#include <asm/io.h>
Simon Glass80778f52023-04-25 10:54:30 -060019#include <dm/device-internal.h>
20#include <dm/uclass-internal.h>
Grant Likely735dd972007-02-20 09:04:34 +010021
wdenkc6097192002-11-03 00:24:07 +000022#include <ide.h>
23#include <ata.h>
Grant Likely735dd972007-02-20 09:04:34 +010024
Uri Mashiach2d8d1902017-01-19 10:51:45 +020025#ifdef CONFIG_LED_STATUS
wdenkc6097192002-11-03 00:24:07 +000026# include <status_led.h>
27#endif
Grant Likely735dd972007-02-20 09:04:34 +010028
wdenkc6097192002-11-03 00:24:07 +000029/* Current I/O Device */
Bin Meng584f3162017-09-10 05:12:53 -070030static int curr_device;
wdenkc6097192002-11-03 00:24:07 +000031
Simon Glass09140112020-05-10 11:40:03 -060032int do_ide(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +000033{
Simon Glass09ed0d62017-07-29 11:34:57 -060034 if (argc == 2) {
Wolfgang Denk34c202c2011-10-29 09:41:40 +000035 if (strncmp(argv[1], "res", 3) == 0) {
Simon Glass80778f52023-04-25 10:54:30 -060036 struct udevice *dev;
37 int ret;
38
Heiko Schocher5b8e76c2017-06-07 17:33:09 +020039 puts("\nReset IDE: ");
Simon Glass80778f52023-04-25 10:54:30 -060040 ret = uclass_find_first_device(UCLASS_IDE, &dev);
41 ret = device_remove(dev, DM_REMOVE_NORMAL);
42 if (!ret)
43 ret = device_chld_unbind(dev, NULL);
44 if (ret) {
45 printf("Cannot remove IDE (err=%dE)\n", ret);
46 return CMD_RET_FAILURE;
47 }
48
49 ret = uclass_first_device_err(UCLASS_IDE, &dev);
50 if (ret) {
51 printf("Init failed (err=%dE)\n", ret);
52 return CMD_RET_FAILURE;
53 }
54
Wolfgang Denk34c202c2011-10-29 09:41:40 +000055 return 0;
Wolfgang Denk34c202c2011-10-29 09:41:40 +000056 }
Wolfgang Denk34c202c2011-10-29 09:41:40 +000057 }
Simon Glass09ed0d62017-07-29 11:34:57 -060058
Simon Glasse33a5c62022-08-11 19:34:59 -060059 return blk_common_cmd(argc, argv, UCLASS_IDE, &curr_device);
wdenkc6097192002-11-03 00:24:07 +000060}
61
Simon Glass09140112020-05-10 11:40:03 -060062int do_diskboot(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenkc6097192002-11-03 00:24:07 +000063{
Rob Herring7405a132012-09-21 04:02:30 +000064 return common_diskboot(cmdtp, "ide", argc, argv);
wdenkc6097192002-11-03 00:24:07 +000065}
66
Wolfgang Denk34c202c2011-10-29 09:41:40 +000067U_BOOT_CMD(ide, 5, 1, do_ide,
68 "IDE sub-system",
69 "reset - reset IDE controller\n"
70 "ide info - show available IDE devices\n"
71 "ide device [dev] - show or set current device\n"
72 "ide part [dev] - print partition table of one or all IDE devices\n"
73 "ide read addr blk# cnt\n"
74 "ide write addr blk# cnt - read/write `cnt'"
75 " blocks starting at block `blk#'\n"
76 " to/from memory address `addr'");
wdenk8bde7f72003-06-27 21:31:46 +000077
Wolfgang Denk34c202c2011-10-29 09:41:40 +000078U_BOOT_CMD(diskboot, 3, 1, do_diskboot,
79 "boot from IDE device", "loadAddr dev:part");