blob: b1a64d99699d78f4808229d4cc4e828aa5e7451d [file] [log] [blame]
Dave Liu76596ba2008-03-26 22:49:44 +08001/*
2 * Copyright (C) 2000-2005, DENX Software Engineering
3 * Wolfgang Denk <wd@denx.de>
4 * Copyright (C) Procsys. All rights reserved.
5 * Mushtaq Khan <mushtaq_k@procsys.com>
6 * <mushtaqk_921@yahoo.co.in>
7 * Copyright (C) 2008 Freescale Semiconductor, Inc.
8 * Dave Liu <daveliu@freescale.com>
9 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Dave Liu76596ba2008-03-26 22:49:44 +080011 */
12
13#include <common.h>
14#include <command.h>
15#include <part.h>
16#include <sata.h>
17
Kim Phillipsdc00a682012-10-29 13:34:31 +000018static int sata_curr_device = -1;
Simon Glasse3394752016-02-29 15:25:34 -070019struct blk_desc sata_dev_desc[CONFIG_SYS_SATA_MAX_DEVICE];
Dave Liu76596ba2008-03-26 22:49:44 +080020
Simon Glasse3394752016-02-29 15:25:34 -070021static unsigned long sata_bread(struct blk_desc *block_dev, lbaint_t start,
Stephen Warrene73f2962015-12-07 11:38:48 -070022 lbaint_t blkcnt, void *dst)
23{
Simon Glass2f26fff2016-02-29 15:25:51 -070024 return sata_read(block_dev->devnum, start, blkcnt, dst);
Stephen Warrene73f2962015-12-07 11:38:48 -070025}
26
Simon Glasse3394752016-02-29 15:25:34 -070027static unsigned long sata_bwrite(struct blk_desc *block_dev, lbaint_t start,
Stephen Warrene73f2962015-12-07 11:38:48 -070028 lbaint_t blkcnt, const void *buffer)
29{
Simon Glass2f26fff2016-02-29 15:25:51 -070030 return sata_write(block_dev->devnum, start, blkcnt, buffer);
Stephen Warrene73f2962015-12-07 11:38:48 -070031}
32
Mike Frysingere66dc082009-01-27 16:12:21 -050033int __sata_initialize(void)
Dave Liu76596ba2008-03-26 22:49:44 +080034{
35 int rc;
36 int i;
37
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020038 for (i = 0; i < CONFIG_SYS_SATA_MAX_DEVICE; i++) {
Simon Glasse3394752016-02-29 15:25:34 -070039 memset(&sata_dev_desc[i], 0, sizeof(struct blk_desc));
Dave Liu76596ba2008-03-26 22:49:44 +080040 sata_dev_desc[i].if_type = IF_TYPE_SATA;
Simon Glass2f26fff2016-02-29 15:25:51 -070041 sata_dev_desc[i].devnum = i;
Dave Liu76596ba2008-03-26 22:49:44 +080042 sata_dev_desc[i].part_type = PART_TYPE_UNKNOWN;
43 sata_dev_desc[i].type = DEV_TYPE_HARDDISK;
44 sata_dev_desc[i].lba = 0;
45 sata_dev_desc[i].blksz = 512;
Egbert Eich2eec2ab2013-04-09 21:11:56 +000046 sata_dev_desc[i].log2blksz = LOG2(sata_dev_desc[i].blksz);
Stephen Warrene73f2962015-12-07 11:38:48 -070047 sata_dev_desc[i].block_read = sata_bread;
48 sata_dev_desc[i].block_write = sata_bwrite;
Dave Liu76596ba2008-03-26 22:49:44 +080049
50 rc = init_sata(i);
Stefano Babicf889c332012-02-22 00:24:37 +000051 if (!rc) {
52 rc = scan_sata(i);
53 if (!rc && (sata_dev_desc[i].lba > 0) &&
54 (sata_dev_desc[i].blksz > 0))
Simon Glassb89a8442016-02-29 15:25:48 -070055 part_init(&sata_dev_desc[i]);
Stefano Babicf889c332012-02-22 00:24:37 +000056 }
Dave Liu76596ba2008-03-26 22:49:44 +080057 }
Mike Frysingerb6ade252009-06-14 21:35:22 -040058 sata_curr_device = 0;
Dave Liu76596ba2008-03-26 22:49:44 +080059 return rc;
60}
Mike Frysingere66dc082009-01-27 16:12:21 -050061int sata_initialize(void) __attribute__((weak,alias("__sata_initialize")));
Dave Liu76596ba2008-03-26 22:49:44 +080062
Nikita Kiryanov44fd1f92014-11-21 12:47:24 +020063__weak int __sata_stop(void)
64{
65 int i, err = 0;
66
67 for (i = 0; i < CONFIG_SYS_SATA_MAX_DEVICE; i++)
68 err |= reset_sata(i);
69
70 if (err)
71 printf("Could not reset some SATA devices\n");
72
73 return err;
74}
75int sata_stop(void) __attribute__((weak, alias("__sata_stop")));
76
Matthew McClintock6252b4f2011-05-24 05:31:19 +000077#ifdef CONFIG_PARTITIONS
Simon Glasse3394752016-02-29 15:25:34 -070078struct blk_desc *sata_get_dev(int dev)
Dave Liu76596ba2008-03-26 22:49:44 +080079{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020080 return (dev < CONFIG_SYS_SATA_MAX_DEVICE) ? &sata_dev_desc[dev] : NULL;
Dave Liu76596ba2008-03-26 22:49:44 +080081}
Matthew McClintock6252b4f2011-05-24 05:31:19 +000082#endif
Dave Liu76596ba2008-03-26 22:49:44 +080083
Kim Phillipsdc00a682012-10-29 13:34:31 +000084static int do_sata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Dave Liu76596ba2008-03-26 22:49:44 +080085{
86 int rc = 0;
87
Nikita Kiryanov44fd1f92014-11-21 12:47:24 +020088 if (argc == 2 && strcmp(argv[1], "stop") == 0)
89 return sata_stop();
90
91 if (argc == 2 && strcmp(argv[1], "init") == 0) {
92 if (sata_curr_device != -1)
93 sata_stop();
94
Mike Frysingere66dc082009-01-27 16:12:21 -050095 return sata_initialize();
Nikita Kiryanov44fd1f92014-11-21 12:47:24 +020096 }
Mike Frysingere66dc082009-01-27 16:12:21 -050097
98 /* If the user has not yet run `sata init`, do it now */
Mike Frysingerb6ade252009-06-14 21:35:22 -040099 if (sata_curr_device == -1)
Mike Frysingere66dc082009-01-27 16:12:21 -0500100 if (sata_initialize())
101 return 1;
102
Dave Liu76596ba2008-03-26 22:49:44 +0800103 switch (argc) {
104 case 0:
105 case 1:
Simon Glassa06dfc72011-12-10 08:44:01 +0000106 return CMD_RET_USAGE;
Dave Liu76596ba2008-03-26 22:49:44 +0800107 case 2:
Simon Glass9475e7e2016-05-01 11:36:01 -0600108 if (strncmp(argv[1], "inf", 3) == 0) {
Dave Liu76596ba2008-03-26 22:49:44 +0800109 int i;
Simon Glass9475e7e2016-05-01 11:36:01 -0600110
Dave Liu76596ba2008-03-26 22:49:44 +0800111 putc('\n');
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200112 for (i = 0; i < CONFIG_SYS_SATA_MAX_DEVICE; ++i) {
Dave Liu76596ba2008-03-26 22:49:44 +0800113 if (sata_dev_desc[i].type == DEV_TYPE_UNKNOWN)
114 continue;
Simon Glass9475e7e2016-05-01 11:36:01 -0600115 printf("SATA device %d: ", i);
Dave Liu76596ba2008-03-26 22:49:44 +0800116 dev_print(&sata_dev_desc[i]);
117 }
118 return 0;
Simon Glass9475e7e2016-05-01 11:36:01 -0600119 } else if (strncmp(argv[1], "dev", 3) == 0) {
120 if (sata_curr_device < 0 ||
121 sata_curr_device >= CONFIG_SYS_SATA_MAX_DEVICE) {
Dave Liu76596ba2008-03-26 22:49:44 +0800122 puts("\nno SATA devices available\n");
123 return 1;
124 }
Mike Frysingerb6ade252009-06-14 21:35:22 -0400125 printf("\nSATA device %d: ", sata_curr_device);
126 dev_print(&sata_dev_desc[sata_curr_device]);
Dave Liu76596ba2008-03-26 22:49:44 +0800127 return 0;
Simon Glass9475e7e2016-05-01 11:36:01 -0600128 } else if (strncmp(argv[1], "part", 4) == 0) {
Dave Liu76596ba2008-03-26 22:49:44 +0800129 int dev, ok;
130
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200131 for (ok = 0, dev = 0; dev < CONFIG_SYS_SATA_MAX_DEVICE; ++dev) {
Dave Liu76596ba2008-03-26 22:49:44 +0800132 if (sata_dev_desc[dev].part_type != PART_TYPE_UNKNOWN) {
133 ++ok;
134 if (dev)
135 putc ('\n');
Simon Glassb89a8442016-02-29 15:25:48 -0700136 part_print(&sata_dev_desc[dev]);
Dave Liu76596ba2008-03-26 22:49:44 +0800137 }
138 }
139 if (!ok) {
140 puts("\nno SATA devices available\n");
141 rc ++;
142 }
143 return rc;
144 }
Simon Glassa06dfc72011-12-10 08:44:01 +0000145 return CMD_RET_USAGE;
Dave Liu76596ba2008-03-26 22:49:44 +0800146 case 3:
147 if (strncmp(argv[1], "dev", 3) == 0) {
148 int dev = (int)simple_strtoul(argv[2], NULL, 10);
149
150 printf("\nSATA device %d: ", dev);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200151 if (dev >= CONFIG_SYS_SATA_MAX_DEVICE) {
Dave Liu76596ba2008-03-26 22:49:44 +0800152 puts ("unknown device\n");
153 return 1;
154 }
155 dev_print(&sata_dev_desc[dev]);
156
157 if (sata_dev_desc[dev].type == DEV_TYPE_UNKNOWN)
158 return 1;
159
Mike Frysingerb6ade252009-06-14 21:35:22 -0400160 sata_curr_device = dev;
Dave Liu76596ba2008-03-26 22:49:44 +0800161
162 puts("... is now current device\n");
163
164 return 0;
165 } else if (strncmp(argv[1], "part", 4) == 0) {
166 int dev = (int)simple_strtoul(argv[2], NULL, 10);
167
168 if (sata_dev_desc[dev].part_type != PART_TYPE_UNKNOWN) {
Simon Glassb89a8442016-02-29 15:25:48 -0700169 part_print(&sata_dev_desc[dev]);
Dave Liu76596ba2008-03-26 22:49:44 +0800170 } else {
171 printf("\nSATA device %d not available\n", dev);
172 rc = 1;
173 }
174 return rc;
175 }
Simon Glassa06dfc72011-12-10 08:44:01 +0000176 return CMD_RET_USAGE;
Dave Liu76596ba2008-03-26 22:49:44 +0800177
178 default: /* at least 4 args */
179 if (strcmp(argv[1], "read") == 0) {
180 ulong addr = simple_strtoul(argv[2], NULL, 16);
181 ulong cnt = simple_strtoul(argv[4], NULL, 16);
182 ulong n;
183 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
184
185 printf("\nSATA read: device %d block # %ld, count %ld ... ",
Mike Frysingerb6ade252009-06-14 21:35:22 -0400186 sata_curr_device, blk, cnt);
Dave Liu76596ba2008-03-26 22:49:44 +0800187
Eric Nelson544c7b52016-03-27 12:00:15 -0700188 n = blk_dread(&sata_dev_desc[sata_curr_device],
189 blk, cnt, (u32 *)addr);
Dave Liu76596ba2008-03-26 22:49:44 +0800190
191 /* flush cache after read */
Mike Frysingerb6ade252009-06-14 21:35:22 -0400192 flush_cache(addr, cnt * sata_dev_desc[sata_curr_device].blksz);
Dave Liu76596ba2008-03-26 22:49:44 +0800193
194 printf("%ld blocks read: %s\n",
195 n, (n==cnt) ? "OK" : "ERROR");
196 return (n == cnt) ? 0 : 1;
197 } else if (strcmp(argv[1], "write") == 0) {
198 ulong addr = simple_strtoul(argv[2], NULL, 16);
199 ulong cnt = simple_strtoul(argv[4], NULL, 16);
200 ulong n;
201
202 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
203
204 printf("\nSATA write: device %d block # %ld, count %ld ... ",
Mike Frysingerb6ade252009-06-14 21:35:22 -0400205 sata_curr_device, blk, cnt);
Dave Liu76596ba2008-03-26 22:49:44 +0800206
Eric Nelson544c7b52016-03-27 12:00:15 -0700207 n = blk_dwrite(&sata_dev_desc[sata_curr_device],
208 blk, cnt, (u32 *)addr);
Dave Liu76596ba2008-03-26 22:49:44 +0800209
210 printf("%ld blocks written: %s\n",
211 n, (n == cnt) ? "OK" : "ERROR");
212 return (n == cnt) ? 0 : 1;
213 } else {
Simon Glassa06dfc72011-12-10 08:44:01 +0000214 return CMD_RET_USAGE;
Dave Liu76596ba2008-03-26 22:49:44 +0800215 }
216
217 return rc;
218 }
219}
220
221U_BOOT_CMD(
222 sata, 5, 1, do_sata,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600223 "SATA sub system",
Fabio Estevam6be8b832013-02-20 14:35:35 +0000224 "init - init SATA sub system\n"
Nikita Kiryanov44fd1f92014-11-21 12:47:24 +0200225 "sata stop - disable SATA sub system\n"
Dave Liu76596ba2008-03-26 22:49:44 +0800226 "sata info - show available SATA devices\n"
227 "sata device [dev] - show or set current device\n"
228 "sata part [dev] - print partition table\n"
229 "sata read addr blk# cnt\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +0200230 "sata write addr blk# cnt"
231);