Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2008 |
| 4 | * Grazvydas Ignotas <notasas@gmail.com> |
| 5 | * |
| 6 | * Derived from Beagle Board, 3430 SDP, and OMAP3EVM code by |
| 7 | * Richard Woodruff <r-woodruff2@ti.com> |
| 8 | * Syed Mohammed Khasim <khasim@ti.com> |
| 9 | * Sunil Kumar <sunilsaini05@gmail.com> |
| 10 | * Shashi Ranjan <shashiranjanmca05@gmail.com> |
| 11 | * |
| 12 | * (C) Copyright 2004-2008 |
| 13 | * Texas Instruments, <www.ti.com> |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 14 | */ |
| 15 | #include <common.h> |
Grazvydas Ignotas | 8a86152 | 2018-08-25 22:40:08 +0300 | [diff] [blame] | 16 | #include <dm.h> |
| 17 | #include <ns16550.h> |
Tom Rix | 2c15513 | 2009-06-28 12:52:30 -0500 | [diff] [blame] | 18 | #include <twl4030.h> |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 19 | #include <asm/io.h> |
Grazvydas Ignotas | 7cad446 | 2012-03-22 13:49:22 +0000 | [diff] [blame] | 20 | #include <asm/gpio.h> |
Tom Rini | 86c5c54 | 2011-09-03 21:51:25 -0400 | [diff] [blame] | 21 | #include <asm/arch/mmc_host_def.h> |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 22 | #include <asm/arch/mux.h> |
Aneesh V | 080a46e | 2011-07-31 20:30:53 +0000 | [diff] [blame] | 23 | #include <asm/arch/gpio.h> |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 24 | #include <asm/arch/sys_proto.h> |
| 25 | #include <asm/mach-types.h> |
| 26 | #include "pandora.h" |
| 27 | |
John Rigby | 2956532 | 2010-12-20 18:27:51 -0700 | [diff] [blame] | 28 | DECLARE_GLOBAL_DATA_PTR; |
| 29 | |
Grazvydas Ignotas | 5246d01 | 2010-06-08 17:19:22 -0400 | [diff] [blame] | 30 | #define TWL4030_BB_CFG_BBCHEN (1 << 4) |
| 31 | #define TWL4030_BB_CFG_BBSEL_3200MV (3 << 2) |
| 32 | #define TWL4030_BB_CFG_BBISEL_500UA 2 |
| 33 | |
Grazvydas Ignotas | 7cad446 | 2012-03-22 13:49:22 +0000 | [diff] [blame] | 34 | #define CONTROL_WKUP_CTRL 0x48002a5c |
| 35 | #define GPIO_IO_PWRDNZ (1 << 6) |
| 36 | #define PBIASLITEVMODE1 (1 << 8) |
| 37 | |
Grazvydas Ignotas | 8a86152 | 2018-08-25 22:40:08 +0300 | [diff] [blame] | 38 | static const struct ns16550_platdata pandora_serial = { |
| 39 | .base = OMAP34XX_UART3, |
| 40 | .reg_shift = 2, |
| 41 | .clock = V_NS16550_CLK, |
| 42 | .fcr = UART_FCR_DEFVAL, |
| 43 | }; |
| 44 | |
| 45 | U_BOOT_DEVICE(pandora_uart) = { |
| 46 | "ns16550_serial", |
| 47 | &pandora_serial |
| 48 | }; |
| 49 | |
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 | * Routine: board_init |
| 52 | * Description: Early hardware init. |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 53 | */ |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 54 | int board_init(void) |
| 55 | { |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 56 | gpmc_init(); /* in SRAM or SDRAM, finish GPMC */ |
| 57 | /* board id for Linux */ |
| 58 | gd->bd->bi_arch_number = MACH_TYPE_OMAP3_PANDORA; |
| 59 | /* boot param addr */ |
| 60 | gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100); |
| 61 | |
| 62 | return 0; |
| 63 | } |
| 64 | |
Grazvydas Ignotas | 7cad446 | 2012-03-22 13:49:22 +0000 | [diff] [blame] | 65 | static void set_output_gpio(unsigned int gpio, int value) |
| 66 | { |
| 67 | int ret; |
| 68 | |
| 69 | ret = gpio_request(gpio, ""); |
| 70 | if (ret != 0) { |
| 71 | printf("could not request GPIO %u\n", gpio); |
| 72 | return; |
| 73 | } |
| 74 | ret = gpio_direction_output(gpio, value); |
| 75 | if (ret != 0) |
| 76 | printf("could not set GPIO %u to %d\n", gpio, value); |
| 77 | } |
| 78 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 79 | /* |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 80 | * Routine: misc_init_r |
| 81 | * Description: Configure board specific parts |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 82 | */ |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 83 | int misc_init_r(void) |
| 84 | { |
Grazvydas Ignotas | 7cad446 | 2012-03-22 13:49:22 +0000 | [diff] [blame] | 85 | t2_t *t2_base = (t2_t *)T2_BASE; |
| 86 | u32 pbias_lite; |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 87 | |
Grazvydas Ignotas | ead39d7 | 2009-12-10 17:10:21 +0200 | [diff] [blame] | 88 | twl4030_led_init(TWL4030_LED_LEDEN_LEDBON); |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 89 | |
Grazvydas Ignotas | 7cad446 | 2012-03-22 13:49:22 +0000 | [diff] [blame] | 90 | /* set up dual-voltage GPIOs to 1.8V */ |
| 91 | pbias_lite = readl(&t2_base->pbias_lite); |
| 92 | pbias_lite &= ~PBIASLITEVMODE1; |
| 93 | pbias_lite |= PBIASLITEPWRDNZ1; |
| 94 | writel(pbias_lite, &t2_base->pbias_lite); |
| 95 | if (get_cpu_family() == CPU_OMAP36XX) |
| 96 | writel(readl(CONTROL_WKUP_CTRL) | GPIO_IO_PWRDNZ, |
| 97 | CONTROL_WKUP_CTRL); |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 98 | |
Grazvydas Ignotas | 7cad446 | 2012-03-22 13:49:22 +0000 | [diff] [blame] | 99 | /* make sure audio and BT chips are in powerdown state */ |
| 100 | set_output_gpio(14, 0); |
| 101 | set_output_gpio(15, 0); |
| 102 | set_output_gpio(118, 0); |
| 103 | |
| 104 | /* enable USB supply */ |
| 105 | set_output_gpio(164, 1); |
| 106 | |
| 107 | /* wifi needs a short pulse to enter powersave state */ |
| 108 | set_output_gpio(23, 1); |
| 109 | udelay(5000); |
| 110 | gpio_direction_output(23, 0); |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 111 | |
Grazvydas Ignotas | 5246d01 | 2010-06-08 17:19:22 -0400 | [diff] [blame] | 112 | /* Enable battery backup capacitor (3.2V, 0.5mA charge current) */ |
| 113 | twl4030_i2c_write_u8(TWL4030_CHIP_PM_RECEIVER, |
Nishanth Menon | 0208aaf | 2013-03-26 05:20:49 +0000 | [diff] [blame] | 114 | TWL4030_PM_RECEIVER_BB_CFG, |
Grazvydas Ignotas | 5246d01 | 2010-06-08 17:19:22 -0400 | [diff] [blame] | 115 | TWL4030_BB_CFG_BBCHEN | TWL4030_BB_CFG_BBSEL_3200MV | |
Nishanth Menon | 0208aaf | 2013-03-26 05:20:49 +0000 | [diff] [blame] | 116 | TWL4030_BB_CFG_BBISEL_500UA); |
Grazvydas Ignotas | 5246d01 | 2010-06-08 17:19:22 -0400 | [diff] [blame] | 117 | |
Paul Kocialkowski | 679f82c | 2015-08-27 19:37:13 +0200 | [diff] [blame] | 118 | omap_die_id_display(); |
Dirk Behme | e6a6a70 | 2009-03-12 19:30:50 +0100 | [diff] [blame] | 119 | |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 120 | return 0; |
| 121 | } |
| 122 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 123 | /* |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 124 | * Routine: set_muxconf_regs |
| 125 | * Description: Setting up the configuration Mux registers specific to the |
| 126 | * hardware. Many pins need to be moved from protect to primary |
| 127 | * mode. |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 128 | */ |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 129 | void set_muxconf_regs(void) |
| 130 | { |
| 131 | MUX_PANDORA(); |
Grazvydas Ignotas | 10cd73b | 2012-03-22 13:49:21 +0000 | [diff] [blame] | 132 | if (get_cpu_family() == CPU_OMAP36XX) { |
| 133 | MUX_PANDORA_3730(); |
| 134 | } |
Dirk Behme | 2be2c6c | 2009-01-28 21:39:58 +0100 | [diff] [blame] | 135 | } |
Tom Rini | 86c5c54 | 2011-09-03 21:51:25 -0400 | [diff] [blame] | 136 | |
Masahiro Yamada | 4aa2ba3 | 2017-05-09 20:31:39 +0900 | [diff] [blame] | 137 | #ifdef CONFIG_MMC |
Tom Rini | 86c5c54 | 2011-09-03 21:51:25 -0400 | [diff] [blame] | 138 | int board_mmc_init(bd_t *bis) |
| 139 | { |
Nikita Kiryanov | e3913f5 | 2012-12-03 02:19:47 +0000 | [diff] [blame] | 140 | return omap_mmc_init(0, 0, 0, -1, -1); |
Tom Rini | 86c5c54 | 2011-09-03 21:51:25 -0400 | [diff] [blame] | 141 | } |
Paul Kocialkowski | aac5450 | 2014-11-08 20:55:47 +0100 | [diff] [blame] | 142 | |
| 143 | void board_mmc_power_init(void) |
| 144 | { |
| 145 | twl4030_power_mmc_init(0); |
| 146 | } |
Tom Rini | 86c5c54 | 2011-09-03 21:51:25 -0400 | [diff] [blame] | 147 | #endif |