blob: 30cb9a207dd97901e3d8bebd5e113f48e7f7cdf6 [file] [log] [blame]
wdenk2262cfe2002-11-18 00:14:45 +00001/*
2 * (C) Copyright 2002
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +02003 * Daniel Engstr�m, Omicron Ceti AB, daniel@omicron.se
wdenk8bde7f72003-06-27 21:31:46 +00004 *
wdenk2262cfe2002-11-18 00:14:45 +00005 * (C) Copyright 2002
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk8bde7f72003-06-27 21:31:46 +00007 *
wdenk2262cfe2002-11-18 00:14:45 +00008 * (C) Copyright 2002
9 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10 * Marius Groeger <mgroeger@sysgo.de>
11 *
12 * See file CREDITS for list of people who contributed to this
13 * project.
14 *
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License as
17 * published by the Free Software Foundation; either version 2 of
18 * the License, or (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, write to the Free Software
27 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
28 * MA 02111-1307 USA
29 */
30
31#include <common.h>
32#include <watchdog.h>
33#include <command.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020034#include <stdio_dev.h>
Peter Tyser561858e2008-11-03 09:30:59 -060035#include <timestamp.h>
wdenk2262cfe2002-11-18 00:14:45 +000036#include <version.h>
37#include <malloc.h>
wdenk2262cfe2002-11-18 00:14:45 +000038#include <net.h>
39#include <ide.h>
Graeme Russbf165002010-04-24 00:05:47 +100040#include <serial.h>
wdenk7a8e9bed2003-05-31 18:35:21 +000041#include <asm/u-boot-i386.h>
Graeme Russ1c409bc2009-11-24 20:04:21 +110042#include <elf.h>
wdenk2262cfe2002-11-18 00:14:45 +000043
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +020044#ifdef CONFIG_BITBANGMII
45#include <miiphy.h>
46#endif
47
Wolfgang Denkd87080b2006-03-31 18:32:53 +020048DECLARE_GLOBAL_DATA_PTR;
49
Graeme Russ1c409bc2009-11-24 20:04:21 +110050/* Exports from the Linker Script */
Graeme Russ067f9b12010-10-07 20:03:31 +110051extern ulong __text_start;
Graeme Russ22191422010-10-07 20:03:32 +110052extern ulong __data_end;
Graeme Russ067f9b12010-10-07 20:03:31 +110053extern ulong __rel_dyn_start;
54extern ulong __rel_dyn_end;
55extern ulong __bss_start;
Graeme Russf2ff75c2010-10-07 20:03:33 +110056extern ulong __bss_end;
Graeme Russ2fb1bc42010-04-24 00:05:44 +100057
wdenk2262cfe2002-11-18 00:14:45 +000058const char version_string[] =
Peter Tyser561858e2008-11-03 09:30:59 -060059 U_BOOT_VERSION" (" U_BOOT_DATE " - " U_BOOT_TIME ")";
wdenk2262cfe2002-11-18 00:14:45 +000060
wdenk2262cfe2002-11-18 00:14:45 +000061/************************************************************************
62 * Init Utilities *
63 ************************************************************************
64 * Some of this code should be moved into the core functions,
65 * or dropped completely,
66 * but let's get it working (again) first...
67 */
wdenk2262cfe2002-11-18 00:14:45 +000068static int init_baudrate (void)
69{
wdenk7a8e9bed2003-05-31 18:35:21 +000070 char tmp[64]; /* long enough for environment variables */
Wolfgang Denkcdb74972010-07-24 21:55:43 +020071 int i = getenv_f("baudrate", tmp, 64);
wdenk2262cfe2002-11-18 00:14:45 +000072
wdenk7a8e9bed2003-05-31 18:35:21 +000073 gd->baudrate = (i != 0)
wdenk2262cfe2002-11-18 00:14:45 +000074 ? (int) simple_strtoul (tmp, NULL, 10)
75 : CONFIG_BAUDRATE;
76
77 return (0);
78}
79
80static int display_banner (void)
81{
82
83 printf ("\n\n%s\n\n", version_string);
Graeme Russ1c409bc2009-11-24 20:04:21 +110084/*
wdenk2262cfe2002-11-18 00:14:45 +000085 printf ("U-Boot code: %08lX -> %08lX data: %08lX -> %08lX\n"
86 " BSS: %08lX -> %08lX stack: %08lX -> %08lX\n",
87 i386boot_start, i386boot_romdata_start-1,
88 i386boot_romdata_dest, i386boot_romdata_dest+i386boot_romdata_size-1,
89 i386boot_bss_start, i386boot_bss_start+i386boot_bss_size-1,
wdenk8bde7f72003-06-27 21:31:46 +000090 i386boot_bss_start+i386boot_bss_size,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020091 i386boot_bss_start+i386boot_bss_size+CONFIG_SYS_STACK_SIZE-1);
wdenk8bde7f72003-06-27 21:31:46 +000092
Graeme Russ1c409bc2009-11-24 20:04:21 +110093*/
wdenk2262cfe2002-11-18 00:14:45 +000094
95 return (0);
96}
97
98/*
99 * WARNING: this code looks "cleaner" than the PowerPC version, but
100 * has the disadvantage that you either get nothing, or everything.
101 * On PowerPC, you might see "DRAM: " before the system hangs - which
102 * gives a simple yet clear indication which part of the
103 * initialization if failing.
104 */
105static int display_dram_config (void)
106{
wdenk2262cfe2002-11-18 00:14:45 +0000107 int i;
108
109 puts ("DRAM Configuration:\n");
110
111 for (i=0; i<CONFIG_NR_DRAM_BANKS; i++) {
112 printf ("Bank #%d: %08lx ", i, gd->bd->bi_dram[i].start);
113 print_size (gd->bd->bi_dram[i].size, "\n");
114 }
wdenk8bde7f72003-06-27 21:31:46 +0000115
wdenk2262cfe2002-11-18 00:14:45 +0000116 return (0);
117}
118
119static void display_flash_config (ulong size)
120{
121 puts ("Flash: ");
122 print_size (size, "\n");
123}
124
wdenk2262cfe2002-11-18 00:14:45 +0000125/*
126 * Breath some life into the board...
127 *
128 * Initialize an SMC for serial comms, and carry out some hardware
129 * tests.
130 *
131 * The first part of initialization is running from Flash memory;
132 * its main purpose is to initialize the RAM so that we
133 * can relocate the monitor code to RAM.
134 */
135
Graeme Russ1c409bc2009-11-24 20:04:21 +1100136
wdenk2262cfe2002-11-18 00:14:45 +0000137/*
138 * All attempts to come up with a "common" initialization sequence
139 * that works for all boards and architectures failed: some of the
140 * requirements are just _too_ different. To get rid of the resulting
141 * mess of board dependend #ifdef'ed code we now make the whole
142 * initialization sequence configurable to the user.
143 *
144 * The requirements for any new initalization function is simple: it
145 * receives a pointer to the "global data" structure as it's only
146 * argument, and returns an integer return code, where 0 means
147 * "continue" and != 0 means "fatal error, hang the system".
148 */
149typedef int (init_fnc_t) (void);
150
151init_fnc_t *init_sequence[] = {
Graeme Russ1c409bc2009-11-24 20:04:21 +1100152 cpu_init_r, /* basic cpu dependent setup */
153 board_early_init_r, /* basic board dependent setup */
wdenk2262cfe2002-11-18 00:14:45 +0000154 dram_init, /* configure available RAM banks */
wdenk2262cfe2002-11-18 00:14:45 +0000155 interrupt_init, /* set up exceptions */
wdenk8bde7f72003-06-27 21:31:46 +0000156 timer_init,
wdenk2262cfe2002-11-18 00:14:45 +0000157 env_init, /* initialize environment */
158 init_baudrate, /* initialze baudrate settings */
159 serial_init, /* serial communications setup */
160 display_banner,
161 display_dram_config,
162
163 NULL,
164};
165
Graeme Russ3ef96de2008-09-07 07:08:42 +1000166gd_t *gd;
wdenk2262cfe2002-11-18 00:14:45 +0000167
Graeme Russ1c409bc2009-11-24 20:04:21 +1100168/*
169 * Load U-Boot into RAM, initialize BSS, perform relocation adjustments
170 */
Graeme Russ161b3582010-10-07 20:03:29 +1100171void board_init_f (ulong gdp)
Graeme Russ1c409bc2009-11-24 20:04:21 +1100172{
Graeme Russ067f9b12010-10-07 20:03:31 +1100173 void *text_start = &__text_start;
Graeme Russ22191422010-10-07 20:03:32 +1100174 void *data_end = &__data_end;
Graeme Russf2ff75c2010-10-07 20:03:33 +1100175 void *rel_dyn_start = &__rel_dyn_start;
176 void *rel_dyn_end = &__rel_dyn_end;
Graeme Russ067f9b12010-10-07 20:03:31 +1100177 void *bss_start = &__bss_start;
Graeme Russf2ff75c2010-10-07 20:03:33 +1100178 void *bss_end = &__bss_end;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100179
Graeme Russf2ff75c2010-10-07 20:03:33 +1100180 ulong *dst_addr;
181 ulong *src_addr;
182 ulong *end_addr;
183
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000184 void *dest_addr;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100185 ulong rel_offset;
Graeme Russf2ff75c2010-10-07 20:03:33 +1100186 Elf32_Rel *re_src;
187 Elf32_Rel *re_end;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100188
Graeme Russf2ff75c2010-10-07 20:03:33 +1100189 /* Calculate destination RAM Address and relocation offset */
190 dest_addr = (void *)gdp - (bss_end - text_start);
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000191 rel_offset = text_start - dest_addr;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100192
Graeme Russc868af32010-10-07 20:03:33 +1100193 /* Perform low-level initialization only when cold booted */
194 if (((gd_t *)gdp)->flags & GD_FLG_COLD_BOOT) {
195 /* First stage CPU initialization */
196 if (cpu_init_f() != 0)
197 hang();
Graeme Russ1c409bc2009-11-24 20:04:21 +1100198
Graeme Russc868af32010-10-07 20:03:33 +1100199 /* First stage Board initialization */
200 if (board_early_init_f() != 0)
201 hang();
202 }
Graeme Russ1c409bc2009-11-24 20:04:21 +1100203
204 /* Copy U-Boot into RAM */
Graeme Russf2ff75c2010-10-07 20:03:33 +1100205 dst_addr = (ulong *)dest_addr;
Graeme Russc868af32010-10-07 20:03:33 +1100206 src_addr = (ulong *)(text_start + ((gd_t *)gdp)->load_off);
207 end_addr = (ulong *)(data_end + ((gd_t *)gdp)->load_off);
Graeme Russf2ff75c2010-10-07 20:03:33 +1100208
209 while (src_addr < end_addr)
210 *dst_addr++ = *src_addr++;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100211
212 /* Clear BSS */
Graeme Russf2ff75c2010-10-07 20:03:33 +1100213 dst_addr = (ulong *)(bss_start - rel_offset);
214 end_addr = (ulong *)(bss_end - rel_offset);
215
216 while (dst_addr < end_addr)
217 *dst_addr++ = 0x00000000;
Graeme Russ1c409bc2009-11-24 20:04:21 +1100218
219 /* Perform relocation adjustments */
Graeme Russc868af32010-10-07 20:03:33 +1100220 re_src = (Elf32_Rel *)(rel_dyn_start + ((gd_t *)gdp)->load_off);
221 re_end = (Elf32_Rel *)(rel_dyn_end + ((gd_t *)gdp)->load_off);
Graeme Russf2ff75c2010-10-07 20:03:33 +1100222
223 do {
Wolfgang Denk14d0a022010-10-07 21:51:12 +0200224 if (re_src->r_offset >= CONFIG_SYS_TEXT_BASE)
225 if (*(Elf32_Addr *)(re_src->r_offset - rel_offset) >= CONFIG_SYS_TEXT_BASE)
Graeme Russf2ff75c2010-10-07 20:03:33 +1100226 *(Elf32_Addr *)(re_src->r_offset - rel_offset) -= rel_offset;
227 } while (re_src++ < re_end);
Graeme Russ1c409bc2009-11-24 20:04:21 +1100228
Graeme Russ161b3582010-10-07 20:03:29 +1100229 ((gd_t *)gdp)->reloc_off = rel_offset;
230 ((gd_t *)gdp)->flags |= GD_FLG_RELOC;
231
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000232 /* Enter the relocated U-Boot! */
Graeme Russ161b3582010-10-07 20:03:29 +1100233 (board_init_r - rel_offset)((gd_t *)gdp, (ulong)dest_addr);
234
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000235 /* NOTREACHED - board_init_f() does not return */
Graeme Russ1c409bc2009-11-24 20:04:21 +1100236 while(1);
237}
238
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000239void board_init_r(gd_t *id, ulong dest_addr)
wdenk2262cfe2002-11-18 00:14:45 +0000240{
wdenk2262cfe2002-11-18 00:14:45 +0000241 char *s;
242 int i;
243 ulong size;
wdenk2262cfe2002-11-18 00:14:45 +0000244 static bd_t bd_data;
245 init_fnc_t **init_fnc_ptr;
wdenk8bde7f72003-06-27 21:31:46 +0000246
wdenk2262cfe2002-11-18 00:14:45 +0000247 show_boot_progress(0x21);
248
Graeme Russ1c409bc2009-11-24 20:04:21 +1100249 gd = id;
wdenk93f6a672004-07-01 20:28:03 +0000250 /* compiler optimization barrier needed for GCC >= 3.4 */
251 __asm__ __volatile__("": : :"memory");
wdenk8bde7f72003-06-27 21:31:46 +0000252
wdenk2262cfe2002-11-18 00:14:45 +0000253 gd->bd = &bd_data;
254 memset (gd->bd, 0, sizeof (bd_t));
255 show_boot_progress(0x22);
256
wdenk7a8e9bed2003-05-31 18:35:21 +0000257 gd->baudrate = CONFIG_BAUDRATE;
wdenk8bde7f72003-06-27 21:31:46 +0000258
Graeme Russ2fb1bc42010-04-24 00:05:44 +1000259 mem_malloc_init((((ulong)dest_addr - CONFIG_SYS_MALLOC_LEN)+3)&~3,
Graeme Russ1c409bc2009-11-24 20:04:21 +1100260 CONFIG_SYS_MALLOC_LEN);
261
wdenk2262cfe2002-11-18 00:14:45 +0000262 for (init_fnc_ptr = init_sequence, i=0; *init_fnc_ptr; ++init_fnc_ptr, i++) {
263 show_boot_progress(0xa130|i);
264
265 if ((*init_fnc_ptr)() != 0) {
266 hang ();
267 }
268 }
269 show_boot_progress(0x23);
270
Graeme Russbf165002010-04-24 00:05:47 +1000271#ifdef CONFIG_SERIAL_MULTI
272 serial_initialize();
273#endif
wdenk2262cfe2002-11-18 00:14:45 +0000274 /* configure available FLASH banks */
275 size = flash_init();
276 display_flash_config(size);
277 show_boot_progress(0x24);
278
279 show_boot_progress(0x25);
280
281 /* initialize environment */
282 env_relocate ();
283 show_boot_progress(0x26);
284
285
Graeme Russ535ad2d2010-04-24 00:05:36 +1000286#ifdef CONFIG_CMD_NET
wdenk2262cfe2002-11-18 00:14:45 +0000287 /* IP Address */
288 bd_data.bi_ip_addr = getenv_IPaddr ("ipaddr");
Graeme Russ535ad2d2010-04-24 00:05:36 +1000289#endif
wdenk2262cfe2002-11-18 00:14:45 +0000290
wdenk2262cfe2002-11-18 00:14:45 +0000291#if defined(CONFIG_PCI)
292 /*
293 * Do pci configuration
294 */
295 pci_init();
296#endif
297
298 show_boot_progress(0x27);
299
300
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +0200301 stdio_init ();
wdenk2262cfe2002-11-18 00:14:45 +0000302
wdenk27b207f2003-07-24 23:38:38 +0000303 jumptable_init ();
wdenk8bde7f72003-06-27 21:31:46 +0000304
wdenk2262cfe2002-11-18 00:14:45 +0000305 /* Initialize the console (after the relocation and devices init) */
306 console_init_r();
wdenk2262cfe2002-11-18 00:14:45 +0000307
308#ifdef CONFIG_MISC_INIT_R
309 /* miscellaneous platform dependent initialisations */
310 misc_init_r();
311#endif
312
Jon Loeliger67350562007-07-09 18:05:38 -0500313#if defined(CONFIG_CMD_PCMCIA) && !defined(CONFIG_CMD_IDE)
wdenk2262cfe2002-11-18 00:14:45 +0000314 WATCHDOG_RESET();
315 puts ("PCMCIA:");
316 pcmcia_init();
317#endif
318
Jon Loeliger67350562007-07-09 18:05:38 -0500319#if defined(CONFIG_CMD_KGDB)
wdenk2262cfe2002-11-18 00:14:45 +0000320 WATCHDOG_RESET();
321 puts("KGDB: ");
322 kgdb_init();
323#endif
324
325 /* enable exceptions */
wdenk7a8e9bed2003-05-31 18:35:21 +0000326 enable_interrupts();
wdenk2262cfe2002-11-18 00:14:45 +0000327 show_boot_progress(0x28);
328
wdenk2262cfe2002-11-18 00:14:45 +0000329#ifdef CONFIG_STATUS_LED
330 status_led_set (STATUS_LED_BOOT, STATUS_LED_BLINKING);
331#endif
332
wdenk7a8e9bed2003-05-31 18:35:21 +0000333 udelay(20);
wdenk2262cfe2002-11-18 00:14:45 +0000334
335 set_timer (0);
336
337 /* Initialize from environment */
338 if ((s = getenv ("loadaddr")) != NULL) {
339 load_addr = simple_strtoul (s, NULL, 16);
340 }
Jon Loeliger67350562007-07-09 18:05:38 -0500341#if defined(CONFIG_CMD_NET)
wdenk2262cfe2002-11-18 00:14:45 +0000342 if ((s = getenv ("bootfile")) != NULL) {
343 copy_filename (BootFile, s, sizeof (BootFile));
344 }
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500345#endif
wdenk2262cfe2002-11-18 00:14:45 +0000346
347 WATCHDOG_RESET();
348
Jon Loeliger67350562007-07-09 18:05:38 -0500349#if defined(CONFIG_CMD_IDE)
wdenk2262cfe2002-11-18 00:14:45 +0000350 WATCHDOG_RESET();
351 puts("IDE: ");
352 ide_init();
Jon Loeligerb3aff0c2007-07-10 11:19:50 -0500353#endif
wdenk2262cfe2002-11-18 00:14:45 +0000354
Jon Loeliger67350562007-07-09 18:05:38 -0500355#if defined(CONFIG_CMD_SCSI)
wdenk2262cfe2002-11-18 00:14:45 +0000356 WATCHDOG_RESET();
357 puts("SCSI: ");
358 scsi_init();
359#endif
360
Jon Loeliger67350562007-07-09 18:05:38 -0500361#if defined(CONFIG_CMD_DOC)
wdenk2262cfe2002-11-18 00:14:45 +0000362 WATCHDOG_RESET();
wdenk7a8e9bed2003-05-31 18:35:21 +0000363 puts("DOC: ");
wdenk2262cfe2002-11-18 00:14:45 +0000364 doc_init();
365#endif
366
Luigi 'Comio' Mantellini310cecb2009-10-10 12:42:21 +0200367#ifdef CONFIG_BITBANGMII
368 bb_miiphy_init();
369#endif
Jon Loeliger67350562007-07-09 18:05:38 -0500370#if defined(CONFIG_CMD_NET)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200371#if defined(CONFIG_NET_MULTI)
wdenk2262cfe2002-11-18 00:14:45 +0000372 WATCHDOG_RESET();
373 puts("Net: ");
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200374#endif
wdenk2262cfe2002-11-18 00:14:45 +0000375 eth_initialize(gd->bd);
376#endif
377
Jon Loeliger67350562007-07-09 18:05:38 -0500378#if ( defined(CONFIG_CMD_NET)) && (0)
Marian Balakowicz63ff0042005-10-28 22:30:33 +0200379 WATCHDOG_RESET();
380# ifdef DEBUG
381 puts ("Reset Ethernet PHY\n");
382# endif
383 reset_phy();
384#endif
385
wdenk2262cfe2002-11-18 00:14:45 +0000386#ifdef CONFIG_LAST_STAGE_INIT
387 WATCHDOG_RESET();
388 /*
389 * Some parts can be only initialized if all others (like
390 * Interrupts) are up and running (i.e. the PC-style ISA
391 * keyboard).
392 */
393 last_stage_init();
394#endif
395
396
wdenk2262cfe2002-11-18 00:14:45 +0000397#ifdef CONFIG_POST
398 post_run (NULL, POST_RAM | post_bootmode_get(0));
wdenk2262cfe2002-11-18 00:14:45 +0000399#endif
wdenk8bde7f72003-06-27 21:31:46 +0000400
401
wdenk2262cfe2002-11-18 00:14:45 +0000402 show_boot_progress(0x29);
wdenk8bde7f72003-06-27 21:31:46 +0000403
wdenk2262cfe2002-11-18 00:14:45 +0000404 /* main_loop() can return to retry autoboot, if so just run it again. */
405 for (;;) {
wdenk7a8e9bed2003-05-31 18:35:21 +0000406 main_loop();
wdenk2262cfe2002-11-18 00:14:45 +0000407 }
408
409 /* NOTREACHED - no way out of command loop except booting */
410}
411
412void hang (void)
413{
414 puts ("### ERROR ### Please RESET the board ###\n");
415 for (;;);
416}
Mike Frysingera4986452008-04-13 19:42:19 -0400417
Graeme Russe69c0cb2010-08-22 16:25:58 +1000418unsigned long do_go_exec (ulong (*entry)(int, char * const []), int argc, char * const argv[])
Mike Frysingera4986452008-04-13 19:42:19 -0400419{
Graeme Russe69c0cb2010-08-22 16:25:58 +1000420 unsigned long ret = 0;
421 char **argv_tmp;
Graeme Russ9e08efc2010-04-24 00:05:39 +1000422
Graeme Russe69c0cb2010-08-22 16:25:58 +1000423 /*
424 * x86 does not use a dedicated register to pass the pointer to
425 * the global_data, so it is instead passed as argv[-1]. By using
426 * argv[-1], the called 'Application' can use the contents of
427 * argv natively. However, to safely use argv[-1] a new copy of
428 * argv is needed with the extra element
429 */
430 argv_tmp = malloc(sizeof(char *) * (argc + 1));
431
432 if (argv_tmp) {
433 argv_tmp[0] = (char *)gd;
434
435 memcpy(&argv_tmp[1], argv, (size_t)(sizeof(char *) * argc));
436
437 ret = (entry) (argc, &argv_tmp[1]);
438 free(argv_tmp);
439 }
440
441 return ret;
Mike Frysingera4986452008-04-13 19:42:19 -0400442}
Graeme Russ79ea6b82010-04-24 00:05:48 +1000443
444void setup_pcat_compatibility(void)
445 __attribute__((weak, alias("__setup_pcat_compatibility")));
446
447void __setup_pcat_compatibility(void)
448{
449}