diff options
Diffstat (limited to 'arch/arm/mach-s5pv210/include')
-rw-r--r-- | arch/arm/mach-s5pv210/include/mach/pwm-clock.h | 69 | ||||
-rw-r--r-- | arch/arm/mach-s5pv210/include/mach/regs-clock.h | 169 | ||||
-rw-r--r-- | arch/arm/mach-s5pv210/include/mach/tick.h | 26 |
3 files changed, 264 insertions, 0 deletions
diff --git a/arch/arm/mach-s5pv210/include/mach/pwm-clock.h b/arch/arm/mach-s5pv210/include/mach/pwm-clock.h new file mode 100644 index 000000000000..69027fea987a --- /dev/null +++ b/arch/arm/mach-s5pv210/include/mach/pwm-clock.h | |||
@@ -0,0 +1,69 @@ | |||
1 | /* linux/arch/arm/mach-s5pv210/include/mach/pwm-clock.h | ||
2 | * | ||
3 | * Copyright 2008 Simtec Electronics | ||
4 | * Ben Dooks <ben@simtec.co.uk> | ||
5 | * http://armlinux.simtec.co.uk/ | ||
6 | * | ||
7 | * Copyright (c) 2009 Samsung Electronics Co., Ltd. | ||
8 | * http://www.samsung.com/ | ||
9 | * | ||
10 | * Based on arch/arm/plat-s3c24xx/include/mach/pwm-clock.h | ||
11 | * | ||
12 | * S5PV210 - pwm clock and timer support | ||
13 | * | ||
14 | * This program is free software; you can redistribute it and/or modify | ||
15 | * it under the terms of the GNU General Public License version 2 as | ||
16 | * published by the Free Software Foundation. | ||
17 | */ | ||
18 | |||
19 | #ifndef __ASM_ARCH_PWMCLK_H | ||
20 | #define __ASM_ARCH_PWMCLK_H __FILE__ | ||
21 | |||
22 | /** | ||
23 | * pwm_cfg_src_is_tclk() - return whether the given mux config is a tclk | ||
24 | * @cfg: The timer TCFG1 register bits shifted down to 0. | ||
25 | * | ||
26 | * Return true if the given configuration from TCFG1 is a TCLK instead | ||
27 | * any of the TDIV clocks. | ||
28 | */ | ||
29 | static inline int pwm_cfg_src_is_tclk(unsigned long tcfg) | ||
30 | { | ||
31 | return tcfg == S3C2410_TCFG1_MUX_TCLK; | ||
32 | } | ||
33 | |||
34 | /** | ||
35 | * tcfg_to_divisor() - convert tcfg1 setting to a divisor | ||
36 | * @tcfg1: The tcfg1 setting, shifted down. | ||
37 | * | ||
38 | * Get the divisor value for the given tcfg1 setting. We assume the | ||
39 | * caller has already checked to see if this is not a TCLK source. | ||
40 | */ | ||
41 | static inline unsigned long tcfg_to_divisor(unsigned long tcfg1) | ||
42 | { | ||
43 | return 1 << (1 + tcfg1); | ||
44 | } | ||
45 | |||
46 | /** | ||
47 | * pwm_tdiv_has_div1() - does the tdiv setting have a /1 | ||
48 | * | ||
49 | * Return true if we have a /1 in the tdiv setting. | ||
50 | */ | ||
51 | static inline unsigned int pwm_tdiv_has_div1(void) | ||
52 | { | ||
53 | return 0; | ||
54 | } | ||
55 | |||
56 | /** | ||
57 | * pwm_tdiv_div_bits() - calculate TCFG1 divisor value. | ||
58 | * @div: The divisor to calculate the bit information for. | ||
59 | * | ||
60 | * Turn a divisor into the necessary bit field for TCFG1. | ||
61 | */ | ||
62 | static inline unsigned long pwm_tdiv_div_bits(unsigned int div) | ||
63 | { | ||
64 | return ilog2(div) - 1; | ||
65 | } | ||
66 | |||
67 | #define S3C_TCFG1_MUX_TCLK S3C2410_TCFG1_MUX_TCLK | ||
68 | |||
69 | #endif /* __ASM_ARCH_PWMCLK_H */ | ||
diff --git a/arch/arm/mach-s5pv210/include/mach/regs-clock.h b/arch/arm/mach-s5pv210/include/mach/regs-clock.h new file mode 100644 index 000000000000..e56e0e4673ed --- /dev/null +++ b/arch/arm/mach-s5pv210/include/mach/regs-clock.h | |||
@@ -0,0 +1,169 @@ | |||
1 | /* linux/arch/arm/mach-s5pv210/include/mach/regs-clock.h | ||
2 | * | ||
3 | * Copyright (c) 2010 Samsung Electronics Co., Ltd. | ||
4 | * http://www.samsung.com/ | ||
5 | * | ||
6 | * S5PV210 - Clock register definitions | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License version 2 as | ||
10 | * published by the Free Software Foundation. | ||
11 | */ | ||
12 | |||
13 | #ifndef __ASM_ARCH_REGS_CLOCK_H | ||
14 | #define __ASM_ARCH_REGS_CLOCK_H __FILE__ | ||
15 | |||
16 | #include <mach/map.h> | ||
17 | |||
18 | #define S5P_CLKREG(x) (S3C_VA_SYS + (x)) | ||
19 | |||
20 | #define S5P_APLL_LOCK S5P_CLKREG(0x00) | ||
21 | #define S5P_MPLL_LOCK S5P_CLKREG(0x08) | ||
22 | #define S5P_EPLL_LOCK S5P_CLKREG(0x10) | ||
23 | #define S5P_VPLL_LOCK S5P_CLKREG(0x20) | ||
24 | |||
25 | #define S5P_APLL_CON S5P_CLKREG(0x100) | ||
26 | #define S5P_MPLL_CON S5P_CLKREG(0x108) | ||
27 | #define S5P_EPLL_CON S5P_CLKREG(0x110) | ||
28 | #define S5P_VPLL_CON S5P_CLKREG(0x120) | ||
29 | |||
30 | #define S5P_CLK_SRC0 S5P_CLKREG(0x200) | ||
31 | #define S5P_CLK_SRC1 S5P_CLKREG(0x204) | ||
32 | #define S5P_CLK_SRC2 S5P_CLKREG(0x208) | ||
33 | #define S5P_CLK_SRC3 S5P_CLKREG(0x20C) | ||
34 | #define S5P_CLK_SRC4 S5P_CLKREG(0x210) | ||
35 | #define S5P_CLK_SRC5 S5P_CLKREG(0x214) | ||
36 | #define S5P_CLK_SRC6 S5P_CLKREG(0x218) | ||
37 | |||
38 | #define S5P_CLK_SRC_MASK0 S5P_CLKREG(0x280) | ||
39 | #define S5P_CLK_SRC_MASK1 S5P_CLKREG(0x284) | ||
40 | |||
41 | #define S5P_CLK_DIV0 S5P_CLKREG(0x300) | ||
42 | #define S5P_CLK_DIV1 S5P_CLKREG(0x304) | ||
43 | #define S5P_CLK_DIV2 S5P_CLKREG(0x308) | ||
44 | #define S5P_CLK_DIV3 S5P_CLKREG(0x30C) | ||
45 | #define S5P_CLK_DIV4 S5P_CLKREG(0x310) | ||
46 | #define S5P_CLK_DIV5 S5P_CLKREG(0x314) | ||
47 | #define S5P_CLK_DIV6 S5P_CLKREG(0x318) | ||
48 | #define S5P_CLK_DIV7 S5P_CLKREG(0x31C) | ||
49 | |||
50 | #define S5P_CLKGATE_MAIN0 S5P_CLKREG(0x400) | ||
51 | #define S5P_CLKGATE_MAIN1 S5P_CLKREG(0x404) | ||
52 | #define S5P_CLKGATE_MAIN2 S5P_CLKREG(0x408) | ||
53 | |||
54 | #define S5P_CLKGATE_PERI0 S5P_CLKREG(0x420) | ||
55 | #define S5P_CLKGATE_PERI1 S5P_CLKREG(0x424) | ||
56 | |||
57 | #define S5P_CLKGATE_SCLK0 S5P_CLKREG(0x440) | ||
58 | #define S5P_CLKGATE_SCLK1 S5P_CLKREG(0x444) | ||
59 | #define S5P_CLKGATE_IP0 S5P_CLKREG(0x460) | ||
60 | #define S5P_CLKGATE_IP1 S5P_CLKREG(0x464) | ||
61 | #define S5P_CLKGATE_IP2 S5P_CLKREG(0x468) | ||
62 | #define S5P_CLKGATE_IP3 S5P_CLKREG(0x46C) | ||
63 | #define S5P_CLKGATE_IP4 S5P_CLKREG(0x470) | ||
64 | |||
65 | #define S5P_CLKGATE_BLOCK S5P_CLKREG(0x480) | ||
66 | #define S5P_CLKGATE_BUS0 S5P_CLKREG(0x484) | ||
67 | #define S5P_CLKGATE_BUS1 S5P_CLKREG(0x488) | ||
68 | #define S5P_CLK_OUT S5P_CLKREG(0x500) | ||
69 | |||
70 | /* CLKSRC0 */ | ||
71 | #define S5P_CLKSRC0_MUX200_MASK (0x1<<16) | ||
72 | #define S5P_CLKSRC0_MUX166_MASK (0x1<<20) | ||
73 | #define S5P_CLKSRC0_MUX133_MASK (0x1<<24) | ||
74 | |||
75 | /* CLKDIV0 */ | ||
76 | #define S5P_CLKDIV0_APLL_SHIFT (0) | ||
77 | #define S5P_CLKDIV0_APLL_MASK (0x7 << S5P_CLKDIV0_APLL_SHIFT) | ||
78 | #define S5P_CLKDIV0_A2M_SHIFT (4) | ||
79 | #define S5P_CLKDIV0_A2M_MASK (0x7 << S5P_CLKDIV0_A2M_SHIFT) | ||
80 | #define S5P_CLKDIV0_HCLK200_SHIFT (8) | ||
81 | #define S5P_CLKDIV0_HCLK200_MASK (0x7 << S5P_CLKDIV0_HCLK200_SHIFT) | ||
82 | #define S5P_CLKDIV0_PCLK100_SHIFT (12) | ||
83 | #define S5P_CLKDIV0_PCLK100_MASK (0x7 << S5P_CLKDIV0_PCLK100_SHIFT) | ||
84 | #define S5P_CLKDIV0_HCLK166_SHIFT (16) | ||
85 | #define S5P_CLKDIV0_HCLK166_MASK (0xF << S5P_CLKDIV0_HCLK166_SHIFT) | ||
86 | #define S5P_CLKDIV0_PCLK83_SHIFT (20) | ||
87 | #define S5P_CLKDIV0_PCLK83_MASK (0x7 << S5P_CLKDIV0_PCLK83_SHIFT) | ||
88 | #define S5P_CLKDIV0_HCLK133_SHIFT (24) | ||
89 | #define S5P_CLKDIV0_HCLK133_MASK (0xF << S5P_CLKDIV0_HCLK133_SHIFT) | ||
90 | #define S5P_CLKDIV0_PCLK66_SHIFT (28) | ||
91 | #define S5P_CLKDIV0_PCLK66_MASK (0x7 << S5P_CLKDIV0_PCLK66_SHIFT) | ||
92 | |||
93 | /* Registers related to power management */ | ||
94 | #define S5P_PWR_CFG S5P_CLKREG(0xC000) | ||
95 | #define S5P_EINT_WAKEUP_MASK S5P_CLKREG(0xC004) | ||
96 | #define S5P_WAKEUP_MASK S5P_CLKREG(0xC008) | ||
97 | #define S5P_PWR_MODE S5P_CLKREG(0xC00C) | ||
98 | #define S5P_NORMAL_CFG S5P_CLKREG(0xC010) | ||
99 | #define S5P_IDLE_CFG S5P_CLKREG(0xC020) | ||
100 | #define S5P_STOP_CFG S5P_CLKREG(0xC030) | ||
101 | #define S5P_STOP_MEM_CFG S5P_CLKREG(0xC034) | ||
102 | #define S5P_SLEEP_CFG S5P_CLKREG(0xC040) | ||
103 | |||
104 | #define S5P_OSC_FREQ S5P_CLKREG(0xC100) | ||
105 | #define S5P_OSC_STABLE S5P_CLKREG(0xC104) | ||
106 | #define S5P_PWR_STABLE S5P_CLKREG(0xC108) | ||
107 | #define S5P_MTC_STABLE S5P_CLKREG(0xC110) | ||
108 | #define S5P_CLAMP_STABLE S5P_CLKREG(0xC114) | ||
109 | |||
110 | #define S5P_WAKEUP_STAT S5P_CLKREG(0xC200) | ||
111 | #define S5P_BLK_PWR_STAT S5P_CLKREG(0xC204) | ||
112 | |||
113 | #define S5P_OTHERS S5P_CLKREG(0xE000) | ||
114 | #define S5P_OM_STAT S5P_CLKREG(0xE100) | ||
115 | #define S5P_USB_PHY_CONTROL S5P_CLKREG(0xE80C) | ||
116 | #define S5P_DAC_CONTROL S5P_CLKREG(0xE810) | ||
117 | |||
118 | #define S5P_INFORM0 S5P_CLKREG(0xF000) | ||
119 | #define S5P_INFORM1 S5P_CLKREG(0xF004) | ||
120 | #define S5P_INFORM2 S5P_CLKREG(0xF008) | ||
121 | #define S5P_INFORM3 S5P_CLKREG(0xF00C) | ||
122 | #define S5P_INFORM4 S5P_CLKREG(0xF010) | ||
123 | #define S5P_INFORM5 S5P_CLKREG(0xF014) | ||
124 | #define S5P_INFORM6 S5P_CLKREG(0xF018) | ||
125 | #define S5P_INFORM7 S5P_CLKREG(0xF01C) | ||
126 | |||
127 | #define S5P_RST_STAT S5P_CLKREG(0xA000) | ||
128 | #define S5P_OSC_CON S5P_CLKREG(0x8000) | ||
129 | #define S5P_MIPI_PHY_CON0 S5P_CLKREG(0x7200) | ||
130 | #define S5P_MIPI_PHY_CON1 S5P_CLKREG(0x7204) | ||
131 | #define S5P_MIPI_CONTROL S5P_CLKREG(0xE814) | ||
132 | |||
133 | #define S5P_IDLE_CFG_TL_MASK (3 << 30) | ||
134 | #define S5P_IDLE_CFG_TM_MASK (3 << 28) | ||
135 | #define S5P_IDLE_CFG_TL_ON (2 << 30) | ||
136 | #define S5P_IDLE_CFG_TM_ON (2 << 28) | ||
137 | #define S5P_IDLE_CFG_DIDLE (1 << 0) | ||
138 | |||
139 | #define S5P_CFG_WFI_CLEAN (~(3 << 8)) | ||
140 | #define S5P_CFG_WFI_IDLE (1 << 8) | ||
141 | #define S5P_CFG_WFI_STOP (2 << 8) | ||
142 | #define S5P_CFG_WFI_SLEEP (3 << 8) | ||
143 | |||
144 | #define S5P_OTHER_SYS_INT 24 | ||
145 | #define S5P_OTHER_STA_TYPE 23 | ||
146 | #define S5P_OTHER_SYSC_INTOFF (1 << 0) | ||
147 | #define STA_TYPE_EXPON 0 | ||
148 | #define STA_TYPE_SFR 1 | ||
149 | |||
150 | #define S5P_PWR_STA_EXP_SCALE 0 | ||
151 | #define S5P_PWR_STA_CNT 4 | ||
152 | |||
153 | #define S5P_PWR_STABLE_COUNT 85500 | ||
154 | |||
155 | #define S5P_SLEEP_CFG_OSC_EN (1 << 0) | ||
156 | #define S5P_SLEEP_CFG_USBOSC_EN (1 << 1) | ||
157 | |||
158 | /* OTHERS Resgister */ | ||
159 | #define S5P_OTHERS_USB_SIG_MASK (1 << 16) | ||
160 | #define S5P_OTHERS_MIPI_DPHY_EN (1 << 28) | ||
161 | |||
162 | /* MIPI */ | ||
163 | #define S5P_MIPI_DPHY_EN (3) | ||
164 | |||
165 | /* S5P_DAC_CONTROL */ | ||
166 | #define S5P_DAC_ENABLE (1) | ||
167 | #define S5P_DAC_DISABLE (0) | ||
168 | |||
169 | #endif /* __ASM_ARCH_REGS_CLOCK_H */ | ||
diff --git a/arch/arm/mach-s5pv210/include/mach/tick.h b/arch/arm/mach-s5pv210/include/mach/tick.h new file mode 100644 index 000000000000..7993b3603ccf --- /dev/null +++ b/arch/arm/mach-s5pv210/include/mach/tick.h | |||
@@ -0,0 +1,26 @@ | |||
1 | /* linux/arch/arm/mach-s5pv210/include/mach/tick.h | ||
2 | * | ||
3 | * Copyright (c) 2009 Samsung Electronics Co., Ltd. | ||
4 | * http://www.samsung.com/ | ||
5 | * | ||
6 | * Based on arch/arm/mach-s3c6400/include/mach/tick.h | ||
7 | * | ||
8 | * S5PV210 - Timer tick support definitions | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify | ||
11 | * it under the terms of the GNU General Public License version 2 as | ||
12 | * published by the Free Software Foundation. | ||
13 | */ | ||
14 | |||
15 | #ifndef __ASM_ARCH_TICK_H | ||
16 | #define __ASM_ARCH_TICK_H __FILE__ | ||
17 | |||
18 | static inline u32 s3c24xx_ostimer_pending(void) | ||
19 | { | ||
20 | u32 pend = __raw_readl(VA_VIC0 + VIC_RAW_STATUS); | ||
21 | return pend & (1 << (IRQ_TIMER4_VIC - S5P_IRQ_VIC0(0))); | ||
22 | } | ||
23 | |||
24 | #define TICK_MAX (0xffffffff) | ||
25 | |||
26 | #endif /* __ASM_ARCH_TICK_H */ | ||