wdenk | 1f4bb37 | 2003-07-27 00:21:01 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) Orbacom Systems, Inc <www.orbacom.com> |
| 3 | * All rights reserved. |
| 4 | * |
| 5 | * Redistribution and use in source and binary forms are freely |
| 6 | * permitted provided that the above copyright notice and this |
| 7 | * paragraph and the following disclaimer are duplicated in all |
| 8 | * such forms. |
| 9 | * |
| 10 | * This software is provided "AS IS" and without any express or |
| 11 | * implied warranties, including, without limitation, the implied |
| 12 | * warranties of merchantability and fitness for a particular |
| 13 | * purpose. |
| 14 | */ |
| 15 | |
| 16 | #include <common.h> |
| 17 | #include <asm/processor.h> |
| 18 | #include <image.h> |
Wolfgang Denk | d2567be | 2009-03-28 20:16:16 +0100 | [diff] [blame] | 19 | #include <net.h> |
wdenk | 1f4bb37 | 2003-07-27 00:21:01 +0000 | [diff] [blame] | 20 | |
wdenk | 1f4bb37 | 2003-07-27 00:21:01 +0000 | [diff] [blame] | 21 | #include <lynxkdi.h> |
| 22 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 23 | DECLARE_GLOBAL_DATA_PTR; |
| 24 | |
Stefan Roese | 846b0dd | 2005-08-08 12:42:22 +0200 | [diff] [blame] | 25 | #if defined(CONFIG_MPC8260) || defined(CONFIG_440EP) || defined(CONFIG_440GR) |
Marian Balakowicz | 1ee1180 | 2008-01-08 18:17:10 +0100 | [diff] [blame] | 26 | void lynxkdi_boot (image_header_t *hdr) |
wdenk | 1f4bb37 | 2003-07-27 00:21:01 +0000 | [diff] [blame] | 27 | { |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 28 | void (*lynxkdi)(void) = (void(*)(void))image_get_ep (hdr); |
wdenk | 1f4bb37 | 2003-07-27 00:21:01 +0000 | [diff] [blame] | 29 | lynxos_bootparms_t *parms = (lynxos_bootparms_t *)0x0020; |
| 30 | bd_t *kbd; |
Marian Balakowicz | b97a2a0 | 2008-01-08 18:14:09 +0100 | [diff] [blame] | 31 | u32 *psz = (u32 *)(image_get_load (hdr) + 0x0204); |
wdenk | 1f4bb37 | 2003-07-27 00:21:01 +0000 | [diff] [blame] | 32 | |
Marian Balakowicz | 1ee1180 | 2008-01-08 18:17:10 +0100 | [diff] [blame] | 33 | memset (parms, 0, sizeof(*parms)); |
wdenk | 1f4bb37 | 2003-07-27 00:21:01 +0000 | [diff] [blame] | 34 | kbd = gd->bd; |
| 35 | parms->clock_ref = kbd->bi_busfreq; |
| 36 | parms->dramsz = kbd->bi_memsize; |
Mike Frysinger | 5013533 | 2009-02-11 18:54:07 -0500 | [diff] [blame] | 37 | eth_getenv_enetaddr("ethaddr", parms->ethaddr); |
Marian Balakowicz | 1ee1180 | 2008-01-08 18:17:10 +0100 | [diff] [blame] | 38 | mtspr (SPRN_SPRG2, 0x0020); |
wdenk | 1f4bb37 | 2003-07-27 00:21:01 +0000 | [diff] [blame] | 39 | |
| 40 | /* Do a simple check for Bluecat so we can pass the |
| 41 | * kernel command line parameters. |
| 42 | */ |
Marian Balakowicz | 1ee1180 | 2008-01-08 18:17:10 +0100 | [diff] [blame] | 43 | if (le32_to_cpu (*psz) == image_get_data_size (hdr)) { /* FIXME: NOT SURE HERE ! */ |
| 44 | char *args; |
| 45 | char *cmdline = (char *)(image_get_load (hdr) + 0x020c); |
| 46 | int len; |
wdenk | 1f4bb37 | 2003-07-27 00:21:01 +0000 | [diff] [blame] | 47 | |
Marian Balakowicz | 1ee1180 | 2008-01-08 18:17:10 +0100 | [diff] [blame] | 48 | printf ("Booting Bluecat KDI ...\n"); |
| 49 | udelay (200*1000); /* Allow serial port to flush */ |
| 50 | if ((args = getenv ("bootargs")) == NULL) |
| 51 | args = ""; |
| 52 | /* Prepend the cmdline */ |
| 53 | len = strlen (args); |
| 54 | if (len && (len + strlen (cmdline) + 2 < (0x0400 - 0x020c))) { |
| 55 | memmove (cmdline + strlen (args) + 1, cmdline, strlen (cmdline)); |
| 56 | strcpy (cmdline, args); |
| 57 | cmdline[len] = ' '; |
| 58 | } |
wdenk | 1f4bb37 | 2003-07-27 00:21:01 +0000 | [diff] [blame] | 59 | } |
| 60 | else { |
Marian Balakowicz | 1ee1180 | 2008-01-08 18:17:10 +0100 | [diff] [blame] | 61 | printf ("Booting LynxOS KDI ...\n"); |
wdenk | 1f4bb37 | 2003-07-27 00:21:01 +0000 | [diff] [blame] | 62 | } |
| 63 | |
Marian Balakowicz | 1ee1180 | 2008-01-08 18:17:10 +0100 | [diff] [blame] | 64 | lynxkdi (); |
wdenk | 1f4bb37 | 2003-07-27 00:21:01 +0000 | [diff] [blame] | 65 | } |
| 66 | #else |
| 67 | #error "Lynx KDI support not implemented for configured CPU" |
| 68 | #endif |