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.
29 #include "yaffs_packedtags2.h"
30 #include "yaffs_mtdif.h"
31 #include "yaffs_mtdif2.h"
38 unsigned yaffs_trace_mask = 0x0; /* Disable logging */
39 static int yaffs_errno;
42 void yaffs_bug_fn(const char *fn, int n)
44 printf("yaffs bug at %s:%d\n", fn, n);
47 void *yaffsfs_malloc(size_t x)
52 void yaffsfs_free(void *x)
57 void yaffsfs_SetError(int err)
62 int yaffsfs_GetLastError(void)
68 int yaffsfs_GetError(void)
73 void yaffsfs_Lock(void)
77 void yaffsfs_Unlock(void)
81 __u32 yaffsfs_CurrentTime(void)
86 void *yaffs_malloc(size_t size)
91 void yaffs_free(void *ptr)
96 void yaffsfs_LocalInitialisation(void)
102 static const char *yaffs_file_type_str(struct yaffs_stat *stat)
104 switch (stat->st_mode & S_IFMT) {
105 case S_IFREG: return "regular file";
106 case S_IFDIR: return "directory";
107 case S_IFLNK: return "symlink";
108 default: return "unknown";
112 static const char *yaffs_error_str(void)
114 int error = yaffsfs_GetLastError();
120 case EBUSY: return "Busy";
121 case ENODEV: return "No such device";
122 case EINVAL: return "Invalid parameter";
123 case ENFILE: return "Too many open files";
124 case EBADF: return "Bad handle";
125 case EACCES: return "Wrong permissions";
126 case EXDEV: return "Not on same device";
127 case ENOENT: return "No such entry";
128 case ENOSPC: return "Device full";
129 case EROFS: return "Read only file system";
130 case ERANGE: return "Range error";
131 case ENOTEMPTY: return "Not empty";
132 case ENAMETOOLONG: return "Name too long";
133 case ENOMEM: return "Out of memory";
134 case EFAULT: return "Fault";
135 case EEXIST: return "Name exists";
136 case ENOTDIR: return "Not a directory";
137 case EISDIR: return "Not permitted on a directory";
138 case ELOOP: return "Symlink loop";
139 case 0: return "No error";
140 default: return "Unknown error";
144 void cmd_yaffs_tracemask(unsigned set, unsigned mask)
147 yaffs_trace_mask = mask;
149 printf("yaffs trace mask: %08x\n", yaffs_trace_mask);
152 static int yaffs_regions_overlap(int a, int b, int x, int y)
154 return (a <= x && x <= b) ||
155 (a <= y && y <= b) ||
156 (x <= a && a <= y) ||
160 void cmd_yaffs_devconfig(char *_mp, int flash_dev,
161 int start_block, int end_block)
163 struct mtd_info *mtd = NULL;
164 struct yaffs_dev *dev = NULL;
165 struct yaffs_dev *chk;
167 struct nand_chip *chip;
169 dev = calloc(1, sizeof(*dev));
172 mtd = nand_info[flash_dev];
176 printf("Failed to allocate memory\n");
180 if (flash_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
181 printf("Flash device invalid\n");
186 end_block = lldiv(mtd->size, mtd->erasesize - 1);
188 if (end_block < start_block) {
189 printf("Bad start/end\n");
193 chip = mtd_to_nand(mtd);
195 /* Check for any conflicts */
198 chk = yaffs_next_dev();
201 if (strcmp(chk->param.name, mp) == 0) {
202 printf("Mount point name already used\n");
205 if (chk->driver_context == mtd &&
206 yaffs_regions_overlap(
207 chk->param.start_block, chk->param.end_block,
208 start_block, end_block)) {
209 printf("Region overlaps with partition %s\n",
216 /* Seems sane, so configure */
217 memset(dev, 0, sizeof(*dev));
218 dev->param.name = mp;
219 dev->driver_context = mtd;
220 dev->param.start_block = start_block;
221 dev->param.end_block = end_block;
222 dev->param.chunks_per_block = mtd->erasesize / mtd->writesize;
223 dev->param.total_bytes_per_chunk = mtd->writesize;
224 dev->param.is_yaffs2 = 1;
225 dev->param.use_nand_ecc = 1;
226 dev->param.n_reserved_blocks = 5;
227 if (chip->ecc.layout->oobavail < sizeof(struct yaffs_packed_tags2))
228 dev->param.inband_tags = 1;
229 dev->param.n_caches = 10;
230 dev->param.write_chunk_tags_fn = nandmtd2_write_chunk_tags;
231 dev->param.read_chunk_tags_fn = nandmtd2_read_chunk_tags;
232 dev->param.erase_fn = nandmtd_EraseBlockInNAND;
233 dev->param.initialise_flash_fn = nandmtd_InitialiseNAND;
234 dev->param.bad_block_fn = nandmtd2_MarkNANDBlockBad;
235 dev->param.query_block_fn = nandmtd2_QueryNANDBlock;
237 yaffs_add_device(dev);
239 printf("Configures yaffs mount %s: dev %d start block %d, end block %d %s\n",
240 mp, flash_dev, start_block, end_block,
241 dev->param.inband_tags ? "using inband tags" : "");
249 void cmd_yaffs_dev_ls(void)
251 struct yaffs_dev *dev;
258 dev = yaffs_next_dev();
261 flash_dev = nand_mtd_to_devnum(dev->driver_context);
262 printf("%-10s %5d 0x%05x 0x%05x %s",
263 dev->param.name, flash_dev,
264 dev->param.start_block, dev->param.end_block,
265 dev->param.inband_tags ? "using inband tags, " : "");
267 free_space = yaffs_freespace(dev->param.name);
269 printf("not mounted\n");
271 printf("free 0x%x\n", free_space);
276 void make_a_file(char *yaffsName, char bval, int sizeOfFile)
280 unsigned char buffer[100];
282 outh = yaffs_open(yaffsName,
283 O_CREAT | O_RDWR | O_TRUNC,
286 printf("Error opening file: %d. %s\n", outh, yaffs_error_str());
290 memset(buffer, bval, 100);
298 yaffs_write(outh, buffer, i);
300 } while (sizeOfFile > 0);
306 void read_a_file(char *fn)
312 h = yaffs_open(fn, O_RDWR, 0);
314 printf("File not found\n");
318 while (yaffs_read(h, &b, 1) > 0) {
330 void cmd_yaffs_mount(char *mp)
332 int retval = yaffs_mount(mp);
334 printf("Error mounting %s, return value: %d, %s\n", mp,
335 yaffsfs_GetError(), yaffs_error_str());
339 void cmd_yaffs_umount(char *mp)
341 if (yaffs_unmount(mp) == -1)
342 printf("Error umounting %s, return value: %d, %s\n", mp,
343 yaffsfs_GetError(), yaffs_error_str());
346 void cmd_yaffs_write_file(char *yaffsName, char bval, int sizeOfFile)
348 make_a_file(yaffsName, bval, sizeOfFile);
352 void cmd_yaffs_read_file(char *fn)
358 void cmd_yaffs_mread_file(char *fn, char *addr)
365 printf("Copy %s to 0x%p... ", fn, addr);
366 h = yaffs_open(fn, O_RDWR, 0);
368 printf("File not found\n");
372 yaffs_read(h, addr, (int)s.st_size);
373 printf("\t[DONE]\n");
379 void cmd_yaffs_mwrite_file(char *fn, char *addr, int size)
383 outh = yaffs_open(fn, O_CREAT | O_RDWR | O_TRUNC, S_IREAD | S_IWRITE);
385 printf("Error opening file: %d, %s\n", outh, yaffs_error_str());
387 yaffs_write(outh, addr, size);
393 void cmd_yaffs_ls(const char *mountpt, int longlist)
397 struct yaffs_dirent *de;
398 struct yaffs_stat stat;
401 d = yaffs_opendir(mountpt);
404 printf("opendir failed, %s\n", yaffs_error_str());
408 for (i = 0; (de = yaffs_readdir(d)) != NULL; i++) {
410 sprintf(tempstr, "%s/%s", mountpt, de->d_name);
411 yaffs_lstat(tempstr, &stat);
412 printf("%-25s\t%7ld",
417 yaffs_file_type_str(&stat));
419 printf("%s\n", de->d_name);
427 void cmd_yaffs_mkdir(const char *dir)
429 int retval = yaffs_mkdir(dir, 0);
432 printf("yaffs_mkdir returning error: %d, %s\n",
433 retval, yaffs_error_str());
436 void cmd_yaffs_rmdir(const char *dir)
438 int retval = yaffs_rmdir(dir);
441 printf("yaffs_rmdir returning error: %d, %s\n",
442 retval, yaffs_error_str());
445 void cmd_yaffs_rm(const char *path)
447 int retval = yaffs_unlink(path);
450 printf("yaffs_unlink returning error: %d, %s\n",
451 retval, yaffs_error_str());
454 void cmd_yaffs_mv(const char *oldPath, const char *newPath)
456 int retval = yaffs_rename(newPath, oldPath);
459 printf("yaffs_unlink returning error: %d, %s\n",
460 retval, yaffs_error_str());