Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 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> |
Tom Rix | 2c15513 | 2009-06-28 12:52:30 -0500 | [diff] [blame] | 33 | #include <twl4030.h> |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 34 | #include <asm/io.h> |
| 35 | #include <asm/arch/mux.h> |
| 36 | #include <asm/arch/sys_proto.h> |
Tom Rix | 718763c | 2009-06-03 01:53:57 -0500 | [diff] [blame] | 37 | #include <asm/arch/gpio.h> |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 38 | #include <asm/mach-types.h> |
| 39 | #include "beagle.h" |
| 40 | |
Dirk Behme | f956fd0 | 2009-02-12 18:55:41 +0100 | [diff] [blame] | 41 | static int beagle_revision_c; |
| 42 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 43 | /* |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 44 | * Routine: board_init |
| 45 | * Description: Early hardware init. |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 46 | */ |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 47 | int board_init(void) |
| 48 | { |
| 49 | DECLARE_GLOBAL_DATA_PTR; |
| 50 | |
| 51 | gpmc_init(); /* in SRAM or SDRAM, finish GPMC */ |
| 52 | /* board id for Linux */ |
| 53 | gd->bd->bi_arch_number = MACH_TYPE_OMAP3_BEAGLE; |
| 54 | /* boot param addr */ |
| 55 | gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100); |
| 56 | |
| 57 | return 0; |
| 58 | } |
| 59 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 60 | /* |
Dirk Behme | f956fd0 | 2009-02-12 18:55:41 +0100 | [diff] [blame] | 61 | * Routine: beagle_get_revision |
Tom Rix | 718763c | 2009-06-03 01:53:57 -0500 | [diff] [blame] | 62 | * Description: Return the revision of the BeagleBoard this code is running on. |
Dirk Behme | f956fd0 | 2009-02-12 18:55:41 +0100 | [diff] [blame] | 63 | * If it is a revision Ax/Bx board, this function returns 0, |
| 64 | * on a revision C board you will get a 1. |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 65 | */ |
Dirk Behme | f956fd0 | 2009-02-12 18:55:41 +0100 | [diff] [blame] | 66 | int beagle_get_revision(void) |
| 67 | { |
| 68 | return beagle_revision_c; |
| 69 | } |
| 70 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 71 | /* |
Dirk Behme | f956fd0 | 2009-02-12 18:55:41 +0100 | [diff] [blame] | 72 | * Routine: beagle_identify |
| 73 | * Description: Detect if we are running on a Beagle revision Ax/Bx or |
| 74 | * Cx. This can be done by GPIO_171. If this is low, we are |
| 75 | * running on a revision C board. |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 76 | */ |
Dirk Behme | f956fd0 | 2009-02-12 18:55:41 +0100 | [diff] [blame] | 77 | void beagle_identify(void) |
| 78 | { |
Tom Rix | 718763c | 2009-06-03 01:53:57 -0500 | [diff] [blame] | 79 | beagle_revision_c = 0; |
| 80 | if (!omap_request_gpio(171)) { |
| 81 | unsigned int val; |
Dirk Behme | f956fd0 | 2009-02-12 18:55:41 +0100 | [diff] [blame] | 82 | |
Tom Rix | 718763c | 2009-06-03 01:53:57 -0500 | [diff] [blame] | 83 | omap_set_gpio_direction(171, 1); |
| 84 | val = omap_get_gpio_datain(171); |
| 85 | omap_free_gpio(171); |
Dirk Behme | f956fd0 | 2009-02-12 18:55:41 +0100 | [diff] [blame] | 86 | |
Tom Rix | 718763c | 2009-06-03 01:53:57 -0500 | [diff] [blame] | 87 | if (val) |
| 88 | beagle_revision_c = 0; |
| 89 | else |
| 90 | beagle_revision_c = 1; |
| 91 | } |
Dirk Behme | f956fd0 | 2009-02-12 18:55:41 +0100 | [diff] [blame] | 92 | |
| 93 | printf("Board revision "); |
Tom Rix | 718763c | 2009-06-03 01:53:57 -0500 | [diff] [blame] | 94 | if (beagle_revision_c) |
Dirk Behme | f956fd0 | 2009-02-12 18:55:41 +0100 | [diff] [blame] | 95 | printf("C\n"); |
Tom Rix | 718763c | 2009-06-03 01:53:57 -0500 | [diff] [blame] | 96 | else |
| 97 | printf("Ax/Bx\n"); |
Dirk Behme | f956fd0 | 2009-02-12 18:55:41 +0100 | [diff] [blame] | 98 | } |
| 99 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 100 | /* |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 101 | * Routine: misc_init_r |
| 102 | * Description: Configure board specific parts |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 103 | */ |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 104 | int misc_init_r(void) |
| 105 | { |
Dirk Behme | 97a099e | 2009-08-08 09:30:21 +0200 | [diff] [blame] | 106 | struct gpio *gpio5_base = (struct gpio *)OMAP34XX_GPIO5_BASE; |
| 107 | struct gpio *gpio6_base = (struct gpio *)OMAP34XX_GPIO6_BASE; |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 108 | |
Tom Rix | 2c15513 | 2009-06-28 12:52:30 -0500 | [diff] [blame] | 109 | twl4030_power_init(); |
Grazvydas Ignotas | ead39d7 | 2009-12-10 17:10:21 +0200 | [diff] [blame] | 110 | twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON); |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 111 | |
| 112 | /* Configure GPIOs to output */ |
| 113 | writel(~(GPIO23 | GPIO10 | GPIO8 | GPIO2 | GPIO1), &gpio6_base->oe); |
| 114 | writel(~(GPIO31 | GPIO30 | GPIO29 | GPIO28 | GPIO22 | GPIO21 | |
| 115 | GPIO15 | GPIO14 | GPIO13 | GPIO12), &gpio5_base->oe); |
| 116 | |
| 117 | /* Set GPIOs */ |
| 118 | writel(GPIO23 | GPIO10 | GPIO8 | GPIO2 | GPIO1, |
| 119 | &gpio6_base->setdataout); |
| 120 | writel(GPIO31 | GPIO30 | GPIO29 | GPIO28 | GPIO22 | GPIO21 | |
| 121 | GPIO15 | GPIO14 | GPIO13 | GPIO12, &gpio5_base->setdataout); |
| 122 | |
Dirk Behme | f956fd0 | 2009-02-12 18:55:41 +0100 | [diff] [blame] | 123 | beagle_identify(); |
| 124 | |
Dirk Behme | e6a6a70 | 2009-03-12 19:30:50 +0100 | [diff] [blame] | 125 | dieid_num_r(); |
| 126 | |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 127 | return 0; |
| 128 | } |
| 129 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 130 | /* |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 131 | * Routine: set_muxconf_regs |
| 132 | * Description: Setting up the configuration Mux registers specific to the |
| 133 | * hardware. Many pins need to be moved from protect to primary |
| 134 | * mode. |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 135 | */ |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 136 | void set_muxconf_regs(void) |
| 137 | { |
| 138 | MUX_BEAGLE(); |
Dirk Behme | ac91400 | 2009-04-17 14:27:56 +0200 | [diff] [blame] | 139 | |
| 140 | if (beagle_revision_c) { |
| 141 | MUX_BEAGLE_C(); |
| 142 | } |
Dirk Behme | f904cdb | 2009-01-27 18:19:12 +0100 | [diff] [blame] | 143 | } |