OpenCores
URL https://opencores.org/ocsvn/ao486/ao486/trunk

Subversion Repositories ao486

[/] [ao486/] [trunk/] [syn/] [components/] [sd_card/] [firmware/] [bsp/] [HAL/] [src/] [alt_fstat.c] - Blame information for rev 8

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 8 alfik
/******************************************************************************
2
*                                                                             *
3
* License Agreement                                                           *
4
*                                                                             *
5
* Copyright (c) 2006 Altera Corporation, San Jose, California, USA.           *
6
* All rights reserved.                                                        *
7
*                                                                             *
8
* Permission is hereby granted, free of charge, to any person obtaining a     *
9
* copy of this software and associated documentation files (the "Software"),  *
10
* to deal in the Software without restriction, including without limitation   *
11
* the rights to use, copy, modify, merge, publish, distribute, sublicense,    *
12
* and/or sell copies of the Software, and to permit persons to whom the       *
13
* Software is furnished to do so, subject to the following conditions:        *
14
*                                                                             *
15
* The above copyright notice and this permission notice shall be included in  *
16
* all copies or substantial portions of the Software.                         *
17
*                                                                             *
18
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR  *
19
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,    *
20
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
21
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER      *
22
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING     *
23
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER         *
24
* DEALINGS IN THE SOFTWARE.                                                   *
25
*                                                                             *
26
* This agreement shall be governed in all respects by the laws of the State   *
27
* of California and by the laws of the United States of America.              *
28
*                                                                             *
29
* Altera does not recommend, suggest or require that this reference design    *
30
* file be used in conjunction or combination with any other product.          *
31
******************************************************************************/
32
 
33
#include <stddef.h>
34
#include <sys/stat.h>
35
 
36
#include "sys/alt_dev.h"
37
#include "sys/alt_warning.h"
38
#include "sys/alt_errno.h"
39
#include "priv/alt_file.h"
40
#include "os/alt_syscall.h"
41
 
42
/*
43
 * The fstat() system call is used to obtain information about the capabilities
44
 * of an open file descriptor. By default file descriptors are marked as
45
 * being character devices. If a device or file system wishes to advertise
46
 * alternative capabilities then they can register an fstat() function within
47
 * their associated alt_dev structure. This will be called to fill in the
48
 * entries in the imput "st" structure.
49
 *
50
 * This function is provided for compatability with newlib.
51
 *
52
 * ALT_FSTAT is mapped onto the fstat() system call in alt_syscall.h
53
 */
54
 
55
#ifdef ALT_USE_DIRECT_DRIVERS
56
 
57
#include "system.h"
58
 
59
/*
60
 * Provide minimal version that just describes all file descriptors
61
 * as character devices for provided stdio devices.
62
 */
63
int ALT_FSTAT (int file, struct stat *st)
64
{
65
    switch (file) {
66
#ifdef ALT_STDIN_PRESENT
67
    case 0: /* stdin file descriptor */
68
#endif /* ALT_STDIN_PRESENT */
69
#ifdef ALT_STDOUT_PRESENT
70
    case 1: /* stdout file descriptor */
71
#endif /* ALT_STDOUT_PRESENT */
72
#ifdef ALT_STDERR_PRESENT
73
    case 2: /* stderr file descriptor */
74
#endif /* ALT_STDERR_PRESENT */
75
        st->st_mode = _IFCHR;
76
        return 0;
77
    default:
78
        return -1;
79
    }
80
 
81
#if !defined(ALT_STDIN_PRESENT) && !defined(ALT_STDOUT_PRESENT) && !defined(ALT_STDERR_PRESENT)
82
    /* Generate a link time warning, should this function ever be called. */
83
    ALT_STUB_WARNING(fstat);
84
#endif
85
}
86
 
87
#else /* !ALT_USE_DIRECT_DRIVERS */
88
 
89
int ALT_FSTAT (int file, struct stat *st)
90
{
91
  alt_fd*  fd;
92
 
93
  /*
94
   * A common error case is that when the file descriptor was created, the call
95
   * to open() failed resulting in a negative file descriptor. This is trapped
96
   * below so that we don't try and process an invalid file descriptor.
97
   */
98
 
99
  fd = (file < 0) ? NULL : &alt_fd_list[file];
100
 
101
  if (fd)
102
  {
103
    /* Call the drivers fstat() function to fill out the "st" structure. */
104
 
105
    if (fd->dev->fstat)
106
    {
107
      return fd->dev->fstat(fd, st);
108
    }
109
 
110
    /*
111
     * If no function is provided, mark the fd as belonging to a character
112
     * device.
113
     */
114
 
115
    else
116
    {
117
      st->st_mode = _IFCHR;
118
      return 0;
119
    }
120
  }
121
  else
122
  {
123
    ALT_ERRNO = EBADFD;
124
    return -1;
125
  }
126
}
127
 
128
#endif /* ALT_USE_DIRECT_DRIVERS */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.