ieee1275: split up grub_machine_get_bootlocation
[grub.git] / grub-core / kern / ieee1275 / init.c
1 /*  init.c -- Initialize GRUB on the newworld mac (PPC).  */
2 /*
3  *  GRUB  --  GRand Unified Bootloader
4  *  Copyright (C) 2003,2004,2005,2007,2008,2009 Free Software Foundation, Inc.
5  *
6  *  GRUB is free software: you can redistribute it and/or modify
7  *  it under the terms of the GNU General Public License as published by
8  *  the Free Software Foundation, either version 3 of the License, or
9  *  (at your option) any later version.
10  *
11  *  GRUB is distributed in the hope that it will be useful,
12  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  *  GNU General Public License for more details.
15  *
16  *  You should have received a copy of the GNU General Public License
17  *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 #include <grub/kernel.h>
21 #include <grub/dl.h>
22 #include <grub/disk.h>
23 #include <grub/mm.h>
24 #include <grub/partition.h>
25 #include <grub/normal.h>
26 #include <grub/fs.h>
27 #include <grub/setjmp.h>
28 #include <grub/env.h>
29 #include <grub/misc.h>
30 #include <grub/time.h>
31 #include <grub/ieee1275/console.h>
32 #include <grub/ieee1275/ofdisk.h>
33 #include <grub/ieee1275/ieee1275.h>
34 #include <grub/net.h>
35 #include <grub/offsets.h>
36 #include <grub/memory.h>
37 #include <grub/loader.h>
38 #ifdef __i386__
39 #include <grub/cpu/tsc.h>
40 #endif
41 #ifdef __sparc__
42 #include <grub/machine/kernel.h>
43 #endif
44
45 /* The minimal heap size we can live with. */
46 #define HEAP_MIN_SIZE           (unsigned long) (2 * 1024 * 1024)
47
48 /* The maximum heap size we're going to claim */
49 #ifdef __i386__
50 #define HEAP_MAX_SIZE           (unsigned long) (64 * 1024 * 1024)
51 #else
52 #define HEAP_MAX_SIZE           (unsigned long) (32 * 1024 * 1024)
53 #endif
54
55 /* If possible, we will avoid claiming heap above this address, because it
56    seems to cause relocation problems with OSes that link at 4 MiB */
57 #ifdef __i386__
58 #define HEAP_MAX_ADDR           (unsigned long) (64 * 1024 * 1024)
59 #else
60 #define HEAP_MAX_ADDR           (unsigned long) (32 * 1024 * 1024)
61 #endif
62
63 extern char _start[];
64 extern char _end[];
65
66 #ifdef __sparc__
67 grub_addr_t grub_ieee1275_original_stack;
68 #endif
69
70 void
71 grub_exit (void)
72 {
73   grub_ieee1275_exit ();
74 }
75
76 /* Translate an OF filesystem path (separated by backslashes), into a GRUB
77    path (separated by forward slashes).  */
78 static void
79 grub_translate_ieee1275_path (char *filepath)
80 {
81   char *backslash;
82
83   backslash = grub_strchr (filepath, '\\');
84   while (backslash != 0)
85     {
86       *backslash = '/';
87       backslash = grub_strchr (filepath, '\\');
88     }
89 }
90
91 void (*grub_ieee1275_net_config) (const char *dev, char **device, char **path,
92                                   char *bootpath);
93 void
94 grub_machine_get_bootlocation (char **device, char **path)
95 {
96   char *bootpath;
97   char *filename;
98   char *type;
99
100   bootpath = grub_ieee1275_get_boot_dev ();
101   if (! bootpath)
102     return;
103
104   /* Transform an OF device path to a GRUB path.  */
105
106   type = grub_ieee1275_get_device_type (bootpath);
107   if (type && grub_strcmp (type, "network") == 0)
108     {
109       char *dev, *canon;
110       char *ptr;
111       dev = grub_ieee1275_get_aliasdevname (bootpath);
112       canon = grub_ieee1275_canonicalise_devname (dev);
113       ptr = canon + grub_strlen (canon) - 1;
114       while (ptr > canon && (*ptr == ',' || *ptr == ':'))
115         ptr--;
116       ptr++;
117       *ptr = 0;
118
119       if (grub_ieee1275_net_config)
120         grub_ieee1275_net_config (canon, device, path, bootpath);
121       grub_free (dev);
122       grub_free (canon);
123     }
124   else
125     *device = grub_ieee1275_encode_devname (bootpath);
126   grub_free (type);
127
128   filename = grub_ieee1275_get_filename (bootpath);
129   if (filename)
130     {
131       char *lastslash = grub_strrchr (filename, '\\');
132
133       /* Truncate at last directory.  */
134       if (lastslash)
135         {
136           *lastslash = '\0';
137           grub_translate_ieee1275_path (filename);
138
139           *path = filename;
140         }
141     }
142   grub_free (bootpath);
143 }
144
145 /* Claim some available memory in the first /memory node. */
146 #ifdef __sparc__
147 static void 
148 grub_claim_heap (void)
149 {
150   grub_mm_init_region ((void *) (grub_modules_get_end ()
151                                  + GRUB_KERNEL_MACHINE_STACK_SIZE), 0x200000);
152 }
153 #else
154 /* Helper for grub_claim_heap.  */
155 static int
156 heap_init (grub_uint64_t addr, grub_uint64_t len, grub_memory_type_t type,
157            void *data)
158 {
159   unsigned long *total = data;
160
161   if (type != GRUB_MEMORY_AVAILABLE)
162     return 0;
163
164   if (grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_NO_PRE1_5M_CLAIM))
165     {
166       if (addr + len <= 0x180000)
167         return 0;
168
169       if (addr < 0x180000)
170         {
171           len = addr + len - 0x180000;
172           addr = 0x180000;
173         }
174     }
175   len -= 1; /* Required for some firmware.  */
176
177   /* Never exceed HEAP_MAX_SIZE  */
178   if (*total + len > HEAP_MAX_SIZE)
179     len = HEAP_MAX_SIZE - *total;
180
181   /* Avoid claiming anything above HEAP_MAX_ADDR, if possible. */
182   if ((addr < HEAP_MAX_ADDR) &&                         /* if it's too late, don't bother */
183       (addr + len > HEAP_MAX_ADDR) &&                           /* if it wasn't available anyway, don't bother */
184       (*total + (HEAP_MAX_ADDR - addr) > HEAP_MIN_SIZE))        /* only limit ourselves when we can afford to */
185      len = HEAP_MAX_ADDR - addr;
186
187   /* In theory, firmware should already prevent this from happening by not
188      listing our own image in /memory/available.  The check below is intended
189      as a safeguard in case that doesn't happen.  However, it doesn't protect
190      us from corrupting our module area, which extends up to a
191      yet-undetermined region above _end.  */
192   if ((addr < (grub_addr_t) _end) && ((addr + len) > (grub_addr_t) _start))
193     {
194       grub_printf ("Warning: attempt to claim over our own code!\n");
195       len = 0;
196     }
197
198   if (len)
199     {
200       grub_err_t err;
201       /* Claim and use it.  */
202       err = grub_claimmap (addr, len);
203       if (err)
204         return err;
205       grub_mm_init_region ((void *) (grub_addr_t) addr, len);
206     }
207
208   *total += len;
209   if (*total >= HEAP_MAX_SIZE)
210     return 1;
211
212   return 0;
213 }
214
215 static void 
216 grub_claim_heap (void)
217 {
218   unsigned long total = 0;
219
220   if (grub_ieee1275_test_flag (GRUB_IEEE1275_FLAG_FORCE_CLAIM))
221     heap_init (GRUB_IEEE1275_STATIC_HEAP_START, GRUB_IEEE1275_STATIC_HEAP_LEN,
222                1, &total);
223   else
224     grub_machine_mmap_iterate (heap_init, &total);
225 }
226 #endif
227
228 static void
229 grub_parse_cmdline (void)
230 {
231   grub_ssize_t actual;
232   char args[256];
233
234   if (grub_ieee1275_get_property (grub_ieee1275_chosen, "bootargs", &args,
235                                   sizeof args, &actual) == 0
236       && actual > 1)
237     {
238       int i = 0;
239
240       while (i < actual)
241         {
242           char *command = &args[i];
243           char *end;
244           char *val;
245
246           end = grub_strchr (command, ';');
247           if (end == 0)
248             i = actual; /* No more commands after this one.  */
249           else
250             {
251               *end = '\0';
252               i += end - command + 1;
253               while (grub_isspace(args[i]))
254                 i++;
255             }
256
257           /* Process command.  */
258           val = grub_strchr (command, '=');
259           if (val)
260             {
261               *val = '\0';
262               grub_env_set (command, val + 1);
263             }
264         }
265     }
266 }
267
268 grub_addr_t grub_modbase;
269
270 void
271 grub_machine_init (void)
272 {
273   grub_modbase = ALIGN_UP((grub_addr_t) _end 
274                           + GRUB_KERNEL_MACHINE_MOD_GAP,
275                           GRUB_KERNEL_MACHINE_MOD_ALIGN);
276   grub_ieee1275_init ();
277
278   grub_console_init_early ();
279   grub_claim_heap ();
280   grub_console_init_lately ();
281   grub_ofdisk_init ();
282
283   grub_parse_cmdline ();
284
285 #ifdef __i386__
286   grub_tsc_init ();
287 #else
288   grub_install_get_time_ms (grub_rtc_get_time_ms);
289 #endif
290 }
291
292 void
293 grub_machine_fini (int flags)
294 {
295   if (flags & GRUB_LOADER_FLAG_NORETURN)
296     {
297       grub_ofdisk_fini ();
298       grub_console_fini ();
299     }
300 }
301
302 grub_uint64_t
303 grub_rtc_get_time_ms (void)
304 {
305   grub_uint32_t msecs = 0;
306
307   grub_ieee1275_milliseconds (&msecs);
308
309   return msecs;
310 }