~ubuntu-branches/ubuntu/trusty/grub2/trusty-updates

« back to all changes in this revision

Viewing changes to grub-core/kern/i386/coreboot/init.c

Tags: upstream-1.99~20101122
ImportĀ upstreamĀ versionĀ 1.99~20101122

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 *  GRUB  --  GRand Unified Bootloader
 
3
 *  Copyright (C) 2002,2003,2004,2005,2006,2007,2008,2009  Free Software Foundation, Inc.
 
4
 *
 
5
 *  GRUB is free software: you can redistribute it and/or modify
 
6
 *  it under the terms of the GNU General Public License as published by
 
7
 *  the Free Software Foundation, either version 3 of the License, or
 
8
 *  (at your option) any later version.
 
9
 *
 
10
 *  GRUB is distributed in the hope that it will be useful,
 
11
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
13
 *  GNU General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
 
17
 */
 
18
 
 
19
#include <grub/kernel.h>
 
20
#include <grub/mm.h>
 
21
#include <grub/machine/time.h>
 
22
#include <grub/machine/memory.h>
 
23
#include <grub/machine/console.h>
 
24
#include <grub/offsets.h>
 
25
#include <grub/types.h>
 
26
#include <grub/err.h>
 
27
#include <grub/dl.h>
 
28
#include <grub/misc.h>
 
29
#include <grub/loader.h>
 
30
#include <grub/env.h>
 
31
#include <grub/cache.h>
 
32
#include <grub/time.h>
 
33
#include <grub/symbol.h>
 
34
#include <grub/cpu/io.h>
 
35
#include <grub/cpu/floppy.h>
 
36
#include <grub/cpu/tsc.h>
 
37
#ifdef GRUB_MACHINE_QEMU
 
38
#include <grub/machine/kernel.h>
 
39
#endif
 
40
 
 
41
extern char _start[];
 
42
extern char _end[];
 
43
 
 
44
grub_uint32_t
 
45
grub_get_rtc (void)
 
46
{
 
47
  grub_fatal ("grub_get_rtc() is not implemented.\n");
 
48
}
 
49
 
 
50
void
 
51
grub_exit (void)
 
52
{
 
53
  /* We can't use grub_fatal() in this function.  This would create an infinite
 
54
     loop, since grub_fatal() calls grub_abort() which in turn calls grub_exit().  */
 
55
  while (1)
 
56
    grub_cpu_idle ();
 
57
}
 
58
 
 
59
void
 
60
grub_machine_init (void)
 
61
{
 
62
#ifdef GRUB_MACHINE_QEMU
 
63
  grub_qemu_init_cirrus ();
 
64
#endif
 
65
  /* Initialize the console as early as possible.  */
 
66
  grub_vga_text_init ();
 
67
 
 
68
  auto int NESTED_FUNC_ATTR heap_init (grub_uint64_t, grub_uint64_t, 
 
69
                                       grub_memory_type_t);
 
70
  int NESTED_FUNC_ATTR heap_init (grub_uint64_t addr, grub_uint64_t size,
 
71
                                  grub_memory_type_t type)
 
72
  {
 
73
#if GRUB_CPU_SIZEOF_VOID_P == 4
 
74
    /* Restrict ourselves to 32-bit memory space.  */
 
75
    if (addr > GRUB_ULONG_MAX)
 
76
      return 0;
 
77
    if (addr + size > GRUB_ULONG_MAX)
 
78
      size = GRUB_ULONG_MAX - addr;
 
79
#endif
 
80
 
 
81
    if (type != GRUB_MEMORY_AVAILABLE)
 
82
      return 0;
 
83
 
 
84
    /* Avoid the lower memory.  */
 
85
    if (addr < GRUB_MEMORY_MACHINE_LOWER_SIZE)
 
86
      {
 
87
        if (addr + size <= GRUB_MEMORY_MACHINE_LOWER_SIZE)
 
88
          return 0;
 
89
        else
 
90
          {
 
91
            size -= GRUB_MEMORY_MACHINE_LOWER_SIZE - addr;
 
92
            addr = GRUB_MEMORY_MACHINE_LOWER_SIZE;
 
93
          }
 
94
      }
 
95
 
 
96
    grub_mm_init_region ((void *) (grub_addr_t) addr, (grub_size_t) size);
 
97
 
 
98
    return 0;
 
99
  }
 
100
 
 
101
#if defined (GRUB_MACHINE_MULTIBOOT) || defined (GRUB_MACHINE_QEMU)
 
102
  grub_machine_mmap_init ();
 
103
#endif
 
104
  grub_machine_mmap_iterate (heap_init);
 
105
 
 
106
  grub_tsc_init ();
 
107
}
 
108
 
 
109
void
 
110
grub_machine_set_prefix (void)
 
111
{
 
112
  /* Initialize the prefix.  */
 
113
  grub_env_set ("prefix", grub_prefix);
 
114
}
 
115
 
 
116
void
 
117
grub_machine_fini (void)
 
118
{
 
119
  grub_vga_text_fini ();
 
120
  grub_stop_floppy ();
 
121
}
 
122
 
 
123
/* Return the end of the core image.  */
 
124
grub_addr_t
 
125
grub_arch_modules_addr (void)
 
126
{
 
127
#ifdef GRUB_MACHINE_QEMU
 
128
  return grub_core_entry_addr + grub_kernel_image_size;
 
129
#else
 
130
  return ALIGN_UP((grub_addr_t) _end, GRUB_KERNEL_MACHINE_MOD_ALIGN);
 
131
#endif
 
132
}