source: rtems/bsps/shared/irq/irq-default.c

Last change on this file was bcef89f2, checked in by Sebastian Huber <sebastian.huber@…>, on 05/19/23 at 06:18:25

Update company name

The embedded brains GmbH & Co. KG is the legal successor of embedded
brains GmbH.

  • Property mode set to 100644
File size: 3.1 KB
Line 
1/* SPDX-License-Identifier: BSD-2-Clause */
2
3/**
4 * @file
5 *
6 * @ingroup RTEMSImplClassicIntr
7 *
8 * @brief This source file contains the default implementation of
9 *   bsp_interrupt_vector_enable(), bsp_interrupt_vector_disable(), and
10 *   bsp_interrupt_facility_initialize().
11 */
12
13/*
14 * Copyright (C) 2019 embedded brains GmbH & Co. KG
15 *
16 * Redistribution and use in source and binary forms, with or without
17 * modification, are permitted provided that the following conditions
18 * are met:
19 * 1. Redistributions of source code must retain the above copyright
20 *    notice, this list of conditions and the following disclaimer.
21 * 2. Redistributions in binary form must reproduce the above copyright
22 *    notice, this list of conditions and the following disclaimer in the
23 *    documentation and/or other materials provided with the distribution.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
26 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
27 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
28 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
29 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
30 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
31 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
32 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
33 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
34 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
35 * POSSIBILITY OF SUCH DAMAGE.
36 */
37
38#include <bsp/irq-generic.h>
39
40rtems_status_code bsp_interrupt_get_attributes(
41  rtems_vector_number         vector,
42  rtems_interrupt_attributes *attributes
43)
44{
45  return RTEMS_SUCCESSFUL;
46}
47
48rtems_status_code bsp_interrupt_is_pending(
49  rtems_vector_number vector,
50  bool               *pending
51)
52{
53  bsp_interrupt_assert(bsp_interrupt_is_valid_vector(vector));
54  bsp_interrupt_assert(pending != NULL);
55  *pending = false;
56  return RTEMS_UNSATISFIED;
57}
58
59rtems_status_code bsp_interrupt_raise(rtems_vector_number vector)
60{
61  bsp_interrupt_assert(bsp_interrupt_is_valid_vector(vector));
62  return RTEMS_UNSATISFIED;
63}
64
65rtems_status_code bsp_interrupt_clear(rtems_vector_number vector)
66{
67  bsp_interrupt_assert(bsp_interrupt_is_valid_vector(vector));
68  return RTEMS_UNSATISFIED;
69}
70
71rtems_status_code bsp_interrupt_vector_is_enabled(
72  rtems_vector_number vector,
73  bool               *enabled
74)
75{
76  bsp_interrupt_assert(bsp_interrupt_is_valid_vector(vector));
77  bsp_interrupt_assert(enabled != NULL);
78  *enabled = false;
79  return RTEMS_UNSATISFIED;
80}
81
82rtems_status_code bsp_interrupt_vector_enable(rtems_vector_number vector)
83{
84  bsp_interrupt_assert(bsp_interrupt_is_valid_vector(vector));
85  (void)vector;
86  return RTEMS_UNSATISFIED;
87}
88
89rtems_status_code bsp_interrupt_vector_disable(rtems_vector_number vector)
90{
91  bsp_interrupt_assert(bsp_interrupt_is_valid_vector(vector));
92  (void)vector;
93  return RTEMS_UNSATISFIED;
94}
95
96void bsp_interrupt_facility_initialize(void)
97{
98  /* Nothing to do */
99}
Note: See TracBrowser for help on using the repository browser.