]> git.sur5r.net Git - u-boot/blob - board/davinci/sffsdr/sffsdr.c
Merge branch 'master' of git://git.denx.de/u-boot
[u-boot] / board / davinci / sffsdr / sffsdr.c
1 /*
2  * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
3  *
4  * Copyright (C) 2008 Lyrtech <www.lyrtech.com>
5  * Copyright (C) 2008 Philip Balister, OpenSDR <philip@opensdr.com>
6  *
7  * Parts are shamelessly stolen from various TI sources, original copyright
8  * follows:
9  *
10  * Copyright (C) 2004 Texas Instruments.
11  *
12  * See file CREDITS for list of people who contributed to this
13  * project.
14  *
15  * This program is free software; you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation; either version 2 of the License, or
18  * (at your option) any later version.
19  *
20  * This program is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with this program; if not, write to the Free Software
27  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
28  */
29
30 #include <common.h>
31 #include <i2c.h>
32 #include <asm/arch/hardware.h>
33 #include "../common/psc.h"
34 #include "../common/misc.h"
35
36 #define DAVINCI_A3CR     (0x01E00014)   /* EMIF-A CS3 config register. */
37 #define DAVINCI_A3CR_VAL (0x3FFFFFFD)   /* EMIF-A CS3 value for FPGA. */
38
39 #define INTEGRITY_SYSCFG_OFFSET    0x7E8
40 #define INTEGRITY_CHECKWORD_OFFSET 0x7F8
41 #define INTEGRITY_CHECKWORD_VALUE  0x10ADBEEF
42
43 DECLARE_GLOBAL_DATA_PTR;
44
45 int board_init(void)
46 {
47         /* arch number of the board */
48         gd->bd->bi_arch_number = MACH_TYPE_SFFSDR;
49
50         /* address of boot parameters */
51         gd->bd->bi_boot_params = LINUX_BOOT_PARAM_ADDR;
52
53         davinci_errata_workarounds();
54
55         /* Power on required peripherals */
56         lpsc_on(DAVINCI_LPSC_GPIO);
57
58 #if !defined(CONFIG_SYS_USE_DSPLINK)
59         /* Powerup the DSP */
60         dsp_on();
61 #endif /* CONFIG_SYS_USE_DSPLINK */
62
63         davinci_enable_uart0();
64         davinci_enable_emac();
65         davinci_enable_i2c();
66
67         lpsc_on(DAVINCI_LPSC_TIMER1);
68         timer_init();
69
70         return(0);
71 }
72
73 /* Read ethernet MAC address from Integrity data structure inside EEPROM.
74  * Returns 1 if found, 0 otherwise.
75  */
76 static int sffsdr_read_mac_address(uint8_t *buf)
77 {
78         u_int32_t value, mac[2], address;
79
80         /* Read Integrity data structure checkword. */
81         if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, INTEGRITY_CHECKWORD_OFFSET,
82                      CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &value, 4))
83                 goto err;
84         if (value != INTEGRITY_CHECKWORD_VALUE)
85                 return 0;
86
87         /* Read SYSCFG structure offset. */
88         if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, INTEGRITY_SYSCFG_OFFSET,
89                      CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &value, 4))
90                 goto err;
91         address = 0x800 + (int) value; /* Address of SYSCFG structure. */
92
93         /* Read NET CONFIG structure offset. */
94         if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, address,
95                      CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &value, 4))
96                 goto err;
97         address = 0x800 + (int) value; /* Address of NET CONFIG structure. */
98         address += 12; /* Address of NET INTERFACE CONFIG structure. */
99
100         /* Read NET INTERFACE CONFIG 2 structure offset. */
101         if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, address,
102                      CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &value, 4))
103                 goto err;
104         address = 0x800 + 16 + (int) value;     /* Address of NET INTERFACE
105                                                  * CONFIG 2 structure. */
106
107         /* Read MAC address. */
108         if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, address,
109                      CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &mac[0], 8))
110                 goto err;
111
112         buf[0] = mac[0] >> 24;
113         buf[1] = mac[0] >> 16;
114         buf[2] = mac[0] >> 8;
115         buf[3] = mac[0];
116         buf[4] = mac[1] >> 24;
117         buf[5] = mac[1] >> 16;
118
119         return 1; /* Found */
120
121 err:
122         printf("Read from EEPROM @ 0x%02x failed\n", CONFIG_SYS_I2C_EEPROM_ADDR);
123         return 0;
124 }
125
126 /* Platform dependent initialisation. */
127 int misc_init_r(void)
128 {
129         uint8_t i2cbuf;
130         uint8_t eeprom_enetaddr[6];
131
132         /* EMIF-A CS3 configuration for FPGA. */
133         REG(DAVINCI_A3CR) = DAVINCI_A3CR_VAL;
134
135         dv_display_clk_infos();
136
137         /* Configure I2C switch (PCA9543) to enable channel 0. */
138         i2cbuf = CONFIG_SYS_I2C_PCA9543_ENABLE_CH0;
139         if (i2c_write(CONFIG_SYS_I2C_PCA9543_ADDR, 0,
140                       CONFIG_SYS_I2C_PCA9543_ADDR_LEN, &i2cbuf, 1)) {
141                 printf("Write to MUX @ 0x%02x failed\n", CONFIG_SYS_I2C_PCA9543_ADDR);
142                 return 1;
143         }
144
145         /* Read Ethernet MAC address from EEPROM if available. */
146         if (sffsdr_read_mac_address(eeprom_enetaddr))
147                 dv_configure_mac_address(eeprom_enetaddr);
148
149         if (!eth_hw_init())
150                 printf("Ethernet init failed\n");
151
152         return(0);
153 }