2019-06-30 01:55:19 +01:00
|
|
|
/*
|
2019-07-06 20:08:37 +01:00
|
|
|
* BPMP-Lite Cache/MMU and Frequency driver for Tegra X1
|
2019-06-30 01:55:19 +01:00
|
|
|
*
|
2020-03-14 07:24:24 +00:00
|
|
|
* Copyright (c) 2019-2020 CTCaer
|
2019-06-30 01:55:19 +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/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BPMP_H_
|
|
|
|
#define _BPMP_H_
|
|
|
|
|
|
|
|
#include "../utils/types.h"
|
|
|
|
|
2019-12-14 20:21:42 +00:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
BPMP_MMU_MAINT_NOP = 0,
|
|
|
|
BPMP_MMU_MAINT_CLEAN_PHY = 1,
|
|
|
|
BPMP_MMU_MAINT_INVALID_PHY = 2,
|
|
|
|
BPMP_MMU_MAINT_CLEAN_INVALID_PHY = 3,
|
|
|
|
BPMP_MMU_MAINT_CLEAN_LINE = 9,
|
|
|
|
BPMP_MMU_MAINT_INVALID_LINE = 10,
|
|
|
|
BPMP_MMU_MAINT_CLEAN_INVALID_LINE = 11,
|
|
|
|
BPMP_MMU_MAINT_CLEAN_WAY = 17,
|
|
|
|
BPMP_MMU_MAINT_INVALID_WAY = 18,
|
|
|
|
BPMP_MMU_MAINT_CLN_INV_WAY = 19
|
|
|
|
} bpmp_maintenance_t;
|
2019-06-30 01:55:19 +01:00
|
|
|
|
|
|
|
typedef struct _bpmp_mmu_entry_t
|
|
|
|
{
|
2019-12-14 20:21:42 +00:00
|
|
|
u32 start_addr;
|
|
|
|
u32 end_addr;
|
2019-06-30 01:55:19 +01:00
|
|
|
u32 attr;
|
|
|
|
u32 enable;
|
|
|
|
} bpmp_mmu_entry_t;
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
BPMP_CLK_NORMAL, // 408MHz 0% - 136MHz APB.
|
2019-12-07 00:01:29 +00:00
|
|
|
BPMP_CLK_HIGH_BOOST, // 544MHz 33% - 136MHz APB.
|
|
|
|
BPMP_CLK_SUPER_BOOST, // 576MHz 41% - 144MHz APB.
|
|
|
|
BPMP_CLK_HYPER_BOOST, // 589MHz 44% - 147MHz APB.
|
|
|
|
//BPMP_CLK_DEV_BOOST, // 608MHz 49% - 152MHz APB.
|
2019-06-30 01:55:19 +01:00
|
|
|
BPMP_CLK_MAX
|
|
|
|
} bpmp_freq_t;
|
|
|
|
|
2019-12-07 00:01:29 +00:00
|
|
|
#define BPMP_CLK_DEFAULT_BOOST BPMP_CLK_HYPER_BOOST
|
|
|
|
|
2019-12-06 23:47:44 +00:00
|
|
|
void bpmp_mmu_maintenance(u32 op, bool force);
|
2019-06-30 01:55:19 +01:00
|
|
|
void bpmp_mmu_set_entry(int idx, bpmp_mmu_entry_t *entry, bool apply);
|
|
|
|
void bpmp_mmu_enable();
|
|
|
|
void bpmp_mmu_disable();
|
2019-12-14 20:21:42 +00:00
|
|
|
void bpmp_clk_rate_get();
|
2019-06-30 01:55:19 +01:00
|
|
|
void bpmp_clk_rate_set(bpmp_freq_t fid);
|
2019-08-27 23:33:38 +01:00
|
|
|
void bpmp_usleep(u32 us);
|
|
|
|
void bpmp_msleep(u32 ms);
|
|
|
|
void bpmp_halt();
|
2019-06-30 01:55:19 +01:00
|
|
|
|
|
|
|
#endif
|