Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3d091406 authored by Manjunath Hadli's avatar Manjunath Hadli Committed by Sekhar Nori
Browse files

ARM: davinci: dm646x: move private definitions to C file



Move register base addresses and offsets used only in dm646x.c
from arch/arm/mach-davinci/include/mach/dm646x.h in to the C
file as these definitions are used only in C file.

This helps reduce code in arch/arm/mach-davinci/include/mach/
which is not really needed by rest of the kernel.

Signed-off-by: default avatarManjunath Hadli <manjunath.hadli@ti.com>
Signed-off-by: default avatarSekhar Nori <nsekhar@ti.com>
parent 719f56f2
Loading
Loading
Loading
Loading
+7 −0
Original line number Original line Diff line number Diff line
@@ -46,6 +46,13 @@
#define DM646X_REF_FREQ		27000000
#define DM646X_REF_FREQ		27000000
#define DM646X_AUX_FREQ		24000000
#define DM646X_AUX_FREQ		24000000


#define DM646X_EMAC_BASE		0x01c80000
#define DM646X_EMAC_MDIO_BASE		(DM646X_EMAC_BASE + 0x4000)
#define DM646X_EMAC_CNTRL_OFFSET	0x0000
#define DM646X_EMAC_CNTRL_MOD_OFFSET	0x1000
#define DM646X_EMAC_CNTRL_RAM_OFFSET	0x2000
#define DM646X_EMAC_CNTRL_RAM_SIZE	0x2000

static struct pll_data pll1_data = {
static struct pll_data pll1_data = {
	.num       = 1,
	.num       = 1,
	.phys_base = DAVINCI_PLL1_BASE,
	.phys_base = DAVINCI_PLL1_BASE,
+0 −7
Original line number Original line Diff line number Diff line
@@ -18,13 +18,6 @@
#include <linux/davinci_emac.h>
#include <linux/davinci_emac.h>
#include <media/davinci/vpif_types.h>
#include <media/davinci/vpif_types.h>


#define DM646X_EMAC_BASE		(0x01C80000)
#define DM646X_EMAC_MDIO_BASE		(DM646X_EMAC_BASE + 0x4000)
#define DM646X_EMAC_CNTRL_OFFSET	(0x0000)
#define DM646X_EMAC_CNTRL_MOD_OFFSET	(0x1000)
#define DM646X_EMAC_CNTRL_RAM_OFFSET	(0x2000)
#define DM646X_EMAC_CNTRL_RAM_SIZE	(0x2000)

#define DM646X_ASYNC_EMIF_CONTROL_BASE	0x20008000
#define DM646X_ASYNC_EMIF_CONTROL_BASE	0x20008000
#define DM646X_ASYNC_EMIF_CS2_SPACE_BASE 0x42000000
#define DM646X_ASYNC_EMIF_CS2_SPACE_BASE 0x42000000