2018-09-07 16:00:13 +01:00
|
|
|
/*
|
2019-04-08 03:00:49 +01:00
|
|
|
* Copyright (c) 2018-2019 Atmosphère-NX
|
2018-09-07 16:00:13 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms and conditions of the GNU General Public License,
|
|
|
|
* version 2, as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope it will be useful, but WITHOUT
|
|
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
|
|
* more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2018-02-18 02:50:39 +00:00
|
|
|
#ifndef EXOSPHERE_TIMERS_H
|
|
|
|
#define EXOSPHERE_TIMERS_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2018-02-24 16:13:42 +00:00
|
|
|
#include "memory_map.h"
|
2018-02-18 02:50:39 +00:00
|
|
|
|
|
|
|
/* Exosphere driver for the Tegra X1 Timers. */
|
|
|
|
|
2018-02-26 21:09:35 +00:00
|
|
|
static inline uintptr_t get_timers_base(void) {
|
|
|
|
return MMIO_GET_DEVICE_ADDRESS(MMIO_DEVID_TMRs_WDTs);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define TIMERS_BASE (get_timers_base())
|
2018-03-03 19:23:13 +00:00
|
|
|
#define MAKE_TIMERS_REG(n) MAKE_REG32(TIMERS_BASE + n)
|
2018-03-02 20:45:37 +00:00
|
|
|
|
2018-11-14 20:14:41 +00:00
|
|
|
#define TIMERUS_CNTR_1US_0 MAKE_TIMERS_REG(0x10)
|
|
|
|
#define SHARED_INTR_STATUS_0 MAKE_TIMERS_REG(0x1A0)
|
|
|
|
#define SHARED_TIMER_SECURE_CFG_0 MAKE_TIMERS_REG(0x1A4)
|
2018-02-18 02:50:39 +00:00
|
|
|
|
2018-02-28 03:43:07 +00:00
|
|
|
typedef struct {
|
|
|
|
uint32_t CONFIG;
|
|
|
|
uint32_t STATUS;
|
|
|
|
uint32_t COMMAND;
|
|
|
|
uint32_t PATTERN;
|
|
|
|
} watchdog_timers_t;
|
|
|
|
|
|
|
|
#define GET_WDT(n) ((volatile watchdog_timers_t *)(TIMERS_BASE + 0x100 + 0x20 * n))
|
|
|
|
#define WDT_REBOOT_PATTERN 0xC45A
|
2018-11-14 20:14:41 +00:00
|
|
|
#define GET_WDT_REBOOT_CFG_REG(n) MAKE_REG32(TIMERS_BASE + 0x60 + 0x8 * n)
|
2018-02-28 03:43:07 +00:00
|
|
|
|
2018-02-18 02:50:39 +00:00
|
|
|
void wait(uint32_t microseconds);
|
|
|
|
|
2018-02-26 10:00:02 +00:00
|
|
|
static inline uint32_t get_time(void) {
|
|
|
|
return TIMERUS_CNTR_1US_0;
|
|
|
|
}
|
|
|
|
|
2018-02-28 03:43:07 +00:00
|
|
|
__attribute__ ((noreturn)) void watchdog_reboot(void);
|
|
|
|
|
2018-02-24 16:13:42 +00:00
|
|
|
#endif
|