2016-05-04 15:32:56 +03:00
/*
* R - Car Gen3 Clock Pulse Generator
*
* Copyright ( C ) 2015 - 2016 Glider bvba
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; version 2 of the License .
*/
# ifndef __CLK_RENESAS_RCAR_GEN3_CPG_H__
# define __CLK_RENESAS_RCAR_GEN3_CPG_H__
enum rcar_gen3_clk_types {
CLK_TYPE_GEN3_MAIN = CLK_TYPE_CUSTOM ,
CLK_TYPE_GEN3_PLL0 ,
CLK_TYPE_GEN3_PLL1 ,
CLK_TYPE_GEN3_PLL2 ,
CLK_TYPE_GEN3_PLL3 ,
CLK_TYPE_GEN3_PLL4 ,
CLK_TYPE_GEN3_SD ,
CLK_TYPE_GEN3_R ,
2017-07-19 18:39:54 +03:00
CLK_TYPE_GEN3_PE ,
2016-05-04 15:32:56 +03:00
} ;
# define DEF_GEN3_SD(_name, _id, _parent, _offset) \
DEF_BASE ( _name , _id , CLK_TYPE_GEN3_SD , _parent , . offset = _offset )
2017-07-19 18:39:54 +03:00
# define DEF_GEN3_PE(_name, _id, _parent_sscg, _div_sscg, _parent_clean, \
_div_clean ) \
DEF_BASE ( _name , _id , CLK_TYPE_GEN3_PE , \
( _parent_sscg ) < < 16 | ( _parent_clean ) , \
. div = ( _div_sscg ) < < 16 | ( _div_clean ) )
2016-05-04 15:32:56 +03:00
struct rcar_gen3_cpg_pll_config {
2017-07-19 17:30:45 +03:00
u8 extal_div ;
u8 pll1_mult ;
u8 pll1_div ;
u8 pll3_mult ;
u8 pll3_div ;
2016-05-04 15:32:56 +03:00
} ;
# define CPG_RCKCR 0x240
struct clk * rcar_gen3_cpg_clk_register ( struct device * dev ,
const struct cpg_core_clk * core , const struct cpg_mssr_info * info ,
2017-06-21 23:24:15 +03:00
struct clk * * clks , void __iomem * base ,
struct raw_notifier_head * notifiers ) ;
2016-05-04 15:32:56 +03:00
int rcar_gen3_cpg_init ( const struct rcar_gen3_cpg_pll_config * config ,
2017-03-10 13:36:33 +03:00
unsigned int clk_extalr , u32 mode ) ;
2016-05-04 15:32:56 +03:00
# endif