Skip to content
Snippets Groups Projects
Commit 9d4b7d0b authored by Hans de Goede's avatar Hans de Goede
Browse files

sun4i: Rename dram_clk_cfg to dram_clk_gate


The data sheet just calls it DRAM_CLK_REG, and on sun6i we've both a
dram_clk_cfg and dram_clk_gate, and the sun4i reg matches dram_clk_gate on
sun6i, so name it the same on sun4i.

Signed-off-by: default avatarHans de Goede <hdegoede@redhat.com>
Acked-by: default avatarIan Campbell <ijc@hellion.org.uk>
parent 2a82ec77
No related branches found
No related tags found
No related merge requests found
...@@ -428,9 +428,9 @@ static void dramc_clock_output_en(u32 on) ...@@ -428,9 +428,9 @@ static void dramc_clock_output_en(u32 on)
#ifdef CONFIG_MACH_SUN4I #ifdef CONFIG_MACH_SUN4I
struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; struct sunxi_ccm_reg *ccm = (struct sunxi_ccm_reg *)SUNXI_CCM_BASE;
if (on) if (on)
setbits_le32(&ccm->dram_clk_cfg, CCM_DRAM_CTRL_DCLK_OUT); setbits_le32(&ccm->dram_clk_gate, CCM_DRAM_CTRL_DCLK_OUT);
else else
clrbits_le32(&ccm->dram_clk_cfg, CCM_DRAM_CTRL_DCLK_OUT); clrbits_le32(&ccm->dram_clk_gate, CCM_DRAM_CTRL_DCLK_OUT);
#endif #endif
} }
......
...@@ -62,7 +62,7 @@ struct sunxi_ccm_reg { ...@@ -62,7 +62,7 @@ struct sunxi_ccm_reg {
u32 gps_clk_cfg; /* 0xd0 */ u32 gps_clk_cfg; /* 0xd0 */
u32 spi3_clk_cfg; /* 0xd4 */ u32 spi3_clk_cfg; /* 0xd4 */
u8 res5[0x28]; u8 res5[0x28];
u32 dram_clk_cfg; /* 0x100 */ u32 dram_clk_gate; /* 0x100 */
u32 be0_clk_cfg; /* 0x104 */ u32 be0_clk_cfg; /* 0x104 */
u32 be1_clk_cfg; /* 0x108 */ u32 be1_clk_cfg; /* 0x108 */
u32 fe0_clk_cfg; /* 0x10c */ u32 fe0_clk_cfg; /* 0x10c */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment