Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Miscelaneous DaVinci functions. |
| 4 | * |
Nick Thompson | 68bfdc8 | 2009-11-12 11:03:23 -0500 | [diff] [blame] | 5 | * Copyright (C) 2009 Nick Thompson, GE Fanuc Ltd, <nick.thompson@gefanuc.com> |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 6 | * Copyright (C) 2007 Sergey Kubushyn <ksi@koi8.net> |
| 7 | * Copyright (C) 2008 Lyrtech <www.lyrtech.com> |
| 8 | * Copyright (C) 2004 Texas Instruments. |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
Simon Glass | 5e6201b | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 12 | #include <env.h> |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 13 | #include <i2c.h> |
Simon Glass | 8e16b1e | 2019-12-28 10:45:05 -0700 | [diff] [blame] | 14 | #include <init.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 15 | #include <log.h> |
David Brownell | c83d2d9 | 2009-04-12 22:49:26 -0700 | [diff] [blame] | 16 | #include <net.h> |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 17 | #include <asm/arch/hardware.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 18 | #include <asm/global_data.h> |
Nick Thompson | 68bfdc8 | 2009-11-12 11:03:23 -0500 | [diff] [blame] | 19 | #include <asm/io.h> |
Sughosh Ganu | 80995f9 | 2010-11-28 20:21:27 -0500 | [diff] [blame] | 20 | #include <asm/arch/davinci_misc.h> |
David Brownell | 4506400 | 2009-05-15 23:47:12 +0200 | [diff] [blame] | 21 | |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 22 | DECLARE_GLOBAL_DATA_PTR; |
| 23 | |
Heiko Schocher | 9ba333d | 2011-07-26 20:12:34 +0000 | [diff] [blame] | 24 | #ifndef CONFIG_SPL_BUILD |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 25 | int dram_init(void) |
| 26 | { |
Ben Gardiner | 7618f61 | 2010-08-23 09:08:15 -0400 | [diff] [blame] | 27 | /* dram_init must store complete ramsize in gd->ram_size */ |
| 28 | gd->ram_size = get_ram_size( |
Tom Rini | bb4dd96 | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 29 | (void *)CFG_SYS_SDRAM_BASE, |
Tom Rini | db9c39e | 2022-12-04 10:04:51 -0500 | [diff] [blame] | 30 | CFG_MAX_RAM_BANK_SIZE); |
Ben Gardiner | 7618f61 | 2010-08-23 09:08:15 -0400 | [diff] [blame] | 31 | return 0; |
| 32 | } |
| 33 | |
Simon Glass | 2f949c3 | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 34 | int dram_init_banksize(void) |
Ben Gardiner | 7618f61 | 2010-08-23 09:08:15 -0400 | [diff] [blame] | 35 | { |
Tom Rini | bb4dd96 | 2022-11-16 13:10:37 -0500 | [diff] [blame] | 36 | gd->bd->bi_dram[0].start = CFG_SYS_SDRAM_BASE; |
Ben Gardiner | 7618f61 | 2010-08-23 09:08:15 -0400 | [diff] [blame] | 37 | gd->bd->bi_dram[0].size = gd->ram_size; |
Simon Glass | 2f949c3 | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 38 | |
| 39 | return 0; |
Ben Gardiner | 7618f61 | 2010-08-23 09:08:15 -0400 | [diff] [blame] | 40 | } |
Stefano Babic | 6470f73 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 41 | #endif |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 42 | |
David Brownell | c83d2d9 | 2009-04-12 22:49:26 -0700 | [diff] [blame] | 43 | #ifdef CONFIG_DRIVER_TI_EMAC |
Heiko Schocher | 9b71251 | 2011-11-29 02:33:45 +0000 | [diff] [blame] | 44 | /* |
Stefano Babic | 6470f73 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 45 | * Set the mii mode as MII or RMII |
| 46 | */ |
Stefano Babic | 6470f73 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 47 | void 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 Golaszewski | 644c52f | 2019-04-29 18:37:12 +0200 | [diff] [blame] | 58 | |
Stefano Babic | 6470f73 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 59 | /* |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 60 | * If there is no MAC address in the environment, then it will be initialized |
David Brownell | c83d2d9 | 2009-04-12 22:49:26 -0700 | [diff] [blame] | 61 | * (silently) from the value in the EEPROM. |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 62 | */ |
Ben Gardiner | 1fb49e3 | 2010-09-23 09:58:43 -0400 | [diff] [blame] | 63 | void davinci_sync_env_enetaddr(uint8_t *rom_enetaddr) |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 64 | { |
Ben Gardiner | 1fb49e3 | 2010-09-23 09:58:43 -0400 | [diff] [blame] | 65 | uint8_t env_enetaddr[6]; |
Hadli, Manjunath | 6449ae1 | 2012-02-09 19:52:38 +0000 | [diff] [blame] | 66 | int ret; |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 67 | |
Simon Glass | 399a9ce | 2017-08-03 12:22:14 -0600 | [diff] [blame] | 68 | ret = eth_env_get_enetaddr_by_index("eth", 0, env_enetaddr); |
Holger Hans Peter Freyther | e7abe82 | 2013-02-07 23:41:03 +0000 | [diff] [blame] | 69 | if (!ret) { |
Heiko Schocher | 9b71251 | 2011-11-29 02:33:45 +0000 | [diff] [blame] | 70 | /* |
| 71 | * There is no MAC address in the environment, so we |
| 72 | * initialize it from the value in the EEPROM. |
| 73 | */ |
Ben Gardiner | 1fb49e3 | 2010-09-23 09:58:43 -0400 | [diff] [blame] | 74 | debug("### Setting environment from EEPROM MAC address = " |
| 75 | "\"%pM\"\n", |
| 76 | env_enetaddr); |
Simon Glass | 8551d55 | 2017-08-03 12:22:11 -0600 | [diff] [blame] | 77 | ret = !eth_env_set_enetaddr("ethaddr", rom_enetaddr); |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 78 | } |
Hadli, Manjunath | 6449ae1 | 2012-02-09 19:52:38 +0000 | [diff] [blame] | 79 | if (!ret) |
Holger Hans Peter Freyther | e7abe82 | 2013-02-07 23:41:03 +0000 | [diff] [blame] | 80 | printf("Failed to set mac address from EEPROM: %d\n", ret); |
Hugo Villeneuve | 4e352ef | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 81 | } |
Stefano Babic | 6470f73 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 82 | #endif /* CONFIG_DRIVER_TI_EMAC */ |
| 83 | |
Stefano Babic | 6470f73 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 84 | void 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 Babic | 6470f73 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 90 | 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 Babic | 6470f73 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 98 | |
| 99 | /* |
| 100 | * Enable PSC for various peripherals. |
| 101 | */ |
| 102 | int 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 | } |