overo.c 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227
  1. /*
  2. * Maintainer : Steve Sakoman <steve@sakoman.com>
  3. *
  4. * Derived from Beagle Board, 3430 SDP, and OMAP3EVM code by
  5. * Richard Woodruff <r-woodruff2@ti.com>
  6. * Syed Mohammed Khasim <khasim@ti.com>
  7. * Sunil Kumar <sunilsaini05@gmail.com>
  8. * Shashi Ranjan <shashiranjanmca05@gmail.com>
  9. *
  10. * (C) Copyright 2004-2008
  11. * Texas Instruments, <www.ti.com>
  12. *
  13. * See file CREDITS for list of people who contributed to this
  14. * project.
  15. *
  16. * This program is free software; you can redistribute it and/or
  17. * modify it under the terms of the GNU General Public License as
  18. * published by the Free Software Foundation; either version 2 of
  19. * the License, or (at your option) any later version.
  20. *
  21. * This program is distributed in the hope that it will be useful,
  22. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  23. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  24. * GNU General Public License for more details.
  25. *
  26. * You should have received a copy of the GNU General Public License
  27. * along with this program; if not, write to the Free Software
  28. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  29. * MA 02111-1307 USA
  30. */
  31. #include <common.h>
  32. #include <netdev.h>
  33. #include <twl4030.h>
  34. #include <asm/io.h>
  35. #include <asm/arch/mux.h>
  36. #include <asm/arch/mem.h>
  37. #include <asm/arch/sys_proto.h>
  38. #include <asm/arch/gpio.h>
  39. #include <asm/mach-types.h>
  40. #include "overo.h"
  41. #if defined(CONFIG_CMD_NET)
  42. static void setup_net_chip(void);
  43. #endif
  44. /* GPMC definitions for LAN9221 chips on Tobi expansion boards */
  45. static const u32 gpmc_lan_config[] = {
  46. NET_LAN9221_GPMC_CONFIG1,
  47. NET_LAN9221_GPMC_CONFIG2,
  48. NET_LAN9221_GPMC_CONFIG3,
  49. NET_LAN9221_GPMC_CONFIG4,
  50. NET_LAN9221_GPMC_CONFIG5,
  51. NET_LAN9221_GPMC_CONFIG6,
  52. /*CONFIG7- computed as params */
  53. };
  54. /*
  55. * Routine: board_init
  56. * Description: Early hardware init.
  57. */
  58. int board_init(void)
  59. {
  60. DECLARE_GLOBAL_DATA_PTR;
  61. gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
  62. /* board id for Linux */
  63. gd->bd->bi_arch_number = MACH_TYPE_OVERO;
  64. /* boot param addr */
  65. gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
  66. return 0;
  67. }
  68. /*
  69. * Routine: get_board_revision
  70. * Description: Returns the board revision
  71. */
  72. int get_board_revision(void)
  73. {
  74. int revision;
  75. if (!omap_request_gpio(112) &&
  76. !omap_request_gpio(113) &&
  77. !omap_request_gpio(115)) {
  78. omap_set_gpio_direction(112, 1);
  79. omap_set_gpio_direction(113, 1);
  80. omap_set_gpio_direction(115, 1);
  81. revision = omap_get_gpio_datain(115) << 2 |
  82. omap_get_gpio_datain(113) << 1 |
  83. omap_get_gpio_datain(112);
  84. omap_free_gpio(112);
  85. omap_free_gpio(113);
  86. omap_free_gpio(115);
  87. } else {
  88. printf("Error: unable to acquire board revision GPIOs\n");
  89. revision = -1;
  90. }
  91. return revision;
  92. }
  93. /*
  94. * Routine: get_sdio2_config
  95. * Description: Return information about the wifi module connection
  96. * Returns 0 if the module connects though a level translator
  97. * Returns 1 if the module connects directly
  98. */
  99. int get_sdio2_config(void)
  100. {
  101. int sdio_direct;
  102. if (!omap_request_gpio(130) && !omap_request_gpio(139)) {
  103. omap_set_gpio_direction(130, 0);
  104. omap_set_gpio_direction(139, 1);
  105. sdio_direct = 1;
  106. omap_set_gpio_dataout(130, 0);
  107. if (omap_get_gpio_datain(139) == 0) {
  108. omap_set_gpio_dataout(130, 1);
  109. if (omap_get_gpio_datain(139) == 1)
  110. sdio_direct = 0;
  111. }
  112. omap_free_gpio(130);
  113. omap_free_gpio(139);
  114. } else {
  115. printf("Error: unable to acquire sdio2 clk GPIOs\n");
  116. sdio_direct = -1;
  117. }
  118. return sdio_direct;
  119. }
  120. /*
  121. * Routine: misc_init_r
  122. * Description: Configure board specific parts
  123. */
  124. int misc_init_r(void)
  125. {
  126. twl4030_power_init();
  127. twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
  128. #if defined(CONFIG_CMD_NET)
  129. setup_net_chip();
  130. #endif
  131. printf("Board revision: %d\n", get_board_revision());
  132. switch (get_sdio2_config()) {
  133. case 0:
  134. printf("Tranceiver detected on mmc2\n");
  135. MUX_OVERO_SDIO2_TRANSCEIVER();
  136. break;
  137. case 1:
  138. printf("Direct connection on mmc2\n");
  139. MUX_OVERO_SDIO2_DIRECT();
  140. break;
  141. default:
  142. printf("Unable to detect mmc2 connection type\n");
  143. }
  144. dieid_num_r();
  145. return 0;
  146. }
  147. /*
  148. * Routine: set_muxconf_regs
  149. * Description: Setting up the configuration Mux registers specific to the
  150. * hardware. Many pins need to be moved from protect to primary
  151. * mode.
  152. */
  153. void set_muxconf_regs(void)
  154. {
  155. MUX_OVERO();
  156. }
  157. #if defined(CONFIG_CMD_NET)
  158. /*
  159. * Routine: setup_net_chip
  160. * Description: Setting up the configuration GPMC registers specific to the
  161. * Ethernet hardware.
  162. */
  163. static void setup_net_chip(void)
  164. {
  165. struct ctrl *ctrl_base = (struct ctrl *)OMAP34XX_CTRL_BASE;
  166. /* first lan chip */
  167. enable_gpmc_cs_config(gpmc_lan_config, &gpmc_cfg->cs[5], 0x2C000000,
  168. GPMC_SIZE_16M);
  169. /* second lan chip */
  170. enable_gpmc_cs_config(gpmc_lan_config, &gpmc_cfg->cs[4], 0x2B000000,
  171. GPMC_SIZE_16M);
  172. /* Enable off mode for NWE in PADCONF_GPMC_NWE register */
  173. writew(readw(&ctrl_base ->gpmc_nwe) | 0x0E00, &ctrl_base->gpmc_nwe);
  174. /* Enable off mode for NOE in PADCONF_GPMC_NADV_ALE register */
  175. writew(readw(&ctrl_base->gpmc_noe) | 0x0E00, &ctrl_base->gpmc_noe);
  176. /* Enable off mode for ALE in PADCONF_GPMC_NADV_ALE register */
  177. writew(readw(&ctrl_base->gpmc_nadv_ale) | 0x0E00,
  178. &ctrl_base->gpmc_nadv_ale);
  179. /* Make GPIO 64 as output pin and send a magic pulse through it */
  180. if (!omap_request_gpio(64)) {
  181. omap_set_gpio_direction(64, 0);
  182. omap_set_gpio_dataout(64, 1);
  183. udelay(1);
  184. omap_set_gpio_dataout(64, 0);
  185. udelay(1);
  186. omap_set_gpio_dataout(64, 1);
  187. }
  188. }
  189. #endif
  190. int board_eth_init(bd_t *bis)
  191. {
  192. int rc = 0;
  193. #ifdef CONFIG_SMC911X
  194. rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
  195. #endif
  196. return rc;
  197. }