1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2011 The Chromium OS Authors. All rights reserved.
14 static int do_cbfs_init(struct cmd_tbl
*cmdtp
, int flag
, int argc
,
17 uintptr_t end_of_rom
= 0xffffffff;
21 printf("usage: cbfsls [end of rom]>\n");
25 end_of_rom
= hextoul(argv
[1], &ep
);
27 puts("\n** Invalid end of ROM **\n");
31 if (file_cbfs_init(end_of_rom
)) {
32 printf("%s.\n", file_cbfs_error());
39 cbfsinit
, 2, 0, do_cbfs_init
,
40 "initialize the cbfs driver",
42 " - Initialize the cbfs driver. The optional 'end of rom'\n"
43 " parameter specifies where the end of the ROM is that the\n"
44 " CBFS is in. It defaults to 0xFFFFFFFF\n"
47 static int do_cbfs_fsload(struct cmd_tbl
*cmdtp
, int flag
, int argc
,
50 const struct cbfs_cachenode
*file
;
56 printf("usage: cbfsload <addr> <filename> [bytes]\n");
60 /* parse offset and count */
61 offset
= hextoul(argv
[1], NULL
);
63 count
= hextoul(argv
[3], NULL
);
67 file
= file_cbfs_find(argv
[2]);
69 if (cbfs_get_result() == CBFS_FILE_NOT_FOUND
)
70 printf("%s: %s\n", file_cbfs_error(), argv
[2]);
72 printf("%s.\n", file_cbfs_error());
76 printf("reading %s\n", file_cbfs_name(file
));
78 size
= file_cbfs_read(file
, (void *)offset
, count
);
80 printf("\n%ld bytes read\n", size
);
82 env_set_hex("filesize", size
);
88 cbfsload
, 4, 0, do_cbfs_fsload
,
89 "load binary file from a cbfs filesystem",
90 "<addr> <filename> [bytes]\n"
91 " - load binary file 'filename' from the cbfs to address 'addr'\n"
94 static int do_cbfs_ls(struct cmd_tbl
*cmdtp
, int flag
, int argc
,
97 const struct cbfs_cachenode
*file
= file_cbfs_get_first();
101 printf("%s.\n", file_cbfs_error());
105 printf(" size type name\n");
106 printf("------------------------------------------\n");
108 int type
= file_cbfs_type(file
);
109 char *type_name
= NULL
;
110 const char *filename
= file_cbfs_name(file
);
112 printf(" %8d", file_cbfs_size(file
));
115 case CBFS_TYPE_BOOTBLOCK
:
116 type_name
= "bootblock";
118 case CBFS_TYPE_CBFSHEADER
:
119 type_name
= "cbfs header";
121 case CBFS_TYPE_LEGACY_STAGE
:
124 case CBFS_TYPE_PAYLOAD
:
125 type_name
= "payload";
130 case CBFS_TYPE_OPTIONROM
:
131 type_name
= "option rom";
133 case CBFS_TYPE_BOOTSPLASH
:
134 type_name
= "boot splash";
145 case CBFS_TYPE_MICROCODE
:
146 type_name
= "microcode";
160 case CBFS_TYPE_STRUCT
:
161 type_name
= "struct";
163 case CBFS_TYPE_CMOS_DEFAULT
:
164 type_name
= "cmos default";
169 case CBFS_TYPE_MRC_CACHE
:
170 type_name
= "mrc cache";
172 case CBFS_TYPE_CMOS_LAYOUT
:
173 type_name
= "cmos layout";
181 printf(" %16s", type_name
);
183 printf(" %16d", type
);
186 printf(" %s\n", filename
);
188 printf(" %s\n", "(empty)");
189 file_cbfs_get_next(&file
);
193 printf("\n%d file(s)\n\n", files
);
198 cbfsls
, 1, 1, do_cbfs_ls
,
200 " - list the files in the cbfs\n"
203 static int do_cbfs_fsinfo(struct cmd_tbl
*cmdtp
, int flag
, int argc
,
206 const struct cbfs_header
*header
= file_cbfs_get_header();
209 printf("%s.\n", file_cbfs_error());
214 printf("CBFS version: %#x\n", header
->version
);
215 printf("ROM size: %#x\n", header
->rom_size
);
216 printf("Boot block size: %#x\n", header
->boot_block_size
);
217 printf("CBFS size: %#x\n",
218 header
->rom_size
- header
->boot_block_size
- header
->offset
);
219 printf("Alignment: %d\n", header
->align
);
220 printf("Offset: %#x\n", header
->offset
);
227 cbfsinfo
, 1, 1, do_cbfs_fsinfo
,
228 "print information about filesystem",
229 " - print information about the cbfs filesystem\n"