blob: 76da1906b7fb412d78f8df0b9879adb2fb3db7d5 [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
Simon Glass09140112020-05-10 11:40:03 -060082static int do_sata(struct cmd_tbl *cmdtp, int flag, int argc,
83 char *const argv[])
Dave Liuc7057b52008-03-26 22:49:44 +080084{
85 int rc = 0;
86
Simon Glassf19f1ec2017-07-29 11:35:13 -060087 if (argc >= 2) {
88 int devnum = 0;
Nikita Kiryanovd957c282014-11-21 12:47:24 +020089
Simon Glassf19f1ec2017-07-29 11:35:13 -060090 if (argc == 3)
Simon Glass0b1284e2021-07-24 09:03:30 -060091 devnum = (int)dectoul(argv[2], NULL);
Simon Glassf19f1ec2017-07-29 11:35:13 -060092 if (!strcmp(argv[1], "stop"))
93 return sata_remove(devnum);
Nikita Kiryanovd957c282014-11-21 12:47:24 +020094
Simon Glassf19f1ec2017-07-29 11:35:13 -060095 if (!strcmp(argv[1], "init")) {
96 if (sata_curr_device != -1) {
97 rc = sata_remove(devnum);
98 if (rc)
99 return rc;
100 }
101
102 return sata_probe(devnum);
103 }
Nikita Kiryanovd957c282014-11-21 12:47:24 +0200104 }
Mike Frysingercf7e3992009-01-27 16:12:21 -0500105
106 /* If the user has not yet run `sata init`, do it now */
Tang Yuantianaa6ab902016-11-21 10:24:20 +0800107 if (sata_curr_device == -1) {
Simon Glassf19f1ec2017-07-29 11:35:13 -0600108 rc = sata_probe(0);
Troy Kisky7e83f1d2018-07-27 16:45:26 -0700109 if (rc)
110 return rc;
Simon Glassf19f1ec2017-07-29 11:35:13 -0600111 sata_curr_device = 0;
Tang Yuantianaa6ab902016-11-21 10:24:20 +0800112 }
Mike Frysingercf7e3992009-01-27 16:12:21 -0500113
Simon Glasse29e71e2017-07-29 11:34:55 -0600114 return blk_common_cmd(argc, argv, IF_TYPE_SATA, &sata_curr_device);
Dave Liuc7057b52008-03-26 22:49:44 +0800115}
116
117U_BOOT_CMD(
118 sata, 5, 1, do_sata,
Peter Tyser2fb26042009-01-27 18:03:12 -0600119 "SATA sub system",
Fabio Estevam85dafbb2013-02-20 14:35:35 +0000120 "init - init SATA sub system\n"
Simon Glassf19f1ec2017-07-29 11:35:13 -0600121 "sata stop [dev] - disable SATA sub system or device\n"
Dave Liuc7057b52008-03-26 22:49:44 +0800122 "sata info - show available SATA devices\n"
123 "sata device [dev] - show or set current device\n"
124 "sata part [dev] - print partition table\n"
125 "sata read addr blk# cnt\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200126 "sata write addr blk# cnt"
127);