Alexey Brodkin | a7069dd | 2014-02-04 12:56:19 +0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: GPL-2.0+ |
| 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <dwmmc.h> |
| 9 | #include <malloc.h> |
Alexey Brodkin | 2a5062c | 2017-03-31 11:14:35 +0300 | [diff] [blame] | 10 | #include <asm/arcregs.h> |
Alexey Brodkin | 0241c31 | 2015-04-09 19:50:58 +0300 | [diff] [blame] | 11 | #include "axs10x.h" |
Alexey Brodkin | a7069dd | 2014-02-04 12:56:19 +0400 | [diff] [blame] | 12 | |
| 13 | DECLARE_GLOBAL_DATA_PTR; |
| 14 | |
| 15 | int board_mmc_init(bd_t *bis) |
| 16 | { |
| 17 | struct dwmci_host *host = NULL; |
| 18 | |
| 19 | host = malloc(sizeof(struct dwmci_host)); |
| 20 | if (!host) { |
| 21 | printf("dwmci_host malloc fail!\n"); |
| 22 | return 1; |
| 23 | } |
| 24 | |
| 25 | memset(host, 0, sizeof(struct dwmci_host)); |
| 26 | host->name = "Synopsys Mobile storage"; |
| 27 | host->ioaddr = (void *)ARC_DWMMC_BASE; |
| 28 | host->buswidth = 4; |
| 29 | host->dev_index = 0; |
Alexey Brodkin | d5717e8 | 2015-04-02 10:19:12 +0300 | [diff] [blame] | 30 | host->bus_hz = 50000000; |
Alexey Brodkin | a7069dd | 2014-02-04 12:56:19 +0400 | [diff] [blame] | 31 | |
Alexey Brodkin | f6e27ba | 2015-10-04 16:10:26 +0300 | [diff] [blame] | 32 | add_dwmci(host, host->bus_hz / 2, 400000); |
Alexey Brodkin | a7069dd | 2014-02-04 12:56:19 +0400 | [diff] [blame] | 33 | |
| 34 | return 0; |
| 35 | } |
| 36 | |
Alexey Brodkin | 0241c31 | 2015-04-09 19:50:58 +0300 | [diff] [blame] | 37 | #define AXS_MB_CREG 0xE0011000 |
| 38 | |
| 39 | int board_early_init_f(void) |
| 40 | { |
| 41 | if (readl((void __iomem *)AXS_MB_CREG + 0x234) & (1 << 28)) |
| 42 | gd->board_type = AXS_MB_V3; |
| 43 | else |
| 44 | gd->board_type = AXS_MB_V2; |
| 45 | |
| 46 | return 0; |
| 47 | } |
Alexey Brodkin | 8b2eb77 | 2015-04-13 13:37:05 +0300 | [diff] [blame] | 48 | |
| 49 | #ifdef CONFIG_ISA_ARCV2 |
| 50 | #define RESET_VECTOR_ADDR 0x0 |
| 51 | |
| 52 | void smp_set_core_boot_addr(unsigned long addr, int corenr) |
| 53 | { |
| 54 | /* All cores have reset vector pointing to 0 */ |
| 55 | writel(addr, (void __iomem *)RESET_VECTOR_ADDR); |
| 56 | |
| 57 | /* Make sure other cores see written value in memory */ |
Alexey Brodkin | c7d8db6 | 2016-06-08 08:19:33 +0300 | [diff] [blame] | 58 | flush_dcache_all(); |
Alexey Brodkin | 8b2eb77 | 2015-04-13 13:37:05 +0300 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | void smp_kick_all_cpus(void) |
| 62 | { |
| 63 | /* CPU start CREG */ |
| 64 | #define AXC003_CREG_CPU_START 0xF0001400 |
Alexey Brodkin | 8b2eb77 | 2015-04-13 13:37:05 +0300 | [diff] [blame] | 65 | /* Bits positions in CPU start CREG */ |
| 66 | #define BITS_START 0 |
Alexey Brodkin | 0b0db98 | 2017-03-30 19:18:30 +0300 | [diff] [blame] | 67 | #define BITS_START_MODE 4 |
Alexey Brodkin | 8b2eb77 | 2015-04-13 13:37:05 +0300 | [diff] [blame] | 68 | #define BITS_CORE_SEL 9 |
Alexey Brodkin | 8b2eb77 | 2015-04-13 13:37:05 +0300 | [diff] [blame] | 69 | |
Alexey Brodkin | 2a5062c | 2017-03-31 11:14:35 +0300 | [diff] [blame] | 70 | /* |
| 71 | * In axs103 v1.1 START bits semantics has changed quite a bit. |
| 72 | * We used to have a generic START bit for all cores selected by CORE_SEL mask. |
| 73 | * But now we don't touch CORE_SEL at all because we have a dedicated START bit |
| 74 | * for each core: |
| 75 | * bit 0: Core 0 (master) |
| 76 | * bit 1: Core 1 (slave) |
| 77 | */ |
| 78 | #define BITS_START_CORE1 1 |
| 79 | |
| 80 | #define ARCVER_HS38_3_0 0x53 |
| 81 | |
| 82 | int core_family = read_aux_reg(ARC_AUX_IDENTITY) & 0xff; |
Alexey Brodkin | 0b0db98 | 2017-03-30 19:18:30 +0300 | [diff] [blame] | 83 | int cmd = readl((void __iomem *)AXC003_CREG_CPU_START); |
Alexey Brodkin | 2a5062c | 2017-03-31 11:14:35 +0300 | [diff] [blame] | 84 | |
| 85 | if (core_family < ARCVER_HS38_3_0) { |
| 86 | cmd |= (1 << BITS_CORE_SEL) | (1 << BITS_START); |
| 87 | cmd &= ~(1 << BITS_START_MODE); |
| 88 | } else { |
| 89 | cmd |= (1 << BITS_START_CORE1); |
| 90 | } |
Alexey Brodkin | 0b0db98 | 2017-03-30 19:18:30 +0300 | [diff] [blame] | 91 | writel(cmd, (void __iomem *)AXC003_CREG_CPU_START); |
Alexey Brodkin | 8b2eb77 | 2015-04-13 13:37:05 +0300 | [diff] [blame] | 92 | } |
| 93 | #endif |