2018-02-18 02:50:39 +00:00
|
|
|
#ifndef EXOSPHERE_PMC_H
|
|
|
|
#define EXOSPHERE_PMC_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2018-02-23 01:50:19 +00:00
|
|
|
#include "mmu.h"
|
2018-02-18 02:50:39 +00:00
|
|
|
|
|
|
|
/* Exosphere register definitions for the Tegra X1 PMC. */
|
|
|
|
|
2018-02-23 01:50:19 +00:00
|
|
|
#define PMC_BASE (mmio_get_device_address(MMIO_DEVID_RTC_PMC) + 0x400ULL)
|
2018-02-18 02:50:39 +00:00
|
|
|
|
2018-02-23 01:50:19 +00:00
|
|
|
#define APBDEV_PMC_PWRGATE_TOGGLE_0 (*((volatile uint32_t *)(PMC_BASE + 0x30)))
|
|
|
|
#define APBDEV_PMC_PWRGATE_STATUS_0 (*((volatile uint32_t *)(PMC_BASE + 0x38)))
|
2018-02-18 02:50:39 +00:00
|
|
|
|
|
|
|
#endif
|