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-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))
|
|
|
|
|
2018-03-03 19:23:13 +00:00
|
|
|
#define MAKE_CAR_REG(n) MAKE_REG32(CAR_BASE + n)
|
2018-03-02 06:50:00 +00:00
|
|
|
|
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-08-17 02:45:38 +01:00
|
|
|
#define CLK_RST_CONTROLLER_RST_CPUG_CMPLX_SET_0 MAKE_CAR_REG(0x450)
|
|
|
|
#define CLK_RST_CONTROLLER_RST_CPUG_CMPLX_CLR_0 MAKE_CAR_REG(0x454)
|
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,
|
2018-03-25 22:05:08 +01:00
|
|
|
CARDEVICE_ACTMON = 119,
|
2018-03-02 06:50:00 +00:00
|
|
|
CARDEVICE_BPMP = 1
|
2018-03-05 22:59:46 +00:00
|
|
|
} CarDevice;
|
2018-03-02 06:50:00 +00:00
|
|
|
|
2018-03-05 22:59:46 +00:00
|
|
|
void clk_enable(CarDevice dev);
|
|
|
|
void clk_disable(CarDevice dev);
|
|
|
|
void rst_enable(CarDevice dev);
|
|
|
|
void rst_disable(CarDevice dev);
|
2018-03-02 06:50:00 +00:00
|
|
|
|
2018-03-05 22:59:46 +00:00
|
|
|
void clkrst_enable(CarDevice dev);
|
|
|
|
void clkrst_disable(CarDevice dev);
|
2018-03-02 06:50:00 +00:00
|
|
|
|
2018-03-05 22:59:46 +00:00
|
|
|
void clkrst_reboot(CarDevice dev);
|
2018-03-02 06:50:00 +00:00
|
|
|
|
2018-03-03 19:23:13 +00:00
|
|
|
#endif
|