]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/cygmon/v2_0/misc/generic_mem.c
Initial revision
[karo-tx-redboot.git] / packages / cygmon / v2_0 / misc / generic_mem.c
1 //==========================================================================
2 //
3 //      generic_mem.c
4 //
5 //      Routines for reading and writing memory.
6 //
7 //==========================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12 //
13 // eCos is free software; you can redistribute it and/or modify it under
14 // the terms of the GNU General Public License as published by the Free
15 // Software Foundation; either version 2 or (at your option) any later version.
16 //
17 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 // for more details.
21 //
22 // You should have received a copy of the GNU General Public License along
23 // with eCos; if not, write to the Free Software Foundation, Inc.,
24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 //
26 // As a special exception, if other files instantiate templates or use macros
27 // or inline functions from this file, or you compile this file and link it
28 // with other works to produce a work based on this file, this file does not
29 // by itself cause the resulting work to be covered by the GNU General Public
30 // License. However the source code for this file must still be made available
31 // in accordance with section (3) of the GNU General Public License.
32 //
33 // This exception does not invalidate any other reasons why a work based on
34 // this file might be covered by the GNU General Public License.
35 //
36 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 // at http://sources.redhat.com/ecos/ecos-license/
38 // -------------------------------------------
39 //####ECOSGPLCOPYRIGHTEND####
40 //==========================================================================
41 //#####DESCRIPTIONBEGIN####
42 //
43 // Author(s):    
44 // Contributors: gthomas, dmoseley
45 // Date:         1999-10-20
46 // Purpose:      
47 // Description:  It may be appropriate to relay directly into the stubs
48 //               implementation of read memory, without board specific
49 //               considerations such as checking the allowed ranges of
50 //               addresses. Perhaps there needs to be some consideration
51 //               of address spaces or, masking addresses.
52 //
53 //               This file implements a default version of reading and writing
54 //               memory when none of this is an issue
55 //               
56 //
57 //####DESCRIPTIONEND####
58 //
59 //=========================================================================
60
61 #ifdef HAVE_BSP
62 #include <bsp/bsp.h>
63 #include "cpu_info.h"
64 #endif
65 #include "board.h"
66 #include "monitor.h"
67 #include "tservice.h"
68
69 #ifndef HAVE_BSP
70 #include "generic-stub.h"
71 #endif
72
73
74 int
75 read_memory (mem_addr_t *src, int size, int amt, char *dst)
76 {
77 #if defined(HAVE_BSP) && !defined(USE_ECOS_HAL_SAFE_MEMORY)
78     return (bsp_memory_read((unsigned char *)src->addr, MEM_ADDR_ASI(src),
79                             size << 3, amt, dst) != amt);
80 #else
81   int totamt = size * amt;
82   return (totamt != __read_mem_safe (dst, (void*)src->addr, totamt));
83 #endif
84 }
85
86 int
87 write_memory (mem_addr_t *dst, int size, int amt, char *src)
88 {
89 #if defined(HAVE_BSP) && !defined(USE_ECOS_HAL_SAFE_MEMORY)
90     return (bsp_memory_write((unsigned char *)dst->addr, MEM_ADDR_ASI(dst),
91                              size << 3, amt, src) != amt);
92 #else
93   int totamt = size * amt;
94   return (totamt != __write_mem_safe (src, (void*)dst->addr, totamt));
95 #endif
96 }
97
98
99