blob: cfad28c43d0ad405f6758519e329efb1fb468947 [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>
Simon Glass3ba929a2020-10-30 21:38:53 -060018#include <asm/global_data.h>
Nick Thompson68bfdc82009-11-12 11:03:23 -050019#include <asm/io.h>
Sughosh Ganu80995f92010-11-28 20:21:27 -050020#include <asm/arch/davinci_misc.h>
David Brownell45064002009-05-15 23:47:12 +020021
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040022DECLARE_GLOBAL_DATA_PTR;
23
Heiko Schocher9ba333d2011-07-26 20:12:34 +000024#ifndef CONFIG_SPL_BUILD
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040025int dram_init(void)
26{
Ben Gardiner7618f612010-08-23 09:08:15 -040027 /* dram_init must store complete ramsize in gd->ram_size */
28 gd->ram_size = get_ram_size(
Tom Rinibb4dd962022-11-16 13:10:37 -050029 (void *)CFG_SYS_SDRAM_BASE,
Tom Rinidb9c39e2022-12-04 10:04:51 -050030 CFG_MAX_RAM_BANK_SIZE);
Ben Gardiner7618f612010-08-23 09:08:15 -040031 return 0;
32}
33
Simon Glass2f949c32017-03-31 08:40:32 -060034int dram_init_banksize(void)
Ben Gardiner7618f612010-08-23 09:08:15 -040035{
Tom Rinibb4dd962022-11-16 13:10:37 -050036 gd->bd->bi_dram[0].start = CFG_SYS_SDRAM_BASE;
Ben Gardiner7618f612010-08-23 09:08:15 -040037 gd->bd->bi_dram[0].size = gd->ram_size;
Simon Glass2f949c32017-03-31 08:40:32 -060038
39 return 0;
Ben Gardiner7618f612010-08-23 09:08:15 -040040}
Stefano Babic6470f732010-11-30 11:32:10 -050041#endif
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040042
David Brownellc83d2d92009-04-12 22:49:26 -070043#ifdef CONFIG_DRIVER_TI_EMAC
Heiko Schocher9b712512011-11-29 02:33:45 +000044/*
Stefano Babic6470f732010-11-30 11:32:10 -050045 * Set the mii mode as MII or RMII
46 */
Stefano Babic6470f732010-11-30 11:32:10 -050047void davinci_emac_mii_mode_sel(int mode_sel)
48{
49 int val;
50
51 val = readl(&davinci_syscfg_regs->cfgchip3);
52 if (mode_sel == 0)
53 val &= ~(1 << 8);
54 else
55 val |= (1 << 8);
56 writel(val, &davinci_syscfg_regs->cfgchip3);
57}
Bartosz Golaszewski644c52f2019-04-29 18:37:12 +020058
Stefano Babic6470f732010-11-30 11:32:10 -050059/*
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040060 * If there is no MAC address in the environment, then it will be initialized
David Brownellc83d2d92009-04-12 22:49:26 -070061 * (silently) from the value in the EEPROM.
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040062 */
Ben Gardiner1fb49e32010-09-23 09:58:43 -040063void davinci_sync_env_enetaddr(uint8_t *rom_enetaddr)
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040064{
Ben Gardiner1fb49e32010-09-23 09:58:43 -040065 uint8_t env_enetaddr[6];
Hadli, Manjunath6449ae12012-02-09 19:52:38 +000066 int ret;
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040067
Simon Glass399a9ce2017-08-03 12:22:14 -060068 ret = eth_env_get_enetaddr_by_index("eth", 0, env_enetaddr);
Holger Hans Peter Freythere7abe822013-02-07 23:41:03 +000069 if (!ret) {
Heiko Schocher9b712512011-11-29 02:33:45 +000070 /*
71 * There is no MAC address in the environment, so we
72 * initialize it from the value in the EEPROM.
73 */
Ben Gardiner1fb49e32010-09-23 09:58:43 -040074 debug("### Setting environment from EEPROM MAC address = "
75 "\"%pM\"\n",
76 env_enetaddr);
Simon Glass8551d552017-08-03 12:22:11 -060077 ret = !eth_env_set_enetaddr("ethaddr", rom_enetaddr);
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040078 }
Hadli, Manjunath6449ae12012-02-09 19:52:38 +000079 if (!ret)
Holger Hans Peter Freythere7abe822013-02-07 23:41:03 +000080 printf("Failed to set mac address from EEPROM: %d\n", ret);
Hugo Villeneuve4e352ef2008-07-11 15:10:13 -040081}
Stefano Babic6470f732010-11-30 11:32:10 -050082#endif /* CONFIG_DRIVER_TI_EMAC */
83
Stefano Babic6470f732010-11-30 11:32:10 -050084void irq_init(void)
85{
86 /*
87 * Mask all IRQs by clearing the global enable and setting
88 * the enable clear for all the 90 interrupts.
89 */
Stefano Babic6470f732010-11-30 11:32:10 -050090 writel(0, &davinci_aintc_regs->ger);
91
92 writel(0, &davinci_aintc_regs->hier);
93
94 writel(0xffffffff, &davinci_aintc_regs->ecr1);
95 writel(0xffffffff, &davinci_aintc_regs->ecr2);
96 writel(0xffffffff, &davinci_aintc_regs->ecr3);
97}
Stefano Babic6470f732010-11-30 11:32:10 -050098
99/*
100 * Enable PSC for various peripherals.
101 */
102int da8xx_configure_lpsc_items(const struct lpsc_resource *item,
103 const int n_items)
104{
105 int i;
106
107 for (i = 0; i < n_items; i++)
108 lpsc_on(item[i].lpsc_no);
109
110 return 0;
111}