2018-03-02 06:50:00 +00:00
|
|
|
#ifndef EXOSPHERE_CLOCK_AND_RESET_H
|
|
|
|
#define EXOSPHERE_CLOCK_AND_RESET_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
#include "memory_map.h"
|
|
|
|
|
|
|
|
/* Exosphere Driver for the Tegra X1 Clock and Reset registers. */
|
|
|
|
|
|
|
|
#define CAR_BASE (MMIO_GET_DEVICE_ADDRESS(MMIO_DEVID_CLKRST))
|
|
|
|
|
|
|
|
#define MAKE_CAR_REG(n) (*((volatile uint32_t *)(CAR_BASE + n)))
|
|
|
|
|
2018-03-02 07:33:43 +00:00
|
|
|
#define CLK_RST_CONTROLLER_MISC_CLK_ENB_0 MAKE_CAR_REG(0x048)
|
|
|
|
#define CLK_RST_CONTROLLER_RST_DEVICES_H_0 MAKE_CAR_REG(0x008)
|
2018-03-02 21:44:21 +00:00
|
|
|
#define CLK_RST_CONTROLLER_LVL2_CLK_GATE_OVRD_0 MAKE_CAR_REG(0x3A4)
|
2018-03-02 07:33:43 +00:00
|
|
|
|
2018-03-02 06:50:00 +00:00
|
|
|
#define NUM_CAR_BANKS 7
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
CARDEVICE_UARTA = 6,
|
|
|
|
CARDEVICE_UARTB = 7,
|
|
|
|
CARDEVICE_I2C1 = 12,
|
|
|
|
CARDEVICE_I2C5 = 47,
|
|
|
|
CARDEVICE_BPMP = 1
|
|
|
|
} car_device_t;
|
|
|
|
|
|
|
|
void clk_enable(car_device_t dev);
|
|
|
|
void clk_disable(car_device_t dev);
|
|
|
|
void rst_enable(car_device_t dev);
|
|
|
|
void rst_disable(car_device_t dev);
|
|
|
|
|
|
|
|
void clkrst_enable(car_device_t dev);
|
|
|
|
void clkrst_disable(car_device_t dev);
|
|
|
|
|
|
|
|
void clkrst_reboot(car_device_t dev);
|
|
|
|
|
|
|
|
#endif
|