blob: 90b38b7e020eb4a4e5c3d3e239d6f617704bde15 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -04002/*
3 * Miscelaneous DaVinci functions.
4 *
Nick Thompsonca8480d2009-11-12 11:03:23 -05005 * Copyright (C) 2009 Nick Thompson, GE Fanuc Ltd, <nick.thompson@gefanuc.com>
Hugo Villeneuve264bbdd2008-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 Villeneuve264bbdd2008-07-11 15:10:13 -04009 */
10
11#include <common.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060012#include <env.h>
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040013#include <i2c.h>
Simon Glass9b4a2052019-12-28 10:45:05 -070014#include <init.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
David Brownell641e0922009-04-12 22:49:26 -070016#include <net.h>
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040017#include <asm/arch/hardware.h>
Simon Glass401d1c42020-10-30 21:38:53 -060018#include <asm/global_data.h>
Nick Thompsonca8480d2009-11-12 11:03:23 -050019#include <asm/io.h>
Sughosh Ganud7f9b502010-11-28 20:21:27 -050020#include <asm/arch/davinci_misc.h>
David Brownell7a4f5112009-05-15 23:47:12 +020021
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040022DECLARE_GLOBAL_DATA_PTR;
23
Heiko Schochereb40d052011-07-26 20:12:34 +000024#ifndef CONFIG_SPL_BUILD
Ben Gardiner97003752010-08-23 09:08:15 -040025int dram_init(void)
26{
27 /* dram_init must store complete ramsize in gd->ram_size */
28 gd->ram_size = get_ram_size(
Albert ARIBAUDa55d23c2011-07-03 05:55:33 +000029 (void *)CONFIG_SYS_SDRAM_BASE,
Ben Gardiner97003752010-08-23 09:08:15 -040030 CONFIG_MAX_RAM_BANK_SIZE);
31 return 0;
32}
33
Simon Glass76b00ac2017-03-31 08:40:32 -060034int dram_init_banksize(void)
Ben Gardiner97003752010-08-23 09:08:15 -040035{
36 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
37 gd->bd->bi_dram[0].size = gd->ram_size;
Simon Glass76b00ac2017-03-31 08:40:32 -060038
39 return 0;
Ben Gardiner97003752010-08-23 09:08:15 -040040}
Stefano Babic6d1c6492010-11-30 11:32:10 -050041#endif
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040042
David Brownell641e0922009-04-12 22:49:26 -070043#ifdef CONFIG_DRIVER_TI_EMAC
Heiko Schocher8a73e562011-11-29 02:33:45 +000044/*
45 * Read ethernet MAC address from EEPROM for DVEVM compatible boards.
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040046 * Returns 1 if found, 0 otherwise.
47 */
48int dvevm_read_mac_address(uint8_t *buf)
49{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020050#ifdef CONFIG_SYS_I2C_EEPROM_ADDR
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040051 /* Read MAC address. */
Heiko Schocher8a73e562011-11-29 02:33:45 +000052 if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0x7F00,
53 CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &buf[0], 6))
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040054 goto i2cerr;
55
David Brownell641e0922009-04-12 22:49:26 -070056 /* Check that MAC address is valid. */
Joe Hershberger0adb5b72015-04-08 01:41:04 -050057 if (!is_valid_ethaddr(buf))
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040058 goto err;
59
60 return 1; /* Found */
61
62i2cerr:
Heiko Schocher8a73e562011-11-29 02:33:45 +000063 printf("Read from EEPROM @ 0x%02x failed\n",
64 CONFIG_SYS_I2C_EEPROM_ADDR);
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040065err:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020066#endif /* CONFIG_SYS_I2C_EEPROM_ADDR */
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040067
68 return 0;
69}
70
Ben Gardiner7b37a272010-09-23 09:58:43 -040071/*
Stefano Babic6d1c6492010-11-30 11:32:10 -050072 * Set the mii mode as MII or RMII
73 */
Stefano Babic6d1c6492010-11-30 11:32:10 -050074void davinci_emac_mii_mode_sel(int mode_sel)
75{
76 int val;
77
78 val = readl(&davinci_syscfg_regs->cfgchip3);
79 if (mode_sel == 0)
80 val &= ~(1 << 8);
81 else
82 val |= (1 << 8);
83 writel(val, &davinci_syscfg_regs->cfgchip3);
84}
Bartosz Golaszewskicef443c2019-04-29 18:37:12 +020085
Stefano Babic6d1c6492010-11-30 11:32:10 -050086/*
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040087 * If there is no MAC address in the environment, then it will be initialized
David Brownell641e0922009-04-12 22:49:26 -070088 * (silently) from the value in the EEPROM.
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040089 */
Ben Gardiner7b37a272010-09-23 09:58:43 -040090void davinci_sync_env_enetaddr(uint8_t *rom_enetaddr)
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040091{
Ben Gardiner7b37a272010-09-23 09:58:43 -040092 uint8_t env_enetaddr[6];
Hadli, Manjunath826e9912012-02-09 19:52:38 +000093 int ret;
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040094
Simon Glass35affd72017-08-03 12:22:14 -060095 ret = eth_env_get_enetaddr_by_index("eth", 0, env_enetaddr);
Holger Hans Peter Freytherc8876f12013-02-07 23:41:03 +000096 if (!ret) {
Heiko Schocher8a73e562011-11-29 02:33:45 +000097 /*
98 * There is no MAC address in the environment, so we
99 * initialize it from the value in the EEPROM.
100 */
Ben Gardiner7b37a272010-09-23 09:58:43 -0400101 debug("### Setting environment from EEPROM MAC address = "
102 "\"%pM\"\n",
103 env_enetaddr);
Simon Glassfd1e9592017-08-03 12:22:11 -0600104 ret = !eth_env_set_enetaddr("ethaddr", rom_enetaddr);
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -0400105 }
Hadli, Manjunath826e9912012-02-09 19:52:38 +0000106 if (!ret)
Holger Hans Peter Freytherc8876f12013-02-07 23:41:03 +0000107 printf("Failed to set mac address from EEPROM: %d\n", ret);
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -0400108}
Stefano Babic6d1c6492010-11-30 11:32:10 -0500109#endif /* CONFIG_DRIVER_TI_EMAC */
110
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}