On Wed, Jul 21, 2010 at 9:38 AM, Ben Dooks <ben@xxxxxxxxxxxx> wrote: > On 07/19/10 06:31, MyungJoo Ham wrote: >> >> Previously, most of CLK_DIV/SRC register accessing mask and shift >> values were used at arch/arm/mach-s5pv210/clock.c only; thus we >> had not been using macros for these. However, as CPUFREQ uses >> those shift and mask values as well, we'd better define them at a single >> location, whose proper location would be regs-clock.h. >> >> Note that only the information about registers used by CPUFREQ are >> defined. However, we may need to define other registers later if we add >> other parts. >> >> Signed-off-by: MyungJoo Ham<myungjoo.ham@xxxxxxxxxxx> >> Signed-off-by: Kyungmin Park<kyungmin.park@xxxxxxxxxxx> >> --- >> arch/arm/mach-s5pv210/include/mach/regs-clock.h | 45 >> +++++++++++++++++++++-- >> 1 files changed, 42 insertions(+), 3 deletions(-) >> +#define S5P_CLKDIV2_G3D_MASK (0xF<< 0) >> +#define S5P_CLKDIV2_G3D_SHIFT (0) >> +#define S5P_CLKDIV2_MFC_MASK (0xF<< 4) >> +#define S5P_CLKDIV2_MFC_SHIFT (4) >> +#define S5P_CLKDIV2_G2D_MASK (0xF<< 8) >> +#define S5P_CLKDIV2_G2D_SHIFT (8) > > do we actually need these defines, if we're adding clocks > we've not used header-based items if we can help it. > We access these clock related registers at both cpufreq.c and clock.c. Especially in cpufreq.c, some of these values are used multiple times. I don't feel alright to use such values with bare numbers: a) hard-to-see mistypes when bare numbers are used (such as bugs addressed by the patch "ARM: S5PV210: Correct clock register properties") b) when used multiple times in a section, we can see the connections more clearly. With cpufreq.c accessing these registers, we may now consider using such defines at clock.c as well. >> +/* CLKDIV6 */ >> +#define S5P_CLKDIV6_ONEDRAM_MASK (0xf<<28) >> +#define S5P_CLKDIV6_ONEDRAM_SHIFT (28) >> + >> /* Registers related to power management */ >> #define S5P_PWR_CFG S5P_CLKREG(0xC000) >> #define S5P_EINT_WAKEUP_MASK S5P_CLKREG(0xC004) > > > -- > Ben Dooks, Design & Software Engineer, Simtec Electronics > > http://www.simtec.co.uk/ > -- MyungJoo Ham (함명주), Ph.D. Mobile Software Platform Lab, Digital Media and Communications (DMC) Business Samsung Electronics cell: 82-10-6714-2858 -- To unsubscribe from this list: send the line "unsubscribe linux-samsung-soc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html