2 * YAFFS: Yet Another Flash File System. A NAND-flash specific file system.
4 * Copyright (C) 2002-2007 Aleph One Ltd.
5 * for Toby Churchill Ltd and Brightstar Engineering
7 * Created by Charles Manning <charles@aleph1.co.uk>
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
15 * yaffscfg.c The configuration for the "direct" use of yaffs.
17 * This is set up for u-boot.
19 * This version now uses the ydevconfig mechanism to set up partitions.
28 #include "yaffs_packedtags2.h"
29 #include "yaffs_mtdif.h"
30 #include "yaffs_mtdif2.h"
37 unsigned yaffs_trace_mask = 0x0; /* Disable logging */
38 static int yaffs_errno;
41 void yaffs_bug_fn(const char *fn, int n)
43 printf("yaffs bug at %s:%d\n", fn, n);
46 void *yaffsfs_malloc(size_t x)
51 void yaffsfs_free(void *x)
56 void yaffsfs_SetError(int err)
61 int yaffsfs_GetLastError(void)
67 int yaffsfs_GetError(void)
72 void yaffsfs_Lock(void)
76 void yaffsfs_Unlock(void)
80 __u32 yaffsfs_CurrentTime(void)
85 void *yaffs_malloc(size_t size)
90 void yaffs_free(void *ptr)
95 void yaffsfs_LocalInitialisation(void)
101 static const char *yaffs_file_type_str(struct yaffs_stat *stat)
103 switch (stat->st_mode & S_IFMT) {
104 case S_IFREG: return "regular file";
105 case S_IFDIR: return "directory";
106 case S_IFLNK: return "symlink";
107 default: return "unknown";
111 static const char *yaffs_error_str(void)
113 int error = yaffsfs_GetLastError();
119 case EBUSY: return "Busy";
120 case ENODEV: return "No such device";
121 case EINVAL: return "Invalid parameter";
122 case ENFILE: return "Too many open files";
123 case EBADF: return "Bad handle";
124 case EACCES: return "Wrong permissions";
125 case EXDEV: return "Not on same device";
126 case ENOENT: return "No such entry";
127 case ENOSPC: return "Device full";
128 case EROFS: return "Read only file system";
129 case ERANGE: return "Range error";
130 case ENOTEMPTY: return "Not empty";
131 case ENAMETOOLONG: return "Name too long";
132 case ENOMEM: return "Out of memory";
133 case EFAULT: return "Fault";
134 case EEXIST: return "Name exists";
135 case ENOTDIR: return "Not a directory";
136 case EISDIR: return "Not permitted on a directory";
137 case ELOOP: return "Symlink loop";
138 case 0: return "No error";
139 default: return "Unknown error";
143 extern nand_info_t nand_info[];
145 void cmd_yaffs_tracemask(unsigned set, unsigned mask)
148 yaffs_trace_mask = mask;
150 printf("yaffs trace mask: %08x\n", yaffs_trace_mask);
153 static int yaffs_regions_overlap(int a, int b, int x, int y)
155 return (a <= x && x <= b) ||
156 (a <= y && y <= b) ||
157 (x <= a && a <= y) ||
161 void cmd_yaffs_devconfig(char *_mp, int flash_dev,
162 int start_block, int end_block)
164 struct mtd_info *mtd = NULL;
165 struct yaffs_dev *dev = NULL;
166 struct yaffs_dev *chk;
168 struct nand_chip *chip;
170 dev = calloc(1, sizeof(*dev));
173 mtd = &nand_info[flash_dev];
177 printf("Failed to allocate memory\n");
181 if (flash_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
182 printf("Flash device invalid\n");
187 end_block = mtd->size / mtd->erasesize - 1;
189 if (end_block < start_block) {
190 printf("Bad start/end\n");
196 /* Check for any conflicts */
199 chk = yaffs_next_dev();
202 if (strcmp(chk->param.name, mp) == 0) {
203 printf("Mount point name already used\n");
206 if (chk->driver_context == mtd &&
207 yaffs_regions_overlap(
208 chk->param.start_block, chk->param.end_block,
209 start_block, end_block)) {
210 printf("Region overlaps with partition %s\n",
217 /* Seems sane, so configure */
218 memset(dev, 0, sizeof(*dev));
219 dev->param.name = mp;
220 dev->driver_context = mtd;
221 dev->param.start_block = start_block;
222 dev->param.end_block = end_block;
223 dev->param.chunks_per_block = mtd->erasesize / mtd->writesize;
224 dev->param.total_bytes_per_chunk = mtd->writesize;
225 dev->param.is_yaffs2 = 1;
226 dev->param.use_nand_ecc = 1;
227 dev->param.n_reserved_blocks = 5;
228 if (chip->ecc.layout->oobavail < sizeof(struct yaffs_packed_tags2))
229 dev->param.inband_tags = 1;
230 dev->param.n_caches = 10;
231 dev->param.write_chunk_tags_fn = nandmtd2_write_chunk_tags;
232 dev->param.read_chunk_tags_fn = nandmtd2_read_chunk_tags;
233 dev->param.erase_fn = nandmtd_EraseBlockInNAND;
234 dev->param.initialise_flash_fn = nandmtd_InitialiseNAND;
235 dev->param.bad_block_fn = nandmtd2_MarkNANDBlockBad;
236 dev->param.query_block_fn = nandmtd2_QueryNANDBlock;
238 yaffs_add_device(dev);
240 printf("Configures yaffs mount %s: dev %d start block %d, end block %d %s\n",
241 mp, flash_dev, start_block, end_block,
242 dev->param.inband_tags ? "using inband tags" : "");
250 void cmd_yaffs_dev_ls(void)
252 struct yaffs_dev *dev;
259 dev = yaffs_next_dev();
263 ((unsigned) dev->driver_context - (unsigned) nand_info)/
264 sizeof(nand_info[0]);
265 printf("%-10s %5d 0x%05x 0x%05x %s",
266 dev->param.name, flash_dev,
267 dev->param.start_block, dev->param.end_block,
268 dev->param.inband_tags ? "using inband tags, " : "");
270 free_space = yaffs_freespace(dev->param.name);
272 printf("not mounted\n");
274 printf("free 0x%x\n", free_space);
279 void make_a_file(char *yaffsName, char bval, int sizeOfFile)
283 unsigned char buffer[100];
285 outh = yaffs_open(yaffsName,
286 O_CREAT | O_RDWR | O_TRUNC,
289 printf("Error opening file: %d. %s\n", outh, yaffs_error_str());
293 memset(buffer, bval, 100);
301 yaffs_write(outh, buffer, i);
303 } while (sizeOfFile > 0);
309 void read_a_file(char *fn)
315 h = yaffs_open(fn, O_RDWR, 0);
317 printf("File not found\n");
321 while (yaffs_read(h, &b, 1) > 0) {
333 void cmd_yaffs_mount(char *mp)
335 int retval = yaffs_mount(mp);
337 printf("Error mounting %s, return value: %d, %s\n", mp,
338 yaffsfs_GetError(), yaffs_error_str());
342 void cmd_yaffs_umount(char *mp)
344 if (yaffs_unmount(mp) == -1)
345 printf("Error umounting %s, return value: %d, %s\n", mp,
346 yaffsfs_GetError(), yaffs_error_str());
349 void cmd_yaffs_write_file(char *yaffsName, char bval, int sizeOfFile)
351 make_a_file(yaffsName, bval, sizeOfFile);
355 void cmd_yaffs_read_file(char *fn)
361 void cmd_yaffs_mread_file(char *fn, char *addr)
368 printf("Copy %s to 0x%p... ", fn, addr);
369 h = yaffs_open(fn, O_RDWR, 0);
371 printf("File not found\n");
375 yaffs_read(h, addr, (int)s.st_size);
376 printf("\t[DONE]\n");
382 void cmd_yaffs_mwrite_file(char *fn, char *addr, int size)
386 outh = yaffs_open(fn, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
388 printf("Error opening file: %d, %s\n", outh, yaffs_error_str());
390 yaffs_write(outh, addr, size);
396 void cmd_yaffs_ls(const char *mountpt, int longlist)
400 struct yaffs_dirent *de;
401 struct yaffs_stat stat;
404 d = yaffs_opendir(mountpt);
407 printf("opendir failed, %s\n", yaffs_error_str());
411 for (i = 0; (de = yaffs_readdir(d)) != NULL; i++) {
413 sprintf(tempstr, "%s/%s", mountpt, de->d_name);
414 yaffs_lstat(tempstr, &stat);
415 printf("%-25s\t%7ld",
420 yaffs_file_type_str(&stat));
422 printf("%s\n", de->d_name);
430 void cmd_yaffs_mkdir(const char *dir)
432 int retval = yaffs_mkdir(dir, 0);
435 printf("yaffs_mkdir returning error: %d, %s\n",
436 retval, yaffs_error_str());
439 void cmd_yaffs_rmdir(const char *dir)
441 int retval = yaffs_rmdir(dir);
444 printf("yaffs_rmdir returning error: %d, %s\n",
445 retval, yaffs_error_str());
448 void cmd_yaffs_rm(const char *path)
450 int retval = yaffs_unlink(path);
453 printf("yaffs_unlink returning error: %d, %s\n",
454 retval, yaffs_error_str());
457 void cmd_yaffs_mv(const char *oldPath, const char *newPath)
459 int retval = yaffs_rename(newPath, oldPath);
462 printf("yaffs_unlink returning error: %d, %s\n",
463 retval, yaffs_error_str());