blob: c0f65af1916261a6b895f653cf180ece67dbcea5 [file] [log] [blame]
Lukas Auerfa33f082019-03-17 19:28:32 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (C) 2019 Fraunhofer AISEC,
4 * Lukas Auer <lukas.auer@aisec.fraunhofer.de>
5 */
6
7#include <common.h>
Simon Glass1eb69ae2019-11-14 12:57:39 -07008#include <cpu_func.h>
Lukas Auerfa33f082019-03-17 19:28:32 +01009#include <dm.h>
10#include <asm/barrier.h>
Simon Glass401d1c42020-10-30 21:38:53 -060011#include <asm/global_data.h>
Lukas Auerfa33f082019-03-17 19:28:32 +010012#include <asm/smp.h>
13
14DECLARE_GLOBAL_DATA_PTR;
15
Lukas Auer90ae2812019-12-08 23:28:51 +010016static int send_ipi_many(struct ipi_data *ipi, int wait)
Lukas Auerfa33f082019-03-17 19:28:32 +010017{
18 ofnode node, cpus;
19 u32 reg;
Lukas Auer90ae2812019-12-08 23:28:51 +010020 int ret, pending;
Lukas Auerfa33f082019-03-17 19:28:32 +010021
22 cpus = ofnode_path("/cpus");
23 if (!ofnode_valid(cpus)) {
24 pr_err("Can't find cpus node!\n");
25 return -EINVAL;
26 }
27
28 ofnode_for_each_subnode(node, cpus) {
29 /* skip if hart is marked as not available in the device tree */
30 if (!ofnode_is_available(node))
31 continue;
32
33 /* read hart ID of CPU */
34 ret = ofnode_read_u32(node, "reg", &reg);
35 if (ret)
36 continue;
37
38 /* skip if it is the hart we are running on */
39 if (reg == gd->arch.boot_hart)
40 continue;
41
42 if (reg >= CONFIG_NR_CPUS) {
43 pr_err("Hart ID %d is out of range, increase CONFIG_NR_CPUS\n",
44 reg);
45 continue;
46 }
47
Nikita Shubinc2bdf022022-09-02 11:47:39 +030048#if !CONFIG_IS_ENABLED(XIP)
Rick Chene0465f82022-09-21 14:34:54 +080049#ifdef CONFIG_AVAILABLE_HARTS
Lukas Auerfa33f082019-03-17 19:28:32 +010050 /* skip if hart is not available */
51 if (!(gd->arch.available_harts & (1 << reg)))
52 continue;
Rick Chenbdce3892019-04-30 13:49:33 +080053#endif
Rick Chene0465f82022-09-21 14:34:54 +080054#endif
Lukas Auerfa33f082019-03-17 19:28:32 +010055
56 gd->arch.ipi[reg].addr = ipi->addr;
57 gd->arch.ipi[reg].arg0 = ipi->arg0;
58 gd->arch.ipi[reg].arg1 = ipi->arg1;
59
Sean Andersonf760c9a2020-09-21 07:51:37 -040060 /*
61 * Ensure valid only becomes set when the IPI parameters are
62 * set. An IPI may already be pending on other harts, so we
63 * need a way to signal that the IPI device has been
64 * initialized, and that it is ok to call the function.
65 */
66 __smp_store_release(&gd->arch.ipi[reg].valid, 1);
Sean Andersond4990a42020-09-21 07:51:36 -040067
Lukas Auerfa33f082019-03-17 19:28:32 +010068 ret = riscv_send_ipi(reg);
69 if (ret) {
70 pr_err("Cannot send IPI to hart %d\n", reg);
71 return ret;
72 }
Lukas Auer90ae2812019-12-08 23:28:51 +010073
74 if (wait) {
75 pending = 1;
76 while (pending) {
77 ret = riscv_get_ipi(reg, &pending);
78 if (ret)
79 return ret;
80 }
81 }
Lukas Auerfa33f082019-03-17 19:28:32 +010082 }
83
84 return 0;
85}
86
87void handle_ipi(ulong hart)
88{
89 int ret;
90 void (*smp_function)(ulong hart, ulong arg0, ulong arg1);
91
92 if (hart >= CONFIG_NR_CPUS)
93 return;
94
Sean Andersonf760c9a2020-09-21 07:51:37 -040095 /*
96 * If valid is not set, then U-Boot has not requested the IPI. The
97 * IPI device may not be initialized, so all we can do is wait for
98 * U-Boot to initialize it and send an IPI
99 */
100 if (!__smp_load_acquire(&gd->arch.ipi[hart].valid))
101 return;
Lukas Auer90ae2812019-12-08 23:28:51 +0100102
103 smp_function = (void (*)(ulong, ulong, ulong))gd->arch.ipi[hart].addr;
104 invalidate_icache_all();
105
106 /*
107 * Clear the IPI to acknowledge the request before jumping to the
108 * requested function.
109 */
Lukas Auerfa33f082019-03-17 19:28:32 +0100110 ret = riscv_clear_ipi(hart);
111 if (ret) {
Sean Anderson40686c32020-06-24 06:41:18 -0400112 pr_err("Cannot clear IPI of hart %ld (error %d)\n", hart, ret);
Lukas Auerfa33f082019-03-17 19:28:32 +0100113 return;
114 }
115
Lukas Auerfa33f082019-03-17 19:28:32 +0100116 smp_function(hart, gd->arch.ipi[hart].arg0, gd->arch.ipi[hart].arg1);
117}
118
Lukas Auer90ae2812019-12-08 23:28:51 +0100119int smp_call_function(ulong addr, ulong arg0, ulong arg1, int wait)
Lukas Auerfa33f082019-03-17 19:28:32 +0100120{
Sean Anderson40686c32020-06-24 06:41:18 -0400121 struct ipi_data ipi = {
122 .addr = addr,
123 .arg0 = arg0,
124 .arg1 = arg1,
125 };
Lukas Auerfa33f082019-03-17 19:28:32 +0100126
Sean Anderson40686c32020-06-24 06:41:18 -0400127 return send_ipi_many(&ipi, wait);
Lukas Auerfa33f082019-03-17 19:28:32 +0100128}