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

mmp.h (475B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef __CLK_MMP_H
      3#define __CLK_MMP_H
      4
      5#include <linux/types.h>
      6
      7extern void pxa168_clk_init(phys_addr_t mpmu_phys,
      8			    phys_addr_t apmu_phys,
      9			    phys_addr_t apbc_phys);
     10extern void pxa910_clk_init(phys_addr_t mpmu_phys,
     11			    phys_addr_t apmu_phys,
     12			    phys_addr_t apbc_phys,
     13			    phys_addr_t apbcp_phys);
     14extern void mmp2_clk_init(phys_addr_t mpmu_phys,
     15			  phys_addr_t apmu_phys,
     16			  phys_addr_t apbc_phys);
     17
     18#endif