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

Subversion Repositories ao486

[/] [ao486/] [trunk/] [syn/] [components/] [sd_card/] [firmware/] [bsp/] [HAL/] [src/] [alt_read.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 <unistd.h>
34
#include <fcntl.h>
35
 
36
#include "sys/alt_errno.h"
37
#include "sys/alt_warning.h"
38
#include "priv/alt_file.h"
39
#include "os/alt_syscall.h"
40
 
41
/*
42
 * The read() system call is used to read a block of data from a file or device.
43
 * This function simply vectors the request to the device driver associated
44
 * with the input file descriptor "file".
45
 *
46
 * ALT_READ is mapped onto the read() system call in alt_syscall.h
47
 */
48
 
49
#ifdef ALT_USE_DIRECT_DRIVERS
50
 
51
#include "system.h"
52
#include "sys/alt_driver.h"
53
 
54
/*
55
 * Provide minimal version that just reads from the stdin device when provided.
56
 */
57
 
58
int ALT_READ (int file, void *ptr, size_t len)
59
{
60
#ifdef ALT_STDIN_PRESENT
61
    ALT_DRIVER_READ_EXTERNS(ALT_STDIN_DEV);
62
#endif
63
 
64
#if !defined(ALT_STDIN_PRESENT)
65
    /* Generate a link time warning, should this function ever be called. */
66
    ALT_STUB_WARNING(read);
67
#endif
68
 
69
    switch (file) {
70
#ifdef ALT_STDIN_PRESENT
71
    case 0: /* stdin file descriptor */
72
        return ALT_DRIVER_READ(ALT_STDIN_DEV, ptr, len, 0);
73
#endif /* ALT_STDIN_PRESENT */
74
    default:
75
        ALT_ERRNO = EBADFD;
76
        return -1;
77
    }
78
}
79
 
80
#else /* !ALT_USE_DIRECT_DRIVERS */
81
 
82
int ALT_READ (int file, void *ptr, size_t len)
83
{
84
  alt_fd*  fd;
85
  int      rval;
86
 
87
  /*
88
   * A common error case is that when the file descriptor was created, the call
89
   * to open() failed resulting in a negative file descriptor. This is trapped
90
   * below so that we don't try and process an invalid file descriptor.
91
   */
92
 
93
  fd = (file < 0) ? NULL : &alt_fd_list[file];
94
 
95
  if (fd)
96
  {
97
    /*
98
     * If the file has not been opened with read access, or if the driver does
99
     * not provide an implementation of read(), generate an error. Otherwise
100
     * call the drivers read() function to process the request.
101
     */
102
 
103
    if (((fd->fd_flags & O_ACCMODE) != O_WRONLY) &&
104
        (fd->dev->read))
105
      {
106
        if ((rval = fd->dev->read(fd, ptr, len)) < 0)
107
        {
108
          ALT_ERRNO = -rval;
109
          return -1;
110
        }
111
        return rval;
112
      }
113
      else
114
      {
115
        ALT_ERRNO = EACCES;
116
      }
117
    }
118
  else
119
  {
120
    ALT_ERRNO = EBADFD;
121
  }
122
  return -1;
123
}
124
 
125
#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.