blob: 6bdb516cb5d0cd3c71fb608c063eb0dfea6acbde [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dave Liuc7057b52008-03-26 22:49:44 +08002/*
3 * Copyright (C) 2000-2005, DENX Software Engineering
4 * Wolfgang Denk <wd@denx.de>
5 * Copyright (C) Procsys. All rights reserved.
6 * Mushtaq Khan <mushtaq_k@procsys.com>
7 * <mushtaqk_921@yahoo.co.in>
8 * Copyright (C) 2008 Freescale Semiconductor, Inc.
9 * Dave Liu <daveliu@freescale.com>
Dave Liuc7057b52008-03-26 22:49:44 +080010 */
11
12#include <common.h>
Simon Glassf19f1ec2017-07-29 11:35:13 -060013#include <ahci.h>
14#include <dm.h>
Dave Liuc7057b52008-03-26 22:49:44 +080015#include <command.h>
16#include <part.h>
17#include <sata.h>
Simon Glassf19f1ec2017-07-29 11:35:13 -060018#include <dm/device-internal.h>
19#include <dm/uclass-internal.h>
Dave Liuc7057b52008-03-26 22:49:44 +080020
Kim Phillips088f1b12012-10-29 13:34:31 +000021static int sata_curr_device = -1;
Dave Liuc7057b52008-03-26 22:49:44 +080022
Simon Glassf19f1ec2017-07-29 11:35:13 -060023int sata_remove(int devnum)
24{
25#ifdef CONFIG_AHCI
26 struct udevice *dev;
27 int rc;
28
Peng Ma2d7818d2019-12-04 10:36:47 +000029 blk_unbind_all(IF_TYPE_SATA);
30
Simon Glassf19f1ec2017-07-29 11:35:13 -060031 rc = uclass_find_device(UCLASS_AHCI, devnum, &dev);
32 if (!rc && !dev)
33 rc = uclass_find_first_device(UCLASS_AHCI, &dev);
34 if (rc || !dev) {
35 printf("Cannot find SATA device %d (err=%d)\n", devnum, rc);
36 return CMD_RET_FAILURE;
37 }
38
39 rc = device_remove(dev, DM_REMOVE_NORMAL);
40 if (rc) {
41 printf("Cannot remove SATA device '%s' (err=%d)\n", dev->name,
42 rc);
43 return CMD_RET_FAILURE;
44 }
45
46 return 0;
47#else
48 return sata_stop();
49#endif
50}
51
52int sata_probe(int devnum)
53{
54#ifdef CONFIG_AHCI
55 struct udevice *dev;
Simon Glassf19f1ec2017-07-29 11:35:13 -060056 int rc;
57
58 rc = uclass_get_device(UCLASS_AHCI, devnum, &dev);
59 if (rc)
60 rc = uclass_find_first_device(UCLASS_AHCI, &dev);
61 if (rc) {
62 printf("Cannot probe SATA device %d (err=%d)\n", devnum, rc);
63 return CMD_RET_FAILURE;
64 }
Marcel Ziswilerb3860bf2019-02-01 16:01:08 +010065 if (!dev) {
66 printf("No SATA device found!\n");
67 return CMD_RET_FAILURE;
68 }
Simon Glassf19f1ec2017-07-29 11:35:13 -060069 rc = sata_scan(dev);
70 if (rc) {
71 printf("Cannot scan SATA device %d (err=%d)\n", devnum, rc);
72 return CMD_RET_FAILURE;
73 }
74
Simon Glassf19f1ec2017-07-29 11:35:13 -060075 return 0;
76#else
77 return sata_initialize() < 0 ? CMD_RET_FAILURE : CMD_RET_SUCCESS;
78#endif
79}
80
Kim Phillips088f1b12012-10-29 13:34:31 +000081static int do_sata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Dave Liuc7057b52008-03-26 22:49:44 +080082{
83 int rc = 0;
84
Simon Glassf19f1ec2017-07-29 11:35:13 -060085 if (argc >= 2) {
86 int devnum = 0;
Nikita Kiryanovd957c282014-11-21 12:47:24 +020087
Simon Glassf19f1ec2017-07-29 11:35:13 -060088 if (argc == 3)
89 devnum = (int)simple_strtoul(argv[2], NULL, 10);
90 if (!strcmp(argv[1], "stop"))
91 return sata_remove(devnum);
Nikita Kiryanovd957c282014-11-21 12:47:24 +020092
Simon Glassf19f1ec2017-07-29 11:35:13 -060093 if (!strcmp(argv[1], "init")) {
94 if (sata_curr_device != -1) {
95 rc = sata_remove(devnum);
96 if (rc)
97 return rc;
98 }
99
100 return sata_probe(devnum);
101 }
Nikita Kiryanovd957c282014-11-21 12:47:24 +0200102 }
Mike Frysingercf7e3992009-01-27 16:12:21 -0500103
104 /* If the user has not yet run `sata init`, do it now */
Tang Yuantianaa6ab902016-11-21 10:24:20 +0800105 if (sata_curr_device == -1) {
Simon Glassf19f1ec2017-07-29 11:35:13 -0600106 rc = sata_probe(0);
Troy Kisky7e83f1d2018-07-27 16:45:26 -0700107 if (rc)
108 return rc;
Simon Glassf19f1ec2017-07-29 11:35:13 -0600109 sata_curr_device = 0;
Tang Yuantianaa6ab902016-11-21 10:24:20 +0800110 }
Mike Frysingercf7e3992009-01-27 16:12:21 -0500111
Simon Glasse29e71e2017-07-29 11:34:55 -0600112 return blk_common_cmd(argc, argv, IF_TYPE_SATA, &sata_curr_device);
Dave Liuc7057b52008-03-26 22:49:44 +0800113}
114
115U_BOOT_CMD(
116 sata, 5, 1, do_sata,
Peter Tyser2fb26042009-01-27 18:03:12 -0600117 "SATA sub system",
Fabio Estevam85dafbb2013-02-20 14:35:35 +0000118 "init - init SATA sub system\n"
Simon Glassf19f1ec2017-07-29 11:35:13 -0600119 "sata stop [dev] - disable SATA sub system or device\n"
Dave Liuc7057b52008-03-26 22:49:44 +0800120 "sata info - show available SATA devices\n"
121 "sata device [dev] - show or set current device\n"
122 "sata part [dev] - print partition table\n"
123 "sata read addr blk# cnt\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200124 "sata write addr blk# cnt"
125);