zephyr/subsys/bluetooth/controller/hal/debug.h
Carles Cufi f7d313b154 Bluetooth: Controller: Add ASSERT info dump on HCI builds
When building Zephyr in the controller-only configuration,
assertions that happen in the Link Layer code are not visible
to the Host which is running on another HCI and connected via
UART or USB to it. This patch allows the Controller code
to output the assertion line number when in such a configuration,
allowing the Host to view the event to help debugging.

The event format used is temporary and will be replaced by a
standardized Vendor Specific specification to come at a later
time.

Change-Id: I013ca6783a3fdedc47b171132919dd4798c66285
Signed-off-by: Carles Cufi <carles.cufi@nordicsemi.no>
2016-11-11 07:59:15 +02:00

227 lines
5.7 KiB
C

/*
* Copyright (c) 2016 Nordic Semiconductor ASA
* Copyright (c) 2016 Vinayak Kariappa Chettimada
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef _DEBUG_H_
#define _DEBUG_H_
#include <bluetooth/log.h>
#ifdef CONFIG_BLUETOOTH_CONTROLLER_ASSERT_HANDLER
void bt_controller_assert_handle(char *file, uint32_t line);
#define LL_ASSERT(cond) if (!(cond)) { \
bt_controller_assert_handle(__FILE__, \
__LINE__); \
}
#else
#define LL_ASSERT(cond) BT_ASSERT(cond)
#endif
/* below are some interesting macros referenced by controller
* which can be defined to SoC's GPIO toggle to observe/debug the
* controller's runtime behavior.
*/
#if (DEBUG == 1)
#define DEBUG_INIT() do { \
NRF_GPIO->DIRSET = 0x03FF0000; \
NRF_GPIO->OUTCLR = 0x03FF0000; } \
while (0)
#define DEBUG_CPU_SLEEP(flag) do { \
if (flag) { \
NRF_GPIO->OUTSET = 0x00010000; \
NRF_GPIO->OUTCLR = 0x00010000; } \
else { \
NRF_GPIO->OUTCLR = 0x00010000; \
NRF_GPIO->OUTSET = 0x00010000; } \
} while (0)
#define DEBUG_TICKER_ISR(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00020000; \
NRF_GPIO->OUTSET = 0x00020000; } \
else { \
NRF_GPIO->OUTSET = 0x00020000; \
NRF_GPIO->OUTCLR = 0x00020000; } \
} while (0)
#define DEBUG_TICKER_TASK(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00020000; \
NRF_GPIO->OUTSET = 0x00020000; } \
else { \
NRF_GPIO->OUTSET = 0x00020000; \
NRF_GPIO->OUTCLR = 0x00020000; } \
} while (0)
#define DEBUG_TICKER_JOB(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00040000; \
NRF_GPIO->OUTSET = 0x00040000; } \
else { \
NRF_GPIO->OUTSET = 0x00040000; \
NRF_GPIO->OUTCLR = 0x00040000; } \
} while (0)
#define DEBUG_RADIO_ISR(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00800000; \
NRF_GPIO->OUTSET = 0x00800000; } \
else { \
NRF_GPIO->OUTSET = 0x00800000; \
NRF_GPIO->OUTCLR = 0x00800000; } \
} while (0)
#define DEBUG_RADIO_XTAL(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x01000000; \
NRF_GPIO->OUTSET = 0x01000000; } \
else { \
NRF_GPIO->OUTSET = 0x01000000; \
NRF_GPIO->OUTCLR = 0x01000000; } \
} while (0)
#define DEBUG_RADIO_ACTIVE(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x02000000; \
NRF_GPIO->OUTSET = 0x02000000; } \
else { \
NRF_GPIO->OUTSET = 0x02000000; \
NRF_GPIO->OUTCLR = 0x02000000; } \
} while (0)
#define DEBUG_RADIO_CLOSE(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00000000; \
NRF_GPIO->OUTSET = 0x00000000; } \
else { \
NRF_GPIO->OUTCLR = 0x00780000; } \
} while (0)
#define DEBUG_RADIO_PREPARE_A(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00080000; \
NRF_GPIO->OUTSET = 0x00080000; } \
else { \
NRF_GPIO->OUTCLR = 0x00080000; \
NRF_GPIO->OUTSET = 0x00080000; } \
} while (0)
#define DEBUG_RADIO_START_A(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00080000; \
NRF_GPIO->OUTSET = 0x00080000; } \
else { \
NRF_GPIO->OUTCLR = 0x00080000; \
NRF_GPIO->OUTSET = 0x00080000; } \
} while (0)
#define DEBUG_RADIO_PREPARE_S(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00100000; \
NRF_GPIO->OUTSET = 0x00100000; } \
else { \
NRF_GPIO->OUTCLR = 0x00100000; \
NRF_GPIO->OUTSET = 0x00100000; } \
} while (0)
#define DEBUG_RADIO_START_S(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00100000; \
NRF_GPIO->OUTSET = 0x00100000; } \
else { \
NRF_GPIO->OUTCLR = 0x00100000; \
NRF_GPIO->OUTSET = 0x00100000; } \
} while (0)
#define DEBUG_RADIO_PREPARE_O(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00200000; \
NRF_GPIO->OUTSET = 0x00200000; } \
else { \
NRF_GPIO->OUTCLR = 0x00200000; \
NRF_GPIO->OUTSET = 0x00200000; } \
} while (0)
#define DEBUG_RADIO_START_O(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00200000; \
NRF_GPIO->OUTSET = 0x00200000; } \
else { \
NRF_GPIO->OUTCLR = 0x00200000; \
NRF_GPIO->OUTSET = 0x00200000; } \
} while (0)
#define DEBUG_RADIO_PREPARE_M(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00400000; \
NRF_GPIO->OUTSET = 0x00400000; } \
else { \
NRF_GPIO->OUTCLR = 0x00400000; \
NRF_GPIO->OUTSET = 0x00400000; } \
} while (0)
#define DEBUG_RADIO_START_M(flag) do { \
if (flag) { \
NRF_GPIO->OUTCLR = 0x00400000; \
NRF_GPIO->OUTSET = 0x00400000; } \
else { \
NRF_GPIO->OUTCLR = 0x00400000; \
NRF_GPIO->OUTSET = 0x00400000; } \
} while (0)
#else
#define DEBUG_INIT()
#define DEBUG_CPU_SLEEP(flag)
#define DEBUG_TICKER_ISR(flag)
#define DEBUG_TICKER_TASK(flag)
#define DEBUG_TICKER_JOB(flag)
#define DEBUG_RADIO_ISR(flag)
#define DEBUG_RADIO_HCTO(flag)
#define DEBUG_RADIO_XTAL(flag)
#define DEBUG_RADIO_ACTIVE(flag)
#define DEBUG_RADIO_CLOSE(flag)
#define DEBUG_RADIO_PREPARE_A(flag)
#define DEBUG_RADIO_START_A(flag)
#define DEBUG_RADIO_PREPARE_S(flag)
#define DEBUG_RADIO_START_S(flag)
#define DEBUG_RADIO_PREPARE_O(flag)
#define DEBUG_RADIO_START_O(flag)
#define DEBUG_RADIO_PREPARE_M(flag)
#define DEBUG_RADIO_START_M(flag)
#endif /* DEBUG */
#endif /* _DEBUG_H_ */