blob: 7b9d9619bb5fcba7152057ccdf73b9e597918f3b [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>
Alex Kiernan9925f1d2018-04-01 09:22:38 +000013#include <environment.h>
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040014#include <i2c.h>
David Brownell641e0922009-04-12 22:49:26 -070015#include <net.h>
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040016#include <asm/arch/hardware.h>
Nick Thompsonca8480d2009-11-12 11:03:23 -050017#include <asm/io.h>
Sughosh Ganud7f9b502010-11-28 20:21:27 -050018#include <asm/arch/davinci_misc.h>
David Brownell7a4f5112009-05-15 23:47:12 +020019
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040020DECLARE_GLOBAL_DATA_PTR;
21
Heiko Schochereb40d052011-07-26 20:12:34 +000022#ifndef CONFIG_SPL_BUILD
Ben Gardiner97003752010-08-23 09:08:15 -040023int dram_init(void)
24{
25 /* dram_init must store complete ramsize in gd->ram_size */
26 gd->ram_size = get_ram_size(
Albert ARIBAUDa55d23c2011-07-03 05:55:33 +000027 (void *)CONFIG_SYS_SDRAM_BASE,
Ben Gardiner97003752010-08-23 09:08:15 -040028 CONFIG_MAX_RAM_BANK_SIZE);
29 return 0;
30}
31
Simon Glass76b00ac2017-03-31 08:40:32 -060032int dram_init_banksize(void)
Ben Gardiner97003752010-08-23 09:08:15 -040033{
34 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
35 gd->bd->bi_dram[0].size = gd->ram_size;
Simon Glass76b00ac2017-03-31 08:40:32 -060036
37 return 0;
Ben Gardiner97003752010-08-23 09:08:15 -040038}
Stefano Babic6d1c6492010-11-30 11:32:10 -050039#endif
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040040
David Brownell641e0922009-04-12 22:49:26 -070041#ifdef CONFIG_DRIVER_TI_EMAC
Heiko Schocher8a73e562011-11-29 02:33:45 +000042/*
43 * Read ethernet MAC address from EEPROM for DVEVM compatible boards.
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040044 * Returns 1 if found, 0 otherwise.
45 */
46int dvevm_read_mac_address(uint8_t *buf)
47{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020048#ifdef CONFIG_SYS_I2C_EEPROM_ADDR
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040049 /* Read MAC address. */
Heiko Schocher8a73e562011-11-29 02:33:45 +000050 if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0x7F00,
51 CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &buf[0], 6))
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040052 goto i2cerr;
53
David Brownell641e0922009-04-12 22:49:26 -070054 /* Check that MAC address is valid. */
Joe Hershberger0adb5b72015-04-08 01:41:04 -050055 if (!is_valid_ethaddr(buf))
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040056 goto err;
57
58 return 1; /* Found */
59
60i2cerr:
Heiko Schocher8a73e562011-11-29 02:33:45 +000061 printf("Read from EEPROM @ 0x%02x failed\n",
62 CONFIG_SYS_I2C_EEPROM_ADDR);
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040063err:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020064#endif /* CONFIG_SYS_I2C_EEPROM_ADDR */
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040065
66 return 0;
67}
68
Ben Gardiner7b37a272010-09-23 09:58:43 -040069/*
Stefano Babic6d1c6492010-11-30 11:32:10 -050070 * Set the mii mode as MII or RMII
71 */
Sandeep Paulraj99e4c752010-12-28 14:28:51 -050072#if defined(CONFIG_SOC_DA8XX)
Stefano Babic6d1c6492010-11-30 11:32:10 -050073void davinci_emac_mii_mode_sel(int mode_sel)
74{
75 int val;
76
77 val = readl(&davinci_syscfg_regs->cfgchip3);
78 if (mode_sel == 0)
79 val &= ~(1 << 8);
80 else
81 val |= (1 << 8);
82 writel(val, &davinci_syscfg_regs->cfgchip3);
83}
84#endif
85/*
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040086 * If there is no MAC address in the environment, then it will be initialized
David Brownell641e0922009-04-12 22:49:26 -070087 * (silently) from the value in the EEPROM.
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040088 */
Ben Gardiner7b37a272010-09-23 09:58:43 -040089void davinci_sync_env_enetaddr(uint8_t *rom_enetaddr)
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040090{
Ben Gardiner7b37a272010-09-23 09:58:43 -040091 uint8_t env_enetaddr[6];
Hadli, Manjunath826e9912012-02-09 19:52:38 +000092 int ret;
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040093
Simon Glass35affd72017-08-03 12:22:14 -060094 ret = eth_env_get_enetaddr_by_index("eth", 0, env_enetaddr);
Holger Hans Peter Freytherc8876f12013-02-07 23:41:03 +000095 if (!ret) {
Heiko Schocher8a73e562011-11-29 02:33:45 +000096 /*
97 * There is no MAC address in the environment, so we
98 * initialize it from the value in the EEPROM.
99 */
Ben Gardiner7b37a272010-09-23 09:58:43 -0400100 debug("### Setting environment from EEPROM MAC address = "
101 "\"%pM\"\n",
102 env_enetaddr);
Simon Glassfd1e9592017-08-03 12:22:11 -0600103 ret = !eth_env_set_enetaddr("ethaddr", rom_enetaddr);
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -0400104 }
Hadli, Manjunath826e9912012-02-09 19:52:38 +0000105 if (!ret)
Holger Hans Peter Freytherc8876f12013-02-07 23:41:03 +0000106 printf("Failed to set mac address from EEPROM: %d\n", ret);
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -0400107}
Stefano Babic6d1c6492010-11-30 11:32:10 -0500108#endif /* CONFIG_DRIVER_TI_EMAC */
109
110#if defined(CONFIG_SOC_DA8XX)
Stefano Babic6d1c6492010-11-30 11:32:10 -0500111void irq_init(void)
112{
113 /*
114 * Mask all IRQs by clearing the global enable and setting
115 * the enable clear for all the 90 interrupts.
116 */
Stefano Babic6d1c6492010-11-30 11:32:10 -0500117 writel(0, &davinci_aintc_regs->ger);
118
119 writel(0, &davinci_aintc_regs->hier);
120
121 writel(0xffffffff, &davinci_aintc_regs->ecr1);
122 writel(0xffffffff, &davinci_aintc_regs->ecr2);
123 writel(0xffffffff, &davinci_aintc_regs->ecr3);
124}
Stefano Babic6d1c6492010-11-30 11:32:10 -0500125
126/*
127 * Enable PSC for various peripherals.
128 */
129int da8xx_configure_lpsc_items(const struct lpsc_resource *item,
130 const int n_items)
131{
132 int i;
133
134 for (i = 0; i < n_items; i++)
135 lpsc_on(item[i].lpsc_no);
136
137 return 0;
138}
139#endif