1 |
2 |
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 |
|
|
#include "sys/alt_log_printf.h"
|
42 |
|
|
|
43 |
|
|
/*
|
44 |
|
|
* The write() system call is used to write a block of data to a file or
|
45 |
|
|
* device. This function simply vectors the request to the device driver
|
46 |
|
|
* associated with the input file descriptor "file".
|
47 |
|
|
*
|
48 |
|
|
* ALT_WRITE is mapped onto the write() system call in alt_syscall.h
|
49 |
|
|
*/
|
50 |
|
|
|
51 |
|
|
#ifdef ALT_USE_DIRECT_DRIVERS
|
52 |
|
|
|
53 |
|
|
#include "system.h"
|
54 |
|
|
#include "sys/alt_driver.h"
|
55 |
|
|
|
56 |
|
|
/*
|
57 |
|
|
* Provide minimal version that just writes to the stdout/stderr devices
|
58 |
|
|
* when provided.
|
59 |
|
|
*/
|
60 |
|
|
|
61 |
|
|
int ALT_WRITE (int file, const void *ptr, size_t len)
|
62 |
|
|
{
|
63 |
|
|
#ifdef ALT_STDOUT_PRESENT
|
64 |
|
|
ALT_DRIVER_WRITE_EXTERNS(ALT_STDOUT_DEV);
|
65 |
|
|
#endif
|
66 |
|
|
#ifdef ALT_STDERR_PRESENT
|
67 |
|
|
ALT_DRIVER_WRITE_EXTERNS(ALT_STDERR_DEV);
|
68 |
|
|
#endif
|
69 |
|
|
|
70 |
|
|
#if !defined(ALT_STDOUT_PRESENT) && !defined(ALT_STDERR_PRESENT)
|
71 |
|
|
/* Generate a link time warning, should this function ever be called. */
|
72 |
|
|
ALT_STUB_WARNING(write);
|
73 |
|
|
#endif
|
74 |
|
|
|
75 |
|
|
switch (file) {
|
76 |
|
|
#ifdef ALT_STDOUT_PRESENT
|
77 |
|
|
case 1: /* stdout file descriptor */
|
78 |
|
|
return ALT_DRIVER_WRITE(ALT_STDOUT_DEV, ptr, len, 0);
|
79 |
|
|
#endif /* ALT_STDOUT_PRESENT */
|
80 |
|
|
#ifdef ALT_STDERR_PRESENT
|
81 |
|
|
case 2: /* stderr file descriptor */
|
82 |
|
|
return ALT_DRIVER_WRITE(ALT_STDERR_DEV, ptr, len, 0);
|
83 |
|
|
#endif /* ALT_STDERR_PRESENT */
|
84 |
|
|
default:
|
85 |
|
|
ALT_ERRNO = EBADFD;
|
86 |
|
|
return -1;
|
87 |
|
|
}
|
88 |
|
|
}
|
89 |
|
|
|
90 |
|
|
#else /* !ALT_USE_DIRECT_DRIVERS */
|
91 |
|
|
|
92 |
|
|
int ALT_WRITE (int file, const void *ptr, size_t len)
|
93 |
|
|
{
|
94 |
|
|
alt_fd* fd;
|
95 |
|
|
int rval;
|
96 |
|
|
|
97 |
|
|
/*
|
98 |
|
|
* A common error case is that when the file descriptor was created, the call
|
99 |
|
|
* to open() failed resulting in a negative file descriptor. This is trapped
|
100 |
|
|
* below so that we don't try and process an invalid file descriptor.
|
101 |
|
|
*/
|
102 |
|
|
|
103 |
|
|
fd = (file < 0) ? NULL : &alt_fd_list[file];
|
104 |
|
|
|
105 |
|
|
if (fd)
|
106 |
|
|
{
|
107 |
|
|
/*
|
108 |
|
|
* If the file has not been opened with write access, or if the driver does
|
109 |
|
|
* not provide an implementation of write(), generate an error. Otherwise
|
110 |
|
|
* call the drivers write() function to process the request.
|
111 |
|
|
*/
|
112 |
|
|
|
113 |
|
|
if (((fd->fd_flags & O_ACCMODE) != O_RDONLY) && fd->dev->write)
|
114 |
|
|
{
|
115 |
|
|
|
116 |
|
|
/* ALT_LOG - see altera_hal/HAL/inc/sys/alt_log_printf.h */
|
117 |
|
|
ALT_LOG_WRITE_FUNCTION(ptr,len);
|
118 |
|
|
|
119 |
|
|
if ((rval = fd->dev->write(fd, ptr, len)) < 0)
|
120 |
|
|
{
|
121 |
|
|
ALT_ERRNO = -rval;
|
122 |
|
|
return -1;
|
123 |
|
|
}
|
124 |
|
|
return rval;
|
125 |
|
|
}
|
126 |
|
|
else
|
127 |
|
|
{
|
128 |
|
|
ALT_ERRNO = EACCES;
|
129 |
|
|
}
|
130 |
|
|
}
|
131 |
|
|
else
|
132 |
|
|
{
|
133 |
|
|
ALT_ERRNO = EBADFD;
|
134 |
|
|
}
|
135 |
|
|
return -1;
|
136 |
|
|
}
|
137 |
|
|
|
138 |
|
|
#endif /* ALT_USE_DIRECT_DRIVERS */
|