blob: c507e9dbd80ff51d4988771f4b644bc97b5d8657 [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>
Simon Glasse6f6f9e2020-05-10 11:39:58 -060014#include <blk.h>
Simon Glassf19f1ec2017-07-29 11:35:13 -060015#include <dm.h>
Dave Liuc7057b52008-03-26 22:49:44 +080016#include <command.h>
17#include <part.h>
18#include <sata.h>
Simon Glassf19f1ec2017-07-29 11:35:13 -060019#include <dm/device-internal.h>
20#include <dm/uclass-internal.h>
Dave Liuc7057b52008-03-26 22:49:44 +080021
Kim Phillips088f1b12012-10-29 13:34:31 +000022static int sata_curr_device = -1;
Dave Liuc7057b52008-03-26 22:49:44 +080023
Simon Glassf19f1ec2017-07-29 11:35:13 -060024int sata_remove(int devnum)
25{
26#ifdef CONFIG_AHCI
27 struct udevice *dev;
28 int rc;
29
Peng Ma2d7818d2019-12-04 10:36:47 +000030 blk_unbind_all(IF_TYPE_SATA);
31
Simon Glassf19f1ec2017-07-29 11:35:13 -060032 rc = uclass_find_device(UCLASS_AHCI, devnum, &dev);
33 if (!rc && !dev)
34 rc = uclass_find_first_device(UCLASS_AHCI, &dev);
35 if (rc || !dev) {
36 printf("Cannot find SATA device %d (err=%d)\n", devnum, rc);
37 return CMD_RET_FAILURE;
38 }
39
40 rc = device_remove(dev, DM_REMOVE_NORMAL);
41 if (rc) {
42 printf("Cannot remove SATA device '%s' (err=%d)\n", dev->name,
43 rc);
44 return CMD_RET_FAILURE;
45 }
46
47 return 0;
48#else
49 return sata_stop();
50#endif
51}
52
53int sata_probe(int devnum)
54{
55#ifdef CONFIG_AHCI
56 struct udevice *dev;
Simon Glassf19f1ec2017-07-29 11:35:13 -060057 int rc;
58
59 rc = uclass_get_device(UCLASS_AHCI, devnum, &dev);
60 if (rc)
61 rc = uclass_find_first_device(UCLASS_AHCI, &dev);
62 if (rc) {
63 printf("Cannot probe SATA device %d (err=%d)\n", devnum, rc);
64 return CMD_RET_FAILURE;
65 }
Marcel Ziswilerb3860bf2019-02-01 16:01:08 +010066 if (!dev) {
67 printf("No SATA device found!\n");
68 return CMD_RET_FAILURE;
69 }
Simon Glassf19f1ec2017-07-29 11:35:13 -060070 rc = sata_scan(dev);
71 if (rc) {
72 printf("Cannot scan SATA device %d (err=%d)\n", devnum, rc);
73 return CMD_RET_FAILURE;
74 }
75
Simon Glassf19f1ec2017-07-29 11:35:13 -060076 return 0;
77#else
78 return sata_initialize() < 0 ? CMD_RET_FAILURE : CMD_RET_SUCCESS;
79#endif
80}
81
Kim Phillips088f1b12012-10-29 13:34:31 +000082static int do_sata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Dave Liuc7057b52008-03-26 22:49:44 +080083{
84 int rc = 0;
85
Simon Glassf19f1ec2017-07-29 11:35:13 -060086 if (argc >= 2) {
87 int devnum = 0;
Nikita Kiryanovd957c282014-11-21 12:47:24 +020088
Simon Glassf19f1ec2017-07-29 11:35:13 -060089 if (argc == 3)
90 devnum = (int)simple_strtoul(argv[2], NULL, 10);
91 if (!strcmp(argv[1], "stop"))
92 return sata_remove(devnum);
Nikita Kiryanovd957c282014-11-21 12:47:24 +020093
Simon Glassf19f1ec2017-07-29 11:35:13 -060094 if (!strcmp(argv[1], "init")) {
95 if (sata_curr_device != -1) {
96 rc = sata_remove(devnum);
97 if (rc)
98 return rc;
99 }
100
101 return sata_probe(devnum);
102 }
Nikita Kiryanovd957c282014-11-21 12:47:24 +0200103 }
Mike Frysingercf7e3992009-01-27 16:12:21 -0500104
105 /* If the user has not yet run `sata init`, do it now */
Tang Yuantianaa6ab902016-11-21 10:24:20 +0800106 if (sata_curr_device == -1) {
Simon Glassf19f1ec2017-07-29 11:35:13 -0600107 rc = sata_probe(0);
Troy Kisky7e83f1d2018-07-27 16:45:26 -0700108 if (rc)
109 return rc;
Simon Glassf19f1ec2017-07-29 11:35:13 -0600110 sata_curr_device = 0;
Tang Yuantianaa6ab902016-11-21 10:24:20 +0800111 }
Mike Frysingercf7e3992009-01-27 16:12:21 -0500112
Simon Glasse29e71e2017-07-29 11:34:55 -0600113 return blk_common_cmd(argc, argv, IF_TYPE_SATA, &sata_curr_device);
Dave Liuc7057b52008-03-26 22:49:44 +0800114}
115
116U_BOOT_CMD(
117 sata, 5, 1, do_sata,
Peter Tyser2fb26042009-01-27 18:03:12 -0600118 "SATA sub system",
Fabio Estevam85dafbb2013-02-20 14:35:35 +0000119 "init - init SATA sub system\n"
Simon Glassf19f1ec2017-07-29 11:35:13 -0600120 "sata stop [dev] - disable SATA sub system or device\n"
Dave Liuc7057b52008-03-26 22:49:44 +0800121 "sata info - show available SATA devices\n"
122 "sata device [dev] - show or set current device\n"
123 "sata part [dev] - print partition table\n"
124 "sata read addr blk# cnt\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200125 "sata write addr blk# cnt"
126);