blob: 879bb9c757675b5c4d19d45f21b2141400900b29 [file] [log] [blame]
Alexei Frolov4c0428a2020-06-10 10:46:04 -07001# Copyright 2020 The Pigweed Authors
Armando Montanez5104cd62019-12-10 14:36:43 -08002#
3# Licensed under the Apache License, Version 2.0 (the "License"); you may not
4# use this file except in compliance with the License. You may obtain a copy of
5# the License at
6#
7# https://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
11# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
12# License for the specific language governing permissions and limitations under
13# the License.
14
Armando Montanezfb3d3fb2020-06-09 18:12:12 -070015import("//build_overrides/pigweed.gni")
16
Armando Montanez5104cd62019-12-10 14:36:43 -080017import("$dir_pw_build/facade.gni")
18import("$dir_pw_docgen/docs.gni")
Alexei Frolov258fc1b2020-06-10 16:24:50 -070019import("backend.gni")
Wyatt Heplerd49f8fe2020-10-15 10:13:47 -070020
Armando Montanez5104cd62019-12-10 14:36:43 -080021config("default_config") {
22 include_dirs = [ "public" ]
23}
24
Armando Montanez356bf972020-06-04 10:35:55 -070025group("pw_cpu_exception") {
26 public_deps = [
27 ":entry",
28 ":handler",
29 ]
30}
31
32# This module has three facades, each of whose backends are set with a
33# different GN variable.
34#
35# - entry: This is the library that handles early exception entry and prepares
36# any CPU state that must be available to the exception handler via the
37# pw_CpuState object. The backend for this facade will be architecture-
38# specific.
39# Set this facade's backend via `pw_cpu_exception_ENTRY_BACKEND`
40#
41# - handler: This facade is backed by an application-specific handler that
42# determines what to do when an exception is encountered. This may be
43# capturing a crash report before resetting the device, or in some cases
44# handling the exception to allow execution to continue.
45# Set this facade's backend via `pw_cpu_exception_HANDLER_BACKEND`
46#
47# - support: This facade provides architecture-independent functions that may be
48# helpful for dumping CPU state in various forms. This allows an application
49# to create an application-specific handler that is portable across multiple
50# architectures.
51# Set this facade's backend via `pw_cpu_exception_SUPPORT_BACKEND`
52
53pw_facade("entry") {
54 backend = pw_cpu_exception_ENTRY_BACKEND
Armando Montanez356bf972020-06-04 10:35:55 -070055 public_configs = [ ":default_config" ]
56 public_deps = [ "$dir_pw_preprocessor" ]
Wyatt Heplere0575f72020-10-16 10:47:03 -070057 deps = [ ":handler.facade" ]
Armando Montanez356bf972020-06-04 10:35:55 -070058 public = [ "public/pw_cpu_exception/entry.h" ]
59}
60
61pw_facade("handler") {
62 backend = pw_cpu_exception_HANDLER_BACKEND
Wyatt Hepler21192402020-01-15 15:40:51 -080063 public_configs = [ ":default_config" ]
Wyatt Hepler7abd8cc2021-01-19 16:49:33 -080064 public_deps = [ "$dir_pw_preprocessor" ]
Armando Montanez356bf972020-06-04 10:35:55 -070065 sources = [ "start_exception_handler.cc" ]
66 public = [ "public/pw_cpu_exception/handler.h" ]
67}
68
69# This library is technically optional. It is recommended to use `support` when
70# doing basic dumps of CPU state. As an alternative, projects may choose to
71# directly depend on the entry backend if they require direct access to
Armando Montaneza9ca9992021-01-26 17:06:10 -080072# pw_cpu_exception_State members.
Armando Montanez356bf972020-06-04 10:35:55 -070073pw_facade("support") {
74 backend = pw_cpu_exception_SUPPORT_BACKEND
Armando Montanez356bf972020-06-04 10:35:55 -070075 public_configs = [ ":default_config" ]
Armando Montanez356bf972020-06-04 10:35:55 -070076 public = [ "public/pw_cpu_exception/support.h" ]
77}
78
79pw_source_set("basic_handler") {
80 deps = [
Wyatt Heplere0575f72020-10-16 10:47:03 -070081 ":handler.facade",
Armando Montanez356bf972020-06-04 10:35:55 -070082 dir_pw_log,
83 ]
84 sources = [ "basic_handler.cc" ]
Armando Montanez5104cd62019-12-10 14:36:43 -080085}
86
87pw_doc_group("docs") {
Rob Mohra0ba54f2020-02-27 11:43:49 -080088 sources = [ "docs.rst" ]
Armando Montanez5104cd62019-12-10 14:36:43 -080089}