commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
27 lines
483 B
C
27 lines
483 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef LINUX_SOC_DOVE_PMU_H
|
|
#define LINUX_SOC_DOVE_PMU_H
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct dove_pmu_domain_initdata {
|
|
u32 pwr_mask;
|
|
u32 rst_mask;
|
|
u32 iso_mask;
|
|
const char *name;
|
|
};
|
|
|
|
struct dove_pmu_initdata {
|
|
void __iomem *pmc_base;
|
|
void __iomem *pmu_base;
|
|
int irq;
|
|
int irq_domain_start;
|
|
const struct dove_pmu_domain_initdata *domains;
|
|
};
|
|
|
|
int dove_init_pmu_legacy(const struct dove_pmu_initdata *);
|
|
|
|
int dove_init_pmu(void);
|
|
|
|
#endif
|