File tree 5 files changed +126
-1
lines changed
5 files changed +126
-1
lines changed Original file line number Diff line number Diff line change @@ -13,3 +13,4 @@ software/hello/hello
13
13
software /led_fade /led_fade
14
14
software /local_interrupts /local_interrupts
15
15
software /performance_counters /performance_counters
16
+ software /smp /smp
Original file line number Diff line number Diff line change 1
1
// See LICENSE for license details.
2
+ #include <sifive/smp.h>
2
3
3
- // See LICENSE for license details.
4
+ /* This is defined in sifive/platform.h, but that can't be included from
5
+ * assembly. */
6
+ #define CLINT_CTRL_ADDR 0x02000000
4
7
5
8
.section .init
6
9
.globl _start
7
10
.type _start,@function
8
11
9
12
_start:
13
+ .cfi_startproc
14
+ .cfi_undefined ra
10
15
.option push
11
16
.option norelax
12
17
la gp, __global_pointer$
13
18
.option pop
14
19
la sp, _sp
15
20
21
+ #if defined(ENABLE_SMP)
22
+ smp_pause(t0, t1)
23
+ #endif
24
+
16
25
/* Load data section */
17
26
la a0, _data_lma
18
27
la a1, _data
@@ -52,11 +61,51 @@ _start:
52
61
1:
53
62
#endif
54
63
64
+ #if defined(ENABLE_SMP)
65
+ smp_resume(t0, t1)
66
+
67
+ csrr a0, mhartid
68
+ bnez a0, 2f
69
+ #endif
70
+
71
+ auipc ra, 0
72
+ addi sp, sp, -16
73
+ #if __riscv_xlen == 32
74
+ sw ra, 8 (sp)
75
+ #else
76
+ sd ra, 8 (sp)
77
+ #endif
78
+
55
79
/* argc = argv = 0 */
56
80
li a0, 0
57
81
li a1, 0
58
82
call main
59
83
tail exit
84
+ 1:
85
+ j 1b
86
+
87
+ #if defined(ENABLE_SMP)
88
+ 2:
89
+ la t0, trap_entry
90
+ csrw mtvec, t0
91
+
92
+ csrr a0, mhartid
93
+ la t1, _sp
94
+ slli t0, a0, 10
95
+ sub sp, t1, t0
96
+
97
+ auipc ra, 0
98
+ addi sp, sp, -16
99
+ #if __riscv_xlen == 32
100
+ sw ra, 8 (sp)
101
+ #else
102
+ sd ra, 8 (sp)
103
+ #endif
104
+
105
+ call secondary_main
106
+ tail exit
60
107
61
108
1:
62
109
j 1b
110
+ #endif
111
+ .cfi_endproc
Original file line number Diff line number Diff line change
1
+ TARGET = smp
2
+ C_SRCS += smp.c
3
+ CFLAGS += -O2 -fno-builtin-printf -DENABLE_SMP
4
+
5
+ BSP_BASE = ../../bsp
6
+ include $(BSP_BASE ) /env/common.mk
Original file line number Diff line number Diff line change
1
+ #ifndef SIFIVE_ATOMIC_H
2
+ #define SIFIVE_ATOMIC_H
3
+
4
+ #define ATOMIC_INIT (x ) \
5
+ { \
6
+ .counter = (x), \
7
+ }
8
+
9
+ typedef struct {
10
+ int counter ;
11
+ } atomic_t ;
12
+
13
+ static inline int atomic_xchg (atomic_t * v , int n )
14
+ {
15
+ register int c ;
16
+
17
+ __asm__ __volatile__ (
18
+ "amoswap.w.aqrl %0, %2, %1"
19
+ : "=r" (c ), "+A" (v -> counter )
20
+ : "r" (n ));
21
+ return c ;
22
+ }
23
+
24
+ static inline void mb (void )
25
+ {
26
+ __asm__ __volatile__ ("fence" );
27
+ }
28
+
29
+ #endif
Original file line number Diff line number Diff line change
1
+ #include <stdio.h>
2
+ #include <unistd.h>
3
+ #include "atomic.h"
4
+ void write_hex (int , unsigned long );
5
+
6
+ atomic_t tty_lock = ATOMIC_INIT (0 );
7
+
8
+ void get_lock (atomic_t * lock )
9
+ {
10
+ while (atomic_xchg (lock , 1 ) == 1 );
11
+ mb ();
12
+ }
13
+
14
+ void put_lock (atomic_t * lock )
15
+ {
16
+ mb ();
17
+ atomic_xchg (lock , 0 );
18
+ }
19
+
20
+ int secondary_main (int hartid )
21
+ {
22
+ volatile int counter ;
23
+
24
+ while (1 ) {
25
+ get_lock (& tty_lock );
26
+ write (1 , "hello world from hart " , 22 );
27
+ char s [] = {'0' , '\n' , '\0' };
28
+ s [0 ] += hartid ;
29
+ write (1 , s , 2 );
30
+ put_lock (& tty_lock );
31
+
32
+ for (counter = 0 ; counter < 10000 + 100 * hartid ; ++ counter )
33
+ mb ();
34
+ }
35
+ }
36
+
37
+ int main ()
38
+ {
39
+ return secondary_main (0 );
40
+ }
You can’t perform that action at this time.
0 commit comments