Skip to content

Commit a9ca999

Browse files
armandomontanezCQ Bot Account
authored and
CQ Bot Account
committed
pw_cpu_exception_cortex_m: Move armv7m->cortex_m
Moves the armv7m implementation of pw_cpu_exception to pw_cpu_exception_cortex_m since much of the logic can be shared between ARMv8-M and ARMv7-M. Symbol names are also updated to reflect current naming style for extern "C" symbols. Old names will be removed in pwrev/31060. Warning, symbol renames are breaking! pw_CpuExceptionEntry -> pw_cpu_exception_Entry pw_CpuExceptionDefaultHandler -> pw_cpu_exception_DefaultHandler Change-Id: I7ab99ac7637c436ba959d7546043090c66fe4215 Reviewed-on: https://pigweed-review.googlesource.com/c/pigweed/pigweed/+/30922 Commit-Queue: Auto-Submit <auto-submit@pigweed.google.com.iam.gserviceaccount.com> Reviewed-by: Ewout van Bekkum <ewout@google.com> Pigweed-Auto-Submit: Armando Montanez <amontanez@google.com>
1 parent 03d2281 commit a9ca999

File tree

31 files changed

+529
-324
lines changed

31 files changed

+529
-324
lines changed

BUILD.gn

+1-1
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ if (current_toolchain != default_toolchain) {
263263
"$dir_pw_checksum:tests",
264264
"$dir_pw_chrono:tests",
265265
"$dir_pw_containers:tests",
266-
"$dir_pw_cpu_exception_armv7m:tests",
266+
"$dir_pw_cpu_exception_cortex_m:tests",
267267
"$dir_pw_fuzzer:tests",
268268
"$dir_pw_hdlc:tests",
269269
"$dir_pw_hex_dump:tests",

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ add_subdirectory(pw_chrono EXCLUDE_FROM_ALL)
3636
add_subdirectory(pw_chrono_stl EXCLUDE_FROM_ALL)
3737
add_subdirectory(pw_containers EXCLUDE_FROM_ALL)
3838
add_subdirectory(pw_cpu_exception EXCLUDE_FROM_ALL)
39-
add_subdirectory(pw_cpu_exception_armv7m EXCLUDE_FROM_ALL)
39+
add_subdirectory(pw_cpu_exception_cortex_m EXCLUDE_FROM_ALL)
4040
add_subdirectory(pw_hdlc EXCLUDE_FROM_ALL)
4141
add_subdirectory(pw_kvs EXCLUDE_FROM_ALL)
4242
add_subdirectory(pw_log EXCLUDE_FROM_ALL)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ on-device.
122122
See the "Module Guides" in the documentation for the complete list and
123123
documentation for each, but is a selection of some others:
124124

125-
- `pw_cpu_exception_armv7m`: Robust low level hardware fault handler for ARM
125+
- `pw_cpu_exception_cortex_m`: Robust low level hardware fault handler for ARM
126126
Cortex-M; the handler even has unit tests written in assembly to verify
127127
nested-hardware-fault handling!
128128

docs/BUILD.gn

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ group("module_docs") {
6565
"$dir_pw_cli:docs",
6666
"$dir_pw_containers:docs",
6767
"$dir_pw_cpu_exception:docs",
68-
"$dir_pw_cpu_exception_armv7m:docs",
68+
"$dir_pw_cpu_exception_cortex_m:docs",
6969
"$dir_pw_docgen:docs",
7070
"$dir_pw_doctor:docs",
7171
"$dir_pw_env_setup:docs",

pw_cpu_exception/BUILD.gn

+1-1
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ pw_facade("handler") {
6969
# This library is technically optional. It is recommended to use `support` when
7070
# doing basic dumps of CPU state. As an alternative, projects may choose to
7171
# directly depend on the entry backend if they require direct access to
72-
# pw_CpuExceptionState members.
72+
# pw_cpu_exception_State members.
7373
pw_facade("support") {
7474
backend = pw_cpu_exception_SUPPORT_BACKEND
7575
public_configs = [ ":default_config" ]

pw_cpu_exception/basic_handler.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
namespace pw::cpu_exception {
2020

21-
extern "C" void pw_CpuExceptionDefaultHandler(pw_CpuExceptionState*) {
21+
extern "C" void pw_cpu_exception_DefaultHandler(pw_cpu_exception_State*) {
2222
PW_LOG_CRITICAL("Unhandled CPU exception encountered!");
2323
// TODO(pwbug/95): Replace with pw_abort when that module exists.
2424
std::abort();

pw_cpu_exception/docs.rst

+13-13
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,13 @@ otherwise be clobbered by an application's exception handler.
1212

1313
Setup
1414
=====
15-
An application using this module **must** connect ``pw_CpuExceptionEntry()`` to
16-
the platform's CPU exception handler interrupt so ``pw_CpuExceptionEntry()`` is
15+
An application using this module **must** connect ``pw_cpu_exception_Entry()`` to
16+
the platform's CPU exception handler interrupt so ``pw_cpu_exception_Entry()`` is
1717
called immediately upon a CPU exception. For specifics on how this may be done,
1818
see the backend documentation for your architecture.
1919

2020
Applications must also provide an implementation for
21-
``pw_CpuExceptionDefaultHandler()``. The behavior of this functions is entirely
21+
``pw_cpu_exception_DefaultHandler()``. The behavior of this functions is entirely
2222
up to the application/project, but some examples are provided below:
2323

2424
* Enter an infinite loop so the device can be debugged by JTAG.
@@ -31,24 +31,24 @@ up to the application/project, but some examples are provided below:
3131
Module Usage
3232
============
3333
Basic usage of this module entails applications supplying a definition for
34-
``pw_CpuExceptionDefaultHandler()``. ``pw_CpuExceptionDefaultHandler()`` should
34+
``pw_cpu_exception_DefaultHandler()``. ``pw_cpu_exception_DefaultHandler()`` should
3535
contain any logic to determine if a exception can be recovered from, as well as
3636
necessary actions to properly recover. If the device cannot recover from the
3737
exception, the function should **not** return.
3838

39-
``pw_CpuExceptionDefaultHandler()`` is called indirectly, and may be overridden
40-
at runtime via ``pw_CpuExceptionSetHandler()``. The handler can also be reset to
41-
point to ``pw_CpuExceptionDefaultHandler()`` by calling
42-
``pw_CpuExceptionRestoreDefaultHandler()``.
39+
``pw_cpu_exception_DefaultHandler()`` is called indirectly, and may be overridden
40+
at runtime via ``pw_cpu_exception_SetHandler()``. The handler can also be reset to
41+
point to ``pw_cpu_exception_DefaultHandler()`` by calling
42+
``pw_cpu_exception_RestoreDefaultHandler()``.
4343

4444
When writing an exception handler, prefer to use the functions provided by this
4545
interface rather than relying on the backend implementation of
46-
``pw_CpuExceptionState``. This allows better code portability as it helps
46+
``pw_cpu_exception_State``. This allows better code portability as it helps
4747
prevent an application fault handler from being tied to a single backend.
4848

4949
For example; when logging or dumping CPU state, prefer ``ToString()`` or
5050
``RawFaultingCpuState()`` over directly accessing members of a
51-
``pw_CpuExceptionState`` object.
51+
``pw_cpu_exception_State`` object.
5252

5353
Some exception handling behavior may require architecture-specific CPU state to
5454
attempt to correct a fault. In this situation, the application's exception
@@ -60,15 +60,15 @@ CPU exception backends do not provide an exception handler, but instead provide
6060
mechanisms to capture CPU state for use by an application's exception handler,
6161
and allow recovery from CPU exceptions when possible.
6262

63-
* A backend should provide a definition for the ``pw_CpuExceptionState``
63+
* A backend should provide a definition for the ``pw_cpu_exception_State``
6464
struct that provides suitable means to access and modify any captured CPU
6565
state.
6666
* If an application's exception handler modifies the captured CPU state, the
6767
state should be treated as though it were the original state of the CPU when
6868
the exception occurred. The backend may need to manually restore some of the
6969
modified state to ensure this on exception handler return.
70-
* A backend should implement the ``pw_CpuExceptionEntry()`` function that will
71-
call ``pw_HandleCpuException()`` after performing any necessary
70+
* A backend should implement the ``pw_cpu_exception_Entry()`` function that will
71+
call ``pw_cpu_exception_HandleException()`` after performing any necessary
7272
actions prior to handing control to the application's exception handler
7373
(e.g. capturing necessary CPU state).
7474

pw_cpu_exception/public/pw_cpu_exception/entry.h

+7-3
Original file line numberDiff line numberDiff line change
@@ -18,26 +18,30 @@
1818
// platform. By default, this module invokes the following user-defined function
1919
// after early exception handling completes:
2020
//
21-
// pw_CpuExceptionDefaultHandler(pw_CpuExceptionState* state)
21+
// pw_cpu_exception_DefaultHandler(pw_cpu_exception_State* state)
2222
//
2323
// If platform-dependent access to the CPU registers is needed, then
2424
// applications can include the respective backend module directly; for example
2525
// cpu_exception_armv7m.
2626
//
2727
// IMPORTANT: To use this module, you MUST implement
28-
// pw_CpuExceptionDefaultHandler() in some part of your application.
28+
// pw_cpu_exception_DefaultHandler() in some part of your
29+
// application.
2930

3031
#include "pw_preprocessor/compiler.h"
3132
#include "pw_preprocessor/util.h"
3233

3334
// Low-level raw exception entry handler.
3435
//
35-
// Captures faulting CPU state into a platform-specific pw_CpuExceptionState
36+
// Captures faulting CPU state into a platform-specific pw_cpu_exception_State
3637
// object, then calls the user-provided fault handler.
3738
//
3839
// This function should be called immediately after a fault; typically by being
3940
// in the interrupt vector table entries for the hard fault exceptions.
4041
//
4142
// Note: applications should almost never invoke this directly; if you do, make
4243
// sure you know what you are doing.
44+
PW_EXTERN_C PW_NO_PROLOGUE void pw_cpu_exception_Entry(void);
45+
46+
// TODO(pwbug/311) Deprecated naming.
4347
PW_EXTERN_C PW_NO_PROLOGUE void pw_CpuExceptionEntry(void);

pw_cpu_exception/public/pw_cpu_exception/handler.h

+17-8
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@
1818

1919
PW_EXTERN_C_START
2020

21-
// Forward declaration of pw_CpuExceptionState. Definition provided by cpu
21+
// Forward declaration of pw_cpu_exception_State. Definition provided by cpu
2222
// exception entry backend.
23-
struct pw_CpuExceptionState;
23+
struct pw_cpu_exception_State;
2424

2525
// By default, the exception entry function will terminate by handing execution
26-
// over to pw_CpuExceptionDefaultHandler(). This can be used to override the
26+
// over to pw_cpu_exception_DefaultHandler(). This can be used to override the
2727
// current handler. This allows runtime insertion of an exception handler which
2828
// may also be helpful for loading a bootloader exception handler by default
2929
// that an application overrides.
30-
void pw_CpuExceptionSetHandler(void (*handler)(pw_CpuExceptionState*));
30+
void pw_cpu_exception_SetHandler(void (*handler)(pw_cpu_exception_State*));
3131

32-
// Set the exception handler to point to pw_CpuExceptionDefaultHandler().
33-
void pw_CpuExceptionRestoreDefaultHandler(void);
32+
// Set the exception handler to point to pw_cpu_exception_DefaultHandler().
33+
void pw_cpu_exception_RestoreDefaultHandler(void);
3434

3535
// Application-defined recoverable CPU exception handler.
3636
//
@@ -46,10 +46,19 @@ void pw_CpuExceptionRestoreDefaultHandler(void);
4646
// attach.
4747
//
4848
// See the cpu_exception module documentation for more details.
49-
PW_USED void pw_CpuExceptionDefaultHandler(pw_CpuExceptionState* state);
49+
PW_USED void pw_cpu_exception_DefaultHandler(pw_cpu_exception_State* state);
5050

5151
// This is the underlying function the CPU exception entry backend should call.
5252
// This calls the currently set handler.
53-
void pw_HandleCpuException(void* cpu_state);
53+
void pw_cpu_exception_HandleException(void* cpu_state);
54+
55+
// TODO(pwbug/311) Deprecated naming.
56+
typedef pw_cpu_exception_State pw_CpuExceptionState;
57+
#define pw_CpuExceptionSetHandler(...) pw_cpu_exception_SetHandler(__VA_ARGS__)
58+
#define pw_CpuExceptionRestoreDefaultHandler(...) \
59+
pw_cpu_exception_RestoreDefaultHandler(__VA_ARGS__)
60+
#define pw_CpuExceptionDefaultHandler(...) \
61+
pw_cpu_exception_DefaultHandler(__VA_ARGS__)
62+
#define pw_HandleCpuException(...) pw_cpu_exception_HandleException(__VA_ARGS__)
5463

5564
PW_EXTERN_C_END

pw_cpu_exception/public/pw_cpu_exception/support.h

+12-8
Original file line numberDiff line numberDiff line change
@@ -13,32 +13,36 @@
1313
// the License.
1414

1515
// This facade provides an API for capturing the contents of a
16-
// pw_CpuExceptionState struct in a platform-agnostic way. While this facade
16+
// pw_cpu_exception_State struct in a platform-agnostic way. While this facade
1717
// does not provide a means to directly access individual members of a
18-
// pw_CpuExceptionState object, it does allow dumping CPU state without needing
19-
// to know any specifics about the underlying architecture.
18+
// pw_cpu_exception_State object, it does allow dumping CPU state without
19+
// needing to know any specifics about the underlying architecture.
2020
#pragma once
2121

2222
#include <cstdint>
2323
#include <span>
2424

25-
// Forward declaration of pw_CpuExceptionState. Definition provided by backend.
26-
struct pw_CpuExceptionState;
25+
// Forward declaration of pw_cpu_exception_State. Definition provided by
26+
// backend.
27+
struct pw_cpu_exception_State;
28+
29+
// TODO(pwbug/311) Deprecated naming.
30+
typedef pw_cpu_exception_State pw_CpuExceptionState;
2731

2832
namespace pw::cpu_exception {
2933

3034
// Gets raw CPU state as a single contiguous block of data. The particular
3135
// contents will depend on the specific backend and platform.
3236
std::span<const uint8_t> RawFaultingCpuState(
33-
const pw_CpuExceptionState& cpu_state);
37+
const pw_cpu_exception_State& cpu_state);
3438

3539
// Writes CPU state as a formatted string to a string builder.
3640
// NEVER depend on the format of this output. This is exclusively FYI human
3741
// readable output.
38-
void ToString(const pw_CpuExceptionState& cpu_state,
42+
void ToString(const pw_cpu_exception_State& cpu_state,
3943
const std::span<char>& dest);
4044

4145
// Logs captured CPU state using pw_log at PW_LOG_LEVEL_INFO.
42-
void LogCpuState(const pw_CpuExceptionState& cpu_state);
46+
void LogCpuState(const pw_cpu_exception_State& cpu_state);
4347

4448
} // namespace pw::cpu_exception

pw_cpu_exception/start_exception_handler.cc

+9-9
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,21 @@
1616

1717
namespace pw::cpu_exception {
1818

19-
static void (*exception_handler)(pw_CpuExceptionState*) =
20-
&pw_CpuExceptionDefaultHandler;
19+
static void (*exception_handler)(pw_cpu_exception_State*) =
20+
&pw_cpu_exception_DefaultHandler;
2121

22-
extern "C" void pw_CpuExceptionSetHandler(
23-
void (*handler)(pw_CpuExceptionState*)) {
22+
extern "C" void pw_cpu_exception_SetHandler(
23+
void (*handler)(pw_cpu_exception_State*)) {
2424
exception_handler = handler;
2525
}
2626

27-
// Revert the exception handler to point to pw_CpuExceptionDefaultHandler().
28-
extern "C" void pw_CpuExceptionRestoreDefaultHandler() {
29-
exception_handler = &pw_CpuExceptionDefaultHandler;
27+
// Revert the exception handler to point to pw_cpu_exception_DefaultHandler().
28+
extern "C" void pw_cpu_exception_RestoreDefaultHandler() {
29+
exception_handler = &pw_cpu_exception_DefaultHandler;
3030
}
3131

32-
extern "C" void pw_HandleCpuException(void* cpu_state) {
33-
exception_handler(reinterpret_cast<pw_CpuExceptionState*>(cpu_state));
32+
extern "C" void pw_cpu_exception_HandleException(void* cpu_state) {
33+
exception_handler(reinterpret_cast<pw_cpu_exception_State*>(cpu_state));
3434
}
3535

3636
} // namespace pw::cpu_exception

pw_cpu_exception_armv7m/BUILD

-8
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,8 @@ licenses(["notice"]) # Apache License 2.0
1919
filegroup(
2020
name = "pw_cpu_exception_armv7m",
2121
srcs = [
22-
"entry.cc",
23-
"cpu_state.cc",
24-
"proto_dump.cc",
2522
"public/pw_cpu_exception_armv7m/cpu_state.h",
2623
"public/pw_cpu_exception_armv7m/proto_dump.h",
2724
"pw_cpu_exception_armv7m_private/cortex_m_constants.h",
2825
],
2926
)
30-
31-
filegroup(
32-
name = "pw_cpu_exception_armv7m_test",
33-
srcs = ["exception_entry_test.cc"],
34-
)

pw_cpu_exception_armv7m/BUILD.gn

+4-48
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,6 @@
1515
import("//build_overrides/pigweed.gni")
1616

1717
import("$dir_pw_build/target_types.gni")
18-
import("$dir_pw_cpu_exception/backend.gni")
19-
import("$dir_pw_docgen/docs.gni")
20-
import("$dir_pw_protobuf_compiler/proto.gni")
21-
import("$dir_pw_unit_test/test.gni")
2218

2319
config("default_config") {
2420
include_dirs = [ "public" ]
@@ -27,60 +23,20 @@ config("default_config") {
2723

2824
pw_source_set("support") {
2925
public_configs = [ ":default_config" ]
30-
public_deps = [
31-
"$dir_pw_cpu_exception:support.facade",
32-
dir_pw_preprocessor,
33-
dir_pw_string,
34-
]
35-
deps = [ dir_pw_log ]
26+
public_deps = [ "$dir_pw_cpu_exception_cortex_m:support_armv7m" ]
3627
public = [ "public/pw_cpu_exception_armv7m/cpu_state.h" ]
37-
sources = [
38-
"cpu_state.cc",
39-
"pw_cpu_exception_armv7m_private/cortex_m_constants.h",
40-
]
4128
}
4229

4330
pw_source_set("proto_dump") {
44-
public_deps = [
45-
":support",
46-
dir_pw_protobuf,
47-
dir_pw_status,
48-
dir_pw_stream,
49-
]
31+
public_configs = [ ":default_config" ]
32+
public_deps = [ "$dir_pw_cpu_exception_cortex_m:proto_dump_armv7m" ]
5033
public = [ "public/pw_cpu_exception_armv7m/proto_dump.h" ]
51-
deps = [ ":cpu_state_protos.pwpb" ]
52-
sources = [ "proto_dump.cc" ]
53-
}
54-
55-
pw_proto_library("cpu_state_protos") {
56-
sources = [ "pw_cpu_exception_armv7m_protos/cpu_state.proto" ]
5734
}
5835

5936
pw_source_set("pw_cpu_exception_armv7m") {
60-
public_configs = [ ":default_config" ]
6137
public_deps = [
6238
":proto_dump",
6339
":support",
64-
"$dir_pw_cpu_exception:entry.facade",
65-
"$dir_pw_cpu_exception:handler",
66-
"$dir_pw_preprocessor",
67-
]
68-
sources = [
69-
"entry.cc",
70-
"pw_cpu_exception_armv7m_private/cortex_m_constants.h",
40+
"$dir_pw_cpu_exception_cortex_m:cpu_exception_armv7m",
7141
]
7242
}
73-
74-
pw_test_group("tests") {
75-
enable_if = pw_cpu_exception_ENTRY_BACKEND == dir_pw_cpu_exception_armv7m
76-
tests = [ ":cpu_exception_entry_test" ]
77-
}
78-
79-
pw_test("cpu_exception_entry_test") {
80-
deps = [ ":pw_cpu_exception_armv7m" ]
81-
sources = [ "exception_entry_test.cc" ]
82-
}
83-
84-
pw_doc_group("docs") {
85-
sources = [ "docs.rst" ]
86-
}

pw_cpu_exception_armv7m/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020 The Pigweed Authors
1+
# Copyright 2021 The Pigweed Authors
22
#
33
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
44
# use this file except in compliance with the License. You may obtain a copy of
@@ -15,6 +15,6 @@
1515
include($ENV{PW_ROOT}/pw_build/pigweed.cmake)
1616

1717
pw_auto_add_simple_module(pw_cpu_exception_armv7m
18-
IMPLEMENTS_FACADE
19-
pw_cpu_exception
18+
PUBLIC_DEPS
19+
pw_cpu_exception_cortex_m
2020
)

0 commit comments

Comments
 (0)