Enric Balletbo i Serra | 8a3f6bb | 2010-10-14 16:54:59 -0400 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2010 |
| 3 | * ISEE 2007 SL, <www.iseebcn.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 | #include <common.h> |
| 24 | #include <netdev.h> |
| 25 | #include <twl4030.h> |
| 26 | #include <asm/io.h> |
Sanjeev Premi | 84c3b63 | 2011-09-08 10:51:01 -0400 | [diff] [blame] | 27 | #include <asm/gpio.h> |
Enric Balletbo i Serra | 8a3f6bb | 2010-10-14 16:54:59 -0400 | [diff] [blame] | 28 | #include <asm/arch/mem.h> |
Enric Balletbo i Serra | f49d7b6 | 2010-11-04 15:34:33 -0400 | [diff] [blame] | 29 | #include <asm/arch/mmc_host_def.h> |
Enric Balletbo i Serra | 8a3f6bb | 2010-10-14 16:54:59 -0400 | [diff] [blame] | 30 | #include <asm/arch/mux.h> |
| 31 | #include <asm/arch/sys_proto.h> |
Philip Balister | 5213d24 | 2011-09-14 13:32:22 -0400 | [diff] [blame] | 32 | #include <asm/arch/omap_gpmc.h> |
Enric Balletbo i Serra | 8a3f6bb | 2010-10-14 16:54:59 -0400 | [diff] [blame] | 33 | #include <asm/mach-types.h> |
| 34 | #include "igep0020.h" |
| 35 | |
John Rigby | 2956532 | 2010-12-20 18:27:51 -0700 | [diff] [blame] | 36 | DECLARE_GLOBAL_DATA_PTR; |
| 37 | |
Enric Balletbo i Serra | 8a3f6bb | 2010-10-14 16:54:59 -0400 | [diff] [blame] | 38 | /* GPMC definitions for LAN9221 chips */ |
| 39 | static const u32 gpmc_lan_config[] = { |
| 40 | NET_LAN9221_GPMC_CONFIG1, |
| 41 | NET_LAN9221_GPMC_CONFIG2, |
| 42 | NET_LAN9221_GPMC_CONFIG3, |
| 43 | NET_LAN9221_GPMC_CONFIG4, |
| 44 | NET_LAN9221_GPMC_CONFIG5, |
| 45 | NET_LAN9221_GPMC_CONFIG6, |
| 46 | }; |
| 47 | |
| 48 | /* |
| 49 | * Routine: board_init |
| 50 | * Description: Early hardware init. |
| 51 | */ |
| 52 | int board_init(void) |
| 53 | { |
Enric Balletbo i Serra | 8a3f6bb | 2010-10-14 16:54:59 -0400 | [diff] [blame] | 54 | gpmc_init(); /* in SRAM or SDRAM, finish GPMC */ |
Enric Balletbo i Serra | 8a3f6bb | 2010-10-14 16:54:59 -0400 | [diff] [blame] | 55 | /* boot param addr */ |
| 56 | gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100); |
| 57 | |
| 58 | return 0; |
| 59 | } |
| 60 | |
| 61 | /* |
| 62 | * Routine: setup_net_chip |
| 63 | * Description: Setting up the configuration GPMC registers specific to the |
| 64 | * Ethernet hardware. |
| 65 | */ |
| 66 | #if defined(CONFIG_CMD_NET) |
| 67 | static void setup_net_chip(void) |
| 68 | { |
| 69 | struct ctrl *ctrl_base = (struct ctrl *)OMAP34XX_CTRL_BASE; |
| 70 | |
| 71 | enable_gpmc_cs_config(gpmc_lan_config, &gpmc_cfg->cs[5], 0x2C000000, |
| 72 | GPMC_SIZE_16M); |
| 73 | |
| 74 | /* Enable off mode for NWE in PADCONF_GPMC_NWE register */ |
| 75 | writew(readw(&ctrl_base->gpmc_nwe) | 0x0E00, &ctrl_base->gpmc_nwe); |
| 76 | /* Enable off mode for NOE in PADCONF_GPMC_NADV_ALE register */ |
| 77 | writew(readw(&ctrl_base->gpmc_noe) | 0x0E00, &ctrl_base->gpmc_noe); |
| 78 | /* Enable off mode for ALE in PADCONF_GPMC_NADV_ALE register */ |
| 79 | writew(readw(&ctrl_base->gpmc_nadv_ale) | 0x0E00, |
| 80 | &ctrl_base->gpmc_nadv_ale); |
| 81 | |
| 82 | /* Make GPIO 64 as output pin and send a magic pulse through it */ |
Sanjeev Premi | 84c3b63 | 2011-09-08 10:51:01 -0400 | [diff] [blame] | 83 | if (!gpio_request(64, "")) { |
| 84 | gpio_direction_output(64, 0); |
| 85 | gpio_set_value(64, 1); |
Enric Balletbo i Serra | 8a3f6bb | 2010-10-14 16:54:59 -0400 | [diff] [blame] | 86 | udelay(1); |
Sanjeev Premi | 84c3b63 | 2011-09-08 10:51:01 -0400 | [diff] [blame] | 87 | gpio_set_value(64, 0); |
Enric Balletbo i Serra | 8a3f6bb | 2010-10-14 16:54:59 -0400 | [diff] [blame] | 88 | udelay(1); |
Sanjeev Premi | 84c3b63 | 2011-09-08 10:51:01 -0400 | [diff] [blame] | 89 | gpio_set_value(64, 1); |
Enric Balletbo i Serra | 8a3f6bb | 2010-10-14 16:54:59 -0400 | [diff] [blame] | 90 | } |
| 91 | } |
| 92 | #endif |
| 93 | |
Enric Balletbo i Serra | f49d7b6 | 2010-11-04 15:34:33 -0400 | [diff] [blame] | 94 | #ifdef CONFIG_GENERIC_MMC |
| 95 | int board_mmc_init(bd_t *bis) |
| 96 | { |
Jonathan Solnit | bbbc1ae | 2012-02-24 11:30:18 +0000 | [diff] [blame] | 97 | omap_mmc_init(0, 0, 0); |
Enric Balletbo i Serra | f49d7b6 | 2010-11-04 15:34:33 -0400 | [diff] [blame] | 98 | return 0; |
| 99 | } |
| 100 | #endif |
| 101 | |
Enric Balletbo i Serra | 8a3f6bb | 2010-10-14 16:54:59 -0400 | [diff] [blame] | 102 | /* |
| 103 | * Routine: misc_init_r |
| 104 | * Description: Configure board specific parts |
| 105 | */ |
| 106 | int misc_init_r(void) |
| 107 | { |
| 108 | twl4030_power_init(); |
| 109 | |
| 110 | #if defined(CONFIG_CMD_NET) |
| 111 | setup_net_chip(); |
| 112 | #endif |
| 113 | |
| 114 | dieid_num_r(); |
| 115 | |
| 116 | return 0; |
| 117 | } |
| 118 | |
| 119 | /* |
| 120 | * Routine: set_muxconf_regs |
| 121 | * Description: Setting up the configuration Mux registers specific to the |
| 122 | * hardware. Many pins need to be moved from protect to primary |
| 123 | * mode. |
| 124 | */ |
| 125 | void set_muxconf_regs(void) |
| 126 | { |
| 127 | MUX_DEFAULT(); |
| 128 | } |
| 129 | |
| 130 | int board_eth_init(bd_t *bis) |
| 131 | { |
| 132 | int rc = 0; |
| 133 | #ifdef CONFIG_SMC911X |
| 134 | rc = smc911x_initialize(0, CONFIG_SMC911X_BASE); |
| 135 | #endif |
| 136 | return rc; |
| 137 | } |