blob: e699d61874976c1ead937e1e26fb2351c2e1158f [file] [log] [blame]
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -04001/*
2 * Miscelaneous DaVinci functions.
3 *
Nick Thompsonca8480d2009-11-12 11:03:23 -05004 * Copyright (C) 2009 Nick Thompson, GE Fanuc Ltd, <nick.thompson@gefanuc.com>
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -04005 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
6 * Copyright (C) 2008 Lyrtech <www.lyrtech.com>
7 * Copyright (C) 2004 Texas Instruments.
8 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02009 * SPDX-License-Identifier: GPL-2.0+
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040010 */
11
12#include <common.h>
13#include <i2c.h>
David Brownell641e0922009-04-12 22:49:26 -070014#include <net.h>
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040015#include <asm/arch/hardware.h>
Nick Thompsonca8480d2009-11-12 11:03:23 -050016#include <asm/io.h>
Sughosh Ganud7f9b502010-11-28 20:21:27 -050017#include <asm/arch/davinci_misc.h>
David Brownell7a4f5112009-05-15 23:47:12 +020018
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040019DECLARE_GLOBAL_DATA_PTR;
20
Heiko Schochereb40d052011-07-26 20:12:34 +000021#ifndef CONFIG_SPL_BUILD
Ben Gardiner97003752010-08-23 09:08:15 -040022int dram_init(void)
23{
24 /* dram_init must store complete ramsize in gd->ram_size */
25 gd->ram_size = get_ram_size(
Albert ARIBAUDa55d23c2011-07-03 05:55:33 +000026 (void *)CONFIG_SYS_SDRAM_BASE,
Ben Gardiner97003752010-08-23 09:08:15 -040027 CONFIG_MAX_RAM_BANK_SIZE);
28 return 0;
29}
30
31void dram_init_banksize(void)
32{
33 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
34 gd->bd->bi_dram[0].size = gd->ram_size;
35}
Stefano Babic6d1c6492010-11-30 11:32:10 -050036#endif
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040037
David Brownell641e0922009-04-12 22:49:26 -070038#ifdef CONFIG_DRIVER_TI_EMAC
Heiko Schocher8a73e562011-11-29 02:33:45 +000039/*
40 * Read ethernet MAC address from EEPROM for DVEVM compatible boards.
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040041 * Returns 1 if found, 0 otherwise.
42 */
43int dvevm_read_mac_address(uint8_t *buf)
44{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045#ifdef CONFIG_SYS_I2C_EEPROM_ADDR
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040046 /* Read MAC address. */
Heiko Schocher8a73e562011-11-29 02:33:45 +000047 if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0x7F00,
48 CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &buf[0], 6))
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040049 goto i2cerr;
50
David Brownell641e0922009-04-12 22:49:26 -070051 /* Check that MAC address is valid. */
Joe Hershberger0adb5b72015-04-08 01:41:04 -050052 if (!is_valid_ethaddr(buf))
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040053 goto err;
54
55 return 1; /* Found */
56
57i2cerr:
Heiko Schocher8a73e562011-11-29 02:33:45 +000058 printf("Read from EEPROM @ 0x%02x failed\n",
59 CONFIG_SYS_I2C_EEPROM_ADDR);
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040060err:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020061#endif /* CONFIG_SYS_I2C_EEPROM_ADDR */
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040062
63 return 0;
64}
65
Ben Gardiner7b37a272010-09-23 09:58:43 -040066/*
Stefano Babic6d1c6492010-11-30 11:32:10 -050067 * Set the mii mode as MII or RMII
68 */
Sandeep Paulraj99e4c752010-12-28 14:28:51 -050069#if defined(CONFIG_SOC_DA8XX)
Stefano Babic6d1c6492010-11-30 11:32:10 -050070void davinci_emac_mii_mode_sel(int mode_sel)
71{
72 int val;
73
74 val = readl(&davinci_syscfg_regs->cfgchip3);
75 if (mode_sel == 0)
76 val &= ~(1 << 8);
77 else
78 val |= (1 << 8);
79 writel(val, &davinci_syscfg_regs->cfgchip3);
80}
81#endif
82/*
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040083 * If there is no MAC address in the environment, then it will be initialized
David Brownell641e0922009-04-12 22:49:26 -070084 * (silently) from the value in the EEPROM.
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040085 */
Ben Gardiner7b37a272010-09-23 09:58:43 -040086void davinci_sync_env_enetaddr(uint8_t *rom_enetaddr)
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040087{
Ben Gardiner7b37a272010-09-23 09:58:43 -040088 uint8_t env_enetaddr[6];
Hadli, Manjunath826e9912012-02-09 19:52:38 +000089 int ret;
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040090
Hadli, Manjunath826e9912012-02-09 19:52:38 +000091 ret = eth_getenv_enetaddr_by_index("eth", 0, env_enetaddr);
Holger Hans Peter Freytherc8876f12013-02-07 23:41:03 +000092 if (!ret) {
Heiko Schocher8a73e562011-11-29 02:33:45 +000093 /*
94 * There is no MAC address in the environment, so we
95 * initialize it from the value in the EEPROM.
96 */
Ben Gardiner7b37a272010-09-23 09:58:43 -040097 debug("### Setting environment from EEPROM MAC address = "
98 "\"%pM\"\n",
99 env_enetaddr);
Hadli, Manjunath826e9912012-02-09 19:52:38 +0000100 ret = !eth_setenv_enetaddr("ethaddr", rom_enetaddr);
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -0400101 }
Hadli, Manjunath826e9912012-02-09 19:52:38 +0000102 if (!ret)
Holger Hans Peter Freytherc8876f12013-02-07 23:41:03 +0000103 printf("Failed to set mac address from EEPROM: %d\n", ret);
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -0400104}
Stefano Babic6d1c6492010-11-30 11:32:10 -0500105#endif /* CONFIG_DRIVER_TI_EMAC */
106
107#if defined(CONFIG_SOC_DA8XX)
108#ifndef CONFIG_USE_IRQ
109void irq_init(void)
110{
111 /*
112 * Mask all IRQs by clearing the global enable and setting
113 * the enable clear for all the 90 interrupts.
114 */
Stefano Babic6d1c6492010-11-30 11:32:10 -0500115 writel(0, &davinci_aintc_regs->ger);
116
117 writel(0, &davinci_aintc_regs->hier);
118
119 writel(0xffffffff, &davinci_aintc_regs->ecr1);
120 writel(0xffffffff, &davinci_aintc_regs->ecr2);
121 writel(0xffffffff, &davinci_aintc_regs->ecr3);
122}
123#endif
124
125/*
126 * Enable PSC for various peripherals.
127 */
128int da8xx_configure_lpsc_items(const struct lpsc_resource *item,
129 const int n_items)
130{
131 int i;
132
133 for (i = 0; i < n_items; i++)
134 lpsc_on(item[i].lpsc_no);
135
136 return 0;
137}
138#endif