pandora.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. /*
  2. * (C) Copyright 2008
  3. * Grazvydas Ignotas <notasas@gmail.com>
  4. *
  5. * Derived from Beagle Board, 3430 SDP, and OMAP3EVM code by
  6. * Richard Woodruff <r-woodruff2@ti.com>
  7. * Syed Mohammed Khasim <khasim@ti.com>
  8. * Sunil Kumar <sunilsaini05@gmail.com>
  9. * Shashi Ranjan <shashiranjanmca05@gmail.com>
  10. *
  11. * (C) Copyright 2004-2008
  12. * Texas Instruments, <www.ti.com>
  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/mmc_host_def.h>
  36. #include <asm/arch/mux.h>
  37. #include <asm/arch/gpio.h>
  38. #include <asm/arch/sys_proto.h>
  39. #include <asm/mach-types.h>
  40. #include "pandora.h"
  41. DECLARE_GLOBAL_DATA_PTR;
  42. #define TWL4030_BB_CFG_BBCHEN (1 << 4)
  43. #define TWL4030_BB_CFG_BBSEL_3200MV (3 << 2)
  44. #define TWL4030_BB_CFG_BBISEL_500UA 2
  45. /*
  46. * Routine: board_init
  47. * Description: Early hardware init.
  48. */
  49. int board_init(void)
  50. {
  51. gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
  52. /* board id for Linux */
  53. gd->bd->bi_arch_number = MACH_TYPE_OMAP3_PANDORA;
  54. /* boot param addr */
  55. gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
  56. return 0;
  57. }
  58. /*
  59. * Routine: misc_init_r
  60. * Description: Configure board specific parts
  61. */
  62. int misc_init_r(void)
  63. {
  64. struct gpio *gpio1_base = (struct gpio *)OMAP34XX_GPIO1_BASE;
  65. struct gpio *gpio4_base = (struct gpio *)OMAP34XX_GPIO4_BASE;
  66. struct gpio *gpio5_base = (struct gpio *)OMAP34XX_GPIO5_BASE;
  67. struct gpio *gpio6_base = (struct gpio *)OMAP34XX_GPIO6_BASE;
  68. twl4030_led_init(TWL4030_LED_LEDEN_LEDBON);
  69. /* Configure GPIOs to output */
  70. writel(~(GPIO14 | GPIO15 | GPIO16 | GPIO23), &gpio1_base->oe);
  71. writel(~GPIO22, &gpio4_base->oe); /* 118 */
  72. writel(~(GPIO0 | GPIO1 | GPIO28 | GPIO29 | GPIO30 | GPIO31),
  73. &gpio5_base->oe); /* 128, 129, 156-159 */
  74. writel(~GPIO4, &gpio6_base->oe); /* 164 */
  75. /* Set GPIOs */
  76. writel(GPIO28, &gpio5_base->setdataout);
  77. writel(GPIO4, &gpio6_base->setdataout);
  78. /* Enable battery backup capacitor (3.2V, 0.5mA charge current) */
  79. twl4030_i2c_write_u8(TWL4030_CHIP_PM_RECEIVER,
  80. TWL4030_BB_CFG_BBCHEN | TWL4030_BB_CFG_BBSEL_3200MV |
  81. TWL4030_BB_CFG_BBISEL_500UA, TWL4030_PM_RECEIVER_BB_CFG);
  82. dieid_num_r();
  83. return 0;
  84. }
  85. /*
  86. * Routine: set_muxconf_regs
  87. * Description: Setting up the configuration Mux registers specific to the
  88. * hardware. Many pins need to be moved from protect to primary
  89. * mode.
  90. */
  91. void set_muxconf_regs(void)
  92. {
  93. MUX_PANDORA();
  94. }
  95. #ifdef CONFIG_GENERIC_MMC
  96. int board_mmc_init(bd_t *bis)
  97. {
  98. omap_mmc_init(0);
  99. return 0;
  100. }
  101. #endif