From mboxrd@z Thu Jan 1 00:00:00 1970 From: sshtylyov@mvista.com (Sergei Shtylyov) Date: Fri, 20 May 2011 19:08:19 +0400 Subject: [PATCH 1/4] davinci: dm644x: move EMAC definitions from dm644x.h to dm644x.c In-Reply-To: <1305900497-3668-1-git-send-email-manjunath.hadli@ti.com> References: <1305900497-3668-1-git-send-email-manjunath.hadli@ti.com> Message-ID: <4DD683E3.3020804@mvista.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Hello. Manjunath Hadli wrote: > move the register base addresses and offsets used only by dm644x > platform file from platform header dm644x.h to dm644x.c as they > are used only in the c file. > Signed-off-by: Manjunath Hadli > --- > arch/arm/mach-davinci/dm644x.c | 16 +++++++++++----- > arch/arm/mach-davinci/include/mach/dm644x.h | 7 ------- > 2 files changed, 11 insertions(+), 12 deletions(-) > diff --git a/arch/arm/mach-davinci/dm644x.c b/arch/arm/mach-davinci/dm644x.c > index 9a2376b..4fbb250 100644 > --- a/arch/arm/mach-davinci/dm644x.c > +++ b/arch/arm/mach-davinci/dm644x.c > @@ -30,11 +30,6 @@ > #include "clock.h" > #include "mux.h" > > -/* > - * Device specific clocks > - */ > -#define DM644X_REF_FREQ 27000000 > - > static struct pll_data pll1_data = { > .num = 1, > .phys_base = DAVINCI_PLL1_BASE, > @@ -45,6 +40,8 @@ static struct pll_data pll2_data = { > .phys_base = DAVINCI_PLL2_BASE, > }; > > +#define DM644X_REF_FREQ 27000000 Why move it (and remove the comment)? > static struct clk ref_clk = { > .name = "ref_clk", > .rate = DM644X_REF_FREQ, > @@ -318,6 +315,11 @@ static struct clk_lookup dm644x_clks[] = { > CLK(NULL, NULL, NULL), > }; > > +#define DM644X_EMAC_CNTRL_OFFSET 0x0000 > +#define DM644X_EMAC_CNTRL_MOD_OFFSET 0x1000 > +#define DM644X_EMAC_CNTRL_RAM_OFFSET 0x2000 > +#define DM644X_EMAC_CNTRL_RAM_SIZE 0x2000 > + > static struct emac_platform_data dm644x_emac_pdata = { > .ctrl_reg_offset = DM644X_EMAC_CNTRL_OFFSET, > .ctrl_mod_reg_offset = DM644X_EMAC_CNTRL_MOD_OFFSET, > @@ -326,6 +328,8 @@ static struct emac_platform_data dm644x_emac_pdata = { > .version = EMAC_VERSION_1, > }; > > +#define DM644X_EMAC_BASE 0x01C80000 > + > static struct resource dm644x_emac_resources[] = { > { > .start = DM644X_EMAC_BASE, > @@ -349,6 +353,8 @@ static struct platform_device dm644x_emac_device = { > .resource = dm644x_emac_resources, > }; > > +#define DM644X_EMAC_MDIO_BASE (DM644X_EMAC_BASE + 0x4000) I'd prefer that these macros would still be grouped together at the start of file... WBR, Sergei