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>
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 int sata_curr_device = -1;
32 block_dev_desc_t sata_dev_desc[CONFIG_SYS_SATA_MAX_DEVICE];
34 int __sata_initialize(void)
39 for (i = 0; i < CONFIG_SYS_SATA_MAX_DEVICE; i++) {
40 memset(&sata_dev_desc[i], 0, sizeof(struct block_dev_desc));
41 sata_dev_desc[i].if_type = IF_TYPE_SATA;
42 sata_dev_desc[i].dev = i;
43 sata_dev_desc[i].part_type = PART_TYPE_UNKNOWN;
44 sata_dev_desc[i].type = DEV_TYPE_HARDDISK;
45 sata_dev_desc[i].lba = 0;
46 sata_dev_desc[i].blksz = 512;
47 sata_dev_desc[i].block_read = sata_read;
48 sata_dev_desc[i].block_write = sata_write;
52 if ((sata_dev_desc[i].lba > 0) && (sata_dev_desc[i].blksz > 0))
53 init_part(&sata_dev_desc[i]);
58 int sata_initialize(void) __attribute__((weak,alias("__sata_initialize")));
60 block_dev_desc_t *sata_get_dev(int dev)
62 return (dev < CONFIG_SYS_SATA_MAX_DEVICE) ? &sata_dev_desc[dev] : NULL;
65 int do_sata(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
69 if (argc == 2 && strcmp(argv[1], "init") == 0)
70 return sata_initialize();
72 /* If the user has not yet run `sata init`, do it now */
73 if (sata_curr_device == -1)
74 if (sata_initialize())
80 return cmd_usage(cmdtp);
82 if (strncmp(argv[1],"inf", 3) == 0) {
85 for (i = 0; i < CONFIG_SYS_SATA_MAX_DEVICE; ++i) {
86 if (sata_dev_desc[i].type == DEV_TYPE_UNKNOWN)
88 printf ("SATA device %d: ", i);
89 dev_print(&sata_dev_desc[i]);
92 } else if (strncmp(argv[1],"dev", 3) == 0) {
93 if ((sata_curr_device < 0) || (sata_curr_device >= CONFIG_SYS_SATA_MAX_DEVICE)) {
94 puts("\nno SATA devices available\n");
97 printf("\nSATA device %d: ", sata_curr_device);
98 dev_print(&sata_dev_desc[sata_curr_device]);
100 } else if (strncmp(argv[1],"part",4) == 0) {
103 for (ok = 0, dev = 0; dev < CONFIG_SYS_SATA_MAX_DEVICE; ++dev) {
104 if (sata_dev_desc[dev].part_type != PART_TYPE_UNKNOWN) {
108 print_part(&sata_dev_desc[dev]);
112 puts("\nno SATA devices available\n");
117 return cmd_usage(cmdtp);
119 if (strncmp(argv[1], "dev", 3) == 0) {
120 int dev = (int)simple_strtoul(argv[2], NULL, 10);
122 printf("\nSATA device %d: ", dev);
123 if (dev >= CONFIG_SYS_SATA_MAX_DEVICE) {
124 puts ("unknown device\n");
127 dev_print(&sata_dev_desc[dev]);
129 if (sata_dev_desc[dev].type == DEV_TYPE_UNKNOWN)
132 sata_curr_device = dev;
134 puts("... is now current device\n");
137 } else if (strncmp(argv[1], "part", 4) == 0) {
138 int dev = (int)simple_strtoul(argv[2], NULL, 10);
140 if (sata_dev_desc[dev].part_type != PART_TYPE_UNKNOWN) {
141 print_part(&sata_dev_desc[dev]);
143 printf("\nSATA device %d not available\n", dev);
148 return cmd_usage(cmdtp);
150 default: /* at least 4 args */
151 if (strcmp(argv[1], "read") == 0) {
152 ulong addr = simple_strtoul(argv[2], NULL, 16);
153 ulong cnt = simple_strtoul(argv[4], NULL, 16);
155 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
157 printf("\nSATA read: device %d block # %ld, count %ld ... ",
158 sata_curr_device, blk, cnt);
160 n = sata_read(sata_curr_device, blk, cnt, (u32 *)addr);
162 /* flush cache after read */
163 flush_cache(addr, cnt * sata_dev_desc[sata_curr_device].blksz);
165 printf("%ld blocks read: %s\n",
166 n, (n==cnt) ? "OK" : "ERROR");
167 return (n == cnt) ? 0 : 1;
168 } else if (strcmp(argv[1], "write") == 0) {
169 ulong addr = simple_strtoul(argv[2], NULL, 16);
170 ulong cnt = simple_strtoul(argv[4], NULL, 16);
173 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
175 printf("\nSATA write: device %d block # %ld, count %ld ... ",
176 sata_curr_device, blk, cnt);
178 n = sata_write(sata_curr_device, blk, cnt, (u32 *)addr);
180 printf("%ld blocks written: %s\n",
181 n, (n == cnt) ? "OK" : "ERROR");
182 return (n == cnt) ? 0 : 1;
184 return cmd_usage(cmdtp);
194 "sata init - init SATA sub system\n"
195 "sata info - show available SATA devices\n"
196 "sata device [dev] - show or set current device\n"
197 "sata part [dev] - print partition table\n"
198 "sata read addr blk# cnt\n"
199 "sata write addr blk# cnt"