cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

clk-cpumux.h (574B)


      1/* SPDX-License-Identifier: GPL-2.0-only */
      2/*
      3 * Copyright (c) 2015 Linaro Ltd.
      4 * Author: Pi-Cheng Chen <pi-cheng.chen@linaro.org>
      5 */
      6
      7#ifndef __DRV_CLK_CPUMUX_H
      8#define __DRV_CLK_CPUMUX_H
      9
     10struct clk_hw_onecell_data;
     11struct device_node;
     12struct mtk_composite;
     13
     14int mtk_clk_register_cpumuxes(struct device_node *node,
     15			      const struct mtk_composite *clks, int num,
     16			      struct clk_hw_onecell_data *clk_data);
     17
     18void mtk_clk_unregister_cpumuxes(const struct mtk_composite *clks, int num,
     19				 struct clk_hw_onecell_data *clk_data);
     20
     21#endif /* __DRV_CLK_CPUMUX_H */