axs10x.c 2.3 KB

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