dfs_elm.c 19.7 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * File      : dfs_elm.c
 * This file is part of Device File System in RT-Thread RTOS
 * COPYRIGHT (C) 2008-2011, RT-Thread Development Team
 *
 * The license and distribution terms for this file may be
 * found in the file LICENSE in this distribution or at
 * http://www.rt-thread.org/license/LICENSE.
 *
 * Change Logs:
 * Date           Author       Notes
 * 2008-02-22     QiuYi        The first version.
 * 2011-10-08     Bernard      fixed the block size in statfs.
B
bernard.xiong@gmail.com 已提交
14
 * 2011-11-23     Bernard      fixed the rename issue.
15
 * 2012-07-26     aozima       implement ff_memalloc and ff_memfree.
16
 * 2012-12-19     Bernard      fixed the O_APPEND and lseek issue.
17
 */
P
prife 已提交
18

19 20 21 22 23 24 25 26 27 28 29 30 31 32
#include <rtthread.h>
#include "ffconf.h"
#include "ff.h"

/* ELM FatFs provide a DIR struct */
#define HAVE_DIR_STRUCTURE

#include <dfs_fs.h>
#include <dfs_def.h>

static rt_device_t disk[_VOLUMES] = {0};

static int elm_result_to_dfs(FRESULT result)
{
P
prife 已提交
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
    int status = DFS_STATUS_OK;

    switch (result)
    {
    case FR_OK:
        break;

    case FR_NO_FILE:
    case FR_NO_PATH:
    case FR_NO_FILESYSTEM:
        status = -DFS_STATUS_ENOENT;
        break;

    case FR_INVALID_NAME:
        status = -DFS_STATUS_EINVAL;
        break;

    case FR_EXIST:
    case FR_INVALID_OBJECT:
        status = -DFS_STATUS_EEXIST;
        break;

    case FR_DISK_ERR:
    case FR_NOT_READY:
    case FR_INT_ERR:
        status = -DFS_STATUS_EIO;
        break;

    case FR_WRITE_PROTECTED:
    case FR_DENIED:
        status = -DFS_STATUS_EROFS;
        break;

    case FR_MKFS_ABORTED:
        status = -DFS_STATUS_EINVAL;
        break;

    default:
        status = -1;
        break;
    }

    return status;
76 77
}

78
/* results:
P
prife 已提交
79 80
 *  -1, no space to install fatfs driver
 *  >= 0, there is an space to install fatfs driver
81 82
 */
static int get_disk(rt_device_t id)
83
{
84
    int index;
85

P
prife 已提交
86 87 88
    for (index = 0; index < _VOLUMES; index ++)
    {
        if (disk[index] == id)
89
            return index;
P
prife 已提交
90 91
    }

92 93 94 95 96
    return -1;
}

int dfs_elm_mount(struct dfs_filesystem *fs, unsigned long rwflag, const void *data)
{
P
prife 已提交
97 98 99
    FATFS *fat;
    FRESULT result;
    int index;
100

P
prife 已提交
101 102 103 104
    /* get an empty position */
    index = get_disk(RT_NULL);
    if (index == -1)
        return -DFS_STATUS_ENOSPC;
105

P
prife 已提交
106 107
    /* save device */
    disk[index] = fs->dev_id;
108

P
prife 已提交
109 110 111
    fat = (FATFS *)rt_malloc(sizeof(FATFS));
    if (fat == RT_NULL)
    {
112
        disk[index] = RT_NULL;
P
prife 已提交
113 114 115 116 117 118 119 120 121 122 123 124 125
        return -1;
    }

    /* mount fatfs, always 0 logic driver */
    result = f_mount((BYTE)index, fat);
    if (result == FR_OK)
    {
        char drive[8];
        DIR *dir;

        rt_snprintf(drive, sizeof(drive), "%d:/", index);
        dir = (DIR *)rt_malloc(sizeof(DIR));
        if (dir == RT_NULL)
126 127 128 129
        {
            f_mount((BYTE)index, RT_NULL);
            disk[index] = RT_NULL;
            rt_free(fat);
P
prife 已提交
130
            return -DFS_STATUS_ENOMEM;
131
        }
P
prife 已提交
132 133 134 135

        /* open the root directory to test whether the fatfs is valid */
        result = f_opendir(dir, drive);
        if (result != FR_OK)
136
            goto __err;
137

138
        /* mount succeed! */
P
prife 已提交
139 140 141 142
        fs->data = fat;
        rt_free(dir);
        return 0;
    }
143

144
__err:
145
    f_mount((BYTE)index, RT_NULL);
146
    disk[index] = RT_NULL;
P
prife 已提交
147 148
    rt_free(fat);
    return elm_result_to_dfs(result);
149 150
}

151
int dfs_elm_unmount(struct dfs_filesystem *fs)
152
{
P
prife 已提交
153 154 155
    FATFS *fat;
    FRESULT result;
    int  index;
156

P
prife 已提交
157
    fat = (FATFS *)fs->data;
158

P
prife 已提交
159
    RT_ASSERT(fat != RT_NULL);
160

P
prife 已提交
161
    /* find the device index and then umount it */
162 163
    index = get_disk(fs->dev_id);
    if (index == -1) /* not found */
P
prife 已提交
164
        return -DFS_STATUS_ENOENT;
165

P
prife 已提交
166 167 168
    result = f_mount((BYTE)index, RT_NULL);
    if (result != FR_OK)
        return elm_result_to_dfs(result);
169

P
prife 已提交
170 171 172
    fs->data = RT_NULL;
    disk[index] = RT_NULL;
    rt_free(fat);
173

P
prife 已提交
174
    return DFS_STATUS_OK;
175 176
}

177
int dfs_elm_mkfs(rt_device_t dev_id)
178
{
179 180 181 182
#define FSM_STATUS_INIT            0
#define FSM_STATUS_USE_TEMP_DRIVER 1
    FATFS *fat;
    int flag;
P
prife 已提交
183
    FRESULT result;
184
    int index;
185

186 187
    if (dev_id == RT_NULL)
        return -DFS_STATUS_EINVAL;
188

P
prife 已提交
189
    /* if the device is already mounted, then just do mkfs to the drv,
190 191 192 193 194 195 196 197 198
     * while if it is not mounted yet, then find an empty drive to do mkfs
     */

    flag = FSM_STATUS_INIT;
    index = get_disk(dev_id);
    if (index == -1)
    {
        /* not found the device id */
        index = get_disk(RT_NULL);
P
prife 已提交
199 200
        if (index == -1)
        {
201
            /* no space to store an temp driver */
P
prife 已提交
202 203
            rt_kprintf("sorry, there is no space to do mkfs! \n");
            return -DFS_STATUS_ENOSPC;
204 205 206 207 208 209 210 211 212 213 214
        }
        else
        {
            fat = rt_malloc(sizeof(FATFS));
            if (fat == RT_NULL)
                return -DFS_STATUS_ENOMEM;

            flag = FSM_STATUS_USE_TEMP_DRIVER;

            disk[index] = dev_id;

P
prife 已提交
215 216 217 218
            /* just fill the FatFs[vol] in ff.c, or mkfs will failded!
             * consider this condition: you just umount the elm fat,
             * then the space in FatFs[index] is released, and now do mkfs
             * on the disk, you will get a failure. so we need f_mount here,
219 220 221 222 223 224
             * just fill the FatFS[index] in elm fatfs to make mkfs work.
             */
            f_mount((BYTE)index, fat);
        }
    }

P
prife 已提交
225 226 227
    /* 1: no partition table */
    /* 0: auto selection of cluster size */
    result = f_mkfs((BYTE)index, 1, 0);
228 229 230 231 232 233 234 235 236

    /* check flag status, we need clear the temp driver stored in disk[] */
    if (flag == FSM_STATUS_USE_TEMP_DRIVER)
    {
        rt_free(fat);
        f_mount((BYTE)index, RT_NULL);
        disk[index] = RT_NULL;
    }

P
prife 已提交
237 238 239 240 241
    if (result != FR_OK)
    {
        rt_kprintf("format error\n");
        return elm_result_to_dfs(result);
    }
242

P
prife 已提交
243
    return DFS_STATUS_OK;
244 245
}

246
int dfs_elm_statfs(struct dfs_filesystem *fs, struct statfs *buf)
247
{
P
prife 已提交
248 249 250 251
    FATFS *f;
    FRESULT res;
    char driver[4];
    DWORD fre_clust, fre_sect, tot_sect;
252

P
prife 已提交
253 254
    RT_ASSERT(fs != RT_NULL);
    RT_ASSERT(buf != RT_NULL);
255

P
prife 已提交
256
    f = (FATFS *)fs->data;
257

P
prife 已提交
258 259 260 261
    rt_snprintf(driver, sizeof(driver), "%d:", f->drv);
    res = f_getfree(driver, &fre_clust, &f);
    if (res)
        return elm_result_to_dfs(res);
262

P
prife 已提交
263 264 265
    /* Get total sectors and free sectors */
    tot_sect = (f->n_fatent - 2) * f->csize;
    fre_sect = fre_clust * f->csize;
266

P
prife 已提交
267 268
    buf->f_bfree = fre_sect;
    buf->f_blocks = tot_sect;
269
#if _MAX_SS != 512
P
prife 已提交
270
    buf->f_bsize = f->ssize;
271 272 273 274
#else
    buf->f_bsize = 512;
#endif

P
prife 已提交
275
    return 0;
276 277
}

278
int dfs_elm_open(struct dfs_fd *file)
279
{
P
prife 已提交
280 281 282 283
    FIL *fd;
    BYTE mode;
    FRESULT result;
    char *drivers_fn;
284 285

#if (_VOLUMES > 1)
P
prife 已提交
286 287 288 289 290 291 292 293 294 295 296 297
    int vol;
    extern int elm_get_vol(FATFS * fat);

    /* add path for ELM FatFS driver support */
    vol = elm_get_vol((FATFS *)file->fs->data);
    if (vol < 0)
        return -DFS_STATUS_ENOENT;
    drivers_fn = rt_malloc(256);
    if (drivers_fn == RT_NULL)
        return -DFS_STATUS_ENOMEM;

    rt_snprintf(drivers_fn, 256, "%d:%s", vol, file->path);
298
#else
P
prife 已提交
299
    drivers_fn = file->path;
300 301
#endif

P
prife 已提交
302 303 304
    if (file->flags & DFS_O_DIRECTORY)
    {
        DIR *dir;
305

P
prife 已提交
306 307 308 309 310
        if (file->flags & DFS_O_CREAT)
        {
            result = f_mkdir(drivers_fn);
            if (result != FR_OK)
            {
311
#if _VOLUMES > 1
P
prife 已提交
312
                rt_free(drivers_fn);
313
#endif
P
prife 已提交
314 315 316 317 318 319 320 321
                return elm_result_to_dfs(result);
            }
        }

        /* open directory */
        dir = (DIR *)rt_malloc(sizeof(DIR));
        if (dir == RT_NULL)
        {
322
#if _VOLUMES > 1
P
prife 已提交
323
            rt_free(drivers_fn);
324
#endif
P
prife 已提交
325 326
            return -DFS_STATUS_ENOMEM;
        }
327

P
prife 已提交
328
        result = f_opendir(dir, drivers_fn);
329
#if _VOLUMES > 1
P
prife 已提交
330
        rt_free(drivers_fn);
331
#endif
P
prife 已提交
332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362
        if (result != FR_OK)
        {
            rt_free(dir);
            return elm_result_to_dfs(result);
        }

        file->data = dir;
        return DFS_STATUS_OK;
    }
    else
    {
        mode = FA_READ;

        if (file->flags & DFS_O_WRONLY)
            mode |= FA_WRITE;
        if ((file->flags & DFS_O_ACCMODE) & DFS_O_RDWR)
            mode |= FA_WRITE;
        /* Opens the file, if it is existing. If not, a new file is created. */
        if (file->flags & DFS_O_CREAT)
            mode |= FA_OPEN_ALWAYS;
        /* Creates a new file. If the file is existing, it is truncated and overwritten. */
        if (file->flags & DFS_O_TRUNC)
            mode |= FA_CREATE_ALWAYS;
        /* Creates a new file. The function fails if the file is already existing. */
        if (file->flags & DFS_O_EXCL)
            mode |= FA_CREATE_NEW;

        /* allocate a fd */
        fd = (FIL *)rt_malloc(sizeof(FIL));
        if (fd == RT_NULL)
        {
363
#if _VOLUMES > 1
P
prife 已提交
364
            rt_free(drivers_fn);
365
#endif
P
prife 已提交
366 367
            return -DFS_STATUS_ENOMEM;
        }
368

P
prife 已提交
369
        result = f_open(fd, drivers_fn, mode);
370
#if _VOLUMES > 1
P
prife 已提交
371
        rt_free(drivers_fn);
372
#endif
P
prife 已提交
373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394
        if (result == FR_OK)
        {
            file->pos  = fd->fptr;
            file->size = fd->fsize;
            file->data = fd;

            if (file->flags & DFS_O_APPEND)
            {
                /* seek to the end of file */
                f_lseek(fd, fd->fsize);
                file->pos = fd->fptr;
            }
        }
        else
        {
            /* open failed, return */
            rt_free(fd);
            return elm_result_to_dfs(result);
        }
    }

    return DFS_STATUS_OK;
395 396
}

397
int dfs_elm_close(struct dfs_fd *file)
398
{
P
prife 已提交
399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426
    FRESULT result;

    result = FR_OK;
    if (file->type == FT_DIRECTORY)
    {
        DIR *dir;

        dir = (DIR *)(file->data);
        RT_ASSERT(dir != RT_NULL);

        /* release memory */
        rt_free(dir);
    }
    else if (file->type == FT_REGULAR)
    {
        FIL *fd;
        fd = (FIL *)(file->data);
        RT_ASSERT(fd != RT_NULL);

        result = f_close(fd);
        if (result == FR_OK)
        {
            /* release memory */
            rt_free(fd);
        }
    }

    return elm_result_to_dfs(result);
427 428
}

P
prife 已提交
429
int dfs_elm_ioctl(struct dfs_fd *file, int cmd, void *args)
430
{
P
prife 已提交
431
    return -DFS_STATUS_ENOSYS;
432 433
}

434
int dfs_elm_read(struct dfs_fd *file, void *buf, rt_size_t len)
435
{
P
prife 已提交
436 437 438
    FIL *fd;
    FRESULT result;
    UINT byte_read;
439

P
prife 已提交
440 441 442 443
    if (file->type == FT_DIRECTORY)
    {
        return -DFS_STATUS_EISDIR;
    }
444

P
prife 已提交
445 446
    fd = (FIL *)(file->data);
    RT_ASSERT(fd != RT_NULL);
447

P
prife 已提交
448 449 450 451 452
    result = f_read(fd, buf, len, &byte_read);
    /* update position */
    file->pos  = fd->fptr;
    if (result == FR_OK)
        return byte_read;
453

P
prife 已提交
454
    return elm_result_to_dfs(result);
455 456
}

457
int dfs_elm_write(struct dfs_fd *file, const void *buf, rt_size_t len)
458
{
P
prife 已提交
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478
    FIL *fd;
    FRESULT result;
    UINT byte_write;

    if (file->type == FT_DIRECTORY)
    {
        return -DFS_STATUS_EISDIR;
    }

    fd = (FIL *)(file->data);
    RT_ASSERT(fd != RT_NULL);

    result = f_write(fd, buf, len, &byte_write);
    /* update position and file size */
    file->pos  = fd->fptr;
    file->size = fd->fsize;
    if (result == FR_OK)
        return byte_write;

    return elm_result_to_dfs(result);
479 480
}

481
int dfs_elm_flush(struct dfs_fd *file)
482
{
P
prife 已提交
483 484
    FIL *fd;
    FRESULT result;
485

P
prife 已提交
486 487
    fd = (FIL *)(file->data);
    RT_ASSERT(fd != RT_NULL);
488

P
prife 已提交
489 490
    result = f_sync(fd);
    return elm_result_to_dfs(result);
491 492
}

493
int dfs_elm_lseek(struct dfs_fd *file, rt_off_t offset)
494
{
P
prife 已提交
495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529
    FRESULT result = FR_OK;
    if (file->type == FT_REGULAR)
    {
        FIL *fd;

        /* regular file type */
        fd = (FIL *)(file->data);
        RT_ASSERT(fd != RT_NULL);

        result = f_lseek(fd, offset);
        if (result == FR_OK)
        {
            /* return current position */
            file->pos = fd->fptr;
            return fd->fptr;
        }
    }
    else if (file->type == FT_DIRECTORY)
    {
        /* which is a directory */
        DIR *dir;

        dir = (DIR *)(file->data);
        RT_ASSERT(dir != RT_NULL);

        result = f_seekdir(dir, offset / sizeof(struct dirent));
        if (result == FR_OK)
        {
            /* update file position */
            file->pos = offset;
            return file->pos;
        }
    }

    return elm_result_to_dfs(result);
530 531
}

532
int dfs_elm_getdents(struct dfs_fd *file, struct dirent *dirp, rt_uint32_t count)
533
{
P
prife 已提交
534 535 536 537 538 539 540 541 542 543 544 545 546
    DIR *dir;
    FILINFO fno;
    FRESULT result;
    rt_uint32_t index;
    struct dirent *d;

    dir = (DIR *)(file->data);
    RT_ASSERT(dir != RT_NULL);

    /* make integer count */
    count = (count / sizeof(struct dirent)) * sizeof(struct dirent);
    if (count == 0)
        return -DFS_STATUS_EINVAL;
547 548

#if _USE_LFN
P
prife 已提交
549 550 551
    /* allocate long file name */
    fno.lfname = rt_malloc(256);
    fno.lfsize = 256;
552 553
#endif

P
prife 已提交
554 555 556 557
    index = 0;
    while (1)
    {
        char *fn;
558

P
prife 已提交
559
        d = dirp + index;
560

P
prife 已提交
561 562 563
        result = f_readdir(dir, &fno);
        if (result != FR_OK || fno.fname[0] == 0)
            break;
564 565

#if _USE_LFN
P
prife 已提交
566
        fn = *fno.lfname ? fno.lfname : fno.fname;
567
#else
P
prife 已提交
568
        fn = fno.fname;
569 570
#endif

P
prife 已提交
571 572 573 574 575
        d->d_type = DFS_DT_UNKNOWN;
        if (fno.fattrib & AM_DIR)
            d->d_type = DFS_DT_DIR;
        else
            d->d_type = DFS_DT_REG;
576

P
prife 已提交
577 578 579
        d->d_namlen = (rt_uint8_t)rt_strlen(fn);
        d->d_reclen = (rt_uint16_t)sizeof(struct dirent);
        rt_strncpy(d->d_name, fn, rt_strlen(fn) + 1);
580

P
prife 已提交
581 582 583 584
        index ++;
        if (index * sizeof(struct dirent) >= count)
            break;
    }
585 586

#if _USE_LFN
P
prife 已提交
587
    rt_free(fno.lfname);
588 589
#endif

P
prife 已提交
590 591
    if (index == 0)
        return elm_result_to_dfs(result);
592

P
prife 已提交
593
    file->pos += index * sizeof(struct dirent);
594

P
prife 已提交
595
    return index * sizeof(struct dirent);
596 597
}

598
int dfs_elm_unlink(struct dfs_filesystem *fs, const char *path)
599
{
P
prife 已提交
600
    FRESULT result;
601 602

#if _VOLUMES > 1
P
prife 已提交
603 604 605 606 607 608 609 610 611 612 613 614 615
    int vol;
    char *drivers_fn;
    extern int elm_get_vol(FATFS * fat);

    /* add path for ELM FatFS driver support */
    vol = elm_get_vol((FATFS *)fs->data);
    if (vol < 0)
        return -DFS_STATUS_ENOENT;
    drivers_fn = rt_malloc(256);
    if (drivers_fn == RT_NULL)
        return -DFS_STATUS_ENOMEM;

    rt_snprintf(drivers_fn, 256, "%d:%s", vol, path);
616
#else
P
prife 已提交
617 618
    const char *drivers_fn;
    drivers_fn = path;
619 620
#endif

P
prife 已提交
621
    result = f_unlink(drivers_fn);
622
#if _VOLUMES > 1
P
prife 已提交
623
    rt_free(drivers_fn);
624
#endif
P
prife 已提交
625
    return elm_result_to_dfs(result);
626 627
}

628
int dfs_elm_rename(struct dfs_filesystem *fs, const char *oldpath, const char *newpath)
629
{
P
prife 已提交
630
    FRESULT result;
631 632

#if _VOLUMES > 1
P
prife 已提交
633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
    char *drivers_oldfn;
    const char *drivers_newfn;
    int vol;
    extern int elm_get_vol(FATFS * fat);

    /* add path for ELM FatFS driver support */
    vol = elm_get_vol((FATFS *)fs->data);
    if (vol < 0)
        return -DFS_STATUS_ENOENT;

    drivers_oldfn = rt_malloc(256);
    if (drivers_oldfn == RT_NULL)
        return -DFS_STATUS_ENOMEM;
    drivers_newfn = newpath;

    rt_snprintf(drivers_oldfn, 256, "%d:%s", vol, oldpath);
649
#else
P
prife 已提交
650
    const char *drivers_oldfn, *drivers_newfn;
651

P
prife 已提交
652 653
    drivers_oldfn = oldpath;
    drivers_newfn = newpath;
654 655
#endif

P
prife 已提交
656
    result = f_rename(drivers_oldfn, drivers_newfn);
657
#if _VOLUMES > 1
P
prife 已提交
658
    rt_free(drivers_oldfn);
659
#endif
P
prife 已提交
660
    return elm_result_to_dfs(result);
661 662
}

663
int dfs_elm_stat(struct dfs_filesystem *fs, const char *path, struct stat *st)
664
{
P
prife 已提交
665 666
    FILINFO file_info;
    FRESULT result;
667 668

#if _VOLUMES > 1
P
prife 已提交
669 670 671 672 673 674 675 676 677 678 679 680 681
    int vol;
    char *drivers_fn;
    extern int elm_get_vol(FATFS * fat);

    /* add path for ELM FatFS driver support */
    vol = elm_get_vol((FATFS *)fs->data);
    if (vol < 0)
        return -DFS_STATUS_ENOENT;
    drivers_fn = rt_malloc(256);
    if (drivers_fn == RT_NULL)
        return -DFS_STATUS_ENOMEM;

    rt_snprintf(drivers_fn, 256, "%d:%s", vol, path);
682
#else
P
prife 已提交
683 684
    const char *drivers_fn;
    drivers_fn = path;
685 686 687
#endif

#if _USE_LFN
P
prife 已提交
688 689 690
    /* allocate long file name */
    file_info.lfname = rt_malloc(256);
    file_info.lfsize = 256;
691 692
#endif

P
prife 已提交
693
    result = f_stat(drivers_fn, &file_info);
694
#if _VOLUMES > 1
P
prife 已提交
695
    rt_free(drivers_fn);
696
#endif
P
prife 已提交
697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
    if (result == FR_OK)
    {
        /* convert to dfs stat structure */
        st->st_dev = 0;

        st->st_mode = DFS_S_IFREG | DFS_S_IRUSR | DFS_S_IRGRP | DFS_S_IROTH |
                      DFS_S_IWUSR | DFS_S_IWGRP | DFS_S_IWOTH;
        if (file_info.fattrib & AM_DIR)
        {
            st->st_mode &= ~DFS_S_IFREG;
            st->st_mode |= DFS_S_IFDIR | DFS_S_IXUSR | DFS_S_IXGRP | DFS_S_IXOTH;
        }
        if (file_info.fattrib & AM_RDO)
            st->st_mode &= ~(DFS_S_IWUSR | DFS_S_IWGRP | DFS_S_IWOTH);

        st->st_size  = file_info.fsize;
        st->st_mtime = file_info.ftime;
        st->st_blksize = 512;
    }
716 717

#if _USE_LFN
P
prife 已提交
718
    rt_free(file_info.lfname);
719 720
#endif

P
prife 已提交
721
    return elm_result_to_dfs(result);
722 723 724 725
}

static const struct dfs_filesystem_operation dfs_elm =
{
P
prife 已提交
726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743
    "elm",
    DFS_FS_FLAG_DEFAULT,
    dfs_elm_mount,
    dfs_elm_unmount,
    dfs_elm_mkfs,
    dfs_elm_statfs,

    dfs_elm_open,
    dfs_elm_close,
    dfs_elm_ioctl,
    dfs_elm_read,
    dfs_elm_write,
    dfs_elm_flush,
    dfs_elm_lseek,
    dfs_elm_getdents,
    dfs_elm_unlink,
    dfs_elm_stat,
    dfs_elm_rename,
744 745 746 747 748 749 750
};

int elm_init(void)
{
    /* register fatfs file system */
    dfs_register(&dfs_elm);

P
prife 已提交
751
    return 0;
752 753 754 755 756 757 758
}

/*
 * RT-Thread Device Interface for ELM FatFs
 */
#include "diskio.h"

759
/* Initialize a Drive */
760
DSTATUS disk_initialize(BYTE drv)
761
{
P
prife 已提交
762
    return 0;
763 764 765
}

/* Return Disk Status */
766
DSTATUS disk_status(BYTE drv)
767
{
P
prife 已提交
768
    return 0;
769 770 771
}

/* Read Sector(s) */
772
DRESULT disk_read(BYTE drv, BYTE *buff, DWORD sector, BYTE count)
773
{
P
prife 已提交
774 775
    rt_size_t result;
    rt_device_t device = disk[drv];
776

P
prife 已提交
777 778 779 780 781
    result = rt_device_read(device, sector, buff, count);
    if (result == count)
    {
        return RES_OK;
    }
782

P
prife 已提交
783
    return RES_ERROR;
784 785 786
}

/* Write Sector(s) */
787
DRESULT disk_write(BYTE drv, const BYTE *buff, DWORD sector, BYTE count)
788
{
P
prife 已提交
789 790
    rt_size_t result;
    rt_device_t device = disk[drv];
791

P
prife 已提交
792 793 794 795 796
    result = rt_device_write(device, sector, buff, count);
    if (result == count)
    {
        return RES_OK;
    }
797

P
prife 已提交
798
    return RES_ERROR;
799 800 801
}

/* Miscellaneous Functions */
802
DRESULT disk_ioctl(BYTE drv, BYTE ctrl, void *buff)
803
{
P
prife 已提交
804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847
    rt_device_t device = disk[drv];

    if (device == RT_NULL)
        return RES_ERROR;

    if (ctrl == GET_SECTOR_COUNT)
    {
        struct rt_device_blk_geometry geometry;

        rt_memset(&geometry, 0, sizeof(geometry));
        rt_device_control(device, RT_DEVICE_CTRL_BLK_GETGEOME, &geometry);

        *(DWORD *)buff = geometry.sector_count;
        if (geometry.sector_count == 0)
            return RES_ERROR;
    }
    else if (ctrl == GET_SECTOR_SIZE)
    {
        struct rt_device_blk_geometry geometry;

        rt_memset(&geometry, 0, sizeof(geometry));
        rt_device_control(device, RT_DEVICE_CTRL_BLK_GETGEOME, &geometry);

        *(WORD *)buff = (WORD)(geometry.bytes_per_sector);
    }
    else if (ctrl == GET_BLOCK_SIZE) /* Get erase block size in unit of sectors (DWORD) */
    {
        struct rt_device_blk_geometry geometry;

        rt_memset(&geometry, 0, sizeof(geometry));
        rt_device_control(device, RT_DEVICE_CTRL_BLK_GETGEOME, &geometry);

        *(DWORD *)buff = geometry.block_size / geometry.bytes_per_sector;
    }
    else if (ctrl == CTRL_SYNC)
    {
        rt_device_control(device, RT_DEVICE_CTRL_BLK_SYNC, RT_NULL);
    }
    else if (ctrl == CTRL_ERASE_SECTOR)
    {
        rt_device_control(device, RT_DEVICE_CTRL_BLK_ERASE, buff);
    }

    return RES_OK;
848 849
}

850
rt_time_t get_fattime(void)
851
{
P
prife 已提交
852
    return 0;
853 854 855
}

#if _FS_REENTRANT
856
int ff_cre_syncobj(BYTE drv, _SYNC_t *m)
857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873
{
    char name[8];
    rt_mutex_t mutex;

    rt_snprintf(name, sizeof(name), "fat%d", drv);
    mutex = rt_mutex_create(name, RT_IPC_FLAG_FIFO);
    if (mutex != RT_NULL)
    {
        *m = mutex;
        return RT_TRUE;
    }

    return RT_FALSE;
}

int ff_del_syncobj(_SYNC_t m)
{
874 875
    if (m != RT_NULL)
        rt_mutex_delete(m);
876 877 878 879 880 881

    return RT_TRUE;
}

int ff_req_grant(_SYNC_t m)
{
882
    if (rt_mutex_take(m, _FS_TIMEOUT) == RT_EOK)
P
prife 已提交
883
        return RT_TRUE;
884 885 886 887 888 889

    return RT_FALSE;
}

void ff_rel_grant(_SYNC_t m)
{
P
prife 已提交
890
    rt_mutex_release(m);
891 892 893
}

#endif
894 895 896 897

/* Memory functions */
#if _USE_LFN == 3
/* Allocate memory block */
P
prife 已提交
898
void *ff_memalloc(UINT size)
899 900 901 902 903
{
    return rt_malloc(size);
}

/* Free memory block */
P
prife 已提交
904
void ff_memfree(void *mem)
905 906 907 908 909
{
    rt_free(mem);
}
#endif /* _USE_LFN == 3 */