Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 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> |
Tom Rix | 2c15513 | 2009-06-28 12:52:30 -0500 | [diff] [blame] | 33 | #include <twl4030.h> |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 34 | #include <asm/io.h> |
| 35 | #include <asm/arch/mux.h> |
Aneesh V | 080a46e | 2011-07-31 20:30:53 +0000 | [diff] [blame] | 36 | #include <asm/arch/gpio.h> |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 37 | #include <asm/arch/sys_proto.h> |
| 38 | #include <asm/mach-types.h> |
| 39 | #include "pandora.h" |
| 40 | |
John Rigby | 2956532 | 2010-12-20 18:27:51 -0700 | [diff] [blame] | 41 | DECLARE_GLOBAL_DATA_PTR; |
| 42 | |
Grazvydas Ignotas | 5246d01 | 2010-06-08 17:19:22 -0400 | [diff] [blame] | 43 | #define TWL4030_BB_CFG_BBCHEN (1 << 4) |
| 44 | #define TWL4030_BB_CFG_BBSEL_3200MV (3 << 2) |
| 45 | #define TWL4030_BB_CFG_BBISEL_500UA 2 |
| 46 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 47 | /* |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 48 | * Routine: board_init |
| 49 | * Description: Early hardware init. |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 50 | */ |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 51 | int board_init(void) |
| 52 | { |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 53 | gpmc_init(); /* in SRAM or SDRAM, finish GPMC */ |
| 54 | /* board id for Linux */ |
| 55 | gd->bd->bi_arch_number = MACH_TYPE_OMAP3_PANDORA; |
| 56 | /* boot param addr */ |
| 57 | gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100); |
| 58 | |
| 59 | return 0; |
| 60 | } |
| 61 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 62 | /* |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 63 | * Routine: misc_init_r |
| 64 | * Description: Configure board specific parts |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 65 | */ |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 66 | int misc_init_r(void) |
| 67 | { |
Dirk Behme | 97a099e | 2009-08-08 09:30:21 +0200 | [diff] [blame] | 68 | struct gpio *gpio1_base = (struct gpio *)OMAP34XX_GPIO1_BASE; |
| 69 | struct gpio *gpio4_base = (struct gpio *)OMAP34XX_GPIO4_BASE; |
| 70 | struct gpio *gpio5_base = (struct gpio *)OMAP34XX_GPIO5_BASE; |
| 71 | struct gpio *gpio6_base = (struct gpio *)OMAP34XX_GPIO6_BASE; |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 72 | |
Grazvydas Ignotas | ead39d7 | 2009-12-10 17:10:21 +0200 | [diff] [blame] | 73 | twl4030_led_init(TWL4030_LED_LEDEN_LEDBON); |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 74 | |
| 75 | /* Configure GPIOs to output */ |
| 76 | writel(~(GPIO14 | GPIO15 | GPIO16 | GPIO23), &gpio1_base->oe); |
| 77 | writel(~GPIO22, &gpio4_base->oe); /* 118 */ |
| 78 | writel(~(GPIO0 | GPIO1 | GPIO28 | GPIO29 | GPIO30 | GPIO31), |
| 79 | &gpio5_base->oe); /* 128, 129, 156-159 */ |
| 80 | writel(~GPIO4, &gpio6_base->oe); /* 164 */ |
| 81 | |
| 82 | /* Set GPIOs */ |
| 83 | writel(GPIO28, &gpio5_base->setdataout); |
| 84 | writel(GPIO4, &gpio6_base->setdataout); |
| 85 | |
Grazvydas Ignotas | 5246d01 | 2010-06-08 17:19:22 -0400 | [diff] [blame] | 86 | /* Enable battery backup capacitor (3.2V, 0.5mA charge current) */ |
| 87 | twl4030_i2c_write_u8(TWL4030_CHIP_PM_RECEIVER, |
| 88 | TWL4030_BB_CFG_BBCHEN | TWL4030_BB_CFG_BBSEL_3200MV | |
| 89 | TWL4030_BB_CFG_BBISEL_500UA, TWL4030_PM_RECEIVER_BB_CFG); |
| 90 | |
Dirk Behme | e6a6a70 | 2009-03-12 19:30:50 +0100 | [diff] [blame] | 91 | dieid_num_r(); |
| 92 | |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 93 | return 0; |
| 94 | } |
| 95 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 96 | /* |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 97 | * Routine: set_muxconf_regs |
| 98 | * Description: Setting up the configuration Mux registers specific to the |
| 99 | * hardware. Many pins need to be moved from protect to primary |
| 100 | * mode. |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 101 | */ |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 102 | void set_muxconf_regs(void) |
| 103 | { |
| 104 | MUX_PANDORA(); |
| 105 | } |