]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/mpl/vcma9/vcma9.c
Merge branch 'sr@denx.de' of git://git.denx.de/u-boot-staging
[karo-tx-uboot.git] / board / mpl / vcma9 / vcma9.c
1 /*
2  * (C) Copyright 2002
3  * Sysgo Real-Time Solutions, GmbH <www.elinos.com>
4  * Marius Groeger <mgroeger@sysgo.de>
5  *
6  * (C) Copyright 2002, 2010
7  * David Mueller, ELSOFT AG, <d.mueller@elsoft.ch>
8  *
9  * See file CREDITS for list of people who contributed to this
10  * project.
11  *
12  * This program is free software; you can redistribute it and/or
13  * modify it under the terms of the GNU General Public License as
14  * published by the Free Software Foundation; either version 2 of
15  * the License, or (at your option) any later version.
16  *
17  * This program is distributed in the hope that it will be useful,
18  * but WITHOUT ANY WARRANTY; without even the implied warranty of
19  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20  * GNU General Public License for more details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with this program; if not, write to the Free Software
24  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
25  * MA 02111-1307 USA
26  */
27
28 #include <common.h>
29 #include <netdev.h>
30 #include <i2c.h>
31 #include <asm/io.h>
32 #include <asm/arch/s3c24x0_cpu.h>
33
34 #include "vcma9.h"
35 #include "../common/common_util.h"
36
37 DECLARE_GLOBAL_DATA_PTR;
38
39 /*
40  * Miscellaneous platform dependent initialisations
41  */
42
43 int board_early_init_f(void)
44 {
45         struct s3c24x0_gpio * const gpio = s3c24x0_get_base_gpio();
46
47         /* set up the I/O ports */
48         writel(0x007FFFFF, &gpio->gpacon);
49         writel(0x002AAAAA, &gpio->gpbcon);
50         writel(0x000002BF, &gpio->gpbup);
51         writel(0xAAAAAAAA, &gpio->gpccon);
52         writel(0x0000FFFF, &gpio->gpcup);
53         writel(0xAAAAAAAA, &gpio->gpdcon);
54         writel(0x0000FFFF, &gpio->gpdup);
55         writel(0xAAAAAAAA, &gpio->gpecon);
56         writel(0x000037F7, &gpio->gpeup);
57         writel(0x00000000, &gpio->gpfcon);
58         writel(0x00000000, &gpio->gpfup);
59         writel(0xFFEAFF5A, &gpio->gpgcon);
60         writel(0x0000F0DC, &gpio->gpgup);
61         writel(0x0028AAAA, &gpio->gphcon);
62         writel(0x00000656, &gpio->gphup);
63
64         /* setup correct IRQ modes for NIC (rising edge mode) */
65         writel((readl(&gpio->extint2) & ~(7<<8)) | (4<<8),  &gpio->extint2);
66
67         /* select USB port 2 to be host or device (setup as host for now) */
68         writel(readl(&gpio->misccr) | 0x08, &gpio->misccr);
69
70         return 0;
71 }
72
73 int board_init(void)
74 {
75         /* adress of boot parameters */
76         gd->bd->bi_boot_params = 0x30000100;
77
78         icache_enable();
79         dcache_enable();
80
81         return 0;
82 }
83
84 /*
85  * Get some Board/PLD Info
86  */
87
88 static u8 get_pld_reg(enum vcma9_pld_regs reg)
89 {
90         return readb(VCMA9_PLD_BASE + reg);
91 }
92
93 static u8 get_pld_version(void)
94 {
95         return (get_pld_reg(VCMA9_PLD_ID) >> 4) & 0x0F;
96 }
97
98 static u8 get_pld_revision(void)
99 {
100         return get_pld_reg(VCMA9_PLD_ID) & 0x0F;
101 }
102
103 static uchar get_board_pcb(void)
104 {
105         return ((get_pld_reg(VCMA9_PLD_BOARD) >> 4) & 0x03) + 'A';
106 }
107
108 static u8 get_nr_chips(void)
109 {
110         switch ((get_pld_reg(VCMA9_PLD_SDRAM) >> 4) & 0x0F) {
111                 case 0: return 4;
112                 case 1: return 1;
113                 case 2: return 2;
114                 default: return 0;
115         }
116 }
117
118 static ulong get_chip_size(void)
119 {
120         switch (get_pld_reg(VCMA9_PLD_SDRAM) & 0x0F) {
121                 case 0: return 16 * (1024*1024);
122                 case 1: return 32 * (1024*1024);
123                 case 2: return  8 * (1024*1024);
124                 case 3: return  8 * (1024*1024);
125                 default: return 0;
126         }
127 }
128
129 static const char *get_chip_geom(void)
130 {
131         switch (get_pld_reg(VCMA9_PLD_SDRAM) & 0x0F) {
132                 case 0: return "4Mx8x4";
133                 case 1: return "8Mx8x4";
134                 case 2: return "2Mx8x4";
135                 case 3: return "4Mx8x2";
136                 default: return "unknown";
137         }
138 }
139
140 static void vcma9_show_info(char *board_name, char *serial)
141 {
142         printf("Board: %s SN: %s  PCB Rev: %c PLD(%d,%d)\n",
143                 board_name, serial,
144                 get_board_pcb(), get_pld_version(), get_pld_revision());
145         printf("SDRAM: %d chips %s\n", get_nr_chips(), get_chip_geom());
146 }
147
148 int dram_init(void)
149 {
150         /* dram_init must store complete ramsize in gd->ram_size */
151         gd->ram_size = get_chip_size() * get_nr_chips();
152         return 0;
153 }
154
155 /*
156  * Check Board Identity:
157  */
158
159 int checkboard(void)
160 {
161         char s[50];
162         int i;
163         backup_t *b = (backup_t *) s;
164
165         i = getenv_f("serial#", s, 32);
166         if ((i < 0) || strncmp (s, "VCMA9", 5)) {
167                 get_backup_values (b);
168                 if (strncmp (b->signature, "MPL\0", 4) != 0) {
169                         puts ("### No HW ID - assuming VCMA9");
170                 } else {
171                         b->serial_name[5] = 0;
172                         vcma9_show_info(b->serial_name, &b->serial_name[6]);
173                 }
174         } else {
175                 s[5] = 0;
176                 vcma9_show_info(s, &s[6]);
177         }
178
179         return 0;
180 }
181
182 int board_late_init(void)
183 {
184         /*
185          * check if environment is healthy, otherwise restore values
186          * from shadow copy
187          */
188         check_env();
189         return 0;
190 }
191
192 void vcma9_print_info(void)
193 {
194         char *s = getenv("serial#");
195
196         if (!s) {
197                 puts ("### No HW ID - assuming VCMA9");
198         } else {
199                 s[5] = 0;
200                 vcma9_show_info(s, &s[6]);
201         }
202 }
203
204 #ifdef CONFIG_CMD_NET
205 int board_eth_init(bd_t *bis)
206 {
207         int rc = 0;
208 #ifdef CONFIG_CS8900
209         rc = cs8900_initialize(0, CONFIG_CS8900_BASE);
210 #endif
211         return rc;
212 }
213 #endif
214
215 /*
216  * Hardcoded flash setup:
217  * Flash 0 is a non-CFI AMD AM29F400BB flash.
218  */
219 ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
220 {
221         info->portwidth = FLASH_CFI_16BIT;
222         info->chipwidth = FLASH_CFI_BY16;
223         info->interface = FLASH_CFI_X16;
224         return 1;
225 }