Orange Pi5 kernel

Deprecated Linux kernel 5.10.110 for OrangePi 5/5B/5+ boards

3 Commits   0 Branches   0 Tags
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  1) /* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  2) /*
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  3)  * Copyright (c) 2017 BayLibre, SAS
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  4)  * Author: Neil Armstrong <narmstrong@baylibre.com>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  5)  *
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  6)  * Copyright (c) 2018 Amlogic, inc.
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  7)  * Author: Qiufang Dai <qiufang.dai@amlogic.com>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  8)  * Author: Yixun Lan <yixun.lan@amlogic.com>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300  9)  */
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 10) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 11) #ifndef __MESON_AOCLK_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 12) #define __MESON_AOCLK_H__
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 13) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 14) #include <linux/clk-provider.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 15) #include <linux/platform_device.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 16) #include <linux/regmap.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 17) #include <linux/reset-controller.h>
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 18) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 19) #include "clk-regmap.h"
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 20) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 21) struct meson_aoclk_data {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 22) 	const unsigned int			reset_reg;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 23) 	const int				num_reset;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 24) 	const unsigned int			*reset;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 25) 	const int				num_clks;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 26) 	struct clk_regmap			**clks;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 27) 	const struct clk_hw_onecell_data	*hw_data;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 28) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 29) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 30) struct meson_aoclk_reset_controller {
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 31) 	struct reset_controller_dev		reset;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 32) 	const struct meson_aoclk_data		*data;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 33) 	struct regmap				*regmap;
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 34) };
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 35) 
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 36) int meson_aoclkc_probe(struct platform_device *pdev);
^8f3ce5b39 (kx 2023-10-28 12:00:06 +0300 37) #endif