beagle.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * (C) Copyright 2004-2008
  3. * Texas Instruments, <www.ti.com>
  4. *
  5. * Author :
  6. * Sunil Kumar <sunilsaini05@gmail.com>
  7. * Shashi Ranjan <shashiranjanmca05@gmail.com>
  8. *
  9. * Derived from Beagle Board and 3430 SDP code by
  10. * Richard Woodruff <r-woodruff2@ti.com>
  11. * Syed Mohammed Khasim <khasim@ti.com>
  12. *
  13. *
  14. * See file CREDITS for list of people who contributed to this
  15. * project.
  16. *
  17. * This program is free software; you can redistribute it and/or
  18. * modify it under the terms of the GNU General Public License as
  19. * published by the Free Software Foundation; either version 2 of
  20. * the License, or (at your option) any later version.
  21. *
  22. * This program is distributed in the hope that it will be useful,
  23. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  24. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  25. * GNU General Public License for more details.
  26. *
  27. * You should have received a copy of the GNU General Public License
  28. * along with this program; if not, write to the Free Software
  29. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  30. * MA 02111-1307 USA
  31. */
  32. #include <common.h>
  33. #include <twl4030.h>
  34. #include <asm/io.h>
  35. #include <asm/arch/mux.h>
  36. #include <asm/arch/sys_proto.h>
  37. #include <asm/arch/gpio.h>
  38. #include <asm/mach-types.h>
  39. #include "beagle.h"
  40. static int beagle_revision_c;
  41. /*
  42. * Routine: board_init
  43. * Description: Early hardware init.
  44. */
  45. int board_init(void)
  46. {
  47. DECLARE_GLOBAL_DATA_PTR;
  48. gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
  49. /* board id for Linux */
  50. gd->bd->bi_arch_number = MACH_TYPE_OMAP3_BEAGLE;
  51. /* boot param addr */
  52. gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
  53. return 0;
  54. }
  55. /*
  56. * Routine: beagle_get_revision
  57. * Description: Return the revision of the BeagleBoard this code is running on.
  58. * If it is a revision Ax/Bx board, this function returns 0,
  59. * on a revision C board you will get a 1.
  60. */
  61. int beagle_get_revision(void)
  62. {
  63. return beagle_revision_c;
  64. }
  65. /*
  66. * Routine: beagle_identify
  67. * Description: Detect if we are running on a Beagle revision Ax/Bx or
  68. * Cx. This can be done by GPIO_171. If this is low, we are
  69. * running on a revision C board.
  70. */
  71. void beagle_identify(void)
  72. {
  73. beagle_revision_c = 0;
  74. if (!omap_request_gpio(171)) {
  75. unsigned int val;
  76. omap_set_gpio_direction(171, 1);
  77. val = omap_get_gpio_datain(171);
  78. omap_free_gpio(171);
  79. if (val)
  80. beagle_revision_c = 0;
  81. else
  82. beagle_revision_c = 1;
  83. }
  84. printf("Board revision ");
  85. if (beagle_revision_c)
  86. printf("C\n");
  87. else
  88. printf("Ax/Bx\n");
  89. }
  90. /*
  91. * Routine: misc_init_r
  92. * Description: Configure board specific parts
  93. */
  94. int misc_init_r(void)
  95. {
  96. struct gpio *gpio5_base = (struct gpio *)OMAP34XX_GPIO5_BASE;
  97. struct gpio *gpio6_base = (struct gpio *)OMAP34XX_GPIO6_BASE;
  98. twl4030_power_init();
  99. twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
  100. /* Configure GPIOs to output */
  101. writel(~(GPIO23 | GPIO10 | GPIO8 | GPIO2 | GPIO1), &gpio6_base->oe);
  102. writel(~(GPIO31 | GPIO30 | GPIO29 | GPIO28 | GPIO22 | GPIO21 |
  103. GPIO15 | GPIO14 | GPIO13 | GPIO12), &gpio5_base->oe);
  104. /* Set GPIOs */
  105. writel(GPIO23 | GPIO10 | GPIO8 | GPIO2 | GPIO1,
  106. &gpio6_base->setdataout);
  107. writel(GPIO31 | GPIO30 | GPIO29 | GPIO28 | GPIO22 | GPIO21 |
  108. GPIO15 | GPIO14 | GPIO13 | GPIO12, &gpio5_base->setdataout);
  109. beagle_identify();
  110. dieid_num_r();
  111. return 0;
  112. }
  113. /*
  114. * Routine: set_muxconf_regs
  115. * Description: Setting up the configuration Mux registers specific to the
  116. * hardware. Many pins need to be moved from protect to primary
  117. * mode.
  118. */
  119. void set_muxconf_regs(void)
  120. {
  121. MUX_BEAGLE();
  122. if (beagle_revision_c) {
  123. MUX_BEAGLE_C();
  124. }
  125. }