Commit e0818a39 authored by Alexander Müller's avatar Alexander Müller Committed by Michael Turquette

meson: clk: Rename register names according to Amlogic datasheet

Signed-off-by: default avatarAlexander Müller <serveralex@gmail.com>
Signed-off-by: default avatarMichael Turquette <mturquette@baylibre.com>
Link: lkml.kernel.org/r/1472319654-59048-4-git-send-email-serveralex@gmail.com
parent d0c175da
...@@ -113,17 +113,17 @@ static struct clk_fixed_rate meson8b_xtal = { ...@@ -113,17 +113,17 @@ static struct clk_fixed_rate meson8b_xtal = {
static struct meson_clk_pll meson8b_fixed_pll = { static struct meson_clk_pll meson8b_fixed_pll = {
.m = { .m = {
.reg_off = MESON8B_REG_PLL_FIXED, .reg_off = HHI_MPLL_CNTL,
.shift = 0, .shift = 0,
.width = 9, .width = 9,
}, },
.n = { .n = {
.reg_off = MESON8B_REG_PLL_FIXED, .reg_off = HHI_MPLL_CNTL,
.shift = 9, .shift = 9,
.width = 5, .width = 5,
}, },
.od = { .od = {
.reg_off = MESON8B_REG_PLL_FIXED, .reg_off = HHI_MPLL_CNTL,
.shift = 16, .shift = 16,
.width = 2, .width = 2,
}, },
...@@ -139,17 +139,17 @@ static struct meson_clk_pll meson8b_fixed_pll = { ...@@ -139,17 +139,17 @@ static struct meson_clk_pll meson8b_fixed_pll = {
static struct meson_clk_pll meson8b_vid_pll = { static struct meson_clk_pll meson8b_vid_pll = {
.m = { .m = {
.reg_off = MESON8B_REG_PLL_VID, .reg_off = HHI_VID_PLL_CNTL,
.shift = 0, .shift = 0,
.width = 9, .width = 9,
}, },
.n = { .n = {
.reg_off = MESON8B_REG_PLL_VID, .reg_off = HHI_VID_PLL_CNTL,
.shift = 9, .shift = 9,
.width = 5, .width = 5,
}, },
.od = { .od = {
.reg_off = MESON8B_REG_PLL_VID, .reg_off = HHI_VID_PLL_CNTL,
.shift = 16, .shift = 16,
.width = 2, .width = 2,
}, },
...@@ -165,17 +165,17 @@ static struct meson_clk_pll meson8b_vid_pll = { ...@@ -165,17 +165,17 @@ static struct meson_clk_pll meson8b_vid_pll = {
static struct meson_clk_pll meson8b_sys_pll = { static struct meson_clk_pll meson8b_sys_pll = {
.m = { .m = {
.reg_off = MESON8B_REG_PLL_SYS, .reg_off = HHI_SYS_PLL_CNTL,
.shift = 0, .shift = 0,
.width = 9, .width = 9,
}, },
.n = { .n = {
.reg_off = MESON8B_REG_PLL_SYS, .reg_off = HHI_SYS_PLL_CNTL,
.shift = 9, .shift = 9,
.width = 5, .width = 5,
}, },
.od = { .od = {
.reg_off = MESON8B_REG_PLL_SYS, .reg_off = HHI_SYS_PLL_CNTL,
.shift = 16, .shift = 16,
.width = 2, .width = 2,
}, },
...@@ -252,7 +252,7 @@ static struct clk_fixed_factor meson8b_fclk_div7 = { ...@@ -252,7 +252,7 @@ static struct clk_fixed_factor meson8b_fclk_div7 = {
* forthcoming coordinated clock rates feature * forthcoming coordinated clock rates feature
*/ */
static struct meson_clk_cpu meson8b_cpu_clk = { static struct meson_clk_cpu meson8b_cpu_clk = {
.reg_off = MESON8B_REG_SYS_CPU_CNTL1, .reg_off = HHI_SYS_CPU_CLK_CNTL1,
.div_table = cpu_div_table, .div_table = cpu_div_table,
.clk_nb.notifier_call = meson_clk_cpu_notifier_cb, .clk_nb.notifier_call = meson_clk_cpu_notifier_cb,
.hw.init = &(struct clk_init_data){ .hw.init = &(struct clk_init_data){
...@@ -266,7 +266,7 @@ static struct meson_clk_cpu meson8b_cpu_clk = { ...@@ -266,7 +266,7 @@ static struct meson_clk_cpu meson8b_cpu_clk = {
static u32 mux_table_clk81[] = { 6, 5, 7 }; static u32 mux_table_clk81[] = { 6, 5, 7 };
struct clk_mux meson8b_mpeg_clk_sel = { struct clk_mux meson8b_mpeg_clk_sel = {
.reg = (void *)MESON8B_REG_HHI_MPEG, .reg = (void *)HHI_MPEG_CLK_CNTL,
.mask = 0x7, .mask = 0x7,
.shift = 12, .shift = 12,
.flags = CLK_MUX_READ_ONLY, .flags = CLK_MUX_READ_ONLY,
...@@ -288,7 +288,7 @@ struct clk_mux meson8b_mpeg_clk_sel = { ...@@ -288,7 +288,7 @@ struct clk_mux meson8b_mpeg_clk_sel = {
}; };
struct clk_divider meson8b_mpeg_clk_div = { struct clk_divider meson8b_mpeg_clk_div = {
.reg = (void *)MESON8B_REG_HHI_MPEG, .reg = (void *)HHI_MPEG_CLK_CNTL,
.shift = 0, .shift = 0,
.width = 7, .width = 7,
.lock = &clk_lock, .lock = &clk_lock,
...@@ -302,7 +302,7 @@ struct clk_divider meson8b_mpeg_clk_div = { ...@@ -302,7 +302,7 @@ struct clk_divider meson8b_mpeg_clk_div = {
}; };
struct clk_gate meson8b_clk81 = { struct clk_gate meson8b_clk81 = {
.reg = (void *)MESON8B_REG_HHI_MPEG, .reg = (void *)HHI_MPEG_CLK_CNTL,
.bit_idx = 7, .bit_idx = 7,
.lock = &clk_lock, .lock = &clk_lock,
.hw.init = &(struct clk_init_data){ .hw.init = &(struct clk_init_data){
......
...@@ -30,11 +30,10 @@ ...@@ -30,11 +30,10 @@
* *
* [0] http://dn.odroid.com/S805/Datasheet/S805_Datasheet%20V0.8%2020150126.pdf * [0] http://dn.odroid.com/S805/Datasheet/S805_Datasheet%20V0.8%2020150126.pdf
*/ */
#define MESON8B_REG_SYS_CPU_CNTL1 0x015c /* 0x57 offset in data sheet */ #define HHI_SYS_CPU_CLK_CNTL1 0x15c /* 0x57 offset in data sheet */
#define MESON8B_REG_HHI_MPEG 0x0174 /* 0x5d offset in data sheet */ #define HHI_MPEG_CLK_CNTL 0x174 /* 0x5d offset in data sheet */
#define MESON8B_REG_MALI 0x01b0 /* 0x6c offset in data sheet */ #define HHI_MPLL_CNTL 0x280 /* 0xa0 offset in data sheet */
#define MESON8B_REG_PLL_FIXED 0x0280 #define HHI_SYS_PLL_CNTL 0x300 /* 0xc0 offset in data sheet */
#define MESON8B_REG_PLL_SYS 0x0300 #define HHI_VID_PLL_CNTL 0x320 /* 0xc8 offset in data sheet */
#define MESON8B_REG_PLL_VID 0x0320
#endif /* __MESON8B_H */ #endif /* __MESON8B_H */
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment