Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2004-2008 |
| 3 | * Texas Instruments, <www.ti.com> |
| 4 | * |
| 5 | * Author : |
| 6 | * Nishanth Menon <nm@ti.com> |
| 7 | * |
| 8 | * Derived from Beagle Board and 3430 SDP code by |
| 9 | * Sunil Kumar <sunilsaini05@gmail.com> |
| 10 | * Shashi Ranjan <shashiranjanmca05@gmail.com> |
| 11 | * Richard Woodruff <r-woodruff2@ti.com> |
| 12 | * Syed Mohammed Khasim <khasim@ti.com> |
| 13 | * |
| 14 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 15 | * SPDX-License-Identifier: GPL-2.0+ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 16 | */ |
| 17 | #include <common.h> |
Simon Glass | b3f4ca1 | 2014-10-22 21:37:15 -0600 | [diff] [blame] | 18 | #include <dm.h> |
| 19 | #include <ns16550.h> |
Ben Warren | 1ab70f6 | 2009-12-14 16:30:39 -0800 | [diff] [blame] | 20 | #include <netdev.h> |
Tom Rix | cd78263 | 2009-06-28 12:52:29 -0500 | [diff] [blame] | 21 | #include <twl4030.h> |
Ladislav Michl | 0568dd0 | 2016-07-12 20:28:16 +0200 | [diff] [blame] | 22 | #include <linux/mtd/omap_gpmc.h> |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 23 | #include <asm/io.h> |
Nishanth Menon | c2800b1 | 2014-04-08 09:50:52 -0500 | [diff] [blame] | 24 | #include <asm/arch/mem.h> |
Tom Rini | d6906cb | 2011-09-03 21:50:35 -0400 | [diff] [blame] | 25 | #include <asm/arch/mmc_host_def.h> |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 26 | #include <asm/arch/mux.h> |
| 27 | #include <asm/arch/sys_proto.h> |
| 28 | #include <asm/mach-types.h> |
| 29 | #include "zoom1.h" |
| 30 | |
John Rigby | 2956532 | 2010-12-20 18:27:51 -0700 | [diff] [blame] | 31 | DECLARE_GLOBAL_DATA_PTR; |
| 32 | |
Ladislav Michl | 0568dd0 | 2016-07-12 20:28:16 +0200 | [diff] [blame] | 33 | /* |
| 34 | * gpmc_cfg is initialized by gpmc_init and we use it here. |
| 35 | * GPMC definitions for Ethenet Controller LAN9211 |
| 36 | */ |
Nishanth Menon | c2800b1 | 2014-04-08 09:50:52 -0500 | [diff] [blame] | 37 | static const u32 gpmc_lab_enet[] = { |
| 38 | ZOOM1_ENET_GPMC_CONF1, |
| 39 | ZOOM1_ENET_GPMC_CONF2, |
| 40 | ZOOM1_ENET_GPMC_CONF3, |
| 41 | ZOOM1_ENET_GPMC_CONF4, |
| 42 | ZOOM1_ENET_GPMC_CONF5, |
| 43 | ZOOM1_ENET_GPMC_CONF6, |
| 44 | /*CONF7- computed as params */ |
| 45 | }; |
| 46 | |
Simon Glass | b3f4ca1 | 2014-10-22 21:37:15 -0600 | [diff] [blame] | 47 | static const struct ns16550_platdata zoom1_serial = { |
Adam Ford | 2f6ed3b | 2016-03-07 21:08:49 -0600 | [diff] [blame] | 48 | .base = OMAP34XX_UART3, |
| 49 | .reg_shift = 2, |
Heiko Schocher | 17fa032 | 2017-01-18 08:05:49 +0100 | [diff] [blame] | 50 | .clock = V_NS16550_CLK, |
| 51 | .fcr = UART_FCR_DEFVAL, |
Simon Glass | b3f4ca1 | 2014-10-22 21:37:15 -0600 | [diff] [blame] | 52 | }; |
| 53 | |
| 54 | U_BOOT_DEVICE(zoom1_uart) = { |
Thomas Chou | c7b9686 | 2015-11-19 21:48:12 +0800 | [diff] [blame] | 55 | "ns16550_serial", |
Simon Glass | b3f4ca1 | 2014-10-22 21:37:15 -0600 | [diff] [blame] | 56 | &zoom1_serial |
| 57 | }; |
| 58 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 59 | /* |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 60 | * Routine: board_init |
| 61 | * Description: Early hardware init. |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 62 | */ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 63 | int board_init(void) |
| 64 | { |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 65 | gpmc_init(); /* in SRAM or SDRAM, finish GPMC */ |
Nishanth Menon | c2800b1 | 2014-04-08 09:50:52 -0500 | [diff] [blame] | 66 | /* CS1 is Ethernet LAN9211 */ |
| 67 | enable_gpmc_cs_config(gpmc_lab_enet, &gpmc_cfg->cs[1], |
| 68 | DEBUG_BASE, GPMC_SIZE_16M); |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 69 | /* board id for Linux */ |
| 70 | gd->bd->bi_arch_number = MACH_TYPE_OMAP_LDP; |
| 71 | /* boot param addr */ |
| 72 | gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100); |
| 73 | |
| 74 | return 0; |
| 75 | } |
| 76 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 77 | /* |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 78 | * Routine: misc_init_r |
| 79 | * Description: Configure zoom board specific configurations |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 80 | */ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 81 | int misc_init_r(void) |
| 82 | { |
Tom Rix | 2c15513 | 2009-06-28 12:52:30 -0500 | [diff] [blame] | 83 | twl4030_power_init(); |
Grazvydas Ignotas | ead39d7 | 2009-12-10 17:10:21 +0200 | [diff] [blame] | 84 | twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON); |
Paul Kocialkowski | 679f82c | 2015-08-27 19:37:13 +0200 | [diff] [blame] | 85 | omap_die_id_display(); |
Tom Rix | cd78263 | 2009-06-28 12:52:29 -0500 | [diff] [blame] | 86 | |
| 87 | /* |
| 88 | * Board Reset |
| 89 | * The board is reset by holding the red button on the |
| 90 | * top right front face for eight seconds. |
| 91 | */ |
| 92 | twl4030_power_reset_init(); |
| 93 | |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 94 | return 0; |
| 95 | } |
| 96 | |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 97 | /* |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 98 | * Routine: set_muxconf_regs |
| 99 | * Description: Setting up the configuration Mux registers specific to the |
| 100 | * hardware. Many pins need to be moved from protect to primary |
| 101 | * mode. |
Tom Rix | 5891151 | 2009-04-01 22:02:20 -0500 | [diff] [blame] | 102 | */ |
Dirk Behme | 7379f45 | 2009-01-28 21:40:16 +0100 | [diff] [blame] | 103 | void set_muxconf_regs(void) |
| 104 | { |
| 105 | /* platform specific muxes */ |
| 106 | MUX_ZOOM1_MDK(); |
| 107 | } |
Ben Warren | 1ab70f6 | 2009-12-14 16:30:39 -0800 | [diff] [blame] | 108 | |
Masahiro Yamada | 4aa2ba3 | 2017-05-09 20:31:39 +0900 | [diff] [blame] | 109 | #ifdef CONFIG_MMC |
Tom Rini | d6906cb | 2011-09-03 21:50:35 -0400 | [diff] [blame] | 110 | int board_mmc_init(bd_t *bis) |
| 111 | { |
Nikita Kiryanov | e3913f5 | 2012-12-03 02:19:47 +0000 | [diff] [blame] | 112 | return omap_mmc_init(0, 0, 0, -1, -1); |
Tom Rini | d6906cb | 2011-09-03 21:50:35 -0400 | [diff] [blame] | 113 | } |
Paul Kocialkowski | aac5450 | 2014-11-08 20:55:47 +0100 | [diff] [blame] | 114 | |
| 115 | void board_mmc_power_init(void) |
| 116 | { |
| 117 | twl4030_power_mmc_init(0); |
| 118 | } |
Tom Rini | d6906cb | 2011-09-03 21:50:35 -0400 | [diff] [blame] | 119 | #endif |
| 120 | |
Ben Warren | 1ab70f6 | 2009-12-14 16:30:39 -0800 | [diff] [blame] | 121 | #ifdef CONFIG_CMD_NET |
| 122 | int board_eth_init(bd_t *bis) |
| 123 | { |
| 124 | int rc = 0; |
Nishanth Menon | 9d70e77 | 2014-04-08 09:50:53 -0500 | [diff] [blame] | 125 | |
| 126 | #ifdef CONFIG_SMC911X |
| 127 | #define STR_ENV_ETHADDR "ethaddr" |
| 128 | |
| 129 | struct eth_device *dev; |
| 130 | uchar eth_addr[6]; |
| 131 | |
| 132 | rc = smc911x_initialize(0, CONFIG_SMC911X_BASE); |
Simon Glass | 35affd7 | 2017-08-03 12:22:14 -0600 | [diff] [blame] | 133 | if (!eth_env_get_enetaddr(STR_ENV_ETHADDR, eth_addr)) { |
Nishanth Menon | 9d70e77 | 2014-04-08 09:50:53 -0500 | [diff] [blame] | 134 | dev = eth_get_dev_by_index(0); |
| 135 | if (dev) { |
Simon Glass | fd1e959 | 2017-08-03 12:22:11 -0600 | [diff] [blame] | 136 | eth_env_set_enetaddr(STR_ENV_ETHADDR, dev->enetaddr); |
Nishanth Menon | 9d70e77 | 2014-04-08 09:50:53 -0500 | [diff] [blame] | 137 | } else { |
| 138 | printf("zoom1: Couldn't get eth device\n"); |
| 139 | rc = -1; |
| 140 | } |
| 141 | } |
Ben Warren | 1ab70f6 | 2009-12-14 16:30:39 -0800 | [diff] [blame] | 142 | #endif |
Nishanth Menon | 9d70e77 | 2014-04-08 09:50:53 -0500 | [diff] [blame] | 143 | |
Ben Warren | 1ab70f6 | 2009-12-14 16:30:39 -0800 | [diff] [blame] | 144 | return rc; |
| 145 | } |
| 146 | #endif |