mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-11-15 01:26:34 +00:00
23 lines
612 B
C
23 lines
612 B
C
|
#ifndef EXOSPHERE_ACTIVITY_MONITOR_H
|
||
|
#define EXOSPHERE_ACTIVITY_MONITOR_H
|
||
|
|
||
|
#include "sysreg.h"
|
||
|
|
||
|
/* Exosphere Driver for the Tegra X1 Activity Monitor. */
|
||
|
|
||
|
/* NOTE: ACTMON registers lie in the SYSREG region! */
|
||
|
#define ACTMON_BASE (SYSREG_BASE + 0x800)
|
||
|
|
||
|
#define MAKE_ACTMON_REG(n) (*((volatile uint32_t *)(ACTMON_BASE + n)))
|
||
|
|
||
|
#define ACTMON_GLB_STATUS_0 MAKE_ACTMON_REG(0x000)
|
||
|
#define ACTMON_COP_CTRL_0 MAKE_ACTMON_REG(0x0C0)
|
||
|
#define ACTMON_COP_INTR_STATUS_0 MAKE_ACTMON_REG(0x0E4)
|
||
|
|
||
|
void actmon_interrupt_handler(void);
|
||
|
|
||
|
void actmon_on_bpmp_wakeup(void);
|
||
|
|
||
|
void actmon_set_callback(void (*callback)(void));
|
||
|
|
||
|
#endif
|