blob: a73cc54bd3e97b7ad535a52fc153697e74e37e69 [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
29 rc = uclass_find_device(UCLASS_AHCI, devnum, &dev);
30 if (!rc && !dev)
31 rc = uclass_find_first_device(UCLASS_AHCI, &dev);
32 if (rc || !dev) {
33 printf("Cannot find SATA device %d (err=%d)\n", devnum, rc);
34 return CMD_RET_FAILURE;
35 }
36
37 rc = device_remove(dev, DM_REMOVE_NORMAL);
38 if (rc) {
39 printf("Cannot remove SATA device '%s' (err=%d)\n", dev->name,
40 rc);
41 return CMD_RET_FAILURE;
42 }
43
44 return 0;
45#else
46 return sata_stop();
47#endif
48}
49
50int sata_probe(int devnum)
51{
52#ifdef CONFIG_AHCI
53 struct udevice *dev;
Simon Glassf19f1ec2017-07-29 11:35:13 -060054 int rc;
55
56 rc = uclass_get_device(UCLASS_AHCI, devnum, &dev);
57 if (rc)
58 rc = uclass_find_first_device(UCLASS_AHCI, &dev);
59 if (rc) {
60 printf("Cannot probe SATA device %d (err=%d)\n", devnum, rc);
61 return CMD_RET_FAILURE;
62 }
Marcel Ziswilerb3860bf2019-02-01 16:01:08 +010063 if (!dev) {
64 printf("No SATA device found!\n");
65 return CMD_RET_FAILURE;
66 }
Simon Glassf19f1ec2017-07-29 11:35:13 -060067 rc = sata_scan(dev);
68 if (rc) {
69 printf("Cannot scan SATA device %d (err=%d)\n", devnum, rc);
70 return CMD_RET_FAILURE;
71 }
72
Simon Glassf19f1ec2017-07-29 11:35:13 -060073 return 0;
74#else
75 return sata_initialize() < 0 ? CMD_RET_FAILURE : CMD_RET_SUCCESS;
76#endif
77}
78
Kim Phillips088f1b12012-10-29 13:34:31 +000079static int do_sata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Dave Liuc7057b52008-03-26 22:49:44 +080080{
81 int rc = 0;
82
Simon Glassf19f1ec2017-07-29 11:35:13 -060083 if (argc >= 2) {
84 int devnum = 0;
Nikita Kiryanovd957c282014-11-21 12:47:24 +020085
Simon Glassf19f1ec2017-07-29 11:35:13 -060086 if (argc == 3)
87 devnum = (int)simple_strtoul(argv[2], NULL, 10);
88 if (!strcmp(argv[1], "stop"))
89 return sata_remove(devnum);
Nikita Kiryanovd957c282014-11-21 12:47:24 +020090
Simon Glassf19f1ec2017-07-29 11:35:13 -060091 if (!strcmp(argv[1], "init")) {
92 if (sata_curr_device != -1) {
93 rc = sata_remove(devnum);
94 if (rc)
95 return rc;
96 }
97
98 return sata_probe(devnum);
99 }
Nikita Kiryanovd957c282014-11-21 12:47:24 +0200100 }
Mike Frysingercf7e3992009-01-27 16:12:21 -0500101
102 /* If the user has not yet run `sata init`, do it now */
Tang Yuantianaa6ab902016-11-21 10:24:20 +0800103 if (sata_curr_device == -1) {
Simon Glassf19f1ec2017-07-29 11:35:13 -0600104 rc = sata_probe(0);
Troy Kisky7e83f1d2018-07-27 16:45:26 -0700105 if (rc)
106 return rc;
Simon Glassf19f1ec2017-07-29 11:35:13 -0600107 sata_curr_device = 0;
Tang Yuantianaa6ab902016-11-21 10:24:20 +0800108 }
Mike Frysingercf7e3992009-01-27 16:12:21 -0500109
Simon Glasse29e71e2017-07-29 11:34:55 -0600110 return blk_common_cmd(argc, argv, IF_TYPE_SATA, &sata_curr_device);
Dave Liuc7057b52008-03-26 22:49:44 +0800111}
112
113U_BOOT_CMD(
114 sata, 5, 1, do_sata,
Peter Tyser2fb26042009-01-27 18:03:12 -0600115 "SATA sub system",
Fabio Estevam85dafbb2013-02-20 14:35:35 +0000116 "init - init SATA sub system\n"
Simon Glassf19f1ec2017-07-29 11:35:13 -0600117 "sata stop [dev] - disable SATA sub system or device\n"
Dave Liuc7057b52008-03-26 22:49:44 +0800118 "sata info - show available SATA devices\n"
119 "sata device [dev] - show or set current device\n"
120 "sata part [dev] - print partition table\n"
121 "sata read addr blk# cnt\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200122 "sata write addr blk# cnt"
123);