mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00:00
a1867f85e0
Add support for ClockMatrix(TM) and 82P33xxx families of timing and synchronization devices. The access interface can be either SPI or I2C. Currently, it will create 2 types of MFD devices, which are to be used by the corresponding rsmu character device driver and the PTP hardware clock driver, respectively. Signed-off-by: Min Li <min.li.xe@renesas.com> Signed-off-by: Lee Jones <lee.jones@linaro.org>
16 lines
376 B
C
16 lines
376 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Renesas Synchronization Management Unit (SMU) devices.
|
|
*
|
|
* Copyright (C) 2021 Integrated Device Technology, Inc., a Renesas Company.
|
|
*/
|
|
|
|
#ifndef __RSMU_MFD_H
|
|
#define __RSMU_MFD_H
|
|
|
|
#include <linux/mfd/rsmu.h>
|
|
|
|
int rsmu_core_init(struct rsmu_ddata *rsmu);
|
|
void rsmu_core_exit(struct rsmu_ddata *rsmu);
|
|
|
|
#endif /* __RSMU_MFD_H */
|