]> Git Repo - J-u-boot.git/blame - cmd/sata.c
dm: ide: Separate the non-command code into its own file
[J-u-boot.git] / cmd / sata.c
CommitLineData
c7057b52
DL
1/*
2 * Copyright (C) 2000-2005, DENX Software Engineering
3 * Wolfgang Denk <[email protected]>
4 * Copyright (C) Procsys. All rights reserved.
5 * Mushtaq Khan <[email protected]>
6 * <[email protected]>
7 * Copyright (C) 2008 Freescale Semiconductor, Inc.
8 * Dave Liu <[email protected]>
9 *
1a459660 10 * SPDX-License-Identifier: GPL-2.0+
c7057b52
DL
11 */
12
13#include <common.h>
14#include <command.h>
15#include <part.h>
16#include <sata.h>
17
088f1b19 18static int sata_curr_device = -1;
4101f687 19struct blk_desc sata_dev_desc[CONFIG_SYS_SATA_MAX_DEVICE];
c7057b52 20
4101f687 21static unsigned long sata_bread(struct blk_desc *block_dev, lbaint_t start,
7c4213f6
SW
22 lbaint_t blkcnt, void *dst)
23{
bcce53d0 24 return sata_read(block_dev->devnum, start, blkcnt, dst);
7c4213f6
SW
25}
26
4101f687 27static unsigned long sata_bwrite(struct blk_desc *block_dev, lbaint_t start,
7c4213f6
SW
28 lbaint_t blkcnt, const void *buffer)
29{
bcce53d0 30 return sata_write(block_dev->devnum, start, blkcnt, buffer);
7c4213f6
SW
31}
32
cf7e399f 33int __sata_initialize(void)
c7057b52
DL
34{
35 int rc;
36 int i;
37
6d0f6bcf 38 for (i = 0; i < CONFIG_SYS_SATA_MAX_DEVICE; i++) {
4101f687 39 memset(&sata_dev_desc[i], 0, sizeof(struct blk_desc));
c7057b52 40 sata_dev_desc[i].if_type = IF_TYPE_SATA;
bcce53d0 41 sata_dev_desc[i].devnum = i;
c7057b52
DL
42 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;
0472fbfd 46 sata_dev_desc[i].log2blksz = LOG2(sata_dev_desc[i].blksz);
7c4213f6
SW
47 sata_dev_desc[i].block_read = sata_bread;
48 sata_dev_desc[i].block_write = sata_bwrite;
c7057b52
DL
49
50 rc = init_sata(i);
71cadda3
SB
51 if (!rc) {
52 rc = scan_sata(i);
53 if (!rc && (sata_dev_desc[i].lba > 0) &&
54 (sata_dev_desc[i].blksz > 0))
3e8bd469 55 part_init(&sata_dev_desc[i]);
71cadda3 56 }
c7057b52 57 }
569460eb 58 sata_curr_device = 0;
c7057b52
DL
59 return rc;
60}
cf7e399f 61int sata_initialize(void) __attribute__((weak,alias("__sata_initialize")));
c7057b52 62
d957c28a
NK
63__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
df3fc526 77#ifdef CONFIG_PARTITIONS
4101f687 78struct blk_desc *sata_get_dev(int dev)
c7057b52 79{
6d0f6bcf 80 return (dev < CONFIG_SYS_SATA_MAX_DEVICE) ? &sata_dev_desc[dev] : NULL;
c7057b52 81}
df3fc526 82#endif
c7057b52 83
088f1b19 84static int do_sata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
c7057b52
DL
85{
86 int rc = 0;
87
d957c28a
NK
88 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
cf7e399f 95 return sata_initialize();
d957c28a 96 }
cf7e399f
MF
97
98 /* If the user has not yet run `sata init`, do it now */
569460eb 99 if (sata_curr_device == -1)
cf7e399f
MF
100 if (sata_initialize())
101 return 1;
102
c7057b52
DL
103 switch (argc) {
104 case 0:
105 case 1:
4c12eeb8 106 return CMD_RET_USAGE;
c7057b52 107 case 2:
2765c4d1 108 if (strncmp(argv[1], "inf", 3) == 0) {
c7057b52 109 int i;
2765c4d1 110
c7057b52 111 putc('\n');
6d0f6bcf 112 for (i = 0; i < CONFIG_SYS_SATA_MAX_DEVICE; ++i) {
c7057b52
DL
113 if (sata_dev_desc[i].type == DEV_TYPE_UNKNOWN)
114 continue;
2765c4d1 115 printf("SATA device %d: ", i);
c7057b52
DL
116 dev_print(&sata_dev_desc[i]);
117 }
118 return 0;
2765c4d1
SG
119 } else if (strncmp(argv[1], "dev", 3) == 0) {
120 if (sata_curr_device < 0 ||
121 sata_curr_device >= CONFIG_SYS_SATA_MAX_DEVICE) {
c7057b52
DL
122 puts("\nno SATA devices available\n");
123 return 1;
124 }
569460eb
MF
125 printf("\nSATA device %d: ", sata_curr_device);
126 dev_print(&sata_dev_desc[sata_curr_device]);
c7057b52 127 return 0;
2765c4d1 128 } else if (strncmp(argv[1], "part", 4) == 0) {
c7057b52
DL
129 int dev, ok;
130
6d0f6bcf 131 for (ok = 0, dev = 0; dev < CONFIG_SYS_SATA_MAX_DEVICE; ++dev) {
c7057b52
DL
132 if (sata_dev_desc[dev].part_type != PART_TYPE_UNKNOWN) {
133 ++ok;
134 if (dev)
135 putc ('\n');
3e8bd469 136 part_print(&sata_dev_desc[dev]);
c7057b52
DL
137 }
138 }
139 if (!ok) {
140 puts("\nno SATA devices available\n");
141 rc ++;
142 }
143 return rc;
144 }
4c12eeb8 145 return CMD_RET_USAGE;
c7057b52
DL
146 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);
6d0f6bcf 151 if (dev >= CONFIG_SYS_SATA_MAX_DEVICE) {
c7057b52
DL
152 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
569460eb 160 sata_curr_device = dev;
c7057b52
DL
161
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) {
3e8bd469 169 part_print(&sata_dev_desc[dev]);
c7057b52
DL
170 } else {
171 printf("\nSATA device %d not available\n", dev);
172 rc = 1;
173 }
174 return rc;
175 }
4c12eeb8 176 return CMD_RET_USAGE;
c7057b52
DL
177
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 ... ",
569460eb 186 sata_curr_device, blk, cnt);
c7057b52 187
96baf368
EN
188 n = blk_dread(&sata_dev_desc[sata_curr_device],
189 blk, cnt, (u32 *)addr);
c7057b52
DL
190
191 /* flush cache after read */
569460eb 192 flush_cache(addr, cnt * sata_dev_desc[sata_curr_device].blksz);
c7057b52
DL
193
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 ... ",
569460eb 205 sata_curr_device, blk, cnt);
c7057b52 206
96baf368
EN
207 n = blk_dwrite(&sata_dev_desc[sata_curr_device],
208 blk, cnt, (u32 *)addr);
c7057b52
DL
209
210 printf("%ld blocks written: %s\n",
211 n, (n == cnt) ? "OK" : "ERROR");
212 return (n == cnt) ? 0 : 1;
213 } else {
4c12eeb8 214 return CMD_RET_USAGE;
c7057b52
DL
215 }
216
217 return rc;
218 }
219}
220
221U_BOOT_CMD(
222 sata, 5, 1, do_sata,
2fb2604d 223 "SATA sub system",
85dafbb8 224 "init - init SATA sub system\n"
d957c28a 225 "sata stop - disable SATA sub system\n"
c7057b52
DL
226 "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"
a89c33db
WD
230 "sata write addr blk# cnt"
231);
This page took 0.340289 seconds and 4 git commands to generate.