Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
| 2 | /* |
| 3 | * Copyright (C) 2019, Rick Chen <rick@andestech.com> |
| 4 | * |
Yu Chien Peter Lin | c99c384 | 2023-07-04 19:13:20 +0800 | [diff] [blame] | 5 | * U-Boot syscon driver for Andes' PLICSW |
| 6 | * The PLICSW block is an Andes-specific design for software interrupts, |
| 7 | * contains memory-mapped priority, enable, claim and pending registers |
| 8 | * similar to RISC-V PLIC. |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 9 | */ |
| 10 | |
| 11 | #include <common.h> |
| 12 | #include <dm.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 13 | #include <asm/global_data.h> |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 14 | #include <dm/device-internal.h> |
| 15 | #include <dm/lists.h> |
| 16 | #include <dm/uclass-internal.h> |
| 17 | #include <regmap.h> |
| 18 | #include <syscon.h> |
| 19 | #include <asm/io.h> |
| 20 | #include <asm/syscon.h> |
| 21 | #include <cpu.h> |
Simon Glass | d66c5f7 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 22 | #include <linux/err.h> |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 23 | |
| 24 | /* pending register */ |
Randolph | 1a9a7a9 | 2023-10-12 13:35:34 +0800 | [diff] [blame^] | 25 | #define PENDING_REG(base) ((ulong)(base) + 0x1000) |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 26 | /* enable register */ |
| 27 | #define ENABLE_REG(base, hart) ((ulong)(base) + 0x2000 + (hart) * 0x80) |
| 28 | /* claim register */ |
| 29 | #define CLAIM_REG(base, hart) ((ulong)(base) + 0x200004 + (hart) * 0x1000) |
Yu Chien Peter Lin | c99c384 | 2023-07-04 19:13:20 +0800 | [diff] [blame] | 30 | /* priority register */ |
| 31 | #define PRIORITY_REG(base) ((ulong)(base) + PLICSW_PRIORITY_BASE) |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 32 | |
Randolph | 1a9a7a9 | 2023-10-12 13:35:34 +0800 | [diff] [blame^] | 33 | /* Bit 0 of PLIC-SW pending array is hardwired to zero, so we start from bit 1 */ |
| 34 | #define FIRST_AVAILABLE_BIT 0x2 |
| 35 | #define SEND_IPI_TO_HART(hart) (FIRST_AVAILABLE_BIT << (hart)) |
Yu Chien Peter Lin | c99c384 | 2023-07-04 19:13:20 +0800 | [diff] [blame] | 36 | #define PLICSW_PRIORITY_BASE 0x4 |
Randolph | 1a9a7a9 | 2023-10-12 13:35:34 +0800 | [diff] [blame^] | 37 | #define PLICSW_INTERRUPT_PER_HART 0x1 |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 38 | |
| 39 | DECLARE_GLOBAL_DATA_PTR; |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 40 | |
Rick Chen | eaae83b | 2019-08-21 11:26:50 +0800 | [diff] [blame] | 41 | static int enable_ipi(int hart) |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 42 | { |
Rick Chen | eb61303 | 2019-11-14 13:52:24 +0800 | [diff] [blame] | 43 | unsigned int en; |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 44 | |
Randolph | 1a9a7a9 | 2023-10-12 13:35:34 +0800 | [diff] [blame^] | 45 | en = FIRST_AVAILABLE_BIT << hart; |
Yu Chien Peter Lin | 739cd6f | 2022-10-25 23:03:50 +0800 | [diff] [blame] | 46 | writel(en, (void __iomem *)ENABLE_REG(gd->arch.plicsw, hart)); |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 47 | |
| 48 | return 0; |
| 49 | } |
| 50 | |
Yu Chien Peter Lin | c99c384 | 2023-07-04 19:13:20 +0800 | [diff] [blame] | 51 | static void init_priority_ipi(int hart_num) |
| 52 | { |
| 53 | uint32_t *priority = (void *)PRIORITY_REG(gd->arch.plicsw); |
| 54 | |
| 55 | for (int i = 0; i < hart_num * PLICSW_INTERRUPT_PER_HART; i++) { |
| 56 | writel(1, &priority[i]); |
| 57 | } |
| 58 | |
| 59 | return; |
| 60 | } |
| 61 | |
Sean Anderson | 28bfc32 | 2020-09-28 10:52:25 -0400 | [diff] [blame] | 62 | int riscv_init_ipi(void) |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 63 | { |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 64 | int ret; |
Yu Chien Peter Lin | c99c384 | 2023-07-04 19:13:20 +0800 | [diff] [blame] | 65 | int hart_num = 0; |
Yu Chien Peter Lin | 739cd6f | 2022-10-25 23:03:50 +0800 | [diff] [blame] | 66 | long *base = syscon_get_first_range(RISCV_SYSCON_PLICSW); |
Sean Anderson | 28bfc32 | 2020-09-28 10:52:25 -0400 | [diff] [blame] | 67 | ofnode node; |
| 68 | struct udevice *dev; |
Rick Chen | eaae83b | 2019-08-21 11:26:50 +0800 | [diff] [blame] | 69 | u32 reg; |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 70 | |
Sean Anderson | 28bfc32 | 2020-09-28 10:52:25 -0400 | [diff] [blame] | 71 | if (IS_ERR(base)) |
| 72 | return PTR_ERR(base); |
Yu Chien Peter Lin | 739cd6f | 2022-10-25 23:03:50 +0800 | [diff] [blame] | 73 | gd->arch.plicsw = base; |
Sean Anderson | 28bfc32 | 2020-09-28 10:52:25 -0400 | [diff] [blame] | 74 | |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 75 | ret = uclass_find_first_device(UCLASS_CPU, &dev); |
| 76 | if (ret) |
| 77 | return ret; |
Randolph | 1a9a7a9 | 2023-10-12 13:35:34 +0800 | [diff] [blame^] | 78 | if (!dev) |
Sean Anderson | 28bfc32 | 2020-09-28 10:52:25 -0400 | [diff] [blame] | 79 | return -ENODEV; |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 80 | |
Sean Anderson | 28bfc32 | 2020-09-28 10:52:25 -0400 | [diff] [blame] | 81 | ofnode_for_each_subnode(node, dev_ofnode(dev->parent)) { |
| 82 | const char *device_type; |
Rick Chen | eaae83b | 2019-08-21 11:26:50 +0800 | [diff] [blame] | 83 | |
Sean Anderson | 28bfc32 | 2020-09-28 10:52:25 -0400 | [diff] [blame] | 84 | device_type = ofnode_read_string(node, "device_type"); |
| 85 | if (!device_type) |
| 86 | continue; |
Rick Chen | eaae83b | 2019-08-21 11:26:50 +0800 | [diff] [blame] | 87 | |
Sean Anderson | 28bfc32 | 2020-09-28 10:52:25 -0400 | [diff] [blame] | 88 | if (strcmp(device_type, "cpu")) |
| 89 | continue; |
Rick Chen | eaae83b | 2019-08-21 11:26:50 +0800 | [diff] [blame] | 90 | |
Sean Anderson | 28bfc32 | 2020-09-28 10:52:25 -0400 | [diff] [blame] | 91 | /* skip if hart is marked as not available */ |
Simon Glass | 2e4938b | 2022-09-06 20:27:17 -0600 | [diff] [blame] | 92 | if (!ofnode_is_enabled(node)) |
Sean Anderson | 28bfc32 | 2020-09-28 10:52:25 -0400 | [diff] [blame] | 93 | continue; |
Rick Chen | eaae83b | 2019-08-21 11:26:50 +0800 | [diff] [blame] | 94 | |
Sean Anderson | 28bfc32 | 2020-09-28 10:52:25 -0400 | [diff] [blame] | 95 | /* read hart ID of CPU */ |
| 96 | ret = ofnode_read_u32(node, "reg", ®); |
| 97 | if (ret == 0) |
| 98 | enable_ipi(reg); |
Yu Chien Peter Lin | c99c384 | 2023-07-04 19:13:20 +0800 | [diff] [blame] | 99 | hart_num++; |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 100 | } |
| 101 | |
Yu Chien Peter Lin | c99c384 | 2023-07-04 19:13:20 +0800 | [diff] [blame] | 102 | init_priority_ipi(hart_num); |
Sean Anderson | 28bfc32 | 2020-09-28 10:52:25 -0400 | [diff] [blame] | 103 | return 0; |
Sean Anderson | b1d0cb3 | 2020-06-24 06:41:18 -0400 | [diff] [blame] | 104 | } |
| 105 | |
| 106 | int riscv_send_ipi(int hart) |
| 107 | { |
Randolph | 1a9a7a9 | 2023-10-12 13:35:34 +0800 | [diff] [blame^] | 108 | unsigned int ipi = SEND_IPI_TO_HART(hart); |
Sean Anderson | b1d0cb3 | 2020-06-24 06:41:18 -0400 | [diff] [blame] | 109 | |
Randolph | 1a9a7a9 | 2023-10-12 13:35:34 +0800 | [diff] [blame^] | 110 | writel(ipi, (void __iomem *)PENDING_REG(gd->arch.plicsw)); |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 111 | |
| 112 | return 0; |
| 113 | } |
| 114 | |
| 115 | int riscv_clear_ipi(int hart) |
| 116 | { |
| 117 | u32 source_id; |
| 118 | |
Yu Chien Peter Lin | 739cd6f | 2022-10-25 23:03:50 +0800 | [diff] [blame] | 119 | source_id = readl((void __iomem *)CLAIM_REG(gd->arch.plicsw, hart)); |
| 120 | writel(source_id, (void __iomem *)CLAIM_REG(gd->arch.plicsw, hart)); |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 121 | |
| 122 | return 0; |
| 123 | } |
| 124 | |
Lukas Auer | c7460b8 | 2019-12-08 23:28:50 +0100 | [diff] [blame] | 125 | int riscv_get_ipi(int hart, int *pending) |
| 126 | { |
Randolph | 1a9a7a9 | 2023-10-12 13:35:34 +0800 | [diff] [blame^] | 127 | unsigned int ipi = SEND_IPI_TO_HART(hart); |
Bin Meng | b6ec26b | 2021-06-15 13:45:57 +0800 | [diff] [blame] | 128 | |
Randolph | 1a9a7a9 | 2023-10-12 13:35:34 +0800 | [diff] [blame^] | 129 | *pending = readl((void __iomem *)PENDING_REG(gd->arch.plicsw)); |
Bin Meng | b6ec26b | 2021-06-15 13:45:57 +0800 | [diff] [blame] | 130 | *pending = !!(*pending & ipi); |
Lukas Auer | c7460b8 | 2019-12-08 23:28:50 +0100 | [diff] [blame] | 131 | |
| 132 | return 0; |
| 133 | } |
| 134 | |
Yu Chien Peter Lin | 739cd6f | 2022-10-25 23:03:50 +0800 | [diff] [blame] | 135 | static const struct udevice_id andes_plicsw_ids[] = { |
| 136 | { .compatible = "andestech,plicsw", .data = RISCV_SYSCON_PLICSW }, |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 137 | { } |
| 138 | }; |
| 139 | |
Yu Chien Peter Lin | 739cd6f | 2022-10-25 23:03:50 +0800 | [diff] [blame] | 140 | U_BOOT_DRIVER(andes_plicsw) = { |
| 141 | .name = "andes_plicsw", |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 142 | .id = UCLASS_SYSCON, |
Yu Chien Peter Lin | 739cd6f | 2022-10-25 23:03:50 +0800 | [diff] [blame] | 143 | .of_match = andes_plicsw_ids, |
Rick Chen | 6df4ed0 | 2019-04-02 15:56:39 +0800 | [diff] [blame] | 144 | .flags = DM_FLAG_PRE_RELOC, |
| 145 | }; |