2 * Miscelaneous DaVinci functions.
4 * Copyright (C) 2009 Nick Thompson, GE Fanuc Ltd, <nick.thompson@gefanuc.com>
5 * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net>
6 * Copyright (C) 2008 Lyrtech <www.lyrtech.com>
7 * Copyright (C) 2004 Texas Instruments.
9 * SPDX-License-Identifier: GPL-2.0+
15 #include <asm/arch/hardware.h>
17 #include <asm/arch/davinci_misc.h>
19 DECLARE_GLOBAL_DATA_PTR;
21 #ifndef CONFIG_SPL_BUILD
24 /* dram_init must store complete ramsize in gd->ram_size */
25 gd->ram_size = get_ram_size(
26 (void *)CONFIG_SYS_SDRAM_BASE,
27 CONFIG_MAX_RAM_BANK_SIZE);
31 void dram_init_banksize(void)
33 gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
34 gd->bd->bi_dram[0].size = gd->ram_size;
38 #ifdef CONFIG_DRIVER_TI_EMAC
40 * Read ethernet MAC address from EEPROM for DVEVM compatible boards.
41 * Returns 1 if found, 0 otherwise.
43 int dvevm_read_mac_address(uint8_t *buf)
45 #ifdef CONFIG_SYS_I2C_EEPROM_ADDR
46 /* Read MAC address. */
47 if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0x7F00,
48 CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &buf[0], 6))
51 /* Check that MAC address is valid. */
52 if (!is_valid_ethaddr(buf))
58 printf("Read from EEPROM @ 0x%02x failed\n",
59 CONFIG_SYS_I2C_EEPROM_ADDR);
61 #endif /* CONFIG_SYS_I2C_EEPROM_ADDR */
67 * Set the mii mode as MII or RMII
69 #if defined(CONFIG_SOC_DA8XX)
70 void davinci_emac_mii_mode_sel(int mode_sel)
74 val = readl(&davinci_syscfg_regs->cfgchip3);
79 writel(val, &davinci_syscfg_regs->cfgchip3);
83 * If there is no MAC address in the environment, then it will be initialized
84 * (silently) from the value in the EEPROM.
86 void davinci_sync_env_enetaddr(uint8_t *rom_enetaddr)
88 uint8_t env_enetaddr[6];
91 ret = eth_getenv_enetaddr_by_index("eth", 0, env_enetaddr);
94 * There is no MAC address in the environment, so we
95 * initialize it from the value in the EEPROM.
97 debug("### Setting environment from EEPROM MAC address = "
100 ret = !eth_setenv_enetaddr("ethaddr", rom_enetaddr);
103 printf("Failed to set mac address from EEPROM: %d\n", ret);
105 #endif /* CONFIG_DRIVER_TI_EMAC */
107 #if defined(CONFIG_SOC_DA8XX)
108 #ifndef CONFIG_USE_IRQ
112 * Mask all IRQs by clearing the global enable and setting
113 * the enable clear for all the 90 interrupts.
115 writel(0, &davinci_aintc_regs->ger);
117 writel(0, &davinci_aintc_regs->hier);
119 writel(0xffffffff, &davinci_aintc_regs->ecr1);
120 writel(0xffffffff, &davinci_aintc_regs->ecr2);
121 writel(0xffffffff, &davinci_aintc_regs->ecr3);
126 * Enable PSC for various peripherals.
128 int da8xx_configure_lpsc_items(const struct lpsc_resource *item,
133 for (i = 0; i < n_items; i++)
134 lpsc_on(item[i].lpsc_no);