https://github.com/torvalds/linux
Raw File
Tip revision: 4b972a01a7da614b4796475f933094751a295a2f authored by Linus Torvalds on 22 June 2019, 23:01:36 UTC
Linux 5.2-rc6
Tip revision: 4b972a0
meson-aoclk.h
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
/*
 * Copyright (c) 2017 BayLibre, SAS
 * Author: Neil Armstrong <narmstrong@baylibre.com>
 *
 * Copyright (c) 2018 Amlogic, inc.
 * Author: Qiufang Dai <qiufang.dai@amlogic.com>
 * Author: Yixun Lan <yixun.lan@amlogic.com>
 */

#ifndef __MESON_AOCLK_H__
#define __MESON_AOCLK_H__

#include <linux/clk-provider.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/reset-controller.h>

#include "clk-regmap.h"

struct meson_aoclk_input {
	const char *name;
	bool required;
};

struct meson_aoclk_data {
	const unsigned int			reset_reg;
	const int				num_reset;
	const unsigned int			*reset;
	const int				num_clks;
	struct clk_regmap			**clks;
	const int				num_inputs;
	const struct meson_aoclk_input		*inputs;
	const char				*input_prefix;
	const struct clk_hw_onecell_data	*hw_data;
};

struct meson_aoclk_reset_controller {
	struct reset_controller_dev		reset;
	const struct meson_aoclk_data		*data;
	struct regmap				*regmap;
};

int meson_aoclkc_probe(struct platform_device *pdev);
#endif
back to top