3 * Greg Ungerer, OpenGear Inc, <greg.ungerer@opengear.com>
6 * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net
9 * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
10 * Marius Groeger <mgroeger@sysgo.de>
12 * See file CREDITS for list of people who contributed to this
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.
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.
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,
32 #include <asm/arch/platform.h>
34 DECLARE_GLOBAL_DATA_PTR
;
36 /* ------------------------------------------------------------------------- */
38 #define ks8695_read(a) *((volatile unsigned int *) (KS8695_IO_BASE+(a)))
39 #define ks8695_write(a,b) *((volatile unsigned int *) (KS8695_IO_BASE+(a))) = (b)
41 /* ------------------------------------------------------------------------- */
45 * Miscelaneous platform dependent initialisations
47 int env_flash_cmdline (void)
49 unsigned char *sp
= (unsigned char *) 0x0201c020;
53 /* Check if "erase" push button is depressed */
54 if ((ks8695_read(KS8695_GPIO_DATA
) & 0x8) == 0) {
55 printf("### Entering network recovery mode...\n");
56 setenv("bootargs", "console=ttyAM0,115200 mem=16M initrd=0x400000,6M root=/dev/ram0");
57 setenv("bootcmd", "bootp 0x400000; gofsk 0x400000");
58 setenv("bootdelay", "2");
62 /* Check for flash based kernel boot args to use as default */
63 for (ep
= sp
, len
= 0; ((len
< 1024) && (*ep
!= 0)); ep
++, len
++)
66 if ((len
> 0) && (len
<1024))
67 setenv("bootargs", sp
);
72 int board_late_init (void)
80 /* arch number of CM4008 */
81 gd
->bd
->bi_arch_number
= 624;
83 /* adress of boot parameters */
84 gd
->bd
->bi_boot_params
= 0x00000100;
86 /* power down all but port 0 on the switch */
87 ks8695_write(KS8695_SWITCH_LPPM12
, 0x00000005);
88 ks8695_write(KS8695_SWITCH_LPPM34
, 0x00050005);
95 gd
->bd
->bi_dram
[0].start
= PHYS_SDRAM_1
;
96 gd
->bd
->bi_dram
[0].size
= PHYS_SDRAM_1_SIZE
;