blob: 33efe16c29799af00078a9aa5f1a3dde32131d6c [file] [log] [blame]
wdenk15647dc2003-10-09 19:00:25 +00001/*
2 * (C) Copyright 2000
3 * Sangmoon Kim, Etin Systems. dogoil@etinsys.com.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
24#include <common.h>
25#include <mpc824x.h>
Heiko Schocher76756e42009-03-26 07:33:59 +010026#include <net.h>
wdenk15647dc2003-10-09 19:00:25 +000027#include <pci.h>
wdenk7abf0c52004-04-18 21:45:42 +000028#include <i2c.h>
Ben Warren10efa022008-08-31 20:37:00 -070029#include <netdev.h>
wdenk15647dc2003-10-09 19:00:25 +000030
Wolfgang Denkd87080b2006-03-31 18:32:53 +020031DECLARE_GLOBAL_DATA_PTR;
32
wdenk15647dc2003-10-09 19:00:25 +000033int checkboard (void)
34{
35 /*TODO: Check processor type */
36
37 puts ( "Board: Debris "
38#ifdef CONFIG_MPC8240
39 "8240"
40#endif
41#ifdef CONFIG_MPC8245
42 "8245"
43#endif
44 " ##Test not implemented yet##\n");
45 return 0;
46}
47
Wolfgang Denk53677ef2008-05-20 16:00:29 +020048#if 0 /* NOT USED */
wdenk15647dc2003-10-09 19:00:25 +000049int checkflash (void)
50{
51 /* TODO: XXX XXX XXX */
52 printf ("## Test not implemented yet ##\n");
53
54 return (0);
55}
56#endif
57
Becky Bruce9973e3c2008-06-09 16:03:40 -050058phys_size_t initdram (int board_type)
wdenk15647dc2003-10-09 19:00:25 +000059{
wdenk7abf0c52004-04-18 21:45:42 +000060 int m, row, col, bank, i;
61 unsigned long start, end;
62 uint32_t mccr1;
63 uint32_t mear1 = 0, emear1 = 0, msar1 = 0, emsar1 = 0;
64 uint32_t mear2 = 0, emear2 = 0, msar2 = 0, emsar2 = 0;
65 uint8_t mber = 0;
wdenk15647dc2003-10-09 19:00:25 +000066
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020067 i2c_init(CONFIG_SYS_I2C_SPEED, CONFIG_SYS_I2C_SLAVE);
wdenk15647dc2003-10-09 19:00:25 +000068
wdenk7abf0c52004-04-18 21:45:42 +000069 if (i2c_reg_read (0x50, 2) != 0x04) return 0; /* Memory type */
70 m = i2c_reg_read (0x50, 5); /* # of physical banks */
71 row = i2c_reg_read (0x50, 3); /* # of rows */
72 col = i2c_reg_read (0x50, 4); /* # of columns */
73 bank = i2c_reg_read (0x50, 17); /* # of logical banks */
wdenk15647dc2003-10-09 19:00:25 +000074
wdenk7abf0c52004-04-18 21:45:42 +000075 CONFIG_READ_WORD(MCCR1, mccr1);
76 mccr1 &= 0xffff0000;
77
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078 start = CONFIG_SYS_SDRAM_BASE;
wdenk7abf0c52004-04-18 21:45:42 +000079 end = start + (1 << (col + row + 3) ) * bank - 1;
80
81 for (i = 0; i < m; i++) {
82 mccr1 |= ((row == 13)? 2 : (bank == 4)? 0 : 3) << i * 2;
83 if (i < 4) {
84 msar1 |= ((start >> 20) & 0xff) << i * 8;
85 emsar1 |= ((start >> 28) & 0xff) << i * 8;
86 mear1 |= ((end >> 20) & 0xff) << i * 8;
87 emear1 |= ((end >> 28) & 0xff) << i * 8;
88 } else {
89 msar2 |= ((start >> 20) & 0xff) << (i-4) * 8;
90 emsar2 |= ((start >> 28) & 0xff) << (i-4) * 8;
91 mear2 |= ((end >> 20) & 0xff) << (i-4) * 8;
92 emear2 |= ((end >> 28) & 0xff) << (i-4) * 8;
93 }
94 mber |= 1 << i;
95 start += (1 << (col + row + 3) ) * bank;
96 end += (1 << (col + row + 3) ) * bank;
97 }
98 for (; i < 8; i++) {
99 if (i < 4) {
100 msar1 |= 0xff << i * 8;
101 emsar1 |= 0x30 << i * 8;
102 mear1 |= 0xff << i * 8;
103 emear1 |= 0x30 << i * 8;
104 } else {
105 msar2 |= 0xff << (i-4) * 8;
106 emsar2 |= 0x30 << (i-4) * 8;
107 mear2 |= 0xff << (i-4) * 8;
108 emear2 |= 0x30 << (i-4) * 8;
109 }
110 }
111
112 CONFIG_WRITE_WORD(MCCR1, mccr1);
113 CONFIG_WRITE_WORD(MSAR1, msar1);
114 CONFIG_WRITE_WORD(EMSAR1, emsar1);
115 CONFIG_WRITE_WORD(MEAR1, mear1);
116 CONFIG_WRITE_WORD(EMEAR1, emear1);
117 CONFIG_WRITE_WORD(MSAR2, msar2);
118 CONFIG_WRITE_WORD(EMSAR2, emsar2);
119 CONFIG_WRITE_WORD(MEAR2, mear2);
120 CONFIG_WRITE_WORD(EMEAR2, emear2);
121 CONFIG_WRITE_BYTE(MBER, mber);
122
123 return (1 << (col + row + 3) ) * bank * m;
wdenk15647dc2003-10-09 19:00:25 +0000124}
125
126/*
127 * Initialize PCI Devices, report devices found.
128 */
129#ifndef CONFIG_PCI_PNP
130static struct pci_config_table pci_debris_config_table[] = {
131 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, 0x0f, PCI_ANY_ID,
132 pci_cfgfunc_config_device, { PCI_ENET0_IOADDR,
133 PCI_ENET0_MEMADDR,
134 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER }},
135 { PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, PCI_ANY_ID, 0x10, PCI_ANY_ID,
136 pci_cfgfunc_config_device, { PCI_ENET1_IOADDR,
137 PCI_ENET1_MEMADDR,
138 PCI_COMMAND_MEMORY | PCI_COMMAND_MASTER }},
139 { }
140};
141#endif
142
143struct pci_controller hose = {
144#ifndef CONFIG_PCI_PNP
145 config_table: pci_debris_config_table,
146#endif
147};
148
149void pci_init_board(void)
150{
151 pci_mpc824x_init(&hose);
152}
153
154void *nvram_read(void *dest, const long src, size_t count)
155{
156 volatile uchar *d = (volatile uchar*) dest;
157 volatile uchar *s = (volatile uchar*) src;
158 while(count--) {
159 *d++ = *s++;
160 asm volatile("sync");
161 }
162 return dest;
163}
164
165void nvram_write(long dest, const void *src, size_t count)
166{
167 volatile uchar *d = (volatile uchar*)dest;
168 volatile uchar *s = (volatile uchar*)src;
169 while(count--) {
170 *d++ = *s++;
171 asm volatile("sync");
172 }
173}
174
175int misc_init_r(void)
176{
Mike Frysingerb6b46252009-02-11 18:38:38 -0500177 uchar ethaddr[6];
178
179 if (eth_getenv_enetaddr("ethaddr", ethaddr))
180 /* Write ethernet addr in NVRAM for VxWorks */
181 nvram_write(CONFIG_ENV_ADDR + CONFIG_SYS_NVRAM_VXWORKS_OFFS,
182 ethaddr, 6);
183
wdenk15647dc2003-10-09 19:00:25 +0000184 return 0;
185}
Ben Warren10efa022008-08-31 20:37:00 -0700186
187int board_eth_init(bd_t *bis)
188{
189 return pci_eth_init(bis);
190}