blob: 5bfc47dae4579cdf36a8f2ca0297c3808d263768 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -04002/*
3 * Miscelaneous DaVinci functions.
4 *
Nick Thompson68bfdc82009-11-12 11:03:23 -05005 * Copyright (C) 2009 Nick Thompson, GE Fanuc Ltd, <nick.thompson@gefanuc.com>
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -04006 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
7 * Copyright (C) 2008 Lyrtech <www.lyrtech.com>
8 * Copyright (C) 2004 Texas Instruments.
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -04009 */
10
11#include <common.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060012#include <env.h>
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040013#include <i2c.h>
Simon Glass8e16b1e2019-12-28 10:45:05 -070014#include <init.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
David Brownellc83d2d92009-04-12 22:49:26 -070016#include <net.h>
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040017#include <asm/arch/hardware.h>
Nick Thompson68bfdc82009-11-12 11:03:23 -050018#include <asm/io.h>
Sughosh Ganu80995f92010-11-28 20:21:27 -050019#include <asm/arch/davinci_misc.h>
David Brownell45064002009-05-15 23:47:12 +020020
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040021DECLARE_GLOBAL_DATA_PTR;
22
Heiko Schocher9ba333d2011-07-26 20:12:34 +000023#ifndef CONFIG_SPL_BUILD
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040024int dram_init(void)
25{
Ben Gardiner7618f612010-08-23 09:08:15 -040026 /* dram_init must store complete ramsize in gd->ram_size */
27 gd->ram_size = get_ram_size(
Albert ARIBAUDa9606732011-07-03 05:55:33 +000028 (void *)CONFIG_SYS_SDRAM_BASE,
Ben Gardiner7618f612010-08-23 09:08:15 -040029 CONFIG_MAX_RAM_BANK_SIZE);
30 return 0;
31}
32
Simon Glass2f949c32017-03-31 08:40:32 -060033int dram_init_banksize(void)
Ben Gardiner7618f612010-08-23 09:08:15 -040034{
35 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
36 gd->bd->bi_dram[0].size = gd->ram_size;
Simon Glass2f949c32017-03-31 08:40:32 -060037
38 return 0;
Ben Gardiner7618f612010-08-23 09:08:15 -040039}
Stefano Babic6470f732010-11-30 11:32:10 -050040#endif
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040041
David Brownellc83d2d92009-04-12 22:49:26 -070042#ifdef CONFIG_DRIVER_TI_EMAC
Heiko Schocher9b712512011-11-29 02:33:45 +000043/*
44 * Read ethernet MAC address from EEPROM for DVEVM compatible boards.
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040045 * Returns 1 if found, 0 otherwise.
46 */
47int dvevm_read_mac_address(uint8_t *buf)
48{
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020049#ifdef CONFIG_SYS_I2C_EEPROM_ADDR
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040050 /* Read MAC address. */
Heiko Schocher9b712512011-11-29 02:33:45 +000051 if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0x7F00,
52 CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &buf[0], 6))
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040053 goto i2cerr;
54
David Brownellc83d2d92009-04-12 22:49:26 -070055 /* Check that MAC address is valid. */
Joe Hershberger8ecdbed2015-04-08 01:41:04 -050056 if (!is_valid_ethaddr(buf))
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040057 goto err;
58
59 return 1; /* Found */
60
61i2cerr:
Heiko Schocher9b712512011-11-29 02:33:45 +000062 printf("Read from EEPROM @ 0x%02x failed\n",
63 CONFIG_SYS_I2C_EEPROM_ADDR);
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040064err:
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020065#endif /* CONFIG_SYS_I2C_EEPROM_ADDR */
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040066
67 return 0;
68}
69
Ben Gardiner1fb49e32010-09-23 09:58:43 -040070/*
Stefano Babic6470f732010-11-30 11:32:10 -050071 * Set the mii mode as MII or RMII
72 */
Stefano Babic6470f732010-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}
Bartosz Golaszewski644c52f2019-04-29 18:37:12 +020084
Stefano Babic6470f732010-11-30 11:32:10 -050085/*
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040086 * If there is no MAC address in the environment, then it will be initialized
David Brownellc83d2d92009-04-12 22:49:26 -070087 * (silently) from the value in the EEPROM.
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040088 */
Ben Gardiner1fb49e32010-09-23 09:58:43 -040089void davinci_sync_env_enetaddr(uint8_t *rom_enetaddr)
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040090{
Ben Gardiner1fb49e32010-09-23 09:58:43 -040091 uint8_t env_enetaddr[6];
Hadli, Manjunath6449ae12012-02-09 19:52:38 +000092 int ret;
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040093
Simon Glass399a9ce2017-08-03 12:22:14 -060094 ret = eth_env_get_enetaddr_by_index("eth", 0, env_enetaddr);
Holger Hans Peter Freythere7abe822013-02-07 23:41:03 +000095 if (!ret) {
Heiko Schocher9b712512011-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 Gardiner1fb49e32010-09-23 09:58:43 -0400100 debug("### Setting environment from EEPROM MAC address = "
101 "\"%pM\"\n",
102 env_enetaddr);
Simon Glass8551d552017-08-03 12:22:11 -0600103 ret = !eth_env_set_enetaddr("ethaddr", rom_enetaddr);
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -0400104 }
Hadli, Manjunath6449ae12012-02-09 19:52:38 +0000105 if (!ret)
Holger Hans Peter Freythere7abe822013-02-07 23:41:03 +0000106 printf("Failed to set mac address from EEPROM: %d\n", ret);
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -0400107}
Stefano Babic6470f732010-11-30 11:32:10 -0500108#endif /* CONFIG_DRIVER_TI_EMAC */
109
Stefano Babic6470f732010-11-30 11:32:10 -0500110void irq_init(void)
111{
112 /*
113 * Mask all IRQs by clearing the global enable and setting
114 * the enable clear for all the 90 interrupts.
115 */
Stefano Babic6470f732010-11-30 11:32:10 -0500116 writel(0, &davinci_aintc_regs->ger);
117
118 writel(0, &davinci_aintc_regs->hier);
119
120 writel(0xffffffff, &davinci_aintc_regs->ecr1);
121 writel(0xffffffff, &davinci_aintc_regs->ecr2);
122 writel(0xffffffff, &davinci_aintc_regs->ecr3);
123}
Stefano Babic6470f732010-11-30 11:32:10 -0500124
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}