]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - board/mpl/vcma9/vcma9.c
VCMA9: various cleanups/code style fixes
[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         /* arch number of VCMA9-Board */
76         gd->bd->bi_arch_number = MACH_TYPE_MPL_VCMA9;
77
78         /* adress of boot parameters */
79         gd->bd->bi_boot_params = 0x30000100;
80
81         icache_enable();
82         dcache_enable();
83
84         return 0;
85 }
86
87 /*
88  * Get some Board/PLD Info
89  */
90
91 static u8 get_pld_reg(enum vcma9_pld_regs reg)
92 {
93         return readb(VCMA9_PLD_BASE + reg);
94 }
95
96 static u8 get_pld_version(void)
97 {
98         return (get_pld_reg(VCMA9_PLD_ID) >> 4) & 0x0F;
99 }
100
101 static u8 get_pld_revision(void)
102 {
103         return get_pld_reg(VCMA9_PLD_ID) & 0x0F;
104 }
105
106 static uchar get_board_pcb(void)
107 {
108         return ((get_pld_reg(VCMA9_PLD_BOARD) >> 4) & 0x03) + 'A';
109 }
110
111 static u8 get_nr_chips(void)
112 {
113         switch ((get_pld_reg(VCMA9_PLD_SDRAM) >> 4) & 0x0F) {
114                 case 0: return 4;
115                 case 1: return 1;
116                 case 2: return 2;
117                 default: return 0;
118         }
119 }
120
121 static ulong get_chip_size(void)
122 {
123         switch (get_pld_reg(VCMA9_PLD_SDRAM) & 0x0F) {
124                 case 0: return 16 * (1024*1024);
125                 case 1: return 32 * (1024*1024);
126                 case 2: return  8 * (1024*1024);
127                 case 3: return  8 * (1024*1024);
128                 default: return 0;
129         }
130 }
131
132 static const char *get_chip_geom(void)
133 {
134         switch (get_pld_reg(VCMA9_PLD_SDRAM) & 0x0F) {
135                 case 0: return "4Mx8x4";
136                 case 1: return "8Mx8x4";
137                 case 2: return "2Mx8x4";
138                 case 3: return "4Mx8x2";
139                 default: return "unknown";
140         }
141 }
142
143 static void vcma9_show_info(char *board_name, char *serial)
144 {
145         printf("Board: %s SN: %s  PCB Rev: %c PLD(%d,%d)\n",
146                 board_name, serial,
147                 get_board_pcb(), get_pld_version(), get_pld_revision());
148         printf("SDRAM: %d chips %s\n", get_nr_chips(), get_chip_geom());
149 }
150
151 int dram_init(void)
152 {
153         /* dram_init must store complete ramsize in gd->ram_size */
154         gd->ram_size = get_chip_size() * get_nr_chips();
155         return 0;
156 }
157
158 /*
159  * Check Board Identity:
160  */
161
162 int checkboard(void)
163 {
164         char s[50];
165         int i;
166         backup_t *b = (backup_t *) s;
167
168         i = getenv_f("serial#", s, 32);
169         if ((i < 0) || strncmp (s, "VCMA9", 5)) {
170                 get_backup_values (b);
171                 if (strncmp (b->signature, "MPL\0", 4) != 0) {
172                         puts ("### No HW ID - assuming VCMA9");
173                 } else {
174                         b->serial_name[5] = 0;
175                         vcma9_show_info(b->serial_name, &b->serial_name[6]);
176                 }
177         } else {
178                 s[5] = 0;
179                 vcma9_show_info(s, &s[6]);
180         }
181
182         return 0;
183 }
184
185 int board_late_init(void)
186 {
187         /*
188          * check if environment is healthy, otherwise restore values
189          * from shadow copy
190          */
191         check_env();
192         return 0;
193 }
194
195 void vcma9_print_info(void)
196 {
197         char *s = getenv("serial#");
198
199         if (!s) {
200                 puts ("### No HW ID - assuming VCMA9");
201         } else {
202                 s[5] = 0;
203                 vcma9_show_info(s, &s[6]);
204         }
205 }
206
207 #ifdef CONFIG_CMD_NET
208 int board_eth_init(bd_t *bis)
209 {
210         int rc = 0;
211 #ifdef CONFIG_CS8900
212         rc = cs8900_initialize(0, CONFIG_CS8900_BASE);
213 #endif
214         return rc;
215 }
216 #endif
217
218 /*
219  * Hardcoded flash setup:
220  * Flash 0 is a non-CFI AMD AM29F400BB flash.
221  */
222 ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
223 {
224         info->portwidth = FLASH_CFI_16BIT;
225         info->chipwidth = FLASH_CFI_BY16;
226         info->interface = FLASH_CFI_X16;
227         return 1;
228 }