source: rtems/bsps/riscv/griscv/start/bspsmp.c @ d3d4e77

5
Last change on this file since d3d4e77 was d3d4e77, checked in by Jiri Gaisler <jiri@…>, on 01/18/19 at 11:37:55

riscv: add griscv bsp

Update #3678.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1/*
2 * Copyright (c) 2018 embedded brains GmbH
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 * 1. Redistributions of source code must retain the above copyright
8 *    notice, this list of conditions and the following disclaimer.
9 * 2. Redistributions in binary form must reproduce the above copyright
10 *    notice, this list of conditions and the following disclaimer in the
11 *    documentation and/or other materials provided with the distribution.
12 *
13 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
14 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
15 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
16 * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
17 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
18 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
19 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
20 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
21 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
22 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
23 * SUCH DAMAGE.
24 */
25
26#include <bsp/bootcard.h>
27#include <bsp/irq.h>
28#include <amba.h>
29
30#include <rtems/score/riscv-utility.h>
31#include <rtems/score/smpimpl.h>
32
33static rtems_isr bsp_inter_processor_interrupt( void *v )
34{
35  _SMP_Inter_processor_interrupt_handler(_Per_CPU_Get());
36}
37
38void bsp_start_on_secondary_processor(Per_CPU_Control *cpu_self)
39{
40  uint32_t cpu_index_self;
41
42  cpu_index_self = _Per_CPU_Get_index(cpu_self);
43  GRLIB_IrqCtrl_Regs->mask[cpu_index_self] |= 1U << GRLIB_mp_irq;
44
45  if (
46    cpu_index_self < rtems_configuration_get_maximum_processors()
47      && _SMP_Should_start_processor(cpu_index_self)
48  ) {
49    set_csr(mie, MIP_MEIP);
50    _SMP_Start_multitasking_on_secondary_processor(cpu_self);
51  } else {
52    _CPU_Thread_Idle_body(0);
53  }
54}
55
56uint32_t _CPU_SMP_Initialize(void)
57{
58  if ( rtems_configuration_get_maximum_processors() > 1 ) {
59    GRLIB_Cpu_Unmask_interrupt(GRLIB_mp_irq, _CPU_SMP_Get_current_processor());
60
61    rtems_interrupt_handler_install(
62      GRLIB_mp_irq,
63      "IPI",
64      RTEMS_INTERRUPT_SHARED,
65      bsp_inter_processor_interrupt,
66      NULL
67    );
68
69  }
70
71  return grlib_get_cpu_count(GRLIB_IrqCtrl_Regs);
72}
73
74bool _CPU_SMP_Start_processor(uint32_t cpu_index)
75{
76  GRLIB_IrqCtrl_Regs->mpstat = 1U << cpu_index;
77
78  return true;
79}
80
81void _CPU_SMP_Finalize_initialization(uint32_t cpu_count)
82{
83  (void) cpu_count;
84//  set_csr(mie, MIP_MSIP);
85}
86
87void _CPU_SMP_Prepare_start_multitasking(void)
88{
89  /* Do nothing */
90}
91
92void _CPU_SMP_Send_interrupt(uint32_t target_processor_index)
93{
94 
95  GRLIB_IrqCtrl_Regs->force[target_processor_index] = 1 << GRLIB_mp_irq;
96
97}
Note: See TracBrowser for help on using the repository browser.