Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 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> |
Sughosh Ganu | d7f9b50 | 2010-11-28 20:21:27 -0500 | [diff] [blame] | 33 | #include <asm/arch/davinci_misc.h> |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 34 | |
| 35 | #define DAVINCI_A3CR (0x01E00014) /* EMIF-A CS3 config register. */ |
| 36 | #define DAVINCI_A3CR_VAL (0x3FFFFFFD) /* EMIF-A CS3 value for FPGA. */ |
| 37 | |
| 38 | #define INTEGRITY_SYSCFG_OFFSET 0x7E8 |
| 39 | #define INTEGRITY_CHECKWORD_OFFSET 0x7F8 |
| 40 | #define INTEGRITY_CHECKWORD_VALUE 0x10ADBEEF |
| 41 | |
| 42 | DECLARE_GLOBAL_DATA_PTR; |
| 43 | |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 44 | int board_init(void) |
| 45 | { |
| 46 | /* arch number of the board */ |
| 47 | gd->bd->bi_arch_number = MACH_TYPE_SFFSDR; |
| 48 | |
| 49 | /* address of boot parameters */ |
| 50 | gd->bd->bi_boot_params = LINUX_BOOT_PARAM_ADDR; |
| 51 | |
Hugo Villeneuve | 0cd18fa | 2008-11-21 14:35:56 -0500 | [diff] [blame] | 52 | davinci_errata_workarounds(); |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 53 | |
| 54 | /* Power on required peripherals */ |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 55 | lpsc_on(DAVINCI_LPSC_GPIO); |
| 56 | |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 57 | #if !defined(CONFIG_SYS_USE_DSPLINK) |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 58 | /* Powerup the DSP */ |
| 59 | dsp_on(); |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 60 | #endif /* CONFIG_SYS_USE_DSPLINK */ |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 61 | |
Hugo Villeneuve | 0cd18fa | 2008-11-21 14:35:56 -0500 | [diff] [blame] | 62 | davinci_enable_uart0(); |
| 63 | davinci_enable_emac(); |
| 64 | davinci_enable_i2c(); |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 65 | |
Hugo Villeneuve | 0cd18fa | 2008-11-21 14:35:56 -0500 | [diff] [blame] | 66 | lpsc_on(DAVINCI_LPSC_TIMER1); |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 67 | timer_init(); |
| 68 | |
| 69 | return(0); |
| 70 | } |
| 71 | |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 72 | /* Read ethernet MAC address from Integrity data structure inside EEPROM. |
| 73 | * Returns 1 if found, 0 otherwise. |
| 74 | */ |
| 75 | static int sffsdr_read_mac_address(uint8_t *buf) |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 76 | { |
| 77 | u_int32_t value, mac[2], address; |
| 78 | |
| 79 | /* Read Integrity data structure checkword. */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 80 | if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, INTEGRITY_CHECKWORD_OFFSET, |
| 81 | CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &value, 4)) |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 82 | goto err; |
| 83 | if (value != INTEGRITY_CHECKWORD_VALUE) |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 84 | return 0; |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 85 | |
| 86 | /* Read SYSCFG structure offset. */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 87 | if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, INTEGRITY_SYSCFG_OFFSET, |
| 88 | CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &value, 4)) |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 89 | goto err; |
| 90 | address = 0x800 + (int) value; /* Address of SYSCFG structure. */ |
| 91 | |
| 92 | /* Read NET CONFIG structure offset. */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 93 | if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, address, |
| 94 | CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &value, 4)) |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 95 | goto err; |
| 96 | address = 0x800 + (int) value; /* Address of NET CONFIG structure. */ |
| 97 | address += 12; /* Address of NET INTERFACE CONFIG structure. */ |
| 98 | |
| 99 | /* Read NET INTERFACE CONFIG 2 structure offset. */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 100 | if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, address, |
| 101 | CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &value, 4)) |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 102 | goto err; |
| 103 | address = 0x800 + 16 + (int) value; /* Address of NET INTERFACE |
| 104 | * CONFIG 2 structure. */ |
| 105 | |
| 106 | /* Read MAC address. */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 107 | if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, address, |
| 108 | CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &mac[0], 8)) |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 109 | goto err; |
| 110 | |
| 111 | buf[0] = mac[0] >> 24; |
| 112 | buf[1] = mac[0] >> 16; |
| 113 | buf[2] = mac[0] >> 8; |
| 114 | buf[3] = mac[0]; |
| 115 | buf[4] = mac[1] >> 24; |
| 116 | buf[5] = mac[1] >> 16; |
| 117 | |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 118 | return 1; /* Found */ |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 119 | |
| 120 | err: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 121 | printf("Read from EEPROM @ 0x%02x failed\n", CONFIG_SYS_I2C_EEPROM_ADDR); |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 122 | return 0; |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 123 | } |
| 124 | |
| 125 | /* Platform dependent initialisation. */ |
| 126 | int misc_init_r(void) |
| 127 | { |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 128 | uint8_t i2cbuf; |
| 129 | uint8_t eeprom_enetaddr[6]; |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 130 | |
| 131 | /* EMIF-A CS3 configuration for FPGA. */ |
| 132 | REG(DAVINCI_A3CR) = DAVINCI_A3CR_VAL; |
| 133 | |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 134 | /* Configure I2C switch (PCA9543) to enable channel 0. */ |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 135 | i2cbuf = CONFIG_SYS_I2C_PCA9543_ENABLE_CH0; |
| 136 | if (i2c_write(CONFIG_SYS_I2C_PCA9543_ADDR, 0, |
| 137 | CONFIG_SYS_I2C_PCA9543_ADDR_LEN, &i2cbuf, 1)) { |
| 138 | printf("Write to MUX @ 0x%02x failed\n", CONFIG_SYS_I2C_PCA9543_ADDR); |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 139 | return 1; |
| 140 | } |
| 141 | |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 142 | /* Read Ethernet MAC address from EEPROM if available. */ |
| 143 | if (sffsdr_read_mac_address(eeprom_enetaddr)) |
Ben Gardiner | 7b37a27 | 2010-09-23 09:58:43 -0400 | [diff] [blame] | 144 | davinci_sync_env_enetaddr(eeprom_enetaddr); |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 145 | |
Hugo Villeneuve | 2b1fa9d | 2008-07-08 11:02:05 -0400 | [diff] [blame] | 146 | return(0); |
| 147 | } |