blob: 8392a6413ea30aba8691313f2bb588dd47739e0e [file] [log] [blame]
Heiko Schocherc2485362008-10-15 09:39:08 +02001/*
2 * (C) Copyright 2008
3 * Heiko Schocher, DENX Software Engineering, hs@denx.de.
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>
Heiko Schocheraf895e42011-02-22 08:58:19 +010025#if defined(CONFIG_MGCOGE) || defined(CONFIG_MGCOGE2NE)
Heiko Schocherc2485362008-10-15 09:39:08 +020026#include <mpc8260.h>
Heiko Schocher210c8c02008-11-21 08:29:40 +010027#endif
Heiko Schocherc2485362008-10-15 09:39:08 +020028#include <ioports.h>
29#include <malloc.h>
Heiko Schocher8f64da72008-10-15 09:41:00 +020030#include <hush.h>
Heiko Schocher210c8c02008-11-21 08:29:40 +010031#include <net.h>
Heiko Schocher62ddcf02010-02-18 08:08:25 +010032#include <netdev.h>
Heiko Schocher210c8c02008-11-21 08:29:40 +010033#include <asm/io.h>
Heiko Schocherc2485362008-10-15 09:39:08 +020034
35#if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT)
36#include <libfdt.h>
37#endif
38
Heiko Schocher67fa8c22010-02-22 16:43:02 +053039#include "../common/common.h"
Heiko Schocherc2485362008-10-15 09:39:08 +020040#if defined(CONFIG_HARD_I2C) || defined(CONFIG_SOFT_I2C)
41#include <i2c.h>
Heiko Schocherc2485362008-10-15 09:39:08 +020042
Heiko Schocher6c11aea2011-03-08 10:51:15 +010043static void i2c_write_start_seq(void);
44static int i2c_make_abort(void);
45
Heiko Schocherb11f53f2011-03-15 16:52:29 +010046int ivm_calc_crc(unsigned char *buf, int len)
Heiko Schocher8f64da72008-10-15 09:41:00 +020047{
48 const unsigned short crc_tab[16] = {
49 0x0000, 0xCC01, 0xD801, 0x1400,
50 0xF001, 0x3C00, 0x2800, 0xE401,
51 0xA001, 0x6C00, 0x7800, 0xB401,
52 0x5000, 0x9C01, 0x8801, 0x4400};
53
54 unsigned short crc = 0; /* final result */
55 unsigned short r1 = 0; /* temp */
56 unsigned char byte = 0; /* input buffer */
57 int i;
58
59 /* calculate CRC from array data */
60 for (i = 0; i < len; i++) {
61 byte = buf[i];
62
63 /* lower 4 bits */
64 r1 = crc_tab[crc & 0xF];
65 crc = ((crc) >> 4) & 0x0FFF;
66 crc = crc ^ r1 ^ crc_tab[byte & 0xF];
67
68 /* upper 4 bits */
69 r1 = crc_tab[crc & 0xF];
70 crc = (crc >> 4) & 0x0FFF;
71 crc = crc ^ r1 ^ crc_tab[(byte >> 4) & 0xF];
72 }
73 return crc;
74}
75
Heiko Schocherb11f53f2011-03-15 16:52:29 +010076static int ivm_set_value(char *name, char *value)
Heiko Schocher8f64da72008-10-15 09:41:00 +020077{
78 char tempbuf[256];
79
80 if (value != NULL) {
Heiko Schocherb11f53f2011-03-15 16:52:29 +010081 sprintf(tempbuf, "%s=%s", name, value);
82 return set_local_var(tempbuf, 0);
Heiko Schocher8f64da72008-10-15 09:41:00 +020083 } else {
Heiko Schocherb11f53f2011-03-15 16:52:29 +010084 unset_local_var(name);
Heiko Schocher8f64da72008-10-15 09:41:00 +020085 }
86 return 0;
87}
88
Heiko Schocherb11f53f2011-03-15 16:52:29 +010089static int ivm_get_value(unsigned char *buf, int len, char *name, int off,
Heiko Schocher8f64da72008-10-15 09:41:00 +020090 int check)
91{
92 unsigned short val;
93 unsigned char valbuf[30];
94
95 if ((buf[off + 0] != buf[off + 2]) &&
96 (buf[off + 2] != buf[off + 4])) {
Heiko Schocherb11f53f2011-03-15 16:52:29 +010097 printf("%s Error corrupted %s\n", __func__, name);
Heiko Schocher8f64da72008-10-15 09:41:00 +020098 val = -1;
99 } else {
100 val = buf[off + 0] + (buf[off + 1] << 8);
101 if ((val == 0) && (check == 1))
102 val = -1;
103 }
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100104 sprintf((char *)valbuf, "%x", val);
105 ivm_set_value(name, (char *)valbuf);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200106 return val;
107}
108
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100109#define INV_BLOCKSIZE 0x100
110#define INV_DATAADDRESS 0x21
111#define INVENTORYDATASIZE (INV_BLOCKSIZE - INV_DATAADDRESS - 3)
Heiko Schocher8f64da72008-10-15 09:41:00 +0200112
113#define IVM_POS_SHORT_TEXT 0
114#define IVM_POS_MANU_ID 1
115#define IVM_POS_MANU_SERIAL 2
116#define IVM_POS_PART_NUMBER 3
117#define IVM_POS_BUILD_STATE 4
118#define IVM_POS_SUPPLIER_PART_NUMBER 5
119#define IVM_POS_DELIVERY_DATE 6
120#define IVM_POS_SUPPLIER_BUILD_STATE 7
121#define IVM_POS_CUSTOMER_ID 8
122#define IVM_POS_CUSTOMER_PROD_ID 9
123#define IVM_POS_HISTORY 10
124#define IVM_POS_SYMBOL_ONLY 11
125
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100126static char convert_char(char c)
Heiko Schocher8f64da72008-10-15 09:41:00 +0200127{
128 return (c < ' ' || c > '~') ? '.' : c;
129}
130
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100131static int ivm_findinventorystring(int type,
Heiko Schocher8f64da72008-10-15 09:41:00 +0200132 unsigned char* const string,
133 unsigned long maxlen,
134 unsigned char *buf)
135{
136 int xcode = 0;
137 unsigned long cr = 0;
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100138 unsigned long addr = INV_DATAADDRESS;
Heiko Schocher8f64da72008-10-15 09:41:00 +0200139 unsigned long size = 0;
140 unsigned long nr = type;
141 int stop = 0; /* stop on semicolon */
142
143 memset(string, '\0', maxlen);
144 switch (type) {
145 case IVM_POS_SYMBOL_ONLY:
146 nr = 0;
147 stop= 1;
148 break;
149 default:
150 nr = type;
151 stop = 0;
152 }
153
154 /* Look for the requested number of CR. */
155 while ((cr != nr) && (addr < INVENTORYDATASIZE)) {
156 if ((buf[addr] == '\r')) {
157 cr++;
158 }
159 addr++;
160 }
161
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100162 /*
163 * the expected number of CR was found until the end of the IVM
164 * content --> fill string
165 */
Heiko Schocher8f64da72008-10-15 09:41:00 +0200166 if (addr < INVENTORYDATASIZE) {
167 /* Copy the IVM string in the corresponding string */
168 for (; (buf[addr] != '\r') &&
169 ((buf[addr] != ';') || (!stop)) &&
170 (size < (maxlen - 1) &&
171 (addr < INVENTORYDATASIZE)); addr++)
172 {
173 size += sprintf((char *)string + size, "%c",
174 convert_char (buf[addr]));
175 }
176
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100177 /*
178 * copy phase is done: check if everything is ok. If not,
Heiko Schocher8f64da72008-10-15 09:41:00 +0200179 * the inventory data is most probably corrupted: tell
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100180 * the world there is a problem!
181 */
Heiko Schocher8f64da72008-10-15 09:41:00 +0200182 if (addr == INVENTORYDATASIZE) {
183 xcode = -1;
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100184 printf("Error end of string not found\n");
Heiko Schocher8f64da72008-10-15 09:41:00 +0200185 } else if ((size >= (maxlen - 1)) &&
186 (buf[addr] != '\r')) {
187 xcode = -1;
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100188 printf("string too long till next CR\n");
Heiko Schocher8f64da72008-10-15 09:41:00 +0200189 }
190 } else {
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100191 /*
192 * some CR are missing...
193 * the inventory data is most probably corrupted
194 */
Heiko Schocher8f64da72008-10-15 09:41:00 +0200195 xcode = -1;
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100196 printf("not enough cr found\n");
Heiko Schocher8f64da72008-10-15 09:41:00 +0200197 }
198 return xcode;
199}
200
201#define GET_STRING(name, which, len) \
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100202 if (ivm_findinventorystring(which, valbuf, len, buf) == 0) { \
203 ivm_set_value(name, (char *)valbuf); \
Heiko Schocher8f64da72008-10-15 09:41:00 +0200204 }
205
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100206static int ivm_check_crc(unsigned char *buf, int block)
Heiko Schocher8f64da72008-10-15 09:41:00 +0200207{
208 unsigned long crc;
209 unsigned long crceeprom;
210
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100211 crc = ivm_calc_crc(buf, CONFIG_SYS_IVM_EEPROM_PAGE_LEN - 2);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200212 crceeprom = (buf[CONFIG_SYS_IVM_EEPROM_PAGE_LEN - 1] + \
213 buf[CONFIG_SYS_IVM_EEPROM_PAGE_LEN - 2] * 256);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200214 if (crc != crceeprom) {
Heiko Schocherdc71b242009-07-09 12:04:18 +0200215 if (block == 0)
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100216 printf("Error CRC Block: %d EEprom: calculated: \
Heiko Schocherdc71b242009-07-09 12:04:18 +0200217 %lx EEprom: %lx\n", block, crc, crceeprom);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200218 return -1;
219 }
220 return 0;
221}
222
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100223static int ivm_analyze_block2(unsigned char *buf, int len)
Heiko Schocher8f64da72008-10-15 09:41:00 +0200224{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200225 unsigned char valbuf[CONFIG_SYS_IVM_EEPROM_PAGE_LEN];
Heiko Schocher8f64da72008-10-15 09:41:00 +0200226 unsigned long count;
227
228 /* IVM_MacAddress */
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100229 sprintf((char *)valbuf, "%pM", buf);
230 ivm_set_value("IVM_MacAddress", (char *)valbuf);
Heiko Schocher0d015202011-01-06 10:25:26 +0100231 /* if an offset is defined, add it */
232#if defined(CONFIG_PIGGY_MAC_ADRESS_OFFSET)
233 if (CONFIG_PIGGY_MAC_ADRESS_OFFSET > 0) {
234 unsigned long val = (buf[4] << 16) + (buf[5] << 8) + buf[6];
235
236 val += CONFIG_PIGGY_MAC_ADRESS_OFFSET;
237 buf[4] = (val >> 16) & 0xff;
238 buf[5] = (val >> 8) & 0xff;
239 buf[6] = val & 0xff;
240 sprintf((char *)valbuf, "%pM", buf);
241 }
242#endif
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100243 if (getenv("ethaddr") == NULL)
244 setenv((char *)"ethaddr", (char *)valbuf);
Heiko Schocher0d015202011-01-06 10:25:26 +0100245
Heiko Schocher8f64da72008-10-15 09:41:00 +0200246 /* IVM_MacCount */
247 count = (buf[10] << 24) +
248 (buf[11] << 16) +
249 (buf[12] << 8) +
250 buf[13];
251 if (count == 0xffffffff)
252 count = 1;
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100253 sprintf((char *)valbuf, "%lx", count);
254 ivm_set_value("IVM_MacCount", (char *)valbuf);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200255 return 0;
256}
257
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100258int ivm_analyze_eeprom(unsigned char *buf, int len)
Heiko Schocher8f64da72008-10-15 09:41:00 +0200259{
260 unsigned short val;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200261 unsigned char valbuf[CONFIG_SYS_IVM_EEPROM_PAGE_LEN];
Heiko Schocher8f64da72008-10-15 09:41:00 +0200262 unsigned char *tmp;
263
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100264 if (ivm_check_crc(buf, 0) != 0)
Heiko Schocher8f64da72008-10-15 09:41:00 +0200265 return -1;
266
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100267 ivm_get_value(buf, CONFIG_SYS_IVM_EEPROM_PAGE_LEN,
268 "IVM_BoardId", 0, 1);
269 val = ivm_get_value(buf, CONFIG_SYS_IVM_EEPROM_PAGE_LEN,
270 "IVM_HWKey", 6, 1);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200271 if (val != 0xffff) {
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100272 sprintf((char *)valbuf, "%x", ((val / 100) % 10));
273 ivm_set_value("IVM_HWVariant", (char *)valbuf);
274 sprintf((char *)valbuf, "%x", (val % 100));
275 ivm_set_value("IVM_HWVersion", (char *)valbuf);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200276 }
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100277 ivm_get_value(buf, CONFIG_SYS_IVM_EEPROM_PAGE_LEN,
278 "IVM_Functions", 12, 0);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200279
280 GET_STRING("IVM_Symbol", IVM_POS_SYMBOL_ONLY, 8)
281 GET_STRING("IVM_DeviceName", IVM_POS_SHORT_TEXT, 64)
282 tmp = (unsigned char *) getenv("IVM_DeviceName");
283 if (tmp) {
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100284 int len = strlen((char *)tmp);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200285 int i = 0;
286
287 while (i < len) {
288 if (tmp[i] == ';') {
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100289 ivm_set_value("IVM_ShortText",
290 (char *)&tmp[i + 1]);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200291 break;
292 }
293 i++;
294 }
295 if (i >= len)
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100296 ivm_set_value("IVM_ShortText", NULL);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200297 } else {
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100298 ivm_set_value("IVM_ShortText", NULL);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200299 }
300 GET_STRING("IVM_ManufacturerID", IVM_POS_MANU_ID, 32)
301 GET_STRING("IVM_ManufacturerSerialNumber", IVM_POS_MANU_SERIAL, 20)
302 GET_STRING("IVM_ManufacturerPartNumber", IVM_POS_PART_NUMBER, 32)
303 GET_STRING("IVM_ManufacturerBuildState", IVM_POS_BUILD_STATE, 32)
304 GET_STRING("IVM_SupplierPartNumber", IVM_POS_SUPPLIER_PART_NUMBER, 32)
305 GET_STRING("IVM_DelieveryDate", IVM_POS_DELIVERY_DATE, 32)
306 GET_STRING("IVM_SupplierBuildState", IVM_POS_SUPPLIER_BUILD_STATE, 32)
307 GET_STRING("IVM_CustomerID", IVM_POS_CUSTOMER_ID, 32)
308 GET_STRING("IVM_CustomerProductID", IVM_POS_CUSTOMER_PROD_ID, 32)
309
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100310 if (ivm_check_crc(&buf[CONFIG_SYS_IVM_EEPROM_PAGE_LEN * 2], 2) != 0)
Heiko Schocherdc71b242009-07-09 12:04:18 +0200311 return 0;
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100312 ivm_analyze_block2(&buf[CONFIG_SYS_IVM_EEPROM_PAGE_LEN * 2],
313 CONFIG_SYS_IVM_EEPROM_PAGE_LEN);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200314
315 return 0;
316}
317
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100318int ivm_read_eeprom(void)
Heiko Schocher8f64da72008-10-15 09:41:00 +0200319{
Heiko Schocher1b6275d2009-03-12 07:37:34 +0100320#if defined(CONFIG_I2C_MUX)
Heiko Schocher8f64da72008-10-15 09:41:00 +0200321 I2C_MUX_DEVICE *dev = NULL;
Heiko Schocher1b6275d2009-03-12 07:37:34 +0100322#endif
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200323 uchar i2c_buffer[CONFIG_SYS_IVM_EEPROM_MAX_LEN];
Heiko Schocher8f64da72008-10-15 09:41:00 +0200324 uchar *buf;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200325 unsigned dev_addr = CONFIG_SYS_IVM_EEPROM_ADR;
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100326 int ret;
Heiko Schocher8f64da72008-10-15 09:41:00 +0200327
Heiko Schocher1b6275d2009-03-12 07:37:34 +0100328#if defined(CONFIG_I2C_MUX)
Heiko Schocher8f64da72008-10-15 09:41:00 +0200329 /* First init the Bus, select the Bus */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200330#if defined(CONFIG_SYS_I2C_IVM_BUS)
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100331 dev = i2c_mux_ident_muxstring((uchar *)CONFIG_SYS_I2C_IVM_BUS);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200332#else
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100333 buf = (unsigned char *) getenv("EEprom_ivm");
Heiko Schocher8f64da72008-10-15 09:41:00 +0200334 if (buf != NULL)
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100335 dev = i2c_mux_ident_muxstring(buf);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200336#endif
337 if (dev == NULL) {
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100338 printf("Error couldnt add Bus for IVM\n");
Heiko Schocher8f64da72008-10-15 09:41:00 +0200339 return -1;
340 }
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100341 i2c_set_bus_num(dev->busid);
Heiko Schocher1b6275d2009-03-12 07:37:34 +0100342#endif
Heiko Schocher8f64da72008-10-15 09:41:00 +0200343
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100344 buf = (unsigned char *) getenv("EEprom_ivm_addr");
Heiko Schocher8f64da72008-10-15 09:41:00 +0200345 if (buf != NULL)
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100346 dev_addr = simple_strtoul((char *)buf, NULL, 16);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200347
Heiko Schocher6c11aea2011-03-08 10:51:15 +0100348 /* add deblocking here */
349 i2c_make_abort();
350
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100351 ret = i2c_read(dev_addr, 0, 1, i2c_buffer,
Heiko Schocher6c11aea2011-03-08 10:51:15 +0100352 CONFIG_SYS_IVM_EEPROM_MAX_LEN);
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100353 if (ret != 0) {
Heiko Schocher8f64da72008-10-15 09:41:00 +0200354 printf ("Error reading EEprom\n");
355 return -2;
356 }
357
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100358 return ivm_analyze_eeprom(i2c_buffer, CONFIG_SYS_IVM_EEPROM_MAX_LEN);
Heiko Schocher8f64da72008-10-15 09:41:00 +0200359}
360
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200361#if defined(CONFIG_SYS_I2C_INIT_BOARD)
Heiko Schocher6c11aea2011-03-08 10:51:15 +0100362#define DELAY_ABORT_SEQ 62 /* @200kHz 9 clocks = 44us, 62us is ok */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200363#define DELAY_HALF_PERIOD (500 / (CONFIG_SYS_I2C_SPEED / 1000))
Heiko Schocherc2485362008-10-15 09:39:08 +0200364
Heiko Schocheraf895e42011-02-22 08:58:19 +0100365#if defined(CONFIG_MGCOGE) || defined(CONFIG_MGCOGE2NE)
Heiko Schocherc2485362008-10-15 09:39:08 +0200366#define SDA_MASK 0x00010000
367#define SCL_MASK 0x00020000
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100368static void set_pin(int state, unsigned long mask)
Heiko Schocherc2485362008-10-15 09:39:08 +0200369{
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100370 ioport_t *iop = ioport_addr((immap_t *)CONFIG_SYS_IMMR, 3);
Heiko Schocherc2485362008-10-15 09:39:08 +0200371
372 if (state)
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100373 setbits_be32(&iop->pdat, mask);
Heiko Schocherc2485362008-10-15 09:39:08 +0200374 else
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100375 clrbits_be32(&iop->pdat, mask);
Heiko Schocherc2485362008-10-15 09:39:08 +0200376
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100377 setbits_be32(&iop->pdir, mask);
Heiko Schocherc2485362008-10-15 09:39:08 +0200378}
379
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100380static int get_pin(unsigned long mask)
Heiko Schocherc2485362008-10-15 09:39:08 +0200381{
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100382 ioport_t *iop = ioport_addr((immap_t *)CONFIG_SYS_IMMR, 3);
Heiko Schocherc2485362008-10-15 09:39:08 +0200383
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100384 clrbits_be32(&iop->pdir, mask);
385 return 0 != (in_be32(&iop->pdat) & mask);
Heiko Schocherc2485362008-10-15 09:39:08 +0200386}
387
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100388static void set_sda(int state)
Heiko Schocherc2485362008-10-15 09:39:08 +0200389{
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100390 set_pin(state, SDA_MASK);
Heiko Schocherc2485362008-10-15 09:39:08 +0200391}
392
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100393static void set_scl(int state)
Heiko Schocherc2485362008-10-15 09:39:08 +0200394{
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100395 set_pin(state, SCL_MASK);
Heiko Schocherc2485362008-10-15 09:39:08 +0200396}
397
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100398static int get_sda(void)
Heiko Schocherc2485362008-10-15 09:39:08 +0200399{
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100400 return get_pin(SDA_MASK);
Heiko Schocherc2485362008-10-15 09:39:08 +0200401}
402
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100403static int get_scl(void)
Heiko Schocherc2485362008-10-15 09:39:08 +0200404{
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100405 return get_pin(SCL_MASK);
Heiko Schocherc2485362008-10-15 09:39:08 +0200406}
407
408#if defined(CONFIG_HARD_I2C)
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100409static void setports(int gpio)
Heiko Schocherc2485362008-10-15 09:39:08 +0200410{
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100411 ioport_t *iop = ioport_addr((immap_t *)CONFIG_SYS_IMMR, 3);
Heiko Schocherc2485362008-10-15 09:39:08 +0200412
413 if (gpio) {
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100414 clrbits_be32(&iop->ppar, (SDA_MASK | SCL_MASK));
415 clrbits_be32(&iop->podr, (SDA_MASK | SCL_MASK));
Heiko Schocherc2485362008-10-15 09:39:08 +0200416 } else {
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100417 setbits_be32(&iop->ppar, (SDA_MASK | SCL_MASK));
418 clrbits_be32(&iop->pdir, (SDA_MASK | SCL_MASK));
419 setbits_be32(&iop->podr, (SDA_MASK | SCL_MASK));
Heiko Schocherc2485362008-10-15 09:39:08 +0200420 }
421}
422#endif
423#endif
424
Heiko Schocher62ddcf02010-02-18 08:08:25 +0100425#if !defined(CONFIG_MPC83xx)
Heiko Schocher6c11aea2011-03-08 10:51:15 +0100426static void i2c_write_start_seq(void)
Heiko Schocherc2485362008-10-15 09:39:08 +0200427{
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100428 set_sda(1);
429 udelay(DELAY_HALF_PERIOD);
430 set_scl(1);
431 udelay(DELAY_HALF_PERIOD);
432 set_sda(0);
433 udelay(DELAY_HALF_PERIOD);
434 set_scl(0);
435 udelay(DELAY_HALF_PERIOD);
Heiko Schocherc2485362008-10-15 09:39:08 +0200436}
437
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100438/*
439 * I2C is a synchronous protocol and resets of the processor in the middle
440 * of an access can block the I2C Bus until a powerdown of the full unit is
441 * done. This function toggles the SCL until the SCL and SCA line are
442 * released, but max. 16 times, after this a I2C start-sequence is sent.
443 * This I2C Deblocking mechanism was developed by Keymile in association
444 * with Anatech and Atmel in 1998.
Heiko Schocherc2485362008-10-15 09:39:08 +0200445 */
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100446static int i2c_make_abort(void)
Heiko Schocherc2485362008-10-15 09:39:08 +0200447{
Heiko Schocher6c11aea2011-03-08 10:51:15 +0100448
449#if defined(CONFIG_HARD_I2C) && !defined(MACH_TYPE_KM_KIRKWOOD)
450 immap_t *immap = (immap_t *)CONFIG_SYS_IMMR ;
451 i2c8260_t *i2c = (i2c8260_t *)&immap->im_i2c;
452
453 /*
454 * disable I2C controller first, otherwhise it thinks we want to
455 * talk to the slave port...
456 */
457 clrbits_8(&i2c->i2c_i2mod, 0x01);
458
459 /* Set the PortPins to GPIO */
460 setports(1);
461#endif
462
Heiko Schocherc2485362008-10-15 09:39:08 +0200463 int scl_state = 0;
464 int sda_state = 0;
465 int i = 0;
466 int ret = 0;
467
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100468 if (!get_sda()) {
Heiko Schocherc2485362008-10-15 09:39:08 +0200469 ret = -1;
470 while (i < 16) {
471 i++;
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100472 set_scl(0);
473 udelay(DELAY_ABORT_SEQ);
474 set_scl(1);
475 udelay(DELAY_ABORT_SEQ);
476 scl_state = get_scl();
477 sda_state = get_sda();
Heiko Schocherc2485362008-10-15 09:39:08 +0200478 if (scl_state && sda_state) {
479 ret = 0;
480 break;
481 }
482 }
483 }
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100484 if (ret == 0)
485 for (i = 0; i < 5; i++)
Heiko Schocher6c11aea2011-03-08 10:51:15 +0100486 i2c_write_start_seq();
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100487
Heiko Schocher6c11aea2011-03-08 10:51:15 +0100488 /* respect stop setup time */
489 udelay(DELAY_ABORT_SEQ);
490 set_scl(1);
491 udelay(DELAY_ABORT_SEQ);
492 set_sda(1);
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100493 get_sda();
Heiko Schocherc2485362008-10-15 09:39:08 +0200494
495#if defined(CONFIG_HARD_I2C)
496 /* Set the PortPins back to use for I2C */
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100497 setports(0);
Heiko Schocherc2485362008-10-15 09:39:08 +0200498#endif
Heiko Schocher6c11aea2011-03-08 10:51:15 +0100499 return ret;
500}
Heiko Schocher39df00d2009-07-09 12:04:26 +0200501#endif
Heiko Schocher6c11aea2011-03-08 10:51:15 +0100502
503#if defined(CONFIG_MPC83xx)
504static void i2c_write_start_seq(void)
505{
506 struct fsl_i2c *dev;
507 dev = (struct fsl_i2c *) (CONFIG_SYS_IMMR + CONFIG_SYS_I2C_OFFSET);
508 udelay(DELAY_ABORT_SEQ);
509 out_8(&dev->cr, (I2C_CR_MEN | I2C_CR_MSTA));
510 udelay(DELAY_ABORT_SEQ);
511 out_8(&dev->cr, (I2C_CR_MEN));
512}
513
514static int i2c_make_abort(void)
515{
516 struct fsl_i2c *dev;
517 dev = (struct fsl_i2c *) (CONFIG_SYS_IMMR + CONFIG_SYS_I2C_OFFSET);
518 uchar dummy;
519 uchar last;
520 int nbr_read = 0;
521 int i = 0;
522 int ret = 0;
523
524 /* wait after each operation to finsh with a delay */
525 out_8(&dev->cr, (I2C_CR_MSTA));
526 udelay(DELAY_ABORT_SEQ);
527 out_8(&dev->cr, (I2C_CR_MEN | I2C_CR_MSTA));
528 udelay(DELAY_ABORT_SEQ);
529 dummy = in_8(&dev->dr);
530 udelay(DELAY_ABORT_SEQ);
531 last = in_8(&dev->dr);
532 nbr_read++;
533
534 /*
535 * do read until the last bit is 1, but stop if the full eeprom is
536 * read.
537 */
538 while (((last & 0x01) != 0x01) &&
539 (nbr_read < CONFIG_SYS_IVM_EEPROM_MAX_LEN)) {
540 udelay(DELAY_ABORT_SEQ);
541 last = in_8(&dev->dr);
542 nbr_read++;
543 }
544 if ((last & 0x01) != 0x01)
545 ret = -2;
546 if ((last != 0xff) || (nbr_read > 1))
547 printf("[INFO] i2c abort after %d bytes (0x%02x)\n",
548 nbr_read, last);
549 udelay(DELAY_ABORT_SEQ);
550 out_8(&dev->cr, (I2C_CR_MEN));
551 udelay(DELAY_ABORT_SEQ);
552 /* clear status reg */
553 out_8(&dev->sr, 0);
554
555 for (i = 0; i < 5; i++)
556 i2c_write_start_seq();
557 if (ret != 0)
558 printf("[ERROR] i2c abort failed after %d bytes (0x%02x)\n",
559 nbr_read, last);
560
561 return ret;
562}
563#endif
564
565/**
566 * i2c_init_board - reset i2c bus. When the board is powercycled during a
567 * bus transfer it might hang; for details see doc/I2C_Edge_Conditions.
568 */
569void i2c_init_board(void)
570{
571 /* Now run the AbortSequence() */
572 i2c_make_abort();
Heiko Schocherc2485362008-10-15 09:39:08 +0200573}
574#endif
Heiko Schocher210c8c02008-11-21 08:29:40 +0100575#endif
Heiko Schocher6250f0f2008-10-17 16:11:52 +0200576
577#if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_OF_LIBFDT)
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100578int fdt_set_node_and_value(void *blob,
Heiko Schocher6250f0f2008-10-17 16:11:52 +0200579 char *nodename,
580 char *regname,
581 void *var,
582 int size)
583{
584 int ret = 0;
585 int nodeoffset = 0;
586
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100587 nodeoffset = fdt_path_offset(blob, nodename);
Heiko Schocher6250f0f2008-10-17 16:11:52 +0200588 if (nodeoffset >= 0) {
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100589 ret = fdt_setprop(blob, nodeoffset, regname, var,
Heiko Schocher6250f0f2008-10-17 16:11:52 +0200590 size);
591 if (ret < 0)
592 printf("ft_blob_update(): cannot set %s/%s "
593 "property err:%s\n", nodename, regname,
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100594 fdt_strerror(ret));
Heiko Schocher6250f0f2008-10-17 16:11:52 +0200595 } else {
596 printf("ft_blob_update(): cannot find %s node "
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100597 "err:%s\n", nodename, fdt_strerror(nodeoffset));
Heiko Schocher6250f0f2008-10-17 16:11:52 +0200598 }
599 return ret;
600}
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100601
602int fdt_get_node_and_value(void *blob,
Heiko Schocherdc71b242009-07-09 12:04:18 +0200603 char *nodename,
604 char *propname,
605 void **var)
606{
607 int len;
608 int nodeoffset = 0;
609
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100610 nodeoffset = fdt_path_offset(blob, nodename);
Heiko Schocherdc71b242009-07-09 12:04:18 +0200611 if (nodeoffset >= 0) {
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100612 *var = (void *)fdt_getprop(blob, nodeoffset, propname, &len);
Heiko Schocherdc71b242009-07-09 12:04:18 +0200613 if (len == 0) {
614 /* no value */
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100615 printf("%s no value\n", __func__);
Heiko Schocherdc71b242009-07-09 12:04:18 +0200616 return -1;
617 } else if (len > 0) {
618 return len;
619 } else {
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100620 printf("libfdt fdt_getprop(): %s\n",
Heiko Schocherdc71b242009-07-09 12:04:18 +0200621 fdt_strerror(len));
622 return -2;
623 }
624 } else {
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100625 printf("%s: cannot find %s node err:%s\n", __func__,
626 nodename, fdt_strerror(nodeoffset));
Heiko Schocherdc71b242009-07-09 12:04:18 +0200627 return -3;
628 }
629}
Heiko Schocher6250f0f2008-10-17 16:11:52 +0200630#endif
Heiko Schocher210c8c02008-11-21 08:29:40 +0100631
Holger Brunck802d9962011-03-14 15:31:19 +0100632#if !defined(MACH_TYPE_KM_KIRKWOOD)
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100633int ethernet_present(void)
Heiko Schocher210c8c02008-11-21 08:29:40 +0100634{
Heiko Schocher8ed74342011-03-08 10:47:39 +0100635 struct km_bec_fpga *base =
636 (struct km_bec_fpga *)CONFIG_SYS_KMBEC_FPGA_BASE;
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100637
638 return in_8(&base->bprth) & PIGGY_PRESENT;
Heiko Schocher210c8c02008-11-21 08:29:40 +0100639}
Heiko Schocher67fa8c22010-02-22 16:43:02 +0530640#endif
Heiko Schocher210c8c02008-11-21 08:29:40 +0100641
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100642int board_eth_init(bd_t *bis)
Heiko Schocher210c8c02008-11-21 08:29:40 +0100643{
644#ifdef CONFIG_KEYMILE_HDLC_ENET
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100645 (void)keymile_hdlc_enet_initialize(bis);
Heiko Schocher210c8c02008-11-21 08:29:40 +0100646#endif
Heiko Schocherb11f53f2011-03-15 16:52:29 +0100647 if (ethernet_present())
Heiko Schocher62ddcf02010-02-18 08:08:25 +0100648 return cpu_eth_init(bis);
649
650 return -1;
Heiko Schocher210c8c02008-11-21 08:29:40 +0100651}