blob: df500c8f35bf05e5b473978ce9d54f1d6a7d3eca [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>
Alex Kiernan9925f1d2018-04-01 09:22:38 +000012#include <environment.h>
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040013#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
Simon Glass76b00ac2017-03-31 08:40:32 -060031int dram_init_banksize(void)
Ben Gardiner97003752010-08-23 09:08:15 -040032{
33 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
34 gd->bd->bi_dram[0].size = gd->ram_size;
Simon Glass76b00ac2017-03-31 08:40:32 -060035
36 return 0;
Ben Gardiner97003752010-08-23 09:08:15 -040037}
Stefano Babic6d1c6492010-11-30 11:32:10 -050038#endif
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040039
David Brownell641e0922009-04-12 22:49:26 -070040#ifdef CONFIG_DRIVER_TI_EMAC
Heiko Schocher8a73e562011-11-29 02:33:45 +000041/*
42 * Read ethernet MAC address from EEPROM for DVEVM compatible boards.
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040043 * Returns 1 if found, 0 otherwise.
44 */
45int dvevm_read_mac_address(uint8_t *buf)
46{
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020047#ifdef CONFIG_SYS_I2C_EEPROM_ADDR
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040048 /* Read MAC address. */
Heiko Schocher8a73e562011-11-29 02:33:45 +000049 if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0x7F00,
50 CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &buf[0], 6))
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040051 goto i2cerr;
52
David Brownell641e0922009-04-12 22:49:26 -070053 /* Check that MAC address is valid. */
Joe Hershberger0adb5b72015-04-08 01:41:04 -050054 if (!is_valid_ethaddr(buf))
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040055 goto err;
56
57 return 1; /* Found */
58
59i2cerr:
Heiko Schocher8a73e562011-11-29 02:33:45 +000060 printf("Read from EEPROM @ 0x%02x failed\n",
61 CONFIG_SYS_I2C_EEPROM_ADDR);
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040062err:
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020063#endif /* CONFIG_SYS_I2C_EEPROM_ADDR */
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040064
65 return 0;
66}
67
Ben Gardiner7b37a272010-09-23 09:58:43 -040068/*
Stefano Babic6d1c6492010-11-30 11:32:10 -050069 * Set the mii mode as MII or RMII
70 */
Stefano Babic6d1c6492010-11-30 11:32:10 -050071void davinci_emac_mii_mode_sel(int mode_sel)
72{
73 int val;
74
75 val = readl(&davinci_syscfg_regs->cfgchip3);
76 if (mode_sel == 0)
77 val &= ~(1 << 8);
78 else
79 val |= (1 << 8);
80 writel(val, &davinci_syscfg_regs->cfgchip3);
81}
Bartosz Golaszewskicef443c2019-04-29 18:37:12 +020082
Stefano Babic6d1c6492010-11-30 11:32:10 -050083/*
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040084 * If there is no MAC address in the environment, then it will be initialized
David Brownell641e0922009-04-12 22:49:26 -070085 * (silently) from the value in the EEPROM.
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040086 */
Ben Gardiner7b37a272010-09-23 09:58:43 -040087void davinci_sync_env_enetaddr(uint8_t *rom_enetaddr)
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040088{
Ben Gardiner7b37a272010-09-23 09:58:43 -040089 uint8_t env_enetaddr[6];
Hadli, Manjunath826e9912012-02-09 19:52:38 +000090 int ret;
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -040091
Simon Glass35affd72017-08-03 12:22:14 -060092 ret = eth_env_get_enetaddr_by_index("eth", 0, env_enetaddr);
Holger Hans Peter Freytherc8876f12013-02-07 23:41:03 +000093 if (!ret) {
Heiko Schocher8a73e562011-11-29 02:33:45 +000094 /*
95 * There is no MAC address in the environment, so we
96 * initialize it from the value in the EEPROM.
97 */
Ben Gardiner7b37a272010-09-23 09:58:43 -040098 debug("### Setting environment from EEPROM MAC address = "
99 "\"%pM\"\n",
100 env_enetaddr);
Simon Glassfd1e9592017-08-03 12:22:11 -0600101 ret = !eth_env_set_enetaddr("ethaddr", rom_enetaddr);
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -0400102 }
Hadli, Manjunath826e9912012-02-09 19:52:38 +0000103 if (!ret)
Holger Hans Peter Freytherc8876f12013-02-07 23:41:03 +0000104 printf("Failed to set mac address from EEPROM: %d\n", ret);
Hugo Villeneuve264bbdd2008-07-11 15:10:13 -0400105}
Stefano Babic6d1c6492010-11-30 11:32:10 -0500106#endif /* CONFIG_DRIVER_TI_EMAC */
107
Stefano Babic6d1c6492010-11-30 11:32:10 -0500108void irq_init(void)
109{
110 /*
111 * Mask all IRQs by clearing the global enable and setting
112 * the enable clear for all the 90 interrupts.
113 */
Stefano Babic6d1c6492010-11-30 11:32:10 -0500114 writel(0, &davinci_aintc_regs->ger);
115
116 writel(0, &davinci_aintc_regs->hier);
117
118 writel(0xffffffff, &davinci_aintc_regs->ecr1);
119 writel(0xffffffff, &davinci_aintc_regs->ecr2);
120 writel(0xffffffff, &davinci_aintc_regs->ecr3);
121}
Stefano Babic6d1c6492010-11-30 11:32:10 -0500122
123/*
124 * Enable PSC for various peripherals.
125 */
126int da8xx_configure_lpsc_items(const struct lpsc_resource *item,
127 const int n_items)
128{
129 int i;
130
131 for (i = 0; i < n_items; i++)
132 lpsc_on(item[i].lpsc_no);
133
134 return 0;
135}