Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 2 | /* |
| 3 | * Miscelaneous DaVinci functions. |
| 4 | * |
Nick Thompson | ca8480d | 2009-11-12 11:03:23 -0500 | [diff] [blame] | 5 | * Copyright (C) 2009 Nick Thompson, GE Fanuc Ltd, <nick.thompson@gefanuc.com> |
Hugo Villeneuve | 264bbdd | 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 | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
Simon Glass | 9fb625c | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 12 | #include <env.h> |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 13 | #include <i2c.h> |
Simon Glass | 9b4a205 | 2019-12-28 10:45:05 -0700 | [diff] [blame^] | 14 | #include <init.h> |
David Brownell | 641e092 | 2009-04-12 22:49:26 -0700 | [diff] [blame] | 15 | #include <net.h> |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 16 | #include <asm/arch/hardware.h> |
Nick Thompson | ca8480d | 2009-11-12 11:03:23 -0500 | [diff] [blame] | 17 | #include <asm/io.h> |
Sughosh Ganu | d7f9b50 | 2010-11-28 20:21:27 -0500 | [diff] [blame] | 18 | #include <asm/arch/davinci_misc.h> |
David Brownell | 7a4f511 | 2009-05-15 23:47:12 +0200 | [diff] [blame] | 19 | |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 20 | DECLARE_GLOBAL_DATA_PTR; |
| 21 | |
Heiko Schocher | eb40d05 | 2011-07-26 20:12:34 +0000 | [diff] [blame] | 22 | #ifndef CONFIG_SPL_BUILD |
Ben Gardiner | 9700375 | 2010-08-23 09:08:15 -0400 | [diff] [blame] | 23 | int dram_init(void) |
| 24 | { |
| 25 | /* dram_init must store complete ramsize in gd->ram_size */ |
| 26 | gd->ram_size = get_ram_size( |
Albert ARIBAUD | a55d23c | 2011-07-03 05:55:33 +0000 | [diff] [blame] | 27 | (void *)CONFIG_SYS_SDRAM_BASE, |
Ben Gardiner | 9700375 | 2010-08-23 09:08:15 -0400 | [diff] [blame] | 28 | CONFIG_MAX_RAM_BANK_SIZE); |
| 29 | return 0; |
| 30 | } |
| 31 | |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 32 | int dram_init_banksize(void) |
Ben Gardiner | 9700375 | 2010-08-23 09:08:15 -0400 | [diff] [blame] | 33 | { |
| 34 | gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE; |
| 35 | gd->bd->bi_dram[0].size = gd->ram_size; |
Simon Glass | 76b00ac | 2017-03-31 08:40:32 -0600 | [diff] [blame] | 36 | |
| 37 | return 0; |
Ben Gardiner | 9700375 | 2010-08-23 09:08:15 -0400 | [diff] [blame] | 38 | } |
Stefano Babic | 6d1c649 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 39 | #endif |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 40 | |
David Brownell | 641e092 | 2009-04-12 22:49:26 -0700 | [diff] [blame] | 41 | #ifdef CONFIG_DRIVER_TI_EMAC |
Heiko Schocher | 8a73e56 | 2011-11-29 02:33:45 +0000 | [diff] [blame] | 42 | /* |
| 43 | * Read ethernet MAC address from EEPROM for DVEVM compatible boards. |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 44 | * Returns 1 if found, 0 otherwise. |
| 45 | */ |
| 46 | int dvevm_read_mac_address(uint8_t *buf) |
| 47 | { |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 48 | #ifdef CONFIG_SYS_I2C_EEPROM_ADDR |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 49 | /* Read MAC address. */ |
Heiko Schocher | 8a73e56 | 2011-11-29 02:33:45 +0000 | [diff] [blame] | 50 | if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0x7F00, |
| 51 | CONFIG_SYS_I2C_EEPROM_ADDR_LEN, (uint8_t *) &buf[0], 6)) |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 52 | goto i2cerr; |
| 53 | |
David Brownell | 641e092 | 2009-04-12 22:49:26 -0700 | [diff] [blame] | 54 | /* Check that MAC address is valid. */ |
Joe Hershberger | 0adb5b7 | 2015-04-08 01:41:04 -0500 | [diff] [blame] | 55 | if (!is_valid_ethaddr(buf)) |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 56 | goto err; |
| 57 | |
| 58 | return 1; /* Found */ |
| 59 | |
| 60 | i2cerr: |
Heiko Schocher | 8a73e56 | 2011-11-29 02:33:45 +0000 | [diff] [blame] | 61 | printf("Read from EEPROM @ 0x%02x failed\n", |
| 62 | CONFIG_SYS_I2C_EEPROM_ADDR); |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 63 | err: |
Jean-Christophe PLAGNIOL-VILLARD | 6d0f6bc | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 64 | #endif /* CONFIG_SYS_I2C_EEPROM_ADDR */ |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 65 | |
| 66 | return 0; |
| 67 | } |
| 68 | |
Ben Gardiner | 7b37a27 | 2010-09-23 09:58:43 -0400 | [diff] [blame] | 69 | /* |
Stefano Babic | 6d1c649 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 70 | * Set the mii mode as MII or RMII |
| 71 | */ |
Stefano Babic | 6d1c649 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 72 | void davinci_emac_mii_mode_sel(int mode_sel) |
| 73 | { |
| 74 | int val; |
| 75 | |
| 76 | val = readl(&davinci_syscfg_regs->cfgchip3); |
| 77 | if (mode_sel == 0) |
| 78 | val &= ~(1 << 8); |
| 79 | else |
| 80 | val |= (1 << 8); |
| 81 | writel(val, &davinci_syscfg_regs->cfgchip3); |
| 82 | } |
Bartosz Golaszewski | cef443c | 2019-04-29 18:37:12 +0200 | [diff] [blame] | 83 | |
Stefano Babic | 6d1c649 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 84 | /* |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 85 | * If there is no MAC address in the environment, then it will be initialized |
David Brownell | 641e092 | 2009-04-12 22:49:26 -0700 | [diff] [blame] | 86 | * (silently) from the value in the EEPROM. |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 87 | */ |
Ben Gardiner | 7b37a27 | 2010-09-23 09:58:43 -0400 | [diff] [blame] | 88 | void davinci_sync_env_enetaddr(uint8_t *rom_enetaddr) |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 89 | { |
Ben Gardiner | 7b37a27 | 2010-09-23 09:58:43 -0400 | [diff] [blame] | 90 | uint8_t env_enetaddr[6]; |
Hadli, Manjunath | 826e991 | 2012-02-09 19:52:38 +0000 | [diff] [blame] | 91 | int ret; |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 92 | |
Simon Glass | 35affd7 | 2017-08-03 12:22:14 -0600 | [diff] [blame] | 93 | ret = eth_env_get_enetaddr_by_index("eth", 0, env_enetaddr); |
Holger Hans Peter Freyther | c8876f1 | 2013-02-07 23:41:03 +0000 | [diff] [blame] | 94 | if (!ret) { |
Heiko Schocher | 8a73e56 | 2011-11-29 02:33:45 +0000 | [diff] [blame] | 95 | /* |
| 96 | * There is no MAC address in the environment, so we |
| 97 | * initialize it from the value in the EEPROM. |
| 98 | */ |
Ben Gardiner | 7b37a27 | 2010-09-23 09:58:43 -0400 | [diff] [blame] | 99 | debug("### Setting environment from EEPROM MAC address = " |
| 100 | "\"%pM\"\n", |
| 101 | env_enetaddr); |
Simon Glass | fd1e959 | 2017-08-03 12:22:11 -0600 | [diff] [blame] | 102 | ret = !eth_env_set_enetaddr("ethaddr", rom_enetaddr); |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 103 | } |
Hadli, Manjunath | 826e991 | 2012-02-09 19:52:38 +0000 | [diff] [blame] | 104 | if (!ret) |
Holger Hans Peter Freyther | c8876f1 | 2013-02-07 23:41:03 +0000 | [diff] [blame] | 105 | printf("Failed to set mac address from EEPROM: %d\n", ret); |
Hugo Villeneuve | 264bbdd | 2008-07-11 15:10:13 -0400 | [diff] [blame] | 106 | } |
Stefano Babic | 6d1c649 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 107 | #endif /* CONFIG_DRIVER_TI_EMAC */ |
| 108 | |
Stefano Babic | 6d1c649 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 109 | void irq_init(void) |
| 110 | { |
| 111 | /* |
| 112 | * Mask all IRQs by clearing the global enable and setting |
| 113 | * the enable clear for all the 90 interrupts. |
| 114 | */ |
Stefano Babic | 6d1c649 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 115 | writel(0, &davinci_aintc_regs->ger); |
| 116 | |
| 117 | writel(0, &davinci_aintc_regs->hier); |
| 118 | |
| 119 | writel(0xffffffff, &davinci_aintc_regs->ecr1); |
| 120 | writel(0xffffffff, &davinci_aintc_regs->ecr2); |
| 121 | writel(0xffffffff, &davinci_aintc_regs->ecr3); |
| 122 | } |
Stefano Babic | 6d1c649 | 2010-11-30 11:32:10 -0500 | [diff] [blame] | 123 | |
| 124 | /* |
| 125 | * Enable PSC for various peripherals. |
| 126 | */ |
| 127 | int da8xx_configure_lpsc_items(const struct lpsc_resource *item, |
| 128 | const int n_items) |
| 129 | { |
| 130 | int i; |
| 131 | |
| 132 | for (i = 0; i < n_items; i++) |
| 133 | lpsc_on(item[i].lpsc_no); |
| 134 | |
| 135 | return 0; |
| 136 | } |