wdenk | f2d4294 | 2002-10-28 00:05:30 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2002 |
| 3 | * Robert Schwebel, Pengutronix, r.schwebel@pengutronix.de |
| 4 | * Kyle Harris, Nexus Technologies, Inc., kharris@nexus-tech.net |
| 5 | * Marius Groeger, Sysgo Real-Time Solutions GmbH, mgroeger@sysgo.de |
| 6 | * |
| 7 | * See file CREDITS for list of people who contributed to this |
| 8 | * project. |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License as |
| 12 | * published by the Free Software Foundation; either version 2 of |
| 13 | * the License, or (at your option) any later version. |
| 14 | * |
| 15 | * This program is distributed in the hope that it will be useful, |
| 16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 18 | * GNU General Public License for more details. |
| 19 | * |
| 20 | * You should have received a copy of the GNU General Public License |
| 21 | * along with this program; if not, write to the Free Software |
| 22 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 23 | * MA 02111-1307 USA |
| 24 | */ |
| 25 | |
| 26 | #include <common.h> |
Ben Warren | b1c0eaa | 2009-08-25 13:09:37 -0700 | [diff] [blame] | 27 | #include <netdev.h> |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 28 | #include <asm/arch/pxa-regs.h> |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 29 | #include <asm/io.h> |
wdenk | f2d4294 | 2002-10-28 00:05:30 +0000 | [diff] [blame] | 30 | |
Wolfgang Denk | d87080b | 2006-03-31 18:32:53 +0200 | [diff] [blame] | 31 | DECLARE_GLOBAL_DATA_PTR; |
| 32 | |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 33 | #ifdef CONFIG_SHOW_BOOT_PROGRESS |
| 34 | # define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg) |
| 35 | #else |
| 36 | # define SHOW_BOOT_PROGRESS(arg) |
| 37 | #endif |
wdenk | f2d4294 | 2002-10-28 00:05:30 +0000 | [diff] [blame] | 38 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 39 | /** |
wdenk | 47cd00f | 2003-03-06 13:39:27 +0000 | [diff] [blame] | 40 | * misc_init_r: - misc initialisation routines |
wdenk | f2d4294 | 2002-10-28 00:05:30 +0000 | [diff] [blame] | 41 | */ |
| 42 | |
wdenk | 47cd00f | 2003-03-06 13:39:27 +0000 | [diff] [blame] | 43 | int misc_init_r(void) |
| 44 | { |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 45 | #if 0 |
wdenk | 47cd00f | 2003-03-06 13:39:27 +0000 | [diff] [blame] | 46 | uchar *str; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 47 | |
wdenk | 47cd00f | 2003-03-06 13:39:27 +0000 | [diff] [blame] | 48 | /* determine if the software update key is pressed during startup */ |
wdenk | 47cd00f | 2003-03-06 13:39:27 +0000 | [diff] [blame] | 49 | /* not ported yet... */ |
| 50 | if (GPLR0 & 0x00000800) { |
| 51 | printf("using bootcmd_normal (sw-update button not pressed)\n"); |
| 52 | str = getenv("bootcmd_normal"); |
| 53 | } else { |
| 54 | printf("using bootcmd_update (sw-update button pressed)\n"); |
| 55 | str = getenv("bootcmd_update"); |
| 56 | } |
| 57 | |
| 58 | setenv("bootcmd",str); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 59 | #endif |
wdenk | 47cd00f | 2003-03-06 13:39:27 +0000 | [diff] [blame] | 60 | return 0; |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 61 | } |
wdenk | 47cd00f | 2003-03-06 13:39:27 +0000 | [diff] [blame] | 62 | |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 63 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 64 | /** |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 65 | * board_init: - setup some data structures |
| 66 | * |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 67 | * @return: 0 in case of success |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 68 | */ |
| 69 | |
wdenk | f2d4294 | 2002-10-28 00:05:30 +0000 | [diff] [blame] | 70 | int board_init (void) |
| 71 | { |
Marek Vasut | 38f8eb3 | 2010-10-20 20:43:41 +0200 | [diff] [blame] | 72 | /* We have RAM, disable cache */ |
| 73 | dcache_disable(); |
| 74 | icache_disable(); |
wdenk | f2d4294 | 2002-10-28 00:05:30 +0000 | [diff] [blame] | 75 | |
| 76 | /* arch number of CSB226 board */ |
wdenk | 731215e | 2004-10-10 18:41:04 +0000 | [diff] [blame] | 77 | gd->bd->bi_arch_number = MACH_TYPE_CSB226; |
wdenk | f2d4294 | 2002-10-28 00:05:30 +0000 | [diff] [blame] | 78 | |
| 79 | /* adress of boot parameters */ |
| 80 | gd->bd->bi_boot_params = 0xa0000100; |
| 81 | |
| 82 | return 0; |
| 83 | } |
| 84 | |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 85 | |
Marek Vasut | 38f8eb3 | 2010-10-20 20:43:41 +0200 | [diff] [blame] | 86 | extern void pxa_dram_init(void); |
| 87 | int dram_init(void) |
wdenk | f2d4294 | 2002-10-28 00:05:30 +0000 | [diff] [blame] | 88 | { |
Marek Vasut | 38f8eb3 | 2010-10-20 20:43:41 +0200 | [diff] [blame] | 89 | pxa_dram_init(); |
| 90 | gd->ram_size = PHYS_SDRAM_1_SIZE; |
wdenk | f2d4294 | 2002-10-28 00:05:30 +0000 | [diff] [blame] | 91 | return 0; |
| 92 | } |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 93 | |
Marek Vasut | 38f8eb3 | 2010-10-20 20:43:41 +0200 | [diff] [blame] | 94 | void dram_init_banksize(void) |
| 95 | { |
| 96 | gd->bd->bi_dram[0].start = PHYS_SDRAM_1; |
| 97 | gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE; |
| 98 | } |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 99 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 100 | /** |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 101 | * csb226_set_led: - switch LEDs on or off |
| 102 | * |
| 103 | * @param led: LED to switch (0,1,2) |
| 104 | * @param state: switch on (1) or off (0) |
| 105 | */ |
| 106 | |
| 107 | void csb226_set_led(int led, int state) |
| 108 | { |
| 109 | switch(led) { |
| 110 | |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 111 | case 0: if (state==1) { |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 112 | writel(readl(GPCR0) | CSB226_USER_LED0, GPCR0); |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 113 | } else if (state==0) { |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 114 | writel(readl(GPSR0) | CSB226_USER_LED0, GPSR0); |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 115 | } |
| 116 | break; |
| 117 | |
| 118 | case 1: if (state==1) { |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 119 | writel(readl(GPCR0) | CSB226_USER_LED1, GPCR0); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 120 | } else if (state==0) { |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 121 | writel(readl(GPSR0) | CSB226_USER_LED1, GPSR0); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 122 | } |
| 123 | break; |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 124 | |
| 125 | case 2: if (state==1) { |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 126 | writel(readl(GPCR0) | CSB226_USER_LED2, GPCR0); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 127 | } else if (state==0) { |
Marek Vasut | 3ba8bf7 | 2010-09-09 09:50:39 +0200 | [diff] [blame] | 128 | writel(readl(GPSR0) | CSB226_USER_LED2, GPSR0); |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 129 | } |
| 130 | break; |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 131 | } |
| 132 | |
| 133 | return; |
| 134 | } |
| 135 | |
| 136 | |
| 137 | /** |
| 138 | * show_boot_progress: - indicate state of the boot process |
| 139 | * |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 140 | * @param status: Status number - see README for details. |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 141 | * |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 142 | * The CSB226 does only have 3 LEDs, so we switch them on at the most |
| 143 | * important states (1, 5, 15). |
wdenk | 384ae02 | 2002-11-05 00:17:55 +0000 | [diff] [blame] | 144 | */ |
| 145 | |
| 146 | void show_boot_progress (int status) |
| 147 | { |
| 148 | switch(status) { |
| 149 | case 1: csb226_set_led(0,1); break; |
| 150 | case 5: csb226_set_led(1,1); break; |
| 151 | case 15: csb226_set_led(2,1); break; |
| 152 | } |
| 153 | |
| 154 | return; |
| 155 | } |
Ben Warren | b1c0eaa | 2009-08-25 13:09:37 -0700 | [diff] [blame] | 156 | |
| 157 | #ifdef CONFIG_CMD_NET |
| 158 | int board_eth_init(bd_t *bis) |
| 159 | { |
| 160 | int rc = 0; |
| 161 | #ifdef CONFIG_CS8900 |
| 162 | rc = cs8900_initialize(0, CONFIG_CS8900_BASE); |
| 163 | #endif |
| 164 | return rc; |
| 165 | } |
| 166 | #endif |