mirror of
https://github.com/padavanonly/gl-mt7981.git
synced 2025-12-17 01:24:38 +00:00
58 lines
2.1 KiB
C
58 lines
2.1 KiB
C
/*
|
|
* Copyright (C) 2016 MediaTek Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
* published by the Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
* See http://www.gnu.org/licenses/gpl-2.0.html for more details.
|
|
*/
|
|
/*! \file
|
|
* \brief Declaration of library functions
|
|
*
|
|
* Any definitions in this file will be shared among GLUE Layer and internal Driver Stack.
|
|
*/
|
|
|
|
#ifndef _PLATFORM_CONSYS_REG_MNG_H_
|
|
#define _PLATFORM_CONSYS_REG_MNG_H_
|
|
|
|
#include <linux/platform_device.h>
|
|
|
|
#include "consys_hw.h"
|
|
|
|
enum conn_dump_cpupcr_type
|
|
{
|
|
CONN_DUMP_CPUPCR_TYPE_BT = 1,
|
|
CONN_DUMP_CPUPCR_TYPE_WF = 2,
|
|
CONN_DUMP_CPUPCR_TYPE_ALL = 3,
|
|
};
|
|
|
|
struct consys_reg_mng_ops {
|
|
int(*consys_reg_mng_init) (struct platform_device *pdev);
|
|
int(*consys_reg_mng_deinit) (void);
|
|
int(*consys_reg_mng_check_reable) (void);
|
|
int(*consys_reg_mng_is_consys_reg) (unsigned int addr);
|
|
int(*consys_reg_mng_is_bus_hang) (void);
|
|
int(*consys_reg_mng_dump_bus_status) (void);
|
|
int(*consys_reg_mng_dump_conninfra_status) (void);
|
|
int(*consys_reg_mng_dump_cpupcr) (enum conn_dump_cpupcr_type, int times, unsigned long interval_us);
|
|
int(*consys_reg_mng_is_host_csr) (unsigned long addr);
|
|
};
|
|
|
|
int consys_reg_mng_init(struct platform_device *pdev, const struct conninfra_plat_data* plat_data);
|
|
int consys_reg_mng_deinit(void);
|
|
int consys_reg_mng_reg_readable(void);
|
|
int consys_reg_mng_is_connsys_reg(phys_addr_t addr);
|
|
int consys_reg_mng_reg_read(unsigned long addr, unsigned int *value, unsigned int mask);
|
|
int consys_reg_mng_reg_write(unsigned long addr, unsigned int value, unsigned int mask);
|
|
int consys_reg_mng_is_bus_hang(void);
|
|
int consys_reg_mng_dump_bus_status(void);
|
|
int consys_reg_mng_dump_conninfra_status(void);
|
|
int consys_reg_mng_dump_cpupcr(enum conn_dump_cpupcr_type dump_type, int times, unsigned long interval_us);
|
|
int consys_reg_mng_is_host_csr(unsigned long addr);
|
|
|
|
#endif /* _PLATFORM_CONSYS_REG_MNG_H_ */
|