1 |
8 |
alfik |
#ifndef __ALT_DEV_H__
|
2 |
|
|
#define __ALT_DEV_H__
|
3 |
|
|
|
4 |
|
|
/******************************************************************************
|
5 |
|
|
* *
|
6 |
|
|
* License Agreement *
|
7 |
|
|
* *
|
8 |
|
|
* Copyright (c) 2004 Altera Corporation, San Jose, California, USA. *
|
9 |
|
|
* All rights reserved. *
|
10 |
|
|
* *
|
11 |
|
|
* Permission is hereby granted, free of charge, to any person obtaining a *
|
12 |
|
|
* copy of this software and associated documentation files (the "Software"), *
|
13 |
|
|
* to deal in the Software without restriction, including without limitation *
|
14 |
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense, *
|
15 |
|
|
* and/or sell copies of the Software, and to permit persons to whom the *
|
16 |
|
|
* Software is furnished to do so, subject to the following conditions: *
|
17 |
|
|
* *
|
18 |
|
|
* The above copyright notice and this permission notice shall be included in *
|
19 |
|
|
* all copies or substantial portions of the Software. *
|
20 |
|
|
* *
|
21 |
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR *
|
22 |
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, *
|
23 |
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE *
|
24 |
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER *
|
25 |
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING *
|
26 |
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER *
|
27 |
|
|
* DEALINGS IN THE SOFTWARE. *
|
28 |
|
|
* *
|
29 |
|
|
* This agreement shall be governed in all respects by the laws of the State *
|
30 |
|
|
* of California and by the laws of the United States of America. *
|
31 |
|
|
* *
|
32 |
|
|
* Altera does not recommend, suggest or require that this reference design *
|
33 |
|
|
* file be used in conjunction or combination with any other product. *
|
34 |
|
|
******************************************************************************/
|
35 |
|
|
|
36 |
|
|
/******************************************************************************
|
37 |
|
|
* *
|
38 |
|
|
* THIS IS A LIBRARY READ-ONLY SOURCE FILE. DO NOT EDIT. *
|
39 |
|
|
* *
|
40 |
|
|
******************************************************************************/
|
41 |
|
|
|
42 |
|
|
#include "system.h"
|
43 |
|
|
#include "sys/alt_llist.h"
|
44 |
|
|
#include "priv/alt_dev_llist.h"
|
45 |
|
|
|
46 |
|
|
#ifdef __cplusplus
|
47 |
|
|
extern "C"
|
48 |
|
|
{
|
49 |
|
|
#endif /* __cplusplus */
|
50 |
|
|
|
51 |
|
|
/*
|
52 |
|
|
* The value ALT_IRQ_NOT_CONNECTED is used to represent an unconnected
|
53 |
|
|
* interrupt line. It cannot evaluate to a valid interrupt number.
|
54 |
|
|
*/
|
55 |
|
|
|
56 |
|
|
#define ALT_IRQ_NOT_CONNECTED (-1)
|
57 |
|
|
|
58 |
|
|
typedef struct alt_dev_s alt_dev;
|
59 |
|
|
|
60 |
|
|
struct stat;
|
61 |
|
|
|
62 |
|
|
/*
|
63 |
|
|
* The file descriptor structure definition.
|
64 |
|
|
*/
|
65 |
|
|
|
66 |
|
|
typedef struct alt_fd_s
|
67 |
|
|
{
|
68 |
|
|
alt_dev* dev;
|
69 |
|
|
alt_u8* priv;
|
70 |
|
|
int fd_flags;
|
71 |
|
|
} alt_fd;
|
72 |
|
|
|
73 |
|
|
/*
|
74 |
|
|
* The device structure definition.
|
75 |
|
|
*/
|
76 |
|
|
|
77 |
|
|
struct alt_dev_s {
|
78 |
|
|
alt_llist llist; /* for internal use */
|
79 |
|
|
const char* name;
|
80 |
|
|
int (*open) (alt_fd* fd, const char* name, int flags, int mode);
|
81 |
|
|
int (*close) (alt_fd* fd);
|
82 |
|
|
int (*read) (alt_fd* fd, char* ptr, int len);
|
83 |
|
|
int (*write) (alt_fd* fd, const char* ptr, int len);
|
84 |
|
|
int (*lseek) (alt_fd* fd, int ptr, int dir);
|
85 |
|
|
int (*fstat) (alt_fd* fd, struct stat* buf);
|
86 |
|
|
int (*ioctl) (alt_fd* fd, int req, void* arg);
|
87 |
|
|
};
|
88 |
|
|
|
89 |
|
|
/*
|
90 |
|
|
* Functions used to register device for access through the C standard
|
91 |
|
|
* library.
|
92 |
|
|
*
|
93 |
|
|
* The only difference between alt_dev_reg() and alt_fs_reg() is the
|
94 |
|
|
* interpretation that open() places on the device name. In the case of
|
95 |
|
|
* alt_dev_reg the device is assumed to be a particular character device,
|
96 |
|
|
* and so there must be an exact match in the name for open to succeed.
|
97 |
|
|
* In the case of alt_fs_reg() the name of the device is treated as the
|
98 |
|
|
* mount point for a directory, and so any call to open() where the name
|
99 |
|
|
* is the root of the device filename will succeed.
|
100 |
|
|
*/
|
101 |
|
|
|
102 |
|
|
extern int alt_fs_reg (alt_dev* dev);
|
103 |
|
|
|
104 |
|
|
static ALT_INLINE int alt_dev_reg (alt_dev* dev)
|
105 |
|
|
{
|
106 |
|
|
extern alt_llist alt_dev_list;
|
107 |
|
|
|
108 |
|
|
return alt_dev_llist_insert ((alt_dev_llist*) dev, &alt_dev_list);
|
109 |
|
|
}
|
110 |
|
|
|
111 |
|
|
#ifdef __cplusplus
|
112 |
|
|
}
|
113 |
|
|
#endif
|
114 |
|
|
|
115 |
|
|
#endif /* __ALT_DEV_H__ */
|