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,
32 block_dev_desc_t sata_dev_desc[CFG_SATA_MAX_DEVICE];
34 int sata_initialize(void)
39 for (i = 0; i < CFG_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]);
59 block_dev_desc_t *sata_get_dev(int dev)
61 return (dev < CFG_SATA_MAX_DEVICE) ? &sata_dev_desc[dev] : NULL;
64 int do_sata(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
71 printf("Usage:\n%s\n", cmdtp->usage);
74 if (strncmp(argv[1],"inf", 3) == 0) {
77 for (i = 0; i < CFG_SATA_MAX_DEVICE; ++i) {
78 if (sata_dev_desc[i].type == DEV_TYPE_UNKNOWN)
80 printf ("SATA device %d: ", i);
81 dev_print(&sata_dev_desc[i]);
84 } else if (strncmp(argv[1],"dev", 3) == 0) {
85 if ((curr_device < 0) || (curr_device >= CFG_SATA_MAX_DEVICE)) {
86 puts("\nno SATA devices available\n");
89 printf("\nSATA device %d: ", curr_device);
90 dev_print(&sata_dev_desc[curr_device]);
92 } else if (strncmp(argv[1],"part",4) == 0) {
95 for (ok = 0, dev = 0; dev < CFG_SATA_MAX_DEVICE; ++dev) {
96 if (sata_dev_desc[dev].part_type != PART_TYPE_UNKNOWN) {
100 print_part(&sata_dev_desc[dev]);
104 puts("\nno SATA devices available\n");
109 printf("Usage:\n%s\n", cmdtp->usage);
112 if (strncmp(argv[1], "dev", 3) == 0) {
113 int dev = (int)simple_strtoul(argv[2], NULL, 10);
115 printf("\nSATA device %d: ", dev);
116 if (dev >= CFG_SATA_MAX_DEVICE) {
117 puts ("unknown device\n");
120 dev_print(&sata_dev_desc[dev]);
122 if (sata_dev_desc[dev].type == DEV_TYPE_UNKNOWN)
127 puts("... is now current device\n");
130 } else if (strncmp(argv[1], "part", 4) == 0) {
131 int dev = (int)simple_strtoul(argv[2], NULL, 10);
133 if (sata_dev_desc[dev].part_type != PART_TYPE_UNKNOWN) {
134 print_part(&sata_dev_desc[dev]);
136 printf("\nSATA device %d not available\n", dev);
141 printf ("Usage:\n%s\n", cmdtp->usage);
144 default: /* at least 4 args */
145 if (strcmp(argv[1], "read") == 0) {
146 ulong addr = simple_strtoul(argv[2], NULL, 16);
147 ulong cnt = simple_strtoul(argv[4], NULL, 16);
149 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
151 printf("\nSATA read: device %d block # %ld, count %ld ... ",
152 curr_device, blk, cnt);
154 n = sata_read(curr_device, blk, cnt, (u32 *)addr);
156 /* flush cache after read */
157 flush_cache(addr, cnt * sata_dev_desc[curr_device].blksz);
159 printf("%ld blocks read: %s\n",
160 n, (n==cnt) ? "OK" : "ERROR");
161 return (n == cnt) ? 0 : 1;
162 } else if (strcmp(argv[1], "write") == 0) {
163 ulong addr = simple_strtoul(argv[2], NULL, 16);
164 ulong cnt = simple_strtoul(argv[4], NULL, 16);
167 lbaint_t blk = simple_strtoul(argv[3], NULL, 16);
169 printf("\nSATA write: device %d block # %ld, count %ld ... ",
170 curr_device, blk, cnt);
172 n = sata_write(curr_device, blk, cnt, (u32 *)addr);
174 printf("%ld blocks written: %s\n",
175 n, (n == cnt) ? "OK" : "ERROR");
176 return (n == cnt) ? 0 : 1;
178 printf("Usage:\n%s\n", cmdtp->usage);
188 "sata - SATA sub system\n",
189 "sata info - show available SATA devices\n"
190 "sata device [dev] - show or set current device\n"
191 "sata part [dev] - print partition table\n"
192 "sata read addr blk# cnt\n"
193 "sata write addr blk# cnt\n");