Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cfe.c « mips « libgloss - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6efd57d1ff99780058bc613f09eb1391be2da417 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/* cfe.c -- I/O code for the MIPS boards running CFE.  */

/*
 * Copyright 2001, 2002
 * Broadcom Corporation. All rights reserved.
 * 
 * This software is furnished under license and may be used and copied only
 * in accordance with the following terms and conditions.  Subject to these
 * conditions, you may download, copy, install, use, modify and distribute
 * modified or unmodified copies of this software in source and/or binary
 * form. No title or ownership is transferred hereby.
 * 
 * 1) Any source code used, modified or distributed must reproduce and
 *    retain this copyright notice and list of conditions as they appear in
 *    the source file.
 * 
 * 2) No right is granted to use any trade name, trademark, or logo of
 *    Broadcom Corporation.  The "Broadcom Corporation" name may not be
 *    used to endorse or promote products derived from this software
 *    without the prior written permission of Broadcom Corporation.
 * 
 * 3) THIS SOFTWARE IS PROVIDED "AS-IS" AND ANY EXPRESS OR IMPLIED
 *    WARRANTIES, INCLUDING BUT NOT LIMITED TO, ANY IMPLIED WARRANTIES OF
 *    MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, OR
 *    NON-INFRINGEMENT ARE DISCLAIMED. IN NO EVENT SHALL BROADCOM BE LIABLE
 *    FOR ANY DAMAGES WHATSOEVER, AND IN PARTICULAR, BROADCOM SHALL NOT BE
 *    LIABLE FOR DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 *    CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 *    SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
 *    BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
 */

#include "cfe_api.h"

char inbyte (void);
int outbyte (char c);

/* Make sure cfe_prestart is used.  It doesn't look like setting the
   entry symbol in the linker script to a symbol from that fiel will do
   this!  */
extern int _prestart;
static void *force_prestart = &_prestart;

/* The following variables are initialized to non-zero so that they'll be
   in data, rather than BSS.  Used to be that you could init variables to
   any value to put them into initialized data sections rather than BSS,
   but that decades-old idiom went out the window with gcc 3.2.  Now,
   either you compile specially (with -fno-zero-initialized-in-bss), or
   you init to non-zero.  In this case, initting to non-zero is OK (and
   even beneficial; alignment fault via jump to odd if not properly
   set up by _prestart()), so we do the latter.  */
unsigned int __cfe_handle = 0xdeadbeef;
unsigned int __cfe_entrypt = 0xdeadbeef;

/* Echo input characters?  */
int	__cfe_echo_input = 0;

/* CFE handle used to access console device.  */
static int cfe_conshandle;

char
inbyte (void)
{
  unsigned char c;
  int rv;

  while (cfe_read (cfe_conshandle, &c, 1) != 1)
    ;
  if (c == '\r')
    c = '\n';
  if (__cfe_echo_input)
    outbyte (c);
  return c;
}

int
outbyte (char c)
{
  int res;

  do
    {
      res = cfe_write (cfe_conshandle, &c, 1);
    }
  while (res == 0);
  if (c == '\n')
    outbyte ('\r');
  return 0;
}

/* Initialize hardware.  Called from crt0.  */
void
hardware_init_hook(void)
{
  cfe_init (__cfe_handle, __cfe_entrypt);
  cfe_conshandle = cfe_getstdhandle(CFE_STDHANDLE_CONSOLE);
}

/* Avoid worst-case execution hazards.  This is targetted at the SB-1
   pipe, and is much worse than it needs to be (not even counting
   the subroutine call and return).  */
void
hardware_hazard_hook(void)
{
  __asm__ __volatile__ ("	.set push		\n"
			"	.set mips32		\n"
			"	.set noreorder		\n"
			"	ssnop			\n"
			"	ssnop			\n"
			"	ssnop			\n"
			"	bnel	$0, $0, .+4	\n"
			"	ssnop			\n"
			"	.set pop		\n");
}

/* Exit back to monitor, with the given status code.  */
void
hardware_exit_hook (int status)
{
  	outbyte ('\r');
  	outbyte ('\n');
	cfe_exit (CFE_FLG_WARMSTART, status);
}

/* Structure filled in by get_mem_info.  Only the size field is
   actually used (by sbrk), so the others aren't even filled in.  */
struct s_mem
{
  unsigned int size;
  unsigned int icsize;
  unsigned int dcsize;
};

void
get_mem_info (mem)
     struct s_mem *mem;
{
  /* XXX FIXME: Fake this for now.  Should invoke cfe_enummem, but we
     don't have enough stack to do that (yet).  */
  mem->size = 0x4000000;	/* Assume 64 MB of RAM */
}