xtensa: doxygen: add groups for public and internal APIs

This adds two groups for Xtensa public and internal APIs.

Signed-off-by: Daniel Leung <daniel.leung@intel.com>
This commit is contained in:
Daniel Leung 2023-12-07 15:54:31 -08:00 committed by Carles Cufí
parent 2dab5dd0a0
commit 3af390f6ed

View file

@ -35,6 +35,17 @@
#include <zephyr/arch/xtensa/xtensa_mmu.h>
/**
* @defgroup xtensa_apis Xtensa APIs
* @{
* @}
*
* @defgroup xtensa_internal_apis Xtensa Internal APIs
* @ingroup xtensa_apis
* @{
* @}
*/
/* Xtensa GPRs are often designated by two different names */
#define sys_define_gpr_with_alias(name1, name2) union { uint32_t name1, name2; }