30500c2ad9
STM32MP15 is now using the same reset driver as STM32MP13 as they have the same binding requirement. Signed-off-by: Gabriel Fernandez <gabriel.fernandez@foss.st.com> Link: https://lore.kernel.org/r/20231208143700.354785-3-gabriel.fernandez@foss.st.com Signed-off-by: Stephen Boyd <sboyd@kernel.org>
15 lines
416 B
C
15 lines
416 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) STMicroelectronics 2022 - All Rights Reserved
|
|
* Author: Gabriel Fernandez <gabriel.fernandez@foss.st.com> for STMicroelectronics.
|
|
*/
|
|
|
|
struct clk_stm32_reset_data {
|
|
const struct reset_control_ops *ops;
|
|
unsigned int nr_lines;
|
|
u32 clear_offset;
|
|
};
|
|
|
|
int stm32_rcc_reset_init(struct device *dev, struct clk_stm32_reset_data *data,
|
|
void __iomem *base);
|