]> git.karo-electronics.de Git - karo-tx-redboot.git/blob - packages/hal/synth/arch/v2_0/src/synth_syscalls.c
830ec089f97f8cf3a91f788749dedfd178ab539f
[karo-tx-redboot.git] / packages / hal / synth / arch / v2_0 / src / synth_syscalls.c
1 //=============================================================================
2 //
3 //      synth_syscalls.c
4 //
5 //      Synthetic target access to more complex system calls
6 //
7 //=============================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 2004 Andrew Lunn
12 // Copyright (C) 2004 eCosCentric Ltd
13 //
14 // eCos is free software; you can redistribute it and/or modify it under
15 // the terms of the GNU General Public License as published by the Free
16 // Software Foundation; either version 2 or (at your option) any later version.
17 //
18 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
19 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
20 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
21 // for more details.
22 //
23 // You should have received a copy of the GNU General Public License along
24 // with eCos; if not, write to the Free Software Foundation, Inc.,
25 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
26 //
27 // As a special exception, if other files instantiate templates or use macros
28 // or inline functions from this file, or you compile this file and link it
29 // with other works to produce a work based on this file, this file does not
30 // by itself cause the resulting work to be covered by the GNU General Public
31 // License. However the source code for this file must still be made available
32 // in accordance with section (3) of the GNU General Public License.
33 //
34 // This exception does not invalidate any other reasons why a work based on
35 // this file might be covered by the GNU General Public License.
36 // -------------------------------------------
37 //####ECOSGPLCOPYRIGHTEND####
38 //=============================================================================
39 //#####DESCRIPTIONBEGIN####
40 //
41 // Author(s):   Andrew Lunn
42 // Contributors:Alexander Neundorf
43 // Date:        2004-12-15
44 // Purpose:     Access to more complex system calls which require marshalling.
45 // Description: 
46 //
47 //####DESCRIPTIONEND####
48 //
49 //=============================================================================
50
51 #include <cyg/infra/cyg_type.h>
52 #include <cyg/hal/hal_diag.h>
53 #include <cyg/hal/hal_io.h>
54
55 void * cyg_hal_sys_shmat(int shmid, const void* shmaddr, int shmflg)
56 {
57    void * result;
58    void * raddr;
59    
60    result = (void *) cyg_hal_sys_ipc(CYG_HAL_SYS_IPCOP_shmat, 
61                                      shmid, 
62                                      shmflg, 
63                                      (int) (&raddr), 
64                                      (void*)shmaddr);
65    return raddr;
66 }
67
68 int cyg_hal_sys_shmget(int key, int size, int shmflg)
69 {
70   return cyg_hal_sys_ipc(CYG_HAL_SYS_IPCOP_shmget, key, size, shmflg, NULL);
71 }
72
73 int cyg_hal_sys_shmdt(const void* shmaddr)
74 {
75   return cyg_hal_sys_ipc(CYG_HAL_SYS_IPCOP_shmdt, 0, 0, 0, 
76                          ((void *) shmaddr));
77 }
78
79 int 
80 cyg_hal_sys_mmap(void *addr, unsigned long length, unsigned long prot, 
81                     unsigned long flags, unsigned long fd, unsigned long off)
82 {
83   
84   struct cyg_hal_sys_mmap_args args;
85   
86   args.addr = (unsigned long) addr;
87   args.len = length;
88   args.prot = prot = prot;
89   args.flags = flags;
90   args.fd = fd;
91   args.offset = off;
92   
93   return (cyg_hal_sys_mmapx(&args));
94