diff options
Diffstat (limited to 'arch/arm/mach-omap2')
180 files changed, 7388 insertions, 2669 deletions
diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig index fcd4e85c4ddc..a6219eaf1f68 100644 --- a/arch/arm/mach-omap2/Kconfig +++ b/arch/arm/mach-omap2/Kconfig | |||
@@ -18,12 +18,16 @@ config ARCH_OMAP2PLUS_TYPICAL | |||
18 | select TWL4030_CORE if ARCH_OMAP3 || ARCH_OMAP4 | 18 | select TWL4030_CORE if ARCH_OMAP3 || ARCH_OMAP4 |
19 | select TWL4030_POWER if ARCH_OMAP3 || ARCH_OMAP4 | 19 | select TWL4030_POWER if ARCH_OMAP3 || ARCH_OMAP4 |
20 | select HIGHMEM | 20 | select HIGHMEM |
21 | select PINCTRL | ||
21 | help | 22 | help |
22 | Compile a kernel suitable for booting most boards | 23 | Compile a kernel suitable for booting most boards |
23 | 24 | ||
24 | config SOC_HAS_OMAP2_SDRC | 25 | config SOC_HAS_OMAP2_SDRC |
25 | bool "OMAP2 SDRAM Controller support" | 26 | bool "OMAP2 SDRAM Controller support" |
26 | 27 | ||
28 | config SOC_HAS_REALTIME_COUNTER | ||
29 | bool "Real time free running counter" | ||
30 | |||
27 | config ARCH_OMAP2 | 31 | config ARCH_OMAP2 |
28 | bool "TI OMAP2" | 32 | bool "TI OMAP2" |
29 | depends on ARCH_OMAP2PLUS | 33 | depends on ARCH_OMAP2PLUS |
@@ -44,6 +48,7 @@ config ARCH_OMAP3 | |||
44 | select ARM_CPU_SUSPEND if PM | 48 | select ARM_CPU_SUSPEND if PM |
45 | select MULTI_IRQ_HANDLER | 49 | select MULTI_IRQ_HANDLER |
46 | select SOC_HAS_OMAP2_SDRC | 50 | select SOC_HAS_OMAP2_SDRC |
51 | select OMAP_INTERCONNECT | ||
47 | 52 | ||
48 | config ARCH_OMAP4 | 53 | config ARCH_OMAP4 |
49 | bool "TI OMAP4" | 54 | bool "TI OMAP4" |
@@ -63,6 +68,7 @@ config ARCH_OMAP4 | |||
63 | select USB_ARCH_HAS_EHCI if USB_SUPPORT | 68 | select USB_ARCH_HAS_EHCI if USB_SUPPORT |
64 | select ARM_CPU_SUSPEND if PM | 69 | select ARM_CPU_SUSPEND if PM |
65 | select ARCH_NEEDS_CPU_IDLE_COUPLED if SMP | 70 | select ARCH_NEEDS_CPU_IDLE_COUPLED if SMP |
71 | select OMAP_INTERCONNECT | ||
66 | 72 | ||
67 | config SOC_OMAP5 | 73 | config SOC_OMAP5 |
68 | bool "TI OMAP5" | 74 | bool "TI OMAP5" |
@@ -70,6 +76,8 @@ config SOC_OMAP5 | |||
70 | select ARM_GIC | 76 | select ARM_GIC |
71 | select HAVE_SMP | 77 | select HAVE_SMP |
72 | select ARM_CPU_SUSPEND if PM | 78 | select ARM_CPU_SUSPEND if PM |
79 | select SOC_HAS_REALTIME_COUNTER | ||
80 | select ARM_ARCH_TIMER | ||
73 | 81 | ||
74 | comment "OMAP Core Type" | 82 | comment "OMAP Core Type" |
75 | depends on ARCH_OMAP2 | 83 | depends on ARCH_OMAP2 |
@@ -232,10 +240,11 @@ config MACH_OMAP3_PANDORA | |||
232 | select OMAP_PACKAGE_CBB | 240 | select OMAP_PACKAGE_CBB |
233 | select REGULATOR_FIXED_VOLTAGE if REGULATOR | 241 | select REGULATOR_FIXED_VOLTAGE if REGULATOR |
234 | 242 | ||
235 | config MACH_OMAP3_TOUCHBOOK | 243 | config MACH_TOUCHBOOK |
236 | bool "OMAP3 Touch Book" | 244 | bool "OMAP3 Touch Book" |
237 | depends on ARCH_OMAP3 | 245 | depends on ARCH_OMAP3 |
238 | default y | 246 | default y |
247 | select OMAP_PACKAGE_CBB | ||
239 | 248 | ||
240 | config MACH_OMAP_3430SDP | 249 | config MACH_OMAP_3430SDP |
241 | bool "OMAP 3430 SDP board" | 250 | bool "OMAP 3430 SDP board" |
diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile index f6a24b3f9c4f..fe40d9e488c9 100644 --- a/arch/arm/mach-omap2/Makefile +++ b/arch/arm/mach-omap2/Makefile | |||
@@ -4,36 +4,30 @@ | |||
4 | 4 | ||
5 | # Common support | 5 | # Common support |
6 | obj-y := id.o io.o control.o mux.o devices.o serial.o gpmc.o timer.o pm.o \ | 6 | obj-y := id.o io.o control.o mux.o devices.o serial.o gpmc.o timer.o pm.o \ |
7 | common.o gpio.o dma.o wd_timer.o display.o i2c.o hdq1w.o | 7 | common.o gpio.o dma.o wd_timer.o display.o i2c.o hdq1w.o omap_hwmod.o |
8 | 8 | ||
9 | omap-2-3-common = irq.o | 9 | # INTCPS IP block support - XXX should be moved to drivers/ |
10 | hwmod-common = omap_hwmod.o \ | 10 | obj-$(CONFIG_ARCH_OMAP2) += irq.o |
11 | omap_hwmod_common_data.o | 11 | obj-$(CONFIG_ARCH_OMAP3) += irq.o |
12 | clock-common = clock.o clock_common_data.o \ | 12 | obj-$(CONFIG_SOC_AM33XX) += irq.o |
13 | clkt_dpll.o clkt_clksel.o | ||
14 | secure-common = omap-smc.o omap-secure.o | ||
15 | 13 | ||
16 | obj-$(CONFIG_ARCH_OMAP2) += $(omap-2-3-common) $(hwmod-common) | 14 | # Secure monitor API support |
17 | obj-$(CONFIG_ARCH_OMAP3) += $(omap-2-3-common) $(hwmod-common) $(secure-common) | 15 | obj-$(CONFIG_ARCH_OMAP3) += omap-smc.o omap-secure.o |
18 | obj-$(CONFIG_ARCH_OMAP4) += prm44xx.o $(hwmod-common) $(secure-common) | 16 | obj-$(CONFIG_ARCH_OMAP4) += omap-smc.o omap-secure.o |
19 | obj-$(CONFIG_SOC_AM33XX) += irq.o $(hwmod-common) | 17 | obj-$(CONFIG_SOC_OMAP5) += omap-smc.o omap-secure.o |
20 | obj-$(CONFIG_SOC_OMAP5) += prm44xx.o $(hwmod-common) $(secure-common) | ||
21 | 18 | ||
22 | ifneq ($(CONFIG_SND_OMAP_SOC_MCBSP),) | 19 | ifneq ($(CONFIG_SND_OMAP_SOC_MCBSP),) |
23 | obj-y += mcbsp.o | 20 | obj-y += mcbsp.o |
24 | endif | 21 | endif |
25 | 22 | ||
26 | obj-$(CONFIG_TWL4030_CORE) += omap_twl.o | 23 | obj-$(CONFIG_TWL4030_CORE) += omap_twl.o |
27 | obj-$(CONFIG_SOC_HAS_OMAP2_SDRC) += sdrc.o | ||
28 | 24 | ||
29 | # SMP support ONLY available for OMAP4 | 25 | # SMP support ONLY available for OMAP4 |
30 | 26 | ||
31 | obj-$(CONFIG_SMP) += omap-smp.o omap-headsmp.o | 27 | obj-$(CONFIG_SMP) += omap-smp.o omap-headsmp.o |
32 | obj-$(CONFIG_HOTPLUG_CPU) += omap-hotplug.o | 28 | obj-$(CONFIG_HOTPLUG_CPU) += omap-hotplug.o |
33 | omap-4-5-common = omap4-common.o omap-wakeupgen.o \ | 29 | obj-$(CONFIG_ARCH_OMAP4) += omap4-common.o omap-wakeupgen.o |
34 | sleep44xx.o | 30 | obj-$(CONFIG_SOC_OMAP5) += omap4-common.o omap-wakeupgen.o |
35 | obj-$(CONFIG_ARCH_OMAP4) += $(omap-4-5-common) | ||
36 | obj-$(CONFIG_SOC_OMAP5) += $(omap-4-5-common) | ||
37 | 31 | ||
38 | plus_sec := $(call as-instr,.arch_extension sec,+sec) | 32 | plus_sec := $(call as-instr,.arch_extension sec,+sec) |
39 | AFLAGS_omap-headsmp.o :=-Wa,-march=armv7-a$(plus_sec) | 33 | AFLAGS_omap-headsmp.o :=-Wa,-march=armv7-a$(plus_sec) |
@@ -58,6 +52,7 @@ obj-$(CONFIG_ARCH_OMAP4) += mux44xx.o | |||
58 | # SMS/SDRC | 52 | # SMS/SDRC |
59 | obj-$(CONFIG_ARCH_OMAP2) += sdrc2xxx.o | 53 | obj-$(CONFIG_ARCH_OMAP2) += sdrc2xxx.o |
60 | # obj-$(CONFIG_ARCH_OMAP3) += sdrc3xxx.o | 54 | # obj-$(CONFIG_ARCH_OMAP3) += sdrc3xxx.o |
55 | obj-$(CONFIG_SOC_HAS_OMAP2_SDRC) += sdrc.o | ||
61 | 56 | ||
62 | # OPP table initialization | 57 | # OPP table initialization |
63 | ifeq ($(CONFIG_PM_OPP),y) | 58 | ifeq ($(CONFIG_PM_OPP),y) |
@@ -68,15 +63,15 @@ endif | |||
68 | 63 | ||
69 | # Power Management | 64 | # Power Management |
70 | ifeq ($(CONFIG_PM),y) | 65 | ifeq ($(CONFIG_PM),y) |
71 | obj-$(CONFIG_ARCH_OMAP2) += pm24xx.o | 66 | obj-$(CONFIG_ARCH_OMAP2) += pm24xx.o sleep24xx.o |
72 | obj-$(CONFIG_ARCH_OMAP2) += sleep24xx.o | ||
73 | obj-$(CONFIG_ARCH_OMAP3) += pm34xx.o sleep34xx.o | 67 | obj-$(CONFIG_ARCH_OMAP3) += pm34xx.o sleep34xx.o |
74 | obj-$(CONFIG_ARCH_OMAP4) += pm44xx.o omap-mpuss-lowpower.o | 68 | obj-$(CONFIG_ARCH_OMAP4) += pm44xx.o omap-mpuss-lowpower.o |
75 | obj-$(CONFIG_SOC_OMAP5) += omap-mpuss-lowpower.o | 69 | obj-$(CONFIG_ARCH_OMAP4) += sleep44xx.o |
70 | obj-$(CONFIG_SOC_OMAP5) += omap-mpuss-lowpower.o sleep44xx.o | ||
76 | obj-$(CONFIG_PM_DEBUG) += pm-debug.o | 71 | obj-$(CONFIG_PM_DEBUG) += pm-debug.o |
77 | 72 | ||
78 | obj-$(CONFIG_POWER_AVS_OMAP) += sr_device.o | 73 | obj-$(CONFIG_POWER_AVS_OMAP) += sr_device.o |
79 | obj-$(CONFIG_POWER_AVS_OMAP_CLASS3) += smartreflex-class3.o | 74 | obj-$(CONFIG_POWER_AVS_OMAP_CLASS3) += smartreflex-class3.o |
80 | 75 | ||
81 | AFLAGS_sleep24xx.o :=-Wa,-march=armv6 | 76 | AFLAGS_sleep24xx.o :=-Wa,-march=armv6 |
82 | AFLAGS_sleep34xx.o :=-Wa,-march=armv7-a$(plus_sec) | 77 | AFLAGS_sleep34xx.o :=-Wa,-march=armv7-a$(plus_sec) |
@@ -88,92 +83,76 @@ endif | |||
88 | endif | 83 | endif |
89 | 84 | ||
90 | ifeq ($(CONFIG_CPU_IDLE),y) | 85 | ifeq ($(CONFIG_CPU_IDLE),y) |
91 | obj-$(CONFIG_ARCH_OMAP3) += cpuidle34xx.o | 86 | obj-$(CONFIG_ARCH_OMAP3) += cpuidle34xx.o |
92 | obj-$(CONFIG_ARCH_OMAP4) += cpuidle44xx.o | 87 | obj-$(CONFIG_ARCH_OMAP4) += cpuidle44xx.o |
93 | endif | 88 | endif |
94 | 89 | ||
95 | # PRCM | 90 | # PRCM |
96 | omap-prcm-4-5-common = prcm.o cminst44xx.o cm44xx.o \ | 91 | obj-y += prcm.o prm_common.o |
97 | prcm_mpu44xx.o prminst44xx.o \ | 92 | obj-$(CONFIG_ARCH_OMAP2) += cm2xxx_3xxx.o prm2xxx_3xxx.o |
98 | vc44xx_data.o vp44xx_data.o | 93 | obj-$(CONFIG_ARCH_OMAP3) += cm2xxx_3xxx.o prm2xxx_3xxx.o |
99 | obj-y += prm_common.o | ||
100 | obj-$(CONFIG_ARCH_OMAP2) += prcm.o cm2xxx_3xxx.o prm2xxx_3xxx.o | ||
101 | obj-$(CONFIG_ARCH_OMAP3) += prcm.o cm2xxx_3xxx.o prm2xxx_3xxx.o | ||
102 | obj-$(CONFIG_ARCH_OMAP3) += vc3xxx_data.o vp3xxx_data.o | 94 | obj-$(CONFIG_ARCH_OMAP3) += vc3xxx_data.o vp3xxx_data.o |
103 | obj-$(CONFIG_SOC_AM33XX) += prcm.o prm33xx.o cm33xx.o | 95 | obj-$(CONFIG_SOC_AM33XX) += prm33xx.o cm33xx.o |
104 | obj-$(CONFIG_ARCH_OMAP4) += $(omap-prcm-4-5-common) prm44xx.o | 96 | omap-prcm-4-5-common = cminst44xx.o cm44xx.o prm44xx.o \ |
97 | prcm_mpu44xx.o prminst44xx.o \ | ||
98 | vc44xx_data.o vp44xx_data.o \ | ||
99 | prm44xx.o | ||
100 | obj-$(CONFIG_ARCH_OMAP4) += $(omap-prcm-4-5-common) | ||
105 | obj-$(CONFIG_SOC_OMAP5) += $(omap-prcm-4-5-common) | 101 | obj-$(CONFIG_SOC_OMAP5) += $(omap-prcm-4-5-common) |
106 | 102 | ||
107 | # OMAP voltage domains | 103 | # OMAP voltage domains |
108 | voltagedomain-common := voltage.o vc.o vp.o | 104 | obj-y += voltage.o vc.o vp.o |
109 | obj-$(CONFIG_ARCH_OMAP2) += $(voltagedomain-common) | ||
110 | obj-$(CONFIG_ARCH_OMAP2) += voltagedomains2xxx_data.o | 105 | obj-$(CONFIG_ARCH_OMAP2) += voltagedomains2xxx_data.o |
111 | obj-$(CONFIG_ARCH_OMAP3) += $(voltagedomain-common) | ||
112 | obj-$(CONFIG_ARCH_OMAP3) += voltagedomains3xxx_data.o | 106 | obj-$(CONFIG_ARCH_OMAP3) += voltagedomains3xxx_data.o |
113 | obj-$(CONFIG_ARCH_OMAP4) += $(voltagedomain-common) | ||
114 | obj-$(CONFIG_ARCH_OMAP4) += voltagedomains44xx_data.o | 107 | obj-$(CONFIG_ARCH_OMAP4) += voltagedomains44xx_data.o |
115 | obj-$(CONFIG_SOC_AM33XX) += $(voltagedomain-common) | 108 | obj-$(CONFIG_SOC_AM33XX) += voltagedomains33xx_data.o |
116 | obj-$(CONFIG_SOC_AM33XX) += voltagedomains33xx_data.o | ||
117 | obj-$(CONFIG_SOC_OMAP5) += $(voltagedomain-common) | ||
118 | 109 | ||
119 | # OMAP powerdomain framework | 110 | # OMAP powerdomain framework |
120 | powerdomain-common += powerdomain.o powerdomain-common.o | 111 | obj-y += powerdomain.o powerdomain-common.o |
121 | obj-$(CONFIG_ARCH_OMAP2) += $(powerdomain-common) | ||
122 | obj-$(CONFIG_ARCH_OMAP2) += powerdomains2xxx_data.o | 112 | obj-$(CONFIG_ARCH_OMAP2) += powerdomains2xxx_data.o |
123 | obj-$(CONFIG_ARCH_OMAP2) += powerdomain2xxx_3xxx.o | 113 | obj-$(CONFIG_ARCH_OMAP2) += powerdomain2xxx_3xxx.o |
124 | obj-$(CONFIG_ARCH_OMAP2) += powerdomains2xxx_3xxx_data.o | 114 | obj-$(CONFIG_ARCH_OMAP2) += powerdomains2xxx_3xxx_data.o |
125 | obj-$(CONFIG_ARCH_OMAP3) += $(powerdomain-common) | ||
126 | obj-$(CONFIG_ARCH_OMAP3) += powerdomain2xxx_3xxx.o | 115 | obj-$(CONFIG_ARCH_OMAP3) += powerdomain2xxx_3xxx.o |
127 | obj-$(CONFIG_ARCH_OMAP3) += powerdomains3xxx_data.o | 116 | obj-$(CONFIG_ARCH_OMAP3) += powerdomains3xxx_data.o |
128 | obj-$(CONFIG_ARCH_OMAP3) += powerdomains2xxx_3xxx_data.o | 117 | obj-$(CONFIG_ARCH_OMAP3) += powerdomains2xxx_3xxx_data.o |
129 | obj-$(CONFIG_ARCH_OMAP4) += $(powerdomain-common) | ||
130 | obj-$(CONFIG_ARCH_OMAP4) += powerdomain44xx.o | 118 | obj-$(CONFIG_ARCH_OMAP4) += powerdomain44xx.o |
131 | obj-$(CONFIG_ARCH_OMAP4) += powerdomains44xx_data.o | 119 | obj-$(CONFIG_ARCH_OMAP4) += powerdomains44xx_data.o |
132 | obj-$(CONFIG_SOC_AM33XX) += $(powerdomain-common) | ||
133 | obj-$(CONFIG_SOC_AM33XX) += powerdomain33xx.o | 120 | obj-$(CONFIG_SOC_AM33XX) += powerdomain33xx.o |
134 | obj-$(CONFIG_SOC_AM33XX) += powerdomains33xx_data.o | 121 | obj-$(CONFIG_SOC_AM33XX) += powerdomains33xx_data.o |
135 | obj-$(CONFIG_SOC_OMAP5) += $(powerdomain-common) | ||
136 | obj-$(CONFIG_SOC_OMAP5) += powerdomain44xx.o | 122 | obj-$(CONFIG_SOC_OMAP5) += powerdomain44xx.o |
137 | 123 | ||
138 | # PRCM clockdomain control | 124 | # PRCM clockdomain control |
139 | clockdomain-common += clockdomain.o | 125 | obj-y += clockdomain.o |
140 | obj-$(CONFIG_ARCH_OMAP2) += $(clockdomain-common) | ||
141 | obj-$(CONFIG_ARCH_OMAP2) += clockdomain2xxx_3xxx.o | 126 | obj-$(CONFIG_ARCH_OMAP2) += clockdomain2xxx_3xxx.o |
142 | obj-$(CONFIG_ARCH_OMAP2) += clockdomains2xxx_3xxx_data.o | 127 | obj-$(CONFIG_ARCH_OMAP2) += clockdomains2xxx_3xxx_data.o |
143 | obj-$(CONFIG_SOC_OMAP2420) += clockdomains2420_data.o | 128 | obj-$(CONFIG_SOC_OMAP2420) += clockdomains2420_data.o |
144 | obj-$(CONFIG_SOC_OMAP2430) += clockdomains2430_data.o | 129 | obj-$(CONFIG_SOC_OMAP2430) += clockdomains2430_data.o |
145 | obj-$(CONFIG_ARCH_OMAP3) += $(clockdomain-common) | ||
146 | obj-$(CONFIG_ARCH_OMAP3) += clockdomain2xxx_3xxx.o | 130 | obj-$(CONFIG_ARCH_OMAP3) += clockdomain2xxx_3xxx.o |
147 | obj-$(CONFIG_ARCH_OMAP3) += clockdomains2xxx_3xxx_data.o | 131 | obj-$(CONFIG_ARCH_OMAP3) += clockdomains2xxx_3xxx_data.o |
148 | obj-$(CONFIG_ARCH_OMAP3) += clockdomains3xxx_data.o | 132 | obj-$(CONFIG_ARCH_OMAP3) += clockdomains3xxx_data.o |
149 | obj-$(CONFIG_ARCH_OMAP4) += $(clockdomain-common) | ||
150 | obj-$(CONFIG_ARCH_OMAP4) += clockdomain44xx.o | 133 | obj-$(CONFIG_ARCH_OMAP4) += clockdomain44xx.o |
151 | obj-$(CONFIG_ARCH_OMAP4) += clockdomains44xx_data.o | 134 | obj-$(CONFIG_ARCH_OMAP4) += clockdomains44xx_data.o |
152 | obj-$(CONFIG_SOC_AM33XX) += $(clockdomain-common) | ||
153 | obj-$(CONFIG_SOC_AM33XX) += clockdomain33xx.o | 135 | obj-$(CONFIG_SOC_AM33XX) += clockdomain33xx.o |
154 | obj-$(CONFIG_SOC_AM33XX) += clockdomains33xx_data.o | 136 | obj-$(CONFIG_SOC_AM33XX) += clockdomains33xx_data.o |
155 | obj-$(CONFIG_SOC_OMAP5) += $(clockdomain-common) | ||
156 | obj-$(CONFIG_SOC_OMAP5) += clockdomain44xx.o | 137 | obj-$(CONFIG_SOC_OMAP5) += clockdomain44xx.o |
157 | 138 | ||
158 | # Clock framework | 139 | # Clock framework |
159 | obj-$(CONFIG_ARCH_OMAP2) += $(clock-common) clock2xxx.o | 140 | obj-y += clock.o clock_common_data.o \ |
160 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_sys.o | 141 | clkt_dpll.o clkt_clksel.o |
161 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_dpllcore.o | 142 | obj-$(CONFIG_ARCH_OMAP2) += clock2xxx.o |
143 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_dpllcore.o clkt2xxx_sys.o | ||
162 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_virt_prcm_set.o | 144 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_virt_prcm_set.o |
163 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_apll.o clkt2xxx_osc.o | 145 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_apll.o clkt2xxx_osc.o |
164 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_dpll.o clkt_iclk.o | 146 | obj-$(CONFIG_ARCH_OMAP2) += clkt2xxx_dpll.o clkt_iclk.o |
165 | obj-$(CONFIG_SOC_OMAP2420) += clock2420_data.o | 147 | obj-$(CONFIG_SOC_OMAP2420) += clock2420_data.o |
166 | obj-$(CONFIG_SOC_OMAP2430) += clock2430.o clock2430_data.o | 148 | obj-$(CONFIG_SOC_OMAP2430) += clock2430.o clock2430_data.o |
167 | obj-$(CONFIG_ARCH_OMAP3) += $(clock-common) clock3xxx.o | 149 | obj-$(CONFIG_ARCH_OMAP3) += clock3xxx.o |
168 | obj-$(CONFIG_ARCH_OMAP3) += clock34xx.o clkt34xx_dpll3m2.o | 150 | obj-$(CONFIG_ARCH_OMAP3) += clock34xx.o clkt34xx_dpll3m2.o |
169 | obj-$(CONFIG_ARCH_OMAP3) += clock3517.o clock36xx.o | 151 | obj-$(CONFIG_ARCH_OMAP3) += clock3517.o clock36xx.o clkt_iclk.o |
170 | obj-$(CONFIG_ARCH_OMAP3) += dpll3xxx.o clock3xxx_data.o | 152 | obj-$(CONFIG_ARCH_OMAP3) += dpll3xxx.o clock3xxx_data.o |
171 | obj-$(CONFIG_ARCH_OMAP3) += clkt_iclk.o | 153 | obj-$(CONFIG_ARCH_OMAP4) += clock44xx_data.o |
172 | obj-$(CONFIG_ARCH_OMAP4) += $(clock-common) clock44xx_data.o | ||
173 | obj-$(CONFIG_ARCH_OMAP4) += dpll3xxx.o dpll44xx.o | 154 | obj-$(CONFIG_ARCH_OMAP4) += dpll3xxx.o dpll44xx.o |
174 | obj-$(CONFIG_SOC_AM33XX) += $(clock-common) dpll3xxx.o | 155 | obj-$(CONFIG_SOC_AM33XX) += dpll3xxx.o clock33xx_data.o |
175 | obj-$(CONFIG_SOC_AM33XX) += clock33xx_data.o | ||
176 | obj-$(CONFIG_SOC_OMAP5) += $(clock-common) | ||
177 | obj-$(CONFIG_SOC_OMAP5) += dpll3xxx.o dpll44xx.o | 156 | obj-$(CONFIG_SOC_OMAP5) += dpll3xxx.o dpll44xx.o |
178 | 157 | ||
179 | # OMAP2 clock rate set data (old "OPP" data) | 158 | # OMAP2 clock rate set data (old "OPP" data) |
@@ -181,6 +160,7 @@ obj-$(CONFIG_SOC_OMAP2420) += opp2420_data.o | |||
181 | obj-$(CONFIG_SOC_OMAP2430) += opp2430_data.o | 160 | obj-$(CONFIG_SOC_OMAP2430) += opp2430_data.o |
182 | 161 | ||
183 | # hwmod data | 162 | # hwmod data |
163 | obj-y += omap_hwmod_common_data.o | ||
184 | obj-$(CONFIG_SOC_OMAP2420) += omap_hwmod_2xxx_ipblock_data.o | 164 | obj-$(CONFIG_SOC_OMAP2420) += omap_hwmod_2xxx_ipblock_data.o |
185 | obj-$(CONFIG_SOC_OMAP2420) += omap_hwmod_2xxx_3xxx_ipblock_data.o | 165 | obj-$(CONFIG_SOC_OMAP2420) += omap_hwmod_2xxx_3xxx_ipblock_data.o |
186 | obj-$(CONFIG_SOC_OMAP2420) += omap_hwmod_2xxx_interconnect_data.o | 166 | obj-$(CONFIG_SOC_OMAP2420) += omap_hwmod_2xxx_interconnect_data.o |
@@ -194,15 +174,12 @@ obj-$(CONFIG_SOC_OMAP2430) += omap_hwmod_2430_data.o | |||
194 | obj-$(CONFIG_ARCH_OMAP3) += omap_hwmod_2xxx_3xxx_ipblock_data.o | 174 | obj-$(CONFIG_ARCH_OMAP3) += omap_hwmod_2xxx_3xxx_ipblock_data.o |
195 | obj-$(CONFIG_ARCH_OMAP3) += omap_hwmod_2xxx_3xxx_interconnect_data.o | 175 | obj-$(CONFIG_ARCH_OMAP3) += omap_hwmod_2xxx_3xxx_interconnect_data.o |
196 | obj-$(CONFIG_ARCH_OMAP3) += omap_hwmod_3xxx_data.o | 176 | obj-$(CONFIG_ARCH_OMAP3) += omap_hwmod_3xxx_data.o |
177 | obj-$(CONFIG_SOC_AM33XX) += omap_hwmod_33xx_data.o | ||
197 | obj-$(CONFIG_ARCH_OMAP4) += omap_hwmod_44xx_data.o | 178 | obj-$(CONFIG_ARCH_OMAP4) += omap_hwmod_44xx_data.o |
198 | 179 | ||
199 | # EMU peripherals | 180 | # EMU peripherals |
200 | obj-$(CONFIG_OMAP3_EMU) += emu.o | 181 | obj-$(CONFIG_OMAP3_EMU) += emu.o |
201 | 182 | obj-$(CONFIG_HW_PERF_EVENTS) += pmu.o | |
202 | # L3 interconnect | ||
203 | obj-$(CONFIG_ARCH_OMAP3) += omap_l3_smx.o | ||
204 | obj-$(CONFIG_ARCH_OMAP4) += omap_l3_noc.o | ||
205 | obj-$(CONFIG_SOC_OMAP5) += omap_l3_noc.o | ||
206 | 183 | ||
207 | obj-$(CONFIG_OMAP_MBOX_FWK) += mailbox_mach.o | 184 | obj-$(CONFIG_OMAP_MBOX_FWK) += mailbox_mach.o |
208 | mailbox_mach-objs := mailbox.o | 185 | mailbox_mach-objs := mailbox.o |
@@ -229,10 +206,10 @@ obj-$(CONFIG_MACH_OMAP_H4) += board-h4.o | |||
229 | obj-$(CONFIG_MACH_OMAP_2430SDP) += board-2430sdp.o | 206 | obj-$(CONFIG_MACH_OMAP_2430SDP) += board-2430sdp.o |
230 | obj-$(CONFIG_MACH_OMAP_APOLLON) += board-apollon.o | 207 | obj-$(CONFIG_MACH_OMAP_APOLLON) += board-apollon.o |
231 | obj-$(CONFIG_MACH_OMAP3_BEAGLE) += board-omap3beagle.o | 208 | obj-$(CONFIG_MACH_OMAP3_BEAGLE) += board-omap3beagle.o |
232 | obj-$(CONFIG_MACH_DEVKIT8000) += board-devkit8000.o | 209 | obj-$(CONFIG_MACH_DEVKIT8000) += board-devkit8000.o |
233 | obj-$(CONFIG_MACH_OMAP_LDP) += board-ldp.o | 210 | obj-$(CONFIG_MACH_OMAP_LDP) += board-ldp.o |
234 | obj-$(CONFIG_MACH_OMAP3530_LV_SOM) += board-omap3logic.o | 211 | obj-$(CONFIG_MACH_OMAP3530_LV_SOM) += board-omap3logic.o |
235 | obj-$(CONFIG_MACH_OMAP3_TORPEDO) += board-omap3logic.o | 212 | obj-$(CONFIG_MACH_OMAP3_TORPEDO) += board-omap3logic.o |
236 | obj-$(CONFIG_MACH_ENCORE) += board-omap3encore.o | 213 | obj-$(CONFIG_MACH_ENCORE) += board-omap3encore.o |
237 | obj-$(CONFIG_MACH_OVERO) += board-overo.o | 214 | obj-$(CONFIG_MACH_OVERO) += board-overo.o |
238 | obj-$(CONFIG_MACH_OMAP3EVM) += board-omap3evm.o | 215 | obj-$(CONFIG_MACH_OMAP3EVM) += board-omap3evm.o |
@@ -255,7 +232,7 @@ obj-$(CONFIG_MACH_OMAP_3630SDP) += board-zoom-display.o | |||
255 | obj-$(CONFIG_MACH_CM_T35) += board-cm-t35.o | 232 | obj-$(CONFIG_MACH_CM_T35) += board-cm-t35.o |
256 | obj-$(CONFIG_MACH_CM_T3517) += board-cm-t3517.o | 233 | obj-$(CONFIG_MACH_CM_T3517) += board-cm-t3517.o |
257 | obj-$(CONFIG_MACH_IGEP0020) += board-igep0020.o | 234 | obj-$(CONFIG_MACH_IGEP0020) += board-igep0020.o |
258 | obj-$(CONFIG_MACH_OMAP3_TOUCHBOOK) += board-omap3touchbook.o | 235 | obj-$(CONFIG_MACH_TOUCHBOOK) += board-omap3touchbook.o |
259 | obj-$(CONFIG_MACH_OMAP_4430SDP) += board-4430sdp.o | 236 | obj-$(CONFIG_MACH_OMAP_4430SDP) += board-4430sdp.o |
260 | obj-$(CONFIG_MACH_OMAP4_PANDA) += board-omap4panda.o | 237 | obj-$(CONFIG_MACH_OMAP4_PANDA) += board-omap4panda.o |
261 | 238 | ||
diff --git a/arch/arm/mach-omap2/am33xx.h b/arch/arm/mach-omap2/am33xx.h new file mode 100644 index 000000000000..06c19bb7bca6 --- /dev/null +++ b/arch/arm/mach-omap2/am33xx.h | |||
@@ -0,0 +1,25 @@ | |||
1 | /* | ||
2 | * This file contains the address info for various AM33XX modules. | ||
3 | * | ||
4 | * Copyright (C) 2011 Texas Instruments, Inc. - http://www.ti.com/ | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License as | ||
8 | * published by the Free Software Foundation version 2. | ||
9 | * | ||
10 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any | ||
11 | * kind, whether express or implied; without even the implied warranty | ||
12 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | */ | ||
15 | |||
16 | #ifndef __ASM_ARCH_AM33XX_H | ||
17 | #define __ASM_ARCH_AM33XX_H | ||
18 | |||
19 | #define L4_SLOW_AM33XX_BASE 0x48000000 | ||
20 | |||
21 | #define AM33XX_SCM_BASE 0x44E10000 | ||
22 | #define AM33XX_CTRL_BASE AM33XX_SCM_BASE | ||
23 | #define AM33XX_PRCM_BASE 0x44E00000 | ||
24 | |||
25 | #endif /* __ASM_ARCH_AM33XX_H */ | ||
diff --git a/arch/arm/mach-omap2/am35xx-emac.c b/arch/arm/mach-omap2/am35xx-emac.c index 2c90ac686686..d0c54c573d34 100644 --- a/arch/arm/mach-omap2/am35xx-emac.c +++ b/arch/arm/mach-omap2/am35xx-emac.c | |||
@@ -19,7 +19,7 @@ | |||
19 | #include <linux/davinci_emac.h> | 19 | #include <linux/davinci_emac.h> |
20 | #include <asm/system.h> | 20 | #include <asm/system.h> |
21 | #include <plat/omap_device.h> | 21 | #include <plat/omap_device.h> |
22 | #include <mach/am35xx.h> | 22 | #include "am35xx.h" |
23 | #include "control.h" | 23 | #include "control.h" |
24 | #include "am35xx-emac.h" | 24 | #include "am35xx-emac.h" |
25 | 25 | ||
diff --git a/arch/arm/mach-omap2/include/mach/am35xx.h b/arch/arm/mach-omap2/am35xx.h index 95594495fcf6..95594495fcf6 100644 --- a/arch/arm/mach-omap2/include/mach/am35xx.h +++ b/arch/arm/mach-omap2/am35xx.h | |||
diff --git a/arch/arm/mach-omap2/board-2430sdp.c b/arch/arm/mach-omap2/board-2430sdp.c index 9511584fdc4f..95b384d54f8a 100644 --- a/arch/arm/mach-omap2/board-2430sdp.c +++ b/arch/arm/mach-omap2/board-2430sdp.c | |||
@@ -33,11 +33,10 @@ | |||
33 | #include <asm/mach/arch.h> | 33 | #include <asm/mach/arch.h> |
34 | #include <asm/mach/map.h> | 34 | #include <asm/mach/map.h> |
35 | 35 | ||
36 | #include <plat/board.h> | ||
37 | #include "common.h" | 36 | #include "common.h" |
38 | #include <plat/gpmc.h> | 37 | #include <plat/gpmc.h> |
39 | #include <plat/usb.h> | 38 | #include <plat/usb.h> |
40 | #include <plat/gpmc-smc91x.h> | 39 | #include "gpmc-smc91x.h" |
41 | 40 | ||
42 | #include <video/omapdss.h> | 41 | #include <video/omapdss.h> |
43 | #include <video/omap-panel-generic-dpi.h> | 42 | #include <video/omap-panel-generic-dpi.h> |
@@ -212,9 +211,6 @@ static struct regulator_init_data sdp2430_vmmc1 = { | |||
212 | }; | 211 | }; |
213 | 212 | ||
214 | static struct twl4030_gpio_platform_data sdp2430_gpio_data = { | 213 | static struct twl4030_gpio_platform_data sdp2430_gpio_data = { |
215 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
216 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
217 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
218 | }; | 214 | }; |
219 | 215 | ||
220 | static struct twl4030_platform_data sdp2430_twldata = { | 216 | static struct twl4030_platform_data sdp2430_twldata = { |
@@ -235,7 +231,7 @@ static int __init omap2430_i2c_init(void) | |||
235 | sdp2430_i2c1_boardinfo[0].irq = gpio_to_irq(78); | 231 | sdp2430_i2c1_boardinfo[0].irq = gpio_to_irq(78); |
236 | omap_register_i2c_bus(1, 100, sdp2430_i2c1_boardinfo, | 232 | omap_register_i2c_bus(1, 100, sdp2430_i2c1_boardinfo, |
237 | ARRAY_SIZE(sdp2430_i2c1_boardinfo)); | 233 | ARRAY_SIZE(sdp2430_i2c1_boardinfo)); |
238 | omap_pmic_init(2, 100, "twl4030", INT_24XX_SYS_NIRQ, | 234 | omap_pmic_init(2, 100, "twl4030", 7 + OMAP_INTC_START, |
239 | &sdp2430_twldata); | 235 | &sdp2430_twldata); |
240 | return 0; | 236 | return 0; |
241 | } | 237 | } |
diff --git a/arch/arm/mach-omap2/board-3430sdp.c b/arch/arm/mach-omap2/board-3430sdp.c index a98c688058a9..96cd3693e1ae 100644 --- a/arch/arm/mach-omap2/board-3430sdp.c +++ b/arch/arm/mach-omap2/board-3430sdp.c | |||
@@ -24,14 +24,12 @@ | |||
24 | #include <linux/io.h> | 24 | #include <linux/io.h> |
25 | #include <linux/gpio.h> | 25 | #include <linux/gpio.h> |
26 | #include <linux/mmc/host.h> | 26 | #include <linux/mmc/host.h> |
27 | #include <linux/platform_data/spi-omap2-mcspi.h> | ||
27 | 28 | ||
28 | #include <mach/hardware.h> | ||
29 | #include <asm/mach-types.h> | 29 | #include <asm/mach-types.h> |
30 | #include <asm/mach/arch.h> | 30 | #include <asm/mach/arch.h> |
31 | #include <asm/mach/map.h> | 31 | #include <asm/mach/map.h> |
32 | 32 | ||
33 | #include <plat/mcspi.h> | ||
34 | #include <plat/board.h> | ||
35 | #include <plat/usb.h> | 33 | #include <plat/usb.h> |
36 | #include "common.h" | 34 | #include "common.h" |
37 | #include <plat/dma.h> | 35 | #include <plat/dma.h> |
@@ -39,7 +37,7 @@ | |||
39 | #include <video/omapdss.h> | 37 | #include <video/omapdss.h> |
40 | #include <video/omap-panel-tfp410.h> | 38 | #include <video/omap-panel-tfp410.h> |
41 | 39 | ||
42 | #include <plat/gpmc-smc91x.h> | 40 | #include "gpmc-smc91x.h" |
43 | 41 | ||
44 | #include "board-flash.h" | 42 | #include "board-flash.h" |
45 | #include "mux.h" | 43 | #include "mux.h" |
@@ -191,9 +189,6 @@ static struct omap_dss_board_info sdp3430_dss_data = { | |||
191 | .default_device = &sdp3430_lcd_device, | 189 | .default_device = &sdp3430_lcd_device, |
192 | }; | 190 | }; |
193 | 191 | ||
194 | static struct omap_board_config_kernel sdp3430_config[] __initdata = { | ||
195 | }; | ||
196 | |||
197 | static struct omap2_hsmmc_info mmc[] = { | 192 | static struct omap2_hsmmc_info mmc[] = { |
198 | { | 193 | { |
199 | .mmc = 1, | 194 | .mmc = 1, |
@@ -233,9 +228,6 @@ static int sdp3430_twl_gpio_setup(struct device *dev, | |||
233 | } | 228 | } |
234 | 229 | ||
235 | static struct twl4030_gpio_platform_data sdp3430_gpio_data = { | 230 | static struct twl4030_gpio_platform_data sdp3430_gpio_data = { |
236 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
237 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
238 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
239 | .pulldowns = BIT(2) | BIT(6) | BIT(8) | BIT(13) | 231 | .pulldowns = BIT(2) | BIT(6) | BIT(8) | BIT(13) |
240 | | BIT(16) | BIT(17), | 232 | | BIT(16) | BIT(17), |
241 | .setup = sdp3430_twl_gpio_setup, | 233 | .setup = sdp3430_twl_gpio_setup, |
@@ -576,8 +568,6 @@ static void __init omap_3430sdp_init(void) | |||
576 | int gpio_pendown; | 568 | int gpio_pendown; |
577 | 569 | ||
578 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); | 570 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); |
579 | omap_board_config = sdp3430_config; | ||
580 | omap_board_config_size = ARRAY_SIZE(sdp3430_config); | ||
581 | omap_hsmmc_init(mmc); | 571 | omap_hsmmc_init(mmc); |
582 | omap3430_i2c_init(); | 572 | omap3430_i2c_init(); |
583 | omap_display_init(&sdp3430_dss_data); | 573 | omap_display_init(&sdp3430_dss_data); |
diff --git a/arch/arm/mach-omap2/board-3630sdp.c b/arch/arm/mach-omap2/board-3630sdp.c index 2dc9ba523c7a..fc224ad86747 100644 --- a/arch/arm/mach-omap2/board-3630sdp.c +++ b/arch/arm/mach-omap2/board-3630sdp.c | |||
@@ -17,8 +17,7 @@ | |||
17 | #include <asm/mach/arch.h> | 17 | #include <asm/mach/arch.h> |
18 | 18 | ||
19 | #include "common.h" | 19 | #include "common.h" |
20 | #include <plat/board.h> | 20 | #include "gpmc-smc91x.h" |
21 | #include <plat/gpmc-smc91x.h> | ||
22 | #include <plat/usb.h> | 21 | #include <plat/usb.h> |
23 | 22 | ||
24 | #include <mach/board-zoom.h> | 23 | #include <mach/board-zoom.h> |
@@ -67,9 +66,6 @@ static const struct usbhs_omap_board_data usbhs_bdata __initconst = { | |||
67 | .reset_gpio_port[2] = -EINVAL | 66 | .reset_gpio_port[2] = -EINVAL |
68 | }; | 67 | }; |
69 | 68 | ||
70 | static struct omap_board_config_kernel sdp_config[] __initdata = { | ||
71 | }; | ||
72 | |||
73 | #ifdef CONFIG_OMAP_MUX | 69 | #ifdef CONFIG_OMAP_MUX |
74 | static struct omap_board_mux board_mux[] __initdata = { | 70 | static struct omap_board_mux board_mux[] __initdata = { |
75 | { .reg_offset = OMAP_MUX_TERMINATOR }, | 71 | { .reg_offset = OMAP_MUX_TERMINATOR }, |
@@ -197,8 +193,6 @@ static struct flash_partitions sdp_flash_partitions[] = { | |||
197 | static void __init omap_sdp_init(void) | 193 | static void __init omap_sdp_init(void) |
198 | { | 194 | { |
199 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBP); | 195 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBP); |
200 | omap_board_config = sdp_config; | ||
201 | omap_board_config_size = ARRAY_SIZE(sdp_config); | ||
202 | zoom_peripherals_init(); | 196 | zoom_peripherals_init(); |
203 | omap_sdrc_init(h8mbx00u0mer0em_sdrc_params, | 197 | omap_sdrc_init(h8mbx00u0mer0em_sdrc_params, |
204 | h8mbx00u0mer0em_sdrc_params); | 198 | h8mbx00u0mer0em_sdrc_params); |
diff --git a/arch/arm/mach-omap2/board-4430sdp.c b/arch/arm/mach-omap2/board-4430sdp.c index c165e20506c9..3669c120c7e8 100644 --- a/arch/arm/mach-omap2/board-4430sdp.c +++ b/arch/arm/mach-omap2/board-4430sdp.c | |||
@@ -28,23 +28,22 @@ | |||
28 | #include <linux/leds_pwm.h> | 28 | #include <linux/leds_pwm.h> |
29 | #include <linux/platform_data/omap4-keypad.h> | 29 | #include <linux/platform_data/omap4-keypad.h> |
30 | 30 | ||
31 | #include <mach/hardware.h> | ||
32 | #include <asm/hardware/gic.h> | 31 | #include <asm/hardware/gic.h> |
33 | #include <asm/mach-types.h> | 32 | #include <asm/mach-types.h> |
34 | #include <asm/mach/arch.h> | 33 | #include <asm/mach/arch.h> |
35 | #include <asm/mach/map.h> | 34 | #include <asm/mach/map.h> |
36 | 35 | ||
37 | #include <plat/board.h> | ||
38 | #include "common.h" | 36 | #include "common.h" |
39 | #include <plat/usb.h> | 37 | #include <plat/usb.h> |
40 | #include <plat/mmc.h> | 38 | #include <plat/mmc.h> |
41 | #include <plat/omap4-keypad.h> | 39 | #include "omap4-keypad.h" |
42 | #include <video/omapdss.h> | 40 | #include <video/omapdss.h> |
43 | #include <video/omap-panel-nokia-dsi.h> | 41 | #include <video/omap-panel-nokia-dsi.h> |
44 | #include <video/omap-panel-picodlp.h> | 42 | #include <video/omap-panel-picodlp.h> |
45 | #include <linux/wl12xx.h> | 43 | #include <linux/wl12xx.h> |
46 | #include <linux/platform_data/omap-abe-twl6040.h> | 44 | #include <linux/platform_data/omap-abe-twl6040.h> |
47 | 45 | ||
46 | #include "soc.h" | ||
48 | #include "mux.h" | 47 | #include "mux.h" |
49 | #include "hsmmc.h" | 48 | #include "hsmmc.h" |
50 | #include "control.h" | 49 | #include "control.h" |
@@ -544,7 +543,14 @@ static struct twl6040_platform_data twl6040_data = { | |||
544 | .codec = &twl6040_codec, | 543 | .codec = &twl6040_codec, |
545 | .vibra = &twl6040_vibra, | 544 | .vibra = &twl6040_vibra, |
546 | .audpwron_gpio = 127, | 545 | .audpwron_gpio = 127, |
547 | .irq_base = TWL6040_CODEC_IRQ_BASE, | 546 | }; |
547 | |||
548 | static struct i2c_board_info __initdata sdp4430_i2c_1_boardinfo[] = { | ||
549 | { | ||
550 | I2C_BOARD_INFO("twl6040", 0x4b), | ||
551 | .irq = 119 + OMAP44XX_IRQ_GIC_START, | ||
552 | .platform_data = &twl6040_data, | ||
553 | }, | ||
548 | }; | 554 | }; |
549 | 555 | ||
550 | static struct twl4030_platform_data sdp4430_twldata = { | 556 | static struct twl4030_platform_data sdp4430_twldata = { |
@@ -580,8 +586,8 @@ static int __init omap4_i2c_init(void) | |||
580 | TWL_COMMON_REGULATOR_CLK32KG | | 586 | TWL_COMMON_REGULATOR_CLK32KG | |
581 | TWL_COMMON_REGULATOR_V1V8 | | 587 | TWL_COMMON_REGULATOR_V1V8 | |
582 | TWL_COMMON_REGULATOR_V2V1); | 588 | TWL_COMMON_REGULATOR_V2V1); |
583 | omap4_pmic_init("twl6030", &sdp4430_twldata, | 589 | omap4_pmic_init("twl6030", &sdp4430_twldata, sdp4430_i2c_1_boardinfo, |
584 | &twl6040_data, OMAP44XX_IRQ_SYS_2N); | 590 | ARRAY_SIZE(sdp4430_i2c_1_boardinfo)); |
585 | omap_register_i2c_bus(2, 400, NULL, 0); | 591 | omap_register_i2c_bus(2, 400, NULL, 0); |
586 | omap_register_i2c_bus(3, 400, sdp4430_i2c_3_boardinfo, | 592 | omap_register_i2c_bus(3, 400, sdp4430_i2c_3_boardinfo, |
587 | ARRAY_SIZE(sdp4430_i2c_3_boardinfo)); | 593 | ARRAY_SIZE(sdp4430_i2c_3_boardinfo)); |
@@ -755,6 +761,32 @@ static struct omap_board_mux board_mux[] __initdata = { | |||
755 | /* NIRQ2 for twl6040 */ | 761 | /* NIRQ2 for twl6040 */ |
756 | OMAP4_MUX(SYS_NIRQ2, OMAP_MUX_MODE0 | | 762 | OMAP4_MUX(SYS_NIRQ2, OMAP_MUX_MODE0 | |
757 | OMAP_PIN_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE), | 763 | OMAP_PIN_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE), |
764 | /* GPIO_127 for twl6040 */ | ||
765 | OMAP4_MUX(HDQ_SIO, OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT), | ||
766 | /* McPDM */ | ||
767 | OMAP4_MUX(ABE_PDM_UL_DATA, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), | ||
768 | OMAP4_MUX(ABE_PDM_DL_DATA, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), | ||
769 | OMAP4_MUX(ABE_PDM_FRAME, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP), | ||
770 | OMAP4_MUX(ABE_PDM_LB_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), | ||
771 | OMAP4_MUX(ABE_CLKS, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), | ||
772 | /* DMIC */ | ||
773 | OMAP4_MUX(ABE_DMIC_CLK1, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT), | ||
774 | OMAP4_MUX(ABE_DMIC_DIN1, OMAP_MUX_MODE0 | OMAP_PIN_INPUT), | ||
775 | OMAP4_MUX(ABE_DMIC_DIN2, OMAP_MUX_MODE0 | OMAP_PIN_INPUT), | ||
776 | OMAP4_MUX(ABE_DMIC_DIN3, OMAP_MUX_MODE0 | OMAP_PIN_INPUT), | ||
777 | /* McBSP1 */ | ||
778 | OMAP4_MUX(ABE_MCBSP1_CLKX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT), | ||
779 | OMAP4_MUX(ABE_MCBSP1_DR, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), | ||
780 | OMAP4_MUX(ABE_MCBSP1_DX, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT | | ||
781 | OMAP_PULL_ENA), | ||
782 | OMAP4_MUX(ABE_MCBSP1_FSX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT), | ||
783 | /* McBSP2 */ | ||
784 | OMAP4_MUX(ABE_MCBSP2_CLKX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT), | ||
785 | OMAP4_MUX(ABE_MCBSP2_DR, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), | ||
786 | OMAP4_MUX(ABE_MCBSP2_DX, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT | | ||
787 | OMAP_PULL_ENA), | ||
788 | OMAP4_MUX(ABE_MCBSP2_FSX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT), | ||
789 | |||
758 | { .reg_offset = OMAP_MUX_TERMINATOR }, | 790 | { .reg_offset = OMAP_MUX_TERMINATOR }, |
759 | }; | 791 | }; |
760 | 792 | ||
@@ -840,6 +872,7 @@ static void __init omap_4430sdp_init(void) | |||
840 | MACHINE_START(OMAP_4430SDP, "OMAP4430 4430SDP board") | 872 | MACHINE_START(OMAP_4430SDP, "OMAP4430 4430SDP board") |
841 | /* Maintainer: Santosh Shilimkar - Texas Instruments Inc */ | 873 | /* Maintainer: Santosh Shilimkar - Texas Instruments Inc */ |
842 | .atag_offset = 0x100, | 874 | .atag_offset = 0x100, |
875 | .smp = smp_ops(omap4_smp_ops), | ||
843 | .reserve = omap_reserve, | 876 | .reserve = omap_reserve, |
844 | .map_io = omap4_map_io, | 877 | .map_io = omap4_map_io, |
845 | .init_early = omap4430_init_early, | 878 | .init_early = omap4430_init_early, |
diff --git a/arch/arm/mach-omap2/board-am3517crane.c b/arch/arm/mach-omap2/board-am3517crane.c index 92432c28673d..318feadb1d6e 100644 --- a/arch/arm/mach-omap2/board-am3517crane.c +++ b/arch/arm/mach-omap2/board-am3517crane.c | |||
@@ -21,12 +21,10 @@ | |||
21 | #include <linux/init.h> | 21 | #include <linux/init.h> |
22 | #include <linux/gpio.h> | 22 | #include <linux/gpio.h> |
23 | 23 | ||
24 | #include <mach/hardware.h> | ||
25 | #include <asm/mach-types.h> | 24 | #include <asm/mach-types.h> |
26 | #include <asm/mach/arch.h> | 25 | #include <asm/mach/arch.h> |
27 | #include <asm/mach/map.h> | 26 | #include <asm/mach/map.h> |
28 | 27 | ||
29 | #include <plat/board.h> | ||
30 | #include "common.h" | 28 | #include "common.h" |
31 | #include <plat/usb.h> | 29 | #include <plat/usb.h> |
32 | 30 | ||
@@ -37,11 +35,6 @@ | |||
37 | #define GPIO_USB_POWER 35 | 35 | #define GPIO_USB_POWER 35 |
38 | #define GPIO_USB_NRESET 38 | 36 | #define GPIO_USB_NRESET 38 |
39 | 37 | ||
40 | |||
41 | /* Board initialization */ | ||
42 | static struct omap_board_config_kernel am3517_crane_config[] __initdata = { | ||
43 | }; | ||
44 | |||
45 | #ifdef CONFIG_OMAP_MUX | 38 | #ifdef CONFIG_OMAP_MUX |
46 | static struct omap_board_mux board_mux[] __initdata = { | 39 | static struct omap_board_mux board_mux[] __initdata = { |
47 | { .reg_offset = OMAP_MUX_TERMINATOR }, | 40 | { .reg_offset = OMAP_MUX_TERMINATOR }, |
@@ -67,9 +60,6 @@ static void __init am3517_crane_init(void) | |||
67 | omap_serial_init(); | 60 | omap_serial_init(); |
68 | omap_sdrc_init(NULL, NULL); | 61 | omap_sdrc_init(NULL, NULL); |
69 | 62 | ||
70 | omap_board_config = am3517_crane_config; | ||
71 | omap_board_config_size = ARRAY_SIZE(am3517_crane_config); | ||
72 | |||
73 | /* Configure GPIO for EHCI port */ | 63 | /* Configure GPIO for EHCI port */ |
74 | if (omap_mux_init_gpio(GPIO_USB_NRESET, OMAP_PIN_OUTPUT)) { | 64 | if (omap_mux_init_gpio(GPIO_USB_NRESET, OMAP_PIN_OUTPUT)) { |
75 | pr_err("Can not configure mux for GPIO_USB_NRESET %d\n", | 65 | pr_err("Can not configure mux for GPIO_USB_NRESET %d\n", |
diff --git a/arch/arm/mach-omap2/board-am3517evm.c b/arch/arm/mach-omap2/board-am3517evm.c index 18f601096ce1..e16289755f2e 100644 --- a/arch/arm/mach-omap2/board-am3517evm.c +++ b/arch/arm/mach-omap2/board-am3517evm.c | |||
@@ -25,14 +25,13 @@ | |||
25 | #include <linux/can/platform/ti_hecc.h> | 25 | #include <linux/can/platform/ti_hecc.h> |
26 | #include <linux/davinci_emac.h> | 26 | #include <linux/davinci_emac.h> |
27 | #include <linux/mmc/host.h> | 27 | #include <linux/mmc/host.h> |
28 | #include <linux/platform_data/gpio-omap.h> | ||
28 | 29 | ||
29 | #include <mach/hardware.h> | 30 | #include "am35xx.h" |
30 | #include <mach/am35xx.h> | ||
31 | #include <asm/mach-types.h> | 31 | #include <asm/mach-types.h> |
32 | #include <asm/mach/arch.h> | 32 | #include <asm/mach/arch.h> |
33 | #include <asm/mach/map.h> | 33 | #include <asm/mach/map.h> |
34 | 34 | ||
35 | #include <plat/board.h> | ||
36 | #include "common.h" | 35 | #include "common.h" |
37 | #include <plat/usb.h> | 36 | #include <plat/usb.h> |
38 | #include <video/omapdss.h> | 37 | #include <video/omapdss.h> |
@@ -264,6 +263,16 @@ static __init void am3517_evm_musb_init(void) | |||
264 | usb_musb_init(&musb_board_data); | 263 | usb_musb_init(&musb_board_data); |
265 | } | 264 | } |
266 | 265 | ||
266 | static __init void am3517_evm_mcbsp1_init(void) | ||
267 | { | ||
268 | u32 devconf0; | ||
269 | |||
270 | /* McBSP1 CLKR/FSR signal to be connected to CLKX/FSX pin */ | ||
271 | devconf0 = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0); | ||
272 | devconf0 |= OMAP2_MCBSP1_CLKR_MASK | OMAP2_MCBSP1_FSR_MASK; | ||
273 | omap_ctrl_writel(devconf0, OMAP2_CONTROL_DEVCONF0); | ||
274 | } | ||
275 | |||
267 | static const struct usbhs_omap_board_data usbhs_bdata __initconst = { | 276 | static const struct usbhs_omap_board_data usbhs_bdata __initconst = { |
268 | .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY, | 277 | .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY, |
269 | #if defined(CONFIG_PANEL_SHARP_LQ043T1DG01) || \ | 278 | #if defined(CONFIG_PANEL_SHARP_LQ043T1DG01) || \ |
@@ -296,8 +305,7 @@ static struct resource am3517_hecc_resources[] = { | |||
296 | .flags = IORESOURCE_MEM, | 305 | .flags = IORESOURCE_MEM, |
297 | }, | 306 | }, |
298 | { | 307 | { |
299 | .start = INT_35XX_HECC0_IRQ, | 308 | .start = 24 + OMAP_INTC_START, |
300 | .end = INT_35XX_HECC0_IRQ, | ||
301 | .flags = IORESOURCE_IRQ, | 309 | .flags = IORESOURCE_IRQ, |
302 | }, | 310 | }, |
303 | }; | 311 | }; |
@@ -324,9 +332,6 @@ static void am3517_evm_hecc_init(struct ti_hecc_platform_data *pdata) | |||
324 | platform_device_register(&am3517_hecc_device); | 332 | platform_device_register(&am3517_hecc_device); |
325 | } | 333 | } |
326 | 334 | ||
327 | static struct omap_board_config_kernel am3517_evm_config[] __initdata = { | ||
328 | }; | ||
329 | |||
330 | static struct omap2_hsmmc_info mmc[] = { | 335 | static struct omap2_hsmmc_info mmc[] = { |
331 | { | 336 | { |
332 | .mmc = 1, | 337 | .mmc = 1, |
@@ -346,8 +351,6 @@ static struct omap2_hsmmc_info mmc[] = { | |||
346 | 351 | ||
347 | static void __init am3517_evm_init(void) | 352 | static void __init am3517_evm_init(void) |
348 | { | 353 | { |
349 | omap_board_config = am3517_evm_config; | ||
350 | omap_board_config_size = ARRAY_SIZE(am3517_evm_config); | ||
351 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); | 354 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); |
352 | 355 | ||
353 | am3517_evm_i2c_init(); | 356 | am3517_evm_i2c_init(); |
@@ -373,6 +376,9 @@ static void __init am3517_evm_init(void) | |||
373 | /* MUSB */ | 376 | /* MUSB */ |
374 | am3517_evm_musb_init(); | 377 | am3517_evm_musb_init(); |
375 | 378 | ||
379 | /* McBSP1 */ | ||
380 | am3517_evm_mcbsp1_init(); | ||
381 | |||
376 | /* MMC init function */ | 382 | /* MMC init function */ |
377 | omap_hsmmc_init(mmc); | 383 | omap_hsmmc_init(mmc); |
378 | } | 384 | } |
diff --git a/arch/arm/mach-omap2/board-apollon.c b/arch/arm/mach-omap2/board-apollon.c index e5fa46bfde2f..cea3abace815 100644 --- a/arch/arm/mach-omap2/board-apollon.c +++ b/arch/arm/mach-omap2/board-apollon.c | |||
@@ -29,13 +29,11 @@ | |||
29 | #include <linux/smc91x.h> | 29 | #include <linux/smc91x.h> |
30 | #include <linux/gpio.h> | 30 | #include <linux/gpio.h> |
31 | 31 | ||
32 | #include <mach/hardware.h> | ||
33 | #include <asm/mach-types.h> | 32 | #include <asm/mach-types.h> |
34 | #include <asm/mach/arch.h> | 33 | #include <asm/mach/arch.h> |
35 | #include <asm/mach/flash.h> | 34 | #include <asm/mach/flash.h> |
36 | 35 | ||
37 | #include <plat/led.h> | 36 | #include <plat/led.h> |
38 | #include <plat/board.h> | ||
39 | #include "common.h" | 37 | #include "common.h" |
40 | #include <plat/gpmc.h> | 38 | #include <plat/gpmc.h> |
41 | 39 | ||
@@ -204,7 +202,7 @@ static inline void __init apollon_init_smc91x(void) | |||
204 | return; | 202 | return; |
205 | } | 203 | } |
206 | 204 | ||
207 | clk_enable(gpmc_fck); | 205 | clk_prepare_enable(gpmc_fck); |
208 | rate = clk_get_rate(gpmc_fck); | 206 | rate = clk_get_rate(gpmc_fck); |
209 | 207 | ||
210 | eth_cs = APOLLON_ETH_CS; | 208 | eth_cs = APOLLON_ETH_CS; |
@@ -248,7 +246,7 @@ static inline void __init apollon_init_smc91x(void) | |||
248 | gpmc_cs_free(APOLLON_ETH_CS); | 246 | gpmc_cs_free(APOLLON_ETH_CS); |
249 | } | 247 | } |
250 | out: | 248 | out: |
251 | clk_disable(gpmc_fck); | 249 | clk_disable_unprepare(gpmc_fck); |
252 | clk_put(gpmc_fck); | 250 | clk_put(gpmc_fck); |
253 | } | 251 | } |
254 | 252 | ||
diff --git a/arch/arm/mach-omap2/board-cm-t35.c b/arch/arm/mach-omap2/board-cm-t35.c index 97d719047af3..376d26eb601c 100644 --- a/arch/arm/mach-omap2/board-cm-t35.c +++ b/arch/arm/mach-omap2/board-cm-t35.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <linux/input/matrix_keypad.h> | 23 | #include <linux/input/matrix_keypad.h> |
24 | #include <linux/delay.h> | 24 | #include <linux/delay.h> |
25 | #include <linux/gpio.h> | 25 | #include <linux/gpio.h> |
26 | #include <linux/platform_data/gpio-omap.h> | ||
26 | 27 | ||
27 | #include <linux/i2c/at24.h> | 28 | #include <linux/i2c/at24.h> |
28 | #include <linux/i2c/twl.h> | 29 | #include <linux/i2c/twl.h> |
@@ -37,15 +38,14 @@ | |||
37 | #include <asm/mach/arch.h> | 38 | #include <asm/mach/arch.h> |
38 | #include <asm/mach/map.h> | 39 | #include <asm/mach/map.h> |
39 | 40 | ||
40 | #include <plat/board.h> | ||
41 | #include "common.h" | 41 | #include "common.h" |
42 | #include <plat/nand.h> | 42 | #include <linux/platform_data/mtd-nand-omap2.h> |
43 | #include <plat/gpmc.h> | 43 | #include <plat/gpmc.h> |
44 | #include <plat/usb.h> | 44 | #include <plat/usb.h> |
45 | #include <video/omapdss.h> | 45 | #include <video/omapdss.h> |
46 | #include <video/omap-panel-generic-dpi.h> | 46 | #include <video/omap-panel-generic-dpi.h> |
47 | #include <video/omap-panel-tfp410.h> | 47 | #include <video/omap-panel-tfp410.h> |
48 | #include <plat/mcspi.h> | 48 | #include <linux/platform_data/spi-omap2-mcspi.h> |
49 | 49 | ||
50 | #include <mach/hardware.h> | 50 | #include <mach/hardware.h> |
51 | 51 | ||
@@ -64,7 +64,7 @@ | |||
64 | 64 | ||
65 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) | 65 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) |
66 | #include <linux/smsc911x.h> | 66 | #include <linux/smsc911x.h> |
67 | #include <plat/gpmc-smsc911x.h> | 67 | #include "gpmc-smsc911x.h" |
68 | 68 | ||
69 | static struct omap_smsc911x_platform_data cm_t35_smsc911x_cfg = { | 69 | static struct omap_smsc911x_platform_data cm_t35_smsc911x_cfg = { |
70 | .id = 0, | 70 | .id = 0, |
@@ -470,9 +470,6 @@ static int cm_t35_twl_gpio_setup(struct device *dev, unsigned gpio, | |||
470 | } | 470 | } |
471 | 471 | ||
472 | static struct twl4030_gpio_platform_data cm_t35_gpio_data = { | 472 | static struct twl4030_gpio_platform_data cm_t35_gpio_data = { |
473 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
474 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
475 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
476 | .setup = cm_t35_twl_gpio_setup, | 473 | .setup = cm_t35_twl_gpio_setup, |
477 | }; | 474 | }; |
478 | 475 | ||
@@ -714,13 +711,8 @@ static inline void cm_t35_init_mux(void) {} | |||
714 | static inline void cm_t3730_init_mux(void) {} | 711 | static inline void cm_t3730_init_mux(void) {} |
715 | #endif | 712 | #endif |
716 | 713 | ||
717 | static struct omap_board_config_kernel cm_t35_config[] __initdata = { | ||
718 | }; | ||
719 | |||
720 | static void __init cm_t3x_common_init(void) | 714 | static void __init cm_t3x_common_init(void) |
721 | { | 715 | { |
722 | omap_board_config = cm_t35_config; | ||
723 | omap_board_config_size = ARRAY_SIZE(cm_t35_config); | ||
724 | omap3_mux_init(board_mux, OMAP_PACKAGE_CUS); | 716 | omap3_mux_init(board_mux, OMAP_PACKAGE_CUS); |
725 | omap_serial_init(); | 717 | omap_serial_init(); |
726 | omap_sdrc_init(mt46h32m32lf6_sdrc_params, | 718 | omap_sdrc_init(mt46h32m32lf6_sdrc_params, |
@@ -731,6 +723,7 @@ static void __init cm_t3x_common_init(void) | |||
731 | cm_t35_init_ethernet(); | 723 | cm_t35_init_ethernet(); |
732 | cm_t35_init_led(); | 724 | cm_t35_init_led(); |
733 | cm_t35_init_display(); | 725 | cm_t35_init_display(); |
726 | omap_twl4030_audio_init("cm-t3x"); | ||
734 | 727 | ||
735 | usb_musb_init(NULL); | 728 | usb_musb_init(NULL); |
736 | cm_t35_init_usbh(); | 729 | cm_t35_init_usbh(); |
diff --git a/arch/arm/mach-omap2/board-cm-t3517.c b/arch/arm/mach-omap2/board-cm-t3517.c index a33ad4641d9a..59c0a45f75b0 100644 --- a/arch/arm/mach-omap2/board-cm-t3517.c +++ b/arch/arm/mach-omap2/board-cm-t3517.c | |||
@@ -38,13 +38,12 @@ | |||
38 | #include <asm/mach/arch.h> | 38 | #include <asm/mach/arch.h> |
39 | #include <asm/mach/map.h> | 39 | #include <asm/mach/map.h> |
40 | 40 | ||
41 | #include <plat/board.h> | ||
42 | #include "common.h" | 41 | #include "common.h" |
43 | #include <plat/usb.h> | 42 | #include <plat/usb.h> |
44 | #include <plat/nand.h> | 43 | #include <linux/platform_data/mtd-nand-omap2.h> |
45 | #include <plat/gpmc.h> | 44 | #include <plat/gpmc.h> |
46 | 45 | ||
47 | #include <mach/am35xx.h> | 46 | #include "am35xx.h" |
48 | 47 | ||
49 | #include "mux.h" | 48 | #include "mux.h" |
50 | #include "control.h" | 49 | #include "control.h" |
@@ -90,8 +89,7 @@ static struct resource cm_t3517_hecc_resources[] = { | |||
90 | .flags = IORESOURCE_MEM, | 89 | .flags = IORESOURCE_MEM, |
91 | }, | 90 | }, |
92 | { | 91 | { |
93 | .start = INT_35XX_HECC0_IRQ, | 92 | .start = 24 + OMAP_INTC_START, |
94 | .end = INT_35XX_HECC0_IRQ, | ||
95 | .flags = IORESOURCE_IRQ, | 93 | .flags = IORESOURCE_IRQ, |
96 | }, | 94 | }, |
97 | }; | 95 | }; |
@@ -249,9 +247,6 @@ static void __init cm_t3517_init_nand(void) | |||
249 | static inline void cm_t3517_init_nand(void) {} | 247 | static inline void cm_t3517_init_nand(void) {} |
250 | #endif | 248 | #endif |
251 | 249 | ||
252 | static struct omap_board_config_kernel cm_t3517_config[] __initdata = { | ||
253 | }; | ||
254 | |||
255 | #ifdef CONFIG_OMAP_MUX | 250 | #ifdef CONFIG_OMAP_MUX |
256 | static struct omap_board_mux board_mux[] __initdata = { | 251 | static struct omap_board_mux board_mux[] __initdata = { |
257 | /* GPIO186 - Green LED */ | 252 | /* GPIO186 - Green LED */ |
@@ -285,8 +280,6 @@ static void __init cm_t3517_init(void) | |||
285 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); | 280 | omap3_mux_init(board_mux, OMAP_PACKAGE_CBB); |
286 | omap_serial_init(); | 281 | omap_serial_init(); |
287 | omap_sdrc_init(NULL, NULL); | 282 | omap_sdrc_init(NULL, NULL); |
288 | omap_board_config = cm_t3517_config; | ||
289 | omap_board_config_size = ARRAY_SIZE(cm_t3517_config); | ||
290 | cm_t3517_init_leds(); | 283 | cm_t3517_init_leds(); |
291 | cm_t3517_init_nand(); | 284 | cm_t3517_init_nand(); |
292 | cm_t3517_init_rtc(); | 285 | cm_t3517_init_rtc(); |
diff --git a/arch/arm/mach-omap2/board-devkit8000.c b/arch/arm/mach-omap2/board-devkit8000.c index 6567c1cd5572..1fd161e934c7 100644 --- a/arch/arm/mach-omap2/board-devkit8000.c +++ b/arch/arm/mach-omap2/board-devkit8000.c | |||
@@ -32,31 +32,27 @@ | |||
32 | 32 | ||
33 | #include <linux/regulator/machine.h> | 33 | #include <linux/regulator/machine.h> |
34 | #include <linux/i2c/twl.h> | 34 | #include <linux/i2c/twl.h> |
35 | 35 | #include "id.h" | |
36 | #include <mach/hardware.h> | ||
37 | #include <mach/id.h> | ||
38 | #include <asm/mach-types.h> | 36 | #include <asm/mach-types.h> |
39 | #include <asm/mach/arch.h> | 37 | #include <asm/mach/arch.h> |
40 | #include <asm/mach/map.h> | 38 | #include <asm/mach/map.h> |
41 | #include <asm/mach/flash.h> | 39 | #include <asm/mach/flash.h> |
42 | 40 | ||
43 | #include <plat/board.h> | ||
44 | #include "common.h" | 41 | #include "common.h" |
45 | #include <plat/gpmc.h> | 42 | #include <plat/gpmc.h> |
46 | #include <plat/nand.h> | 43 | #include <linux/platform_data/mtd-nand-omap2.h> |
47 | #include <plat/usb.h> | 44 | #include <plat/usb.h> |
48 | #include <video/omapdss.h> | 45 | #include <video/omapdss.h> |
49 | #include <video/omap-panel-generic-dpi.h> | 46 | #include <video/omap-panel-generic-dpi.h> |
50 | #include <video/omap-panel-tfp410.h> | 47 | #include <video/omap-panel-tfp410.h> |
51 | 48 | ||
52 | #include <plat/mcspi.h> | 49 | #include <linux/platform_data/spi-omap2-mcspi.h> |
53 | #include <linux/input/matrix_keypad.h> | 50 | #include <linux/input/matrix_keypad.h> |
54 | #include <linux/spi/spi.h> | 51 | #include <linux/spi/spi.h> |
55 | #include <linux/dm9000.h> | 52 | #include <linux/dm9000.h> |
56 | #include <linux/interrupt.h> | 53 | #include <linux/interrupt.h> |
57 | 54 | ||
58 | #include "sdram-micron-mt46h32m32lf-6.h" | 55 | #include "sdram-micron-mt46h32m32lf-6.h" |
59 | |||
60 | #include "mux.h" | 56 | #include "mux.h" |
61 | #include "hsmmc.h" | 57 | #include "hsmmc.h" |
62 | #include "common-board-devices.h" | 58 | #include "common-board-devices.h" |
@@ -236,9 +232,6 @@ static int devkit8000_twl_gpio_setup(struct device *dev, | |||
236 | } | 232 | } |
237 | 233 | ||
238 | static struct twl4030_gpio_platform_data devkit8000_gpio_data = { | 234 | static struct twl4030_gpio_platform_data devkit8000_gpio_data = { |
239 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
240 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
241 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
242 | .use_leds = true, | 235 | .use_leds = true, |
243 | .pulldowns = BIT(1) | BIT(2) | BIT(6) | BIT(8) | BIT(13) | 236 | .pulldowns = BIT(1) | BIT(2) | BIT(6) | BIT(8) | BIT(13) |
244 | | BIT(15) | BIT(16) | BIT(17), | 237 | | BIT(15) | BIT(16) | BIT(17), |
@@ -630,6 +623,7 @@ static void __init devkit8000_init(void) | |||
630 | usbhs_init(&usbhs_bdata); | 623 | usbhs_init(&usbhs_bdata); |
631 | omap_nand_flash_init(NAND_BUSWIDTH_16, devkit8000_nand_partitions, | 624 | omap_nand_flash_init(NAND_BUSWIDTH_16, devkit8000_nand_partitions, |
632 | ARRAY_SIZE(devkit8000_nand_partitions)); | 625 | ARRAY_SIZE(devkit8000_nand_partitions)); |
626 | omap_twl4030_audio_init("omap3beagle"); | ||
633 | 627 | ||
634 | /* Ensure SDRC pins are mux'd for self-refresh */ | 628 | /* Ensure SDRC pins are mux'd for self-refresh */ |
635 | omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT); | 629 | omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT); |
diff --git a/arch/arm/mach-omap2/board-flash.c b/arch/arm/mach-omap2/board-flash.c index 53c39d239d6e..e642acf9cad0 100644 --- a/arch/arm/mach-omap2/board-flash.c +++ b/arch/arm/mach-omap2/board-flash.c | |||
@@ -16,13 +16,14 @@ | |||
16 | #include <linux/platform_device.h> | 16 | #include <linux/platform_device.h> |
17 | #include <linux/mtd/physmap.h> | 17 | #include <linux/mtd/physmap.h> |
18 | #include <linux/io.h> | 18 | #include <linux/io.h> |
19 | #include <plat/irqs.h> | ||
20 | 19 | ||
20 | #include <plat/cpu.h> | ||
21 | #include <plat/gpmc.h> | 21 | #include <plat/gpmc.h> |
22 | #include <plat/nand.h> | 22 | #include <linux/platform_data/mtd-nand-omap2.h> |
23 | #include <plat/onenand.h> | 23 | #include <linux/platform_data/mtd-onenand-omap2.h> |
24 | #include <plat/tc.h> | 24 | #include <plat/tc.h> |
25 | 25 | ||
26 | #include "common.h" | ||
26 | #include "board-flash.h" | 27 | #include "board-flash.h" |
27 | 28 | ||
28 | #define REG_FPGA_REV 0x10 | 29 | #define REG_FPGA_REV 0x10 |
@@ -140,7 +141,6 @@ __init board_nand_init(struct mtd_partition *nand_parts, | |||
140 | board_nand_data.devsize = nand_type; | 141 | board_nand_data.devsize = nand_type; |
141 | 142 | ||
142 | board_nand_data.ecc_opt = OMAP_ECC_HAMMING_CODE_DEFAULT; | 143 | board_nand_data.ecc_opt = OMAP_ECC_HAMMING_CODE_DEFAULT; |
143 | board_nand_data.gpmc_irq = OMAP_GPMC_IRQ_BASE + cs; | ||
144 | gpmc_nand_init(&board_nand_data); | 144 | gpmc_nand_init(&board_nand_data); |
145 | } | 145 | } |
146 | #endif /* CONFIG_MTD_NAND_OMAP2 || CONFIG_MTD_NAND_OMAP2_MODULE */ | 146 | #endif /* CONFIG_MTD_NAND_OMAP2 || CONFIG_MTD_NAND_OMAP2_MODULE */ |
@@ -218,7 +218,7 @@ void __init board_flash_init(struct flash_partitions partition_info[], | |||
218 | if (onenandcs > GPMC_CS_NUM) | 218 | if (onenandcs > GPMC_CS_NUM) |
219 | onenandcs = cs; | 219 | onenandcs = cs; |
220 | break; | 220 | break; |
221 | }; | 221 | } |
222 | cs++; | 222 | cs++; |
223 | } | 223 | } |
224 | 224 | ||
diff --git a/arch/arm/mach-omap2/board-generic.c b/arch/arm/mach-omap2/board-generic.c index 6f93a20536ea..601ecdfb1cf9 100644 --- a/arch/arm/mach-omap2/board-generic.c +++ b/arch/arm/mach-omap2/board-generic.c | |||
@@ -16,11 +16,9 @@ | |||
16 | #include <linux/of_platform.h> | 16 | #include <linux/of_platform.h> |
17 | #include <linux/irqdomain.h> | 17 | #include <linux/irqdomain.h> |
18 | 18 | ||
19 | #include <mach/hardware.h> | ||
20 | #include <asm/hardware/gic.h> | 19 | #include <asm/hardware/gic.h> |
21 | #include <asm/mach/arch.h> | 20 | #include <asm/mach/arch.h> |
22 | 21 | ||
23 | #include <plat/board.h> | ||
24 | #include "common.h" | 22 | #include "common.h" |
25 | #include "common-board-devices.h" | 23 | #include "common-board-devices.h" |
26 | 24 | ||
@@ -127,6 +125,7 @@ static const char *omap4_boards_compat[] __initdata = { | |||
127 | 125 | ||
128 | DT_MACHINE_START(OMAP4_DT, "Generic OMAP4 (Flattened Device Tree)") | 126 | DT_MACHINE_START(OMAP4_DT, "Generic OMAP4 (Flattened Device Tree)") |
129 | .reserve = omap_reserve, | 127 | .reserve = omap_reserve, |
128 | .smp = smp_ops(omap4_smp_ops), | ||
130 | .map_io = omap4_map_io, | 129 | .map_io = omap4_map_io, |
131 | .init_early = omap4430_init_early, | 130 | .init_early = omap4430_init_early, |
132 | .init_irq = omap_gic_of_init, | 131 | .init_irq = omap_gic_of_init, |
@@ -147,6 +146,7 @@ static const char *omap5_boards_compat[] __initdata = { | |||
147 | 146 | ||
148 | DT_MACHINE_START(OMAP5_DT, "Generic OMAP5 (Flattened Device Tree)") | 147 | DT_MACHINE_START(OMAP5_DT, "Generic OMAP5 (Flattened Device Tree)") |
149 | .reserve = omap_reserve, | 148 | .reserve = omap_reserve, |
149 | .smp = smp_ops(omap4_smp_ops), | ||
150 | .map_io = omap5_map_io, | 150 | .map_io = omap5_map_io, |
151 | .init_early = omap5_init_early, | 151 | .init_early = omap5_init_early, |
152 | .init_irq = omap_gic_of_init, | 152 | .init_irq = omap_gic_of_init, |
diff --git a/arch/arm/mach-omap2/board-h4.c b/arch/arm/mach-omap2/board-h4.c index ace20482e3e1..8d04bf851af4 100644 --- a/arch/arm/mach-omap2/board-h4.c +++ b/arch/arm/mach-omap2/board-h4.c | |||
@@ -27,20 +27,19 @@ | |||
27 | #include <linux/io.h> | 27 | #include <linux/io.h> |
28 | #include <linux/input/matrix_keypad.h> | 28 | #include <linux/input/matrix_keypad.h> |
29 | 29 | ||
30 | #include <mach/hardware.h> | ||
31 | #include <asm/mach-types.h> | 30 | #include <asm/mach-types.h> |
32 | #include <asm/mach/arch.h> | 31 | #include <asm/mach/arch.h> |
33 | #include <asm/mach/map.h> | 32 | #include <asm/mach/map.h> |
34 | 33 | ||
35 | #include <plat/board.h> | ||
36 | #include "common.h" | ||
37 | #include <plat/menelaus.h> | 34 | #include <plat/menelaus.h> |
38 | #include <plat/dma.h> | 35 | #include <plat/dma.h> |
39 | #include <plat/gpmc.h> | 36 | #include <plat/gpmc.h> |
37 | #include "debug-devices.h" | ||
40 | 38 | ||
41 | #include <video/omapdss.h> | 39 | #include <video/omapdss.h> |
42 | #include <video/omap-panel-generic-dpi.h> | 40 | #include <video/omap-panel-generic-dpi.h> |
43 | 41 | ||
42 | #include "common.h" | ||
44 | #include "mux.h" | 43 | #include "mux.h" |
45 | #include "control.h" | 44 | #include "control.h" |
46 | 45 | ||
@@ -266,9 +265,9 @@ static inline void __init h4_init_debug(void) | |||
266 | return; | 265 | return; |
267 | } | 266 | } |
268 | 267 | ||
269 | clk_enable(gpmc_fck); | 268 | clk_prepare_enable(gpmc_fck); |
270 | rate = clk_get_rate(gpmc_fck); | 269 | rate = clk_get_rate(gpmc_fck); |
271 | clk_disable(gpmc_fck); | 270 | clk_disable_unprepare(gpmc_fck); |
272 | clk_put(gpmc_fck); | 271 | clk_put(gpmc_fck); |
273 | 272 | ||
274 | if (is_gpmc_muxed()) | 273 | if (is_gpmc_muxed()) |
@@ -312,7 +311,7 @@ static inline void __init h4_init_debug(void) | |||
312 | gpmc_cs_free(eth_cs); | 311 | gpmc_cs_free(eth_cs); |
313 | 312 | ||
314 | out: | 313 | out: |
315 | clk_disable(gpmc_fck); | 314 | clk_disable_unprepare(gpmc_fck); |
316 | clk_put(gpmc_fck); | 315 | clk_put(gpmc_fck); |
317 | } | 316 | } |
318 | 317 | ||
diff --git a/arch/arm/mach-omap2/board-igep0020.c b/arch/arm/mach-omap2/board-igep0020.c index 28214483aaba..48d5e41dfbfa 100644 --- a/arch/arm/mach-omap2/board-igep0020.c +++ b/arch/arm/mach-omap2/board-igep0020.c | |||
@@ -29,13 +29,13 @@ | |||
29 | #include <asm/mach-types.h> | 29 | #include <asm/mach-types.h> |
30 | #include <asm/mach/arch.h> | 30 | #include <asm/mach/arch.h> |
31 | 31 | ||
32 | #include <plat/board.h> | ||
33 | #include "common.h" | 32 | #include "common.h" |
34 | #include <plat/gpmc.h> | 33 | #include <plat/gpmc.h> |
35 | #include <plat/usb.h> | 34 | #include <plat/usb.h> |
35 | |||
36 | #include <video/omapdss.h> | 36 | #include <video/omapdss.h> |
37 | #include <video/omap-panel-tfp410.h> | 37 | #include <video/omap-panel-tfp410.h> |
38 | #include <plat/onenand.h> | 38 | #include <linux/platform_data/mtd-onenand-omap2.h> |
39 | 39 | ||
40 | #include "mux.h" | 40 | #include "mux.h" |
41 | #include "hsmmc.h" | 41 | #include "hsmmc.h" |
@@ -192,7 +192,7 @@ static void __init igep_flash_init(void) {} | |||
192 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) | 192 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) |
193 | 193 | ||
194 | #include <linux/smsc911x.h> | 194 | #include <linux/smsc911x.h> |
195 | #include <plat/gpmc-smsc911x.h> | 195 | #include "gpmc-smsc911x.h" |
196 | 196 | ||
197 | static struct omap_smsc911x_platform_data smsc911x_cfg = { | 197 | static struct omap_smsc911x_platform_data smsc911x_cfg = { |
198 | .cs = IGEP2_SMSC911X_CS, | 198 | .cs = IGEP2_SMSC911X_CS, |
@@ -425,9 +425,6 @@ static int igep_twl_gpio_setup(struct device *dev, | |||
425 | }; | 425 | }; |
426 | 426 | ||
427 | static struct twl4030_gpio_platform_data igep_twl4030_gpio_pdata = { | 427 | static struct twl4030_gpio_platform_data igep_twl4030_gpio_pdata = { |
428 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
429 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
430 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
431 | .use_leds = true, | 428 | .use_leds = true, |
432 | .setup = igep_twl_gpio_setup, | 429 | .setup = igep_twl_gpio_setup, |
433 | }; | 430 | }; |
@@ -628,6 +625,7 @@ static void __init igep_init(void) | |||
628 | 625 | ||
629 | igep_flash_init(); | 626 | igep_flash_init(); |
630 | igep_leds_init(); | 627 | igep_leds_init(); |
628 | omap_twl4030_audio_init("igep2"); | ||
631 | 629 | ||
632 | /* | 630 | /* |
633 | * WLAN-BT combo module from MuRata which has a Marvell WLAN | 631 | * WLAN-BT combo module from MuRata which has a Marvell WLAN |
diff --git a/arch/arm/mach-omap2/board-ldp.c b/arch/arm/mach-omap2/board-ldp.c index ef9e82977499..ee8c3cfb95b3 100644 --- a/arch/arm/mach-omap2/board-ldp.c +++ b/arch/arm/mach-omap2/board-ldp.c | |||
@@ -28,21 +28,17 @@ | |||
28 | #include <linux/io.h> | 28 | #include <linux/io.h> |
29 | #include <linux/smsc911x.h> | 29 | #include <linux/smsc911x.h> |
30 | #include <linux/mmc/host.h> | 30 | #include <linux/mmc/host.h> |
31 | #include <linux/platform_data/spi-omap2-mcspi.h> | ||
31 | 32 | ||
32 | #include <mach/hardware.h> | ||
33 | #include <asm/mach-types.h> | 33 | #include <asm/mach-types.h> |
34 | #include <asm/mach/arch.h> | 34 | #include <asm/mach/arch.h> |
35 | #include <asm/mach/map.h> | 35 | #include <asm/mach/map.h> |
36 | 36 | ||
37 | #include <plat/mcspi.h> | ||
38 | #include <plat/board.h> | ||
39 | #include "common.h" | 37 | #include "common.h" |
40 | #include <plat/gpmc.h> | 38 | #include <plat/gpmc.h> |
41 | #include <mach/board-zoom.h> | 39 | #include <mach/board-zoom.h> |
42 | |||
43 | #include <asm/delay.h> | ||
44 | #include <plat/usb.h> | 40 | #include <plat/usb.h> |
45 | #include <plat/gpmc-smsc911x.h> | 41 | #include "gpmc-smsc911x.h" |
46 | 42 | ||
47 | #include <video/omapdss.h> | 43 | #include <video/omapdss.h> |
48 | #include <video/omap-panel-generic-dpi.h> | 44 | #include <video/omap-panel-generic-dpi.h> |
@@ -275,9 +271,6 @@ static int ldp_twl_gpio_setup(struct device *dev, unsigned gpio, unsigned ngpio) | |||
275 | } | 271 | } |
276 | 272 | ||
277 | static struct twl4030_gpio_platform_data ldp_gpio_data = { | 273 | static struct twl4030_gpio_platform_data ldp_gpio_data = { |
278 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
279 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
280 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
281 | .setup = ldp_twl_gpio_setup, | 274 | .setup = ldp_twl_gpio_setup, |
282 | }; | 275 | }; |
283 | 276 | ||
diff --git a/arch/arm/mach-omap2/board-n8x0.c b/arch/arm/mach-omap2/board-n8x0.c index 677357ff61ac..d95f727ca39a 100644 --- a/arch/arm/mach-omap2/board-n8x0.c +++ b/arch/arm/mach-omap2/board-n8x0.c | |||
@@ -20,19 +20,16 @@ | |||
20 | #include <linux/i2c.h> | 20 | #include <linux/i2c.h> |
21 | #include <linux/spi/spi.h> | 21 | #include <linux/spi/spi.h> |
22 | #include <linux/usb/musb.h> | 22 | #include <linux/usb/musb.h> |
23 | #include <linux/platform_data/spi-omap2-mcspi.h> | ||
24 | #include <linux/platform_data/mtd-onenand-omap2.h> | ||
23 | #include <sound/tlv320aic3x.h> | 25 | #include <sound/tlv320aic3x.h> |
24 | 26 | ||
25 | #include <asm/mach/arch.h> | 27 | #include <asm/mach/arch.h> |
26 | #include <asm/mach-types.h> | 28 | #include <asm/mach-types.h> |
27 | 29 | ||
28 | #include <plat/board.h> | ||
29 | #include "common.h" | 30 | #include "common.h" |
30 | #include <plat/menelaus.h> | 31 | #include <plat/menelaus.h> |
31 | #include <mach/irqs.h> | ||
32 | #include <plat/mcspi.h> | ||
33 | #include <plat/onenand.h> | ||
34 | #include <plat/mmc.h> | 32 | #include <plat/mmc.h> |
35 | #include <plat/serial.h> | ||
36 | 33 | ||
37 | #include "mux.h" | 34 | #include "mux.h" |
38 | 35 | ||
@@ -553,8 +550,8 @@ static int n8x0_auto_sleep_regulators(void) | |||
553 | 550 | ||
554 | ret = menelaus_set_regulator_sleep(1, val); | 551 | ret = menelaus_set_regulator_sleep(1, val); |
555 | if (ret < 0) { | 552 | if (ret < 0) { |
556 | printk(KERN_ERR "Could not set regulators to sleep on " | 553 | pr_err("Could not set regulators to sleep on menelaus: %u\n", |
557 | "menelaus: %u\n", ret); | 554 | ret); |
558 | return ret; | 555 | return ret; |
559 | } | 556 | } |
560 | return 0; | 557 | return 0; |
@@ -566,8 +563,7 @@ static int n8x0_auto_voltage_scale(void) | |||
566 | 563 | ||
567 | ret = menelaus_set_vcore_hw(1400, 1050); | 564 | ret = menelaus_set_vcore_hw(1400, 1050); |
568 | if (ret < 0) { | 565 | if (ret < 0) { |
569 | printk(KERN_ERR "Could not set VCORE voltage on " | 566 | pr_err("Could not set VCORE voltage on menelaus: %u\n", ret); |
570 | "menelaus: %u\n", ret); | ||
571 | return ret; | 567 | return ret; |
572 | } | 568 | } |
573 | return 0; | 569 | return 0; |
@@ -600,7 +596,7 @@ static struct menelaus_platform_data n8x0_menelaus_platform_data __initdata = { | |||
600 | static struct i2c_board_info __initdata n8x0_i2c_board_info_1[] __initdata = { | 596 | static struct i2c_board_info __initdata n8x0_i2c_board_info_1[] __initdata = { |
601 | { | 597 | { |
602 | I2C_BOARD_INFO("menelaus", 0x72), | 598 | I2C_BOARD_INFO("menelaus", 0x72), |
603 | .irq = INT_24XX_SYS_NIRQ, | 599 | .irq = 7 + OMAP_INTC_START, |
604 | .platform_data = &n8x0_menelaus_platform_data, | 600 | .platform_data = &n8x0_menelaus_platform_data, |
605 | }, | 601 | }, |
606 | }; | 602 | }; |
diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index 6202fc76e490..388c431c745a 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c | |||
@@ -33,18 +33,16 @@ | |||
33 | #include <linux/regulator/machine.h> | 33 | #include <linux/regulator/machine.h> |
34 | #include <linux/i2c/twl.h> | 34 | #include <linux/i2c/twl.h> |
35 | 35 | ||
36 | #include <mach/hardware.h> | ||
37 | #include <asm/mach-types.h> | 36 | #include <asm/mach-types.h> |
38 | #include <asm/mach/arch.h> | 37 | #include <asm/mach/arch.h> |
39 | #include <asm/mach/map.h> | 38 | #include <asm/mach/map.h> |
40 | #include <asm/mach/flash.h> | 39 | #include <asm/mach/flash.h> |
41 | 40 | ||
42 | #include <plat/board.h> | ||
43 | #include "common.h" | 41 | #include "common.h" |
44 | #include <video/omapdss.h> | 42 | #include <video/omapdss.h> |
45 | #include <video/omap-panel-tfp410.h> | 43 | #include <video/omap-panel-tfp410.h> |
46 | #include <plat/gpmc.h> | 44 | #include <plat/gpmc.h> |
47 | #include <plat/nand.h> | 45 | #include <linux/platform_data/mtd-nand-omap2.h> |
48 | #include <plat/usb.h> | 46 | #include <plat/usb.h> |
49 | #include <plat/omap_device.h> | 47 | #include <plat/omap_device.h> |
50 | 48 | ||
@@ -297,9 +295,6 @@ static int beagle_twl_gpio_setup(struct device *dev, | |||
297 | } | 295 | } |
298 | 296 | ||
299 | static struct twl4030_gpio_platform_data beagle_gpio_data = { | 297 | static struct twl4030_gpio_platform_data beagle_gpio_data = { |
300 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
301 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
302 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
303 | .use_leds = true, | 298 | .use_leds = true, |
304 | .pullups = BIT(1), | 299 | .pullups = BIT(1), |
305 | .pulldowns = BIT(2) | BIT(6) | BIT(7) | BIT(8) | BIT(13) | 300 | .pulldowns = BIT(2) | BIT(6) | BIT(7) | BIT(8) | BIT(13) |
@@ -466,7 +461,7 @@ static void __init beagle_opp_init(void) | |||
466 | mpu_dev = omap_device_get_by_hwmod_name("mpu"); | 461 | mpu_dev = omap_device_get_by_hwmod_name("mpu"); |
467 | iva_dev = omap_device_get_by_hwmod_name("iva"); | 462 | iva_dev = omap_device_get_by_hwmod_name("iva"); |
468 | 463 | ||
469 | if (!mpu_dev || !iva_dev) { | 464 | if (IS_ERR(mpu_dev) || IS_ERR(iva_dev)) { |
470 | pr_err("%s: Aiee.. no mpu/dsp devices? %p %p\n", | 465 | pr_err("%s: Aiee.. no mpu/dsp devices? %p %p\n", |
471 | __func__, mpu_dev, iva_dev); | 466 | __func__, mpu_dev, iva_dev); |
472 | return; | 467 | return; |
@@ -519,6 +514,7 @@ static void __init omap3_beagle_init(void) | |||
519 | usbhs_init(&usbhs_bdata); | 514 | usbhs_init(&usbhs_bdata); |
520 | omap_nand_flash_init(NAND_BUSWIDTH_16, omap3beagle_nand_partitions, | 515 | omap_nand_flash_init(NAND_BUSWIDTH_16, omap3beagle_nand_partitions, |
521 | ARRAY_SIZE(omap3beagle_nand_partitions)); | 516 | ARRAY_SIZE(omap3beagle_nand_partitions)); |
517 | omap_twl4030_audio_init("omap3beagle"); | ||
522 | 518 | ||
523 | /* Ensure msecure is mux'd to be able to set the RTC. */ | 519 | /* Ensure msecure is mux'd to be able to set the RTC. */ |
524 | omap_mux_init_signal("sys_drm_msecure", OMAP_PIN_OFF_OUTPUT_HIGH); | 520 | omap_mux_init_signal("sys_drm_msecure", OMAP_PIN_OFF_OUTPUT_HIGH); |
diff --git a/arch/arm/mach-omap2/board-omap3evm.c b/arch/arm/mach-omap2/board-omap3evm.c index 0d362e9f9cb9..b9b776b6c954 100644 --- a/arch/arm/mach-omap2/board-omap3evm.c +++ b/arch/arm/mach-omap2/board-omap3evm.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <linux/spi/ads7846.h> | 32 | #include <linux/spi/ads7846.h> |
33 | #include <linux/i2c/twl.h> | 33 | #include <linux/i2c/twl.h> |
34 | #include <linux/usb/otg.h> | 34 | #include <linux/usb/otg.h> |
35 | #include <linux/usb/nop-usb-xceiv.h> | ||
35 | #include <linux/smsc911x.h> | 36 | #include <linux/smsc911x.h> |
36 | 37 | ||
37 | #include <linux/wl12xx.h> | 38 | #include <linux/wl12xx.h> |
@@ -40,16 +41,14 @@ | |||
40 | #include <linux/mmc/host.h> | 41 | #include <linux/mmc/host.h> |
41 | #include <linux/export.h> | 42 | #include <linux/export.h> |
42 | 43 | ||
43 | #include <mach/hardware.h> | ||
44 | #include <asm/mach-types.h> | 44 | #include <asm/mach-types.h> |
45 | #include <asm/mach/arch.h> | 45 | #include <asm/mach/arch.h> |
46 | #include <asm/mach/map.h> | 46 | #include <asm/mach/map.h> |
47 | 47 | ||
48 | #include <plat/board.h> | ||
49 | #include <plat/usb.h> | 48 | #include <plat/usb.h> |
50 | #include <plat/nand.h> | 49 | #include <linux/platform_data/mtd-nand-omap2.h> |
51 | #include "common.h" | 50 | #include "common.h" |
52 | #include <plat/mcspi.h> | 51 | #include <linux/platform_data/spi-omap2-mcspi.h> |
53 | #include <video/omapdss.h> | 52 | #include <video/omapdss.h> |
54 | #include <video/omap-panel-tfp410.h> | 53 | #include <video/omap-panel-tfp410.h> |
55 | 54 | ||
@@ -75,13 +74,24 @@ | |||
75 | #define OMAP3EVM_GEN1_ETHR_GPIO_RST 64 | 74 | #define OMAP3EVM_GEN1_ETHR_GPIO_RST 64 |
76 | #define OMAP3EVM_GEN2_ETHR_GPIO_RST 7 | 75 | #define OMAP3EVM_GEN2_ETHR_GPIO_RST 7 |
77 | 76 | ||
77 | /* | ||
78 | * OMAP35x EVM revision | ||
79 | * Run time detection of EVM revision is done by reading Ethernet | ||
80 | * PHY ID - | ||
81 | * GEN_1 = 0x01150000 | ||
82 | * GEN_2 = 0x92200000 | ||
83 | */ | ||
84 | enum { | ||
85 | OMAP3EVM_BOARD_GEN_1 = 0, /* EVM Rev between A - D */ | ||
86 | OMAP3EVM_BOARD_GEN_2, /* EVM Rev >= Rev E */ | ||
87 | }; | ||
88 | |||
78 | static u8 omap3_evm_version; | 89 | static u8 omap3_evm_version; |
79 | 90 | ||
80 | u8 get_omap3_evm_rev(void) | 91 | static u8 get_omap3_evm_rev(void) |
81 | { | 92 | { |
82 | return omap3_evm_version; | 93 | return omap3_evm_version; |
83 | } | 94 | } |
84 | EXPORT_SYMBOL(get_omap3_evm_rev); | ||
85 | 95 | ||
86 | static void __init omap3_evm_get_revision(void) | 96 | static void __init omap3_evm_get_revision(void) |
87 | { | 97 | { |
@@ -108,7 +118,7 @@ static void __init omap3_evm_get_revision(void) | |||
108 | } | 118 | } |
109 | 119 | ||
110 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) | 120 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) |
111 | #include <plat/gpmc-smsc911x.h> | 121 | #include "gpmc-smsc911x.h" |
112 | 122 | ||
113 | static struct omap_smsc911x_platform_data smsc911x_cfg = { | 123 | static struct omap_smsc911x_platform_data smsc911x_cfg = { |
114 | .cs = OMAP3EVM_SMSC911X_CS, | 124 | .cs = OMAP3EVM_SMSC911X_CS, |
@@ -377,9 +387,6 @@ static int omap3evm_twl_gpio_setup(struct device *dev, | |||
377 | } | 387 | } |
378 | 388 | ||
379 | static struct twl4030_gpio_platform_data omap3evm_gpio_data = { | 389 | static struct twl4030_gpio_platform_data omap3evm_gpio_data = { |
380 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
381 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
382 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
383 | .use_leds = true, | 390 | .use_leds = true, |
384 | .setup = omap3evm_twl_gpio_setup, | 391 | .setup = omap3evm_twl_gpio_setup, |
385 | }; | 392 | }; |
@@ -526,9 +533,6 @@ static int __init omap3_evm_i2c_init(void) | |||
526 | return 0; | 533 | return 0; |
527 | } | 534 | } |
528 | 535 | ||
529 | static struct omap_board_config_kernel omap3_evm_config[] __initdata = { | ||
530 | }; | ||
531 | |||
532 | static struct usbhs_omap_board_data usbhs_bdata __initdata = { | 536 | static struct usbhs_omap_board_data usbhs_bdata __initdata = { |
533 | 537 | ||
534 | .port_mode[0] = OMAP_USBHS_PORT_MODE_UNUSED, | 538 | .port_mode[0] = OMAP_USBHS_PORT_MODE_UNUSED, |
@@ -688,9 +692,6 @@ static void __init omap3_evm_init(void) | |||
688 | obm = (cpu_is_omap3630()) ? omap36x_board_mux : omap35x_board_mux; | 692 | obm = (cpu_is_omap3630()) ? omap36x_board_mux : omap35x_board_mux; |
689 | omap3_mux_init(obm, OMAP_PACKAGE_CBB); | 693 | omap3_mux_init(obm, OMAP_PACKAGE_CBB); |
690 | 694 | ||
691 | omap_board_config = omap3_evm_config; | ||
692 | omap_board_config_size = ARRAY_SIZE(omap3_evm_config); | ||
693 | |||
694 | omap_mux_init_gpio(63, OMAP_PIN_INPUT); | 695 | omap_mux_init_gpio(63, OMAP_PIN_INPUT); |
695 | omap_hsmmc_init(mmc); | 696 | omap_hsmmc_init(mmc); |
696 | 697 | ||
@@ -737,6 +738,7 @@ static void __init omap3_evm_init(void) | |||
737 | omap3evm_init_smsc911x(); | 738 | omap3evm_init_smsc911x(); |
738 | omap3_evm_display_init(); | 739 | omap3_evm_display_init(); |
739 | omap3_evm_wl12xx_init(); | 740 | omap3_evm_wl12xx_init(); |
741 | omap_twl4030_audio_init("omap3evm"); | ||
740 | } | 742 | } |
741 | 743 | ||
742 | MACHINE_START(OMAP3EVM, "OMAP3 EVM") | 744 | MACHINE_START(OMAP3EVM, "OMAP3 EVM") |
diff --git a/arch/arm/mach-omap2/board-omap3logic.c b/arch/arm/mach-omap2/board-omap3logic.c index fca93d1afd43..7bd8253b5d1d 100644 --- a/arch/arm/mach-omap2/board-omap3logic.c +++ b/arch/arm/mach-omap2/board-omap3logic.c | |||
@@ -30,24 +30,21 @@ | |||
30 | #include <linux/i2c/twl.h> | 30 | #include <linux/i2c/twl.h> |
31 | #include <linux/mmc/host.h> | 31 | #include <linux/mmc/host.h> |
32 | 32 | ||
33 | #include <mach/hardware.h> | ||
34 | #include <asm/mach-types.h> | 33 | #include <asm/mach-types.h> |
35 | #include <asm/mach/arch.h> | 34 | #include <asm/mach/arch.h> |
36 | #include <asm/mach/map.h> | 35 | #include <asm/mach/map.h> |
37 | 36 | ||
37 | #include "gpmc-smsc911x.h" | ||
38 | #include <plat/gpmc.h> | ||
39 | #include <plat/sdrc.h> | ||
40 | #include <plat/usb.h> | ||
41 | |||
42 | #include "common.h" | ||
38 | #include "mux.h" | 43 | #include "mux.h" |
39 | #include "hsmmc.h" | 44 | #include "hsmmc.h" |
40 | #include "control.h" | 45 | #include "control.h" |
41 | #include "common-board-devices.h" | 46 | #include "common-board-devices.h" |
42 | 47 | ||
43 | #include <plat/mux.h> | ||
44 | #include <plat/board.h> | ||
45 | #include "common.h" | ||
46 | #include <plat/gpmc-smsc911x.h> | ||
47 | #include <plat/gpmc.h> | ||
48 | #include <plat/sdrc.h> | ||
49 | #include <plat/usb.h> | ||
50 | |||
51 | #define OMAP3LOGIC_SMSC911X_CS 1 | 48 | #define OMAP3LOGIC_SMSC911X_CS 1 |
52 | 49 | ||
53 | #define OMAP3530_LV_SOM_MMC_GPIO_CD 110 | 50 | #define OMAP3530_LV_SOM_MMC_GPIO_CD 110 |
@@ -78,9 +75,6 @@ static struct regulator_init_data omap3logic_vmmc1 = { | |||
78 | }; | 75 | }; |
79 | 76 | ||
80 | static struct twl4030_gpio_platform_data omap3logic_gpio_data = { | 77 | static struct twl4030_gpio_platform_data omap3logic_gpio_data = { |
81 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
82 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
83 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
84 | .use_leds = true, | 78 | .use_leds = true, |
85 | .pullups = BIT(1), | 79 | .pullups = BIT(1), |
86 | .pulldowns = BIT(2) | BIT(6) | BIT(7) | BIT(8) | 80 | .pulldowns = BIT(2) | BIT(6) | BIT(7) | BIT(8) |
diff --git a/arch/arm/mach-omap2/board-omap3pandora.c b/arch/arm/mach-omap2/board-omap3pandora.c index 57aebee44fd0..00a1f4ae6e44 100644 --- a/arch/arm/mach-omap2/board-omap3pandora.c +++ b/arch/arm/mach-omap2/board-omap3pandora.c | |||
@@ -35,18 +35,16 @@ | |||
35 | #include <linux/mmc/host.h> | 35 | #include <linux/mmc/host.h> |
36 | #include <linux/mmc/card.h> | 36 | #include <linux/mmc/card.h> |
37 | #include <linux/regulator/fixed.h> | 37 | #include <linux/regulator/fixed.h> |
38 | #include <linux/platform_data/spi-omap2-mcspi.h> | ||
38 | 39 | ||
39 | #include <asm/mach-types.h> | 40 | #include <asm/mach-types.h> |
40 | #include <asm/mach/arch.h> | 41 | #include <asm/mach/arch.h> |
41 | #include <asm/mach/map.h> | 42 | #include <asm/mach/map.h> |
42 | 43 | ||
43 | #include <plat/board.h> | ||
44 | #include "common.h" | 44 | #include "common.h" |
45 | #include <mach/hardware.h> | ||
46 | #include <plat/mcspi.h> | ||
47 | #include <plat/usb.h> | 45 | #include <plat/usb.h> |
48 | #include <video/omapdss.h> | 46 | #include <video/omapdss.h> |
49 | #include <plat/nand.h> | 47 | #include <linux/platform_data/mtd-nand-omap2.h> |
50 | 48 | ||
51 | #include "mux.h" | 49 | #include "mux.h" |
52 | #include "sdram-micron-mt46h32m32lf-6.h" | 50 | #include "sdram-micron-mt46h32m32lf-6.h" |
@@ -321,9 +319,6 @@ static int omap3pandora_twl_gpio_setup(struct device *dev, | |||
321 | } | 319 | } |
322 | 320 | ||
323 | static struct twl4030_gpio_platform_data omap3pandora_gpio_data = { | 321 | static struct twl4030_gpio_platform_data omap3pandora_gpio_data = { |
324 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
325 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
326 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
327 | .setup = omap3pandora_twl_gpio_setup, | 322 | .setup = omap3pandora_twl_gpio_setup, |
328 | }; | 323 | }; |
329 | 324 | ||
diff --git a/arch/arm/mach-omap2/board-omap3stalker.c b/arch/arm/mach-omap2/board-omap3stalker.c index b318f5602e36..731235eb319e 100644 --- a/arch/arm/mach-omap2/board-omap3stalker.c +++ b/arch/arm/mach-omap2/board-omap3stalker.c | |||
@@ -28,28 +28,26 @@ | |||
28 | #include <linux/regulator/machine.h> | 28 | #include <linux/regulator/machine.h> |
29 | #include <linux/i2c/twl.h> | 29 | #include <linux/i2c/twl.h> |
30 | #include <linux/mmc/host.h> | 30 | #include <linux/mmc/host.h> |
31 | #include <linux/input/matrix_keypad.h> | ||
32 | #include <linux/spi/spi.h> | ||
33 | #include <linux/interrupt.h> | ||
34 | #include <linux/smsc911x.h> | ||
35 | #include <linux/i2c/at24.h> | ||
31 | 36 | ||
32 | #include <mach/hardware.h> | ||
33 | #include <asm/mach-types.h> | 37 | #include <asm/mach-types.h> |
34 | #include <asm/mach/arch.h> | 38 | #include <asm/mach/arch.h> |
35 | #include <asm/mach/map.h> | 39 | #include <asm/mach/map.h> |
36 | #include <asm/mach/flash.h> | 40 | #include <asm/mach/flash.h> |
37 | 41 | ||
38 | #include <plat/board.h> | ||
39 | #include "common.h" | 42 | #include "common.h" |
40 | #include <plat/gpmc.h> | 43 | #include <plat/gpmc.h> |
41 | #include <plat/nand.h> | 44 | #include <linux/platform_data/mtd-nand-omap2.h> |
42 | #include <plat/usb.h> | 45 | #include <plat/usb.h> |
43 | #include <video/omapdss.h> | 46 | #include <video/omapdss.h> |
44 | #include <video/omap-panel-generic-dpi.h> | 47 | #include <video/omap-panel-generic-dpi.h> |
45 | #include <video/omap-panel-tfp410.h> | 48 | #include <video/omap-panel-tfp410.h> |
46 | 49 | ||
47 | #include <plat/mcspi.h> | 50 | #include <linux/platform_data/spi-omap2-mcspi.h> |
48 | #include <linux/input/matrix_keypad.h> | ||
49 | #include <linux/spi/spi.h> | ||
50 | #include <linux/interrupt.h> | ||
51 | #include <linux/smsc911x.h> | ||
52 | #include <linux/i2c/at24.h> | ||
53 | 51 | ||
54 | #include "sdram-micron-mt46h32m32lf-6.h" | 52 | #include "sdram-micron-mt46h32m32lf-6.h" |
55 | #include "mux.h" | 53 | #include "mux.h" |
@@ -57,7 +55,7 @@ | |||
57 | #include "common-board-devices.h" | 55 | #include "common-board-devices.h" |
58 | 56 | ||
59 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) | 57 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) |
60 | #include <plat/gpmc-smsc911x.h> | 58 | #include "gpmc-smsc911x.h" |
61 | 59 | ||
62 | #define OMAP3STALKER_ETHR_START 0x2c000000 | 60 | #define OMAP3STALKER_ETHR_START 0x2c000000 |
63 | #define OMAP3STALKER_ETHR_SIZE 1024 | 61 | #define OMAP3STALKER_ETHR_SIZE 1024 |
@@ -279,9 +277,6 @@ omap3stalker_twl_gpio_setup(struct device *dev, | |||
279 | } | 277 | } |
280 | 278 | ||
281 | static struct twl4030_gpio_platform_data omap3stalker_gpio_data = { | 279 | static struct twl4030_gpio_platform_data omap3stalker_gpio_data = { |
282 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
283 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
284 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
285 | .use_leds = true, | 280 | .use_leds = true, |
286 | .setup = omap3stalker_twl_gpio_setup, | 281 | .setup = omap3stalker_twl_gpio_setup, |
287 | }; | 282 | }; |
@@ -362,9 +357,6 @@ static int __init omap3_stalker_i2c_init(void) | |||
362 | 357 | ||
363 | #define OMAP3_STALKER_TS_GPIO 175 | 358 | #define OMAP3_STALKER_TS_GPIO 175 |
364 | 359 | ||
365 | static struct omap_board_config_kernel omap3_stalker_config[] __initdata = { | ||
366 | }; | ||
367 | |||
368 | static struct platform_device *omap3_stalker_devices[] __initdata = { | 360 | static struct platform_device *omap3_stalker_devices[] __initdata = { |
369 | &keys_gpio, | 361 | &keys_gpio, |
370 | }; | 362 | }; |
@@ -399,8 +391,6 @@ static void __init omap3_stalker_init(void) | |||
399 | { | 391 | { |
400 | regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies)); | 392 | regulator_register_fixed(0, dummy_supplies, ARRAY_SIZE(dummy_supplies)); |
401 | omap3_mux_init(board_mux, OMAP_PACKAGE_CUS); | 393 | omap3_mux_init(board_mux, OMAP_PACKAGE_CUS); |
402 | omap_board_config = omap3_stalker_config; | ||
403 | omap_board_config_size = ARRAY_SIZE(omap3_stalker_config); | ||
404 | 394 | ||
405 | omap_mux_init_gpio(23, OMAP_PIN_INPUT); | 395 | omap_mux_init_gpio(23, OMAP_PIN_INPUT); |
406 | omap_hsmmc_init(mmc); | 396 | omap_hsmmc_init(mmc); |
diff --git a/arch/arm/mach-omap2/board-omap3touchbook.c b/arch/arm/mach-omap2/board-omap3touchbook.c index 485d14d6a8cd..944ffc436577 100644 --- a/arch/arm/mach-omap2/board-omap3touchbook.c +++ b/arch/arm/mach-omap2/board-omap3touchbook.c | |||
@@ -29,7 +29,7 @@ | |||
29 | #include <linux/mtd/nand.h> | 29 | #include <linux/mtd/nand.h> |
30 | #include <linux/mmc/host.h> | 30 | #include <linux/mmc/host.h> |
31 | 31 | ||
32 | #include <plat/mcspi.h> | 32 | #include <linux/platform_data/spi-omap2-mcspi.h> |
33 | #include <linux/spi/spi.h> | 33 | #include <linux/spi/spi.h> |
34 | 34 | ||
35 | #include <linux/spi/ads7846.h> | 35 | #include <linux/spi/ads7846.h> |
@@ -37,17 +37,15 @@ | |||
37 | #include <linux/regulator/machine.h> | 37 | #include <linux/regulator/machine.h> |
38 | #include <linux/i2c/twl.h> | 38 | #include <linux/i2c/twl.h> |
39 | 39 | ||
40 | #include <mach/hardware.h> | ||
41 | #include <asm/mach-types.h> | 40 | #include <asm/mach-types.h> |
42 | #include <asm/mach/arch.h> | 41 | #include <asm/mach/arch.h> |
43 | #include <asm/mach/map.h> | 42 | #include <asm/mach/map.h> |
44 | #include <asm/mach/flash.h> | 43 | #include <asm/mach/flash.h> |
45 | #include <asm/system_info.h> | 44 | #include <asm/system_info.h> |
46 | 45 | ||
47 | #include <plat/board.h> | ||
48 | #include "common.h" | 46 | #include "common.h" |
49 | #include <plat/gpmc.h> | 47 | #include <plat/gpmc.h> |
50 | #include <plat/nand.h> | 48 | #include <linux/platform_data/mtd-nand-omap2.h> |
51 | #include <plat/usb.h> | 49 | #include <plat/usb.h> |
52 | 50 | ||
53 | #include "mux.h" | 51 | #include "mux.h" |
@@ -139,9 +137,6 @@ static int touchbook_twl_gpio_setup(struct device *dev, | |||
139 | } | 137 | } |
140 | 138 | ||
141 | static struct twl4030_gpio_platform_data touchbook_gpio_data = { | 139 | static struct twl4030_gpio_platform_data touchbook_gpio_data = { |
142 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
143 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
144 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
145 | .use_leds = true, | 140 | .use_leds = true, |
146 | .pullups = BIT(1), | 141 | .pullups = BIT(1), |
147 | .pulldowns = BIT(2) | BIT(6) | BIT(7) | BIT(8) | BIT(13) | 142 | .pulldowns = BIT(2) | BIT(6) | BIT(7) | BIT(8) | BIT(13) |
diff --git a/arch/arm/mach-omap2/board-omap4panda.c b/arch/arm/mach-omap2/board-omap4panda.c index cd4852e5ca57..bfcd397e233c 100644 --- a/arch/arm/mach-omap2/board-omap4panda.c +++ b/arch/arm/mach-omap2/board-omap4panda.c | |||
@@ -32,19 +32,18 @@ | |||
32 | #include <linux/wl12xx.h> | 32 | #include <linux/wl12xx.h> |
33 | #include <linux/platform_data/omap-abe-twl6040.h> | 33 | #include <linux/platform_data/omap-abe-twl6040.h> |
34 | 34 | ||
35 | #include <mach/hardware.h> | ||
36 | #include <asm/hardware/gic.h> | 35 | #include <asm/hardware/gic.h> |
37 | #include <asm/mach-types.h> | 36 | #include <asm/mach-types.h> |
38 | #include <asm/mach/arch.h> | 37 | #include <asm/mach/arch.h> |
39 | #include <asm/mach/map.h> | 38 | #include <asm/mach/map.h> |
40 | #include <video/omapdss.h> | 39 | #include <video/omapdss.h> |
41 | 40 | ||
42 | #include <plat/board.h> | ||
43 | #include "common.h" | 41 | #include "common.h" |
44 | #include <plat/usb.h> | 42 | #include <plat/usb.h> |
45 | #include <plat/mmc.h> | 43 | #include <plat/mmc.h> |
46 | #include <video/omap-panel-tfp410.h> | 44 | #include <video/omap-panel-tfp410.h> |
47 | 45 | ||
46 | #include "soc.h" | ||
48 | #include "hsmmc.h" | 47 | #include "hsmmc.h" |
49 | #include "control.h" | 48 | #include "control.h" |
50 | #include "mux.h" | 49 | #include "mux.h" |
@@ -172,7 +171,7 @@ static void __init omap4_ehci_init(void) | |||
172 | return; | 171 | return; |
173 | } | 172 | } |
174 | clk_set_rate(phy_ref_clk, 19200000); | 173 | clk_set_rate(phy_ref_clk, 19200000); |
175 | clk_enable(phy_ref_clk); | 174 | clk_prepare_enable(phy_ref_clk); |
176 | 175 | ||
177 | /* disable the power to the usb hub prior to init and reset phy+hub */ | 176 | /* disable the power to the usb hub prior to init and reset phy+hub */ |
178 | ret = gpio_request_array(panda_ehci_gpios, | 177 | ret = gpio_request_array(panda_ehci_gpios, |
@@ -248,8 +247,7 @@ static struct platform_device omap_vwlan_device = { | |||
248 | }; | 247 | }; |
249 | 248 | ||
250 | static struct wl12xx_platform_data omap_panda_wlan_data __initdata = { | 249 | static struct wl12xx_platform_data omap_panda_wlan_data __initdata = { |
251 | /* PANDA ref clock is 38.4 MHz */ | 250 | .board_ref_clock = WL12XX_REFCLOCK_38, /* 38.4 MHz */ |
252 | .board_ref_clock = 2, | ||
253 | }; | 251 | }; |
254 | 252 | ||
255 | static struct twl6040_codec_data twl6040_codec = { | 253 | static struct twl6040_codec_data twl6040_codec = { |
@@ -263,7 +261,14 @@ static struct twl6040_codec_data twl6040_codec = { | |||
263 | static struct twl6040_platform_data twl6040_data = { | 261 | static struct twl6040_platform_data twl6040_data = { |
264 | .codec = &twl6040_codec, | 262 | .codec = &twl6040_codec, |
265 | .audpwron_gpio = 127, | 263 | .audpwron_gpio = 127, |
266 | .irq_base = TWL6040_CODEC_IRQ_BASE, | 264 | }; |
265 | |||
266 | static struct i2c_board_info __initdata panda_i2c_1_boardinfo[] = { | ||
267 | { | ||
268 | I2C_BOARD_INFO("twl6040", 0x4b), | ||
269 | .irq = 119 + OMAP44XX_IRQ_GIC_START, | ||
270 | .platform_data = &twl6040_data, | ||
271 | }, | ||
267 | }; | 272 | }; |
268 | 273 | ||
269 | /* Panda board uses the common PMIC configuration */ | 274 | /* Panda board uses the common PMIC configuration */ |
@@ -293,8 +298,8 @@ static int __init omap4_panda_i2c_init(void) | |||
293 | TWL_COMMON_REGULATOR_CLK32KG | | 298 | TWL_COMMON_REGULATOR_CLK32KG | |
294 | TWL_COMMON_REGULATOR_V1V8 | | 299 | TWL_COMMON_REGULATOR_V1V8 | |
295 | TWL_COMMON_REGULATOR_V2V1); | 300 | TWL_COMMON_REGULATOR_V2V1); |
296 | omap4_pmic_init("twl6030", &omap4_panda_twldata, | 301 | omap4_pmic_init("twl6030", &omap4_panda_twldata, panda_i2c_1_boardinfo, |
297 | &twl6040_data, OMAP44XX_IRQ_SYS_2N); | 302 | ARRAY_SIZE(panda_i2c_1_boardinfo)); |
298 | omap_register_i2c_bus(2, 400, NULL, 0); | 303 | omap_register_i2c_bus(2, 400, NULL, 0); |
299 | /* | 304 | /* |
300 | * Bus 3 is attached to the DVI port where devices like the pico DLP | 305 | * Bus 3 is attached to the DVI port where devices like the pico DLP |
@@ -382,6 +387,21 @@ static struct omap_board_mux board_mux[] __initdata = { | |||
382 | /* NIRQ2 for twl6040 */ | 387 | /* NIRQ2 for twl6040 */ |
383 | OMAP4_MUX(SYS_NIRQ2, OMAP_MUX_MODE0 | | 388 | OMAP4_MUX(SYS_NIRQ2, OMAP_MUX_MODE0 | |
384 | OMAP_PIN_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE), | 389 | OMAP_PIN_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE), |
390 | /* GPIO_127 for twl6040 */ | ||
391 | OMAP4_MUX(HDQ_SIO, OMAP_MUX_MODE3 | OMAP_PIN_OUTPUT), | ||
392 | /* McPDM */ | ||
393 | OMAP4_MUX(ABE_PDM_UL_DATA, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), | ||
394 | OMAP4_MUX(ABE_PDM_DL_DATA, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), | ||
395 | OMAP4_MUX(ABE_PDM_FRAME, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLUP), | ||
396 | OMAP4_MUX(ABE_PDM_LB_CLK, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), | ||
397 | OMAP4_MUX(ABE_CLKS, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), | ||
398 | /* McBSP1 */ | ||
399 | OMAP4_MUX(ABE_MCBSP1_CLKX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT), | ||
400 | OMAP4_MUX(ABE_MCBSP1_DR, OMAP_MUX_MODE0 | OMAP_PIN_INPUT_PULLDOWN), | ||
401 | OMAP4_MUX(ABE_MCBSP1_DX, OMAP_MUX_MODE0 | OMAP_PIN_OUTPUT | | ||
402 | OMAP_PULL_ENA), | ||
403 | OMAP4_MUX(ABE_MCBSP1_FSX, OMAP_MUX_MODE0 | OMAP_PIN_INPUT), | ||
404 | |||
385 | { .reg_offset = OMAP_MUX_TERMINATOR }, | 405 | { .reg_offset = OMAP_MUX_TERMINATOR }, |
386 | }; | 406 | }; |
387 | 407 | ||
@@ -495,6 +515,7 @@ static void __init omap4_panda_init(void) | |||
495 | MACHINE_START(OMAP4_PANDA, "OMAP4 Panda board") | 515 | MACHINE_START(OMAP4_PANDA, "OMAP4 Panda board") |
496 | /* Maintainer: David Anders - Texas Instruments Inc */ | 516 | /* Maintainer: David Anders - Texas Instruments Inc */ |
497 | .atag_offset = 0x100, | 517 | .atag_offset = 0x100, |
518 | .smp = smp_ops(omap4_smp_ops), | ||
498 | .reserve = omap_reserve, | 519 | .reserve = omap_reserve, |
499 | .map_io = omap4_map_io, | 520 | .map_io = omap4_map_io, |
500 | .init_early = omap4430_init_early, | 521 | .init_early = omap4430_init_early, |
diff --git a/arch/arm/mach-omap2/board-overo.c b/arch/arm/mach-omap2/board-overo.c index 779734d8ba37..b700685762b5 100644 --- a/arch/arm/mach-omap2/board-overo.c +++ b/arch/arm/mach-omap2/board-overo.c | |||
@@ -37,21 +37,19 @@ | |||
37 | #include <linux/mtd/partitions.h> | 37 | #include <linux/mtd/partitions.h> |
38 | #include <linux/mmc/host.h> | 38 | #include <linux/mmc/host.h> |
39 | 39 | ||
40 | #include <linux/platform_data/mtd-nand-omap2.h> | ||
41 | #include <linux/platform_data/spi-omap2-mcspi.h> | ||
42 | |||
40 | #include <asm/mach-types.h> | 43 | #include <asm/mach-types.h> |
41 | #include <asm/mach/arch.h> | 44 | #include <asm/mach/arch.h> |
42 | #include <asm/mach/flash.h> | 45 | #include <asm/mach/flash.h> |
43 | #include <asm/mach/map.h> | 46 | #include <asm/mach/map.h> |
44 | 47 | ||
45 | #include <plat/board.h> | ||
46 | #include "common.h" | 48 | #include "common.h" |
47 | #include <video/omapdss.h> | 49 | #include <video/omapdss.h> |
48 | #include <video/omap-panel-generic-dpi.h> | 50 | #include <video/omap-panel-generic-dpi.h> |
49 | #include <video/omap-panel-tfp410.h> | 51 | #include <video/omap-panel-tfp410.h> |
50 | #include <plat/gpmc.h> | 52 | #include <plat/gpmc.h> |
51 | #include <mach/hardware.h> | ||
52 | #include <plat/nand.h> | ||
53 | #include <plat/mcspi.h> | ||
54 | #include <plat/mux.h> | ||
55 | #include <plat/usb.h> | 53 | #include <plat/usb.h> |
56 | 54 | ||
57 | #include "mux.h" | 55 | #include "mux.h" |
@@ -116,7 +114,7 @@ static inline void __init overo_ads7846_init(void) { return; } | |||
116 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) | 114 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) |
117 | 115 | ||
118 | #include <linux/smsc911x.h> | 116 | #include <linux/smsc911x.h> |
119 | #include <plat/gpmc-smsc911x.h> | 117 | #include "gpmc-smsc911x.h" |
120 | 118 | ||
121 | static struct omap_smsc911x_platform_data smsc911x_cfg = { | 119 | static struct omap_smsc911x_platform_data smsc911x_cfg = { |
122 | .id = 0, | 120 | .id = 0, |
@@ -399,9 +397,6 @@ static int overo_twl_gpio_setup(struct device *dev, | |||
399 | } | 397 | } |
400 | 398 | ||
401 | static struct twl4030_gpio_platform_data overo_gpio_data = { | 399 | static struct twl4030_gpio_platform_data overo_gpio_data = { |
402 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
403 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
404 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
405 | .use_leds = true, | 400 | .use_leds = true, |
406 | .setup = overo_twl_gpio_setup, | 401 | .setup = overo_twl_gpio_setup, |
407 | }; | 402 | }; |
@@ -509,6 +504,7 @@ static void __init overo_init(void) | |||
509 | overo_display_init(); | 504 | overo_display_init(); |
510 | overo_init_led(); | 505 | overo_init_led(); |
511 | overo_init_keys(); | 506 | overo_init_keys(); |
507 | omap_twl4030_audio_init("overo"); | ||
512 | 508 | ||
513 | /* Ensure SDRC pins are mux'd for self-refresh */ | 509 | /* Ensure SDRC pins are mux'd for self-refresh */ |
514 | omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT); | 510 | omap_mux_init_signal("sdrc_cke0", OMAP_PIN_OUTPUT); |
@@ -522,8 +518,7 @@ static void __init overo_init(void) | |||
522 | udelay(10); | 518 | udelay(10); |
523 | gpio_set_value(OVERO_GPIO_W2W_NRESET, 1); | 519 | gpio_set_value(OVERO_GPIO_W2W_NRESET, 1); |
524 | } else { | 520 | } else { |
525 | printk(KERN_ERR "could not obtain gpio for " | 521 | pr_err("could not obtain gpio for OVERO_GPIO_W2W_NRESET\n"); |
526 | "OVERO_GPIO_W2W_NRESET\n"); | ||
527 | } | 522 | } |
528 | 523 | ||
529 | ret = gpio_request_array(overo_bt_gpios, ARRAY_SIZE(overo_bt_gpios)); | 524 | ret = gpio_request_array(overo_bt_gpios, ARRAY_SIZE(overo_bt_gpios)); |
@@ -542,8 +537,7 @@ static void __init overo_init(void) | |||
542 | if (ret == 0) | 537 | if (ret == 0) |
543 | gpio_export(OVERO_GPIO_USBH_CPEN, 0); | 538 | gpio_export(OVERO_GPIO_USBH_CPEN, 0); |
544 | else | 539 | else |
545 | printk(KERN_ERR "could not obtain gpio for " | 540 | pr_err("could not obtain gpio for OVERO_GPIO_USBH_CPEN\n"); |
546 | "OVERO_GPIO_USBH_CPEN\n"); | ||
547 | } | 541 | } |
548 | 542 | ||
549 | MACHINE_START(OVERO, "Gumstix Overo") | 543 | MACHINE_START(OVERO, "Gumstix Overo") |
diff --git a/arch/arm/mach-omap2/board-rm680.c b/arch/arm/mach-omap2/board-rm680.c index 0ad1bb3bdb98..45997bfbcbd2 100644 --- a/arch/arm/mach-omap2/board-rm680.c +++ b/arch/arm/mach-omap2/board-rm680.c | |||
@@ -17,6 +17,7 @@ | |||
17 | #include <linux/regulator/fixed.h> | 17 | #include <linux/regulator/fixed.h> |
18 | #include <linux/regulator/machine.h> | 18 | #include <linux/regulator/machine.h> |
19 | #include <linux/regulator/consumer.h> | 19 | #include <linux/regulator/consumer.h> |
20 | #include <linux/platform_data/mtd-onenand-omap2.h> | ||
20 | 21 | ||
21 | #include <asm/mach/arch.h> | 22 | #include <asm/mach/arch.h> |
22 | #include <asm/mach-types.h> | 23 | #include <asm/mach-types.h> |
@@ -26,7 +27,7 @@ | |||
26 | #include <plat/usb.h> | 27 | #include <plat/usb.h> |
27 | #include <plat/gpmc.h> | 28 | #include <plat/gpmc.h> |
28 | #include "common.h" | 29 | #include "common.h" |
29 | #include <plat/onenand.h> | 30 | #include <plat/serial.h> |
30 | 31 | ||
31 | #include "mux.h" | 32 | #include "mux.h" |
32 | #include "hsmmc.h" | 33 | #include "hsmmc.h" |
@@ -72,9 +73,6 @@ static struct platform_device *rm680_peripherals_devices[] __initdata = { | |||
72 | 73 | ||
73 | /* TWL */ | 74 | /* TWL */ |
74 | static struct twl4030_gpio_platform_data rm680_gpio_data = { | 75 | static struct twl4030_gpio_platform_data rm680_gpio_data = { |
75 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
76 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
77 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
78 | .pullups = BIT(0), | 76 | .pullups = BIT(0), |
79 | .pulldowns = BIT(1) | BIT(2) | BIT(8) | BIT(15), | 77 | .pulldowns = BIT(1) | BIT(2) | BIT(8) | BIT(15), |
80 | }; | 78 | }; |
@@ -87,7 +85,7 @@ static struct twl4030_platform_data rm680_twl_data = { | |||
87 | static void __init rm680_i2c_init(void) | 85 | static void __init rm680_i2c_init(void) |
88 | { | 86 | { |
89 | omap3_pmic_get_config(&rm680_twl_data, TWL_COMMON_PDATA_USB, 0); | 87 | omap3_pmic_get_config(&rm680_twl_data, TWL_COMMON_PDATA_USB, 0); |
90 | omap_pmic_init(1, 2900, "twl5031", INT_34XX_SYS_NIRQ, &rm680_twl_data); | 88 | omap_pmic_init(1, 2900, "twl5031", 7 + OMAP_INTC_START, &rm680_twl_data); |
91 | omap_register_i2c_bus(2, 400, NULL, 0); | 89 | omap_register_i2c_bus(2, 400, NULL, 0); |
92 | omap_register_i2c_bus(3, 400, NULL, 0); | 90 | omap_register_i2c_bus(3, 400, NULL, 0); |
93 | } | 91 | } |
diff --git a/arch/arm/mach-omap2/board-rx51-peripherals.c b/arch/arm/mach-omap2/board-rx51-peripherals.c index df2534de3361..020e03c95bfe 100644 --- a/arch/arm/mach-omap2/board-rx51-peripherals.c +++ b/arch/arm/mach-omap2/board-rx51-peripherals.c | |||
@@ -25,17 +25,18 @@ | |||
25 | #include <linux/gpio_keys.h> | 25 | #include <linux/gpio_keys.h> |
26 | #include <linux/mmc/host.h> | 26 | #include <linux/mmc/host.h> |
27 | #include <linux/power/isp1704_charger.h> | 27 | #include <linux/power/isp1704_charger.h> |
28 | #include <linux/platform_data/spi-omap2-mcspi.h> | ||
29 | #include <linux/platform_data/mtd-onenand-omap2.h> | ||
30 | |||
28 | #include <asm/system_info.h> | 31 | #include <asm/system_info.h> |
29 | 32 | ||
30 | #include <plat/mcspi.h> | ||
31 | #include <plat/board.h> | ||
32 | #include "common.h" | 33 | #include "common.h" |
33 | #include <plat/dma.h> | 34 | #include <plat/dma.h> |
34 | #include <plat/gpmc.h> | 35 | #include <plat/gpmc.h> |
35 | #include <plat/onenand.h> | 36 | #include <plat/omap-pm.h> |
36 | #include <plat/gpmc-smc91x.h> | 37 | #include "gpmc-smc91x.h" |
37 | 38 | ||
38 | #include <mach/board-rx51.h> | 39 | #include "board-rx51.h" |
39 | 40 | ||
40 | #include <sound/tlv320aic3x.h> | 41 | #include <sound/tlv320aic3x.h> |
41 | #include <sound/tpa6130a2-plat.h> | 42 | #include <sound/tpa6130a2-plat.h> |
@@ -46,6 +47,10 @@ | |||
46 | #include <../drivers/staging/iio/light/tsl2563.h> | 47 | #include <../drivers/staging/iio/light/tsl2563.h> |
47 | #include <linux/lis3lv02d.h> | 48 | #include <linux/lis3lv02d.h> |
48 | 49 | ||
50 | #if defined(CONFIG_IR_RX51) || defined(CONFIG_IR_RX51_MODULE) | ||
51 | #include <media/ir-rx51.h> | ||
52 | #endif | ||
53 | |||
49 | #include "mux.h" | 54 | #include "mux.h" |
50 | #include "hsmmc.h" | 55 | #include "hsmmc.h" |
51 | #include "common-board-devices.h" | 56 | #include "common-board-devices.h" |
@@ -743,7 +748,7 @@ static struct radio_si4713_platform_data rx51_si4713_data __initdata_or_module = | |||
743 | .subdev_board_info = &rx51_si4713_board_info, | 748 | .subdev_board_info = &rx51_si4713_board_info, |
744 | }; | 749 | }; |
745 | 750 | ||
746 | static struct platform_device rx51_si4713_dev = { | 751 | static struct platform_device rx51_si4713_dev __initdata_or_module = { |
747 | .name = "radio-si4713", | 752 | .name = "radio-si4713", |
748 | .id = -1, | 753 | .id = -1, |
749 | .dev = { | 754 | .dev = { |
@@ -774,9 +779,6 @@ static int rx51_twlgpio_setup(struct device *dev, unsigned gpio, unsigned n) | |||
774 | } | 779 | } |
775 | 780 | ||
776 | static struct twl4030_gpio_platform_data rx51_gpio_data = { | 781 | static struct twl4030_gpio_platform_data rx51_gpio_data = { |
777 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
778 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
779 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
780 | .pulldowns = BIT(0) | BIT(1) | BIT(2) | BIT(3) | 782 | .pulldowns = BIT(0) | BIT(1) | BIT(2) | BIT(3) |
781 | | BIT(4) | BIT(5) | 783 | | BIT(4) | BIT(5) |
782 | | BIT(8) | BIT(9) | BIT(10) | BIT(11) | 784 | | BIT(8) | BIT(9) | BIT(10) | BIT(11) |
@@ -1051,7 +1053,7 @@ static int __init rx51_i2c_init(void) | |||
1051 | rx51_twldata.vdac->constraints.apply_uV = true; | 1053 | rx51_twldata.vdac->constraints.apply_uV = true; |
1052 | rx51_twldata.vdac->constraints.name = "VDAC"; | 1054 | rx51_twldata.vdac->constraints.name = "VDAC"; |
1053 | 1055 | ||
1054 | omap_pmic_init(1, 2200, "twl5030", INT_34XX_SYS_NIRQ, &rx51_twldata); | 1056 | omap_pmic_init(1, 2200, "twl5030", 7 + OMAP_INTC_START, &rx51_twldata); |
1055 | omap_register_i2c_bus(2, 100, rx51_peripherals_i2c_board_info_2, | 1057 | omap_register_i2c_bus(2, 100, rx51_peripherals_i2c_board_info_2, |
1056 | ARRAY_SIZE(rx51_peripherals_i2c_board_info_2)); | 1058 | ARRAY_SIZE(rx51_peripherals_i2c_board_info_2)); |
1057 | #if defined(CONFIG_SENSORS_LIS3_I2C) || defined(CONFIG_SENSORS_LIS3_I2C_MODULE) | 1059 | #if defined(CONFIG_SENSORS_LIS3_I2C) || defined(CONFIG_SENSORS_LIS3_I2C_MODULE) |
@@ -1220,6 +1222,30 @@ static void __init rx51_init_tsc2005(void) | |||
1220 | gpio_to_irq(RX51_TSC2005_IRQ_GPIO); | 1222 | gpio_to_irq(RX51_TSC2005_IRQ_GPIO); |
1221 | } | 1223 | } |
1222 | 1224 | ||
1225 | #if defined(CONFIG_IR_RX51) || defined(CONFIG_IR_RX51_MODULE) | ||
1226 | static struct lirc_rx51_platform_data rx51_lirc_data = { | ||
1227 | .set_max_mpu_wakeup_lat = omap_pm_set_max_mpu_wakeup_lat, | ||
1228 | .pwm_timer = 9, /* Use GPT 9 for CIR */ | ||
1229 | }; | ||
1230 | |||
1231 | static struct platform_device rx51_lirc_device = { | ||
1232 | .name = "lirc_rx51", | ||
1233 | .id = -1, | ||
1234 | .dev = { | ||
1235 | .platform_data = &rx51_lirc_data, | ||
1236 | }, | ||
1237 | }; | ||
1238 | |||
1239 | static void __init rx51_init_lirc(void) | ||
1240 | { | ||
1241 | platform_device_register(&rx51_lirc_device); | ||
1242 | } | ||
1243 | #else | ||
1244 | static void __init rx51_init_lirc(void) | ||
1245 | { | ||
1246 | } | ||
1247 | #endif | ||
1248 | |||
1223 | void __init rx51_peripherals_init(void) | 1249 | void __init rx51_peripherals_init(void) |
1224 | { | 1250 | { |
1225 | rx51_i2c_init(); | 1251 | rx51_i2c_init(); |
@@ -1230,6 +1256,7 @@ void __init rx51_peripherals_init(void) | |||
1230 | rx51_init_wl1251(); | 1256 | rx51_init_wl1251(); |
1231 | rx51_init_tsc2005(); | 1257 | rx51_init_tsc2005(); |
1232 | rx51_init_si4713(); | 1258 | rx51_init_si4713(); |
1259 | rx51_init_lirc(); | ||
1233 | spi_register_board_info(rx51_peripherals_spi_board_info, | 1260 | spi_register_board_info(rx51_peripherals_spi_board_info, |
1234 | ARRAY_SIZE(rx51_peripherals_spi_board_info)); | 1261 | ARRAY_SIZE(rx51_peripherals_spi_board_info)); |
1235 | 1262 | ||
diff --git a/arch/arm/mach-omap2/board-rx51-video.c b/arch/arm/mach-omap2/board-rx51-video.c index 2c1289bd5e6a..c22e111bcd00 100644 --- a/arch/arm/mach-omap2/board-rx51-video.c +++ b/arch/arm/mach-omap2/board-rx51-video.c | |||
@@ -17,9 +17,9 @@ | |||
17 | #include <asm/mach-types.h> | 17 | #include <asm/mach-types.h> |
18 | #include <video/omapdss.h> | 18 | #include <video/omapdss.h> |
19 | #include <plat/vram.h> | 19 | #include <plat/vram.h> |
20 | #include <plat/mcspi.h> | 20 | #include <linux/platform_data/spi-omap2-mcspi.h> |
21 | 21 | ||
22 | #include <mach/board-rx51.h> | 22 | #include "board-rx51.h" |
23 | 23 | ||
24 | #include "mux.h" | 24 | #include "mux.h" |
25 | 25 | ||
diff --git a/arch/arm/mach-omap2/board-rx51.c b/arch/arm/mach-omap2/board-rx51.c index 345dd931f76f..7bbb05d9689b 100644 --- a/arch/arm/mach-omap2/board-rx51.c +++ b/arch/arm/mach-omap2/board-rx51.c | |||
@@ -17,14 +17,12 @@ | |||
17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
18 | #include <linux/gpio.h> | 18 | #include <linux/gpio.h> |
19 | #include <linux/leds.h> | 19 | #include <linux/leds.h> |
20 | #include <linux/platform_data/spi-omap2-mcspi.h> | ||
20 | 21 | ||
21 | #include <mach/hardware.h> | ||
22 | #include <asm/mach-types.h> | 22 | #include <asm/mach-types.h> |
23 | #include <asm/mach/arch.h> | 23 | #include <asm/mach/arch.h> |
24 | #include <asm/mach/map.h> | 24 | #include <asm/mach/map.h> |
25 | 25 | ||
26 | #include <plat/mcspi.h> | ||
27 | #include <plat/board.h> | ||
28 | #include "common.h" | 26 | #include "common.h" |
29 | #include <plat/dma.h> | 27 | #include <plat/dma.h> |
30 | #include <plat/gpmc.h> | 28 | #include <plat/gpmc.h> |
diff --git a/arch/arm/mach-omap2/include/mach/board-rx51.h b/arch/arm/mach-omap2/board-rx51.h index b76f49e7eed5..b76f49e7eed5 100644 --- a/arch/arm/mach-omap2/include/mach/board-rx51.h +++ b/arch/arm/mach-omap2/board-rx51.h | |||
diff --git a/arch/arm/mach-omap2/board-ti8168evm.c b/arch/arm/mach-omap2/board-ti8168evm.c index d4c8392cadb6..c4f8833b4c3c 100644 --- a/arch/arm/mach-omap2/board-ti8168evm.c +++ b/arch/arm/mach-omap2/board-ti8168evm.c | |||
@@ -15,13 +15,10 @@ | |||
15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
16 | #include <linux/init.h> | 16 | #include <linux/init.h> |
17 | 17 | ||
18 | #include <mach/hardware.h> | ||
19 | #include <asm/mach-types.h> | 18 | #include <asm/mach-types.h> |
20 | #include <asm/mach/arch.h> | 19 | #include <asm/mach/arch.h> |
21 | #include <asm/mach/map.h> | 20 | #include <asm/mach/map.h> |
22 | 21 | ||
23 | #include <plat/irqs.h> | ||
24 | #include <plat/board.h> | ||
25 | #include "common.h" | 22 | #include "common.h" |
26 | #include <plat/usb.h> | 23 | #include <plat/usb.h> |
27 | 24 | ||
@@ -32,15 +29,10 @@ static struct omap_musb_board_data musb_board_data = { | |||
32 | .power = 500, | 29 | .power = 500, |
33 | }; | 30 | }; |
34 | 31 | ||
35 | static struct omap_board_config_kernel ti81xx_evm_config[] __initdata = { | ||
36 | }; | ||
37 | |||
38 | static void __init ti81xx_evm_init(void) | 32 | static void __init ti81xx_evm_init(void) |
39 | { | 33 | { |
40 | omap_serial_init(); | 34 | omap_serial_init(); |
41 | omap_sdrc_init(NULL, NULL); | 35 | omap_sdrc_init(NULL, NULL); |
42 | omap_board_config = ti81xx_evm_config; | ||
43 | omap_board_config_size = ARRAY_SIZE(ti81xx_evm_config); | ||
44 | usb_musb_init(&musb_board_data); | 36 | usb_musb_init(&musb_board_data); |
45 | } | 37 | } |
46 | 38 | ||
diff --git a/arch/arm/mach-omap2/board-zoom-debugboard.c b/arch/arm/mach-omap2/board-zoom-debugboard.c index f64f44173061..afb2278a29f6 100644 --- a/arch/arm/mach-omap2/board-zoom-debugboard.c +++ b/arch/arm/mach-omap2/board-zoom-debugboard.c | |||
@@ -18,10 +18,13 @@ | |||
18 | #include <linux/regulator/machine.h> | 18 | #include <linux/regulator/machine.h> |
19 | 19 | ||
20 | #include <plat/gpmc.h> | 20 | #include <plat/gpmc.h> |
21 | #include <plat/gpmc-smsc911x.h> | 21 | #include "gpmc-smsc911x.h" |
22 | 22 | ||
23 | #include <mach/board-zoom.h> | 23 | #include <mach/board-zoom.h> |
24 | 24 | ||
25 | #include "soc.h" | ||
26 | #include "common.h" | ||
27 | |||
25 | #define ZOOM_SMSC911X_CS 7 | 28 | #define ZOOM_SMSC911X_CS 7 |
26 | #define ZOOM_SMSC911X_GPIO 158 | 29 | #define ZOOM_SMSC911X_GPIO 158 |
27 | #define ZOOM_QUADUART_CS 3 | 30 | #define ZOOM_QUADUART_CS 3 |
@@ -81,8 +84,7 @@ static inline void __init zoom_init_quaduart(void) | |||
81 | quart_cs = ZOOM_QUADUART_CS; | 84 | quart_cs = ZOOM_QUADUART_CS; |
82 | 85 | ||
83 | if (gpmc_cs_request(quart_cs, SZ_1M, &cs_mem_base) < 0) { | 86 | if (gpmc_cs_request(quart_cs, SZ_1M, &cs_mem_base) < 0) { |
84 | printk(KERN_ERR "Failed to request GPMC mem" | 87 | pr_err("Failed to request GPMC mem for Quad UART(TL16CP754C)\n"); |
85 | "for Quad UART(TL16CP754C)\n"); | ||
86 | return; | 88 | return; |
87 | } | 89 | } |
88 | 90 | ||
@@ -104,8 +106,8 @@ static inline int omap_zoom_debugboard_detect(void) | |||
104 | 106 | ||
105 | if (gpio_request_one(debug_board_detect, GPIOF_IN, | 107 | if (gpio_request_one(debug_board_detect, GPIOF_IN, |
106 | "Zoom debug board detect") < 0) { | 108 | "Zoom debug board detect") < 0) { |
107 | printk(KERN_ERR "Failed to request GPIO%d for Zoom debug" | 109 | pr_err("Failed to request GPIO%d for Zoom debug board detect\n", |
108 | "board detect\n", debug_board_detect); | 110 | debug_board_detect); |
109 | return 0; | 111 | return 0; |
110 | } | 112 | } |
111 | 113 | ||
diff --git a/arch/arm/mach-omap2/board-zoom-display.c b/arch/arm/mach-omap2/board-zoom-display.c index 28187f134fff..b940ab2259fb 100644 --- a/arch/arm/mach-omap2/board-zoom-display.c +++ b/arch/arm/mach-omap2/board-zoom-display.c | |||
@@ -14,10 +14,12 @@ | |||
14 | #include <linux/gpio.h> | 14 | #include <linux/gpio.h> |
15 | #include <linux/i2c/twl.h> | 15 | #include <linux/i2c/twl.h> |
16 | #include <linux/spi/spi.h> | 16 | #include <linux/spi/spi.h> |
17 | #include <plat/mcspi.h> | 17 | #include <linux/platform_data/spi-omap2-mcspi.h> |
18 | #include <video/omapdss.h> | 18 | #include <video/omapdss.h> |
19 | #include <mach/board-zoom.h> | 19 | #include <mach/board-zoom.h> |
20 | 20 | ||
21 | #include "common.h" | ||
22 | |||
21 | #define LCD_PANEL_RESET_GPIO_PROD 96 | 23 | #define LCD_PANEL_RESET_GPIO_PROD 96 |
22 | #define LCD_PANEL_RESET_GPIO_PILOT 55 | 24 | #define LCD_PANEL_RESET_GPIO_PILOT 55 |
23 | #define LCD_PANEL_QVGA_GPIO 56 | 25 | #define LCD_PANEL_QVGA_GPIO 56 |
diff --git a/arch/arm/mach-omap2/board-zoom-peripherals.c b/arch/arm/mach-omap2/board-zoom-peripherals.c index b797cb279618..c166fe1fdff9 100644 --- a/arch/arm/mach-omap2/board-zoom-peripherals.c +++ b/arch/arm/mach-omap2/board-zoom-peripherals.c | |||
@@ -19,6 +19,7 @@ | |||
19 | #include <linux/regulator/fixed.h> | 19 | #include <linux/regulator/fixed.h> |
20 | #include <linux/wl12xx.h> | 20 | #include <linux/wl12xx.h> |
21 | #include <linux/mmc/host.h> | 21 | #include <linux/mmc/host.h> |
22 | #include <linux/platform_data/gpio-omap.h> | ||
22 | 23 | ||
23 | #include <asm/mach-types.h> | 24 | #include <asm/mach-types.h> |
24 | #include <asm/mach/arch.h> | 25 | #include <asm/mach/arch.h> |
@@ -34,6 +35,7 @@ | |||
34 | #include "common-board-devices.h" | 35 | #include "common-board-devices.h" |
35 | 36 | ||
36 | #define OMAP_ZOOM_WLAN_PMENA_GPIO (101) | 37 | #define OMAP_ZOOM_WLAN_PMENA_GPIO (101) |
38 | #define ZOOM2_HEADSET_EXTMUTE_GPIO (153) | ||
37 | #define OMAP_ZOOM_WLAN_IRQ_GPIO (162) | 39 | #define OMAP_ZOOM_WLAN_IRQ_GPIO (162) |
38 | 40 | ||
39 | #define LCD_PANEL_ENABLE_GPIO (7 + OMAP_MAX_GPIO_LINES) | 41 | #define LCD_PANEL_ENABLE_GPIO (7 + OMAP_MAX_GPIO_LINES) |
@@ -193,8 +195,7 @@ static struct platform_device omap_vwlan_device = { | |||
193 | }; | 195 | }; |
194 | 196 | ||
195 | static struct wl12xx_platform_data omap_zoom_wlan_data __initdata = { | 197 | static struct wl12xx_platform_data omap_zoom_wlan_data __initdata = { |
196 | /* ZOOM ref clock is 26 MHz */ | 198 | .board_ref_clock = WL12XX_REFCLOCK_26, /* 26 MHz */ |
197 | .board_ref_clock = 1, | ||
198 | }; | 199 | }; |
199 | 200 | ||
200 | static struct omap2_hsmmc_info mmc[] = { | 201 | static struct omap2_hsmmc_info mmc[] = { |
@@ -244,16 +245,7 @@ static int zoom_twl_gpio_setup(struct device *dev, | |||
244 | return ret; | 245 | return ret; |
245 | } | 246 | } |
246 | 247 | ||
247 | /* EXTMUTE callback function */ | ||
248 | static void zoom2_set_hs_extmute(int mute) | ||
249 | { | ||
250 | gpio_set_value(ZOOM2_HEADSET_EXTMUTE_GPIO, mute); | ||
251 | } | ||
252 | |||
253 | static struct twl4030_gpio_platform_data zoom_gpio_data = { | 248 | static struct twl4030_gpio_platform_data zoom_gpio_data = { |
254 | .gpio_base = OMAP_MAX_GPIO_LINES, | ||
255 | .irq_base = TWL4030_GPIO_IRQ_BASE, | ||
256 | .irq_end = TWL4030_GPIO_IRQ_END, | ||
257 | .setup = zoom_twl_gpio_setup, | 249 | .setup = zoom_twl_gpio_setup, |
258 | }; | 250 | }; |
259 | 251 | ||
@@ -279,9 +271,9 @@ static int __init omap_i2c_init(void) | |||
279 | 271 | ||
280 | codec_data->ramp_delay_value = 3; /* 161 ms */ | 272 | codec_data->ramp_delay_value = 3; /* 161 ms */ |
281 | codec_data->hs_extmute = 1; | 273 | codec_data->hs_extmute = 1; |
282 | codec_data->set_hs_extmute = zoom2_set_hs_extmute; | 274 | codec_data->hs_extmute_gpio = ZOOM2_HEADSET_EXTMUTE_GPIO; |
283 | } | 275 | } |
284 | omap_pmic_init(1, 2400, "twl5030", INT_34XX_SYS_NIRQ, &zoom_twldata); | 276 | omap_pmic_init(1, 2400, "twl5030", 7 + OMAP_INTC_START, &zoom_twldata); |
285 | omap_register_i2c_bus(2, 400, NULL, 0); | 277 | omap_register_i2c_bus(2, 400, NULL, 0); |
286 | omap_register_i2c_bus(3, 400, NULL, 0); | 278 | omap_register_i2c_bus(3, 400, NULL, 0); |
287 | return 0; | 279 | return 0; |
diff --git a/arch/arm/mach-omap2/board-zoom.c b/arch/arm/mach-omap2/board-zoom.c index 4e7e56142e6f..4994438e1f46 100644 --- a/arch/arm/mach-omap2/board-zoom.c +++ b/arch/arm/mach-omap2/board-zoom.c | |||
@@ -22,7 +22,6 @@ | |||
22 | #include <asm/mach/arch.h> | 22 | #include <asm/mach/arch.h> |
23 | 23 | ||
24 | #include "common.h" | 24 | #include "common.h" |
25 | #include <plat/board.h> | ||
26 | #include <plat/usb.h> | 25 | #include <plat/usb.h> |
27 | 26 | ||
28 | #include <mach/board-zoom.h> | 27 | #include <mach/board-zoom.h> |
diff --git a/arch/arm/mach-omap2/clkt2xxx_apll.c b/arch/arm/mach-omap2/clkt2xxx_apll.c index b19a1f7234ae..c2d15212d64d 100644 --- a/arch/arm/mach-omap2/clkt2xxx_apll.c +++ b/arch/arm/mach-omap2/clkt2xxx_apll.c | |||
@@ -59,7 +59,7 @@ static int omap2_clk_apll_enable(struct clk *clk, u32 status_mask) | |||
59 | omap2_cm_write_mod_reg(cval, PLL_MOD, CM_CLKEN); | 59 | omap2_cm_write_mod_reg(cval, PLL_MOD, CM_CLKEN); |
60 | 60 | ||
61 | omap2_cm_wait_idlest(cm_idlest_pll, status_mask, | 61 | omap2_cm_wait_idlest(cm_idlest_pll, status_mask, |
62 | OMAP24XX_CM_IDLEST_VAL, clk->name); | 62 | OMAP24XX_CM_IDLEST_VAL, __clk_get_name(clk)); |
63 | 63 | ||
64 | /* | 64 | /* |
65 | * REVISIT: Should we return an error code if omap2_wait_clock_ready() | 65 | * REVISIT: Should we return an error code if omap2_wait_clock_ready() |
diff --git a/arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c b/arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c index 3d9d746b221a..3524f0e7b6d5 100644 --- a/arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c +++ b/arch/arm/mach-omap2/clkt2xxx_virt_prcm_set.c | |||
@@ -33,11 +33,11 @@ | |||
33 | #include <linux/cpufreq.h> | 33 | #include <linux/cpufreq.h> |
34 | #include <linux/slab.h> | 34 | #include <linux/slab.h> |
35 | 35 | ||
36 | #include <plat/cpu.h> | ||
37 | #include <plat/clock.h> | 36 | #include <plat/clock.h> |
38 | #include <plat/sram.h> | 37 | #include <plat/sram.h> |
39 | #include <plat/sdrc.h> | 38 | #include <plat/sdrc.h> |
40 | 39 | ||
40 | #include "soc.h" | ||
41 | #include "clock.h" | 41 | #include "clock.h" |
42 | #include "clock2xxx.h" | 42 | #include "clock2xxx.h" |
43 | #include "opp2xxx.h" | 43 | #include "opp2xxx.h" |
@@ -68,14 +68,15 @@ unsigned long omap2_table_mpu_recalc(struct clk *clk) | |||
68 | long omap2_round_to_table_rate(struct clk *clk, unsigned long rate) | 68 | long omap2_round_to_table_rate(struct clk *clk, unsigned long rate) |
69 | { | 69 | { |
70 | const struct prcm_config *ptr; | 70 | const struct prcm_config *ptr; |
71 | long highest_rate; | 71 | long highest_rate, sys_clk_rate; |
72 | 72 | ||
73 | highest_rate = -EINVAL; | 73 | highest_rate = -EINVAL; |
74 | sys_clk_rate = __clk_get_rate(sclk); | ||
74 | 75 | ||
75 | for (ptr = rate_table; ptr->mpu_speed; ptr++) { | 76 | for (ptr = rate_table; ptr->mpu_speed; ptr++) { |
76 | if (!(ptr->flags & cpu_mask)) | 77 | if (!(ptr->flags & cpu_mask)) |
77 | continue; | 78 | continue; |
78 | if (ptr->xtal_speed != sclk->rate) | 79 | if (ptr->xtal_speed != sys_clk_rate) |
79 | continue; | 80 | continue; |
80 | 81 | ||
81 | highest_rate = ptr->mpu_speed; | 82 | highest_rate = ptr->mpu_speed; |
@@ -94,12 +95,15 @@ int omap2_select_table_rate(struct clk *clk, unsigned long rate) | |||
94 | const struct prcm_config *prcm; | 95 | const struct prcm_config *prcm; |
95 | unsigned long found_speed = 0; | 96 | unsigned long found_speed = 0; |
96 | unsigned long flags; | 97 | unsigned long flags; |
98 | long sys_clk_rate; | ||
99 | |||
100 | sys_clk_rate = __clk_get_rate(sclk); | ||
97 | 101 | ||
98 | for (prcm = rate_table; prcm->mpu_speed; prcm++) { | 102 | for (prcm = rate_table; prcm->mpu_speed; prcm++) { |
99 | if (!(prcm->flags & cpu_mask)) | 103 | if (!(prcm->flags & cpu_mask)) |
100 | continue; | 104 | continue; |
101 | 105 | ||
102 | if (prcm->xtal_speed != sclk->rate) | 106 | if (prcm->xtal_speed != sys_clk_rate) |
103 | continue; | 107 | continue; |
104 | 108 | ||
105 | if (prcm->mpu_speed <= rate) { | 109 | if (prcm->mpu_speed <= rate) { |
diff --git a/arch/arm/mach-omap2/clkt34xx_dpll3m2.c b/arch/arm/mach-omap2/clkt34xx_dpll3m2.c index d6e34dd9e7e7..7c6da2f731dc 100644 --- a/arch/arm/mach-omap2/clkt34xx_dpll3m2.c +++ b/arch/arm/mach-omap2/clkt34xx_dpll3m2.c | |||
@@ -56,6 +56,7 @@ int omap3_core_dpll_m2_set_rate(struct clk *clk, unsigned long rate) | |||
56 | struct omap_sdrc_params *sdrc_cs0; | 56 | struct omap_sdrc_params *sdrc_cs0; |
57 | struct omap_sdrc_params *sdrc_cs1; | 57 | struct omap_sdrc_params *sdrc_cs1; |
58 | int ret; | 58 | int ret; |
59 | unsigned long clkrate; | ||
59 | 60 | ||
60 | if (!clk || !rate) | 61 | if (!clk || !rate) |
61 | return -EINVAL; | 62 | return -EINVAL; |
@@ -64,11 +65,12 @@ int omap3_core_dpll_m2_set_rate(struct clk *clk, unsigned long rate) | |||
64 | if (validrate != rate) | 65 | if (validrate != rate) |
65 | return -EINVAL; | 66 | return -EINVAL; |
66 | 67 | ||
67 | sdrcrate = sdrc_ick_p->rate; | 68 | sdrcrate = __clk_get_rate(sdrc_ick_p); |
68 | if (rate > clk->rate) | 69 | clkrate = __clk_get_rate(clk); |
69 | sdrcrate <<= ((rate / clk->rate) >> 1); | 70 | if (rate > clkrate) |
71 | sdrcrate <<= ((rate / clkrate) >> 1); | ||
70 | else | 72 | else |
71 | sdrcrate >>= ((clk->rate / rate) >> 1); | 73 | sdrcrate >>= ((clkrate / rate) >> 1); |
72 | 74 | ||
73 | ret = omap2_sdrc_get_params(sdrcrate, &sdrc_cs0, &sdrc_cs1); | 75 | ret = omap2_sdrc_get_params(sdrcrate, &sdrc_cs0, &sdrc_cs1); |
74 | if (ret) | 76 | if (ret) |
@@ -82,7 +84,7 @@ int omap3_core_dpll_m2_set_rate(struct clk *clk, unsigned long rate) | |||
82 | /* | 84 | /* |
83 | * XXX This only needs to be done when the CPU frequency changes | 85 | * XXX This only needs to be done when the CPU frequency changes |
84 | */ | 86 | */ |
85 | _mpurate = arm_fck_p->rate / CYCLES_PER_MHZ; | 87 | _mpurate = __clk_get_rate(arm_fck_p) / CYCLES_PER_MHZ; |
86 | c = (_mpurate << SDRC_MPURATE_SCALE) >> SDRC_MPURATE_BASE_SHIFT; | 88 | c = (_mpurate << SDRC_MPURATE_SCALE) >> SDRC_MPURATE_BASE_SHIFT; |
87 | c += 1; /* for safety */ | 89 | c += 1; /* for safety */ |
88 | c *= SDRC_MPURATE_LOOPS; | 90 | c *= SDRC_MPURATE_LOOPS; |
@@ -90,28 +92,26 @@ int omap3_core_dpll_m2_set_rate(struct clk *clk, unsigned long rate) | |||
90 | if (c == 0) | 92 | if (c == 0) |
91 | c = 1; | 93 | c = 1; |
92 | 94 | ||
93 | pr_debug("clock: changing CORE DPLL rate from %lu to %lu\n", clk->rate, | 95 | pr_debug("clock: changing CORE DPLL rate from %lu to %lu\n", |
94 | validrate); | 96 | clkrate, validrate); |
95 | pr_debug("clock: SDRC CS0 timing params used:" | 97 | pr_debug("clock: SDRC CS0 timing params used: RFR %08x CTRLA %08x CTRLB %08x MR %08x\n", |
96 | " RFR %08x CTRLA %08x CTRLB %08x MR %08x\n", | ||
97 | sdrc_cs0->rfr_ctrl, sdrc_cs0->actim_ctrla, | 98 | sdrc_cs0->rfr_ctrl, sdrc_cs0->actim_ctrla, |
98 | sdrc_cs0->actim_ctrlb, sdrc_cs0->mr); | 99 | sdrc_cs0->actim_ctrlb, sdrc_cs0->mr); |
99 | if (sdrc_cs1) | 100 | if (sdrc_cs1) |
100 | pr_debug("clock: SDRC CS1 timing params used: " | 101 | pr_debug("clock: SDRC CS1 timing params used: RFR %08x CTRLA %08x CTRLB %08x MR %08x\n", |
101 | " RFR %08x CTRLA %08x CTRLB %08x MR %08x\n", | 102 | sdrc_cs1->rfr_ctrl, sdrc_cs1->actim_ctrla, |
102 | sdrc_cs1->rfr_ctrl, sdrc_cs1->actim_ctrla, | 103 | sdrc_cs1->actim_ctrlb, sdrc_cs1->mr); |
103 | sdrc_cs1->actim_ctrlb, sdrc_cs1->mr); | ||
104 | 104 | ||
105 | if (sdrc_cs1) | 105 | if (sdrc_cs1) |
106 | omap3_configure_core_dpll( | 106 | omap3_configure_core_dpll( |
107 | new_div, unlock_dll, c, rate > clk->rate, | 107 | new_div, unlock_dll, c, rate > clkrate, |
108 | sdrc_cs0->rfr_ctrl, sdrc_cs0->actim_ctrla, | 108 | sdrc_cs0->rfr_ctrl, sdrc_cs0->actim_ctrla, |
109 | sdrc_cs0->actim_ctrlb, sdrc_cs0->mr, | 109 | sdrc_cs0->actim_ctrlb, sdrc_cs0->mr, |
110 | sdrc_cs1->rfr_ctrl, sdrc_cs1->actim_ctrla, | 110 | sdrc_cs1->rfr_ctrl, sdrc_cs1->actim_ctrla, |
111 | sdrc_cs1->actim_ctrlb, sdrc_cs1->mr); | 111 | sdrc_cs1->actim_ctrlb, sdrc_cs1->mr); |
112 | else | 112 | else |
113 | omap3_configure_core_dpll( | 113 | omap3_configure_core_dpll( |
114 | new_div, unlock_dll, c, rate > clk->rate, | 114 | new_div, unlock_dll, c, rate > clkrate, |
115 | sdrc_cs0->rfr_ctrl, sdrc_cs0->actim_ctrla, | 115 | sdrc_cs0->rfr_ctrl, sdrc_cs0->actim_ctrla, |
116 | sdrc_cs0->actim_ctrlb, sdrc_cs0->mr, | 116 | sdrc_cs0->actim_ctrlb, sdrc_cs0->mr, |
117 | 0, 0, 0, 0); | 117 | 0, 0, 0, 0); |
diff --git a/arch/arm/mach-omap2/clkt_clksel.c b/arch/arm/mach-omap2/clkt_clksel.c index 04d551b1f7f7..3ff22114d702 100644 --- a/arch/arm/mach-omap2/clkt_clksel.c +++ b/arch/arm/mach-omap2/clkt_clksel.c | |||
@@ -71,8 +71,8 @@ static const struct clksel *_get_clksel_by_parent(struct clk *clk, | |||
71 | 71 | ||
72 | if (!clks->parent) { | 72 | if (!clks->parent) { |
73 | /* This indicates a data problem */ | 73 | /* This indicates a data problem */ |
74 | WARN(1, "clock: Could not find parent clock %s in clksel array " | 74 | WARN(1, "clock: %s: could not find parent clock %s in clksel array\n", |
75 | "of clock %s\n", src_clk->name, clk->name); | 75 | __clk_get_name(clk), __clk_get_name(src_clk)); |
76 | return NULL; | 76 | return NULL; |
77 | } | 77 | } |
78 | 78 | ||
@@ -126,8 +126,9 @@ static u8 _get_div_and_fieldval(struct clk *src_clk, struct clk *clk, | |||
126 | 126 | ||
127 | if (max_div == 0) { | 127 | if (max_div == 0) { |
128 | /* This indicates an error in the clksel data */ | 128 | /* This indicates an error in the clksel data */ |
129 | WARN(1, "clock: Could not find divisor for clock %s parent %s" | 129 | WARN(1, "clock: %s: could not find divisor for parent %s\n", |
130 | "\n", clk->name, src_clk->parent->name); | 130 | __clk_get_name(clk), |
131 | __clk_get_name(__clk_get_parent(src_clk))); | ||
131 | return 0; | 132 | return 0; |
132 | } | 133 | } |
133 | 134 | ||
@@ -176,8 +177,10 @@ static u32 _clksel_to_divisor(struct clk *clk, u32 field_val) | |||
176 | { | 177 | { |
177 | const struct clksel *clks; | 178 | const struct clksel *clks; |
178 | const struct clksel_rate *clkr; | 179 | const struct clksel_rate *clkr; |
180 | struct clk *parent; | ||
179 | 181 | ||
180 | clks = _get_clksel_by_parent(clk, clk->parent); | 182 | parent = __clk_get_parent(clk); |
183 | clks = _get_clksel_by_parent(clk, parent); | ||
181 | if (!clks) | 184 | if (!clks) |
182 | return 0; | 185 | return 0; |
183 | 186 | ||
@@ -191,8 +194,8 @@ static u32 _clksel_to_divisor(struct clk *clk, u32 field_val) | |||
191 | 194 | ||
192 | if (!clkr->div) { | 195 | if (!clkr->div) { |
193 | /* This indicates a data error */ | 196 | /* This indicates a data error */ |
194 | WARN(1, "clock: Could not find fieldval %d for clock %s parent " | 197 | WARN(1, "clock: %s: could not find fieldval %d for parent %s\n", |
195 | "%s\n", field_val, clk->name, clk->parent->name); | 198 | __clk_get_name(clk), field_val, __clk_get_name(parent)); |
196 | return 0; | 199 | return 0; |
197 | } | 200 | } |
198 | 201 | ||
@@ -213,11 +216,13 @@ static u32 _divisor_to_clksel(struct clk *clk, u32 div) | |||
213 | { | 216 | { |
214 | const struct clksel *clks; | 217 | const struct clksel *clks; |
215 | const struct clksel_rate *clkr; | 218 | const struct clksel_rate *clkr; |
219 | struct clk *parent; | ||
216 | 220 | ||
217 | /* should never happen */ | 221 | /* should never happen */ |
218 | WARN_ON(div == 0); | 222 | WARN_ON(div == 0); |
219 | 223 | ||
220 | clks = _get_clksel_by_parent(clk, clk->parent); | 224 | parent = __clk_get_parent(clk); |
225 | clks = _get_clksel_by_parent(clk, parent); | ||
221 | if (!clks) | 226 | if (!clks) |
222 | return ~0; | 227 | return ~0; |
223 | 228 | ||
@@ -230,8 +235,8 @@ static u32 _divisor_to_clksel(struct clk *clk, u32 div) | |||
230 | } | 235 | } |
231 | 236 | ||
232 | if (!clkr->div) { | 237 | if (!clkr->div) { |
233 | pr_err("clock: Could not find divisor %d for clock %s parent " | 238 | pr_err("clock: %s: could not find divisor %d for parent %s\n", |
234 | "%s\n", div, clk->name, clk->parent->name); | 239 | __clk_get_name(clk), div, __clk_get_name(parent)); |
235 | return ~0; | 240 | return ~0; |
236 | } | 241 | } |
237 | 242 | ||
@@ -281,16 +286,23 @@ u32 omap2_clksel_round_rate_div(struct clk *clk, unsigned long target_rate, | |||
281 | const struct clksel *clks; | 286 | const struct clksel *clks; |
282 | const struct clksel_rate *clkr; | 287 | const struct clksel_rate *clkr; |
283 | u32 last_div = 0; | 288 | u32 last_div = 0; |
289 | struct clk *parent; | ||
290 | unsigned long parent_rate; | ||
291 | const char *clk_name; | ||
292 | |||
293 | parent = __clk_get_parent(clk); | ||
294 | parent_rate = __clk_get_rate(parent); | ||
295 | clk_name = __clk_get_name(clk); | ||
284 | 296 | ||
285 | if (!clk->clksel || !clk->clksel_mask) | 297 | if (!clk->clksel || !clk->clksel_mask) |
286 | return ~0; | 298 | return ~0; |
287 | 299 | ||
288 | pr_debug("clock: clksel_round_rate_div: %s target_rate %ld\n", | 300 | pr_debug("clock: clksel_round_rate_div: %s target_rate %ld\n", |
289 | clk->name, target_rate); | 301 | clk_name, target_rate); |
290 | 302 | ||
291 | *new_div = 1; | 303 | *new_div = 1; |
292 | 304 | ||
293 | clks = _get_clksel_by_parent(clk, clk->parent); | 305 | clks = _get_clksel_by_parent(clk, parent); |
294 | if (!clks) | 306 | if (!clks) |
295 | return ~0; | 307 | return ~0; |
296 | 308 | ||
@@ -300,30 +312,29 @@ u32 omap2_clksel_round_rate_div(struct clk *clk, unsigned long target_rate, | |||
300 | 312 | ||
301 | /* Sanity check */ | 313 | /* Sanity check */ |
302 | if (clkr->div <= last_div) | 314 | if (clkr->div <= last_div) |
303 | pr_err("clock: clksel_rate table not sorted " | 315 | pr_err("clock: %s: clksel_rate table not sorted\n", |
304 | "for clock %s", clk->name); | 316 | clk_name); |
305 | 317 | ||
306 | last_div = clkr->div; | 318 | last_div = clkr->div; |
307 | 319 | ||
308 | test_rate = clk->parent->rate / clkr->div; | 320 | test_rate = parent_rate / clkr->div; |
309 | 321 | ||
310 | if (test_rate <= target_rate) | 322 | if (test_rate <= target_rate) |
311 | break; /* found it */ | 323 | break; /* found it */ |
312 | } | 324 | } |
313 | 325 | ||
314 | if (!clkr->div) { | 326 | if (!clkr->div) { |
315 | pr_err("clock: Could not find divisor for target " | 327 | pr_err("clock: %s: could not find divisor for target rate %ld for parent %s\n", |
316 | "rate %ld for clock %s parent %s\n", target_rate, | 328 | clk_name, target_rate, __clk_get_name(parent)); |
317 | clk->name, clk->parent->name); | ||
318 | return ~0; | 329 | return ~0; |
319 | } | 330 | } |
320 | 331 | ||
321 | *new_div = clkr->div; | 332 | *new_div = clkr->div; |
322 | 333 | ||
323 | pr_debug("clock: new_div = %d, new_rate = %ld\n", *new_div, | 334 | pr_debug("clock: new_div = %d, new_rate = %ld\n", *new_div, |
324 | (clk->parent->rate / clkr->div)); | 335 | (parent_rate / clkr->div)); |
325 | 336 | ||
326 | return clk->parent->rate / clkr->div; | 337 | return parent_rate / clkr->div; |
327 | } | 338 | } |
328 | 339 | ||
329 | /* | 340 | /* |
@@ -345,10 +356,15 @@ void omap2_init_clksel_parent(struct clk *clk) | |||
345 | const struct clksel *clks; | 356 | const struct clksel *clks; |
346 | const struct clksel_rate *clkr; | 357 | const struct clksel_rate *clkr; |
347 | u32 r, found = 0; | 358 | u32 r, found = 0; |
359 | struct clk *parent; | ||
360 | const char *clk_name; | ||
348 | 361 | ||
349 | if (!clk->clksel || !clk->clksel_mask) | 362 | if (!clk->clksel || !clk->clksel_mask) |
350 | return; | 363 | return; |
351 | 364 | ||
365 | parent = __clk_get_parent(clk); | ||
366 | clk_name = __clk_get_name(clk); | ||
367 | |||
352 | r = __raw_readl(clk->clksel_reg) & clk->clksel_mask; | 368 | r = __raw_readl(clk->clksel_reg) & clk->clksel_mask; |
353 | r >>= __ffs(clk->clksel_mask); | 369 | r >>= __ffs(clk->clksel_mask); |
354 | 370 | ||
@@ -358,14 +374,15 @@ void omap2_init_clksel_parent(struct clk *clk) | |||
358 | continue; | 374 | continue; |
359 | 375 | ||
360 | if (clkr->val == r) { | 376 | if (clkr->val == r) { |
361 | if (clk->parent != clks->parent) { | 377 | if (parent != clks->parent) { |
362 | pr_debug("clock: inited %s parent " | 378 | pr_debug("clock: %s: inited parent to %s (was %s)\n", |
363 | "to %s (was %s)\n", | 379 | clk_name, |
364 | clk->name, clks->parent->name, | 380 | __clk_get_name(clks->parent), |
365 | ((clk->parent) ? | 381 | ((parent) ? |
366 | clk->parent->name : "NULL")); | 382 | __clk_get_name(parent) : |
383 | "NULL")); | ||
367 | clk_reparent(clk, clks->parent); | 384 | clk_reparent(clk, clks->parent); |
368 | }; | 385 | } |
369 | found = 1; | 386 | found = 1; |
370 | } | 387 | } |
371 | } | 388 | } |
@@ -373,7 +390,7 @@ void omap2_init_clksel_parent(struct clk *clk) | |||
373 | 390 | ||
374 | /* This indicates a data error */ | 391 | /* This indicates a data error */ |
375 | WARN(!found, "clock: %s: init parent: could not find regval %0x\n", | 392 | WARN(!found, "clock: %s: init parent: could not find regval %0x\n", |
376 | clk->name, r); | 393 | clk_name, r); |
377 | 394 | ||
378 | return; | 395 | return; |
379 | } | 396 | } |
@@ -391,15 +408,17 @@ unsigned long omap2_clksel_recalc(struct clk *clk) | |||
391 | { | 408 | { |
392 | unsigned long rate; | 409 | unsigned long rate; |
393 | u32 div = 0; | 410 | u32 div = 0; |
411 | struct clk *parent; | ||
394 | 412 | ||
395 | div = _read_divisor(clk); | 413 | div = _read_divisor(clk); |
396 | if (div == 0) | 414 | if (div == 0) |
397 | return clk->rate; | 415 | return __clk_get_rate(clk); |
398 | 416 | ||
399 | rate = clk->parent->rate / div; | 417 | parent = __clk_get_parent(clk); |
418 | rate = __clk_get_rate(parent) / div; | ||
400 | 419 | ||
401 | pr_debug("clock: %s: recalc'd rate is %ld (div %d)\n", clk->name, | 420 | pr_debug("clock: %s: recalc'd rate is %ld (div %d)\n", |
402 | rate, div); | 421 | __clk_get_name(clk), rate, div); |
403 | 422 | ||
404 | return rate; | 423 | return rate; |
405 | } | 424 | } |
@@ -454,9 +473,10 @@ int omap2_clksel_set_rate(struct clk *clk, unsigned long rate) | |||
454 | 473 | ||
455 | _write_clksel_reg(clk, field_val); | 474 | _write_clksel_reg(clk, field_val); |
456 | 475 | ||
457 | clk->rate = clk->parent->rate / new_div; | 476 | clk->rate = __clk_get_rate(__clk_get_parent(clk)) / new_div; |
458 | 477 | ||
459 | pr_debug("clock: %s: set rate to %ld\n", clk->name, clk->rate); | 478 | pr_debug("clock: %s: set rate to %ld\n", __clk_get_name(clk), |
479 | __clk_get_rate(clk)); | ||
460 | 480 | ||
461 | return 0; | 481 | return 0; |
462 | } | 482 | } |
@@ -498,13 +518,15 @@ int omap2_clksel_set_parent(struct clk *clk, struct clk *new_parent) | |||
498 | clk_reparent(clk, new_parent); | 518 | clk_reparent(clk, new_parent); |
499 | 519 | ||
500 | /* CLKSEL clocks follow their parents' rates, divided by a divisor */ | 520 | /* CLKSEL clocks follow their parents' rates, divided by a divisor */ |
501 | clk->rate = new_parent->rate; | 521 | clk->rate = __clk_get_rate(new_parent); |
502 | 522 | ||
503 | if (parent_div > 0) | 523 | if (parent_div > 0) |
504 | clk->rate /= parent_div; | 524 | __clk_get_rate(clk) /= parent_div; |
505 | 525 | ||
506 | pr_debug("clock: %s: set parent to %s (new rate %ld)\n", | 526 | pr_debug("clock: %s: set parent to %s (new rate %ld)\n", |
507 | clk->name, clk->parent->name, clk->rate); | 527 | __clk_get_name(clk), |
528 | __clk_get_name(__clk_get_parent(clk)), | ||
529 | __clk_get_rate(clk)); | ||
508 | 530 | ||
509 | return 0; | 531 | return 0; |
510 | } | 532 | } |
diff --git a/arch/arm/mach-omap2/clkt_dpll.c b/arch/arm/mach-omap2/clkt_dpll.c index cd7fd0f91149..80411142f482 100644 --- a/arch/arm/mach-omap2/clkt_dpll.c +++ b/arch/arm/mach-omap2/clkt_dpll.c | |||
@@ -22,8 +22,8 @@ | |||
22 | #include <asm/div64.h> | 22 | #include <asm/div64.h> |
23 | 23 | ||
24 | #include <plat/clock.h> | 24 | #include <plat/clock.h> |
25 | #include <plat/cpu.h> | ||
26 | 25 | ||
26 | #include "soc.h" | ||
27 | #include "clock.h" | 27 | #include "clock.h" |
28 | #include "cm-regbits-24xx.h" | 28 | #include "cm-regbits-24xx.h" |
29 | #include "cm-regbits-34xx.h" | 29 | #include "cm-regbits-34xx.h" |
@@ -87,7 +87,7 @@ static int _dpll_test_fint(struct clk *clk, u8 n) | |||
87 | dd = clk->dpll_data; | 87 | dd = clk->dpll_data; |
88 | 88 | ||
89 | /* DPLL divider must result in a valid jitter correction val */ | 89 | /* DPLL divider must result in a valid jitter correction val */ |
90 | fint = clk->parent->rate / n; | 90 | fint = __clk_get_rate(__clk_get_parent(clk)) / n; |
91 | 91 | ||
92 | if (cpu_is_omap24xx()) { | 92 | if (cpu_is_omap24xx()) { |
93 | /* Should not be called for OMAP2, so warn if it is called */ | 93 | /* Should not be called for OMAP2, so warn if it is called */ |
@@ -105,13 +105,13 @@ static int _dpll_test_fint(struct clk *clk, u8 n) | |||
105 | } | 105 | } |
106 | 106 | ||
107 | if (fint < fint_min) { | 107 | if (fint < fint_min) { |
108 | pr_debug("rejecting n=%d due to Fint failure, " | 108 | pr_debug("rejecting n=%d due to Fint failure, lowering max_divider\n", |
109 | "lowering max_divider\n", n); | 109 | n); |
110 | dd->max_divider = n; | 110 | dd->max_divider = n; |
111 | ret = DPLL_FINT_UNDERFLOW; | 111 | ret = DPLL_FINT_UNDERFLOW; |
112 | } else if (fint > fint_max) { | 112 | } else if (fint > fint_max) { |
113 | pr_debug("rejecting n=%d due to Fint failure, " | 113 | pr_debug("rejecting n=%d due to Fint failure, boosting min_divider\n", |
114 | "boosting min_divider\n", n); | 114 | n); |
115 | dd->min_divider = n; | 115 | dd->min_divider = n; |
116 | ret = DPLL_FINT_INVALID; | 116 | ret = DPLL_FINT_INVALID; |
117 | } else if (cpu_is_omap3430() && fint > OMAP3430_DPLL_FINT_BAND1_MAX && | 117 | } else if (cpu_is_omap3430() && fint > OMAP3430_DPLL_FINT_BAND1_MAX && |
@@ -211,7 +211,7 @@ void omap2_init_dpll_parent(struct clk *clk) | |||
211 | if (v == OMAP3XXX_EN_DPLL_LPBYPASS || | 211 | if (v == OMAP3XXX_EN_DPLL_LPBYPASS || |
212 | v == OMAP3XXX_EN_DPLL_FRBYPASS) | 212 | v == OMAP3XXX_EN_DPLL_FRBYPASS) |
213 | clk_reparent(clk, dd->clk_bypass); | 213 | clk_reparent(clk, dd->clk_bypass); |
214 | } else if (cpu_is_omap44xx()) { | 214 | } else if (soc_is_am33xx() || cpu_is_omap44xx()) { |
215 | if (v == OMAP4XXX_EN_DPLL_LPBYPASS || | 215 | if (v == OMAP4XXX_EN_DPLL_LPBYPASS || |
216 | v == OMAP4XXX_EN_DPLL_FRBYPASS || | 216 | v == OMAP4XXX_EN_DPLL_FRBYPASS || |
217 | v == OMAP4XXX_EN_DPLL_MNBYPASS) | 217 | v == OMAP4XXX_EN_DPLL_MNBYPASS) |
@@ -252,16 +252,16 @@ u32 omap2_get_dpll_rate(struct clk *clk) | |||
252 | if (cpu_is_omap24xx()) { | 252 | if (cpu_is_omap24xx()) { |
253 | if (v == OMAP2XXX_EN_DPLL_LPBYPASS || | 253 | if (v == OMAP2XXX_EN_DPLL_LPBYPASS || |
254 | v == OMAP2XXX_EN_DPLL_FRBYPASS) | 254 | v == OMAP2XXX_EN_DPLL_FRBYPASS) |
255 | return dd->clk_bypass->rate; | 255 | return __clk_get_rate(dd->clk_bypass); |
256 | } else if (cpu_is_omap34xx()) { | 256 | } else if (cpu_is_omap34xx()) { |
257 | if (v == OMAP3XXX_EN_DPLL_LPBYPASS || | 257 | if (v == OMAP3XXX_EN_DPLL_LPBYPASS || |
258 | v == OMAP3XXX_EN_DPLL_FRBYPASS) | 258 | v == OMAP3XXX_EN_DPLL_FRBYPASS) |
259 | return dd->clk_bypass->rate; | 259 | return __clk_get_rate(dd->clk_bypass); |
260 | } else if (cpu_is_omap44xx()) { | 260 | } else if (soc_is_am33xx() || cpu_is_omap44xx()) { |
261 | if (v == OMAP4XXX_EN_DPLL_LPBYPASS || | 261 | if (v == OMAP4XXX_EN_DPLL_LPBYPASS || |
262 | v == OMAP4XXX_EN_DPLL_FRBYPASS || | 262 | v == OMAP4XXX_EN_DPLL_FRBYPASS || |
263 | v == OMAP4XXX_EN_DPLL_MNBYPASS) | 263 | v == OMAP4XXX_EN_DPLL_MNBYPASS) |
264 | return dd->clk_bypass->rate; | 264 | return __clk_get_rate(dd->clk_bypass); |
265 | } | 265 | } |
266 | 266 | ||
267 | v = __raw_readl(dd->mult_div1_reg); | 267 | v = __raw_readl(dd->mult_div1_reg); |
@@ -270,7 +270,7 @@ u32 omap2_get_dpll_rate(struct clk *clk) | |||
270 | dpll_div = v & dd->div1_mask; | 270 | dpll_div = v & dd->div1_mask; |
271 | dpll_div >>= __ffs(dd->div1_mask); | 271 | dpll_div >>= __ffs(dd->div1_mask); |
272 | 272 | ||
273 | dpll_clk = (long long)dd->clk_ref->rate * dpll_mult; | 273 | dpll_clk = (long long) __clk_get_rate(dd->clk_ref) * dpll_mult; |
274 | do_div(dpll_clk, dpll_div + 1); | 274 | do_div(dpll_clk, dpll_div + 1); |
275 | 275 | ||
276 | return dpll_clk; | 276 | return dpll_clk; |
@@ -296,16 +296,20 @@ long omap2_dpll_round_rate(struct clk *clk, unsigned long target_rate) | |||
296 | unsigned long scaled_rt_rp; | 296 | unsigned long scaled_rt_rp; |
297 | unsigned long new_rate = 0; | 297 | unsigned long new_rate = 0; |
298 | struct dpll_data *dd; | 298 | struct dpll_data *dd; |
299 | unsigned long ref_rate; | ||
300 | const char *clk_name; | ||
299 | 301 | ||
300 | if (!clk || !clk->dpll_data) | 302 | if (!clk || !clk->dpll_data) |
301 | return ~0; | 303 | return ~0; |
302 | 304 | ||
303 | dd = clk->dpll_data; | 305 | dd = clk->dpll_data; |
304 | 306 | ||
307 | ref_rate = __clk_get_rate(dd->clk_ref); | ||
308 | clk_name = __clk_get_name(clk); | ||
305 | pr_debug("clock: %s: starting DPLL round_rate, target rate %ld\n", | 309 | pr_debug("clock: %s: starting DPLL round_rate, target rate %ld\n", |
306 | clk->name, target_rate); | 310 | clk_name, target_rate); |
307 | 311 | ||
308 | scaled_rt_rp = target_rate / (dd->clk_ref->rate / DPLL_SCALE_FACTOR); | 312 | scaled_rt_rp = target_rate / (ref_rate / DPLL_SCALE_FACTOR); |
309 | scaled_max_m = dd->max_multiplier * DPLL_SCALE_FACTOR; | 313 | scaled_max_m = dd->max_multiplier * DPLL_SCALE_FACTOR; |
310 | 314 | ||
311 | dd->last_rounded_rate = 0; | 315 | dd->last_rounded_rate = 0; |
@@ -332,14 +336,14 @@ long omap2_dpll_round_rate(struct clk *clk, unsigned long target_rate) | |||
332 | break; | 336 | break; |
333 | 337 | ||
334 | r = _dpll_test_mult(&m, n, &new_rate, target_rate, | 338 | r = _dpll_test_mult(&m, n, &new_rate, target_rate, |
335 | dd->clk_ref->rate); | 339 | ref_rate); |
336 | 340 | ||
337 | /* m can't be set low enough for this n - try with a larger n */ | 341 | /* m can't be set low enough for this n - try with a larger n */ |
338 | if (r == DPLL_MULT_UNDERFLOW) | 342 | if (r == DPLL_MULT_UNDERFLOW) |
339 | continue; | 343 | continue; |
340 | 344 | ||
341 | pr_debug("clock: %s: m = %d: n = %d: new_rate = %ld\n", | 345 | pr_debug("clock: %s: m = %d: n = %d: new_rate = %ld\n", |
342 | clk->name, m, n, new_rate); | 346 | clk_name, m, n, new_rate); |
343 | 347 | ||
344 | if (target_rate == new_rate) { | 348 | if (target_rate == new_rate) { |
345 | dd->last_rounded_m = m; | 349 | dd->last_rounded_m = m; |
@@ -350,8 +354,8 @@ long omap2_dpll_round_rate(struct clk *clk, unsigned long target_rate) | |||
350 | } | 354 | } |
351 | 355 | ||
352 | if (target_rate != new_rate) { | 356 | if (target_rate != new_rate) { |
353 | pr_debug("clock: %s: cannot round to rate %ld\n", clk->name, | 357 | pr_debug("clock: %s: cannot round to rate %ld\n", |
354 | target_rate); | 358 | clk_name, target_rate); |
355 | return ~0; | 359 | return ~0; |
356 | } | 360 | } |
357 | 361 | ||
diff --git a/arch/arm/mach-omap2/clock.c b/arch/arm/mach-omap2/clock.c index ea3f565ba1a4..961ac8f7e13d 100644 --- a/arch/arm/mach-omap2/clock.c +++ b/arch/arm/mach-omap2/clock.c | |||
@@ -22,14 +22,16 @@ | |||
22 | #include <linux/clk.h> | 22 | #include <linux/clk.h> |
23 | #include <linux/io.h> | 23 | #include <linux/io.h> |
24 | #include <linux/bitops.h> | 24 | #include <linux/bitops.h> |
25 | #include <trace/events/power.h> | ||
26 | 25 | ||
27 | #include <asm/cpu.h> | 26 | #include <asm/cpu.h> |
27 | |||
28 | #include <plat/clock.h> | 28 | #include <plat/clock.h> |
29 | #include "clockdomain.h" | ||
30 | #include <plat/cpu.h> | ||
31 | #include <plat/prcm.h> | 29 | #include <plat/prcm.h> |
32 | 30 | ||
31 | #include <trace/events/power.h> | ||
32 | |||
33 | #include "soc.h" | ||
34 | #include "clockdomain.h" | ||
33 | #include "clock.h" | 35 | #include "clock.h" |
34 | #include "cm2xxx_3xxx.h" | 36 | #include "cm2xxx_3xxx.h" |
35 | #include "cm-regbits-24xx.h" | 37 | #include "cm-regbits-24xx.h" |
@@ -76,7 +78,7 @@ static void _omap2_module_wait_ready(struct clk *clk) | |||
76 | clk->ops->find_idlest(clk, &idlest_reg, &idlest_bit, &idlest_val); | 78 | clk->ops->find_idlest(clk, &idlest_reg, &idlest_bit, &idlest_val); |
77 | 79 | ||
78 | omap2_cm_wait_idlest(idlest_reg, (1 << idlest_bit), idlest_val, | 80 | omap2_cm_wait_idlest(idlest_reg, (1 << idlest_bit), idlest_val, |
79 | clk->name); | 81 | __clk_get_name(clk)); |
80 | } | 82 | } |
81 | 83 | ||
82 | /* Public functions */ | 84 | /* Public functions */ |
@@ -92,18 +94,21 @@ static void _omap2_module_wait_ready(struct clk *clk) | |||
92 | void omap2_init_clk_clkdm(struct clk *clk) | 94 | void omap2_init_clk_clkdm(struct clk *clk) |
93 | { | 95 | { |
94 | struct clockdomain *clkdm; | 96 | struct clockdomain *clkdm; |
97 | const char *clk_name; | ||
95 | 98 | ||
96 | if (!clk->clkdm_name) | 99 | if (!clk->clkdm_name) |
97 | return; | 100 | return; |
98 | 101 | ||
102 | clk_name = __clk_get_name(clk); | ||
103 | |||
99 | clkdm = clkdm_lookup(clk->clkdm_name); | 104 | clkdm = clkdm_lookup(clk->clkdm_name); |
100 | if (clkdm) { | 105 | if (clkdm) { |
101 | pr_debug("clock: associated clk %s to clkdm %s\n", | 106 | pr_debug("clock: associated clk %s to clkdm %s\n", |
102 | clk->name, clk->clkdm_name); | 107 | clk_name, clk->clkdm_name); |
103 | clk->clkdm = clkdm; | 108 | clk->clkdm = clkdm; |
104 | } else { | 109 | } else { |
105 | pr_debug("clock: could not associate clk %s to " | 110 | pr_debug("clock: could not associate clk %s to clkdm %s\n", |
106 | "clkdm %s\n", clk->name, clk->clkdm_name); | 111 | clk_name, clk->clkdm_name); |
107 | } | 112 | } |
108 | } | 113 | } |
109 | 114 | ||
@@ -226,8 +231,7 @@ void omap2_dflt_clk_disable(struct clk *clk) | |||
226 | * 'Independent' here refers to a clock which is not | 231 | * 'Independent' here refers to a clock which is not |
227 | * controlled by its parent. | 232 | * controlled by its parent. |
228 | */ | 233 | */ |
229 | printk(KERN_ERR "clock: clk_disable called on independent " | 234 | pr_err("clock: clk_disable called on independent clock %s which has no enable_reg\n", clk->name); |
230 | "clock %s which has no enable_reg\n", clk->name); | ||
231 | return; | 235 | return; |
232 | } | 236 | } |
233 | 237 | ||
@@ -270,8 +274,7 @@ const struct clkops clkops_omap2_dflt = { | |||
270 | void omap2_clk_disable(struct clk *clk) | 274 | void omap2_clk_disable(struct clk *clk) |
271 | { | 275 | { |
272 | if (clk->usecount == 0) { | 276 | if (clk->usecount == 0) { |
273 | WARN(1, "clock: %s: omap2_clk_disable() called, but usecount " | 277 | WARN(1, "clock: %s: omap2_clk_disable() called, but usecount already 0?", clk->name); |
274 | "already 0?", clk->name); | ||
275 | return; | 278 | return; |
276 | } | 279 | } |
277 | 280 | ||
@@ -332,8 +335,8 @@ int omap2_clk_enable(struct clk *clk) | |||
332 | if (clkdm_control && clk->clkdm) { | 335 | if (clkdm_control && clk->clkdm) { |
333 | ret = clkdm_clk_enable(clk->clkdm, clk); | 336 | ret = clkdm_clk_enable(clk->clkdm, clk); |
334 | if (ret) { | 337 | if (ret) { |
335 | WARN(1, "clock: %s: could not enable clockdomain %s: " | 338 | WARN(1, "clock: %s: could not enable clockdomain %s: %d\n", |
336 | "%d\n", clk->name, clk->clkdm->name, ret); | 339 | clk->name, clk->clkdm->name, ret); |
337 | goto oce_err2; | 340 | goto oce_err2; |
338 | } | 341 | } |
339 | } | 342 | } |
@@ -501,10 +504,8 @@ void __init omap2_clk_print_new_rates(const char *hfclkin_ck_name, | |||
501 | 504 | ||
502 | hfclkin_rate = clk_get_rate(hfclkin_ck); | 505 | hfclkin_rate = clk_get_rate(hfclkin_ck); |
503 | 506 | ||
504 | pr_info("Switched to new clocking rate (Crystal/Core/MPU): " | 507 | pr_info("Switched to new clocking rate (Crystal/Core/MPU): %ld.%01ld/%ld/%ld MHz\n", |
505 | "%ld.%01ld/%ld/%ld MHz\n", | 508 | (hfclkin_rate / 1000000), ((hfclkin_rate / 100000) % 10), |
506 | (hfclkin_rate / 1000000), | ||
507 | ((hfclkin_rate / 100000) % 10), | ||
508 | (clk_get_rate(core_ck) / 1000000), | 509 | (clk_get_rate(core_ck) / 1000000), |
509 | (clk_get_rate(mpu_ck) / 1000000)); | 510 | (clk_get_rate(mpu_ck) / 1000000)); |
510 | } | 511 | } |
diff --git a/arch/arm/mach-omap2/clock2420_data.c b/arch/arm/mach-omap2/clock2420_data.c index 002745181ad6..c3cde1a2b6de 100644 --- a/arch/arm/mach-omap2/clock2420_data.c +++ b/arch/arm/mach-omap2/clock2420_data.c | |||
@@ -18,9 +18,9 @@ | |||
18 | #include <linux/clk.h> | 18 | #include <linux/clk.h> |
19 | #include <linux/list.h> | 19 | #include <linux/list.h> |
20 | 20 | ||
21 | #include <plat/hardware.h> | ||
22 | #include <plat/clkdev_omap.h> | 21 | #include <plat/clkdev_omap.h> |
23 | 22 | ||
23 | #include "soc.h" | ||
24 | #include "iomap.h" | 24 | #include "iomap.h" |
25 | #include "clock.h" | 25 | #include "clock.h" |
26 | #include "clock2xxx.h" | 26 | #include "clock2xxx.h" |
@@ -1804,6 +1804,7 @@ static struct omap_clk omap2420_clks[] = { | |||
1804 | CLK(NULL, "gfx_ick", &gfx_ick, CK_242X), | 1804 | CLK(NULL, "gfx_ick", &gfx_ick, CK_242X), |
1805 | /* DSS domain clocks */ | 1805 | /* DSS domain clocks */ |
1806 | CLK("omapdss_dss", "ick", &dss_ick, CK_242X), | 1806 | CLK("omapdss_dss", "ick", &dss_ick, CK_242X), |
1807 | CLK(NULL, "dss_ick", &dss_ick, CK_242X), | ||
1807 | CLK(NULL, "dss1_fck", &dss1_fck, CK_242X), | 1808 | CLK(NULL, "dss1_fck", &dss1_fck, CK_242X), |
1808 | CLK(NULL, "dss2_fck", &dss2_fck, CK_242X), | 1809 | CLK(NULL, "dss2_fck", &dss2_fck, CK_242X), |
1809 | CLK(NULL, "dss_54m_fck", &dss_54m_fck, CK_242X), | 1810 | CLK(NULL, "dss_54m_fck", &dss_54m_fck, CK_242X), |
@@ -1843,12 +1844,16 @@ static struct omap_clk omap2420_clks[] = { | |||
1843 | CLK(NULL, "gpt12_ick", &gpt12_ick, CK_242X), | 1844 | CLK(NULL, "gpt12_ick", &gpt12_ick, CK_242X), |
1844 | CLK(NULL, "gpt12_fck", &gpt12_fck, CK_242X), | 1845 | CLK(NULL, "gpt12_fck", &gpt12_fck, CK_242X), |
1845 | CLK("omap-mcbsp.1", "ick", &mcbsp1_ick, CK_242X), | 1846 | CLK("omap-mcbsp.1", "ick", &mcbsp1_ick, CK_242X), |
1847 | CLK(NULL, "mcbsp1_ick", &mcbsp1_ick, CK_242X), | ||
1846 | CLK(NULL, "mcbsp1_fck", &mcbsp1_fck, CK_242X), | 1848 | CLK(NULL, "mcbsp1_fck", &mcbsp1_fck, CK_242X), |
1847 | CLK("omap-mcbsp.2", "ick", &mcbsp2_ick, CK_242X), | 1849 | CLK("omap-mcbsp.2", "ick", &mcbsp2_ick, CK_242X), |
1850 | CLK(NULL, "mcbsp2_ick", &mcbsp2_ick, CK_242X), | ||
1848 | CLK(NULL, "mcbsp2_fck", &mcbsp2_fck, CK_242X), | 1851 | CLK(NULL, "mcbsp2_fck", &mcbsp2_fck, CK_242X), |
1849 | CLK("omap2_mcspi.1", "ick", &mcspi1_ick, CK_242X), | 1852 | CLK("omap2_mcspi.1", "ick", &mcspi1_ick, CK_242X), |
1853 | CLK(NULL, "mcspi1_ick", &mcspi1_ick, CK_242X), | ||
1850 | CLK(NULL, "mcspi1_fck", &mcspi1_fck, CK_242X), | 1854 | CLK(NULL, "mcspi1_fck", &mcspi1_fck, CK_242X), |
1851 | CLK("omap2_mcspi.2", "ick", &mcspi2_ick, CK_242X), | 1855 | CLK("omap2_mcspi.2", "ick", &mcspi2_ick, CK_242X), |
1856 | CLK(NULL, "mcspi2_ick", &mcspi2_ick, CK_242X), | ||
1852 | CLK(NULL, "mcspi2_fck", &mcspi2_fck, CK_242X), | 1857 | CLK(NULL, "mcspi2_fck", &mcspi2_fck, CK_242X), |
1853 | CLK(NULL, "uart1_ick", &uart1_ick, CK_242X), | 1858 | CLK(NULL, "uart1_ick", &uart1_ick, CK_242X), |
1854 | CLK(NULL, "uart1_fck", &uart1_fck, CK_242X), | 1859 | CLK(NULL, "uart1_fck", &uart1_fck, CK_242X), |
@@ -1859,12 +1864,15 @@ static struct omap_clk omap2420_clks[] = { | |||
1859 | CLK(NULL, "gpios_ick", &gpios_ick, CK_242X), | 1864 | CLK(NULL, "gpios_ick", &gpios_ick, CK_242X), |
1860 | CLK(NULL, "gpios_fck", &gpios_fck, CK_242X), | 1865 | CLK(NULL, "gpios_fck", &gpios_fck, CK_242X), |
1861 | CLK("omap_wdt", "ick", &mpu_wdt_ick, CK_242X), | 1866 | CLK("omap_wdt", "ick", &mpu_wdt_ick, CK_242X), |
1867 | CLK(NULL, "mpu_wdt_ick", &mpu_wdt_ick, CK_242X), | ||
1862 | CLK(NULL, "mpu_wdt_fck", &mpu_wdt_fck, CK_242X), | 1868 | CLK(NULL, "mpu_wdt_fck", &mpu_wdt_fck, CK_242X), |
1863 | CLK(NULL, "sync_32k_ick", &sync_32k_ick, CK_242X), | 1869 | CLK(NULL, "sync_32k_ick", &sync_32k_ick, CK_242X), |
1864 | CLK(NULL, "wdt1_ick", &wdt1_ick, CK_242X), | 1870 | CLK(NULL, "wdt1_ick", &wdt1_ick, CK_242X), |
1865 | CLK(NULL, "omapctrl_ick", &omapctrl_ick, CK_242X), | 1871 | CLK(NULL, "omapctrl_ick", &omapctrl_ick, CK_242X), |
1866 | CLK("omap24xxcam", "fck", &cam_fck, CK_242X), | 1872 | CLK("omap24xxcam", "fck", &cam_fck, CK_242X), |
1873 | CLK(NULL, "cam_fck", &cam_fck, CK_242X), | ||
1867 | CLK("omap24xxcam", "ick", &cam_ick, CK_242X), | 1874 | CLK("omap24xxcam", "ick", &cam_ick, CK_242X), |
1875 | CLK(NULL, "cam_ick", &cam_ick, CK_242X), | ||
1868 | CLK(NULL, "mailboxes_ick", &mailboxes_ick, CK_242X), | 1876 | CLK(NULL, "mailboxes_ick", &mailboxes_ick, CK_242X), |
1869 | CLK(NULL, "wdt4_ick", &wdt4_ick, CK_242X), | 1877 | CLK(NULL, "wdt4_ick", &wdt4_ick, CK_242X), |
1870 | CLK(NULL, "wdt4_fck", &wdt4_fck, CK_242X), | 1878 | CLK(NULL, "wdt4_fck", &wdt4_fck, CK_242X), |
@@ -1873,16 +1881,22 @@ static struct omap_clk omap2420_clks[] = { | |||
1873 | CLK(NULL, "mspro_ick", &mspro_ick, CK_242X), | 1881 | CLK(NULL, "mspro_ick", &mspro_ick, CK_242X), |
1874 | CLK(NULL, "mspro_fck", &mspro_fck, CK_242X), | 1882 | CLK(NULL, "mspro_fck", &mspro_fck, CK_242X), |
1875 | CLK("mmci-omap.0", "ick", &mmc_ick, CK_242X), | 1883 | CLK("mmci-omap.0", "ick", &mmc_ick, CK_242X), |
1884 | CLK(NULL, "mmc_ick", &mmc_ick, CK_242X), | ||
1876 | CLK("mmci-omap.0", "fck", &mmc_fck, CK_242X), | 1885 | CLK("mmci-omap.0", "fck", &mmc_fck, CK_242X), |
1886 | CLK(NULL, "mmc_fck", &mmc_fck, CK_242X), | ||
1877 | CLK(NULL, "fac_ick", &fac_ick, CK_242X), | 1887 | CLK(NULL, "fac_ick", &fac_ick, CK_242X), |
1878 | CLK(NULL, "fac_fck", &fac_fck, CK_242X), | 1888 | CLK(NULL, "fac_fck", &fac_fck, CK_242X), |
1879 | CLK(NULL, "eac_ick", &eac_ick, CK_242X), | 1889 | CLK(NULL, "eac_ick", &eac_ick, CK_242X), |
1880 | CLK(NULL, "eac_fck", &eac_fck, CK_242X), | 1890 | CLK(NULL, "eac_fck", &eac_fck, CK_242X), |
1881 | CLK("omap_hdq.0", "ick", &hdq_ick, CK_242X), | 1891 | CLK("omap_hdq.0", "ick", &hdq_ick, CK_242X), |
1892 | CLK(NULL, "hdq_ick", &hdq_ick, CK_242X), | ||
1882 | CLK("omap_hdq.0", "fck", &hdq_fck, CK_242X), | 1893 | CLK("omap_hdq.0", "fck", &hdq_fck, CK_242X), |
1894 | CLK(NULL, "hdq_fck", &hdq_fck, CK_242X), | ||
1883 | CLK("omap_i2c.1", "ick", &i2c1_ick, CK_242X), | 1895 | CLK("omap_i2c.1", "ick", &i2c1_ick, CK_242X), |
1896 | CLK(NULL, "i2c1_ick", &i2c1_ick, CK_242X), | ||
1884 | CLK(NULL, "i2c1_fck", &i2c1_fck, CK_242X), | 1897 | CLK(NULL, "i2c1_fck", &i2c1_fck, CK_242X), |
1885 | CLK("omap_i2c.2", "ick", &i2c2_ick, CK_242X), | 1898 | CLK("omap_i2c.2", "ick", &i2c2_ick, CK_242X), |
1899 | CLK(NULL, "i2c2_ick", &i2c2_ick, CK_242X), | ||
1886 | CLK(NULL, "i2c2_fck", &i2c2_fck, CK_242X), | 1900 | CLK(NULL, "i2c2_fck", &i2c2_fck, CK_242X), |
1887 | CLK(NULL, "gpmc_fck", &gpmc_fck, CK_242X), | 1901 | CLK(NULL, "gpmc_fck", &gpmc_fck, CK_242X), |
1888 | CLK(NULL, "sdma_fck", &sdma_fck, CK_242X), | 1902 | CLK(NULL, "sdma_fck", &sdma_fck, CK_242X), |
@@ -1892,14 +1906,18 @@ static struct omap_clk omap2420_clks[] = { | |||
1892 | CLK(NULL, "vlynq_fck", &vlynq_fck, CK_242X), | 1906 | CLK(NULL, "vlynq_fck", &vlynq_fck, CK_242X), |
1893 | CLK(NULL, "des_ick", &des_ick, CK_242X), | 1907 | CLK(NULL, "des_ick", &des_ick, CK_242X), |
1894 | CLK("omap-sham", "ick", &sha_ick, CK_242X), | 1908 | CLK("omap-sham", "ick", &sha_ick, CK_242X), |
1909 | CLK(NULL, "sha_ick", &sha_ick, CK_242X), | ||
1895 | CLK("omap_rng", "ick", &rng_ick, CK_242X), | 1910 | CLK("omap_rng", "ick", &rng_ick, CK_242X), |
1911 | CLK(NULL, "rng_ick", &rng_ick, CK_242X), | ||
1896 | CLK("omap-aes", "ick", &aes_ick, CK_242X), | 1912 | CLK("omap-aes", "ick", &aes_ick, CK_242X), |
1913 | CLK(NULL, "aes_ick", &aes_ick, CK_242X), | ||
1897 | CLK(NULL, "pka_ick", &pka_ick, CK_242X), | 1914 | CLK(NULL, "pka_ick", &pka_ick, CK_242X), |
1898 | CLK(NULL, "usb_fck", &usb_fck, CK_242X), | 1915 | CLK(NULL, "usb_fck", &usb_fck, CK_242X), |
1899 | CLK("musb-hdrc", "fck", &osc_ck, CK_242X), | 1916 | CLK("musb-hdrc", "fck", &osc_ck, CK_242X), |
1900 | CLK(NULL, "timer_32k_ck", &func_32k_ck, CK_243X), | 1917 | CLK(NULL, "timer_32k_ck", &func_32k_ck, CK_242X), |
1901 | CLK(NULL, "timer_sys_ck", &sys_ck, CK_243X), | 1918 | CLK(NULL, "timer_sys_ck", &sys_ck, CK_242X), |
1902 | CLK(NULL, "timer_ext_ck", &alt_ck, CK_243X), | 1919 | CLK(NULL, "timer_ext_ck", &alt_ck, CK_242X), |
1920 | CLK(NULL, "cpufreq_ck", &virt_prcm_set, CK_242X), | ||
1903 | }; | 1921 | }; |
1904 | 1922 | ||
1905 | /* | 1923 | /* |
diff --git a/arch/arm/mach-omap2/clock2430.c b/arch/arm/mach-omap2/clock2430.c index dfda9a3f2cb2..a8e326177466 100644 --- a/arch/arm/mach-omap2/clock2430.c +++ b/arch/arm/mach-omap2/clock2430.c | |||
@@ -21,9 +21,9 @@ | |||
21 | #include <linux/clk.h> | 21 | #include <linux/clk.h> |
22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
23 | 23 | ||
24 | #include <plat/hardware.h> | ||
25 | #include <plat/clock.h> | 24 | #include <plat/clock.h> |
26 | 25 | ||
26 | #include "soc.h" | ||
27 | #include "iomap.h" | 27 | #include "iomap.h" |
28 | #include "clock.h" | 28 | #include "clock.h" |
29 | #include "clock2xxx.h" | 29 | #include "clock2xxx.h" |
diff --git a/arch/arm/mach-omap2/clock2430_data.c b/arch/arm/mach-omap2/clock2430_data.c index cacabb070e22..22404fe435e7 100644 --- a/arch/arm/mach-omap2/clock2430_data.c +++ b/arch/arm/mach-omap2/clock2430_data.c | |||
@@ -17,9 +17,9 @@ | |||
17 | #include <linux/clk.h> | 17 | #include <linux/clk.h> |
18 | #include <linux/list.h> | 18 | #include <linux/list.h> |
19 | 19 | ||
20 | #include <plat/hardware.h> | ||
21 | #include <plat/clkdev_omap.h> | 20 | #include <plat/clkdev_omap.h> |
22 | 21 | ||
22 | #include "soc.h" | ||
23 | #include "iomap.h" | 23 | #include "iomap.h" |
24 | #include "clock.h" | 24 | #include "clock.h" |
25 | #include "clock2xxx.h" | 25 | #include "clock2xxx.h" |
@@ -1856,6 +1856,7 @@ static struct omap_clk omap2430_clks[] = { | |||
1856 | CLK(NULL, "func_32k_ck", &func_32k_ck, CK_243X), | 1856 | CLK(NULL, "func_32k_ck", &func_32k_ck, CK_243X), |
1857 | CLK(NULL, "secure_32k_ck", &secure_32k_ck, CK_243X), | 1857 | CLK(NULL, "secure_32k_ck", &secure_32k_ck, CK_243X), |
1858 | CLK(NULL, "osc_ck", &osc_ck, CK_243X), | 1858 | CLK(NULL, "osc_ck", &osc_ck, CK_243X), |
1859 | CLK("twl", "fck", &osc_ck, CK_243X), | ||
1859 | CLK(NULL, "sys_ck", &sys_ck, CK_243X), | 1860 | CLK(NULL, "sys_ck", &sys_ck, CK_243X), |
1860 | CLK(NULL, "alt_ck", &alt_ck, CK_243X), | 1861 | CLK(NULL, "alt_ck", &alt_ck, CK_243X), |
1861 | CLK(NULL, "mcbsp_clks", &mcbsp_clks, CK_243X), | 1862 | CLK(NULL, "mcbsp_clks", &mcbsp_clks, CK_243X), |
@@ -1887,6 +1888,7 @@ static struct omap_clk omap2430_clks[] = { | |||
1887 | CLK(NULL, "mdm_osc_ck", &mdm_osc_ck, CK_243X), | 1888 | CLK(NULL, "mdm_osc_ck", &mdm_osc_ck, CK_243X), |
1888 | /* DSS domain clocks */ | 1889 | /* DSS domain clocks */ |
1889 | CLK("omapdss_dss", "ick", &dss_ick, CK_243X), | 1890 | CLK("omapdss_dss", "ick", &dss_ick, CK_243X), |
1891 | CLK(NULL, "dss_ick", &dss_ick, CK_243X), | ||
1890 | CLK(NULL, "dss1_fck", &dss1_fck, CK_243X), | 1892 | CLK(NULL, "dss1_fck", &dss1_fck, CK_243X), |
1891 | CLK(NULL, "dss2_fck", &dss2_fck, CK_243X), | 1893 | CLK(NULL, "dss2_fck", &dss2_fck, CK_243X), |
1892 | CLK(NULL, "dss_54m_fck", &dss_54m_fck, CK_243X), | 1894 | CLK(NULL, "dss_54m_fck", &dss_54m_fck, CK_243X), |
@@ -1926,20 +1928,28 @@ static struct omap_clk omap2430_clks[] = { | |||
1926 | CLK(NULL, "gpt12_ick", &gpt12_ick, CK_243X), | 1928 | CLK(NULL, "gpt12_ick", &gpt12_ick, CK_243X), |
1927 | CLK(NULL, "gpt12_fck", &gpt12_fck, CK_243X), | 1929 | CLK(NULL, "gpt12_fck", &gpt12_fck, CK_243X), |
1928 | CLK("omap-mcbsp.1", "ick", &mcbsp1_ick, CK_243X), | 1930 | CLK("omap-mcbsp.1", "ick", &mcbsp1_ick, CK_243X), |
1931 | CLK(NULL, "mcbsp1_ick", &mcbsp1_ick, CK_243X), | ||
1929 | CLK(NULL, "mcbsp1_fck", &mcbsp1_fck, CK_243X), | 1932 | CLK(NULL, "mcbsp1_fck", &mcbsp1_fck, CK_243X), |
1930 | CLK("omap-mcbsp.2", "ick", &mcbsp2_ick, CK_243X), | 1933 | CLK("omap-mcbsp.2", "ick", &mcbsp2_ick, CK_243X), |
1934 | CLK(NULL, "mcbsp2_ick", &mcbsp2_ick, CK_243X), | ||
1931 | CLK(NULL, "mcbsp2_fck", &mcbsp2_fck, CK_243X), | 1935 | CLK(NULL, "mcbsp2_fck", &mcbsp2_fck, CK_243X), |
1932 | CLK("omap-mcbsp.3", "ick", &mcbsp3_ick, CK_243X), | 1936 | CLK("omap-mcbsp.3", "ick", &mcbsp3_ick, CK_243X), |
1937 | CLK(NULL, "mcbsp3_ick", &mcbsp3_ick, CK_243X), | ||
1933 | CLK(NULL, "mcbsp3_fck", &mcbsp3_fck, CK_243X), | 1938 | CLK(NULL, "mcbsp3_fck", &mcbsp3_fck, CK_243X), |
1934 | CLK("omap-mcbsp.4", "ick", &mcbsp4_ick, CK_243X), | 1939 | CLK("omap-mcbsp.4", "ick", &mcbsp4_ick, CK_243X), |
1940 | CLK(NULL, "mcbsp4_ick", &mcbsp4_ick, CK_243X), | ||
1935 | CLK(NULL, "mcbsp4_fck", &mcbsp4_fck, CK_243X), | 1941 | CLK(NULL, "mcbsp4_fck", &mcbsp4_fck, CK_243X), |
1936 | CLK("omap-mcbsp.5", "ick", &mcbsp5_ick, CK_243X), | 1942 | CLK("omap-mcbsp.5", "ick", &mcbsp5_ick, CK_243X), |
1943 | CLK(NULL, "mcbsp5_ick", &mcbsp5_ick, CK_243X), | ||
1937 | CLK(NULL, "mcbsp5_fck", &mcbsp5_fck, CK_243X), | 1944 | CLK(NULL, "mcbsp5_fck", &mcbsp5_fck, CK_243X), |
1938 | CLK("omap2_mcspi.1", "ick", &mcspi1_ick, CK_243X), | 1945 | CLK("omap2_mcspi.1", "ick", &mcspi1_ick, CK_243X), |
1946 | CLK(NULL, "mcspi1_ick", &mcspi1_ick, CK_243X), | ||
1939 | CLK(NULL, "mcspi1_fck", &mcspi1_fck, CK_243X), | 1947 | CLK(NULL, "mcspi1_fck", &mcspi1_fck, CK_243X), |
1940 | CLK("omap2_mcspi.2", "ick", &mcspi2_ick, CK_243X), | 1948 | CLK("omap2_mcspi.2", "ick", &mcspi2_ick, CK_243X), |
1949 | CLK(NULL, "mcspi2_ick", &mcspi2_ick, CK_243X), | ||
1941 | CLK(NULL, "mcspi2_fck", &mcspi2_fck, CK_243X), | 1950 | CLK(NULL, "mcspi2_fck", &mcspi2_fck, CK_243X), |
1942 | CLK("omap2_mcspi.3", "ick", &mcspi3_ick, CK_243X), | 1951 | CLK("omap2_mcspi.3", "ick", &mcspi3_ick, CK_243X), |
1952 | CLK(NULL, "mcspi3_ick", &mcspi3_ick, CK_243X), | ||
1943 | CLK(NULL, "mcspi3_fck", &mcspi3_fck, CK_243X), | 1953 | CLK(NULL, "mcspi3_fck", &mcspi3_fck, CK_243X), |
1944 | CLK(NULL, "uart1_ick", &uart1_ick, CK_243X), | 1954 | CLK(NULL, "uart1_ick", &uart1_ick, CK_243X), |
1945 | CLK(NULL, "uart1_fck", &uart1_fck, CK_243X), | 1955 | CLK(NULL, "uart1_fck", &uart1_fck, CK_243X), |
@@ -1950,13 +1960,16 @@ static struct omap_clk omap2430_clks[] = { | |||
1950 | CLK(NULL, "gpios_ick", &gpios_ick, CK_243X), | 1960 | CLK(NULL, "gpios_ick", &gpios_ick, CK_243X), |
1951 | CLK(NULL, "gpios_fck", &gpios_fck, CK_243X), | 1961 | CLK(NULL, "gpios_fck", &gpios_fck, CK_243X), |
1952 | CLK("omap_wdt", "ick", &mpu_wdt_ick, CK_243X), | 1962 | CLK("omap_wdt", "ick", &mpu_wdt_ick, CK_243X), |
1963 | CLK(NULL, "mpu_wdt_ick", &mpu_wdt_ick, CK_243X), | ||
1953 | CLK(NULL, "mpu_wdt_fck", &mpu_wdt_fck, CK_243X), | 1964 | CLK(NULL, "mpu_wdt_fck", &mpu_wdt_fck, CK_243X), |
1954 | CLK(NULL, "sync_32k_ick", &sync_32k_ick, CK_243X), | 1965 | CLK(NULL, "sync_32k_ick", &sync_32k_ick, CK_243X), |
1955 | CLK(NULL, "wdt1_ick", &wdt1_ick, CK_243X), | 1966 | CLK(NULL, "wdt1_ick", &wdt1_ick, CK_243X), |
1956 | CLK(NULL, "omapctrl_ick", &omapctrl_ick, CK_243X), | 1967 | CLK(NULL, "omapctrl_ick", &omapctrl_ick, CK_243X), |
1957 | CLK(NULL, "icr_ick", &icr_ick, CK_243X), | 1968 | CLK(NULL, "icr_ick", &icr_ick, CK_243X), |
1958 | CLK("omap24xxcam", "fck", &cam_fck, CK_243X), | 1969 | CLK("omap24xxcam", "fck", &cam_fck, CK_243X), |
1970 | CLK(NULL, "cam_fck", &cam_fck, CK_243X), | ||
1959 | CLK("omap24xxcam", "ick", &cam_ick, CK_243X), | 1971 | CLK("omap24xxcam", "ick", &cam_ick, CK_243X), |
1972 | CLK(NULL, "cam_ick", &cam_ick, CK_243X), | ||
1960 | CLK(NULL, "mailboxes_ick", &mailboxes_ick, CK_243X), | 1973 | CLK(NULL, "mailboxes_ick", &mailboxes_ick, CK_243X), |
1961 | CLK(NULL, "wdt4_ick", &wdt4_ick, CK_243X), | 1974 | CLK(NULL, "wdt4_ick", &wdt4_ick, CK_243X), |
1962 | CLK(NULL, "wdt4_fck", &wdt4_fck, CK_243X), | 1975 | CLK(NULL, "wdt4_fck", &wdt4_fck, CK_243X), |
@@ -1965,10 +1978,14 @@ static struct omap_clk omap2430_clks[] = { | |||
1965 | CLK(NULL, "fac_ick", &fac_ick, CK_243X), | 1978 | CLK(NULL, "fac_ick", &fac_ick, CK_243X), |
1966 | CLK(NULL, "fac_fck", &fac_fck, CK_243X), | 1979 | CLK(NULL, "fac_fck", &fac_fck, CK_243X), |
1967 | CLK("omap_hdq.0", "ick", &hdq_ick, CK_243X), | 1980 | CLK("omap_hdq.0", "ick", &hdq_ick, CK_243X), |
1981 | CLK(NULL, "hdq_ick", &hdq_ick, CK_243X), | ||
1968 | CLK("omap_hdq.1", "fck", &hdq_fck, CK_243X), | 1982 | CLK("omap_hdq.1", "fck", &hdq_fck, CK_243X), |
1983 | CLK(NULL, "hdq_fck", &hdq_fck, CK_243X), | ||
1969 | CLK("omap_i2c.1", "ick", &i2c1_ick, CK_243X), | 1984 | CLK("omap_i2c.1", "ick", &i2c1_ick, CK_243X), |
1985 | CLK(NULL, "i2c1_ick", &i2c1_ick, CK_243X), | ||
1970 | CLK(NULL, "i2chs1_fck", &i2chs1_fck, CK_243X), | 1986 | CLK(NULL, "i2chs1_fck", &i2chs1_fck, CK_243X), |
1971 | CLK("omap_i2c.2", "ick", &i2c2_ick, CK_243X), | 1987 | CLK("omap_i2c.2", "ick", &i2c2_ick, CK_243X), |
1988 | CLK(NULL, "i2c2_ick", &i2c2_ick, CK_243X), | ||
1972 | CLK(NULL, "i2chs2_fck", &i2chs2_fck, CK_243X), | 1989 | CLK(NULL, "i2chs2_fck", &i2chs2_fck, CK_243X), |
1973 | CLK(NULL, "gpmc_fck", &gpmc_fck, CK_243X), | 1990 | CLK(NULL, "gpmc_fck", &gpmc_fck, CK_243X), |
1974 | CLK(NULL, "sdma_fck", &sdma_fck, CK_243X), | 1991 | CLK(NULL, "sdma_fck", &sdma_fck, CK_243X), |
@@ -1977,22 +1994,29 @@ static struct omap_clk omap2430_clks[] = { | |||
1977 | CLK(NULL, "des_ick", &des_ick, CK_243X), | 1994 | CLK(NULL, "des_ick", &des_ick, CK_243X), |
1978 | CLK("omap-sham", "ick", &sha_ick, CK_243X), | 1995 | CLK("omap-sham", "ick", &sha_ick, CK_243X), |
1979 | CLK("omap_rng", "ick", &rng_ick, CK_243X), | 1996 | CLK("omap_rng", "ick", &rng_ick, CK_243X), |
1997 | CLK(NULL, "rng_ick", &rng_ick, CK_243X), | ||
1980 | CLK("omap-aes", "ick", &aes_ick, CK_243X), | 1998 | CLK("omap-aes", "ick", &aes_ick, CK_243X), |
1981 | CLK(NULL, "pka_ick", &pka_ick, CK_243X), | 1999 | CLK(NULL, "pka_ick", &pka_ick, CK_243X), |
1982 | CLK(NULL, "usb_fck", &usb_fck, CK_243X), | 2000 | CLK(NULL, "usb_fck", &usb_fck, CK_243X), |
1983 | CLK("musb-omap2430", "ick", &usbhs_ick, CK_243X), | 2001 | CLK("musb-omap2430", "ick", &usbhs_ick, CK_243X), |
2002 | CLK(NULL, "usbhs_ick", &usbhs_ick, CK_243X), | ||
1984 | CLK("omap_hsmmc.0", "ick", &mmchs1_ick, CK_243X), | 2003 | CLK("omap_hsmmc.0", "ick", &mmchs1_ick, CK_243X), |
2004 | CLK(NULL, "mmchs1_ick", &mmchs1_ick, CK_243X), | ||
1985 | CLK(NULL, "mmchs1_fck", &mmchs1_fck, CK_243X), | 2005 | CLK(NULL, "mmchs1_fck", &mmchs1_fck, CK_243X), |
1986 | CLK("omap_hsmmc.1", "ick", &mmchs2_ick, CK_243X), | 2006 | CLK("omap_hsmmc.1", "ick", &mmchs2_ick, CK_243X), |
2007 | CLK(NULL, "mmchs2_ick", &mmchs2_ick, CK_243X), | ||
1987 | CLK(NULL, "mmchs2_fck", &mmchs2_fck, CK_243X), | 2008 | CLK(NULL, "mmchs2_fck", &mmchs2_fck, CK_243X), |
1988 | CLK(NULL, "gpio5_ick", &gpio5_ick, CK_243X), | 2009 | CLK(NULL, "gpio5_ick", &gpio5_ick, CK_243X), |
1989 | CLK(NULL, "gpio5_fck", &gpio5_fck, CK_243X), | 2010 | CLK(NULL, "gpio5_fck", &gpio5_fck, CK_243X), |
1990 | CLK(NULL, "mdm_intc_ick", &mdm_intc_ick, CK_243X), | 2011 | CLK(NULL, "mdm_intc_ick", &mdm_intc_ick, CK_243X), |
1991 | CLK("omap_hsmmc.0", "mmchsdb_fck", &mmchsdb1_fck, CK_243X), | 2012 | CLK("omap_hsmmc.0", "mmchsdb_fck", &mmchsdb1_fck, CK_243X), |
2013 | CLK(NULL, "mmchsdb1_fck", &mmchsdb1_fck, CK_243X), | ||
1992 | CLK("omap_hsmmc.1", "mmchsdb_fck", &mmchsdb2_fck, CK_243X), | 2014 | CLK("omap_hsmmc.1", "mmchsdb_fck", &mmchsdb2_fck, CK_243X), |
2015 | CLK(NULL, "mmchsdb2_fck", &mmchsdb2_fck, CK_243X), | ||
1993 | CLK(NULL, "timer_32k_ck", &func_32k_ck, CK_243X), | 2016 | CLK(NULL, "timer_32k_ck", &func_32k_ck, CK_243X), |
1994 | CLK(NULL, "timer_sys_ck", &sys_ck, CK_243X), | 2017 | CLK(NULL, "timer_sys_ck", &sys_ck, CK_243X), |
1995 | CLK(NULL, "timer_ext_ck", &alt_ck, CK_243X), | 2018 | CLK(NULL, "timer_ext_ck", &alt_ck, CK_243X), |
2019 | CLK(NULL, "cpufreq_ck", &virt_prcm_set, CK_243X), | ||
1996 | }; | 2020 | }; |
1997 | 2021 | ||
1998 | /* | 2022 | /* |
diff --git a/arch/arm/mach-omap2/clock2xxx.c b/arch/arm/mach-omap2/clock2xxx.c index 12500097378d..e92be1fc1a00 100644 --- a/arch/arm/mach-omap2/clock2xxx.c +++ b/arch/arm/mach-omap2/clock2xxx.c | |||
@@ -22,9 +22,9 @@ | |||
22 | #include <linux/clk.h> | 22 | #include <linux/clk.h> |
23 | #include <linux/io.h> | 23 | #include <linux/io.h> |
24 | 24 | ||
25 | #include <plat/cpu.h> | ||
26 | #include <plat/clock.h> | 25 | #include <plat/clock.h> |
27 | 26 | ||
27 | #include "soc.h" | ||
28 | #include "clock.h" | 28 | #include "clock.h" |
29 | #include "clock2xxx.h" | 29 | #include "clock2xxx.h" |
30 | #include "cm.h" | 30 | #include "cm.h" |
diff --git a/arch/arm/mach-omap2/clock33xx_data.c b/arch/arm/mach-omap2/clock33xx_data.c index 25bbcc7ca4dc..114ab4b8e0e3 100644 --- a/arch/arm/mach-omap2/clock33xx_data.c +++ b/arch/arm/mach-omap2/clock33xx_data.c | |||
@@ -18,8 +18,8 @@ | |||
18 | #include <linux/list.h> | 18 | #include <linux/list.h> |
19 | #include <linux/clk.h> | 19 | #include <linux/clk.h> |
20 | #include <plat/clkdev_omap.h> | 20 | #include <plat/clkdev_omap.h> |
21 | #include <plat/am33xx.h> | ||
22 | 21 | ||
22 | #include "am33xx.h" | ||
23 | #include "iomap.h" | 23 | #include "iomap.h" |
24 | #include "control.h" | 24 | #include "control.h" |
25 | #include "clock.h" | 25 | #include "clock.h" |
@@ -1013,6 +1013,7 @@ static struct omap_clk am33xx_clks[] = { | |||
1013 | CLK(NULL, "dpll_core_m5_ck", &dpll_core_m5_ck, CK_AM33XX), | 1013 | CLK(NULL, "dpll_core_m5_ck", &dpll_core_m5_ck, CK_AM33XX), |
1014 | CLK(NULL, "dpll_core_m6_ck", &dpll_core_m6_ck, CK_AM33XX), | 1014 | CLK(NULL, "dpll_core_m6_ck", &dpll_core_m6_ck, CK_AM33XX), |
1015 | CLK(NULL, "dpll_mpu_ck", &dpll_mpu_ck, CK_AM33XX), | 1015 | CLK(NULL, "dpll_mpu_ck", &dpll_mpu_ck, CK_AM33XX), |
1016 | CLK("cpu0", NULL, &dpll_mpu_ck, CK_AM33XX), | ||
1016 | CLK(NULL, "dpll_mpu_m2_ck", &dpll_mpu_m2_ck, CK_AM33XX), | 1017 | CLK(NULL, "dpll_mpu_m2_ck", &dpll_mpu_m2_ck, CK_AM33XX), |
1017 | CLK(NULL, "dpll_ddr_ck", &dpll_ddr_ck, CK_AM33XX), | 1018 | CLK(NULL, "dpll_ddr_ck", &dpll_ddr_ck, CK_AM33XX), |
1018 | CLK(NULL, "dpll_ddr_m2_ck", &dpll_ddr_m2_ck, CK_AM33XX), | 1019 | CLK(NULL, "dpll_ddr_m2_ck", &dpll_ddr_m2_ck, CK_AM33XX), |
@@ -1027,22 +1028,26 @@ static struct omap_clk am33xx_clks[] = { | |||
1027 | CLK(NULL, "cefuse_fck", &cefuse_fck, CK_AM33XX), | 1028 | CLK(NULL, "cefuse_fck", &cefuse_fck, CK_AM33XX), |
1028 | CLK(NULL, "clkdiv32k_ick", &clkdiv32k_ick, CK_AM33XX), | 1029 | CLK(NULL, "clkdiv32k_ick", &clkdiv32k_ick, CK_AM33XX), |
1029 | CLK(NULL, "dcan0_fck", &dcan0_fck, CK_AM33XX), | 1030 | CLK(NULL, "dcan0_fck", &dcan0_fck, CK_AM33XX), |
1031 | CLK("481cc000.d_can", NULL, &dcan0_fck, CK_AM33XX), | ||
1030 | CLK(NULL, "dcan1_fck", &dcan1_fck, CK_AM33XX), | 1032 | CLK(NULL, "dcan1_fck", &dcan1_fck, CK_AM33XX), |
1033 | CLK("481d0000.d_can", NULL, &dcan1_fck, CK_AM33XX), | ||
1031 | CLK(NULL, "debugss_ick", &debugss_ick, CK_AM33XX), | 1034 | CLK(NULL, "debugss_ick", &debugss_ick, CK_AM33XX), |
1032 | CLK(NULL, "pruss_ocp_gclk", &pruss_ocp_gclk, CK_AM33XX), | 1035 | CLK(NULL, "pruss_ocp_gclk", &pruss_ocp_gclk, CK_AM33XX), |
1033 | CLK("davinci-mcasp.0", NULL, &mcasp0_fck, CK_AM33XX), | 1036 | CLK("davinci-mcasp.0", NULL, &mcasp0_fck, CK_AM33XX), |
1034 | CLK("davinci-mcasp.1", NULL, &mcasp1_fck, CK_AM33XX), | 1037 | CLK("davinci-mcasp.1", NULL, &mcasp1_fck, CK_AM33XX), |
1038 | CLK(NULL, "mcasp0_fck", &mcasp0_fck, CK_AM33XX), | ||
1039 | CLK(NULL, "mcasp1_fck", &mcasp1_fck, CK_AM33XX), | ||
1035 | CLK("NULL", "mmc2_fck", &mmc2_fck, CK_AM33XX), | 1040 | CLK("NULL", "mmc2_fck", &mmc2_fck, CK_AM33XX), |
1036 | CLK(NULL, "mmu_fck", &mmu_fck, CK_AM33XX), | 1041 | CLK(NULL, "mmu_fck", &mmu_fck, CK_AM33XX), |
1037 | CLK(NULL, "smartreflex0_fck", &smartreflex0_fck, CK_AM33XX), | 1042 | CLK(NULL, "smartreflex0_fck", &smartreflex0_fck, CK_AM33XX), |
1038 | CLK(NULL, "smartreflex1_fck", &smartreflex1_fck, CK_AM33XX), | 1043 | CLK(NULL, "smartreflex1_fck", &smartreflex1_fck, CK_AM33XX), |
1039 | CLK(NULL, "gpt1_fck", &timer1_fck, CK_AM33XX), | 1044 | CLK(NULL, "timer1_fck", &timer1_fck, CK_AM33XX), |
1040 | CLK(NULL, "gpt2_fck", &timer2_fck, CK_AM33XX), | 1045 | CLK(NULL, "timer2_fck", &timer2_fck, CK_AM33XX), |
1041 | CLK(NULL, "gpt3_fck", &timer3_fck, CK_AM33XX), | 1046 | CLK(NULL, "timer3_fck", &timer3_fck, CK_AM33XX), |
1042 | CLK(NULL, "gpt4_fck", &timer4_fck, CK_AM33XX), | 1047 | CLK(NULL, "timer4_fck", &timer4_fck, CK_AM33XX), |
1043 | CLK(NULL, "gpt5_fck", &timer5_fck, CK_AM33XX), | 1048 | CLK(NULL, "timer5_fck", &timer5_fck, CK_AM33XX), |
1044 | CLK(NULL, "gpt6_fck", &timer6_fck, CK_AM33XX), | 1049 | CLK(NULL, "timer6_fck", &timer6_fck, CK_AM33XX), |
1045 | CLK(NULL, "gpt7_fck", &timer7_fck, CK_AM33XX), | 1050 | CLK(NULL, "timer7_fck", &timer7_fck, CK_AM33XX), |
1046 | CLK(NULL, "usbotg_fck", &usbotg_fck, CK_AM33XX), | 1051 | CLK(NULL, "usbotg_fck", &usbotg_fck, CK_AM33XX), |
1047 | CLK(NULL, "ieee5000_fck", &ieee5000_fck, CK_AM33XX), | 1052 | CLK(NULL, "ieee5000_fck", &ieee5000_fck, CK_AM33XX), |
1048 | CLK(NULL, "wdt1_fck", &wdt1_fck, CK_AM33XX), | 1053 | CLK(NULL, "wdt1_fck", &wdt1_fck, CK_AM33XX), |
diff --git a/arch/arm/mach-omap2/clock3xxx.c b/arch/arm/mach-omap2/clock3xxx.c index 794d82702c85..83bb01427d40 100644 --- a/arch/arm/mach-omap2/clock3xxx.c +++ b/arch/arm/mach-omap2/clock3xxx.c | |||
@@ -21,9 +21,9 @@ | |||
21 | #include <linux/clk.h> | 21 | #include <linux/clk.h> |
22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
23 | 23 | ||
24 | #include <plat/hardware.h> | ||
25 | #include <plat/clock.h> | 24 | #include <plat/clock.h> |
26 | 25 | ||
26 | #include "soc.h" | ||
27 | #include "clock.h" | 27 | #include "clock.h" |
28 | #include "clock3xxx.h" | 28 | #include "clock3xxx.h" |
29 | #include "prm2xxx_3xxx.h" | 29 | #include "prm2xxx_3xxx.h" |
@@ -49,8 +49,7 @@ int omap3_dpll4_set_rate(struct clk *clk, unsigned long rate) | |||
49 | * on DPLL4. | 49 | * on DPLL4. |
50 | */ | 50 | */ |
51 | if (omap_rev() == OMAP3430_REV_ES1_0) { | 51 | if (omap_rev() == OMAP3430_REV_ES1_0) { |
52 | pr_err("clock: DPLL4 cannot change rate due to " | 52 | pr_err("clock: DPLL4 cannot change rate due to silicon 'Limitation 2.5' on 3430ES1.\n"); |
53 | "silicon 'Limitation 2.5' on 3430ES1.\n"); | ||
54 | return -EINVAL; | 53 | return -EINVAL; |
55 | } | 54 | } |
56 | 55 | ||
@@ -64,15 +63,15 @@ void __init omap3_clk_lock_dpll5(void) | |||
64 | 63 | ||
65 | dpll5_clk = clk_get(NULL, "dpll5_ck"); | 64 | dpll5_clk = clk_get(NULL, "dpll5_ck"); |
66 | clk_set_rate(dpll5_clk, DPLL5_FREQ_FOR_USBHOST); | 65 | clk_set_rate(dpll5_clk, DPLL5_FREQ_FOR_USBHOST); |
67 | clk_enable(dpll5_clk); | 66 | clk_prepare_enable(dpll5_clk); |
68 | 67 | ||
69 | /* Program dpll5_m2_clk divider for no division */ | 68 | /* Program dpll5_m2_clk divider for no division */ |
70 | dpll5_m2_clk = clk_get(NULL, "dpll5_m2_ck"); | 69 | dpll5_m2_clk = clk_get(NULL, "dpll5_m2_ck"); |
71 | clk_enable(dpll5_m2_clk); | 70 | clk_prepare_enable(dpll5_m2_clk); |
72 | clk_set_rate(dpll5_m2_clk, DPLL5_FREQ_FOR_USBHOST); | 71 | clk_set_rate(dpll5_m2_clk, DPLL5_FREQ_FOR_USBHOST); |
73 | 72 | ||
74 | clk_disable(dpll5_m2_clk); | 73 | clk_disable_unprepare(dpll5_m2_clk); |
75 | clk_disable(dpll5_clk); | 74 | clk_disable_unprepare(dpll5_clk); |
76 | return; | 75 | return; |
77 | } | 76 | } |
78 | 77 | ||
diff --git a/arch/arm/mach-omap2/clock3xxx_data.c b/arch/arm/mach-omap2/clock3xxx_data.c index 83bed9ad3017..1f42c9d5ecf3 100644 --- a/arch/arm/mach-omap2/clock3xxx_data.c +++ b/arch/arm/mach-omap2/clock3xxx_data.c | |||
@@ -21,9 +21,9 @@ | |||
21 | #include <linux/list.h> | 21 | #include <linux/list.h> |
22 | #include <linux/io.h> | 22 | #include <linux/io.h> |
23 | 23 | ||
24 | #include <plat/hardware.h> | ||
25 | #include <plat/clkdev_omap.h> | 24 | #include <plat/clkdev_omap.h> |
26 | 25 | ||
26 | #include "soc.h" | ||
27 | #include "iomap.h" | 27 | #include "iomap.h" |
28 | #include "clock.h" | 28 | #include "clock.h" |
29 | #include "clock3xxx.h" | 29 | #include "clock3xxx.h" |
@@ -3215,7 +3215,6 @@ static struct clk dummy_apb_pclk = { | |||
3215 | * clkdev | 3215 | * clkdev |
3216 | */ | 3216 | */ |
3217 | 3217 | ||
3218 | /* XXX At some point we should rename this file to clock3xxx_data.c */ | ||
3219 | static struct omap_clk omap3xxx_clks[] = { | 3218 | static struct omap_clk omap3xxx_clks[] = { |
3220 | CLK(NULL, "apb_pclk", &dummy_apb_pclk, CK_3XXX), | 3219 | CLK(NULL, "apb_pclk", &dummy_apb_pclk, CK_3XXX), |
3221 | CLK(NULL, "omap_32k_fck", &omap_32k_fck, CK_3XXX), | 3220 | CLK(NULL, "omap_32k_fck", &omap_32k_fck, CK_3XXX), |
@@ -3226,6 +3225,7 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3226 | CLK(NULL, "virt_26000000_ck", &virt_26000000_ck, CK_3XXX), | 3225 | CLK(NULL, "virt_26000000_ck", &virt_26000000_ck, CK_3XXX), |
3227 | CLK(NULL, "virt_38_4m_ck", &virt_38_4m_ck, CK_3XXX), | 3226 | CLK(NULL, "virt_38_4m_ck", &virt_38_4m_ck, CK_3XXX), |
3228 | CLK(NULL, "osc_sys_ck", &osc_sys_ck, CK_3XXX), | 3227 | CLK(NULL, "osc_sys_ck", &osc_sys_ck, CK_3XXX), |
3228 | CLK("twl", "fck", &osc_sys_ck, CK_3XXX), | ||
3229 | CLK(NULL, "sys_ck", &sys_ck, CK_3XXX), | 3229 | CLK(NULL, "sys_ck", &sys_ck, CK_3XXX), |
3230 | CLK(NULL, "sys_altclk", &sys_altclk, CK_3XXX), | 3230 | CLK(NULL, "sys_altclk", &sys_altclk, CK_3XXX), |
3231 | CLK(NULL, "mcbsp_clks", &mcbsp_clks, CK_3XXX), | 3231 | CLK(NULL, "mcbsp_clks", &mcbsp_clks, CK_3XXX), |
@@ -3242,11 +3242,13 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3242 | CLK(NULL, "dpll3_m2x2_ck", &dpll3_m2x2_ck, CK_3XXX), | 3242 | CLK(NULL, "dpll3_m2x2_ck", &dpll3_m2x2_ck, CK_3XXX), |
3243 | CLK(NULL, "dpll3_m3_ck", &dpll3_m3_ck, CK_3XXX), | 3243 | CLK(NULL, "dpll3_m3_ck", &dpll3_m3_ck, CK_3XXX), |
3244 | CLK(NULL, "dpll3_m3x2_ck", &dpll3_m3x2_ck, CK_3XXX), | 3244 | CLK(NULL, "dpll3_m3x2_ck", &dpll3_m3x2_ck, CK_3XXX), |
3245 | CLK(NULL, "emu_core_alwon_ck", &emu_core_alwon_ck, CK_3XXX), | ||
3245 | CLK("etb", "emu_core_alwon_ck", &emu_core_alwon_ck, CK_3XXX), | 3246 | CLK("etb", "emu_core_alwon_ck", &emu_core_alwon_ck, CK_3XXX), |
3246 | CLK(NULL, "dpll4_ck", &dpll4_ck, CK_3XXX), | 3247 | CLK(NULL, "dpll4_ck", &dpll4_ck, CK_3XXX), |
3247 | CLK(NULL, "dpll4_x2_ck", &dpll4_x2_ck, CK_3XXX), | 3248 | CLK(NULL, "dpll4_x2_ck", &dpll4_x2_ck, CK_3XXX), |
3248 | CLK(NULL, "omap_192m_alwon_fck", &omap_192m_alwon_fck, CK_36XX), | 3249 | CLK(NULL, "omap_192m_alwon_fck", &omap_192m_alwon_fck, CK_36XX), |
3249 | CLK(NULL, "omap_96m_alwon_fck", &omap_96m_alwon_fck, CK_3XXX), | 3250 | CLK(NULL, "omap_96m_alwon_fck", &omap_96m_alwon_fck, CK_3XXX), |
3251 | CLK(NULL, "omap_96m_alwon_fck_3630", &omap_96m_alwon_fck_3630, CK_36XX), | ||
3250 | CLK(NULL, "omap_96m_fck", &omap_96m_fck, CK_3XXX), | 3252 | CLK(NULL, "omap_96m_fck", &omap_96m_fck, CK_3XXX), |
3251 | CLK(NULL, "cm_96m_fck", &cm_96m_fck, CK_3XXX), | 3253 | CLK(NULL, "cm_96m_fck", &cm_96m_fck, CK_3XXX), |
3252 | CLK(NULL, "omap_54m_fck", &omap_54m_fck, CK_3XXX), | 3254 | CLK(NULL, "omap_54m_fck", &omap_54m_fck, CK_3XXX), |
@@ -3262,6 +3264,7 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3262 | CLK(NULL, "dpll4_m5x2_ck", &dpll4_m5x2_ck, CK_3XXX), | 3264 | CLK(NULL, "dpll4_m5x2_ck", &dpll4_m5x2_ck, CK_3XXX), |
3263 | CLK(NULL, "dpll4_m6_ck", &dpll4_m6_ck, CK_3XXX), | 3265 | CLK(NULL, "dpll4_m6_ck", &dpll4_m6_ck, CK_3XXX), |
3264 | CLK(NULL, "dpll4_m6x2_ck", &dpll4_m6x2_ck, CK_3XXX), | 3266 | CLK(NULL, "dpll4_m6x2_ck", &dpll4_m6x2_ck, CK_3XXX), |
3267 | CLK(NULL, "emu_per_alwon_ck", &emu_per_alwon_ck, CK_3XXX), | ||
3265 | CLK("etb", "emu_per_alwon_ck", &emu_per_alwon_ck, CK_3XXX), | 3268 | CLK("etb", "emu_per_alwon_ck", &emu_per_alwon_ck, CK_3XXX), |
3266 | CLK(NULL, "dpll5_ck", &dpll5_ck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | 3269 | CLK(NULL, "dpll5_ck", &dpll5_ck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), |
3267 | CLK(NULL, "dpll5_m2_ck", &dpll5_m2_ck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | 3270 | CLK(NULL, "dpll5_m2_ck", &dpll5_m2_ck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), |
@@ -3271,6 +3274,7 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3271 | CLK(NULL, "dpll1_fck", &dpll1_fck, CK_3XXX), | 3274 | CLK(NULL, "dpll1_fck", &dpll1_fck, CK_3XXX), |
3272 | CLK(NULL, "mpu_ck", &mpu_ck, CK_3XXX), | 3275 | CLK(NULL, "mpu_ck", &mpu_ck, CK_3XXX), |
3273 | CLK(NULL, "arm_fck", &arm_fck, CK_3XXX), | 3276 | CLK(NULL, "arm_fck", &arm_fck, CK_3XXX), |
3277 | CLK(NULL, "emu_mpu_alwon_ck", &emu_mpu_alwon_ck, CK_3XXX), | ||
3274 | CLK("etb", "emu_mpu_alwon_ck", &emu_mpu_alwon_ck, CK_3XXX), | 3278 | CLK("etb", "emu_mpu_alwon_ck", &emu_mpu_alwon_ck, CK_3XXX), |
3275 | CLK(NULL, "dpll2_fck", &dpll2_fck, CK_34XX | CK_36XX), | 3279 | CLK(NULL, "dpll2_fck", &dpll2_fck, CK_34XX | CK_36XX), |
3276 | CLK(NULL, "iva2_ck", &iva2_ck, CK_34XX | CK_36XX), | 3280 | CLK(NULL, "iva2_ck", &iva2_ck, CK_34XX | CK_36XX), |
@@ -3294,6 +3298,7 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3294 | CLK(NULL, "ts_fck", &ts_fck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | 3298 | CLK(NULL, "ts_fck", &ts_fck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), |
3295 | CLK(NULL, "usbtll_fck", &usbtll_fck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | 3299 | CLK(NULL, "usbtll_fck", &usbtll_fck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), |
3296 | CLK("usbhs_omap", "usbtll_fck", &usbtll_fck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | 3300 | CLK("usbhs_omap", "usbtll_fck", &usbtll_fck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), |
3301 | CLK("usbhs_tll", "usbtll_fck", &usbtll_fck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | ||
3297 | CLK(NULL, "core_96m_fck", &core_96m_fck, CK_3XXX), | 3302 | CLK(NULL, "core_96m_fck", &core_96m_fck, CK_3XXX), |
3298 | CLK(NULL, "mmchs3_fck", &mmchs3_fck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | 3303 | CLK(NULL, "mmchs3_fck", &mmchs3_fck, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), |
3299 | CLK(NULL, "mmchs2_fck", &mmchs2_fck, CK_3XXX), | 3304 | CLK(NULL, "mmchs2_fck", &mmchs2_fck, CK_3XXX), |
@@ -3314,6 +3319,7 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3314 | CLK(NULL, "fshostusb_fck", &fshostusb_fck, CK_3430ES1), | 3319 | CLK(NULL, "fshostusb_fck", &fshostusb_fck, CK_3430ES1), |
3315 | CLK(NULL, "core_12m_fck", &core_12m_fck, CK_3XXX), | 3320 | CLK(NULL, "core_12m_fck", &core_12m_fck, CK_3XXX), |
3316 | CLK("omap_hdq.0", "fck", &hdq_fck, CK_3XXX), | 3321 | CLK("omap_hdq.0", "fck", &hdq_fck, CK_3XXX), |
3322 | CLK(NULL, "hdq_fck", &hdq_fck, CK_3XXX), | ||
3317 | CLK(NULL, "ssi_ssr_fck", &ssi_ssr_fck_3430es1, CK_3430ES1), | 3323 | CLK(NULL, "ssi_ssr_fck", &ssi_ssr_fck_3430es1, CK_3430ES1), |
3318 | CLK(NULL, "ssi_ssr_fck", &ssi_ssr_fck_3430es2, CK_3430ES2PLUS | CK_36XX), | 3324 | CLK(NULL, "ssi_ssr_fck", &ssi_ssr_fck_3430es2, CK_3430ES2PLUS | CK_36XX), |
3319 | CLK(NULL, "ssi_sst_fck", &ssi_sst_fck_3430es1, CK_3430ES1), | 3325 | CLK(NULL, "ssi_sst_fck", &ssi_sst_fck_3430es1, CK_3430ES1), |
@@ -3321,6 +3327,8 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3321 | CLK(NULL, "core_l3_ick", &core_l3_ick, CK_3XXX), | 3327 | CLK(NULL, "core_l3_ick", &core_l3_ick, CK_3XXX), |
3322 | CLK("musb-omap2430", "ick", &hsotgusb_ick_3430es1, CK_3430ES1), | 3328 | CLK("musb-omap2430", "ick", &hsotgusb_ick_3430es1, CK_3430ES1), |
3323 | CLK("musb-omap2430", "ick", &hsotgusb_ick_3430es2, CK_3430ES2PLUS | CK_36XX), | 3329 | CLK("musb-omap2430", "ick", &hsotgusb_ick_3430es2, CK_3430ES2PLUS | CK_36XX), |
3330 | CLK(NULL, "hsotgusb_ick", &hsotgusb_ick_3430es1, CK_3430ES1), | ||
3331 | CLK(NULL, "hsotgusb_ick", &hsotgusb_ick_3430es2, CK_3430ES2PLUS | CK_36XX), | ||
3324 | CLK(NULL, "sdrc_ick", &sdrc_ick, CK_3XXX), | 3332 | CLK(NULL, "sdrc_ick", &sdrc_ick, CK_3XXX), |
3325 | CLK(NULL, "gpmc_fck", &gpmc_fck, CK_3XXX), | 3333 | CLK(NULL, "gpmc_fck", &gpmc_fck, CK_3XXX), |
3326 | CLK(NULL, "security_l3_ick", &security_l3_ick, CK_34XX | CK_36XX), | 3334 | CLK(NULL, "security_l3_ick", &security_l3_ick, CK_34XX | CK_36XX), |
@@ -3328,28 +3336,42 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3328 | CLK(NULL, "core_l4_ick", &core_l4_ick, CK_3XXX), | 3336 | CLK(NULL, "core_l4_ick", &core_l4_ick, CK_3XXX), |
3329 | CLK(NULL, "usbtll_ick", &usbtll_ick, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | 3337 | CLK(NULL, "usbtll_ick", &usbtll_ick, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), |
3330 | CLK("usbhs_omap", "usbtll_ick", &usbtll_ick, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | 3338 | CLK("usbhs_omap", "usbtll_ick", &usbtll_ick, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), |
3339 | CLK("usbhs_tll", "usbtll_ick", &usbtll_ick, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | ||
3331 | CLK("omap_hsmmc.2", "ick", &mmchs3_ick, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | 3340 | CLK("omap_hsmmc.2", "ick", &mmchs3_ick, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), |
3341 | CLK(NULL, "mmchs3_ick", &mmchs3_ick, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | ||
3332 | CLK(NULL, "icr_ick", &icr_ick, CK_34XX | CK_36XX), | 3342 | CLK(NULL, "icr_ick", &icr_ick, CK_34XX | CK_36XX), |
3333 | CLK("omap-aes", "ick", &aes2_ick, CK_34XX | CK_36XX), | 3343 | CLK("omap-aes", "ick", &aes2_ick, CK_34XX | CK_36XX), |
3334 | CLK("omap-sham", "ick", &sha12_ick, CK_34XX | CK_36XX), | 3344 | CLK("omap-sham", "ick", &sha12_ick, CK_34XX | CK_36XX), |
3335 | CLK(NULL, "des2_ick", &des2_ick, CK_34XX | CK_36XX), | 3345 | CLK(NULL, "des2_ick", &des2_ick, CK_34XX | CK_36XX), |
3336 | CLK("omap_hsmmc.1", "ick", &mmchs2_ick, CK_3XXX), | 3346 | CLK("omap_hsmmc.1", "ick", &mmchs2_ick, CK_3XXX), |
3337 | CLK("omap_hsmmc.0", "ick", &mmchs1_ick, CK_3XXX), | 3347 | CLK("omap_hsmmc.0", "ick", &mmchs1_ick, CK_3XXX), |
3348 | CLK(NULL, "mmchs2_ick", &mmchs2_ick, CK_3XXX), | ||
3349 | CLK(NULL, "mmchs1_ick", &mmchs1_ick, CK_3XXX), | ||
3338 | CLK(NULL, "mspro_ick", &mspro_ick, CK_34XX | CK_36XX), | 3350 | CLK(NULL, "mspro_ick", &mspro_ick, CK_34XX | CK_36XX), |
3339 | CLK("omap_hdq.0", "ick", &hdq_ick, CK_3XXX), | 3351 | CLK("omap_hdq.0", "ick", &hdq_ick, CK_3XXX), |
3352 | CLK(NULL, "hdq_ick", &hdq_ick, CK_3XXX), | ||
3340 | CLK("omap2_mcspi.4", "ick", &mcspi4_ick, CK_3XXX), | 3353 | CLK("omap2_mcspi.4", "ick", &mcspi4_ick, CK_3XXX), |
3341 | CLK("omap2_mcspi.3", "ick", &mcspi3_ick, CK_3XXX), | 3354 | CLK("omap2_mcspi.3", "ick", &mcspi3_ick, CK_3XXX), |
3342 | CLK("omap2_mcspi.2", "ick", &mcspi2_ick, CK_3XXX), | 3355 | CLK("omap2_mcspi.2", "ick", &mcspi2_ick, CK_3XXX), |
3343 | CLK("omap2_mcspi.1", "ick", &mcspi1_ick, CK_3XXX), | 3356 | CLK("omap2_mcspi.1", "ick", &mcspi1_ick, CK_3XXX), |
3357 | CLK(NULL, "mcspi4_ick", &mcspi4_ick, CK_3XXX), | ||
3358 | CLK(NULL, "mcspi3_ick", &mcspi3_ick, CK_3XXX), | ||
3359 | CLK(NULL, "mcspi2_ick", &mcspi2_ick, CK_3XXX), | ||
3360 | CLK(NULL, "mcspi1_ick", &mcspi1_ick, CK_3XXX), | ||
3344 | CLK("omap_i2c.3", "ick", &i2c3_ick, CK_3XXX), | 3361 | CLK("omap_i2c.3", "ick", &i2c3_ick, CK_3XXX), |
3345 | CLK("omap_i2c.2", "ick", &i2c2_ick, CK_3XXX), | 3362 | CLK("omap_i2c.2", "ick", &i2c2_ick, CK_3XXX), |
3346 | CLK("omap_i2c.1", "ick", &i2c1_ick, CK_3XXX), | 3363 | CLK("omap_i2c.1", "ick", &i2c1_ick, CK_3XXX), |
3364 | CLK(NULL, "i2c3_ick", &i2c3_ick, CK_3XXX), | ||
3365 | CLK(NULL, "i2c2_ick", &i2c2_ick, CK_3XXX), | ||
3366 | CLK(NULL, "i2c1_ick", &i2c1_ick, CK_3XXX), | ||
3347 | CLK(NULL, "uart2_ick", &uart2_ick, CK_3XXX), | 3367 | CLK(NULL, "uart2_ick", &uart2_ick, CK_3XXX), |
3348 | CLK(NULL, "uart1_ick", &uart1_ick, CK_3XXX), | 3368 | CLK(NULL, "uart1_ick", &uart1_ick, CK_3XXX), |
3349 | CLK(NULL, "gpt11_ick", &gpt11_ick, CK_3XXX), | 3369 | CLK(NULL, "gpt11_ick", &gpt11_ick, CK_3XXX), |
3350 | CLK(NULL, "gpt10_ick", &gpt10_ick, CK_3XXX), | 3370 | CLK(NULL, "gpt10_ick", &gpt10_ick, CK_3XXX), |
3351 | CLK("omap-mcbsp.5", "ick", &mcbsp5_ick, CK_3XXX), | 3371 | CLK("omap-mcbsp.5", "ick", &mcbsp5_ick, CK_3XXX), |
3352 | CLK("omap-mcbsp.1", "ick", &mcbsp1_ick, CK_3XXX), | 3372 | CLK("omap-mcbsp.1", "ick", &mcbsp1_ick, CK_3XXX), |
3373 | CLK(NULL, "mcbsp5_ick", &mcbsp5_ick, CK_3XXX), | ||
3374 | CLK(NULL, "mcbsp1_ick", &mcbsp1_ick, CK_3XXX), | ||
3353 | CLK(NULL, "fac_ick", &fac_ick, CK_3430ES1), | 3375 | CLK(NULL, "fac_ick", &fac_ick, CK_3430ES1), |
3354 | CLK(NULL, "mailboxes_ick", &mailboxes_ick, CK_34XX | CK_36XX), | 3376 | CLK(NULL, "mailboxes_ick", &mailboxes_ick, CK_34XX | CK_36XX), |
3355 | CLK(NULL, "omapctrl_ick", &omapctrl_ick, CK_3XXX), | 3377 | CLK(NULL, "omapctrl_ick", &omapctrl_ick, CK_3XXX), |
@@ -3368,7 +3390,9 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3368 | CLK(NULL, "dss_96m_fck", &dss_96m_fck, CK_3XXX), | 3390 | CLK(NULL, "dss_96m_fck", &dss_96m_fck, CK_3XXX), |
3369 | CLK(NULL, "dss2_alwon_fck", &dss2_alwon_fck, CK_3XXX), | 3391 | CLK(NULL, "dss2_alwon_fck", &dss2_alwon_fck, CK_3XXX), |
3370 | CLK("omapdss_dss", "ick", &dss_ick_3430es1, CK_3430ES1), | 3392 | CLK("omapdss_dss", "ick", &dss_ick_3430es1, CK_3430ES1), |
3393 | CLK(NULL, "dss_ick", &dss_ick_3430es1, CK_3430ES1), | ||
3371 | CLK("omapdss_dss", "ick", &dss_ick_3430es2, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | 3394 | CLK("omapdss_dss", "ick", &dss_ick_3430es2, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), |
3395 | CLK(NULL, "dss_ick", &dss_ick_3430es2, CK_3430ES2PLUS | CK_AM35XX | CK_36XX), | ||
3372 | CLK(NULL, "cam_mclk", &cam_mclk, CK_34XX | CK_36XX), | 3396 | CLK(NULL, "cam_mclk", &cam_mclk, CK_34XX | CK_36XX), |
3373 | CLK(NULL, "cam_ick", &cam_ick, CK_34XX | CK_36XX), | 3397 | CLK(NULL, "cam_ick", &cam_ick, CK_34XX | CK_36XX), |
3374 | CLK(NULL, "csi2_96m_fck", &csi2_96m_fck, CK_34XX | CK_36XX), | 3398 | CLK(NULL, "csi2_96m_fck", &csi2_96m_fck, CK_34XX | CK_36XX), |
@@ -3384,6 +3408,8 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3384 | CLK(NULL, "usb_host_hs_utmi_p2_clk", &dummy_ck, CK_3XXX), | 3408 | CLK(NULL, "usb_host_hs_utmi_p2_clk", &dummy_ck, CK_3XXX), |
3385 | CLK("usbhs_omap", "usb_tll_hs_usb_ch0_clk", &dummy_ck, CK_3XXX), | 3409 | CLK("usbhs_omap", "usb_tll_hs_usb_ch0_clk", &dummy_ck, CK_3XXX), |
3386 | CLK("usbhs_omap", "usb_tll_hs_usb_ch1_clk", &dummy_ck, CK_3XXX), | 3410 | CLK("usbhs_omap", "usb_tll_hs_usb_ch1_clk", &dummy_ck, CK_3XXX), |
3411 | CLK("usbhs_tll", "usb_tll_hs_usb_ch0_clk", &dummy_ck, CK_3XXX), | ||
3412 | CLK("usbhs_tll", "usb_tll_hs_usb_ch1_clk", &dummy_ck, CK_3XXX), | ||
3387 | CLK(NULL, "init_60m_fclk", &dummy_ck, CK_3XXX), | 3413 | CLK(NULL, "init_60m_fclk", &dummy_ck, CK_3XXX), |
3388 | CLK(NULL, "usim_fck", &usim_fck, CK_3430ES2PLUS | CK_36XX), | 3414 | CLK(NULL, "usim_fck", &usim_fck, CK_3430ES2PLUS | CK_36XX), |
3389 | CLK(NULL, "gpt1_fck", &gpt1_fck, CK_3XXX), | 3415 | CLK(NULL, "gpt1_fck", &gpt1_fck, CK_3XXX), |
@@ -3393,6 +3419,7 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3393 | CLK(NULL, "wkup_l4_ick", &wkup_l4_ick, CK_34XX | CK_36XX), | 3419 | CLK(NULL, "wkup_l4_ick", &wkup_l4_ick, CK_34XX | CK_36XX), |
3394 | CLK(NULL, "usim_ick", &usim_ick, CK_3430ES2PLUS | CK_36XX), | 3420 | CLK(NULL, "usim_ick", &usim_ick, CK_3430ES2PLUS | CK_36XX), |
3395 | CLK("omap_wdt", "ick", &wdt2_ick, CK_3XXX), | 3421 | CLK("omap_wdt", "ick", &wdt2_ick, CK_3XXX), |
3422 | CLK(NULL, "wdt2_ick", &wdt2_ick, CK_3XXX), | ||
3396 | CLK(NULL, "wdt1_ick", &wdt1_ick, CK_3XXX), | 3423 | CLK(NULL, "wdt1_ick", &wdt1_ick, CK_3XXX), |
3397 | CLK(NULL, "gpio1_ick", &gpio1_ick, CK_3XXX), | 3424 | CLK(NULL, "gpio1_ick", &gpio1_ick, CK_3XXX), |
3398 | CLK(NULL, "omap_32ksync_ick", &omap_32ksync_ick, CK_3XXX), | 3425 | CLK(NULL, "omap_32ksync_ick", &omap_32ksync_ick, CK_3XXX), |
@@ -3438,9 +3465,13 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3438 | CLK("omap-mcbsp.2", "ick", &mcbsp2_ick, CK_3XXX), | 3465 | CLK("omap-mcbsp.2", "ick", &mcbsp2_ick, CK_3XXX), |
3439 | CLK("omap-mcbsp.3", "ick", &mcbsp3_ick, CK_3XXX), | 3466 | CLK("omap-mcbsp.3", "ick", &mcbsp3_ick, CK_3XXX), |
3440 | CLK("omap-mcbsp.4", "ick", &mcbsp4_ick, CK_3XXX), | 3467 | CLK("omap-mcbsp.4", "ick", &mcbsp4_ick, CK_3XXX), |
3468 | CLK(NULL, "mcbsp4_ick", &mcbsp2_ick, CK_3XXX), | ||
3469 | CLK(NULL, "mcbsp3_ick", &mcbsp3_ick, CK_3XXX), | ||
3470 | CLK(NULL, "mcbsp2_ick", &mcbsp4_ick, CK_3XXX), | ||
3441 | CLK(NULL, "mcbsp2_fck", &mcbsp2_fck, CK_3XXX), | 3471 | CLK(NULL, "mcbsp2_fck", &mcbsp2_fck, CK_3XXX), |
3442 | CLK(NULL, "mcbsp3_fck", &mcbsp3_fck, CK_3XXX), | 3472 | CLK(NULL, "mcbsp3_fck", &mcbsp3_fck, CK_3XXX), |
3443 | CLK(NULL, "mcbsp4_fck", &mcbsp4_fck, CK_3XXX), | 3473 | CLK(NULL, "mcbsp4_fck", &mcbsp4_fck, CK_3XXX), |
3474 | CLK(NULL, "emu_src_ck", &emu_src_ck, CK_3XXX), | ||
3444 | CLK("etb", "emu_src_ck", &emu_src_ck, CK_3XXX), | 3475 | CLK("etb", "emu_src_ck", &emu_src_ck, CK_3XXX), |
3445 | CLK(NULL, "pclk_fck", &pclk_fck, CK_3XXX), | 3476 | CLK(NULL, "pclk_fck", &pclk_fck, CK_3XXX), |
3446 | CLK(NULL, "pclkx2_fck", &pclkx2_fck, CK_3XXX), | 3477 | CLK(NULL, "pclkx2_fck", &pclkx2_fck, CK_3XXX), |
@@ -3456,8 +3487,12 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3456 | CLK(NULL, "ipss_ick", &ipss_ick, CK_AM35XX), | 3487 | CLK(NULL, "ipss_ick", &ipss_ick, CK_AM35XX), |
3457 | CLK(NULL, "rmii_ck", &rmii_ck, CK_AM35XX), | 3488 | CLK(NULL, "rmii_ck", &rmii_ck, CK_AM35XX), |
3458 | CLK(NULL, "pclk_ck", &pclk_ck, CK_AM35XX), | 3489 | CLK(NULL, "pclk_ck", &pclk_ck, CK_AM35XX), |
3490 | CLK(NULL, "emac_ick", &emac_ick, CK_AM35XX), | ||
3491 | CLK(NULL, "emac_fck", &emac_fck, CK_AM35XX), | ||
3459 | CLK("davinci_emac.0", NULL, &emac_ick, CK_AM35XX), | 3492 | CLK("davinci_emac.0", NULL, &emac_ick, CK_AM35XX), |
3460 | CLK("davinci_mdio.0", NULL, &emac_fck, CK_AM35XX), | 3493 | CLK("davinci_mdio.0", NULL, &emac_fck, CK_AM35XX), |
3494 | CLK(NULL, "vpfe_ick", &emac_ick, CK_AM35XX), | ||
3495 | CLK(NULL, "vpfe_fck", &emac_fck, CK_AM35XX), | ||
3461 | CLK("vpfe-capture", "master", &vpfe_ick, CK_AM35XX), | 3496 | CLK("vpfe-capture", "master", &vpfe_ick, CK_AM35XX), |
3462 | CLK("vpfe-capture", "slave", &vpfe_fck, CK_AM35XX), | 3497 | CLK("vpfe-capture", "slave", &vpfe_fck, CK_AM35XX), |
3463 | CLK(NULL, "hsotgusb_ick", &hsotgusb_ick_am35xx, CK_AM35XX), | 3498 | CLK(NULL, "hsotgusb_ick", &hsotgusb_ick_am35xx, CK_AM35XX), |
@@ -3466,6 +3501,7 @@ static struct omap_clk omap3xxx_clks[] = { | |||
3466 | CLK(NULL, "uart4_ick", &uart4_ick_am35xx, CK_AM35XX), | 3501 | CLK(NULL, "uart4_ick", &uart4_ick_am35xx, CK_AM35XX), |
3467 | CLK(NULL, "timer_32k_ck", &omap_32k_fck, CK_3XXX), | 3502 | CLK(NULL, "timer_32k_ck", &omap_32k_fck, CK_3XXX), |
3468 | CLK(NULL, "timer_sys_ck", &sys_ck, CK_3XXX), | 3503 | CLK(NULL, "timer_sys_ck", &sys_ck, CK_3XXX), |
3504 | CLK(NULL, "cpufreq_ck", &dpll1_ck, CK_3XXX), | ||
3469 | }; | 3505 | }; |
3470 | 3506 | ||
3471 | 3507 | ||
diff --git a/arch/arm/mach-omap2/clock44xx_data.c b/arch/arm/mach-omap2/clock44xx_data.c index d7f55e43b761..d661d138f270 100644 --- a/arch/arm/mach-omap2/clock44xx_data.c +++ b/arch/arm/mach-omap2/clock44xx_data.c | |||
@@ -28,9 +28,9 @@ | |||
28 | #include <linux/clk.h> | 28 | #include <linux/clk.h> |
29 | #include <linux/io.h> | 29 | #include <linux/io.h> |
30 | 30 | ||
31 | #include <plat/hardware.h> | ||
32 | #include <plat/clkdev_omap.h> | 31 | #include <plat/clkdev_omap.h> |
33 | 32 | ||
33 | #include "soc.h" | ||
34 | #include "iomap.h" | 34 | #include "iomap.h" |
35 | #include "clock.h" | 35 | #include "clock.h" |
36 | #include "clock44xx.h" | 36 | #include "clock44xx.h" |
@@ -3156,6 +3156,7 @@ static struct omap_clk omap44xx_clks[] = { | |||
3156 | CLK(NULL, "dss_tv_clk", &dss_tv_clk, CK_443X), | 3156 | CLK(NULL, "dss_tv_clk", &dss_tv_clk, CK_443X), |
3157 | CLK(NULL, "dss_48mhz_clk", &dss_48mhz_clk, CK_443X), | 3157 | CLK(NULL, "dss_48mhz_clk", &dss_48mhz_clk, CK_443X), |
3158 | CLK(NULL, "dss_dss_clk", &dss_dss_clk, CK_443X), | 3158 | CLK(NULL, "dss_dss_clk", &dss_dss_clk, CK_443X), |
3159 | CLK(NULL, "dss_fck", &dss_fck, CK_443X), | ||
3159 | CLK("omapdss_dss", "ick", &dss_fck, CK_443X), | 3160 | CLK("omapdss_dss", "ick", &dss_fck, CK_443X), |
3160 | CLK(NULL, "efuse_ctrl_cust_fck", &efuse_ctrl_cust_fck, CK_443X), | 3161 | CLK(NULL, "efuse_ctrl_cust_fck", &efuse_ctrl_cust_fck, CK_443X), |
3161 | CLK(NULL, "emif1_fck", &emif1_fck, CK_443X), | 3162 | CLK(NULL, "emif1_fck", &emif1_fck, CK_443X), |
@@ -3212,6 +3213,7 @@ static struct omap_clk omap44xx_clks[] = { | |||
3212 | CLK(NULL, "ocp2scp_usb_phy_phy_48m", &ocp2scp_usb_phy_phy_48m, CK_443X), | 3213 | CLK(NULL, "ocp2scp_usb_phy_phy_48m", &ocp2scp_usb_phy_phy_48m, CK_443X), |
3213 | CLK(NULL, "ocp2scp_usb_phy_ick", &ocp2scp_usb_phy_ick, CK_443X), | 3214 | CLK(NULL, "ocp2scp_usb_phy_ick", &ocp2scp_usb_phy_ick, CK_443X), |
3214 | CLK(NULL, "ocp_wp_noc_ick", &ocp_wp_noc_ick, CK_443X), | 3215 | CLK(NULL, "ocp_wp_noc_ick", &ocp_wp_noc_ick, CK_443X), |
3216 | CLK(NULL, "rng_ick", &rng_ick, CK_443X), | ||
3215 | CLK("omap_rng", "ick", &rng_ick, CK_443X), | 3217 | CLK("omap_rng", "ick", &rng_ick, CK_443X), |
3216 | CLK(NULL, "sha2md5_fck", &sha2md5_fck, CK_443X), | 3218 | CLK(NULL, "sha2md5_fck", &sha2md5_fck, CK_443X), |
3217 | CLK(NULL, "sl2if_ick", &sl2if_ick, CK_443X), | 3219 | CLK(NULL, "sl2if_ick", &sl2if_ick, CK_443X), |
@@ -3243,6 +3245,7 @@ static struct omap_clk omap44xx_clks[] = { | |||
3243 | CLK(NULL, "uart3_fck", &uart3_fck, CK_443X), | 3245 | CLK(NULL, "uart3_fck", &uart3_fck, CK_443X), |
3244 | CLK(NULL, "uart4_fck", &uart4_fck, CK_443X), | 3246 | CLK(NULL, "uart4_fck", &uart4_fck, CK_443X), |
3245 | CLK("usbhs_omap", "fs_fck", &usb_host_fs_fck, CK_443X), | 3247 | CLK("usbhs_omap", "fs_fck", &usb_host_fs_fck, CK_443X), |
3248 | CLK(NULL, "usb_host_fs_fck", &usb_host_fs_fck, CK_443X), | ||
3246 | CLK(NULL, "utmi_p1_gfclk", &utmi_p1_gfclk, CK_443X), | 3249 | CLK(NULL, "utmi_p1_gfclk", &utmi_p1_gfclk, CK_443X), |
3247 | CLK(NULL, "usb_host_hs_utmi_p1_clk", &usb_host_hs_utmi_p1_clk, CK_443X), | 3250 | CLK(NULL, "usb_host_hs_utmi_p1_clk", &usb_host_hs_utmi_p1_clk, CK_443X), |
3248 | CLK(NULL, "utmi_p2_gfclk", &utmi_p2_gfclk, CK_443X), | 3251 | CLK(NULL, "utmi_p2_gfclk", &utmi_p2_gfclk, CK_443X), |
@@ -3253,15 +3256,19 @@ static struct omap_clk omap44xx_clks[] = { | |||
3253 | CLK(NULL, "usb_host_hs_hsic60m_p2_clk", &usb_host_hs_hsic60m_p2_clk, CK_443X), | 3256 | CLK(NULL, "usb_host_hs_hsic60m_p2_clk", &usb_host_hs_hsic60m_p2_clk, CK_443X), |
3254 | CLK(NULL, "usb_host_hs_hsic480m_p2_clk", &usb_host_hs_hsic480m_p2_clk, CK_443X), | 3257 | CLK(NULL, "usb_host_hs_hsic480m_p2_clk", &usb_host_hs_hsic480m_p2_clk, CK_443X), |
3255 | CLK(NULL, "usb_host_hs_func48mclk", &usb_host_hs_func48mclk, CK_443X), | 3258 | CLK(NULL, "usb_host_hs_func48mclk", &usb_host_hs_func48mclk, CK_443X), |
3259 | CLK(NULL, "usb_host_hs_fck", &usb_host_hs_fck, CK_443X), | ||
3256 | CLK("usbhs_omap", "hs_fck", &usb_host_hs_fck, CK_443X), | 3260 | CLK("usbhs_omap", "hs_fck", &usb_host_hs_fck, CK_443X), |
3257 | CLK(NULL, "otg_60m_gfclk", &otg_60m_gfclk, CK_443X), | 3261 | CLK(NULL, "otg_60m_gfclk", &otg_60m_gfclk, CK_443X), |
3258 | CLK(NULL, "usb_otg_hs_xclk", &usb_otg_hs_xclk, CK_443X), | 3262 | CLK(NULL, "usb_otg_hs_xclk", &usb_otg_hs_xclk, CK_443X), |
3263 | CLK(NULL, "usb_otg_hs_ick", &usb_otg_hs_ick, CK_443X), | ||
3259 | CLK("musb-omap2430", "ick", &usb_otg_hs_ick, CK_443X), | 3264 | CLK("musb-omap2430", "ick", &usb_otg_hs_ick, CK_443X), |
3260 | CLK(NULL, "usb_phy_cm_clk32k", &usb_phy_cm_clk32k, CK_443X), | 3265 | CLK(NULL, "usb_phy_cm_clk32k", &usb_phy_cm_clk32k, CK_443X), |
3261 | CLK(NULL, "usb_tll_hs_usb_ch2_clk", &usb_tll_hs_usb_ch2_clk, CK_443X), | 3266 | CLK(NULL, "usb_tll_hs_usb_ch2_clk", &usb_tll_hs_usb_ch2_clk, CK_443X), |
3262 | CLK(NULL, "usb_tll_hs_usb_ch0_clk", &usb_tll_hs_usb_ch0_clk, CK_443X), | 3267 | CLK(NULL, "usb_tll_hs_usb_ch0_clk", &usb_tll_hs_usb_ch0_clk, CK_443X), |
3263 | CLK(NULL, "usb_tll_hs_usb_ch1_clk", &usb_tll_hs_usb_ch1_clk, CK_443X), | 3268 | CLK(NULL, "usb_tll_hs_usb_ch1_clk", &usb_tll_hs_usb_ch1_clk, CK_443X), |
3269 | CLK(NULL, "usb_tll_hs_ick", &usb_tll_hs_ick, CK_443X), | ||
3264 | CLK("usbhs_omap", "usbtll_ick", &usb_tll_hs_ick, CK_443X), | 3270 | CLK("usbhs_omap", "usbtll_ick", &usb_tll_hs_ick, CK_443X), |
3271 | CLK("usbhs_tll", "usbtll_ick", &usb_tll_hs_ick, CK_443X), | ||
3265 | CLK(NULL, "usim_ck", &usim_ck, CK_443X), | 3272 | CLK(NULL, "usim_ck", &usim_ck, CK_443X), |
3266 | CLK(NULL, "usim_fclk", &usim_fclk, CK_443X), | 3273 | CLK(NULL, "usim_fclk", &usim_fclk, CK_443X), |
3267 | CLK(NULL, "usim_fck", &usim_fck, CK_443X), | 3274 | CLK(NULL, "usim_fck", &usim_fck, CK_443X), |
@@ -3312,8 +3319,10 @@ static struct omap_clk omap44xx_clks[] = { | |||
3312 | CLK(NULL, "uart4_ick", &dummy_ck, CK_443X), | 3319 | CLK(NULL, "uart4_ick", &dummy_ck, CK_443X), |
3313 | CLK("usbhs_omap", "usbhost_ick", &dummy_ck, CK_443X), | 3320 | CLK("usbhs_omap", "usbhost_ick", &dummy_ck, CK_443X), |
3314 | CLK("usbhs_omap", "usbtll_fck", &dummy_ck, CK_443X), | 3321 | CLK("usbhs_omap", "usbtll_fck", &dummy_ck, CK_443X), |
3322 | CLK("usbhs_tll", "usbtll_fck", &dummy_ck, CK_443X), | ||
3315 | CLK("omap_wdt", "ick", &dummy_ck, CK_443X), | 3323 | CLK("omap_wdt", "ick", &dummy_ck, CK_443X), |
3316 | CLK(NULL, "timer_32k_ck", &sys_32k_ck, CK_443X), | 3324 | CLK(NULL, "timer_32k_ck", &sys_32k_ck, CK_443X), |
3325 | /* TODO: Remove "omap_timer.X" aliases once DT migration is complete */ | ||
3317 | CLK("omap_timer.1", "timer_sys_ck", &sys_clkin_ck, CK_443X), | 3326 | CLK("omap_timer.1", "timer_sys_ck", &sys_clkin_ck, CK_443X), |
3318 | CLK("omap_timer.2", "timer_sys_ck", &sys_clkin_ck, CK_443X), | 3327 | CLK("omap_timer.2", "timer_sys_ck", &sys_clkin_ck, CK_443X), |
3319 | CLK("omap_timer.3", "timer_sys_ck", &sys_clkin_ck, CK_443X), | 3328 | CLK("omap_timer.3", "timer_sys_ck", &sys_clkin_ck, CK_443X), |
@@ -3325,6 +3334,18 @@ static struct omap_clk omap44xx_clks[] = { | |||
3325 | CLK("omap_timer.6", "timer_sys_ck", &syc_clk_div_ck, CK_443X), | 3334 | CLK("omap_timer.6", "timer_sys_ck", &syc_clk_div_ck, CK_443X), |
3326 | CLK("omap_timer.7", "timer_sys_ck", &syc_clk_div_ck, CK_443X), | 3335 | CLK("omap_timer.7", "timer_sys_ck", &syc_clk_div_ck, CK_443X), |
3327 | CLK("omap_timer.8", "timer_sys_ck", &syc_clk_div_ck, CK_443X), | 3336 | CLK("omap_timer.8", "timer_sys_ck", &syc_clk_div_ck, CK_443X), |
3337 | CLK("4a318000.timer", "timer_sys_ck", &sys_clkin_ck, CK_443X), | ||
3338 | CLK("48032000.timer", "timer_sys_ck", &sys_clkin_ck, CK_443X), | ||
3339 | CLK("48034000.timer", "timer_sys_ck", &sys_clkin_ck, CK_443X), | ||
3340 | CLK("48036000.timer", "timer_sys_ck", &sys_clkin_ck, CK_443X), | ||
3341 | CLK("4803e000.timer", "timer_sys_ck", &sys_clkin_ck, CK_443X), | ||
3342 | CLK("48086000.timer", "timer_sys_ck", &sys_clkin_ck, CK_443X), | ||
3343 | CLK("48088000.timer", "timer_sys_ck", &sys_clkin_ck, CK_443X), | ||
3344 | CLK("49038000.timer", "timer_sys_ck", &syc_clk_div_ck, CK_443X), | ||
3345 | CLK("4903a000.timer", "timer_sys_ck", &syc_clk_div_ck, CK_443X), | ||
3346 | CLK("4903c000.timer", "timer_sys_ck", &syc_clk_div_ck, CK_443X), | ||
3347 | CLK("4903e000.timer", "timer_sys_ck", &syc_clk_div_ck, CK_443X), | ||
3348 | CLK(NULL, "cpufreq_ck", &dpll_mpu_ck, CK_443X), | ||
3328 | }; | 3349 | }; |
3329 | 3350 | ||
3330 | int __init omap4xxx_clk_init(void) | 3351 | int __init omap4xxx_clk_init(void) |
diff --git a/arch/arm/mach-omap2/clockdomain.c b/arch/arm/mach-omap2/clockdomain.c index 8664f5a8bfb6..cbb879139c51 100644 --- a/arch/arm/mach-omap2/clockdomain.c +++ b/arch/arm/mach-omap2/clockdomain.c | |||
@@ -174,9 +174,8 @@ void _clkdm_add_autodeps(struct clockdomain *clkdm) | |||
174 | if (IS_ERR(autodep->clkdm.ptr)) | 174 | if (IS_ERR(autodep->clkdm.ptr)) |
175 | continue; | 175 | continue; |
176 | 176 | ||
177 | pr_debug("clockdomain: adding %s sleepdep/wkdep for " | 177 | pr_debug("clockdomain: %s: adding %s sleepdep/wkdep\n", |
178 | "clkdm %s\n", autodep->clkdm.ptr->name, | 178 | clkdm->name, autodep->clkdm.ptr->name); |
179 | clkdm->name); | ||
180 | 179 | ||
181 | clkdm_add_sleepdep(clkdm, autodep->clkdm.ptr); | 180 | clkdm_add_sleepdep(clkdm, autodep->clkdm.ptr); |
182 | clkdm_add_wkdep(clkdm, autodep->clkdm.ptr); | 181 | clkdm_add_wkdep(clkdm, autodep->clkdm.ptr); |
@@ -205,9 +204,8 @@ void _clkdm_del_autodeps(struct clockdomain *clkdm) | |||
205 | if (IS_ERR(autodep->clkdm.ptr)) | 204 | if (IS_ERR(autodep->clkdm.ptr)) |
206 | continue; | 205 | continue; |
207 | 206 | ||
208 | pr_debug("clockdomain: removing %s sleepdep/wkdep for " | 207 | pr_debug("clockdomain: %s: removing %s sleepdep/wkdep\n", |
209 | "clkdm %s\n", autodep->clkdm.ptr->name, | 208 | clkdm->name, autodep->clkdm.ptr->name); |
210 | clkdm->name); | ||
211 | 209 | ||
212 | clkdm_del_sleepdep(clkdm, autodep->clkdm.ptr); | 210 | clkdm_del_sleepdep(clkdm, autodep->clkdm.ptr); |
213 | clkdm_del_wkdep(clkdm, autodep->clkdm.ptr); | 211 | clkdm_del_wkdep(clkdm, autodep->clkdm.ptr); |
@@ -469,14 +467,14 @@ int clkdm_add_wkdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2) | |||
469 | ret = -EINVAL; | 467 | ret = -EINVAL; |
470 | 468 | ||
471 | if (ret) { | 469 | if (ret) { |
472 | pr_debug("clockdomain: hardware cannot set/clear wake up of " | 470 | pr_debug("clockdomain: hardware cannot set/clear wake up of %s when %s wakes up\n", |
473 | "%s when %s wakes up\n", clkdm1->name, clkdm2->name); | 471 | clkdm1->name, clkdm2->name); |
474 | return ret; | 472 | return ret; |
475 | } | 473 | } |
476 | 474 | ||
477 | if (atomic_inc_return(&cd->wkdep_usecount) == 1) { | 475 | if (atomic_inc_return(&cd->wkdep_usecount) == 1) { |
478 | pr_debug("clockdomain: hardware will wake up %s when %s wakes " | 476 | pr_debug("clockdomain: hardware will wake up %s when %s wakes up\n", |
479 | "up\n", clkdm1->name, clkdm2->name); | 477 | clkdm1->name, clkdm2->name); |
480 | 478 | ||
481 | ret = arch_clkdm->clkdm_add_wkdep(clkdm1, clkdm2); | 479 | ret = arch_clkdm->clkdm_add_wkdep(clkdm1, clkdm2); |
482 | } | 480 | } |
@@ -510,14 +508,14 @@ int clkdm_del_wkdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2) | |||
510 | ret = -EINVAL; | 508 | ret = -EINVAL; |
511 | 509 | ||
512 | if (ret) { | 510 | if (ret) { |
513 | pr_debug("clockdomain: hardware cannot set/clear wake up of " | 511 | pr_debug("clockdomain: hardware cannot set/clear wake up of %s when %s wakes up\n", |
514 | "%s when %s wakes up\n", clkdm1->name, clkdm2->name); | 512 | clkdm1->name, clkdm2->name); |
515 | return ret; | 513 | return ret; |
516 | } | 514 | } |
517 | 515 | ||
518 | if (atomic_dec_return(&cd->wkdep_usecount) == 0) { | 516 | if (atomic_dec_return(&cd->wkdep_usecount) == 0) { |
519 | pr_debug("clockdomain: hardware will no longer wake up %s " | 517 | pr_debug("clockdomain: hardware will no longer wake up %s after %s wakes up\n", |
520 | "after %s wakes up\n", clkdm1->name, clkdm2->name); | 518 | clkdm1->name, clkdm2->name); |
521 | 519 | ||
522 | ret = arch_clkdm->clkdm_del_wkdep(clkdm1, clkdm2); | 520 | ret = arch_clkdm->clkdm_del_wkdep(clkdm1, clkdm2); |
523 | } | 521 | } |
@@ -555,8 +553,8 @@ int clkdm_read_wkdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2) | |||
555 | ret = -EINVAL; | 553 | ret = -EINVAL; |
556 | 554 | ||
557 | if (ret) { | 555 | if (ret) { |
558 | pr_debug("clockdomain: hardware cannot set/clear wake up of " | 556 | pr_debug("clockdomain: hardware cannot set/clear wake up of %s when %s wakes up\n", |
559 | "%s when %s wakes up\n", clkdm1->name, clkdm2->name); | 557 | clkdm1->name, clkdm2->name); |
560 | return ret; | 558 | return ret; |
561 | } | 559 | } |
562 | 560 | ||
@@ -613,15 +611,14 @@ int clkdm_add_sleepdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2) | |||
613 | ret = -EINVAL; | 611 | ret = -EINVAL; |
614 | 612 | ||
615 | if (ret) { | 613 | if (ret) { |
616 | pr_debug("clockdomain: hardware cannot set/clear sleep " | 614 | pr_debug("clockdomain: hardware cannot set/clear sleep dependency affecting %s from %s\n", |
617 | "dependency affecting %s from %s\n", clkdm1->name, | 615 | clkdm1->name, clkdm2->name); |
618 | clkdm2->name); | ||
619 | return ret; | 616 | return ret; |
620 | } | 617 | } |
621 | 618 | ||
622 | if (atomic_inc_return(&cd->sleepdep_usecount) == 1) { | 619 | if (atomic_inc_return(&cd->sleepdep_usecount) == 1) { |
623 | pr_debug("clockdomain: will prevent %s from sleeping if %s " | 620 | pr_debug("clockdomain: will prevent %s from sleeping if %s is active\n", |
624 | "is active\n", clkdm1->name, clkdm2->name); | 621 | clkdm1->name, clkdm2->name); |
625 | 622 | ||
626 | ret = arch_clkdm->clkdm_add_sleepdep(clkdm1, clkdm2); | 623 | ret = arch_clkdm->clkdm_add_sleepdep(clkdm1, clkdm2); |
627 | } | 624 | } |
@@ -657,16 +654,14 @@ int clkdm_del_sleepdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2) | |||
657 | ret = -EINVAL; | 654 | ret = -EINVAL; |
658 | 655 | ||
659 | if (ret) { | 656 | if (ret) { |
660 | pr_debug("clockdomain: hardware cannot set/clear sleep " | 657 | pr_debug("clockdomain: hardware cannot set/clear sleep dependency affecting %s from %s\n", |
661 | "dependency affecting %s from %s\n", clkdm1->name, | 658 | clkdm1->name, clkdm2->name); |
662 | clkdm2->name); | ||
663 | return ret; | 659 | return ret; |
664 | } | 660 | } |
665 | 661 | ||
666 | if (atomic_dec_return(&cd->sleepdep_usecount) == 0) { | 662 | if (atomic_dec_return(&cd->sleepdep_usecount) == 0) { |
667 | pr_debug("clockdomain: will no longer prevent %s from " | 663 | pr_debug("clockdomain: will no longer prevent %s from sleeping if %s is active\n", |
668 | "sleeping if %s is active\n", clkdm1->name, | 664 | clkdm1->name, clkdm2->name); |
669 | clkdm2->name); | ||
670 | 665 | ||
671 | ret = arch_clkdm->clkdm_del_sleepdep(clkdm1, clkdm2); | 666 | ret = arch_clkdm->clkdm_del_sleepdep(clkdm1, clkdm2); |
672 | } | 667 | } |
@@ -706,9 +701,8 @@ int clkdm_read_sleepdep(struct clockdomain *clkdm1, struct clockdomain *clkdm2) | |||
706 | ret = -EINVAL; | 701 | ret = -EINVAL; |
707 | 702 | ||
708 | if (ret) { | 703 | if (ret) { |
709 | pr_debug("clockdomain: hardware cannot set/clear sleep " | 704 | pr_debug("clockdomain: hardware cannot set/clear sleep dependency affecting %s from %s\n", |
710 | "dependency affecting %s from %s\n", clkdm1->name, | 705 | clkdm1->name, clkdm2->name); |
711 | clkdm2->name); | ||
712 | return ret; | 706 | return ret; |
713 | } | 707 | } |
714 | 708 | ||
@@ -755,8 +749,8 @@ int clkdm_sleep(struct clockdomain *clkdm) | |||
755 | return -EINVAL; | 749 | return -EINVAL; |
756 | 750 | ||
757 | if (!(clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) { | 751 | if (!(clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) { |
758 | pr_debug("clockdomain: %s does not support forcing " | 752 | pr_debug("clockdomain: %s does not support forcing sleep via software\n", |
759 | "sleep via software\n", clkdm->name); | 753 | clkdm->name); |
760 | return -EINVAL; | 754 | return -EINVAL; |
761 | } | 755 | } |
762 | 756 | ||
@@ -790,8 +784,8 @@ int clkdm_wakeup(struct clockdomain *clkdm) | |||
790 | return -EINVAL; | 784 | return -EINVAL; |
791 | 785 | ||
792 | if (!(clkdm->flags & CLKDM_CAN_FORCE_WAKEUP)) { | 786 | if (!(clkdm->flags & CLKDM_CAN_FORCE_WAKEUP)) { |
793 | pr_debug("clockdomain: %s does not support forcing " | 787 | pr_debug("clockdomain: %s does not support forcing wakeup via software\n", |
794 | "wakeup via software\n", clkdm->name); | 788 | clkdm->name); |
795 | return -EINVAL; | 789 | return -EINVAL; |
796 | } | 790 | } |
797 | 791 | ||
@@ -826,8 +820,8 @@ void clkdm_allow_idle(struct clockdomain *clkdm) | |||
826 | return; | 820 | return; |
827 | 821 | ||
828 | if (!(clkdm->flags & CLKDM_CAN_ENABLE_AUTO)) { | 822 | if (!(clkdm->flags & CLKDM_CAN_ENABLE_AUTO)) { |
829 | pr_debug("clock: automatic idle transitions cannot be enabled " | 823 | pr_debug("clock: %s: automatic idle transitions cannot be enabled\n", |
830 | "on clockdomain %s\n", clkdm->name); | 824 | clkdm->name); |
831 | return; | 825 | return; |
832 | } | 826 | } |
833 | 827 | ||
@@ -861,8 +855,8 @@ void clkdm_deny_idle(struct clockdomain *clkdm) | |||
861 | return; | 855 | return; |
862 | 856 | ||
863 | if (!(clkdm->flags & CLKDM_CAN_DISABLE_AUTO)) { | 857 | if (!(clkdm->flags & CLKDM_CAN_DISABLE_AUTO)) { |
864 | pr_debug("clockdomain: automatic idle transitions cannot be " | 858 | pr_debug("clockdomain: %s: automatic idle transitions cannot be disabled\n", |
865 | "disabled on %s\n", clkdm->name); | 859 | clkdm->name); |
866 | return; | 860 | return; |
867 | } | 861 | } |
868 | 862 | ||
@@ -905,6 +899,23 @@ bool clkdm_in_hwsup(struct clockdomain *clkdm) | |||
905 | return ret; | 899 | return ret; |
906 | } | 900 | } |
907 | 901 | ||
902 | /** | ||
903 | * clkdm_missing_idle_reporting - can @clkdm enter autoidle even if in use? | ||
904 | * @clkdm: struct clockdomain * | ||
905 | * | ||
906 | * Returns true if clockdomain @clkdm has the | ||
907 | * CLKDM_MISSING_IDLE_REPORTING flag set, or false if not or @clkdm is | ||
908 | * null. More information is available in the documentation for the | ||
909 | * CLKDM_MISSING_IDLE_REPORTING macro. | ||
910 | */ | ||
911 | bool clkdm_missing_idle_reporting(struct clockdomain *clkdm) | ||
912 | { | ||
913 | if (!clkdm) | ||
914 | return false; | ||
915 | |||
916 | return (clkdm->flags & CLKDM_MISSING_IDLE_REPORTING) ? true : false; | ||
917 | } | ||
918 | |||
908 | /* Clockdomain-to-clock/hwmod framework interface code */ | 919 | /* Clockdomain-to-clock/hwmod framework interface code */ |
909 | 920 | ||
910 | static int _clkdm_clk_hwmod_enable(struct clockdomain *clkdm) | 921 | static int _clkdm_clk_hwmod_enable(struct clockdomain *clkdm) |
@@ -927,7 +938,7 @@ static int _clkdm_clk_hwmod_enable(struct clockdomain *clkdm) | |||
927 | pwrdm_state_switch(clkdm->pwrdm.ptr); | 938 | pwrdm_state_switch(clkdm->pwrdm.ptr); |
928 | spin_unlock_irqrestore(&clkdm->lock, flags); | 939 | spin_unlock_irqrestore(&clkdm->lock, flags); |
929 | 940 | ||
930 | pr_debug("clockdomain: clkdm %s: enabled\n", clkdm->name); | 941 | pr_debug("clockdomain: %s: enabled\n", clkdm->name); |
931 | 942 | ||
932 | return 0; | 943 | return 0; |
933 | } | 944 | } |
@@ -952,7 +963,7 @@ static int _clkdm_clk_hwmod_disable(struct clockdomain *clkdm) | |||
952 | pwrdm_state_switch(clkdm->pwrdm.ptr); | 963 | pwrdm_state_switch(clkdm->pwrdm.ptr); |
953 | spin_unlock_irqrestore(&clkdm->lock, flags); | 964 | spin_unlock_irqrestore(&clkdm->lock, flags); |
954 | 965 | ||
955 | pr_debug("clockdomain: clkdm %s: disabled\n", clkdm->name); | 966 | pr_debug("clockdomain: %s: disabled\n", clkdm->name); |
956 | 967 | ||
957 | return 0; | 968 | return 0; |
958 | } | 969 | } |
diff --git a/arch/arm/mach-omap2/clockdomain.h b/arch/arm/mach-omap2/clockdomain.h index 5601dc13785e..629576be7444 100644 --- a/arch/arm/mach-omap2/clockdomain.h +++ b/arch/arm/mach-omap2/clockdomain.h | |||
@@ -1,9 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * arch/arm/plat-omap/include/mach/clockdomain.h | ||
3 | * | ||
4 | * OMAP2/3 clockdomain framework functions | 2 | * OMAP2/3 clockdomain framework functions |
5 | * | 3 | * |
6 | * Copyright (C) 2008 Texas Instruments, Inc. | 4 | * Copyright (C) 2008, 2012 Texas Instruments, Inc. |
7 | * Copyright (C) 2008-2011 Nokia Corporation | 5 | * Copyright (C) 2008-2011 Nokia Corporation |
8 | * | 6 | * |
9 | * Paul Walmsley | 7 | * Paul Walmsley |
@@ -34,6 +32,20 @@ | |||
34 | * CLKDM_ACTIVE_WITH_MPU: The PRCM guarantees that this clockdomain is | 32 | * CLKDM_ACTIVE_WITH_MPU: The PRCM guarantees that this clockdomain is |
35 | * active whenever the MPU is active. True for interconnects and | 33 | * active whenever the MPU is active. True for interconnects and |
36 | * the WKUP clockdomains. | 34 | * the WKUP clockdomains. |
35 | * CLKDM_MISSING_IDLE_REPORTING: The idle status of the IP blocks and | ||
36 | * clocks inside this clockdomain are not taken into account by | ||
37 | * the PRCM when determining whether the clockdomain is idle. | ||
38 | * Without this flag, if the clockdomain is set to | ||
39 | * hardware-supervised idle mode, the PRCM may transition the | ||
40 | * enclosing powerdomain to a low power state, even when devices | ||
41 | * inside the clockdomain and powerdomain are in use. (An example | ||
42 | * of such a clockdomain is the EMU clockdomain on OMAP3/4.) If | ||
43 | * this flag is set, and the clockdomain does not support the | ||
44 | * force-sleep mode, then the HW_AUTO mode will be used to put the | ||
45 | * clockdomain to sleep. Similarly, if the clockdomain supports | ||
46 | * the force-wakeup mode, then it will be used whenever a clock or | ||
47 | * IP block inside the clockdomain is active, rather than the | ||
48 | * HW_AUTO mode. | ||
37 | */ | 49 | */ |
38 | #define CLKDM_CAN_FORCE_SLEEP (1 << 0) | 50 | #define CLKDM_CAN_FORCE_SLEEP (1 << 0) |
39 | #define CLKDM_CAN_FORCE_WAKEUP (1 << 1) | 51 | #define CLKDM_CAN_FORCE_WAKEUP (1 << 1) |
@@ -41,6 +53,7 @@ | |||
41 | #define CLKDM_CAN_DISABLE_AUTO (1 << 3) | 53 | #define CLKDM_CAN_DISABLE_AUTO (1 << 3) |
42 | #define CLKDM_NO_AUTODEPS (1 << 4) | 54 | #define CLKDM_NO_AUTODEPS (1 << 4) |
43 | #define CLKDM_ACTIVE_WITH_MPU (1 << 5) | 55 | #define CLKDM_ACTIVE_WITH_MPU (1 << 5) |
56 | #define CLKDM_MISSING_IDLE_REPORTING (1 << 6) | ||
44 | 57 | ||
45 | #define CLKDM_CAN_HWSUP (CLKDM_CAN_ENABLE_AUTO | CLKDM_CAN_DISABLE_AUTO) | 58 | #define CLKDM_CAN_HWSUP (CLKDM_CAN_ENABLE_AUTO | CLKDM_CAN_DISABLE_AUTO) |
46 | #define CLKDM_CAN_SWSUP (CLKDM_CAN_FORCE_SLEEP | CLKDM_CAN_FORCE_WAKEUP) | 59 | #define CLKDM_CAN_SWSUP (CLKDM_CAN_FORCE_SLEEP | CLKDM_CAN_FORCE_WAKEUP) |
@@ -187,6 +200,7 @@ int clkdm_clear_all_sleepdeps(struct clockdomain *clkdm); | |||
187 | void clkdm_allow_idle(struct clockdomain *clkdm); | 200 | void clkdm_allow_idle(struct clockdomain *clkdm); |
188 | void clkdm_deny_idle(struct clockdomain *clkdm); | 201 | void clkdm_deny_idle(struct clockdomain *clkdm); |
189 | bool clkdm_in_hwsup(struct clockdomain *clkdm); | 202 | bool clkdm_in_hwsup(struct clockdomain *clkdm); |
203 | bool clkdm_missing_idle_reporting(struct clockdomain *clkdm); | ||
190 | 204 | ||
191 | int clkdm_wakeup(struct clockdomain *clkdm); | 205 | int clkdm_wakeup(struct clockdomain *clkdm); |
192 | int clkdm_sleep(struct clockdomain *clkdm); | 206 | int clkdm_sleep(struct clockdomain *clkdm); |
diff --git a/arch/arm/mach-omap2/clockdomain2xxx_3xxx.c b/arch/arm/mach-omap2/clockdomain2xxx_3xxx.c index a0d68dbecfa3..70294f54e35a 100644 --- a/arch/arm/mach-omap2/clockdomain2xxx_3xxx.c +++ b/arch/arm/mach-omap2/clockdomain2xxx_3xxx.c | |||
@@ -162,6 +162,19 @@ static void _disable_hwsup(struct clockdomain *clkdm) | |||
162 | clkdm->clktrctrl_mask); | 162 | clkdm->clktrctrl_mask); |
163 | } | 163 | } |
164 | 164 | ||
165 | static int omap3_clkdm_sleep(struct clockdomain *clkdm) | ||
166 | { | ||
167 | omap3xxx_cm_clkdm_force_sleep(clkdm->pwrdm.ptr->prcm_offs, | ||
168 | clkdm->clktrctrl_mask); | ||
169 | return 0; | ||
170 | } | ||
171 | |||
172 | static int omap3_clkdm_wakeup(struct clockdomain *clkdm) | ||
173 | { | ||
174 | omap3xxx_cm_clkdm_force_wakeup(clkdm->pwrdm.ptr->prcm_offs, | ||
175 | clkdm->clktrctrl_mask); | ||
176 | return 0; | ||
177 | } | ||
165 | 178 | ||
166 | static int omap2_clkdm_clk_enable(struct clockdomain *clkdm) | 179 | static int omap2_clkdm_clk_enable(struct clockdomain *clkdm) |
167 | { | 180 | { |
@@ -209,36 +222,90 @@ static int omap2_clkdm_clk_disable(struct clockdomain *clkdm) | |||
209 | return 0; | 222 | return 0; |
210 | } | 223 | } |
211 | 224 | ||
212 | static int omap3_clkdm_sleep(struct clockdomain *clkdm) | 225 | static void omap3_clkdm_allow_idle(struct clockdomain *clkdm) |
213 | { | 226 | { |
214 | omap3xxx_cm_clkdm_force_sleep(clkdm->pwrdm.ptr->prcm_offs, | 227 | if (atomic_read(&clkdm->usecount) > 0) |
228 | _clkdm_add_autodeps(clkdm); | ||
229 | |||
230 | omap3xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
215 | clkdm->clktrctrl_mask); | 231 | clkdm->clktrctrl_mask); |
216 | return 0; | ||
217 | } | 232 | } |
218 | 233 | ||
219 | static int omap3_clkdm_wakeup(struct clockdomain *clkdm) | 234 | static void omap3_clkdm_deny_idle(struct clockdomain *clkdm) |
220 | { | 235 | { |
221 | omap3xxx_cm_clkdm_force_wakeup(clkdm->pwrdm.ptr->prcm_offs, | 236 | omap3xxx_cm_clkdm_disable_hwsup(clkdm->pwrdm.ptr->prcm_offs, |
222 | clkdm->clktrctrl_mask); | 237 | clkdm->clktrctrl_mask); |
223 | return 0; | 238 | |
239 | if (atomic_read(&clkdm->usecount) > 0) | ||
240 | _clkdm_del_autodeps(clkdm); | ||
224 | } | 241 | } |
225 | 242 | ||
226 | static void omap3_clkdm_allow_idle(struct clockdomain *clkdm) | 243 | static int omap3xxx_clkdm_clk_enable(struct clockdomain *clkdm) |
227 | { | 244 | { |
228 | if (atomic_read(&clkdm->usecount) > 0) | 245 | bool hwsup = false; |
229 | _clkdm_add_autodeps(clkdm); | ||
230 | 246 | ||
231 | omap3xxx_cm_clkdm_enable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | 247 | if (!clkdm->clktrctrl_mask) |
248 | return 0; | ||
249 | |||
250 | /* | ||
251 | * The CLKDM_MISSING_IDLE_REPORTING flag documentation has | ||
252 | * more details on the unpleasant problem this is working | ||
253 | * around | ||
254 | */ | ||
255 | if ((clkdm->flags & CLKDM_MISSING_IDLE_REPORTING) && | ||
256 | (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP)) { | ||
257 | omap3_clkdm_wakeup(clkdm); | ||
258 | return 0; | ||
259 | } | ||
260 | |||
261 | hwsup = omap2_cm_is_clkdm_in_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
232 | clkdm->clktrctrl_mask); | 262 | clkdm->clktrctrl_mask); |
263 | |||
264 | if (hwsup) { | ||
265 | /* Disable HW transitions when we are changing deps */ | ||
266 | _disable_hwsup(clkdm); | ||
267 | _clkdm_add_autodeps(clkdm); | ||
268 | _enable_hwsup(clkdm); | ||
269 | } else { | ||
270 | if (clkdm->flags & CLKDM_CAN_FORCE_WAKEUP) | ||
271 | omap3_clkdm_wakeup(clkdm); | ||
272 | } | ||
273 | |||
274 | return 0; | ||
233 | } | 275 | } |
234 | 276 | ||
235 | static void omap3_clkdm_deny_idle(struct clockdomain *clkdm) | 277 | static int omap3xxx_clkdm_clk_disable(struct clockdomain *clkdm) |
236 | { | 278 | { |
237 | omap3xxx_cm_clkdm_disable_hwsup(clkdm->pwrdm.ptr->prcm_offs, | 279 | bool hwsup = false; |
280 | |||
281 | if (!clkdm->clktrctrl_mask) | ||
282 | return 0; | ||
283 | |||
284 | /* | ||
285 | * The CLKDM_MISSING_IDLE_REPORTING flag documentation has | ||
286 | * more details on the unpleasant problem this is working | ||
287 | * around | ||
288 | */ | ||
289 | if (clkdm->flags & CLKDM_MISSING_IDLE_REPORTING && | ||
290 | !(clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) { | ||
291 | _enable_hwsup(clkdm); | ||
292 | return 0; | ||
293 | } | ||
294 | |||
295 | hwsup = omap2_cm_is_clkdm_in_hwsup(clkdm->pwrdm.ptr->prcm_offs, | ||
238 | clkdm->clktrctrl_mask); | 296 | clkdm->clktrctrl_mask); |
239 | 297 | ||
240 | if (atomic_read(&clkdm->usecount) > 0) | 298 | if (hwsup) { |
299 | /* Disable HW transitions when we are changing deps */ | ||
300 | _disable_hwsup(clkdm); | ||
241 | _clkdm_del_autodeps(clkdm); | 301 | _clkdm_del_autodeps(clkdm); |
302 | _enable_hwsup(clkdm); | ||
303 | } else { | ||
304 | if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP) | ||
305 | omap3_clkdm_sleep(clkdm); | ||
306 | } | ||
307 | |||
308 | return 0; | ||
242 | } | 309 | } |
243 | 310 | ||
244 | struct clkdm_ops omap2_clkdm_operations = { | 311 | struct clkdm_ops omap2_clkdm_operations = { |
@@ -267,6 +334,6 @@ struct clkdm_ops omap3_clkdm_operations = { | |||
267 | .clkdm_wakeup = omap3_clkdm_wakeup, | 334 | .clkdm_wakeup = omap3_clkdm_wakeup, |
268 | .clkdm_allow_idle = omap3_clkdm_allow_idle, | 335 | .clkdm_allow_idle = omap3_clkdm_allow_idle, |
269 | .clkdm_deny_idle = omap3_clkdm_deny_idle, | 336 | .clkdm_deny_idle = omap3_clkdm_deny_idle, |
270 | .clkdm_clk_enable = omap2_clkdm_clk_enable, | 337 | .clkdm_clk_enable = omap3xxx_clkdm_clk_enable, |
271 | .clkdm_clk_disable = omap2_clkdm_clk_disable, | 338 | .clkdm_clk_disable = omap3xxx_clkdm_clk_disable, |
272 | }; | 339 | }; |
diff --git a/arch/arm/mach-omap2/clockdomain44xx.c b/arch/arm/mach-omap2/clockdomain44xx.c index 762f2cc542ce..6fc6155625bc 100644 --- a/arch/arm/mach-omap2/clockdomain44xx.c +++ b/arch/arm/mach-omap2/clockdomain44xx.c | |||
@@ -113,6 +113,17 @@ static int omap4_clkdm_clk_disable(struct clockdomain *clkdm) | |||
113 | if (!clkdm->prcm_partition) | 113 | if (!clkdm->prcm_partition) |
114 | return 0; | 114 | return 0; |
115 | 115 | ||
116 | /* | ||
117 | * The CLKDM_MISSING_IDLE_REPORTING flag documentation has | ||
118 | * more details on the unpleasant problem this is working | ||
119 | * around | ||
120 | */ | ||
121 | if (clkdm->flags & CLKDM_MISSING_IDLE_REPORTING && | ||
122 | !(clkdm->flags & CLKDM_CAN_FORCE_SLEEP)) { | ||
123 | omap4_clkdm_allow_idle(clkdm); | ||
124 | return 0; | ||
125 | } | ||
126 | |||
116 | hwsup = omap4_cminst_is_clkdm_in_hwsup(clkdm->prcm_partition, | 127 | hwsup = omap4_cminst_is_clkdm_in_hwsup(clkdm->prcm_partition, |
117 | clkdm->cm_inst, clkdm->clkdm_offs); | 128 | clkdm->cm_inst, clkdm->clkdm_offs); |
118 | 129 | ||
diff --git a/arch/arm/mach-omap2/clockdomains3xxx_data.c b/arch/arm/mach-omap2/clockdomains3xxx_data.c index 56089c49142a..933a35cd124a 100644 --- a/arch/arm/mach-omap2/clockdomains3xxx_data.c +++ b/arch/arm/mach-omap2/clockdomains3xxx_data.c | |||
@@ -387,14 +387,11 @@ static struct clockdomain per_am35x_clkdm = { | |||
387 | .clktrctrl_mask = OMAP3430_CLKTRCTRL_PER_MASK, | 387 | .clktrctrl_mask = OMAP3430_CLKTRCTRL_PER_MASK, |
388 | }; | 388 | }; |
389 | 389 | ||
390 | /* | ||
391 | * Disable hw supervised mode for emu_clkdm, because emu_pwrdm is | ||
392 | * switched of even if sdti is in use | ||
393 | */ | ||
394 | static struct clockdomain emu_clkdm = { | 390 | static struct clockdomain emu_clkdm = { |
395 | .name = "emu_clkdm", | 391 | .name = "emu_clkdm", |
396 | .pwrdm = { .name = "emu_pwrdm" }, | 392 | .pwrdm = { .name = "emu_pwrdm" }, |
397 | .flags = /* CLKDM_CAN_ENABLE_AUTO | */CLKDM_CAN_SWSUP, | 393 | .flags = (CLKDM_CAN_ENABLE_AUTO | CLKDM_CAN_SWSUP | |
394 | CLKDM_MISSING_IDLE_REPORTING), | ||
398 | .clktrctrl_mask = OMAP3430_CLKTRCTRL_EMU_MASK, | 395 | .clktrctrl_mask = OMAP3430_CLKTRCTRL_EMU_MASK, |
399 | }; | 396 | }; |
400 | 397 | ||
diff --git a/arch/arm/mach-omap2/clockdomains44xx_data.c b/arch/arm/mach-omap2/clockdomains44xx_data.c index 63d60a773d3b..b56d06b48782 100644 --- a/arch/arm/mach-omap2/clockdomains44xx_data.c +++ b/arch/arm/mach-omap2/clockdomains44xx_data.c | |||
@@ -390,7 +390,8 @@ static struct clockdomain emu_sys_44xx_clkdm = { | |||
390 | .prcm_partition = OMAP4430_PRM_PARTITION, | 390 | .prcm_partition = OMAP4430_PRM_PARTITION, |
391 | .cm_inst = OMAP4430_PRM_EMU_CM_INST, | 391 | .cm_inst = OMAP4430_PRM_EMU_CM_INST, |
392 | .clkdm_offs = OMAP4430_PRM_EMU_CM_EMU_CDOFFS, | 392 | .clkdm_offs = OMAP4430_PRM_EMU_CM_EMU_CDOFFS, |
393 | .flags = CLKDM_CAN_ENABLE_AUTO | CLKDM_CAN_FORCE_WAKEUP, | 393 | .flags = (CLKDM_CAN_ENABLE_AUTO | CLKDM_CAN_FORCE_WAKEUP | |
394 | CLKDM_MISSING_IDLE_REPORTING), | ||
394 | }; | 395 | }; |
395 | 396 | ||
396 | static struct clockdomain l3_dma_44xx_clkdm = { | 397 | static struct clockdomain l3_dma_44xx_clkdm = { |
diff --git a/arch/arm/mach-omap2/cm-regbits-33xx.h b/arch/arm/mach-omap2/cm-regbits-33xx.h index 532027ee3d8d..adf7bb79b18f 100644 --- a/arch/arm/mach-omap2/cm-regbits-33xx.h +++ b/arch/arm/mach-omap2/cm-regbits-33xx.h | |||
@@ -25,263 +25,328 @@ | |||
25 | * CM_AUTOIDLE_DPLL_MPU, CM_AUTOIDLE_DPLL_PER | 25 | * CM_AUTOIDLE_DPLL_MPU, CM_AUTOIDLE_DPLL_PER |
26 | */ | 26 | */ |
27 | #define AM33XX_AUTO_DPLL_MODE_SHIFT 0 | 27 | #define AM33XX_AUTO_DPLL_MODE_SHIFT 0 |
28 | #define AM33XX_AUTO_DPLL_MODE_WIDTH 3 | ||
28 | #define AM33XX_AUTO_DPLL_MODE_MASK (0x7 << 0) | 29 | #define AM33XX_AUTO_DPLL_MODE_MASK (0x7 << 0) |
29 | 30 | ||
30 | /* Used by CM_WKUP_CLKSTCTRL */ | 31 | /* Used by CM_WKUP_CLKSTCTRL */ |
31 | #define AM33XX_CLKACTIVITY_ADC_FCLK_SHIFT 14 | 32 | #define AM33XX_CLKACTIVITY_ADC_FCLK_SHIFT 14 |
33 | #define AM33XX_CLKACTIVITY_ADC_FCLK_WIDTH 1 | ||
32 | #define AM33XX_CLKACTIVITY_ADC_FCLK_MASK (1 << 16) | 34 | #define AM33XX_CLKACTIVITY_ADC_FCLK_MASK (1 << 16) |
33 | 35 | ||
34 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 36 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
35 | #define AM33XX_CLKACTIVITY_CAN_CLK_SHIFT 11 | 37 | #define AM33XX_CLKACTIVITY_CAN_CLK_SHIFT 11 |
38 | #define AM33XX_CLKACTIVITY_CAN_CLK_WIDTH 1 | ||
36 | #define AM33XX_CLKACTIVITY_CAN_CLK_MASK (1 << 11) | 39 | #define AM33XX_CLKACTIVITY_CAN_CLK_MASK (1 << 11) |
37 | 40 | ||
38 | /* Used by CM_PER_CLK_24MHZ_CLKSTCTRL */ | 41 | /* Used by CM_PER_CLK_24MHZ_CLKSTCTRL */ |
39 | #define AM33XX_CLKACTIVITY_CLK_24MHZ_GCLK_SHIFT 4 | 42 | #define AM33XX_CLKACTIVITY_CLK_24MHZ_GCLK_SHIFT 4 |
43 | #define AM33XX_CLKACTIVITY_CLK_24MHZ_GCLK_WIDTH 1 | ||
40 | #define AM33XX_CLKACTIVITY_CLK_24MHZ_GCLK_MASK (1 << 4) | 44 | #define AM33XX_CLKACTIVITY_CLK_24MHZ_GCLK_MASK (1 << 4) |
41 | 45 | ||
42 | /* Used by CM_PER_CPSW_CLKSTCTRL */ | 46 | /* Used by CM_PER_CPSW_CLKSTCTRL */ |
43 | #define AM33XX_CLKACTIVITY_CPSW_125MHZ_GCLK_SHIFT 4 | 47 | #define AM33XX_CLKACTIVITY_CPSW_125MHZ_GCLK_SHIFT 4 |
48 | #define AM33XX_CLKACTIVITY_CPSW_125MHZ_GCLK_WIDTH 1 | ||
44 | #define AM33XX_CLKACTIVITY_CPSW_125MHZ_GCLK_MASK (1 << 4) | 49 | #define AM33XX_CLKACTIVITY_CPSW_125MHZ_GCLK_MASK (1 << 4) |
45 | 50 | ||
46 | /* Used by CM_PER_L4HS_CLKSTCTRL */ | 51 | /* Used by CM_PER_L4HS_CLKSTCTRL */ |
47 | #define AM33XX_CLKACTIVITY_CPSW_250MHZ_GCLK_SHIFT 4 | 52 | #define AM33XX_CLKACTIVITY_CPSW_250MHZ_GCLK_SHIFT 4 |
53 | #define AM33XX_CLKACTIVITY_CPSW_250MHZ_GCLK_WIDTH 1 | ||
48 | #define AM33XX_CLKACTIVITY_CPSW_250MHZ_GCLK_MASK (1 << 4) | 54 | #define AM33XX_CLKACTIVITY_CPSW_250MHZ_GCLK_MASK (1 << 4) |
49 | 55 | ||
50 | /* Used by CM_PER_L4HS_CLKSTCTRL */ | 56 | /* Used by CM_PER_L4HS_CLKSTCTRL */ |
51 | #define AM33XX_CLKACTIVITY_CPSW_50MHZ_GCLK_SHIFT 5 | 57 | #define AM33XX_CLKACTIVITY_CPSW_50MHZ_GCLK_SHIFT 5 |
58 | #define AM33XX_CLKACTIVITY_CPSW_50MHZ_GCLK_WIDTH 1 | ||
52 | #define AM33XX_CLKACTIVITY_CPSW_50MHZ_GCLK_MASK (1 << 5) | 59 | #define AM33XX_CLKACTIVITY_CPSW_50MHZ_GCLK_MASK (1 << 5) |
53 | 60 | ||
54 | /* Used by CM_PER_L4HS_CLKSTCTRL */ | 61 | /* Used by CM_PER_L4HS_CLKSTCTRL */ |
55 | #define AM33XX_CLKACTIVITY_CPSW_5MHZ_GCLK_SHIFT 6 | 62 | #define AM33XX_CLKACTIVITY_CPSW_5MHZ_GCLK_SHIFT 6 |
63 | #define AM33XX_CLKACTIVITY_CPSW_5MHZ_GCLK_WIDTH 1 | ||
56 | #define AM33XX_CLKACTIVITY_CPSW_5MHZ_GCLK_MASK (1 << 6) | 64 | #define AM33XX_CLKACTIVITY_CPSW_5MHZ_GCLK_MASK (1 << 6) |
57 | 65 | ||
58 | /* Used by CM_PER_L3_CLKSTCTRL */ | 66 | /* Used by CM_PER_L3_CLKSTCTRL */ |
59 | #define AM33XX_CLKACTIVITY_CPTS_RFT_GCLK_SHIFT 6 | 67 | #define AM33XX_CLKACTIVITY_CPTS_RFT_GCLK_SHIFT 6 |
68 | #define AM33XX_CLKACTIVITY_CPTS_RFT_GCLK_WIDTH 1 | ||
60 | #define AM33XX_CLKACTIVITY_CPTS_RFT_GCLK_MASK (1 << 6) | 69 | #define AM33XX_CLKACTIVITY_CPTS_RFT_GCLK_MASK (1 << 6) |
61 | 70 | ||
62 | /* Used by CM_CEFUSE_CLKSTCTRL */ | 71 | /* Used by CM_CEFUSE_CLKSTCTRL */ |
63 | #define AM33XX_CLKACTIVITY_CUST_EFUSE_SYS_CLK_SHIFT 9 | 72 | #define AM33XX_CLKACTIVITY_CUST_EFUSE_SYS_CLK_SHIFT 9 |
73 | #define AM33XX_CLKACTIVITY_CUST_EFUSE_SYS_CLK_WIDTH 1 | ||
64 | #define AM33XX_CLKACTIVITY_CUST_EFUSE_SYS_CLK_MASK (1 << 9) | 74 | #define AM33XX_CLKACTIVITY_CUST_EFUSE_SYS_CLK_MASK (1 << 9) |
65 | 75 | ||
66 | /* Used by CM_L3_AON_CLKSTCTRL */ | 76 | /* Used by CM_L3_AON_CLKSTCTRL */ |
67 | #define AM33XX_CLKACTIVITY_DBGSYSCLK_SHIFT 2 | 77 | #define AM33XX_CLKACTIVITY_DBGSYSCLK_SHIFT 2 |
78 | #define AM33XX_CLKACTIVITY_DBGSYSCLK_WIDTH 1 | ||
68 | #define AM33XX_CLKACTIVITY_DBGSYSCLK_MASK (1 << 2) | 79 | #define AM33XX_CLKACTIVITY_DBGSYSCLK_MASK (1 << 2) |
69 | 80 | ||
70 | /* Used by CM_L3_AON_CLKSTCTRL */ | 81 | /* Used by CM_L3_AON_CLKSTCTRL */ |
71 | #define AM33XX_CLKACTIVITY_DEBUG_CLKA_SHIFT 4 | 82 | #define AM33XX_CLKACTIVITY_DEBUG_CLKA_SHIFT 4 |
83 | #define AM33XX_CLKACTIVITY_DEBUG_CLKA_WIDTH 1 | ||
72 | #define AM33XX_CLKACTIVITY_DEBUG_CLKA_MASK (1 << 4) | 84 | #define AM33XX_CLKACTIVITY_DEBUG_CLKA_MASK (1 << 4) |
73 | 85 | ||
74 | /* Used by CM_PER_L3_CLKSTCTRL */ | 86 | /* Used by CM_PER_L3_CLKSTCTRL */ |
75 | #define AM33XX_CLKACTIVITY_EMIF_GCLK_SHIFT 2 | 87 | #define AM33XX_CLKACTIVITY_EMIF_GCLK_SHIFT 2 |
88 | #define AM33XX_CLKACTIVITY_EMIF_GCLK_WIDTH 1 | ||
76 | #define AM33XX_CLKACTIVITY_EMIF_GCLK_MASK (1 << 2) | 89 | #define AM33XX_CLKACTIVITY_EMIF_GCLK_MASK (1 << 2) |
77 | 90 | ||
78 | /* Used by CM_GFX_L3_CLKSTCTRL */ | 91 | /* Used by CM_GFX_L3_CLKSTCTRL */ |
79 | #define AM33XX_CLKACTIVITY_GFX_FCLK_SHIFT 9 | 92 | #define AM33XX_CLKACTIVITY_GFX_FCLK_SHIFT 9 |
93 | #define AM33XX_CLKACTIVITY_GFX_FCLK_WIDTH 1 | ||
80 | #define AM33XX_CLKACTIVITY_GFX_FCLK_MASK (1 << 9) | 94 | #define AM33XX_CLKACTIVITY_GFX_FCLK_MASK (1 << 9) |
81 | 95 | ||
82 | /* Used by CM_GFX_L3_CLKSTCTRL */ | 96 | /* Used by CM_GFX_L3_CLKSTCTRL */ |
83 | #define AM33XX_CLKACTIVITY_GFX_L3_GCLK_SHIFT 8 | 97 | #define AM33XX_CLKACTIVITY_GFX_L3_GCLK_SHIFT 8 |
98 | #define AM33XX_CLKACTIVITY_GFX_L3_GCLK_WIDTH 1 | ||
84 | #define AM33XX_CLKACTIVITY_GFX_L3_GCLK_MASK (1 << 8) | 99 | #define AM33XX_CLKACTIVITY_GFX_L3_GCLK_MASK (1 << 8) |
85 | 100 | ||
86 | /* Used by CM_WKUP_CLKSTCTRL */ | 101 | /* Used by CM_WKUP_CLKSTCTRL */ |
87 | #define AM33XX_CLKACTIVITY_GPIO0_GDBCLK_SHIFT 8 | 102 | #define AM33XX_CLKACTIVITY_GPIO0_GDBCLK_SHIFT 8 |
103 | #define AM33XX_CLKACTIVITY_GPIO0_GDBCLK_WIDTH 1 | ||
88 | #define AM33XX_CLKACTIVITY_GPIO0_GDBCLK_MASK (1 << 8) | 104 | #define AM33XX_CLKACTIVITY_GPIO0_GDBCLK_MASK (1 << 8) |
89 | 105 | ||
90 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 106 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
91 | #define AM33XX_CLKACTIVITY_GPIO_1_GDBCLK_SHIFT 19 | 107 | #define AM33XX_CLKACTIVITY_GPIO_1_GDBCLK_SHIFT 19 |
108 | #define AM33XX_CLKACTIVITY_GPIO_1_GDBCLK_WIDTH 1 | ||
92 | #define AM33XX_CLKACTIVITY_GPIO_1_GDBCLK_MASK (1 << 19) | 109 | #define AM33XX_CLKACTIVITY_GPIO_1_GDBCLK_MASK (1 << 19) |
93 | 110 | ||
94 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 111 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
95 | #define AM33XX_CLKACTIVITY_GPIO_2_GDBCLK_SHIFT 20 | 112 | #define AM33XX_CLKACTIVITY_GPIO_2_GDBCLK_SHIFT 20 |
113 | #define AM33XX_CLKACTIVITY_GPIO_2_GDBCLK_WIDTH 1 | ||
96 | #define AM33XX_CLKACTIVITY_GPIO_2_GDBCLK_MASK (1 << 20) | 114 | #define AM33XX_CLKACTIVITY_GPIO_2_GDBCLK_MASK (1 << 20) |
97 | 115 | ||
98 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 116 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
99 | #define AM33XX_CLKACTIVITY_GPIO_3_GDBCLK_SHIFT 21 | 117 | #define AM33XX_CLKACTIVITY_GPIO_3_GDBCLK_SHIFT 21 |
118 | #define AM33XX_CLKACTIVITY_GPIO_3_GDBCLK_WIDTH 1 | ||
100 | #define AM33XX_CLKACTIVITY_GPIO_3_GDBCLK_MASK (1 << 21) | 119 | #define AM33XX_CLKACTIVITY_GPIO_3_GDBCLK_MASK (1 << 21) |
101 | 120 | ||
102 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 121 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
103 | #define AM33XX_CLKACTIVITY_GPIO_4_GDBCLK_SHIFT 22 | 122 | #define AM33XX_CLKACTIVITY_GPIO_4_GDBCLK_SHIFT 22 |
123 | #define AM33XX_CLKACTIVITY_GPIO_4_GDBCLK_WIDTH 1 | ||
104 | #define AM33XX_CLKACTIVITY_GPIO_4_GDBCLK_MASK (1 << 22) | 124 | #define AM33XX_CLKACTIVITY_GPIO_4_GDBCLK_MASK (1 << 22) |
105 | 125 | ||
106 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 126 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
107 | #define AM33XX_CLKACTIVITY_GPIO_5_GDBCLK_SHIFT 26 | 127 | #define AM33XX_CLKACTIVITY_GPIO_5_GDBCLK_SHIFT 26 |
128 | #define AM33XX_CLKACTIVITY_GPIO_5_GDBCLK_WIDTH 1 | ||
108 | #define AM33XX_CLKACTIVITY_GPIO_5_GDBCLK_MASK (1 << 26) | 129 | #define AM33XX_CLKACTIVITY_GPIO_5_GDBCLK_MASK (1 << 26) |
109 | 130 | ||
110 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 131 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
111 | #define AM33XX_CLKACTIVITY_GPIO_6_GDBCLK_SHIFT 18 | 132 | #define AM33XX_CLKACTIVITY_GPIO_6_GDBCLK_SHIFT 18 |
133 | #define AM33XX_CLKACTIVITY_GPIO_6_GDBCLK_WIDTH 1 | ||
112 | #define AM33XX_CLKACTIVITY_GPIO_6_GDBCLK_MASK (1 << 18) | 134 | #define AM33XX_CLKACTIVITY_GPIO_6_GDBCLK_MASK (1 << 18) |
113 | 135 | ||
114 | /* Used by CM_WKUP_CLKSTCTRL */ | 136 | /* Used by CM_WKUP_CLKSTCTRL */ |
115 | #define AM33XX_CLKACTIVITY_I2C0_GFCLK_SHIFT 11 | 137 | #define AM33XX_CLKACTIVITY_I2C0_GFCLK_SHIFT 11 |
138 | #define AM33XX_CLKACTIVITY_I2C0_GFCLK_WIDTH 1 | ||
116 | #define AM33XX_CLKACTIVITY_I2C0_GFCLK_MASK (1 << 11) | 139 | #define AM33XX_CLKACTIVITY_I2C0_GFCLK_MASK (1 << 11) |
117 | 140 | ||
118 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 141 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
119 | #define AM33XX_CLKACTIVITY_I2C_FCLK_SHIFT 24 | 142 | #define AM33XX_CLKACTIVITY_I2C_FCLK_SHIFT 24 |
143 | #define AM33XX_CLKACTIVITY_I2C_FCLK_WIDTH 1 | ||
120 | #define AM33XX_CLKACTIVITY_I2C_FCLK_MASK (1 << 24) | 144 | #define AM33XX_CLKACTIVITY_I2C_FCLK_MASK (1 << 24) |
121 | 145 | ||
122 | /* Used by CM_PER_PRUSS_CLKSTCTRL */ | 146 | /* Used by CM_PER_PRUSS_CLKSTCTRL */ |
123 | #define AM33XX_CLKACTIVITY_PRUSS_IEP_GCLK_SHIFT 5 | 147 | #define AM33XX_CLKACTIVITY_PRUSS_IEP_GCLK_SHIFT 5 |
148 | #define AM33XX_CLKACTIVITY_PRUSS_IEP_GCLK_WIDTH 1 | ||
124 | #define AM33XX_CLKACTIVITY_PRUSS_IEP_GCLK_MASK (1 << 5) | 149 | #define AM33XX_CLKACTIVITY_PRUSS_IEP_GCLK_MASK (1 << 5) |
125 | 150 | ||
126 | /* Used by CM_PER_PRUSS_CLKSTCTRL */ | 151 | /* Used by CM_PER_PRUSS_CLKSTCTRL */ |
127 | #define AM33XX_CLKACTIVITY_PRUSS_OCP_GCLK_SHIFT 4 | 152 | #define AM33XX_CLKACTIVITY_PRUSS_OCP_GCLK_SHIFT 4 |
153 | #define AM33XX_CLKACTIVITY_PRUSS_OCP_GCLK_WIDTH 1 | ||
128 | #define AM33XX_CLKACTIVITY_PRUSS_OCP_GCLK_MASK (1 << 4) | 154 | #define AM33XX_CLKACTIVITY_PRUSS_OCP_GCLK_MASK (1 << 4) |
129 | 155 | ||
130 | /* Used by CM_PER_PRUSS_CLKSTCTRL */ | 156 | /* Used by CM_PER_PRUSS_CLKSTCTRL */ |
131 | #define AM33XX_CLKACTIVITY_PRUSS_UART_GCLK_SHIFT 6 | 157 | #define AM33XX_CLKACTIVITY_PRUSS_UART_GCLK_SHIFT 6 |
158 | #define AM33XX_CLKACTIVITY_PRUSS_UART_GCLK_WIDTH 1 | ||
132 | #define AM33XX_CLKACTIVITY_PRUSS_UART_GCLK_MASK (1 << 6) | 159 | #define AM33XX_CLKACTIVITY_PRUSS_UART_GCLK_MASK (1 << 6) |
133 | 160 | ||
134 | /* Used by CM_PER_L3S_CLKSTCTRL */ | 161 | /* Used by CM_PER_L3S_CLKSTCTRL */ |
135 | #define AM33XX_CLKACTIVITY_L3S_GCLK_SHIFT 3 | 162 | #define AM33XX_CLKACTIVITY_L3S_GCLK_SHIFT 3 |
163 | #define AM33XX_CLKACTIVITY_L3S_GCLK_WIDTH 1 | ||
136 | #define AM33XX_CLKACTIVITY_L3S_GCLK_MASK (1 << 3) | 164 | #define AM33XX_CLKACTIVITY_L3S_GCLK_MASK (1 << 3) |
137 | 165 | ||
138 | /* Used by CM_L3_AON_CLKSTCTRL */ | 166 | /* Used by CM_L3_AON_CLKSTCTRL */ |
139 | #define AM33XX_CLKACTIVITY_L3_AON_GCLK_SHIFT 3 | 167 | #define AM33XX_CLKACTIVITY_L3_AON_GCLK_SHIFT 3 |
168 | #define AM33XX_CLKACTIVITY_L3_AON_GCLK_WIDTH 1 | ||
140 | #define AM33XX_CLKACTIVITY_L3_AON_GCLK_MASK (1 << 3) | 169 | #define AM33XX_CLKACTIVITY_L3_AON_GCLK_MASK (1 << 3) |
141 | 170 | ||
142 | /* Used by CM_PER_L3_CLKSTCTRL */ | 171 | /* Used by CM_PER_L3_CLKSTCTRL */ |
143 | #define AM33XX_CLKACTIVITY_L3_GCLK_SHIFT 4 | 172 | #define AM33XX_CLKACTIVITY_L3_GCLK_SHIFT 4 |
173 | #define AM33XX_CLKACTIVITY_L3_GCLK_WIDTH 1 | ||
144 | #define AM33XX_CLKACTIVITY_L3_GCLK_MASK (1 << 4) | 174 | #define AM33XX_CLKACTIVITY_L3_GCLK_MASK (1 << 4) |
145 | 175 | ||
146 | /* Used by CM_PER_L4FW_CLKSTCTRL */ | 176 | /* Used by CM_PER_L4FW_CLKSTCTRL */ |
147 | #define AM33XX_CLKACTIVITY_L4FW_GCLK_SHIFT 8 | 177 | #define AM33XX_CLKACTIVITY_L4FW_GCLK_SHIFT 8 |
178 | #define AM33XX_CLKACTIVITY_L4FW_GCLK_WIDTH 1 | ||
148 | #define AM33XX_CLKACTIVITY_L4FW_GCLK_MASK (1 << 8) | 179 | #define AM33XX_CLKACTIVITY_L4FW_GCLK_MASK (1 << 8) |
149 | 180 | ||
150 | /* Used by CM_PER_L4HS_CLKSTCTRL */ | 181 | /* Used by CM_PER_L4HS_CLKSTCTRL */ |
151 | #define AM33XX_CLKACTIVITY_L4HS_GCLK_SHIFT 3 | 182 | #define AM33XX_CLKACTIVITY_L4HS_GCLK_SHIFT 3 |
183 | #define AM33XX_CLKACTIVITY_L4HS_GCLK_WIDTH 1 | ||
152 | #define AM33XX_CLKACTIVITY_L4HS_GCLK_MASK (1 << 3) | 184 | #define AM33XX_CLKACTIVITY_L4HS_GCLK_MASK (1 << 3) |
153 | 185 | ||
154 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 186 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
155 | #define AM33XX_CLKACTIVITY_L4LS_GCLK_SHIFT 8 | 187 | #define AM33XX_CLKACTIVITY_L4LS_GCLK_SHIFT 8 |
188 | #define AM33XX_CLKACTIVITY_L4LS_GCLK_WIDTH 1 | ||
156 | #define AM33XX_CLKACTIVITY_L4LS_GCLK_MASK (1 << 8) | 189 | #define AM33XX_CLKACTIVITY_L4LS_GCLK_MASK (1 << 8) |
157 | 190 | ||
158 | /* Used by CM_GFX_L4LS_GFX_CLKSTCTRL__1 */ | 191 | /* Used by CM_GFX_L4LS_GFX_CLKSTCTRL__1 */ |
159 | #define AM33XX_CLKACTIVITY_L4LS_GFX_GCLK_SHIFT 8 | 192 | #define AM33XX_CLKACTIVITY_L4LS_GFX_GCLK_SHIFT 8 |
193 | #define AM33XX_CLKACTIVITY_L4LS_GFX_GCLK_WIDTH 1 | ||
160 | #define AM33XX_CLKACTIVITY_L4LS_GFX_GCLK_MASK (1 << 8) | 194 | #define AM33XX_CLKACTIVITY_L4LS_GFX_GCLK_MASK (1 << 8) |
161 | 195 | ||
162 | /* Used by CM_CEFUSE_CLKSTCTRL */ | 196 | /* Used by CM_CEFUSE_CLKSTCTRL */ |
163 | #define AM33XX_CLKACTIVITY_L4_CEFUSE_GICLK_SHIFT 8 | 197 | #define AM33XX_CLKACTIVITY_L4_CEFUSE_GICLK_SHIFT 8 |
198 | #define AM33XX_CLKACTIVITY_L4_CEFUSE_GICLK_WIDTH 1 | ||
164 | #define AM33XX_CLKACTIVITY_L4_CEFUSE_GICLK_MASK (1 << 8) | 199 | #define AM33XX_CLKACTIVITY_L4_CEFUSE_GICLK_MASK (1 << 8) |
165 | 200 | ||
166 | /* Used by CM_RTC_CLKSTCTRL */ | 201 | /* Used by CM_RTC_CLKSTCTRL */ |
167 | #define AM33XX_CLKACTIVITY_L4_RTC_GCLK_SHIFT 8 | 202 | #define AM33XX_CLKACTIVITY_L4_RTC_GCLK_SHIFT 8 |
203 | #define AM33XX_CLKACTIVITY_L4_RTC_GCLK_WIDTH 1 | ||
168 | #define AM33XX_CLKACTIVITY_L4_RTC_GCLK_MASK (1 << 8) | 204 | #define AM33XX_CLKACTIVITY_L4_RTC_GCLK_MASK (1 << 8) |
169 | 205 | ||
170 | /* Used by CM_L4_WKUP_AON_CLKSTCTRL */ | 206 | /* Used by CM_L4_WKUP_AON_CLKSTCTRL */ |
171 | #define AM33XX_CLKACTIVITY_L4_WKUP_AON_GCLK_SHIFT 2 | 207 | #define AM33XX_CLKACTIVITY_L4_WKUP_AON_GCLK_SHIFT 2 |
208 | #define AM33XX_CLKACTIVITY_L4_WKUP_AON_GCLK_WIDTH 1 | ||
172 | #define AM33XX_CLKACTIVITY_L4_WKUP_AON_GCLK_MASK (1 << 2) | 209 | #define AM33XX_CLKACTIVITY_L4_WKUP_AON_GCLK_MASK (1 << 2) |
173 | 210 | ||
174 | /* Used by CM_WKUP_CLKSTCTRL */ | 211 | /* Used by CM_WKUP_CLKSTCTRL */ |
175 | #define AM33XX_CLKACTIVITY_L4_WKUP_GCLK_SHIFT 2 | 212 | #define AM33XX_CLKACTIVITY_L4_WKUP_GCLK_SHIFT 2 |
213 | #define AM33XX_CLKACTIVITY_L4_WKUP_GCLK_WIDTH 1 | ||
176 | #define AM33XX_CLKACTIVITY_L4_WKUP_GCLK_MASK (1 << 2) | 214 | #define AM33XX_CLKACTIVITY_L4_WKUP_GCLK_MASK (1 << 2) |
177 | 215 | ||
178 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 216 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
179 | #define AM33XX_CLKACTIVITY_LCDC_GCLK_SHIFT 17 | 217 | #define AM33XX_CLKACTIVITY_LCDC_GCLK_SHIFT 17 |
218 | #define AM33XX_CLKACTIVITY_LCDC_GCLK_WIDTH 1 | ||
180 | #define AM33XX_CLKACTIVITY_LCDC_GCLK_MASK (1 << 17) | 219 | #define AM33XX_CLKACTIVITY_LCDC_GCLK_MASK (1 << 17) |
181 | 220 | ||
182 | /* Used by CM_PER_LCDC_CLKSTCTRL */ | 221 | /* Used by CM_PER_LCDC_CLKSTCTRL */ |
183 | #define AM33XX_CLKACTIVITY_LCDC_L3_OCP_GCLK_SHIFT 4 | 222 | #define AM33XX_CLKACTIVITY_LCDC_L3_OCP_GCLK_SHIFT 4 |
223 | #define AM33XX_CLKACTIVITY_LCDC_L3_OCP_GCLK_WIDTH 1 | ||
184 | #define AM33XX_CLKACTIVITY_LCDC_L3_OCP_GCLK_MASK (1 << 4) | 224 | #define AM33XX_CLKACTIVITY_LCDC_L3_OCP_GCLK_MASK (1 << 4) |
185 | 225 | ||
186 | /* Used by CM_PER_LCDC_CLKSTCTRL */ | 226 | /* Used by CM_PER_LCDC_CLKSTCTRL */ |
187 | #define AM33XX_CLKACTIVITY_LCDC_L4_OCP_GCLK_SHIFT 5 | 227 | #define AM33XX_CLKACTIVITY_LCDC_L4_OCP_GCLK_SHIFT 5 |
228 | #define AM33XX_CLKACTIVITY_LCDC_L4_OCP_GCLK_WIDTH 1 | ||
188 | #define AM33XX_CLKACTIVITY_LCDC_L4_OCP_GCLK_MASK (1 << 5) | 229 | #define AM33XX_CLKACTIVITY_LCDC_L4_OCP_GCLK_MASK (1 << 5) |
189 | 230 | ||
190 | /* Used by CM_PER_L3_CLKSTCTRL */ | 231 | /* Used by CM_PER_L3_CLKSTCTRL */ |
191 | #define AM33XX_CLKACTIVITY_MCASP_GCLK_SHIFT 7 | 232 | #define AM33XX_CLKACTIVITY_MCASP_GCLK_SHIFT 7 |
233 | #define AM33XX_CLKACTIVITY_MCASP_GCLK_WIDTH 1 | ||
192 | #define AM33XX_CLKACTIVITY_MCASP_GCLK_MASK (1 << 7) | 234 | #define AM33XX_CLKACTIVITY_MCASP_GCLK_MASK (1 << 7) |
193 | 235 | ||
194 | /* Used by CM_PER_L3_CLKSTCTRL */ | 236 | /* Used by CM_PER_L3_CLKSTCTRL */ |
195 | #define AM33XX_CLKACTIVITY_MMC_FCLK_SHIFT 3 | 237 | #define AM33XX_CLKACTIVITY_MMC_FCLK_SHIFT 3 |
238 | #define AM33XX_CLKACTIVITY_MMC_FCLK_WIDTH 1 | ||
196 | #define AM33XX_CLKACTIVITY_MMC_FCLK_MASK (1 << 3) | 239 | #define AM33XX_CLKACTIVITY_MMC_FCLK_MASK (1 << 3) |
197 | 240 | ||
198 | /* Used by CM_MPU_CLKSTCTRL */ | 241 | /* Used by CM_MPU_CLKSTCTRL */ |
199 | #define AM33XX_CLKACTIVITY_MPU_CLK_SHIFT 2 | 242 | #define AM33XX_CLKACTIVITY_MPU_CLK_SHIFT 2 |
243 | #define AM33XX_CLKACTIVITY_MPU_CLK_WIDTH 1 | ||
200 | #define AM33XX_CLKACTIVITY_MPU_CLK_MASK (1 << 2) | 244 | #define AM33XX_CLKACTIVITY_MPU_CLK_MASK (1 << 2) |
201 | 245 | ||
202 | /* Used by CM_PER_OCPWP_L3_CLKSTCTRL */ | 246 | /* Used by CM_PER_OCPWP_L3_CLKSTCTRL */ |
203 | #define AM33XX_CLKACTIVITY_OCPWP_L3_GCLK_SHIFT 4 | 247 | #define AM33XX_CLKACTIVITY_OCPWP_L3_GCLK_SHIFT 4 |
248 | #define AM33XX_CLKACTIVITY_OCPWP_L3_GCLK_WIDTH 1 | ||
204 | #define AM33XX_CLKACTIVITY_OCPWP_L3_GCLK_MASK (1 << 4) | 249 | #define AM33XX_CLKACTIVITY_OCPWP_L3_GCLK_MASK (1 << 4) |
205 | 250 | ||
206 | /* Used by CM_PER_OCPWP_L3_CLKSTCTRL */ | 251 | /* Used by CM_PER_OCPWP_L3_CLKSTCTRL */ |
207 | #define AM33XX_CLKACTIVITY_OCPWP_L4_GCLK_SHIFT 5 | 252 | #define AM33XX_CLKACTIVITY_OCPWP_L4_GCLK_SHIFT 5 |
253 | #define AM33XX_CLKACTIVITY_OCPWP_L4_GCLK_WIDTH 1 | ||
208 | #define AM33XX_CLKACTIVITY_OCPWP_L4_GCLK_MASK (1 << 5) | 254 | #define AM33XX_CLKACTIVITY_OCPWP_L4_GCLK_MASK (1 << 5) |
209 | 255 | ||
210 | /* Used by CM_RTC_CLKSTCTRL */ | 256 | /* Used by CM_RTC_CLKSTCTRL */ |
211 | #define AM33XX_CLKACTIVITY_RTC_32KCLK_SHIFT 9 | 257 | #define AM33XX_CLKACTIVITY_RTC_32KCLK_SHIFT 9 |
258 | #define AM33XX_CLKACTIVITY_RTC_32KCLK_WIDTH 1 | ||
212 | #define AM33XX_CLKACTIVITY_RTC_32KCLK_MASK (1 << 9) | 259 | #define AM33XX_CLKACTIVITY_RTC_32KCLK_MASK (1 << 9) |
213 | 260 | ||
214 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 261 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
215 | #define AM33XX_CLKACTIVITY_SPI_GCLK_SHIFT 25 | 262 | #define AM33XX_CLKACTIVITY_SPI_GCLK_SHIFT 25 |
263 | #define AM33XX_CLKACTIVITY_SPI_GCLK_WIDTH 1 | ||
216 | #define AM33XX_CLKACTIVITY_SPI_GCLK_MASK (1 << 25) | 264 | #define AM33XX_CLKACTIVITY_SPI_GCLK_MASK (1 << 25) |
217 | 265 | ||
218 | /* Used by CM_WKUP_CLKSTCTRL */ | 266 | /* Used by CM_WKUP_CLKSTCTRL */ |
219 | #define AM33XX_CLKACTIVITY_SR_SYSCLK_SHIFT 3 | 267 | #define AM33XX_CLKACTIVITY_SR_SYSCLK_SHIFT 3 |
268 | #define AM33XX_CLKACTIVITY_SR_SYSCLK_WIDTH 1 | ||
220 | #define AM33XX_CLKACTIVITY_SR_SYSCLK_MASK (1 << 3) | 269 | #define AM33XX_CLKACTIVITY_SR_SYSCLK_MASK (1 << 3) |
221 | 270 | ||
222 | /* Used by CM_WKUP_CLKSTCTRL */ | 271 | /* Used by CM_WKUP_CLKSTCTRL */ |
223 | #define AM33XX_CLKACTIVITY_TIMER0_GCLK_SHIFT 10 | 272 | #define AM33XX_CLKACTIVITY_TIMER0_GCLK_SHIFT 10 |
273 | #define AM33XX_CLKACTIVITY_TIMER0_GCLK_WIDTH 1 | ||
224 | #define AM33XX_CLKACTIVITY_TIMER0_GCLK_MASK (1 << 10) | 274 | #define AM33XX_CLKACTIVITY_TIMER0_GCLK_MASK (1 << 10) |
225 | 275 | ||
226 | /* Used by CM_WKUP_CLKSTCTRL */ | 276 | /* Used by CM_WKUP_CLKSTCTRL */ |
227 | #define AM33XX_CLKACTIVITY_TIMER1_GCLK_SHIFT 13 | 277 | #define AM33XX_CLKACTIVITY_TIMER1_GCLK_SHIFT 13 |
278 | #define AM33XX_CLKACTIVITY_TIMER1_GCLK_WIDTH 1 | ||
228 | #define AM33XX_CLKACTIVITY_TIMER1_GCLK_MASK (1 << 13) | 279 | #define AM33XX_CLKACTIVITY_TIMER1_GCLK_MASK (1 << 13) |
229 | 280 | ||
230 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 281 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
231 | #define AM33XX_CLKACTIVITY_TIMER2_GCLK_SHIFT 14 | 282 | #define AM33XX_CLKACTIVITY_TIMER2_GCLK_SHIFT 14 |
283 | #define AM33XX_CLKACTIVITY_TIMER2_GCLK_WIDTH 1 | ||
232 | #define AM33XX_CLKACTIVITY_TIMER2_GCLK_MASK (1 << 14) | 284 | #define AM33XX_CLKACTIVITY_TIMER2_GCLK_MASK (1 << 14) |
233 | 285 | ||
234 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 286 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
235 | #define AM33XX_CLKACTIVITY_TIMER3_GCLK_SHIFT 15 | 287 | #define AM33XX_CLKACTIVITY_TIMER3_GCLK_SHIFT 15 |
288 | #define AM33XX_CLKACTIVITY_TIMER3_GCLK_WIDTH 1 | ||
236 | #define AM33XX_CLKACTIVITY_TIMER3_GCLK_MASK (1 << 15) | 289 | #define AM33XX_CLKACTIVITY_TIMER3_GCLK_MASK (1 << 15) |
237 | 290 | ||
238 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 291 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
239 | #define AM33XX_CLKACTIVITY_TIMER4_GCLK_SHIFT 16 | 292 | #define AM33XX_CLKACTIVITY_TIMER4_GCLK_SHIFT 16 |
293 | #define AM33XX_CLKACTIVITY_TIMER4_GCLK_WIDTH 1 | ||
240 | #define AM33XX_CLKACTIVITY_TIMER4_GCLK_MASK (1 << 16) | 294 | #define AM33XX_CLKACTIVITY_TIMER4_GCLK_MASK (1 << 16) |
241 | 295 | ||
242 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 296 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
243 | #define AM33XX_CLKACTIVITY_TIMER5_GCLK_SHIFT 27 | 297 | #define AM33XX_CLKACTIVITY_TIMER5_GCLK_SHIFT 27 |
298 | #define AM33XX_CLKACTIVITY_TIMER5_GCLK_WIDTH 1 | ||
244 | #define AM33XX_CLKACTIVITY_TIMER5_GCLK_MASK (1 << 27) | 299 | #define AM33XX_CLKACTIVITY_TIMER5_GCLK_MASK (1 << 27) |
245 | 300 | ||
246 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 301 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
247 | #define AM33XX_CLKACTIVITY_TIMER6_GCLK_SHIFT 28 | 302 | #define AM33XX_CLKACTIVITY_TIMER6_GCLK_SHIFT 28 |
303 | #define AM33XX_CLKACTIVITY_TIMER6_GCLK_WIDTH 1 | ||
248 | #define AM33XX_CLKACTIVITY_TIMER6_GCLK_MASK (1 << 28) | 304 | #define AM33XX_CLKACTIVITY_TIMER6_GCLK_MASK (1 << 28) |
249 | 305 | ||
250 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 306 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
251 | #define AM33XX_CLKACTIVITY_TIMER7_GCLK_SHIFT 13 | 307 | #define AM33XX_CLKACTIVITY_TIMER7_GCLK_SHIFT 13 |
308 | #define AM33XX_CLKACTIVITY_TIMER7_GCLK_WIDTH 1 | ||
252 | #define AM33XX_CLKACTIVITY_TIMER7_GCLK_MASK (1 << 13) | 309 | #define AM33XX_CLKACTIVITY_TIMER7_GCLK_MASK (1 << 13) |
253 | 310 | ||
254 | /* Used by CM_WKUP_CLKSTCTRL */ | 311 | /* Used by CM_WKUP_CLKSTCTRL */ |
255 | #define AM33XX_CLKACTIVITY_UART0_GFCLK_SHIFT 12 | 312 | #define AM33XX_CLKACTIVITY_UART0_GFCLK_SHIFT 12 |
313 | #define AM33XX_CLKACTIVITY_UART0_GFCLK_WIDTH 1 | ||
256 | #define AM33XX_CLKACTIVITY_UART0_GFCLK_MASK (1 << 12) | 314 | #define AM33XX_CLKACTIVITY_UART0_GFCLK_MASK (1 << 12) |
257 | 315 | ||
258 | /* Used by CM_PER_L4LS_CLKSTCTRL */ | 316 | /* Used by CM_PER_L4LS_CLKSTCTRL */ |
259 | #define AM33XX_CLKACTIVITY_UART_GFCLK_SHIFT 10 | 317 | #define AM33XX_CLKACTIVITY_UART_GFCLK_SHIFT 10 |
318 | #define AM33XX_CLKACTIVITY_UART_GFCLK_WIDTH 1 | ||
260 | #define AM33XX_CLKACTIVITY_UART_GFCLK_MASK (1 << 10) | 319 | #define AM33XX_CLKACTIVITY_UART_GFCLK_MASK (1 << 10) |
261 | 320 | ||
262 | /* Used by CM_WKUP_CLKSTCTRL */ | 321 | /* Used by CM_WKUP_CLKSTCTRL */ |
263 | #define AM33XX_CLKACTIVITY_WDT0_GCLK_SHIFT 9 | 322 | #define AM33XX_CLKACTIVITY_WDT0_GCLK_SHIFT 9 |
323 | #define AM33XX_CLKACTIVITY_WDT0_GCLK_WIDTH 1 | ||
264 | #define AM33XX_CLKACTIVITY_WDT0_GCLK_MASK (1 << 9) | 324 | #define AM33XX_CLKACTIVITY_WDT0_GCLK_MASK (1 << 9) |
265 | 325 | ||
266 | /* Used by CM_WKUP_CLKSTCTRL */ | 326 | /* Used by CM_WKUP_CLKSTCTRL */ |
267 | #define AM33XX_CLKACTIVITY_WDT1_GCLK_SHIFT 4 | 327 | #define AM33XX_CLKACTIVITY_WDT1_GCLK_SHIFT 4 |
328 | #define AM33XX_CLKACTIVITY_WDT1_GCLK_WIDTH 1 | ||
268 | #define AM33XX_CLKACTIVITY_WDT1_GCLK_MASK (1 << 4) | 329 | #define AM33XX_CLKACTIVITY_WDT1_GCLK_MASK (1 << 4) |
269 | 330 | ||
270 | /* Used by CLKSEL_GFX_FCLK */ | 331 | /* Used by CLKSEL_GFX_FCLK */ |
271 | #define AM33XX_CLKDIV_SEL_GFX_FCLK_SHIFT 0 | 332 | #define AM33XX_CLKDIV_SEL_GFX_FCLK_SHIFT 0 |
333 | #define AM33XX_CLKDIV_SEL_GFX_FCLK_WIDTH 1 | ||
272 | #define AM33XX_CLKDIV_SEL_GFX_FCLK_MASK (1 << 0) | 334 | #define AM33XX_CLKDIV_SEL_GFX_FCLK_MASK (1 << 0) |
273 | 335 | ||
274 | /* Used by CM_CLKOUT_CTRL */ | 336 | /* Used by CM_CLKOUT_CTRL */ |
275 | #define AM33XX_CLKOUT2DIV_SHIFT 3 | 337 | #define AM33XX_CLKOUT2DIV_SHIFT 3 |
276 | #define AM33XX_CLKOUT2DIV_MASK (0x05 << 3) | 338 | #define AM33XX_CLKOUT2DIV_WIDTH 3 |
339 | #define AM33XX_CLKOUT2DIV_MASK (0x7 << 3) | ||
277 | 340 | ||
278 | /* Used by CM_CLKOUT_CTRL */ | 341 | /* Used by CM_CLKOUT_CTRL */ |
279 | #define AM33XX_CLKOUT2EN_SHIFT 7 | 342 | #define AM33XX_CLKOUT2EN_SHIFT 7 |
343 | #define AM33XX_CLKOUT2EN_WIDTH 1 | ||
280 | #define AM33XX_CLKOUT2EN_MASK (1 << 7) | 344 | #define AM33XX_CLKOUT2EN_MASK (1 << 7) |
281 | 345 | ||
282 | /* Used by CM_CLKOUT_CTRL */ | 346 | /* Used by CM_CLKOUT_CTRL */ |
283 | #define AM33XX_CLKOUT2SOURCE_SHIFT 0 | 347 | #define AM33XX_CLKOUT2SOURCE_SHIFT 0 |
284 | #define AM33XX_CLKOUT2SOURCE_MASK (0x02 << 0) | 348 | #define AM33XX_CLKOUT2SOURCE_WIDTH 3 |
349 | #define AM33XX_CLKOUT2SOURCE_MASK (0x7 << 0) | ||
285 | 350 | ||
286 | /* | 351 | /* |
287 | * Used by CLKSEL_GPIO0_DBCLK, CLKSEL_LCDC_PIXEL_CLK, CLKSEL_TIMER2_CLK, | 352 | * Used by CLKSEL_GPIO0_DBCLK, CLKSEL_LCDC_PIXEL_CLK, CLKSEL_TIMER2_CLK, |
@@ -289,6 +354,7 @@ | |||
289 | * CLKSEL_TIMER7_CLK | 354 | * CLKSEL_TIMER7_CLK |
290 | */ | 355 | */ |
291 | #define AM33XX_CLKSEL_SHIFT 0 | 356 | #define AM33XX_CLKSEL_SHIFT 0 |
357 | #define AM33XX_CLKSEL_WIDTH 1 | ||
292 | #define AM33XX_CLKSEL_MASK (0x01 << 0) | 358 | #define AM33XX_CLKSEL_MASK (0x01 << 0) |
293 | 359 | ||
294 | /* | 360 | /* |
@@ -296,17 +362,21 @@ | |||
296 | * CM_CPTS_RFT_CLKSEL | 362 | * CM_CPTS_RFT_CLKSEL |
297 | */ | 363 | */ |
298 | #define AM33XX_CLKSEL_0_0_SHIFT 0 | 364 | #define AM33XX_CLKSEL_0_0_SHIFT 0 |
365 | #define AM33XX_CLKSEL_0_0_WIDTH 1 | ||
299 | #define AM33XX_CLKSEL_0_0_MASK (1 << 0) | 366 | #define AM33XX_CLKSEL_0_0_MASK (1 << 0) |
300 | 367 | ||
301 | #define AM33XX_CLKSEL_0_1_SHIFT 0 | 368 | #define AM33XX_CLKSEL_0_1_SHIFT 0 |
369 | #define AM33XX_CLKSEL_0_1_WIDTH 2 | ||
302 | #define AM33XX_CLKSEL_0_1_MASK (3 << 0) | 370 | #define AM33XX_CLKSEL_0_1_MASK (3 << 0) |
303 | 371 | ||
304 | /* Renamed from CLKSEL Used by CLKSEL_TIMER1MS_CLK */ | 372 | /* Renamed from CLKSEL Used by CLKSEL_TIMER1MS_CLK */ |
305 | #define AM33XX_CLKSEL_0_2_SHIFT 0 | 373 | #define AM33XX_CLKSEL_0_2_SHIFT 0 |
374 | #define AM33XX_CLKSEL_0_2_WIDTH 3 | ||
306 | #define AM33XX_CLKSEL_0_2_MASK (7 << 0) | 375 | #define AM33XX_CLKSEL_0_2_MASK (7 << 0) |
307 | 376 | ||
308 | /* Used by CLKSEL_GFX_FCLK */ | 377 | /* Used by CLKSEL_GFX_FCLK */ |
309 | #define AM33XX_CLKSEL_GFX_FCLK_SHIFT 1 | 378 | #define AM33XX_CLKSEL_GFX_FCLK_SHIFT 1 |
379 | #define AM33XX_CLKSEL_GFX_FCLK_WIDTH 1 | ||
310 | #define AM33XX_CLKSEL_GFX_FCLK_MASK (1 << 1) | 380 | #define AM33XX_CLKSEL_GFX_FCLK_MASK (1 << 1) |
311 | 381 | ||
312 | /* | 382 | /* |
@@ -318,6 +388,7 @@ | |||
318 | * CM_GFX_L3_CLKSTCTRL, CM_GFX_L4LS_GFX_CLKSTCTRL__1, CM_CEFUSE_CLKSTCTRL | 388 | * CM_GFX_L3_CLKSTCTRL, CM_GFX_L4LS_GFX_CLKSTCTRL__1, CM_CEFUSE_CLKSTCTRL |
319 | */ | 389 | */ |
320 | #define AM33XX_CLKTRCTRL_SHIFT 0 | 390 | #define AM33XX_CLKTRCTRL_SHIFT 0 |
391 | #define AM33XX_CLKTRCTRL_WIDTH 2 | ||
321 | #define AM33XX_CLKTRCTRL_MASK (0x3 << 0) | 392 | #define AM33XX_CLKTRCTRL_MASK (0x3 << 0) |
322 | 393 | ||
323 | /* | 394 | /* |
@@ -326,34 +397,42 @@ | |||
326 | * CM_SSC_DELTAMSTEP_DPLL_PER | 397 | * CM_SSC_DELTAMSTEP_DPLL_PER |
327 | */ | 398 | */ |
328 | #define AM33XX_DELTAMSTEP_SHIFT 0 | 399 | #define AM33XX_DELTAMSTEP_SHIFT 0 |
329 | #define AM33XX_DELTAMSTEP_MASK (0x19 << 0) | 400 | #define AM33XX_DELTAMSTEP_WIDTH 20 |
401 | #define AM33XX_DELTAMSTEP_MASK (0xfffff << 0) | ||
330 | 402 | ||
331 | /* Used by CM_CLKSEL_DPLL_DDR, CM_CLKSEL_DPLL_DISP, CM_CLKSEL_DPLL_MPU */ | 403 | /* Used by CM_CLKSEL_DPLL_DDR, CM_CLKSEL_DPLL_DISP, CM_CLKSEL_DPLL_MPU */ |
332 | #define AM33XX_DPLL_BYP_CLKSEL_SHIFT 23 | 404 | #define AM33XX_DPLL_BYP_CLKSEL_SHIFT 23 |
405 | #define AM33XX_DPLL_BYP_CLKSEL_WIDTH 1 | ||
333 | #define AM33XX_DPLL_BYP_CLKSEL_MASK (1 << 23) | 406 | #define AM33XX_DPLL_BYP_CLKSEL_MASK (1 << 23) |
334 | 407 | ||
335 | /* Used by CM_CLKDCOLDO_DPLL_PER */ | 408 | /* Used by CM_CLKDCOLDO_DPLL_PER */ |
336 | #define AM33XX_DPLL_CLKDCOLDO_GATE_CTRL_SHIFT 8 | 409 | #define AM33XX_DPLL_CLKDCOLDO_GATE_CTRL_SHIFT 8 |
410 | #define AM33XX_DPLL_CLKDCOLDO_GATE_CTRL_WIDTH 1 | ||
337 | #define AM33XX_DPLL_CLKDCOLDO_GATE_CTRL_MASK (1 << 8) | 411 | #define AM33XX_DPLL_CLKDCOLDO_GATE_CTRL_MASK (1 << 8) |
338 | 412 | ||
339 | /* Used by CM_CLKDCOLDO_DPLL_PER */ | 413 | /* Used by CM_CLKDCOLDO_DPLL_PER */ |
340 | #define AM33XX_DPLL_CLKDCOLDO_PWDN_SHIFT 12 | 414 | #define AM33XX_DPLL_CLKDCOLDO_PWDN_SHIFT 12 |
415 | #define AM33XX_DPLL_CLKDCOLDO_PWDN_WIDTH 1 | ||
341 | #define AM33XX_DPLL_CLKDCOLDO_PWDN_MASK (1 << 12) | 416 | #define AM33XX_DPLL_CLKDCOLDO_PWDN_MASK (1 << 12) |
342 | 417 | ||
343 | /* Used by CM_DIV_M2_DPLL_DDR, CM_DIV_M2_DPLL_DISP, CM_DIV_M2_DPLL_MPU */ | 418 | /* Used by CM_DIV_M2_DPLL_DDR, CM_DIV_M2_DPLL_DISP, CM_DIV_M2_DPLL_MPU */ |
344 | #define AM33XX_DPLL_CLKOUT_DIV_SHIFT 0 | 419 | #define AM33XX_DPLL_CLKOUT_DIV_SHIFT 0 |
420 | #define AM33XX_DPLL_CLKOUT_DIV_WIDTH 5 | ||
345 | #define AM33XX_DPLL_CLKOUT_DIV_MASK (0x1f << 0) | 421 | #define AM33XX_DPLL_CLKOUT_DIV_MASK (0x1f << 0) |
346 | 422 | ||
347 | /* Renamed from DPLL_CLKOUT_DIV Used by CM_DIV_M2_DPLL_PER */ | 423 | /* Renamed from DPLL_CLKOUT_DIV Used by CM_DIV_M2_DPLL_PER */ |
348 | #define AM33XX_DPLL_CLKOUT_DIV_0_6_SHIFT 0 | 424 | #define AM33XX_DPLL_CLKOUT_DIV_0_6_SHIFT 0 |
349 | #define AM33XX_DPLL_CLKOUT_DIV_0_6_MASK (0x06 << 0) | 425 | #define AM33XX_DPLL_CLKOUT_DIV_0_6_WIDTH 7 |
426 | #define AM33XX_DPLL_CLKOUT_DIV_0_6_MASK (0x7f << 0) | ||
350 | 427 | ||
351 | /* Used by CM_DIV_M2_DPLL_DDR, CM_DIV_M2_DPLL_DISP, CM_DIV_M2_DPLL_MPU */ | 428 | /* Used by CM_DIV_M2_DPLL_DDR, CM_DIV_M2_DPLL_DISP, CM_DIV_M2_DPLL_MPU */ |
352 | #define AM33XX_DPLL_CLKOUT_DIVCHACK_SHIFT 5 | 429 | #define AM33XX_DPLL_CLKOUT_DIVCHACK_SHIFT 5 |
430 | #define AM33XX_DPLL_CLKOUT_DIVCHACK_WIDTH 1 | ||
353 | #define AM33XX_DPLL_CLKOUT_DIVCHACK_MASK (1 << 5) | 431 | #define AM33XX_DPLL_CLKOUT_DIVCHACK_MASK (1 << 5) |
354 | 432 | ||
355 | /* Renamed from DPLL_CLKOUT_DIVCHACK Used by CM_DIV_M2_DPLL_PER */ | 433 | /* Renamed from DPLL_CLKOUT_DIVCHACK Used by CM_DIV_M2_DPLL_PER */ |
356 | #define AM33XX_DPLL_CLKOUT_DIVCHACK_M2_PER_SHIFT 7 | 434 | #define AM33XX_DPLL_CLKOUT_DIVCHACK_M2_PER_SHIFT 7 |
435 | #define AM33XX_DPLL_CLKOUT_DIVCHACK_M2_PER_WIDTH 1 | ||
357 | #define AM33XX_DPLL_CLKOUT_DIVCHACK_M2_PER_MASK (1 << 7) | 436 | #define AM33XX_DPLL_CLKOUT_DIVCHACK_M2_PER_MASK (1 << 7) |
358 | 437 | ||
359 | /* | 438 | /* |
@@ -361,6 +440,7 @@ | |||
361 | * CM_DIV_M2_DPLL_PER | 440 | * CM_DIV_M2_DPLL_PER |
362 | */ | 441 | */ |
363 | #define AM33XX_DPLL_CLKOUT_GATE_CTRL_SHIFT 8 | 442 | #define AM33XX_DPLL_CLKOUT_GATE_CTRL_SHIFT 8 |
443 | #define AM33XX_DPLL_CLKOUT_GATE_CTRL_WIDTH 1 | ||
364 | #define AM33XX_DPLL_CLKOUT_GATE_CTRL_MASK (1 << 8) | 444 | #define AM33XX_DPLL_CLKOUT_GATE_CTRL_MASK (1 << 8) |
365 | 445 | ||
366 | /* | 446 | /* |
@@ -368,19 +448,22 @@ | |||
368 | * CM_CLKSEL_DPLL_MPU | 448 | * CM_CLKSEL_DPLL_MPU |
369 | */ | 449 | */ |
370 | #define AM33XX_DPLL_DIV_SHIFT 0 | 450 | #define AM33XX_DPLL_DIV_SHIFT 0 |
451 | #define AM33XX_DPLL_DIV_WIDTH 7 | ||
371 | #define AM33XX_DPLL_DIV_MASK (0x7f << 0) | 452 | #define AM33XX_DPLL_DIV_MASK (0x7f << 0) |
372 | 453 | ||
373 | #define AM33XX_DPLL_PER_DIV_MASK (0xff << 0) | 454 | #define AM33XX_DPLL_PER_DIV_MASK (0xff << 0) |
374 | 455 | ||
375 | /* Renamed from DPLL_DIV Used by CM_CLKSEL_DPLL_PERIPH */ | 456 | /* Renamed from DPLL_DIV Used by CM_CLKSEL_DPLL_PERIPH */ |
376 | #define AM33XX_DPLL_DIV_0_7_SHIFT 0 | 457 | #define AM33XX_DPLL_DIV_0_7_SHIFT 0 |
377 | #define AM33XX_DPLL_DIV_0_7_MASK (0x07 << 0) | 458 | #define AM33XX_DPLL_DIV_0_7_WIDTH 8 |
459 | #define AM33XX_DPLL_DIV_0_7_MASK (0xff << 0) | ||
378 | 460 | ||
379 | /* | 461 | /* |
380 | * Used by CM_CLKMODE_DPLL_CORE, CM_CLKMODE_DPLL_DDR, CM_CLKMODE_DPLL_DISP, | 462 | * Used by CM_CLKMODE_DPLL_CORE, CM_CLKMODE_DPLL_DDR, CM_CLKMODE_DPLL_DISP, |
381 | * CM_CLKMODE_DPLL_MPU | 463 | * CM_CLKMODE_DPLL_MPU |
382 | */ | 464 | */ |
383 | #define AM33XX_DPLL_DRIFTGUARD_EN_SHIFT 8 | 465 | #define AM33XX_DPLL_DRIFTGUARD_EN_SHIFT 8 |
466 | #define AM33XX_DPLL_DRIFTGUARD_EN_WIDTH 1 | ||
384 | #define AM33XX_DPLL_DRIFTGUARD_EN_MASK (1 << 8) | 467 | #define AM33XX_DPLL_DRIFTGUARD_EN_MASK (1 << 8) |
385 | 468 | ||
386 | /* | 469 | /* |
@@ -388,6 +471,7 @@ | |||
388 | * CM_CLKMODE_DPLL_MPU, CM_CLKMODE_DPLL_PER | 471 | * CM_CLKMODE_DPLL_MPU, CM_CLKMODE_DPLL_PER |
389 | */ | 472 | */ |
390 | #define AM33XX_DPLL_EN_SHIFT 0 | 473 | #define AM33XX_DPLL_EN_SHIFT 0 |
474 | #define AM33XX_DPLL_EN_WIDTH 3 | ||
391 | #define AM33XX_DPLL_EN_MASK (0x7 << 0) | 475 | #define AM33XX_DPLL_EN_MASK (0x7 << 0) |
392 | 476 | ||
393 | /* | 477 | /* |
@@ -395,6 +479,7 @@ | |||
395 | * CM_CLKMODE_DPLL_MPU | 479 | * CM_CLKMODE_DPLL_MPU |
396 | */ | 480 | */ |
397 | #define AM33XX_DPLL_LPMODE_EN_SHIFT 10 | 481 | #define AM33XX_DPLL_LPMODE_EN_SHIFT 10 |
482 | #define AM33XX_DPLL_LPMODE_EN_WIDTH 1 | ||
398 | #define AM33XX_DPLL_LPMODE_EN_MASK (1 << 10) | 483 | #define AM33XX_DPLL_LPMODE_EN_MASK (1 << 10) |
399 | 484 | ||
400 | /* | 485 | /* |
@@ -402,10 +487,12 @@ | |||
402 | * CM_CLKSEL_DPLL_MPU | 487 | * CM_CLKSEL_DPLL_MPU |
403 | */ | 488 | */ |
404 | #define AM33XX_DPLL_MULT_SHIFT 8 | 489 | #define AM33XX_DPLL_MULT_SHIFT 8 |
490 | #define AM33XX_DPLL_MULT_WIDTH 11 | ||
405 | #define AM33XX_DPLL_MULT_MASK (0x7ff << 8) | 491 | #define AM33XX_DPLL_MULT_MASK (0x7ff << 8) |
406 | 492 | ||
407 | /* Renamed from DPLL_MULT Used by CM_CLKSEL_DPLL_PERIPH */ | 493 | /* Renamed from DPLL_MULT Used by CM_CLKSEL_DPLL_PERIPH */ |
408 | #define AM33XX_DPLL_MULT_PERIPH_SHIFT 8 | 494 | #define AM33XX_DPLL_MULT_PERIPH_SHIFT 8 |
495 | #define AM33XX_DPLL_MULT_PERIPH_WIDTH 12 | ||
409 | #define AM33XX_DPLL_MULT_PERIPH_MASK (0xfff << 8) | 496 | #define AM33XX_DPLL_MULT_PERIPH_MASK (0xfff << 8) |
410 | 497 | ||
411 | /* | 498 | /* |
@@ -413,17 +500,20 @@ | |||
413 | * CM_CLKMODE_DPLL_MPU | 500 | * CM_CLKMODE_DPLL_MPU |
414 | */ | 501 | */ |
415 | #define AM33XX_DPLL_REGM4XEN_SHIFT 11 | 502 | #define AM33XX_DPLL_REGM4XEN_SHIFT 11 |
503 | #define AM33XX_DPLL_REGM4XEN_WIDTH 1 | ||
416 | #define AM33XX_DPLL_REGM4XEN_MASK (1 << 11) | 504 | #define AM33XX_DPLL_REGM4XEN_MASK (1 << 11) |
417 | 505 | ||
418 | /* Used by CM_CLKSEL_DPLL_PERIPH */ | 506 | /* Used by CM_CLKSEL_DPLL_PERIPH */ |
419 | #define AM33XX_DPLL_SD_DIV_SHIFT 24 | 507 | #define AM33XX_DPLL_SD_DIV_SHIFT 24 |
420 | #define AM33XX_DPLL_SD_DIV_MASK (24, 31) | 508 | #define AM33XX_DPLL_SD_DIV_WIDTH 8 |
509 | #define AM33XX_DPLL_SD_DIV_MASK (0xff << 24) | ||
421 | 510 | ||
422 | /* | 511 | /* |
423 | * Used by CM_CLKMODE_DPLL_CORE, CM_CLKMODE_DPLL_DDR, CM_CLKMODE_DPLL_DISP, | 512 | * Used by CM_CLKMODE_DPLL_CORE, CM_CLKMODE_DPLL_DDR, CM_CLKMODE_DPLL_DISP, |
424 | * CM_CLKMODE_DPLL_MPU, CM_CLKMODE_DPLL_PER | 513 | * CM_CLKMODE_DPLL_MPU, CM_CLKMODE_DPLL_PER |
425 | */ | 514 | */ |
426 | #define AM33XX_DPLL_SSC_ACK_SHIFT 13 | 515 | #define AM33XX_DPLL_SSC_ACK_SHIFT 13 |
516 | #define AM33XX_DPLL_SSC_ACK_WIDTH 1 | ||
427 | #define AM33XX_DPLL_SSC_ACK_MASK (1 << 13) | 517 | #define AM33XX_DPLL_SSC_ACK_MASK (1 << 13) |
428 | 518 | ||
429 | /* | 519 | /* |
@@ -431,6 +521,7 @@ | |||
431 | * CM_CLKMODE_DPLL_MPU, CM_CLKMODE_DPLL_PER | 521 | * CM_CLKMODE_DPLL_MPU, CM_CLKMODE_DPLL_PER |
432 | */ | 522 | */ |
433 | #define AM33XX_DPLL_SSC_DOWNSPREAD_SHIFT 14 | 523 | #define AM33XX_DPLL_SSC_DOWNSPREAD_SHIFT 14 |
524 | #define AM33XX_DPLL_SSC_DOWNSPREAD_WIDTH 1 | ||
434 | #define AM33XX_DPLL_SSC_DOWNSPREAD_MASK (1 << 14) | 525 | #define AM33XX_DPLL_SSC_DOWNSPREAD_MASK (1 << 14) |
435 | 526 | ||
436 | /* | 527 | /* |
@@ -438,54 +529,67 @@ | |||
438 | * CM_CLKMODE_DPLL_MPU, CM_CLKMODE_DPLL_PER | 529 | * CM_CLKMODE_DPLL_MPU, CM_CLKMODE_DPLL_PER |
439 | */ | 530 | */ |
440 | #define AM33XX_DPLL_SSC_EN_SHIFT 12 | 531 | #define AM33XX_DPLL_SSC_EN_SHIFT 12 |
532 | #define AM33XX_DPLL_SSC_EN_WIDTH 1 | ||
441 | #define AM33XX_DPLL_SSC_EN_MASK (1 << 12) | 533 | #define AM33XX_DPLL_SSC_EN_MASK (1 << 12) |
442 | 534 | ||
443 | /* Used by CM_DIV_M4_DPLL_CORE */ | 535 | /* Used by CM_DIV_M4_DPLL_CORE */ |
444 | #define AM33XX_HSDIVIDER_CLKOUT1_DIV_SHIFT 0 | 536 | #define AM33XX_HSDIVIDER_CLKOUT1_DIV_SHIFT 0 |
537 | #define AM33XX_HSDIVIDER_CLKOUT1_DIV_WIDTH 5 | ||
445 | #define AM33XX_HSDIVIDER_CLKOUT1_DIV_MASK (0x1f << 0) | 538 | #define AM33XX_HSDIVIDER_CLKOUT1_DIV_MASK (0x1f << 0) |
446 | 539 | ||
447 | /* Used by CM_DIV_M4_DPLL_CORE */ | 540 | /* Used by CM_DIV_M4_DPLL_CORE */ |
448 | #define AM33XX_HSDIVIDER_CLKOUT1_DIVCHACK_SHIFT 5 | 541 | #define AM33XX_HSDIVIDER_CLKOUT1_DIVCHACK_SHIFT 5 |
542 | #define AM33XX_HSDIVIDER_CLKOUT1_DIVCHACK_WIDTH 1 | ||
449 | #define AM33XX_HSDIVIDER_CLKOUT1_DIVCHACK_MASK (1 << 5) | 543 | #define AM33XX_HSDIVIDER_CLKOUT1_DIVCHACK_MASK (1 << 5) |
450 | 544 | ||
451 | /* Used by CM_DIV_M4_DPLL_CORE */ | 545 | /* Used by CM_DIV_M4_DPLL_CORE */ |
452 | #define AM33XX_HSDIVIDER_CLKOUT1_GATE_CTRL_SHIFT 8 | 546 | #define AM33XX_HSDIVIDER_CLKOUT1_GATE_CTRL_SHIFT 8 |
547 | #define AM33XX_HSDIVIDER_CLKOUT1_GATE_CTRL_WIDTH 1 | ||
453 | #define AM33XX_HSDIVIDER_CLKOUT1_GATE_CTRL_MASK (1 << 8) | 548 | #define AM33XX_HSDIVIDER_CLKOUT1_GATE_CTRL_MASK (1 << 8) |
454 | 549 | ||
455 | /* Used by CM_DIV_M4_DPLL_CORE */ | 550 | /* Used by CM_DIV_M4_DPLL_CORE */ |
456 | #define AM33XX_HSDIVIDER_CLKOUT1_PWDN_SHIFT 12 | 551 | #define AM33XX_HSDIVIDER_CLKOUT1_PWDN_SHIFT 12 |
552 | #define AM33XX_HSDIVIDER_CLKOUT1_PWDN_WIDTH 1 | ||
457 | #define AM33XX_HSDIVIDER_CLKOUT1_PWDN_MASK (1 << 12) | 553 | #define AM33XX_HSDIVIDER_CLKOUT1_PWDN_MASK (1 << 12) |
458 | 554 | ||
459 | /* Used by CM_DIV_M5_DPLL_CORE */ | 555 | /* Used by CM_DIV_M5_DPLL_CORE */ |
460 | #define AM33XX_HSDIVIDER_CLKOUT2_DIV_SHIFT 0 | 556 | #define AM33XX_HSDIVIDER_CLKOUT2_DIV_SHIFT 0 |
557 | #define AM33XX_HSDIVIDER_CLKOUT2_DIV_WIDTH 5 | ||
461 | #define AM33XX_HSDIVIDER_CLKOUT2_DIV_MASK (0x1f << 0) | 558 | #define AM33XX_HSDIVIDER_CLKOUT2_DIV_MASK (0x1f << 0) |
462 | 559 | ||
463 | /* Used by CM_DIV_M5_DPLL_CORE */ | 560 | /* Used by CM_DIV_M5_DPLL_CORE */ |
464 | #define AM33XX_HSDIVIDER_CLKOUT2_DIVCHACK_SHIFT 5 | 561 | #define AM33XX_HSDIVIDER_CLKOUT2_DIVCHACK_SHIFT 5 |
562 | #define AM33XX_HSDIVIDER_CLKOUT2_DIVCHACK_WIDTH 1 | ||
465 | #define AM33XX_HSDIVIDER_CLKOUT2_DIVCHACK_MASK (1 << 5) | 563 | #define AM33XX_HSDIVIDER_CLKOUT2_DIVCHACK_MASK (1 << 5) |
466 | 564 | ||
467 | /* Used by CM_DIV_M5_DPLL_CORE */ | 565 | /* Used by CM_DIV_M5_DPLL_CORE */ |
468 | #define AM33XX_HSDIVIDER_CLKOUT2_GATE_CTRL_SHIFT 8 | 566 | #define AM33XX_HSDIVIDER_CLKOUT2_GATE_CTRL_SHIFT 8 |
567 | #define AM33XX_HSDIVIDER_CLKOUT2_GATE_CTRL_WIDTH 1 | ||
469 | #define AM33XX_HSDIVIDER_CLKOUT2_GATE_CTRL_MASK (1 << 8) | 568 | #define AM33XX_HSDIVIDER_CLKOUT2_GATE_CTRL_MASK (1 << 8) |
470 | 569 | ||
471 | /* Used by CM_DIV_M5_DPLL_CORE */ | 570 | /* Used by CM_DIV_M5_DPLL_CORE */ |
472 | #define AM33XX_HSDIVIDER_CLKOUT2_PWDN_SHIFT 12 | 571 | #define AM33XX_HSDIVIDER_CLKOUT2_PWDN_SHIFT 12 |
572 | #define AM33XX_HSDIVIDER_CLKOUT2_PWDN_WIDTH 1 | ||
473 | #define AM33XX_HSDIVIDER_CLKOUT2_PWDN_MASK (1 << 12) | 573 | #define AM33XX_HSDIVIDER_CLKOUT2_PWDN_MASK (1 << 12) |
474 | 574 | ||
475 | /* Used by CM_DIV_M6_DPLL_CORE */ | 575 | /* Used by CM_DIV_M6_DPLL_CORE */ |
476 | #define AM33XX_HSDIVIDER_CLKOUT3_DIV_SHIFT 0 | 576 | #define AM33XX_HSDIVIDER_CLKOUT3_DIV_SHIFT 0 |
477 | #define AM33XX_HSDIVIDER_CLKOUT3_DIV_MASK (0x04 << 0) | 577 | #define AM33XX_HSDIVIDER_CLKOUT3_DIV_WIDTH 5 |
578 | #define AM33XX_HSDIVIDER_CLKOUT3_DIV_MASK (0x1f << 0) | ||
478 | 579 | ||
479 | /* Used by CM_DIV_M6_DPLL_CORE */ | 580 | /* Used by CM_DIV_M6_DPLL_CORE */ |
480 | #define AM33XX_HSDIVIDER_CLKOUT3_DIVCHACK_SHIFT 5 | 581 | #define AM33XX_HSDIVIDER_CLKOUT3_DIVCHACK_SHIFT 5 |
582 | #define AM33XX_HSDIVIDER_CLKOUT3_DIVCHACK_WIDTH 1 | ||
481 | #define AM33XX_HSDIVIDER_CLKOUT3_DIVCHACK_MASK (1 << 5) | 583 | #define AM33XX_HSDIVIDER_CLKOUT3_DIVCHACK_MASK (1 << 5) |
482 | 584 | ||
483 | /* Used by CM_DIV_M6_DPLL_CORE */ | 585 | /* Used by CM_DIV_M6_DPLL_CORE */ |
484 | #define AM33XX_HSDIVIDER_CLKOUT3_GATE_CTRL_SHIFT 8 | 586 | #define AM33XX_HSDIVIDER_CLKOUT3_GATE_CTRL_SHIFT 8 |
587 | #define AM33XX_HSDIVIDER_CLKOUT3_GATE_CTRL_WIDTH 1 | ||
485 | #define AM33XX_HSDIVIDER_CLKOUT3_GATE_CTRL_MASK (1 << 8) | 588 | #define AM33XX_HSDIVIDER_CLKOUT3_GATE_CTRL_MASK (1 << 8) |
486 | 589 | ||
487 | /* Used by CM_DIV_M6_DPLL_CORE */ | 590 | /* Used by CM_DIV_M6_DPLL_CORE */ |
488 | #define AM33XX_HSDIVIDER_CLKOUT3_PWDN_SHIFT 12 | 591 | #define AM33XX_HSDIVIDER_CLKOUT3_PWDN_SHIFT 12 |
592 | #define AM33XX_HSDIVIDER_CLKOUT3_PWDN_WIDTH 1 | ||
489 | #define AM33XX_HSDIVIDER_CLKOUT3_PWDN_MASK (1 << 12) | 593 | #define AM33XX_HSDIVIDER_CLKOUT3_PWDN_MASK (1 << 12) |
490 | 594 | ||
491 | /* | 595 | /* |
@@ -522,11 +626,12 @@ | |||
522 | * CM_GFX_MMUCFG_CLKCTRL, CM_GFX_MMUDATA_CLKCTRL, CM_CEFUSE_CEFUSE_CLKCTRL | 626 | * CM_GFX_MMUCFG_CLKCTRL, CM_GFX_MMUDATA_CLKCTRL, CM_CEFUSE_CEFUSE_CLKCTRL |
523 | */ | 627 | */ |
524 | #define AM33XX_IDLEST_SHIFT 16 | 628 | #define AM33XX_IDLEST_SHIFT 16 |
629 | #define AM33XX_IDLEST_WIDTH 2 | ||
525 | #define AM33XX_IDLEST_MASK (0x3 << 16) | 630 | #define AM33XX_IDLEST_MASK (0x3 << 16) |
526 | #define AM33XX_IDLEST_VAL 0x3 | ||
527 | 631 | ||
528 | /* Used by CM_MAC_CLKSEL */ | 632 | /* Used by CM_MAC_CLKSEL */ |
529 | #define AM33XX_MII_CLK_SEL_SHIFT 2 | 633 | #define AM33XX_MII_CLK_SEL_SHIFT 2 |
634 | #define AM33XX_MII_CLK_SEL_WIDTH 1 | ||
530 | #define AM33XX_MII_CLK_SEL_MASK (1 << 2) | 635 | #define AM33XX_MII_CLK_SEL_MASK (1 << 2) |
531 | 636 | ||
532 | /* | 637 | /* |
@@ -535,7 +640,8 @@ | |||
535 | * CM_SSC_MODFREQDIV_DPLL_PER | 640 | * CM_SSC_MODFREQDIV_DPLL_PER |
536 | */ | 641 | */ |
537 | #define AM33XX_MODFREQDIV_EXPONENT_SHIFT 8 | 642 | #define AM33XX_MODFREQDIV_EXPONENT_SHIFT 8 |
538 | #define AM33XX_MODFREQDIV_EXPONENT_MASK (0x10 << 8) | 643 | #define AM33XX_MODFREQDIV_EXPONENT_WIDTH 3 |
644 | #define AM33XX_MODFREQDIV_EXPONENT_MASK (0x7 << 8) | ||
539 | 645 | ||
540 | /* | 646 | /* |
541 | * Used by CM_SSC_MODFREQDIV_DPLL_CORE, CM_SSC_MODFREQDIV_DPLL_DDR, | 647 | * Used by CM_SSC_MODFREQDIV_DPLL_CORE, CM_SSC_MODFREQDIV_DPLL_DDR, |
@@ -543,7 +649,8 @@ | |||
543 | * CM_SSC_MODFREQDIV_DPLL_PER | 649 | * CM_SSC_MODFREQDIV_DPLL_PER |
544 | */ | 650 | */ |
545 | #define AM33XX_MODFREQDIV_MANTISSA_SHIFT 0 | 651 | #define AM33XX_MODFREQDIV_MANTISSA_SHIFT 0 |
546 | #define AM33XX_MODFREQDIV_MANTISSA_MASK (0x06 << 0) | 652 | #define AM33XX_MODFREQDIV_MANTISSA_WIDTH 7 |
653 | #define AM33XX_MODFREQDIV_MANTISSA_MASK (0x7f << 0) | ||
547 | 654 | ||
548 | /* | 655 | /* |
549 | * Used by CM_MPU_MPU_CLKCTRL, CM_RTC_RTC_CLKCTRL, CM_PER_AES0_CLKCTRL, | 656 | * Used by CM_MPU_MPU_CLKCTRL, CM_RTC_RTC_CLKCTRL, CM_PER_AES0_CLKCTRL, |
@@ -580,42 +687,52 @@ | |||
580 | * CM_CEFUSE_CEFUSE_CLKCTRL | 687 | * CM_CEFUSE_CEFUSE_CLKCTRL |
581 | */ | 688 | */ |
582 | #define AM33XX_MODULEMODE_SHIFT 0 | 689 | #define AM33XX_MODULEMODE_SHIFT 0 |
690 | #define AM33XX_MODULEMODE_WIDTH 2 | ||
583 | #define AM33XX_MODULEMODE_MASK (0x3 << 0) | 691 | #define AM33XX_MODULEMODE_MASK (0x3 << 0) |
584 | 692 | ||
585 | /* Used by CM_WKUP_DEBUGSS_CLKCTRL */ | 693 | /* Used by CM_WKUP_DEBUGSS_CLKCTRL */ |
586 | #define AM33XX_OPTCLK_DEBUG_CLKA_SHIFT 30 | 694 | #define AM33XX_OPTCLK_DEBUG_CLKA_SHIFT 30 |
695 | #define AM33XX_OPTCLK_DEBUG_CLKA_WIDTH 1 | ||
587 | #define AM33XX_OPTCLK_DEBUG_CLKA_MASK (1 << 30) | 696 | #define AM33XX_OPTCLK_DEBUG_CLKA_MASK (1 << 30) |
588 | 697 | ||
589 | /* Used by CM_WKUP_DEBUGSS_CLKCTRL */ | 698 | /* Used by CM_WKUP_DEBUGSS_CLKCTRL */ |
590 | #define AM33XX_OPTFCLKEN_DBGSYSCLK_SHIFT 19 | 699 | #define AM33XX_OPTFCLKEN_DBGSYSCLK_SHIFT 19 |
700 | #define AM33XX_OPTFCLKEN_DBGSYSCLK_WIDTH 1 | ||
591 | #define AM33XX_OPTFCLKEN_DBGSYSCLK_MASK (1 << 19) | 701 | #define AM33XX_OPTFCLKEN_DBGSYSCLK_MASK (1 << 19) |
592 | 702 | ||
593 | /* Used by CM_WKUP_GPIO0_CLKCTRL */ | 703 | /* Used by CM_WKUP_GPIO0_CLKCTRL */ |
594 | #define AM33XX_OPTFCLKEN_GPIO0_GDBCLK_SHIFT 18 | 704 | #define AM33XX_OPTFCLKEN_GPIO0_GDBCLK_SHIFT 18 |
705 | #define AM33XX_OPTFCLKEN_GPIO0_GDBCLK_WIDTH 1 | ||
595 | #define AM33XX_OPTFCLKEN_GPIO0_GDBCLK_MASK (1 << 18) | 706 | #define AM33XX_OPTFCLKEN_GPIO0_GDBCLK_MASK (1 << 18) |
596 | 707 | ||
597 | /* Used by CM_PER_GPIO1_CLKCTRL */ | 708 | /* Used by CM_PER_GPIO1_CLKCTRL */ |
598 | #define AM33XX_OPTFCLKEN_GPIO_1_GDBCLK_SHIFT 18 | 709 | #define AM33XX_OPTFCLKEN_GPIO_1_GDBCLK_SHIFT 18 |
710 | #define AM33XX_OPTFCLKEN_GPIO_1_GDBCLK_WIDTH 1 | ||
599 | #define AM33XX_OPTFCLKEN_GPIO_1_GDBCLK_MASK (1 << 18) | 711 | #define AM33XX_OPTFCLKEN_GPIO_1_GDBCLK_MASK (1 << 18) |
600 | 712 | ||
601 | /* Used by CM_PER_GPIO2_CLKCTRL */ | 713 | /* Used by CM_PER_GPIO2_CLKCTRL */ |
602 | #define AM33XX_OPTFCLKEN_GPIO_2_GDBCLK_SHIFT 18 | 714 | #define AM33XX_OPTFCLKEN_GPIO_2_GDBCLK_SHIFT 18 |
715 | #define AM33XX_OPTFCLKEN_GPIO_2_GDBCLK_WIDTH 1 | ||
603 | #define AM33XX_OPTFCLKEN_GPIO_2_GDBCLK_MASK (1 << 18) | 716 | #define AM33XX_OPTFCLKEN_GPIO_2_GDBCLK_MASK (1 << 18) |
604 | 717 | ||
605 | /* Used by CM_PER_GPIO3_CLKCTRL */ | 718 | /* Used by CM_PER_GPIO3_CLKCTRL */ |
606 | #define AM33XX_OPTFCLKEN_GPIO_3_GDBCLK_SHIFT 18 | 719 | #define AM33XX_OPTFCLKEN_GPIO_3_GDBCLK_SHIFT 18 |
720 | #define AM33XX_OPTFCLKEN_GPIO_3_GDBCLK_WIDTH 1 | ||
607 | #define AM33XX_OPTFCLKEN_GPIO_3_GDBCLK_MASK (1 << 18) | 721 | #define AM33XX_OPTFCLKEN_GPIO_3_GDBCLK_MASK (1 << 18) |
608 | 722 | ||
609 | /* Used by CM_PER_GPIO4_CLKCTRL */ | 723 | /* Used by CM_PER_GPIO4_CLKCTRL */ |
610 | #define AM33XX_OPTFCLKEN_GPIO_4_GDBCLK_SHIFT 18 | 724 | #define AM33XX_OPTFCLKEN_GPIO_4_GDBCLK_SHIFT 18 |
725 | #define AM33XX_OPTFCLKEN_GPIO_4_GDBCLK_WIDTH 1 | ||
611 | #define AM33XX_OPTFCLKEN_GPIO_4_GDBCLK_MASK (1 << 18) | 726 | #define AM33XX_OPTFCLKEN_GPIO_4_GDBCLK_MASK (1 << 18) |
612 | 727 | ||
613 | /* Used by CM_PER_GPIO5_CLKCTRL */ | 728 | /* Used by CM_PER_GPIO5_CLKCTRL */ |
614 | #define AM33XX_OPTFCLKEN_GPIO_5_GDBCLK_SHIFT 18 | 729 | #define AM33XX_OPTFCLKEN_GPIO_5_GDBCLK_SHIFT 18 |
730 | #define AM33XX_OPTFCLKEN_GPIO_5_GDBCLK_WIDTH 1 | ||
615 | #define AM33XX_OPTFCLKEN_GPIO_5_GDBCLK_MASK (1 << 18) | 731 | #define AM33XX_OPTFCLKEN_GPIO_5_GDBCLK_MASK (1 << 18) |
616 | 732 | ||
617 | /* Used by CM_PER_GPIO6_CLKCTRL */ | 733 | /* Used by CM_PER_GPIO6_CLKCTRL */ |
618 | #define AM33XX_OPTFCLKEN_GPIO_6_GDBCLK_SHIFT 18 | 734 | #define AM33XX_OPTFCLKEN_GPIO_6_GDBCLK_SHIFT 18 |
735 | #define AM33XX_OPTFCLKEN_GPIO_6_GDBCLK_WIDTH 1 | ||
619 | #define AM33XX_OPTFCLKEN_GPIO_6_GDBCLK_MASK (1 << 18) | 736 | #define AM33XX_OPTFCLKEN_GPIO_6_GDBCLK_MASK (1 << 18) |
620 | 737 | ||
621 | /* | 738 | /* |
@@ -627,25 +744,30 @@ | |||
627 | * CM_WKUP_WKUP_M3_CLKCTRL, CM_GFX_BITBLT_CLKCTRL, CM_GFX_GFX_CLKCTRL | 744 | * CM_WKUP_WKUP_M3_CLKCTRL, CM_GFX_BITBLT_CLKCTRL, CM_GFX_GFX_CLKCTRL |
628 | */ | 745 | */ |
629 | #define AM33XX_STBYST_SHIFT 18 | 746 | #define AM33XX_STBYST_SHIFT 18 |
747 | #define AM33XX_STBYST_WIDTH 1 | ||
630 | #define AM33XX_STBYST_MASK (1 << 18) | 748 | #define AM33XX_STBYST_MASK (1 << 18) |
631 | 749 | ||
632 | /* Used by CM_WKUP_DEBUGSS_CLKCTRL */ | 750 | /* Used by CM_WKUP_DEBUGSS_CLKCTRL */ |
633 | #define AM33XX_STM_PMD_CLKDIVSEL_SHIFT 27 | 751 | #define AM33XX_STM_PMD_CLKDIVSEL_SHIFT 27 |
634 | #define AM33XX_STM_PMD_CLKDIVSEL_MASK (0x29 << 27) | 752 | #define AM33XX_STM_PMD_CLKDIVSEL_WIDTH 3 |
753 | #define AM33XX_STM_PMD_CLKDIVSEL_MASK (0x7 << 27) | ||
635 | 754 | ||
636 | /* Used by CM_WKUP_DEBUGSS_CLKCTRL */ | 755 | /* Used by CM_WKUP_DEBUGSS_CLKCTRL */ |
637 | #define AM33XX_STM_PMD_CLKSEL_SHIFT 22 | 756 | #define AM33XX_STM_PMD_CLKSEL_SHIFT 22 |
638 | #define AM33XX_STM_PMD_CLKSEL_MASK (0x23 << 22) | 757 | #define AM33XX_STM_PMD_CLKSEL_WIDTH 2 |
758 | #define AM33XX_STM_PMD_CLKSEL_MASK (0x3 << 22) | ||
639 | 759 | ||
640 | /* | 760 | /* |
641 | * Used by CM_IDLEST_DPLL_CORE, CM_IDLEST_DPLL_DDR, CM_IDLEST_DPLL_DISP, | 761 | * Used by CM_IDLEST_DPLL_CORE, CM_IDLEST_DPLL_DDR, CM_IDLEST_DPLL_DISP, |
642 | * CM_IDLEST_DPLL_MPU, CM_IDLEST_DPLL_PER | 762 | * CM_IDLEST_DPLL_MPU, CM_IDLEST_DPLL_PER |
643 | */ | 763 | */ |
644 | #define AM33XX_ST_DPLL_CLK_SHIFT 0 | 764 | #define AM33XX_ST_DPLL_CLK_SHIFT 0 |
765 | #define AM33XX_ST_DPLL_CLK_WIDTH 1 | ||
645 | #define AM33XX_ST_DPLL_CLK_MASK (1 << 0) | 766 | #define AM33XX_ST_DPLL_CLK_MASK (1 << 0) |
646 | 767 | ||
647 | /* Used by CM_CLKDCOLDO_DPLL_PER */ | 768 | /* Used by CM_CLKDCOLDO_DPLL_PER */ |
648 | #define AM33XX_ST_DPLL_CLKDCOLDO_SHIFT 8 | 769 | #define AM33XX_ST_DPLL_CLKDCOLDO_SHIFT 8 |
770 | #define AM33XX_ST_DPLL_CLKDCOLDO_WIDTH 1 | ||
649 | #define AM33XX_ST_DPLL_CLKDCOLDO_MASK (1 << 8) | 771 | #define AM33XX_ST_DPLL_CLKDCOLDO_MASK (1 << 8) |
650 | 772 | ||
651 | /* | 773 | /* |
@@ -653,18 +775,22 @@ | |||
653 | * CM_DIV_M2_DPLL_PER | 775 | * CM_DIV_M2_DPLL_PER |
654 | */ | 776 | */ |
655 | #define AM33XX_ST_DPLL_CLKOUT_SHIFT 9 | 777 | #define AM33XX_ST_DPLL_CLKOUT_SHIFT 9 |
778 | #define AM33XX_ST_DPLL_CLKOUT_WIDTH 1 | ||
656 | #define AM33XX_ST_DPLL_CLKOUT_MASK (1 << 9) | 779 | #define AM33XX_ST_DPLL_CLKOUT_MASK (1 << 9) |
657 | 780 | ||
658 | /* Used by CM_DIV_M4_DPLL_CORE */ | 781 | /* Used by CM_DIV_M4_DPLL_CORE */ |
659 | #define AM33XX_ST_HSDIVIDER_CLKOUT1_SHIFT 9 | 782 | #define AM33XX_ST_HSDIVIDER_CLKOUT1_SHIFT 9 |
783 | #define AM33XX_ST_HSDIVIDER_CLKOUT1_WIDTH 1 | ||
660 | #define AM33XX_ST_HSDIVIDER_CLKOUT1_MASK (1 << 9) | 784 | #define AM33XX_ST_HSDIVIDER_CLKOUT1_MASK (1 << 9) |
661 | 785 | ||
662 | /* Used by CM_DIV_M5_DPLL_CORE */ | 786 | /* Used by CM_DIV_M5_DPLL_CORE */ |
663 | #define AM33XX_ST_HSDIVIDER_CLKOUT2_SHIFT 9 | 787 | #define AM33XX_ST_HSDIVIDER_CLKOUT2_SHIFT 9 |
788 | #define AM33XX_ST_HSDIVIDER_CLKOUT2_WIDTH 1 | ||
664 | #define AM33XX_ST_HSDIVIDER_CLKOUT2_MASK (1 << 9) | 789 | #define AM33XX_ST_HSDIVIDER_CLKOUT2_MASK (1 << 9) |
665 | 790 | ||
666 | /* Used by CM_DIV_M6_DPLL_CORE */ | 791 | /* Used by CM_DIV_M6_DPLL_CORE */ |
667 | #define AM33XX_ST_HSDIVIDER_CLKOUT3_SHIFT 9 | 792 | #define AM33XX_ST_HSDIVIDER_CLKOUT3_SHIFT 9 |
793 | #define AM33XX_ST_HSDIVIDER_CLKOUT3_WIDTH 1 | ||
668 | #define AM33XX_ST_HSDIVIDER_CLKOUT3_MASK (1 << 9) | 794 | #define AM33XX_ST_HSDIVIDER_CLKOUT3_MASK (1 << 9) |
669 | 795 | ||
670 | /* | 796 | /* |
@@ -672,16 +798,20 @@ | |||
672 | * CM_IDLEST_DPLL_MPU, CM_IDLEST_DPLL_PER | 798 | * CM_IDLEST_DPLL_MPU, CM_IDLEST_DPLL_PER |
673 | */ | 799 | */ |
674 | #define AM33XX_ST_MN_BYPASS_SHIFT 8 | 800 | #define AM33XX_ST_MN_BYPASS_SHIFT 8 |
801 | #define AM33XX_ST_MN_BYPASS_WIDTH 1 | ||
675 | #define AM33XX_ST_MN_BYPASS_MASK (1 << 8) | 802 | #define AM33XX_ST_MN_BYPASS_MASK (1 << 8) |
676 | 803 | ||
677 | /* Used by CM_WKUP_DEBUGSS_CLKCTRL */ | 804 | /* Used by CM_WKUP_DEBUGSS_CLKCTRL */ |
678 | #define AM33XX_TRC_PMD_CLKDIVSEL_SHIFT 24 | 805 | #define AM33XX_TRC_PMD_CLKDIVSEL_SHIFT 24 |
679 | #define AM33XX_TRC_PMD_CLKDIVSEL_MASK (0x26 << 24) | 806 | #define AM33XX_TRC_PMD_CLKDIVSEL_WIDTH 3 |
807 | #define AM33XX_TRC_PMD_CLKDIVSEL_MASK (0x7 << 24) | ||
680 | 808 | ||
681 | /* Used by CM_WKUP_DEBUGSS_CLKCTRL */ | 809 | /* Used by CM_WKUP_DEBUGSS_CLKCTRL */ |
682 | #define AM33XX_TRC_PMD_CLKSEL_SHIFT 20 | 810 | #define AM33XX_TRC_PMD_CLKSEL_SHIFT 20 |
683 | #define AM33XX_TRC_PMD_CLKSEL_MASK (0x21 << 20) | 811 | #define AM33XX_TRC_PMD_CLKSEL_WIDTH 2 |
812 | #define AM33XX_TRC_PMD_CLKSEL_MASK (0x3 << 20) | ||
684 | 813 | ||
685 | /* Used by CONTROL_SEC_CLK_CTRL */ | 814 | /* Used by CONTROL_SEC_CLK_CTRL */ |
815 | #define AM33XX_TIMER0_CLKSEL_WIDTH 2 | ||
686 | #define AM33XX_TIMER0_CLKSEL_MASK (0x3 << 4) | 816 | #define AM33XX_TIMER0_CLKSEL_MASK (0x3 << 4) |
687 | #endif | 817 | #endif |
diff --git a/arch/arm/mach-omap2/cm-regbits-34xx.h b/arch/arm/mach-omap2/cm-regbits-34xx.h index 766338fe4d34..59598ffd8783 100644 --- a/arch/arm/mach-omap2/cm-regbits-34xx.h +++ b/arch/arm/mach-omap2/cm-regbits-34xx.h | |||
@@ -67,6 +67,7 @@ | |||
67 | #define OMAP3430_EN_IVA2_DPLL_MASK (0x7 << 0) | 67 | #define OMAP3430_EN_IVA2_DPLL_MASK (0x7 << 0) |
68 | 68 | ||
69 | /* CM_IDLEST_IVA2 */ | 69 | /* CM_IDLEST_IVA2 */ |
70 | #define OMAP3430_ST_IVA2_SHIFT 0 | ||
70 | #define OMAP3430_ST_IVA2_MASK (1 << 0) | 71 | #define OMAP3430_ST_IVA2_MASK (1 << 0) |
71 | 72 | ||
72 | /* CM_IDLEST_PLL_IVA2 */ | 73 | /* CM_IDLEST_PLL_IVA2 */ |
@@ -217,6 +218,8 @@ | |||
217 | #define OMAP3430_ST_MAILBOXES_MASK (1 << 7) | 218 | #define OMAP3430_ST_MAILBOXES_MASK (1 << 7) |
218 | #define OMAP3430_ST_OMAPCTRL_SHIFT 6 | 219 | #define OMAP3430_ST_OMAPCTRL_SHIFT 6 |
219 | #define OMAP3430_ST_OMAPCTRL_MASK (1 << 6) | 220 | #define OMAP3430_ST_OMAPCTRL_MASK (1 << 6) |
221 | #define OMAP3430_ST_SAD2D_SHIFT 3 | ||
222 | #define OMAP3430_ST_SAD2D_MASK (1 << 3) | ||
220 | #define OMAP3430_ST_SDMA_SHIFT 2 | 223 | #define OMAP3430_ST_SDMA_SHIFT 2 |
221 | #define OMAP3430_ST_SDMA_MASK (1 << 2) | 224 | #define OMAP3430_ST_SDMA_MASK (1 << 2) |
222 | #define OMAP3430_ST_SDRC_SHIFT 1 | 225 | #define OMAP3430_ST_SDRC_SHIFT 1 |
diff --git a/arch/arm/mach-omap2/cm-regbits-44xx.h b/arch/arm/mach-omap2/cm-regbits-44xx.h index 65597a745638..4c6c2f7de65b 100644 --- a/arch/arm/mach-omap2/cm-regbits-44xx.h +++ b/arch/arm/mach-omap2/cm-regbits-44xx.h | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * OMAP44xx Clock Management register bits | 2 | * OMAP44xx Clock Management register bits |
3 | * | 3 | * |
4 | * Copyright (C) 2009-2010 Texas Instruments, Inc. | 4 | * Copyright (C) 2009-2012 Texas Instruments, Inc. |
5 | * Copyright (C) 2009-2010 Nokia Corporation | 5 | * Copyright (C) 2009-2010 Nokia Corporation |
6 | * | 6 | * |
7 | * Paul Walmsley (paul@pwsan.com) | 7 | * Paul Walmsley (paul@pwsan.com) |
@@ -24,6 +24,7 @@ | |||
24 | 24 | ||
25 | /* Used by CM_L3_1_DYNAMICDEP, CM_MPU_DYNAMICDEP, CM_TESLA_DYNAMICDEP */ | 25 | /* Used by CM_L3_1_DYNAMICDEP, CM_MPU_DYNAMICDEP, CM_TESLA_DYNAMICDEP */ |
26 | #define OMAP4430_ABE_DYNDEP_SHIFT 3 | 26 | #define OMAP4430_ABE_DYNDEP_SHIFT 3 |
27 | #define OMAP4430_ABE_DYNDEP_WIDTH 0x1 | ||
27 | #define OMAP4430_ABE_DYNDEP_MASK (1 << 3) | 28 | #define OMAP4430_ABE_DYNDEP_MASK (1 << 3) |
28 | 29 | ||
29 | /* | 30 | /* |
@@ -31,14 +32,17 @@ | |||
31 | * CM_MPU_STATICDEP, CM_SDMA_STATICDEP, CM_TESLA_STATICDEP | 32 | * CM_MPU_STATICDEP, CM_SDMA_STATICDEP, CM_TESLA_STATICDEP |
32 | */ | 33 | */ |
33 | #define OMAP4430_ABE_STATDEP_SHIFT 3 | 34 | #define OMAP4430_ABE_STATDEP_SHIFT 3 |
35 | #define OMAP4430_ABE_STATDEP_WIDTH 0x1 | ||
34 | #define OMAP4430_ABE_STATDEP_MASK (1 << 3) | 36 | #define OMAP4430_ABE_STATDEP_MASK (1 << 3) |
35 | 37 | ||
36 | /* Used by CM_L4CFG_DYNAMICDEP */ | 38 | /* Used by CM_L4CFG_DYNAMICDEP */ |
37 | #define OMAP4430_ALWONCORE_DYNDEP_SHIFT 16 | 39 | #define OMAP4430_ALWONCORE_DYNDEP_SHIFT 16 |
40 | #define OMAP4430_ALWONCORE_DYNDEP_WIDTH 0x1 | ||
38 | #define OMAP4430_ALWONCORE_DYNDEP_MASK (1 << 16) | 41 | #define OMAP4430_ALWONCORE_DYNDEP_MASK (1 << 16) |
39 | 42 | ||
40 | /* Used by CM_DUCATI_STATICDEP, CM_MPU_STATICDEP, CM_TESLA_STATICDEP */ | 43 | /* Used by CM_DUCATI_STATICDEP, CM_MPU_STATICDEP, CM_TESLA_STATICDEP */ |
41 | #define OMAP4430_ALWONCORE_STATDEP_SHIFT 16 | 44 | #define OMAP4430_ALWONCORE_STATDEP_SHIFT 16 |
45 | #define OMAP4430_ALWONCORE_STATDEP_WIDTH 0x1 | ||
42 | #define OMAP4430_ALWONCORE_STATDEP_MASK (1 << 16) | 46 | #define OMAP4430_ALWONCORE_STATDEP_MASK (1 << 16) |
43 | 47 | ||
44 | /* | 48 | /* |
@@ -47,294 +51,367 @@ | |||
47 | * CM_AUTOIDLE_DPLL_PER, CM_AUTOIDLE_DPLL_UNIPRO, CM_AUTOIDLE_DPLL_USB | 51 | * CM_AUTOIDLE_DPLL_PER, CM_AUTOIDLE_DPLL_UNIPRO, CM_AUTOIDLE_DPLL_USB |
48 | */ | 52 | */ |
49 | #define OMAP4430_AUTO_DPLL_MODE_SHIFT 0 | 53 | #define OMAP4430_AUTO_DPLL_MODE_SHIFT 0 |
54 | #define OMAP4430_AUTO_DPLL_MODE_WIDTH 0x3 | ||
50 | #define OMAP4430_AUTO_DPLL_MODE_MASK (0x7 << 0) | 55 | #define OMAP4430_AUTO_DPLL_MODE_MASK (0x7 << 0) |
51 | 56 | ||
52 | /* Used by CM_L4CFG_DYNAMICDEP */ | 57 | /* Used by CM_L4CFG_DYNAMICDEP */ |
53 | #define OMAP4430_CEFUSE_DYNDEP_SHIFT 17 | 58 | #define OMAP4430_CEFUSE_DYNDEP_SHIFT 17 |
59 | #define OMAP4430_CEFUSE_DYNDEP_WIDTH 0x1 | ||
54 | #define OMAP4430_CEFUSE_DYNDEP_MASK (1 << 17) | 60 | #define OMAP4430_CEFUSE_DYNDEP_MASK (1 << 17) |
55 | 61 | ||
56 | /* Used by CM_DUCATI_STATICDEP, CM_MPU_STATICDEP, CM_TESLA_STATICDEP */ | 62 | /* Used by CM_DUCATI_STATICDEP, CM_MPU_STATICDEP, CM_TESLA_STATICDEP */ |
57 | #define OMAP4430_CEFUSE_STATDEP_SHIFT 17 | 63 | #define OMAP4430_CEFUSE_STATDEP_SHIFT 17 |
64 | #define OMAP4430_CEFUSE_STATDEP_WIDTH 0x1 | ||
58 | #define OMAP4430_CEFUSE_STATDEP_MASK (1 << 17) | 65 | #define OMAP4430_CEFUSE_STATDEP_MASK (1 << 17) |
59 | 66 | ||
60 | /* Used by CM1_ABE_CLKSTCTRL */ | 67 | /* Used by CM1_ABE_CLKSTCTRL */ |
61 | #define OMAP4430_CLKACTIVITY_ABE_24M_GFCLK_SHIFT 13 | 68 | #define OMAP4430_CLKACTIVITY_ABE_24M_GFCLK_SHIFT 13 |
69 | #define OMAP4430_CLKACTIVITY_ABE_24M_GFCLK_WIDTH 0x1 | ||
62 | #define OMAP4430_CLKACTIVITY_ABE_24M_GFCLK_MASK (1 << 13) | 70 | #define OMAP4430_CLKACTIVITY_ABE_24M_GFCLK_MASK (1 << 13) |
63 | 71 | ||
64 | /* Used by CM1_ABE_CLKSTCTRL */ | 72 | /* Used by CM1_ABE_CLKSTCTRL */ |
65 | #define OMAP4430_CLKACTIVITY_ABE_ALWON_32K_CLK_SHIFT 12 | 73 | #define OMAP4430_CLKACTIVITY_ABE_ALWON_32K_CLK_SHIFT 12 |
74 | #define OMAP4430_CLKACTIVITY_ABE_ALWON_32K_CLK_WIDTH 0x1 | ||
66 | #define OMAP4430_CLKACTIVITY_ABE_ALWON_32K_CLK_MASK (1 << 12) | 75 | #define OMAP4430_CLKACTIVITY_ABE_ALWON_32K_CLK_MASK (1 << 12) |
67 | 76 | ||
68 | /* Used by CM_WKUP_CLKSTCTRL */ | 77 | /* Used by CM_WKUP_CLKSTCTRL */ |
69 | #define OMAP4430_CLKACTIVITY_ABE_LP_CLK_SHIFT 9 | 78 | #define OMAP4430_CLKACTIVITY_ABE_LP_CLK_SHIFT 9 |
79 | #define OMAP4430_CLKACTIVITY_ABE_LP_CLK_WIDTH 0x1 | ||
70 | #define OMAP4430_CLKACTIVITY_ABE_LP_CLK_MASK (1 << 9) | 80 | #define OMAP4430_CLKACTIVITY_ABE_LP_CLK_MASK (1 << 9) |
71 | 81 | ||
72 | /* Used by CM1_ABE_CLKSTCTRL */ | 82 | /* Used by CM1_ABE_CLKSTCTRL */ |
73 | #define OMAP4430_CLKACTIVITY_ABE_SYSCLK_SHIFT 11 | 83 | #define OMAP4430_CLKACTIVITY_ABE_SYSCLK_SHIFT 11 |
84 | #define OMAP4430_CLKACTIVITY_ABE_SYSCLK_WIDTH 0x1 | ||
74 | #define OMAP4430_CLKACTIVITY_ABE_SYSCLK_MASK (1 << 11) | 85 | #define OMAP4430_CLKACTIVITY_ABE_SYSCLK_MASK (1 << 11) |
75 | 86 | ||
76 | /* Used by CM1_ABE_CLKSTCTRL */ | 87 | /* Used by CM1_ABE_CLKSTCTRL */ |
77 | #define OMAP4430_CLKACTIVITY_ABE_X2_CLK_SHIFT 8 | 88 | #define OMAP4430_CLKACTIVITY_ABE_X2_CLK_SHIFT 8 |
89 | #define OMAP4430_CLKACTIVITY_ABE_X2_CLK_WIDTH 0x1 | ||
78 | #define OMAP4430_CLKACTIVITY_ABE_X2_CLK_MASK (1 << 8) | 90 | #define OMAP4430_CLKACTIVITY_ABE_X2_CLK_MASK (1 << 8) |
79 | 91 | ||
80 | /* Used by CM_MEMIF_CLKSTCTRL */ | 92 | /* Used by CM_MEMIF_CLKSTCTRL */ |
81 | #define OMAP4430_CLKACTIVITY_ASYNC_DLL_CLK_SHIFT 11 | 93 | #define OMAP4430_CLKACTIVITY_ASYNC_DLL_CLK_SHIFT 11 |
94 | #define OMAP4430_CLKACTIVITY_ASYNC_DLL_CLK_WIDTH 0x1 | ||
82 | #define OMAP4430_CLKACTIVITY_ASYNC_DLL_CLK_MASK (1 << 11) | 95 | #define OMAP4430_CLKACTIVITY_ASYNC_DLL_CLK_MASK (1 << 11) |
83 | 96 | ||
84 | /* Used by CM_MEMIF_CLKSTCTRL */ | 97 | /* Used by CM_MEMIF_CLKSTCTRL */ |
85 | #define OMAP4430_CLKACTIVITY_ASYNC_PHY1_CLK_SHIFT 12 | 98 | #define OMAP4430_CLKACTIVITY_ASYNC_PHY1_CLK_SHIFT 12 |
99 | #define OMAP4430_CLKACTIVITY_ASYNC_PHY1_CLK_WIDTH 0x1 | ||
86 | #define OMAP4430_CLKACTIVITY_ASYNC_PHY1_CLK_MASK (1 << 12) | 100 | #define OMAP4430_CLKACTIVITY_ASYNC_PHY1_CLK_MASK (1 << 12) |
87 | 101 | ||
88 | /* Used by CM_MEMIF_CLKSTCTRL */ | 102 | /* Used by CM_MEMIF_CLKSTCTRL */ |
89 | #define OMAP4430_CLKACTIVITY_ASYNC_PHY2_CLK_SHIFT 13 | 103 | #define OMAP4430_CLKACTIVITY_ASYNC_PHY2_CLK_SHIFT 13 |
104 | #define OMAP4430_CLKACTIVITY_ASYNC_PHY2_CLK_WIDTH 0x1 | ||
90 | #define OMAP4430_CLKACTIVITY_ASYNC_PHY2_CLK_MASK (1 << 13) | 105 | #define OMAP4430_CLKACTIVITY_ASYNC_PHY2_CLK_MASK (1 << 13) |
91 | 106 | ||
92 | /* Used by CM_CAM_CLKSTCTRL */ | 107 | /* Used by CM_CAM_CLKSTCTRL */ |
93 | #define OMAP4430_CLKACTIVITY_CAM_PHY_CTRL_GCLK_SHIFT 9 | 108 | #define OMAP4430_CLKACTIVITY_CAM_PHY_CTRL_GCLK_SHIFT 9 |
109 | #define OMAP4430_CLKACTIVITY_CAM_PHY_CTRL_GCLK_WIDTH 0x1 | ||
94 | #define OMAP4430_CLKACTIVITY_CAM_PHY_CTRL_GCLK_MASK (1 << 9) | 110 | #define OMAP4430_CLKACTIVITY_CAM_PHY_CTRL_GCLK_MASK (1 << 9) |
95 | 111 | ||
96 | /* Used by CM_ALWON_CLKSTCTRL */ | 112 | /* Used by CM_ALWON_CLKSTCTRL */ |
97 | #define OMAP4430_CLKACTIVITY_CORE_ALWON_32K_GFCLK_SHIFT 12 | 113 | #define OMAP4430_CLKACTIVITY_CORE_ALWON_32K_GFCLK_SHIFT 12 |
114 | #define OMAP4430_CLKACTIVITY_CORE_ALWON_32K_GFCLK_WIDTH 0x1 | ||
98 | #define OMAP4430_CLKACTIVITY_CORE_ALWON_32K_GFCLK_MASK (1 << 12) | 115 | #define OMAP4430_CLKACTIVITY_CORE_ALWON_32K_GFCLK_MASK (1 << 12) |
99 | 116 | ||
100 | /* Used by CM_EMU_CLKSTCTRL */ | 117 | /* Used by CM_EMU_CLKSTCTRL */ |
101 | #define OMAP4430_CLKACTIVITY_CORE_DPLL_EMU_CLK_SHIFT 9 | 118 | #define OMAP4430_CLKACTIVITY_CORE_DPLL_EMU_CLK_SHIFT 9 |
119 | #define OMAP4430_CLKACTIVITY_CORE_DPLL_EMU_CLK_WIDTH 0x1 | ||
102 | #define OMAP4430_CLKACTIVITY_CORE_DPLL_EMU_CLK_MASK (1 << 9) | 120 | #define OMAP4430_CLKACTIVITY_CORE_DPLL_EMU_CLK_MASK (1 << 9) |
103 | 121 | ||
104 | /* Used by CM_L4CFG_CLKSTCTRL */ | 122 | /* Used by CM_L4CFG_CLKSTCTRL */ |
105 | #define OMAP4460_CLKACTIVITY_CORE_TS_GFCLK_SHIFT 9 | 123 | #define OMAP4460_CLKACTIVITY_CORE_TS_GFCLK_SHIFT 9 |
124 | #define OMAP4460_CLKACTIVITY_CORE_TS_GFCLK_WIDTH 0x1 | ||
106 | #define OMAP4460_CLKACTIVITY_CORE_TS_GFCLK_MASK (1 << 9) | 125 | #define OMAP4460_CLKACTIVITY_CORE_TS_GFCLK_MASK (1 << 9) |
107 | 126 | ||
108 | /* Used by CM_CEFUSE_CLKSTCTRL */ | 127 | /* Used by CM_CEFUSE_CLKSTCTRL */ |
109 | #define OMAP4430_CLKACTIVITY_CUST_EFUSE_SYS_CLK_SHIFT 9 | 128 | #define OMAP4430_CLKACTIVITY_CUST_EFUSE_SYS_CLK_SHIFT 9 |
129 | #define OMAP4430_CLKACTIVITY_CUST_EFUSE_SYS_CLK_WIDTH 0x1 | ||
110 | #define OMAP4430_CLKACTIVITY_CUST_EFUSE_SYS_CLK_MASK (1 << 9) | 130 | #define OMAP4430_CLKACTIVITY_CUST_EFUSE_SYS_CLK_MASK (1 << 9) |
111 | 131 | ||
112 | /* Used by CM_MEMIF_CLKSTCTRL */ | 132 | /* Used by CM_MEMIF_CLKSTCTRL */ |
113 | #define OMAP4430_CLKACTIVITY_DLL_CLK_SHIFT 9 | 133 | #define OMAP4430_CLKACTIVITY_DLL_CLK_SHIFT 9 |
134 | #define OMAP4430_CLKACTIVITY_DLL_CLK_WIDTH 0x1 | ||
114 | #define OMAP4430_CLKACTIVITY_DLL_CLK_MASK (1 << 9) | 135 | #define OMAP4430_CLKACTIVITY_DLL_CLK_MASK (1 << 9) |
115 | 136 | ||
116 | /* Used by CM_L4PER_CLKSTCTRL */ | 137 | /* Used by CM_L4PER_CLKSTCTRL */ |
117 | #define OMAP4430_CLKACTIVITY_DMT10_GFCLK_SHIFT 9 | 138 | #define OMAP4430_CLKACTIVITY_DMT10_GFCLK_SHIFT 9 |
139 | #define OMAP4430_CLKACTIVITY_DMT10_GFCLK_WIDTH 0x1 | ||
118 | #define OMAP4430_CLKACTIVITY_DMT10_GFCLK_MASK (1 << 9) | 140 | #define OMAP4430_CLKACTIVITY_DMT10_GFCLK_MASK (1 << 9) |
119 | 141 | ||
120 | /* Used by CM_L4PER_CLKSTCTRL */ | 142 | /* Used by CM_L4PER_CLKSTCTRL */ |
121 | #define OMAP4430_CLKACTIVITY_DMT11_GFCLK_SHIFT 10 | 143 | #define OMAP4430_CLKACTIVITY_DMT11_GFCLK_SHIFT 10 |
144 | #define OMAP4430_CLKACTIVITY_DMT11_GFCLK_WIDTH 0x1 | ||
122 | #define OMAP4430_CLKACTIVITY_DMT11_GFCLK_MASK (1 << 10) | 145 | #define OMAP4430_CLKACTIVITY_DMT11_GFCLK_MASK (1 << 10) |
123 | 146 | ||
124 | /* Used by CM_L4PER_CLKSTCTRL */ | 147 | /* Used by CM_L4PER_CLKSTCTRL */ |
125 | #define OMAP4430_CLKACTIVITY_DMT2_GFCLK_SHIFT 11 | 148 | #define OMAP4430_CLKACTIVITY_DMT2_GFCLK_SHIFT 11 |
149 | #define OMAP4430_CLKACTIVITY_DMT2_GFCLK_WIDTH 0x1 | ||
126 | #define OMAP4430_CLKACTIVITY_DMT2_GFCLK_MASK (1 << 11) | 150 | #define OMAP4430_CLKACTIVITY_DMT2_GFCLK_MASK (1 << 11) |
127 | 151 | ||
128 | /* Used by CM_L4PER_CLKSTCTRL */ | 152 | /* Used by CM_L4PER_CLKSTCTRL */ |
129 | #define OMAP4430_CLKACTIVITY_DMT3_GFCLK_SHIFT 12 | 153 | #define OMAP4430_CLKACTIVITY_DMT3_GFCLK_SHIFT 12 |
154 | #define OMAP4430_CLKACTIVITY_DMT3_GFCLK_WIDTH 0x1 | ||
130 | #define OMAP4430_CLKACTIVITY_DMT3_GFCLK_MASK (1 << 12) | 155 | #define OMAP4430_CLKACTIVITY_DMT3_GFCLK_MASK (1 << 12) |
131 | 156 | ||
132 | /* Used by CM_L4PER_CLKSTCTRL */ | 157 | /* Used by CM_L4PER_CLKSTCTRL */ |
133 | #define OMAP4430_CLKACTIVITY_DMT4_GFCLK_SHIFT 13 | 158 | #define OMAP4430_CLKACTIVITY_DMT4_GFCLK_SHIFT 13 |
159 | #define OMAP4430_CLKACTIVITY_DMT4_GFCLK_WIDTH 0x1 | ||
134 | #define OMAP4430_CLKACTIVITY_DMT4_GFCLK_MASK (1 << 13) | 160 | #define OMAP4430_CLKACTIVITY_DMT4_GFCLK_MASK (1 << 13) |
135 | 161 | ||
136 | /* Used by CM_L4PER_CLKSTCTRL */ | 162 | /* Used by CM_L4PER_CLKSTCTRL */ |
137 | #define OMAP4430_CLKACTIVITY_DMT9_GFCLK_SHIFT 14 | 163 | #define OMAP4430_CLKACTIVITY_DMT9_GFCLK_SHIFT 14 |
164 | #define OMAP4430_CLKACTIVITY_DMT9_GFCLK_WIDTH 0x1 | ||
138 | #define OMAP4430_CLKACTIVITY_DMT9_GFCLK_MASK (1 << 14) | 165 | #define OMAP4430_CLKACTIVITY_DMT9_GFCLK_MASK (1 << 14) |
139 | 166 | ||
140 | /* Used by CM_DSS_CLKSTCTRL */ | 167 | /* Used by CM_DSS_CLKSTCTRL */ |
141 | #define OMAP4430_CLKACTIVITY_DSS_ALWON_SYS_CLK_SHIFT 10 | 168 | #define OMAP4430_CLKACTIVITY_DSS_ALWON_SYS_CLK_SHIFT 10 |
169 | #define OMAP4430_CLKACTIVITY_DSS_ALWON_SYS_CLK_WIDTH 0x1 | ||
142 | #define OMAP4430_CLKACTIVITY_DSS_ALWON_SYS_CLK_MASK (1 << 10) | 170 | #define OMAP4430_CLKACTIVITY_DSS_ALWON_SYS_CLK_MASK (1 << 10) |
143 | 171 | ||
144 | /* Used by CM_DSS_CLKSTCTRL */ | 172 | /* Used by CM_DSS_CLKSTCTRL */ |
145 | #define OMAP4430_CLKACTIVITY_DSS_FCLK_SHIFT 9 | 173 | #define OMAP4430_CLKACTIVITY_DSS_FCLK_SHIFT 9 |
174 | #define OMAP4430_CLKACTIVITY_DSS_FCLK_WIDTH 0x1 | ||
146 | #define OMAP4430_CLKACTIVITY_DSS_FCLK_MASK (1 << 9) | 175 | #define OMAP4430_CLKACTIVITY_DSS_FCLK_MASK (1 << 9) |
147 | 176 | ||
148 | /* Used by CM_DUCATI_CLKSTCTRL */ | 177 | /* Used by CM_DUCATI_CLKSTCTRL */ |
149 | #define OMAP4430_CLKACTIVITY_DUCATI_GCLK_SHIFT 8 | 178 | #define OMAP4430_CLKACTIVITY_DUCATI_GCLK_SHIFT 8 |
179 | #define OMAP4430_CLKACTIVITY_DUCATI_GCLK_WIDTH 0x1 | ||
150 | #define OMAP4430_CLKACTIVITY_DUCATI_GCLK_MASK (1 << 8) | 180 | #define OMAP4430_CLKACTIVITY_DUCATI_GCLK_MASK (1 << 8) |
151 | 181 | ||
152 | /* Used by CM_EMU_CLKSTCTRL */ | 182 | /* Used by CM_EMU_CLKSTCTRL */ |
153 | #define OMAP4430_CLKACTIVITY_EMU_SYS_CLK_SHIFT 8 | 183 | #define OMAP4430_CLKACTIVITY_EMU_SYS_CLK_SHIFT 8 |
184 | #define OMAP4430_CLKACTIVITY_EMU_SYS_CLK_WIDTH 0x1 | ||
154 | #define OMAP4430_CLKACTIVITY_EMU_SYS_CLK_MASK (1 << 8) | 185 | #define OMAP4430_CLKACTIVITY_EMU_SYS_CLK_MASK (1 << 8) |
155 | 186 | ||
156 | /* Used by CM_CAM_CLKSTCTRL */ | 187 | /* Used by CM_CAM_CLKSTCTRL */ |
157 | #define OMAP4430_CLKACTIVITY_FDIF_GFCLK_SHIFT 10 | 188 | #define OMAP4430_CLKACTIVITY_FDIF_GFCLK_SHIFT 10 |
189 | #define OMAP4430_CLKACTIVITY_FDIF_GFCLK_WIDTH 0x1 | ||
158 | #define OMAP4430_CLKACTIVITY_FDIF_GFCLK_MASK (1 << 10) | 190 | #define OMAP4430_CLKACTIVITY_FDIF_GFCLK_MASK (1 << 10) |
159 | 191 | ||
160 | /* Used by CM_L4PER_CLKSTCTRL */ | 192 | /* Used by CM_L4PER_CLKSTCTRL */ |
161 | #define OMAP4430_CLKACTIVITY_FUNC_12M_GFCLK_SHIFT 15 | 193 | #define OMAP4430_CLKACTIVITY_FUNC_12M_GFCLK_SHIFT 15 |
194 | #define OMAP4430_CLKACTIVITY_FUNC_12M_GFCLK_WIDTH 0x1 | ||
162 | #define OMAP4430_CLKACTIVITY_FUNC_12M_GFCLK_MASK (1 << 15) | 195 | #define OMAP4430_CLKACTIVITY_FUNC_12M_GFCLK_MASK (1 << 15) |
163 | 196 | ||
164 | /* Used by CM1_ABE_CLKSTCTRL */ | 197 | /* Used by CM1_ABE_CLKSTCTRL */ |
165 | #define OMAP4430_CLKACTIVITY_FUNC_24M_GFCLK_SHIFT 10 | 198 | #define OMAP4430_CLKACTIVITY_FUNC_24M_GFCLK_SHIFT 10 |
199 | #define OMAP4430_CLKACTIVITY_FUNC_24M_GFCLK_WIDTH 0x1 | ||
166 | #define OMAP4430_CLKACTIVITY_FUNC_24M_GFCLK_MASK (1 << 10) | 200 | #define OMAP4430_CLKACTIVITY_FUNC_24M_GFCLK_MASK (1 << 10) |
167 | 201 | ||
168 | /* Used by CM_DSS_CLKSTCTRL */ | 202 | /* Used by CM_DSS_CLKSTCTRL */ |
169 | #define OMAP4430_CLKACTIVITY_HDMI_PHY_48MHZ_GFCLK_SHIFT 11 | 203 | #define OMAP4430_CLKACTIVITY_HDMI_PHY_48MHZ_GFCLK_SHIFT 11 |
204 | #define OMAP4430_CLKACTIVITY_HDMI_PHY_48MHZ_GFCLK_WIDTH 0x1 | ||
170 | #define OMAP4430_CLKACTIVITY_HDMI_PHY_48MHZ_GFCLK_MASK (1 << 11) | 205 | #define OMAP4430_CLKACTIVITY_HDMI_PHY_48MHZ_GFCLK_MASK (1 << 11) |
171 | 206 | ||
172 | /* Used by CM_L3INIT_CLKSTCTRL */ | 207 | /* Used by CM_L3INIT_CLKSTCTRL */ |
173 | #define OMAP4430_CLKACTIVITY_HSIC_P1_480M_GFCLK_SHIFT 20 | 208 | #define OMAP4430_CLKACTIVITY_HSIC_P1_480M_GFCLK_SHIFT 20 |
209 | #define OMAP4430_CLKACTIVITY_HSIC_P1_480M_GFCLK_WIDTH 0x1 | ||
174 | #define OMAP4430_CLKACTIVITY_HSIC_P1_480M_GFCLK_MASK (1 << 20) | 210 | #define OMAP4430_CLKACTIVITY_HSIC_P1_480M_GFCLK_MASK (1 << 20) |
175 | 211 | ||
176 | /* Used by CM_L3INIT_CLKSTCTRL */ | 212 | /* Used by CM_L3INIT_CLKSTCTRL */ |
177 | #define OMAP4430_CLKACTIVITY_HSIC_P1_GFCLK_SHIFT 26 | 213 | #define OMAP4430_CLKACTIVITY_HSIC_P1_GFCLK_SHIFT 26 |
214 | #define OMAP4430_CLKACTIVITY_HSIC_P1_GFCLK_WIDTH 0x1 | ||
178 | #define OMAP4430_CLKACTIVITY_HSIC_P1_GFCLK_MASK (1 << 26) | 215 | #define OMAP4430_CLKACTIVITY_HSIC_P1_GFCLK_MASK (1 << 26) |
179 | 216 | ||
180 | /* Used by CM_L3INIT_CLKSTCTRL */ | 217 | /* Used by CM_L3INIT_CLKSTCTRL */ |
181 | #define OMAP4430_CLKACTIVITY_HSIC_P2_480M_GFCLK_SHIFT 21 | 218 | #define OMAP4430_CLKACTIVITY_HSIC_P2_480M_GFCLK_SHIFT 21 |
219 | #define OMAP4430_CLKACTIVITY_HSIC_P2_480M_GFCLK_WIDTH 0x1 | ||
182 | #define OMAP4430_CLKACTIVITY_HSIC_P2_480M_GFCLK_MASK (1 << 21) | 220 | #define OMAP4430_CLKACTIVITY_HSIC_P2_480M_GFCLK_MASK (1 << 21) |
183 | 221 | ||
184 | /* Used by CM_L3INIT_CLKSTCTRL */ | 222 | /* Used by CM_L3INIT_CLKSTCTRL */ |
185 | #define OMAP4430_CLKACTIVITY_HSIC_P2_GFCLK_SHIFT 27 | 223 | #define OMAP4430_CLKACTIVITY_HSIC_P2_GFCLK_SHIFT 27 |
224 | #define OMAP4430_CLKACTIVITY_HSIC_P2_GFCLK_WIDTH 0x1 | ||
186 | #define OMAP4430_CLKACTIVITY_HSIC_P2_GFCLK_MASK (1 << 27) | 225 | #define OMAP4430_CLKACTIVITY_HSIC_P2_GFCLK_MASK (1 << 27) |
187 | 226 | ||
188 | /* Used by CM_L3INIT_CLKSTCTRL */ | 227 | /* Used by CM_L3INIT_CLKSTCTRL */ |
189 | #define OMAP4430_CLKACTIVITY_INIT_48MC_GFCLK_SHIFT 13 | 228 | #define OMAP4430_CLKACTIVITY_INIT_48MC_GFCLK_SHIFT 13 |
229 | #define OMAP4430_CLKACTIVITY_INIT_48MC_GFCLK_WIDTH 0x1 | ||
190 | #define OMAP4430_CLKACTIVITY_INIT_48MC_GFCLK_MASK (1 << 13) | 230 | #define OMAP4430_CLKACTIVITY_INIT_48MC_GFCLK_MASK (1 << 13) |
191 | 231 | ||
192 | /* Used by CM_L3INIT_CLKSTCTRL */ | 232 | /* Used by CM_L3INIT_CLKSTCTRL */ |
193 | #define OMAP4430_CLKACTIVITY_INIT_48M_GFCLK_SHIFT 12 | 233 | #define OMAP4430_CLKACTIVITY_INIT_48M_GFCLK_SHIFT 12 |
234 | #define OMAP4430_CLKACTIVITY_INIT_48M_GFCLK_WIDTH 0x1 | ||
194 | #define OMAP4430_CLKACTIVITY_INIT_48M_GFCLK_MASK (1 << 12) | 235 | #define OMAP4430_CLKACTIVITY_INIT_48M_GFCLK_MASK (1 << 12) |
195 | 236 | ||
196 | /* Used by CM_L3INIT_CLKSTCTRL */ | 237 | /* Used by CM_L3INIT_CLKSTCTRL */ |
197 | #define OMAP4430_CLKACTIVITY_INIT_60M_P1_GFCLK_SHIFT 28 | 238 | #define OMAP4430_CLKACTIVITY_INIT_60M_P1_GFCLK_SHIFT 28 |
239 | #define OMAP4430_CLKACTIVITY_INIT_60M_P1_GFCLK_WIDTH 0x1 | ||
198 | #define OMAP4430_CLKACTIVITY_INIT_60M_P1_GFCLK_MASK (1 << 28) | 240 | #define OMAP4430_CLKACTIVITY_INIT_60M_P1_GFCLK_MASK (1 << 28) |
199 | 241 | ||
200 | /* Used by CM_L3INIT_CLKSTCTRL */ | 242 | /* Used by CM_L3INIT_CLKSTCTRL */ |
201 | #define OMAP4430_CLKACTIVITY_INIT_60M_P2_GFCLK_SHIFT 29 | 243 | #define OMAP4430_CLKACTIVITY_INIT_60M_P2_GFCLK_SHIFT 29 |
244 | #define OMAP4430_CLKACTIVITY_INIT_60M_P2_GFCLK_WIDTH 0x1 | ||
202 | #define OMAP4430_CLKACTIVITY_INIT_60M_P2_GFCLK_MASK (1 << 29) | 245 | #define OMAP4430_CLKACTIVITY_INIT_60M_P2_GFCLK_MASK (1 << 29) |
203 | 246 | ||
204 | /* Used by CM_L3INIT_CLKSTCTRL */ | 247 | /* Used by CM_L3INIT_CLKSTCTRL */ |
205 | #define OMAP4430_CLKACTIVITY_INIT_96M_GFCLK_SHIFT 11 | 248 | #define OMAP4430_CLKACTIVITY_INIT_96M_GFCLK_SHIFT 11 |
249 | #define OMAP4430_CLKACTIVITY_INIT_96M_GFCLK_WIDTH 0x1 | ||
206 | #define OMAP4430_CLKACTIVITY_INIT_96M_GFCLK_MASK (1 << 11) | 250 | #define OMAP4430_CLKACTIVITY_INIT_96M_GFCLK_MASK (1 << 11) |
207 | 251 | ||
208 | /* Used by CM_L3INIT_CLKSTCTRL */ | 252 | /* Used by CM_L3INIT_CLKSTCTRL */ |
209 | #define OMAP4430_CLKACTIVITY_INIT_HSI_GFCLK_SHIFT 16 | 253 | #define OMAP4430_CLKACTIVITY_INIT_HSI_GFCLK_SHIFT 16 |
254 | #define OMAP4430_CLKACTIVITY_INIT_HSI_GFCLK_WIDTH 0x1 | ||
210 | #define OMAP4430_CLKACTIVITY_INIT_HSI_GFCLK_MASK (1 << 16) | 255 | #define OMAP4430_CLKACTIVITY_INIT_HSI_GFCLK_MASK (1 << 16) |
211 | 256 | ||
212 | /* Used by CM_L3INIT_CLKSTCTRL */ | 257 | /* Used by CM_L3INIT_CLKSTCTRL */ |
213 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC1_GFCLK_SHIFT 17 | 258 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC1_GFCLK_SHIFT 17 |
259 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC1_GFCLK_WIDTH 0x1 | ||
214 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC1_GFCLK_MASK (1 << 17) | 260 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC1_GFCLK_MASK (1 << 17) |
215 | 261 | ||
216 | /* Used by CM_L3INIT_CLKSTCTRL */ | 262 | /* Used by CM_L3INIT_CLKSTCTRL */ |
217 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC2_GFCLK_SHIFT 18 | 263 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC2_GFCLK_SHIFT 18 |
264 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC2_GFCLK_WIDTH 0x1 | ||
218 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC2_GFCLK_MASK (1 << 18) | 265 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC2_GFCLK_MASK (1 << 18) |
219 | 266 | ||
220 | /* Used by CM_L3INIT_CLKSTCTRL */ | 267 | /* Used by CM_L3INIT_CLKSTCTRL */ |
221 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC6_GFCLK_SHIFT 19 | 268 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC6_GFCLK_SHIFT 19 |
269 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC6_GFCLK_WIDTH 0x1 | ||
222 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC6_GFCLK_MASK (1 << 19) | 270 | #define OMAP4430_CLKACTIVITY_INIT_HSMMC6_GFCLK_MASK (1 << 19) |
223 | 271 | ||
224 | /* Used by CM_CAM_CLKSTCTRL */ | 272 | /* Used by CM_CAM_CLKSTCTRL */ |
225 | #define OMAP4430_CLKACTIVITY_ISS_GCLK_SHIFT 8 | 273 | #define OMAP4430_CLKACTIVITY_ISS_GCLK_SHIFT 8 |
274 | #define OMAP4430_CLKACTIVITY_ISS_GCLK_WIDTH 0x1 | ||
226 | #define OMAP4430_CLKACTIVITY_ISS_GCLK_MASK (1 << 8) | 275 | #define OMAP4430_CLKACTIVITY_ISS_GCLK_MASK (1 << 8) |
227 | 276 | ||
228 | /* Used by CM_IVAHD_CLKSTCTRL */ | 277 | /* Used by CM_IVAHD_CLKSTCTRL */ |
229 | #define OMAP4430_CLKACTIVITY_IVAHD_ROOT_CLK_SHIFT 8 | 278 | #define OMAP4430_CLKACTIVITY_IVAHD_ROOT_CLK_SHIFT 8 |
279 | #define OMAP4430_CLKACTIVITY_IVAHD_ROOT_CLK_WIDTH 0x1 | ||
230 | #define OMAP4430_CLKACTIVITY_IVAHD_ROOT_CLK_MASK (1 << 8) | 280 | #define OMAP4430_CLKACTIVITY_IVAHD_ROOT_CLK_MASK (1 << 8) |
231 | 281 | ||
232 | /* Used by CM_D2D_CLKSTCTRL */ | 282 | /* Used by CM_D2D_CLKSTCTRL */ |
233 | #define OMAP4430_CLKACTIVITY_L3X2_D2D_GICLK_SHIFT 10 | 283 | #define OMAP4430_CLKACTIVITY_L3X2_D2D_GICLK_SHIFT 10 |
284 | #define OMAP4430_CLKACTIVITY_L3X2_D2D_GICLK_WIDTH 0x1 | ||
234 | #define OMAP4430_CLKACTIVITY_L3X2_D2D_GICLK_MASK (1 << 10) | 285 | #define OMAP4430_CLKACTIVITY_L3X2_D2D_GICLK_MASK (1 << 10) |
235 | 286 | ||
236 | /* Used by CM_L3_1_CLKSTCTRL */ | 287 | /* Used by CM_L3_1_CLKSTCTRL */ |
237 | #define OMAP4430_CLKACTIVITY_L3_1_GICLK_SHIFT 8 | 288 | #define OMAP4430_CLKACTIVITY_L3_1_GICLK_SHIFT 8 |
289 | #define OMAP4430_CLKACTIVITY_L3_1_GICLK_WIDTH 0x1 | ||
238 | #define OMAP4430_CLKACTIVITY_L3_1_GICLK_MASK (1 << 8) | 290 | #define OMAP4430_CLKACTIVITY_L3_1_GICLK_MASK (1 << 8) |
239 | 291 | ||
240 | /* Used by CM_L3_2_CLKSTCTRL */ | 292 | /* Used by CM_L3_2_CLKSTCTRL */ |
241 | #define OMAP4430_CLKACTIVITY_L3_2_GICLK_SHIFT 8 | 293 | #define OMAP4430_CLKACTIVITY_L3_2_GICLK_SHIFT 8 |
294 | #define OMAP4430_CLKACTIVITY_L3_2_GICLK_WIDTH 0x1 | ||
242 | #define OMAP4430_CLKACTIVITY_L3_2_GICLK_MASK (1 << 8) | 295 | #define OMAP4430_CLKACTIVITY_L3_2_GICLK_MASK (1 << 8) |
243 | 296 | ||
244 | /* Used by CM_D2D_CLKSTCTRL */ | 297 | /* Used by CM_D2D_CLKSTCTRL */ |
245 | #define OMAP4430_CLKACTIVITY_L3_D2D_GICLK_SHIFT 8 | 298 | #define OMAP4430_CLKACTIVITY_L3_D2D_GICLK_SHIFT 8 |
299 | #define OMAP4430_CLKACTIVITY_L3_D2D_GICLK_WIDTH 0x1 | ||
246 | #define OMAP4430_CLKACTIVITY_L3_D2D_GICLK_MASK (1 << 8) | 300 | #define OMAP4430_CLKACTIVITY_L3_D2D_GICLK_MASK (1 << 8) |
247 | 301 | ||
248 | /* Used by CM_SDMA_CLKSTCTRL */ | 302 | /* Used by CM_SDMA_CLKSTCTRL */ |
249 | #define OMAP4430_CLKACTIVITY_L3_DMA_GICLK_SHIFT 8 | 303 | #define OMAP4430_CLKACTIVITY_L3_DMA_GICLK_SHIFT 8 |
304 | #define OMAP4430_CLKACTIVITY_L3_DMA_GICLK_WIDTH 0x1 | ||
250 | #define OMAP4430_CLKACTIVITY_L3_DMA_GICLK_MASK (1 << 8) | 305 | #define OMAP4430_CLKACTIVITY_L3_DMA_GICLK_MASK (1 << 8) |
251 | 306 | ||
252 | /* Used by CM_DSS_CLKSTCTRL */ | 307 | /* Used by CM_DSS_CLKSTCTRL */ |
253 | #define OMAP4430_CLKACTIVITY_L3_DSS_GICLK_SHIFT 8 | 308 | #define OMAP4430_CLKACTIVITY_L3_DSS_GICLK_SHIFT 8 |
309 | #define OMAP4430_CLKACTIVITY_L3_DSS_GICLK_WIDTH 0x1 | ||
254 | #define OMAP4430_CLKACTIVITY_L3_DSS_GICLK_MASK (1 << 8) | 310 | #define OMAP4430_CLKACTIVITY_L3_DSS_GICLK_MASK (1 << 8) |
255 | 311 | ||
256 | /* Used by CM_MEMIF_CLKSTCTRL */ | 312 | /* Used by CM_MEMIF_CLKSTCTRL */ |
257 | #define OMAP4430_CLKACTIVITY_L3_EMIF_GICLK_SHIFT 8 | 313 | #define OMAP4430_CLKACTIVITY_L3_EMIF_GICLK_SHIFT 8 |
314 | #define OMAP4430_CLKACTIVITY_L3_EMIF_GICLK_WIDTH 0x1 | ||
258 | #define OMAP4430_CLKACTIVITY_L3_EMIF_GICLK_MASK (1 << 8) | 315 | #define OMAP4430_CLKACTIVITY_L3_EMIF_GICLK_MASK (1 << 8) |
259 | 316 | ||
260 | /* Used by CM_GFX_CLKSTCTRL */ | 317 | /* Used by CM_GFX_CLKSTCTRL */ |
261 | #define OMAP4430_CLKACTIVITY_L3_GFX_GICLK_SHIFT 8 | 318 | #define OMAP4430_CLKACTIVITY_L3_GFX_GICLK_SHIFT 8 |
319 | #define OMAP4430_CLKACTIVITY_L3_GFX_GICLK_WIDTH 0x1 | ||
262 | #define OMAP4430_CLKACTIVITY_L3_GFX_GICLK_MASK (1 << 8) | 320 | #define OMAP4430_CLKACTIVITY_L3_GFX_GICLK_MASK (1 << 8) |
263 | 321 | ||
264 | /* Used by CM_L3INIT_CLKSTCTRL */ | 322 | /* Used by CM_L3INIT_CLKSTCTRL */ |
265 | #define OMAP4430_CLKACTIVITY_L3_INIT_GICLK_SHIFT 8 | 323 | #define OMAP4430_CLKACTIVITY_L3_INIT_GICLK_SHIFT 8 |
324 | #define OMAP4430_CLKACTIVITY_L3_INIT_GICLK_WIDTH 0x1 | ||
266 | #define OMAP4430_CLKACTIVITY_L3_INIT_GICLK_MASK (1 << 8) | 325 | #define OMAP4430_CLKACTIVITY_L3_INIT_GICLK_MASK (1 << 8) |
267 | 326 | ||
268 | /* Used by CM_L3INSTR_CLKSTCTRL */ | 327 | /* Used by CM_L3INSTR_CLKSTCTRL */ |
269 | #define OMAP4430_CLKACTIVITY_L3_INSTR_GICLK_SHIFT 8 | 328 | #define OMAP4430_CLKACTIVITY_L3_INSTR_GICLK_SHIFT 8 |
329 | #define OMAP4430_CLKACTIVITY_L3_INSTR_GICLK_WIDTH 0x1 | ||
270 | #define OMAP4430_CLKACTIVITY_L3_INSTR_GICLK_MASK (1 << 8) | 330 | #define OMAP4430_CLKACTIVITY_L3_INSTR_GICLK_MASK (1 << 8) |
271 | 331 | ||
272 | /* Used by CM_L4SEC_CLKSTCTRL */ | 332 | /* Used by CM_L4SEC_CLKSTCTRL */ |
273 | #define OMAP4430_CLKACTIVITY_L3_SECURE_GICLK_SHIFT 8 | 333 | #define OMAP4430_CLKACTIVITY_L3_SECURE_GICLK_SHIFT 8 |
334 | #define OMAP4430_CLKACTIVITY_L3_SECURE_GICLK_WIDTH 0x1 | ||
274 | #define OMAP4430_CLKACTIVITY_L3_SECURE_GICLK_MASK (1 << 8) | 335 | #define OMAP4430_CLKACTIVITY_L3_SECURE_GICLK_MASK (1 << 8) |
275 | 336 | ||
276 | /* Used by CM_ALWON_CLKSTCTRL */ | 337 | /* Used by CM_ALWON_CLKSTCTRL */ |
277 | #define OMAP4430_CLKACTIVITY_L4_AO_ICLK_SHIFT 8 | 338 | #define OMAP4430_CLKACTIVITY_L4_AO_ICLK_SHIFT 8 |
339 | #define OMAP4430_CLKACTIVITY_L4_AO_ICLK_WIDTH 0x1 | ||
278 | #define OMAP4430_CLKACTIVITY_L4_AO_ICLK_MASK (1 << 8) | 340 | #define OMAP4430_CLKACTIVITY_L4_AO_ICLK_MASK (1 << 8) |
279 | 341 | ||
280 | /* Used by CM_CEFUSE_CLKSTCTRL */ | 342 | /* Used by CM_CEFUSE_CLKSTCTRL */ |
281 | #define OMAP4430_CLKACTIVITY_L4_CEFUSE_GICLK_SHIFT 8 | 343 | #define OMAP4430_CLKACTIVITY_L4_CEFUSE_GICLK_SHIFT 8 |
344 | #define OMAP4430_CLKACTIVITY_L4_CEFUSE_GICLK_WIDTH 0x1 | ||
282 | #define OMAP4430_CLKACTIVITY_L4_CEFUSE_GICLK_MASK (1 << 8) | 345 | #define OMAP4430_CLKACTIVITY_L4_CEFUSE_GICLK_MASK (1 << 8) |
283 | 346 | ||
284 | /* Used by CM_L4CFG_CLKSTCTRL */ | 347 | /* Used by CM_L4CFG_CLKSTCTRL */ |
285 | #define OMAP4430_CLKACTIVITY_L4_CFG_GICLK_SHIFT 8 | 348 | #define OMAP4430_CLKACTIVITY_L4_CFG_GICLK_SHIFT 8 |
349 | #define OMAP4430_CLKACTIVITY_L4_CFG_GICLK_WIDTH 0x1 | ||
286 | #define OMAP4430_CLKACTIVITY_L4_CFG_GICLK_MASK (1 << 8) | 350 | #define OMAP4430_CLKACTIVITY_L4_CFG_GICLK_MASK (1 << 8) |
287 | 351 | ||
288 | /* Used by CM_D2D_CLKSTCTRL */ | 352 | /* Used by CM_D2D_CLKSTCTRL */ |
289 | #define OMAP4430_CLKACTIVITY_L4_D2D_GICLK_SHIFT 9 | 353 | #define OMAP4430_CLKACTIVITY_L4_D2D_GICLK_SHIFT 9 |
354 | #define OMAP4430_CLKACTIVITY_L4_D2D_GICLK_WIDTH 0x1 | ||
290 | #define OMAP4430_CLKACTIVITY_L4_D2D_GICLK_MASK (1 << 9) | 355 | #define OMAP4430_CLKACTIVITY_L4_D2D_GICLK_MASK (1 << 9) |
291 | 356 | ||
292 | /* Used by CM_L3INIT_CLKSTCTRL */ | 357 | /* Used by CM_L3INIT_CLKSTCTRL */ |
293 | #define OMAP4430_CLKACTIVITY_L4_INIT_GICLK_SHIFT 9 | 358 | #define OMAP4430_CLKACTIVITY_L4_INIT_GICLK_SHIFT 9 |
359 | #define OMAP4430_CLKACTIVITY_L4_INIT_GICLK_WIDTH 0x1 | ||
294 | #define OMAP4430_CLKACTIVITY_L4_INIT_GICLK_MASK (1 << 9) | 360 | #define OMAP4430_CLKACTIVITY_L4_INIT_GICLK_MASK (1 << 9) |
295 | 361 | ||
296 | /* Used by CM_L4PER_CLKSTCTRL */ | 362 | /* Used by CM_L4PER_CLKSTCTRL */ |
297 | #define OMAP4430_CLKACTIVITY_L4_PER_GICLK_SHIFT 8 | 363 | #define OMAP4430_CLKACTIVITY_L4_PER_GICLK_SHIFT 8 |
364 | #define OMAP4430_CLKACTIVITY_L4_PER_GICLK_WIDTH 0x1 | ||
298 | #define OMAP4430_CLKACTIVITY_L4_PER_GICLK_MASK (1 << 8) | 365 | #define OMAP4430_CLKACTIVITY_L4_PER_GICLK_MASK (1 << 8) |
299 | 366 | ||
300 | /* Used by CM_L4SEC_CLKSTCTRL */ | 367 | /* Used by CM_L4SEC_CLKSTCTRL */ |
301 | #define OMAP4430_CLKACTIVITY_L4_SECURE_GICLK_SHIFT 9 | 368 | #define OMAP4430_CLKACTIVITY_L4_SECURE_GICLK_SHIFT 9 |
369 | #define OMAP4430_CLKACTIVITY_L4_SECURE_GICLK_WIDTH 0x1 | ||
302 | #define OMAP4430_CLKACTIVITY_L4_SECURE_GICLK_MASK (1 << 9) | 370 | #define OMAP4430_CLKACTIVITY_L4_SECURE_GICLK_MASK (1 << 9) |
303 | 371 | ||
304 | /* Used by CM_WKUP_CLKSTCTRL */ | 372 | /* Used by CM_WKUP_CLKSTCTRL */ |
305 | #define OMAP4430_CLKACTIVITY_L4_WKUP_GICLK_SHIFT 12 | 373 | #define OMAP4430_CLKACTIVITY_L4_WKUP_GICLK_SHIFT 12 |
374 | #define OMAP4430_CLKACTIVITY_L4_WKUP_GICLK_WIDTH 0x1 | ||
306 | #define OMAP4430_CLKACTIVITY_L4_WKUP_GICLK_MASK (1 << 12) | 375 | #define OMAP4430_CLKACTIVITY_L4_WKUP_GICLK_MASK (1 << 12) |
307 | 376 | ||
308 | /* Used by CM_MPU_CLKSTCTRL */ | 377 | /* Used by CM_MPU_CLKSTCTRL */ |
309 | #define OMAP4430_CLKACTIVITY_MPU_DPLL_CLK_SHIFT 8 | 378 | #define OMAP4430_CLKACTIVITY_MPU_DPLL_CLK_SHIFT 8 |
379 | #define OMAP4430_CLKACTIVITY_MPU_DPLL_CLK_WIDTH 0x1 | ||
310 | #define OMAP4430_CLKACTIVITY_MPU_DPLL_CLK_MASK (1 << 8) | 380 | #define OMAP4430_CLKACTIVITY_MPU_DPLL_CLK_MASK (1 << 8) |
311 | 381 | ||
312 | /* Used by CM1_ABE_CLKSTCTRL */ | 382 | /* Used by CM1_ABE_CLKSTCTRL */ |
313 | #define OMAP4430_CLKACTIVITY_OCP_ABE_GICLK_SHIFT 9 | 383 | #define OMAP4430_CLKACTIVITY_OCP_ABE_GICLK_SHIFT 9 |
384 | #define OMAP4430_CLKACTIVITY_OCP_ABE_GICLK_WIDTH 0x1 | ||
314 | #define OMAP4430_CLKACTIVITY_OCP_ABE_GICLK_MASK (1 << 9) | 385 | #define OMAP4430_CLKACTIVITY_OCP_ABE_GICLK_MASK (1 << 9) |
315 | 386 | ||
316 | /* Used by CM_L4PER_CLKSTCTRL */ | 387 | /* Used by CM_L4PER_CLKSTCTRL */ |
317 | #define OMAP4430_CLKACTIVITY_PER_24MC_GFCLK_SHIFT 16 | 388 | #define OMAP4430_CLKACTIVITY_PER_24MC_GFCLK_SHIFT 16 |
389 | #define OMAP4430_CLKACTIVITY_PER_24MC_GFCLK_WIDTH 0x1 | ||
318 | #define OMAP4430_CLKACTIVITY_PER_24MC_GFCLK_MASK (1 << 16) | 390 | #define OMAP4430_CLKACTIVITY_PER_24MC_GFCLK_MASK (1 << 16) |
319 | 391 | ||
320 | /* Used by CM_L4PER_CLKSTCTRL */ | 392 | /* Used by CM_L4PER_CLKSTCTRL */ |
321 | #define OMAP4430_CLKACTIVITY_PER_32K_GFCLK_SHIFT 17 | 393 | #define OMAP4430_CLKACTIVITY_PER_32K_GFCLK_SHIFT 17 |
394 | #define OMAP4430_CLKACTIVITY_PER_32K_GFCLK_WIDTH 0x1 | ||
322 | #define OMAP4430_CLKACTIVITY_PER_32K_GFCLK_MASK (1 << 17) | 395 | #define OMAP4430_CLKACTIVITY_PER_32K_GFCLK_MASK (1 << 17) |
323 | 396 | ||
324 | /* Used by CM_L4PER_CLKSTCTRL */ | 397 | /* Used by CM_L4PER_CLKSTCTRL */ |
325 | #define OMAP4430_CLKACTIVITY_PER_48M_GFCLK_SHIFT 18 | 398 | #define OMAP4430_CLKACTIVITY_PER_48M_GFCLK_SHIFT 18 |
399 | #define OMAP4430_CLKACTIVITY_PER_48M_GFCLK_WIDTH 0x1 | ||
326 | #define OMAP4430_CLKACTIVITY_PER_48M_GFCLK_MASK (1 << 18) | 400 | #define OMAP4430_CLKACTIVITY_PER_48M_GFCLK_MASK (1 << 18) |
327 | 401 | ||
328 | /* Used by CM_L4PER_CLKSTCTRL */ | 402 | /* Used by CM_L4PER_CLKSTCTRL */ |
329 | #define OMAP4430_CLKACTIVITY_PER_96M_GFCLK_SHIFT 19 | 403 | #define OMAP4430_CLKACTIVITY_PER_96M_GFCLK_SHIFT 19 |
404 | #define OMAP4430_CLKACTIVITY_PER_96M_GFCLK_WIDTH 0x1 | ||
330 | #define OMAP4430_CLKACTIVITY_PER_96M_GFCLK_MASK (1 << 19) | 405 | #define OMAP4430_CLKACTIVITY_PER_96M_GFCLK_MASK (1 << 19) |
331 | 406 | ||
332 | /* Used by CM_L4PER_CLKSTCTRL */ | 407 | /* Used by CM_L4PER_CLKSTCTRL */ |
333 | #define OMAP4430_CLKACTIVITY_PER_ABE_24M_GFCLK_SHIFT 25 | 408 | #define OMAP4430_CLKACTIVITY_PER_ABE_24M_GFCLK_SHIFT 25 |
409 | #define OMAP4430_CLKACTIVITY_PER_ABE_24M_GFCLK_WIDTH 0x1 | ||
334 | #define OMAP4430_CLKACTIVITY_PER_ABE_24M_GFCLK_MASK (1 << 25) | 410 | #define OMAP4430_CLKACTIVITY_PER_ABE_24M_GFCLK_MASK (1 << 25) |
335 | 411 | ||
336 | /* Used by CM_L4PER_CLKSTCTRL */ | 412 | /* Used by CM_L4PER_CLKSTCTRL */ |
337 | #define OMAP4430_CLKACTIVITY_PER_MCASP2_GFCLK_SHIFT 20 | 413 | #define OMAP4430_CLKACTIVITY_PER_MCASP2_GFCLK_SHIFT 20 |
414 | #define OMAP4430_CLKACTIVITY_PER_MCASP2_GFCLK_WIDTH 0x1 | ||
338 | #define OMAP4430_CLKACTIVITY_PER_MCASP2_GFCLK_MASK (1 << 20) | 415 | #define OMAP4430_CLKACTIVITY_PER_MCASP2_GFCLK_MASK (1 << 20) |
339 | 416 | ||
340 | /* Used by CM_L4PER_CLKSTCTRL */ | 417 | /* Used by CM_L4PER_CLKSTCTRL */ |
@@ -343,94 +420,114 @@ | |||
343 | 420 | ||
344 | /* Used by CM_L4PER_CLKSTCTRL */ | 421 | /* Used by CM_L4PER_CLKSTCTRL */ |
345 | #define OMAP4430_CLKACTIVITY_PER_MCBSP4_GFCLK_SHIFT 22 | 422 | #define OMAP4430_CLKACTIVITY_PER_MCBSP4_GFCLK_SHIFT 22 |
423 | #define OMAP4430_CLKACTIVITY_PER_MCBSP4_GFCLK_WIDTH 0x1 | ||
346 | #define OMAP4430_CLKACTIVITY_PER_MCBSP4_GFCLK_MASK (1 << 22) | 424 | #define OMAP4430_CLKACTIVITY_PER_MCBSP4_GFCLK_MASK (1 << 22) |
347 | 425 | ||
348 | /* Used by CM_L4PER_CLKSTCTRL */ | 426 | /* Used by CM_L4PER_CLKSTCTRL */ |
349 | #define OMAP4430_CLKACTIVITY_PER_SYS_GFCLK_SHIFT 24 | 427 | #define OMAP4430_CLKACTIVITY_PER_SYS_GFCLK_SHIFT 24 |
428 | #define OMAP4430_CLKACTIVITY_PER_SYS_GFCLK_WIDTH 0x1 | ||
350 | #define OMAP4430_CLKACTIVITY_PER_SYS_GFCLK_MASK (1 << 24) | 429 | #define OMAP4430_CLKACTIVITY_PER_SYS_GFCLK_MASK (1 << 24) |
351 | 430 | ||
352 | /* Used by CM_MEMIF_CLKSTCTRL */ | 431 | /* Used by CM_MEMIF_CLKSTCTRL */ |
353 | #define OMAP4430_CLKACTIVITY_PHY_ROOT_CLK_SHIFT 10 | 432 | #define OMAP4430_CLKACTIVITY_PHY_ROOT_CLK_SHIFT 10 |
433 | #define OMAP4430_CLKACTIVITY_PHY_ROOT_CLK_WIDTH 0x1 | ||
354 | #define OMAP4430_CLKACTIVITY_PHY_ROOT_CLK_MASK (1 << 10) | 434 | #define OMAP4430_CLKACTIVITY_PHY_ROOT_CLK_MASK (1 << 10) |
355 | 435 | ||
356 | /* Used by CM_GFX_CLKSTCTRL */ | 436 | /* Used by CM_GFX_CLKSTCTRL */ |
357 | #define OMAP4430_CLKACTIVITY_SGX_GFCLK_SHIFT 9 | 437 | #define OMAP4430_CLKACTIVITY_SGX_GFCLK_SHIFT 9 |
438 | #define OMAP4430_CLKACTIVITY_SGX_GFCLK_WIDTH 0x1 | ||
358 | #define OMAP4430_CLKACTIVITY_SGX_GFCLK_MASK (1 << 9) | 439 | #define OMAP4430_CLKACTIVITY_SGX_GFCLK_MASK (1 << 9) |
359 | 440 | ||
360 | /* Used by CM_ALWON_CLKSTCTRL */ | 441 | /* Used by CM_ALWON_CLKSTCTRL */ |
361 | #define OMAP4430_CLKACTIVITY_SR_CORE_SYSCLK_SHIFT 11 | 442 | #define OMAP4430_CLKACTIVITY_SR_CORE_SYSCLK_SHIFT 11 |
443 | #define OMAP4430_CLKACTIVITY_SR_CORE_SYSCLK_WIDTH 0x1 | ||
362 | #define OMAP4430_CLKACTIVITY_SR_CORE_SYSCLK_MASK (1 << 11) | 444 | #define OMAP4430_CLKACTIVITY_SR_CORE_SYSCLK_MASK (1 << 11) |
363 | 445 | ||
364 | /* Used by CM_ALWON_CLKSTCTRL */ | 446 | /* Used by CM_ALWON_CLKSTCTRL */ |
365 | #define OMAP4430_CLKACTIVITY_SR_IVA_SYSCLK_SHIFT 10 | 447 | #define OMAP4430_CLKACTIVITY_SR_IVA_SYSCLK_SHIFT 10 |
448 | #define OMAP4430_CLKACTIVITY_SR_IVA_SYSCLK_WIDTH 0x1 | ||
366 | #define OMAP4430_CLKACTIVITY_SR_IVA_SYSCLK_MASK (1 << 10) | 449 | #define OMAP4430_CLKACTIVITY_SR_IVA_SYSCLK_MASK (1 << 10) |
367 | 450 | ||
368 | /* Used by CM_ALWON_CLKSTCTRL */ | 451 | /* Used by CM_ALWON_CLKSTCTRL */ |
369 | #define OMAP4430_CLKACTIVITY_SR_MPU_SYSCLK_SHIFT 9 | 452 | #define OMAP4430_CLKACTIVITY_SR_MPU_SYSCLK_SHIFT 9 |
453 | #define OMAP4430_CLKACTIVITY_SR_MPU_SYSCLK_WIDTH 0x1 | ||
370 | #define OMAP4430_CLKACTIVITY_SR_MPU_SYSCLK_MASK (1 << 9) | 454 | #define OMAP4430_CLKACTIVITY_SR_MPU_SYSCLK_MASK (1 << 9) |
371 | 455 | ||
372 | /* Used by CM_WKUP_CLKSTCTRL */ | 456 | /* Used by CM_WKUP_CLKSTCTRL */ |
373 | #define OMAP4430_CLKACTIVITY_SYS_CLK_SHIFT 8 | 457 | #define OMAP4430_CLKACTIVITY_SYS_CLK_SHIFT 8 |
458 | #define OMAP4430_CLKACTIVITY_SYS_CLK_WIDTH 0x1 | ||
374 | #define OMAP4430_CLKACTIVITY_SYS_CLK_MASK (1 << 8) | 459 | #define OMAP4430_CLKACTIVITY_SYS_CLK_MASK (1 << 8) |
375 | 460 | ||
376 | /* Used by CM_TESLA_CLKSTCTRL */ | 461 | /* Used by CM_TESLA_CLKSTCTRL */ |
377 | #define OMAP4430_CLKACTIVITY_TESLA_ROOT_CLK_SHIFT 8 | 462 | #define OMAP4430_CLKACTIVITY_TESLA_ROOT_CLK_SHIFT 8 |
463 | #define OMAP4430_CLKACTIVITY_TESLA_ROOT_CLK_WIDTH 0x1 | ||
378 | #define OMAP4430_CLKACTIVITY_TESLA_ROOT_CLK_MASK (1 << 8) | 464 | #define OMAP4430_CLKACTIVITY_TESLA_ROOT_CLK_MASK (1 << 8) |
379 | 465 | ||
380 | /* Used by CM_L3INIT_CLKSTCTRL */ | 466 | /* Used by CM_L3INIT_CLKSTCTRL */ |
381 | #define OMAP4430_CLKACTIVITY_TLL_CH0_GFCLK_SHIFT 22 | 467 | #define OMAP4430_CLKACTIVITY_TLL_CH0_GFCLK_SHIFT 22 |
468 | #define OMAP4430_CLKACTIVITY_TLL_CH0_GFCLK_WIDTH 0x1 | ||
382 | #define OMAP4430_CLKACTIVITY_TLL_CH0_GFCLK_MASK (1 << 22) | 469 | #define OMAP4430_CLKACTIVITY_TLL_CH0_GFCLK_MASK (1 << 22) |
383 | 470 | ||
384 | /* Used by CM_L3INIT_CLKSTCTRL */ | 471 | /* Used by CM_L3INIT_CLKSTCTRL */ |
385 | #define OMAP4430_CLKACTIVITY_TLL_CH1_GFCLK_SHIFT 23 | 472 | #define OMAP4430_CLKACTIVITY_TLL_CH1_GFCLK_SHIFT 23 |
473 | #define OMAP4430_CLKACTIVITY_TLL_CH1_GFCLK_WIDTH 0x1 | ||
386 | #define OMAP4430_CLKACTIVITY_TLL_CH1_GFCLK_MASK (1 << 23) | 474 | #define OMAP4430_CLKACTIVITY_TLL_CH1_GFCLK_MASK (1 << 23) |
387 | 475 | ||
388 | /* Used by CM_L3INIT_CLKSTCTRL */ | 476 | /* Used by CM_L3INIT_CLKSTCTRL */ |
389 | #define OMAP4430_CLKACTIVITY_TLL_CH2_GFCLK_SHIFT 24 | 477 | #define OMAP4430_CLKACTIVITY_TLL_CH2_GFCLK_SHIFT 24 |
478 | #define OMAP4430_CLKACTIVITY_TLL_CH2_GFCLK_WIDTH 0x1 | ||
390 | #define OMAP4430_CLKACTIVITY_TLL_CH2_GFCLK_MASK (1 << 24) | 479 | #define OMAP4430_CLKACTIVITY_TLL_CH2_GFCLK_MASK (1 << 24) |
391 | 480 | ||
392 | /* Used by CM_L3INIT_CLKSTCTRL */ | 481 | /* Used by CM_L3INIT_CLKSTCTRL */ |
393 | #define OMAP4430_CLKACTIVITY_UNIPRO_DPLL_CLK_SHIFT 10 | 482 | #define OMAP4430_CLKACTIVITY_UNIPRO_DPLL_CLK_SHIFT 10 |
483 | #define OMAP4430_CLKACTIVITY_UNIPRO_DPLL_CLK_WIDTH 0x1 | ||
394 | #define OMAP4430_CLKACTIVITY_UNIPRO_DPLL_CLK_MASK (1 << 10) | 484 | #define OMAP4430_CLKACTIVITY_UNIPRO_DPLL_CLK_MASK (1 << 10) |
395 | 485 | ||
396 | /* Used by CM_L3INIT_CLKSTCTRL */ | 486 | /* Used by CM_L3INIT_CLKSTCTRL */ |
397 | #define OMAP4430_CLKACTIVITY_USB_DPLL_CLK_SHIFT 14 | 487 | #define OMAP4430_CLKACTIVITY_USB_DPLL_CLK_SHIFT 14 |
488 | #define OMAP4430_CLKACTIVITY_USB_DPLL_CLK_WIDTH 0x1 | ||
398 | #define OMAP4430_CLKACTIVITY_USB_DPLL_CLK_MASK (1 << 14) | 489 | #define OMAP4430_CLKACTIVITY_USB_DPLL_CLK_MASK (1 << 14) |
399 | 490 | ||
400 | /* Used by CM_L3INIT_CLKSTCTRL */ | 491 | /* Used by CM_L3INIT_CLKSTCTRL */ |
401 | #define OMAP4430_CLKACTIVITY_USB_DPLL_HS_CLK_SHIFT 15 | 492 | #define OMAP4430_CLKACTIVITY_USB_DPLL_HS_CLK_SHIFT 15 |
493 | #define OMAP4430_CLKACTIVITY_USB_DPLL_HS_CLK_WIDTH 0x1 | ||
402 | #define OMAP4430_CLKACTIVITY_USB_DPLL_HS_CLK_MASK (1 << 15) | 494 | #define OMAP4430_CLKACTIVITY_USB_DPLL_HS_CLK_MASK (1 << 15) |
403 | 495 | ||
404 | /* Used by CM_WKUP_CLKSTCTRL */ | 496 | /* Used by CM_WKUP_CLKSTCTRL */ |
405 | #define OMAP4430_CLKACTIVITY_USIM_GFCLK_SHIFT 10 | 497 | #define OMAP4430_CLKACTIVITY_USIM_GFCLK_SHIFT 10 |
498 | #define OMAP4430_CLKACTIVITY_USIM_GFCLK_WIDTH 0x1 | ||
406 | #define OMAP4430_CLKACTIVITY_USIM_GFCLK_MASK (1 << 10) | 499 | #define OMAP4430_CLKACTIVITY_USIM_GFCLK_MASK (1 << 10) |
407 | 500 | ||
408 | /* Used by CM_L3INIT_CLKSTCTRL */ | 501 | /* Used by CM_L3INIT_CLKSTCTRL */ |
409 | #define OMAP4430_CLKACTIVITY_UTMI_P3_GFCLK_SHIFT 30 | 502 | #define OMAP4430_CLKACTIVITY_UTMI_P3_GFCLK_SHIFT 30 |
503 | #define OMAP4430_CLKACTIVITY_UTMI_P3_GFCLK_WIDTH 0x1 | ||
410 | #define OMAP4430_CLKACTIVITY_UTMI_P3_GFCLK_MASK (1 << 30) | 504 | #define OMAP4430_CLKACTIVITY_UTMI_P3_GFCLK_MASK (1 << 30) |
411 | 505 | ||
412 | /* Used by CM_L3INIT_CLKSTCTRL */ | 506 | /* Used by CM_L3INIT_CLKSTCTRL */ |
413 | #define OMAP4430_CLKACTIVITY_UTMI_ROOT_GFCLK_SHIFT 25 | 507 | #define OMAP4430_CLKACTIVITY_UTMI_ROOT_GFCLK_SHIFT 25 |
508 | #define OMAP4430_CLKACTIVITY_UTMI_ROOT_GFCLK_WIDTH 0x1 | ||
414 | #define OMAP4430_CLKACTIVITY_UTMI_ROOT_GFCLK_MASK (1 << 25) | 509 | #define OMAP4430_CLKACTIVITY_UTMI_ROOT_GFCLK_MASK (1 << 25) |
415 | 510 | ||
416 | /* Used by CM_WKUP_CLKSTCTRL */ | 511 | /* Used by CM_WKUP_CLKSTCTRL */ |
417 | #define OMAP4430_CLKACTIVITY_WKUP_32K_GFCLK_SHIFT 11 | 512 | #define OMAP4430_CLKACTIVITY_WKUP_32K_GFCLK_SHIFT 11 |
513 | #define OMAP4430_CLKACTIVITY_WKUP_32K_GFCLK_WIDTH 0x1 | ||
418 | #define OMAP4430_CLKACTIVITY_WKUP_32K_GFCLK_MASK (1 << 11) | 514 | #define OMAP4430_CLKACTIVITY_WKUP_32K_GFCLK_MASK (1 << 11) |
419 | 515 | ||
420 | /* Used by CM_WKUP_CLKSTCTRL */ | 516 | /* Used by CM_WKUP_CLKSTCTRL */ |
421 | #define OMAP4460_CLKACTIVITY_WKUP_TS_GFCLK_SHIFT 13 | 517 | #define OMAP4460_CLKACTIVITY_WKUP_TS_GFCLK_SHIFT 13 |
518 | #define OMAP4460_CLKACTIVITY_WKUP_TS_GFCLK_WIDTH 0x1 | ||
422 | #define OMAP4460_CLKACTIVITY_WKUP_TS_GFCLK_MASK (1 << 13) | 519 | #define OMAP4460_CLKACTIVITY_WKUP_TS_GFCLK_MASK (1 << 13) |
423 | 520 | ||
424 | /* | 521 | /* |
425 | * Used by CM1_ABE_TIMER5_CLKCTRL, CM1_ABE_TIMER6_CLKCTRL, | 522 | * Used by CM1_ABE_TIMER5_CLKCTRL, CM1_ABE_TIMER6_CLKCTRL, |
426 | * CM1_ABE_TIMER7_CLKCTRL, CM1_ABE_TIMER8_CLKCTRL, CM_L3INIT_MMC1_CLKCTRL, | 523 | * CM1_ABE_TIMER7_CLKCTRL, CM1_ABE_TIMER8_CLKCTRL, CM_L3INIT_MMC1_CLKCTRL, |
427 | * CM_L3INIT_MMC2_CLKCTRL, CM_L3INIT_MMC6_CLKCTRL, CM_L4PER_DMTIMER10_CLKCTRL, | 524 | * CM_L3INIT_MMC2_CLKCTRL, CM_L4PER_DMTIMER10_CLKCTRL, |
428 | * CM_L4PER_DMTIMER11_CLKCTRL, CM_L4PER_DMTIMER2_CLKCTRL, | 525 | * CM_L4PER_DMTIMER11_CLKCTRL, CM_L4PER_DMTIMER2_CLKCTRL, |
429 | * CM_L4PER_DMTIMER3_CLKCTRL, CM_L4PER_DMTIMER4_CLKCTRL, | 526 | * CM_L4PER_DMTIMER3_CLKCTRL, CM_L4PER_DMTIMER4_CLKCTRL, |
430 | * CM_L4PER_DMTIMER9_CLKCTRL, CM_L4PER_MCASP2_CLKCTRL, CM_L4PER_MCASP3_CLKCTRL, | 527 | * CM_L4PER_DMTIMER9_CLKCTRL, CM_WKUP_TIMER1_CLKCTRL |
431 | * CM_WKUP_TIMER1_CLKCTRL | ||
432 | */ | 528 | */ |
433 | #define OMAP4430_CLKSEL_SHIFT 24 | 529 | #define OMAP4430_CLKSEL_SHIFT 24 |
530 | #define OMAP4430_CLKSEL_WIDTH 0x1 | ||
434 | #define OMAP4430_CLKSEL_MASK (1 << 24) | 531 | #define OMAP4430_CLKSEL_MASK (1 << 24) |
435 | 532 | ||
436 | /* | 533 | /* |
@@ -438,50 +535,62 @@ | |||
438 | * CM_CLKSEL_DUCATI_ISS_ROOT, CM_CLKSEL_USB_60MHZ, CM_L4_WKUP_CLKSEL | 535 | * CM_CLKSEL_DUCATI_ISS_ROOT, CM_CLKSEL_USB_60MHZ, CM_L4_WKUP_CLKSEL |
439 | */ | 536 | */ |
440 | #define OMAP4430_CLKSEL_0_0_SHIFT 0 | 537 | #define OMAP4430_CLKSEL_0_0_SHIFT 0 |
538 | #define OMAP4430_CLKSEL_0_0_WIDTH 0x1 | ||
441 | #define OMAP4430_CLKSEL_0_0_MASK (1 << 0) | 539 | #define OMAP4430_CLKSEL_0_0_MASK (1 << 0) |
442 | 540 | ||
443 | /* Renamed from CLKSEL Used by CM_BYPCLK_DPLL_IVA, CM_BYPCLK_DPLL_MPU */ | 541 | /* Renamed from CLKSEL Used by CM_BYPCLK_DPLL_IVA, CM_BYPCLK_DPLL_MPU */ |
444 | #define OMAP4430_CLKSEL_0_1_SHIFT 0 | 542 | #define OMAP4430_CLKSEL_0_1_SHIFT 0 |
543 | #define OMAP4430_CLKSEL_0_1_WIDTH 0x2 | ||
445 | #define OMAP4430_CLKSEL_0_1_MASK (0x3 << 0) | 544 | #define OMAP4430_CLKSEL_0_1_MASK (0x3 << 0) |
446 | 545 | ||
447 | /* Renamed from CLKSEL Used by CM_L3INIT_HSI_CLKCTRL */ | 546 | /* Renamed from CLKSEL Used by CM_L3INIT_HSI_CLKCTRL */ |
448 | #define OMAP4430_CLKSEL_24_25_SHIFT 24 | 547 | #define OMAP4430_CLKSEL_24_25_SHIFT 24 |
548 | #define OMAP4430_CLKSEL_24_25_WIDTH 0x2 | ||
449 | #define OMAP4430_CLKSEL_24_25_MASK (0x3 << 24) | 549 | #define OMAP4430_CLKSEL_24_25_MASK (0x3 << 24) |
450 | 550 | ||
451 | /* Used by CM_L3INIT_USB_OTG_CLKCTRL */ | 551 | /* Used by CM_L3INIT_USB_OTG_CLKCTRL */ |
452 | #define OMAP4430_CLKSEL_60M_SHIFT 24 | 552 | #define OMAP4430_CLKSEL_60M_SHIFT 24 |
553 | #define OMAP4430_CLKSEL_60M_WIDTH 0x1 | ||
453 | #define OMAP4430_CLKSEL_60M_MASK (1 << 24) | 554 | #define OMAP4430_CLKSEL_60M_MASK (1 << 24) |
454 | 555 | ||
455 | /* Used by CM_MPU_MPU_CLKCTRL */ | 556 | /* Used by CM_MPU_MPU_CLKCTRL */ |
456 | #define OMAP4460_CLKSEL_ABE_DIV_MODE_SHIFT 25 | 557 | #define OMAP4460_CLKSEL_ABE_DIV_MODE_SHIFT 25 |
558 | #define OMAP4460_CLKSEL_ABE_DIV_MODE_WIDTH 0x1 | ||
457 | #define OMAP4460_CLKSEL_ABE_DIV_MODE_MASK (1 << 25) | 559 | #define OMAP4460_CLKSEL_ABE_DIV_MODE_MASK (1 << 25) |
458 | 560 | ||
459 | /* Used by CM1_ABE_AESS_CLKCTRL */ | 561 | /* Used by CM1_ABE_AESS_CLKCTRL */ |
460 | #define OMAP4430_CLKSEL_AESS_FCLK_SHIFT 24 | 562 | #define OMAP4430_CLKSEL_AESS_FCLK_SHIFT 24 |
563 | #define OMAP4430_CLKSEL_AESS_FCLK_WIDTH 0x1 | ||
461 | #define OMAP4430_CLKSEL_AESS_FCLK_MASK (1 << 24) | 564 | #define OMAP4430_CLKSEL_AESS_FCLK_MASK (1 << 24) |
462 | 565 | ||
463 | /* Used by CM_CLKSEL_CORE */ | 566 | /* Used by CM_CLKSEL_CORE */ |
464 | #define OMAP4430_CLKSEL_CORE_SHIFT 0 | 567 | #define OMAP4430_CLKSEL_CORE_SHIFT 0 |
568 | #define OMAP4430_CLKSEL_CORE_WIDTH 0x1 | ||
465 | #define OMAP4430_CLKSEL_CORE_MASK (1 << 0) | 569 | #define OMAP4430_CLKSEL_CORE_MASK (1 << 0) |
466 | 570 | ||
467 | /* Renamed from CLKSEL_CORE Used by CM_SHADOW_FREQ_CONFIG2 */ | 571 | /* Renamed from CLKSEL_CORE Used by CM_SHADOW_FREQ_CONFIG2 */ |
468 | #define OMAP4430_CLKSEL_CORE_1_1_SHIFT 1 | 572 | #define OMAP4430_CLKSEL_CORE_1_1_SHIFT 1 |
573 | #define OMAP4430_CLKSEL_CORE_1_1_WIDTH 0x1 | ||
469 | #define OMAP4430_CLKSEL_CORE_1_1_MASK (1 << 1) | 574 | #define OMAP4430_CLKSEL_CORE_1_1_MASK (1 << 1) |
470 | 575 | ||
471 | /* Used by CM_WKUP_USIM_CLKCTRL */ | 576 | /* Used by CM_WKUP_USIM_CLKCTRL */ |
472 | #define OMAP4430_CLKSEL_DIV_SHIFT 24 | 577 | #define OMAP4430_CLKSEL_DIV_SHIFT 24 |
578 | #define OMAP4430_CLKSEL_DIV_WIDTH 0x1 | ||
473 | #define OMAP4430_CLKSEL_DIV_MASK (1 << 24) | 579 | #define OMAP4430_CLKSEL_DIV_MASK (1 << 24) |
474 | 580 | ||
475 | /* Used by CM_MPU_MPU_CLKCTRL */ | 581 | /* Used by CM_MPU_MPU_CLKCTRL */ |
476 | #define OMAP4460_CLKSEL_EMIF_DIV_MODE_SHIFT 24 | 582 | #define OMAP4460_CLKSEL_EMIF_DIV_MODE_SHIFT 24 |
583 | #define OMAP4460_CLKSEL_EMIF_DIV_MODE_WIDTH 0x1 | ||
477 | #define OMAP4460_CLKSEL_EMIF_DIV_MODE_MASK (1 << 24) | 584 | #define OMAP4460_CLKSEL_EMIF_DIV_MODE_MASK (1 << 24) |
478 | 585 | ||
479 | /* Used by CM_CAM_FDIF_CLKCTRL */ | 586 | /* Used by CM_CAM_FDIF_CLKCTRL */ |
480 | #define OMAP4430_CLKSEL_FCLK_SHIFT 24 | 587 | #define OMAP4430_CLKSEL_FCLK_SHIFT 24 |
588 | #define OMAP4430_CLKSEL_FCLK_WIDTH 0x2 | ||
481 | #define OMAP4430_CLKSEL_FCLK_MASK (0x3 << 24) | 589 | #define OMAP4430_CLKSEL_FCLK_MASK (0x3 << 24) |
482 | 590 | ||
483 | /* Used by CM_L4PER_MCBSP4_CLKCTRL */ | 591 | /* Used by CM_L4PER_MCBSP4_CLKCTRL */ |
484 | #define OMAP4430_CLKSEL_INTERNAL_SOURCE_SHIFT 25 | 592 | #define OMAP4430_CLKSEL_INTERNAL_SOURCE_SHIFT 25 |
593 | #define OMAP4430_CLKSEL_INTERNAL_SOURCE_WIDTH 0x1 | ||
485 | #define OMAP4430_CLKSEL_INTERNAL_SOURCE_MASK (1 << 25) | 594 | #define OMAP4430_CLKSEL_INTERNAL_SOURCE_MASK (1 << 25) |
486 | 595 | ||
487 | /* | 596 | /* |
@@ -490,34 +599,42 @@ | |||
490 | * CM1_ABE_MCBSP3_CLKCTRL | 599 | * CM1_ABE_MCBSP3_CLKCTRL |
491 | */ | 600 | */ |
492 | #define OMAP4430_CLKSEL_INTERNAL_SOURCE_CM1_ABE_DMIC_SHIFT 26 | 601 | #define OMAP4430_CLKSEL_INTERNAL_SOURCE_CM1_ABE_DMIC_SHIFT 26 |
602 | #define OMAP4430_CLKSEL_INTERNAL_SOURCE_CM1_ABE_DMIC_WIDTH 0x2 | ||
493 | #define OMAP4430_CLKSEL_INTERNAL_SOURCE_CM1_ABE_DMIC_MASK (0x3 << 26) | 603 | #define OMAP4430_CLKSEL_INTERNAL_SOURCE_CM1_ABE_DMIC_MASK (0x3 << 26) |
494 | 604 | ||
495 | /* Used by CM_CLKSEL_CORE */ | 605 | /* Used by CM_CLKSEL_CORE */ |
496 | #define OMAP4430_CLKSEL_L3_SHIFT 4 | 606 | #define OMAP4430_CLKSEL_L3_SHIFT 4 |
607 | #define OMAP4430_CLKSEL_L3_WIDTH 0x1 | ||
497 | #define OMAP4430_CLKSEL_L3_MASK (1 << 4) | 608 | #define OMAP4430_CLKSEL_L3_MASK (1 << 4) |
498 | 609 | ||
499 | /* Renamed from CLKSEL_L3 Used by CM_SHADOW_FREQ_CONFIG2 */ | 610 | /* Renamed from CLKSEL_L3 Used by CM_SHADOW_FREQ_CONFIG2 */ |
500 | #define OMAP4430_CLKSEL_L3_SHADOW_SHIFT 2 | 611 | #define OMAP4430_CLKSEL_L3_SHADOW_SHIFT 2 |
612 | #define OMAP4430_CLKSEL_L3_SHADOW_WIDTH 0x1 | ||
501 | #define OMAP4430_CLKSEL_L3_SHADOW_MASK (1 << 2) | 613 | #define OMAP4430_CLKSEL_L3_SHADOW_MASK (1 << 2) |
502 | 614 | ||
503 | /* Used by CM_CLKSEL_CORE */ | 615 | /* Used by CM_CLKSEL_CORE */ |
504 | #define OMAP4430_CLKSEL_L4_SHIFT 8 | 616 | #define OMAP4430_CLKSEL_L4_SHIFT 8 |
617 | #define OMAP4430_CLKSEL_L4_WIDTH 0x1 | ||
505 | #define OMAP4430_CLKSEL_L4_MASK (1 << 8) | 618 | #define OMAP4430_CLKSEL_L4_MASK (1 << 8) |
506 | 619 | ||
507 | /* Used by CM_CLKSEL_ABE */ | 620 | /* Used by CM_CLKSEL_ABE */ |
508 | #define OMAP4430_CLKSEL_OPP_SHIFT 0 | 621 | #define OMAP4430_CLKSEL_OPP_SHIFT 0 |
622 | #define OMAP4430_CLKSEL_OPP_WIDTH 0x2 | ||
509 | #define OMAP4430_CLKSEL_OPP_MASK (0x3 << 0) | 623 | #define OMAP4430_CLKSEL_OPP_MASK (0x3 << 0) |
510 | 624 | ||
511 | /* Used by CM_EMU_DEBUGSS_CLKCTRL */ | 625 | /* Used by CM_EMU_DEBUGSS_CLKCTRL */ |
512 | #define OMAP4430_CLKSEL_PMD_STM_CLK_SHIFT 27 | 626 | #define OMAP4430_CLKSEL_PMD_STM_CLK_SHIFT 27 |
627 | #define OMAP4430_CLKSEL_PMD_STM_CLK_WIDTH 0x3 | ||
513 | #define OMAP4430_CLKSEL_PMD_STM_CLK_MASK (0x7 << 27) | 628 | #define OMAP4430_CLKSEL_PMD_STM_CLK_MASK (0x7 << 27) |
514 | 629 | ||
515 | /* Used by CM_EMU_DEBUGSS_CLKCTRL */ | 630 | /* Used by CM_EMU_DEBUGSS_CLKCTRL */ |
516 | #define OMAP4430_CLKSEL_PMD_TRACE_CLK_SHIFT 24 | 631 | #define OMAP4430_CLKSEL_PMD_TRACE_CLK_SHIFT 24 |
632 | #define OMAP4430_CLKSEL_PMD_TRACE_CLK_WIDTH 0x3 | ||
517 | #define OMAP4430_CLKSEL_PMD_TRACE_CLK_MASK (0x7 << 24) | 633 | #define OMAP4430_CLKSEL_PMD_TRACE_CLK_MASK (0x7 << 24) |
518 | 634 | ||
519 | /* Used by CM_GFX_GFX_CLKCTRL */ | 635 | /* Used by CM_GFX_GFX_CLKCTRL */ |
520 | #define OMAP4430_CLKSEL_SGX_FCLK_SHIFT 24 | 636 | #define OMAP4430_CLKSEL_SGX_FCLK_SHIFT 24 |
637 | #define OMAP4430_CLKSEL_SGX_FCLK_WIDTH 0x1 | ||
521 | #define OMAP4430_CLKSEL_SGX_FCLK_MASK (1 << 24) | 638 | #define OMAP4430_CLKSEL_SGX_FCLK_MASK (1 << 24) |
522 | 639 | ||
523 | /* | 640 | /* |
@@ -525,18 +642,22 @@ | |||
525 | * CM1_ABE_MCBSP2_CLKCTRL, CM1_ABE_MCBSP3_CLKCTRL | 642 | * CM1_ABE_MCBSP2_CLKCTRL, CM1_ABE_MCBSP3_CLKCTRL |
526 | */ | 643 | */ |
527 | #define OMAP4430_CLKSEL_SOURCE_SHIFT 24 | 644 | #define OMAP4430_CLKSEL_SOURCE_SHIFT 24 |
645 | #define OMAP4430_CLKSEL_SOURCE_WIDTH 0x2 | ||
528 | #define OMAP4430_CLKSEL_SOURCE_MASK (0x3 << 24) | 646 | #define OMAP4430_CLKSEL_SOURCE_MASK (0x3 << 24) |
529 | 647 | ||
530 | /* Renamed from CLKSEL_SOURCE Used by CM_L4PER_MCBSP4_CLKCTRL */ | 648 | /* Renamed from CLKSEL_SOURCE Used by CM_L4PER_MCBSP4_CLKCTRL */ |
531 | #define OMAP4430_CLKSEL_SOURCE_24_24_SHIFT 24 | 649 | #define OMAP4430_CLKSEL_SOURCE_24_24_SHIFT 24 |
650 | #define OMAP4430_CLKSEL_SOURCE_24_24_WIDTH 0x1 | ||
532 | #define OMAP4430_CLKSEL_SOURCE_24_24_MASK (1 << 24) | 651 | #define OMAP4430_CLKSEL_SOURCE_24_24_MASK (1 << 24) |
533 | 652 | ||
534 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ | 653 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ |
535 | #define OMAP4430_CLKSEL_UTMI_P1_SHIFT 24 | 654 | #define OMAP4430_CLKSEL_UTMI_P1_SHIFT 24 |
655 | #define OMAP4430_CLKSEL_UTMI_P1_WIDTH 0x1 | ||
536 | #define OMAP4430_CLKSEL_UTMI_P1_MASK (1 << 24) | 656 | #define OMAP4430_CLKSEL_UTMI_P1_MASK (1 << 24) |
537 | 657 | ||
538 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ | 658 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ |
539 | #define OMAP4430_CLKSEL_UTMI_P2_SHIFT 25 | 659 | #define OMAP4430_CLKSEL_UTMI_P2_SHIFT 25 |
660 | #define OMAP4430_CLKSEL_UTMI_P2_WIDTH 0x1 | ||
540 | #define OMAP4430_CLKSEL_UTMI_P2_MASK (1 << 25) | 661 | #define OMAP4430_CLKSEL_UTMI_P2_MASK (1 << 25) |
541 | 662 | ||
542 | /* | 663 | /* |
@@ -549,30 +670,37 @@ | |||
549 | * CM_TESLA_CLKSTCTRL, CM_WKUP_CLKSTCTRL | 670 | * CM_TESLA_CLKSTCTRL, CM_WKUP_CLKSTCTRL |
550 | */ | 671 | */ |
551 | #define OMAP4430_CLKTRCTRL_SHIFT 0 | 672 | #define OMAP4430_CLKTRCTRL_SHIFT 0 |
673 | #define OMAP4430_CLKTRCTRL_WIDTH 0x2 | ||
552 | #define OMAP4430_CLKTRCTRL_MASK (0x3 << 0) | 674 | #define OMAP4430_CLKTRCTRL_MASK (0x3 << 0) |
553 | 675 | ||
554 | /* Used by CM_EMU_OVERRIDE_DPLL_CORE */ | 676 | /* Used by CM_EMU_OVERRIDE_DPLL_CORE */ |
555 | #define OMAP4430_CORE_DPLL_EMU_DIV_SHIFT 0 | 677 | #define OMAP4430_CORE_DPLL_EMU_DIV_SHIFT 0 |
678 | #define OMAP4430_CORE_DPLL_EMU_DIV_WIDTH 0x7 | ||
556 | #define OMAP4430_CORE_DPLL_EMU_DIV_MASK (0x7f << 0) | 679 | #define OMAP4430_CORE_DPLL_EMU_DIV_MASK (0x7f << 0) |
557 | 680 | ||
558 | /* Used by CM_EMU_OVERRIDE_DPLL_CORE */ | 681 | /* Used by CM_EMU_OVERRIDE_DPLL_CORE */ |
559 | #define OMAP4430_CORE_DPLL_EMU_MULT_SHIFT 8 | 682 | #define OMAP4430_CORE_DPLL_EMU_MULT_SHIFT 8 |
683 | #define OMAP4430_CORE_DPLL_EMU_MULT_WIDTH 0xb | ||
560 | #define OMAP4430_CORE_DPLL_EMU_MULT_MASK (0x7ff << 8) | 684 | #define OMAP4430_CORE_DPLL_EMU_MULT_MASK (0x7ff << 8) |
561 | 685 | ||
562 | /* Used by REVISION_CM1, REVISION_CM2 */ | 686 | /* Used by REVISION_CM1, REVISION_CM2 */ |
563 | #define OMAP4430_CUSTOM_SHIFT 6 | 687 | #define OMAP4430_CUSTOM_SHIFT 6 |
688 | #define OMAP4430_CUSTOM_WIDTH 0x2 | ||
564 | #define OMAP4430_CUSTOM_MASK (0x3 << 6) | 689 | #define OMAP4430_CUSTOM_MASK (0x3 << 6) |
565 | 690 | ||
566 | /* Used by CM_L3_2_DYNAMICDEP, CM_L4CFG_DYNAMICDEP */ | 691 | /* Used by CM_L3_2_DYNAMICDEP, CM_L4CFG_DYNAMICDEP */ |
567 | #define OMAP4430_D2D_DYNDEP_SHIFT 18 | 692 | #define OMAP4430_D2D_DYNDEP_SHIFT 18 |
693 | #define OMAP4430_D2D_DYNDEP_WIDTH 0x1 | ||
568 | #define OMAP4430_D2D_DYNDEP_MASK (1 << 18) | 694 | #define OMAP4430_D2D_DYNDEP_MASK (1 << 18) |
569 | 695 | ||
570 | /* Used by CM_MPU_STATICDEP */ | 696 | /* Used by CM_MPU_STATICDEP */ |
571 | #define OMAP4430_D2D_STATDEP_SHIFT 18 | 697 | #define OMAP4430_D2D_STATDEP_SHIFT 18 |
698 | #define OMAP4430_D2D_STATDEP_WIDTH 0x1 | ||
572 | #define OMAP4430_D2D_STATDEP_MASK (1 << 18) | 699 | #define OMAP4430_D2D_STATDEP_MASK (1 << 18) |
573 | 700 | ||
574 | /* Used by CM_CLKSEL_DPLL_MPU */ | 701 | /* Used by CM_CLKSEL_DPLL_MPU */ |
575 | #define OMAP4460_DCC_COUNT_MAX_SHIFT 24 | 702 | #define OMAP4460_DCC_COUNT_MAX_SHIFT 24 |
703 | #define OMAP4460_DCC_COUNT_MAX_WIDTH 0x8 | ||
576 | #define OMAP4460_DCC_COUNT_MAX_MASK (0xff << 24) | 704 | #define OMAP4460_DCC_COUNT_MAX_MASK (0xff << 24) |
577 | 705 | ||
578 | /* Used by CM_CLKSEL_DPLL_MPU */ | 706 | /* Used by CM_CLKSEL_DPLL_MPU */ |
@@ -586,22 +714,27 @@ | |||
586 | * CM_SSC_DELTAMSTEP_DPLL_UNIPRO, CM_SSC_DELTAMSTEP_DPLL_USB | 714 | * CM_SSC_DELTAMSTEP_DPLL_UNIPRO, CM_SSC_DELTAMSTEP_DPLL_USB |
587 | */ | 715 | */ |
588 | #define OMAP4430_DELTAMSTEP_SHIFT 0 | 716 | #define OMAP4430_DELTAMSTEP_SHIFT 0 |
717 | #define OMAP4430_DELTAMSTEP_WIDTH 0x14 | ||
589 | #define OMAP4430_DELTAMSTEP_MASK (0xfffff << 0) | 718 | #define OMAP4430_DELTAMSTEP_MASK (0xfffff << 0) |
590 | 719 | ||
591 | /* Renamed from DELTAMSTEP Used by CM_SSC_DELTAMSTEP_DPLL_USB */ | 720 | /* Renamed from DELTAMSTEP Used by CM_SSC_DELTAMSTEP_DPLL_USB */ |
592 | #define OMAP4460_DELTAMSTEP_0_20_SHIFT 0 | 721 | #define OMAP4460_DELTAMSTEP_0_20_SHIFT 0 |
722 | #define OMAP4460_DELTAMSTEP_0_20_WIDTH 0x15 | ||
593 | #define OMAP4460_DELTAMSTEP_0_20_MASK (0x1fffff << 0) | 723 | #define OMAP4460_DELTAMSTEP_0_20_MASK (0x1fffff << 0) |
594 | 724 | ||
595 | /* Used by CM_DLL_CTRL */ | 725 | /* Used by CM_DLL_CTRL */ |
596 | #define OMAP4430_DLL_OVERRIDE_SHIFT 0 | 726 | #define OMAP4430_DLL_OVERRIDE_SHIFT 0 |
727 | #define OMAP4430_DLL_OVERRIDE_WIDTH 0x1 | ||
597 | #define OMAP4430_DLL_OVERRIDE_MASK (1 << 0) | 728 | #define OMAP4430_DLL_OVERRIDE_MASK (1 << 0) |
598 | 729 | ||
599 | /* Renamed from DLL_OVERRIDE Used by CM_SHADOW_FREQ_CONFIG1 */ | 730 | /* Renamed from DLL_OVERRIDE Used by CM_SHADOW_FREQ_CONFIG1 */ |
600 | #define OMAP4430_DLL_OVERRIDE_2_2_SHIFT 2 | 731 | #define OMAP4430_DLL_OVERRIDE_2_2_SHIFT 2 |
732 | #define OMAP4430_DLL_OVERRIDE_2_2_WIDTH 0x1 | ||
601 | #define OMAP4430_DLL_OVERRIDE_2_2_MASK (1 << 2) | 733 | #define OMAP4430_DLL_OVERRIDE_2_2_MASK (1 << 2) |
602 | 734 | ||
603 | /* Used by CM_SHADOW_FREQ_CONFIG1 */ | 735 | /* Used by CM_SHADOW_FREQ_CONFIG1 */ |
604 | #define OMAP4430_DLL_RESET_SHIFT 3 | 736 | #define OMAP4430_DLL_RESET_SHIFT 3 |
737 | #define OMAP4430_DLL_RESET_WIDTH 0x1 | ||
605 | #define OMAP4430_DLL_RESET_MASK (1 << 3) | 738 | #define OMAP4430_DLL_RESET_MASK (1 << 3) |
606 | 739 | ||
607 | /* | 740 | /* |
@@ -610,30 +743,37 @@ | |||
610 | * CM_CLKSEL_DPLL_UNIPRO, CM_CLKSEL_DPLL_USB | 743 | * CM_CLKSEL_DPLL_UNIPRO, CM_CLKSEL_DPLL_USB |
611 | */ | 744 | */ |
612 | #define OMAP4430_DPLL_BYP_CLKSEL_SHIFT 23 | 745 | #define OMAP4430_DPLL_BYP_CLKSEL_SHIFT 23 |
746 | #define OMAP4430_DPLL_BYP_CLKSEL_WIDTH 0x1 | ||
613 | #define OMAP4430_DPLL_BYP_CLKSEL_MASK (1 << 23) | 747 | #define OMAP4430_DPLL_BYP_CLKSEL_MASK (1 << 23) |
614 | 748 | ||
615 | /* Used by CM_CLKDCOLDO_DPLL_USB */ | 749 | /* Used by CM_CLKDCOLDO_DPLL_USB */ |
616 | #define OMAP4430_DPLL_CLKDCOLDO_GATE_CTRL_SHIFT 8 | 750 | #define OMAP4430_DPLL_CLKDCOLDO_GATE_CTRL_SHIFT 8 |
751 | #define OMAP4430_DPLL_CLKDCOLDO_GATE_CTRL_WIDTH 0x1 | ||
617 | #define OMAP4430_DPLL_CLKDCOLDO_GATE_CTRL_MASK (1 << 8) | 752 | #define OMAP4430_DPLL_CLKDCOLDO_GATE_CTRL_MASK (1 << 8) |
618 | 753 | ||
619 | /* Used by CM_CLKSEL_DPLL_CORE */ | 754 | /* Used by CM_CLKSEL_DPLL_CORE */ |
620 | #define OMAP4430_DPLL_CLKOUTHIF_CLKSEL_SHIFT 20 | 755 | #define OMAP4430_DPLL_CLKOUTHIF_CLKSEL_SHIFT 20 |
756 | #define OMAP4430_DPLL_CLKOUTHIF_CLKSEL_WIDTH 0x1 | ||
621 | #define OMAP4430_DPLL_CLKOUTHIF_CLKSEL_MASK (1 << 20) | 757 | #define OMAP4430_DPLL_CLKOUTHIF_CLKSEL_MASK (1 << 20) |
622 | 758 | ||
623 | /* Used by CM_DIV_M3_DPLL_ABE, CM_DIV_M3_DPLL_CORE, CM_DIV_M3_DPLL_PER */ | 759 | /* Used by CM_DIV_M3_DPLL_ABE, CM_DIV_M3_DPLL_CORE, CM_DIV_M3_DPLL_PER */ |
624 | #define OMAP4430_DPLL_CLKOUTHIF_DIV_SHIFT 0 | 760 | #define OMAP4430_DPLL_CLKOUTHIF_DIV_SHIFT 0 |
761 | #define OMAP4430_DPLL_CLKOUTHIF_DIV_WIDTH 0x5 | ||
625 | #define OMAP4430_DPLL_CLKOUTHIF_DIV_MASK (0x1f << 0) | 762 | #define OMAP4430_DPLL_CLKOUTHIF_DIV_MASK (0x1f << 0) |
626 | 763 | ||
627 | /* Used by CM_DIV_M3_DPLL_ABE, CM_DIV_M3_DPLL_CORE, CM_DIV_M3_DPLL_PER */ | 764 | /* Used by CM_DIV_M3_DPLL_ABE, CM_DIV_M3_DPLL_CORE, CM_DIV_M3_DPLL_PER */ |
628 | #define OMAP4430_DPLL_CLKOUTHIF_DIVCHACK_SHIFT 5 | 765 | #define OMAP4430_DPLL_CLKOUTHIF_DIVCHACK_SHIFT 5 |
766 | #define OMAP4430_DPLL_CLKOUTHIF_DIVCHACK_WIDTH 0x1 | ||
629 | #define OMAP4430_DPLL_CLKOUTHIF_DIVCHACK_MASK (1 << 5) | 767 | #define OMAP4430_DPLL_CLKOUTHIF_DIVCHACK_MASK (1 << 5) |
630 | 768 | ||
631 | /* Used by CM_DIV_M3_DPLL_ABE, CM_DIV_M3_DPLL_CORE, CM_DIV_M3_DPLL_PER */ | 769 | /* Used by CM_DIV_M3_DPLL_ABE, CM_DIV_M3_DPLL_CORE, CM_DIV_M3_DPLL_PER */ |
632 | #define OMAP4430_DPLL_CLKOUTHIF_GATE_CTRL_SHIFT 8 | 770 | #define OMAP4430_DPLL_CLKOUTHIF_GATE_CTRL_SHIFT 8 |
771 | #define OMAP4430_DPLL_CLKOUTHIF_GATE_CTRL_WIDTH 0x1 | ||
633 | #define OMAP4430_DPLL_CLKOUTHIF_GATE_CTRL_MASK (1 << 8) | 772 | #define OMAP4430_DPLL_CLKOUTHIF_GATE_CTRL_MASK (1 << 8) |
634 | 773 | ||
635 | /* Used by CM_DIV_M2_DPLL_ABE, CM_DIV_M2_DPLL_PER, CM_DIV_M2_DPLL_UNIPRO */ | 774 | /* Used by CM_DIV_M2_DPLL_ABE, CM_DIV_M2_DPLL_PER, CM_DIV_M2_DPLL_UNIPRO */ |
636 | #define OMAP4430_DPLL_CLKOUTX2_GATE_CTRL_SHIFT 10 | 775 | #define OMAP4430_DPLL_CLKOUTX2_GATE_CTRL_SHIFT 10 |
776 | #define OMAP4430_DPLL_CLKOUTX2_GATE_CTRL_WIDTH 0x1 | ||
637 | #define OMAP4430_DPLL_CLKOUTX2_GATE_CTRL_MASK (1 << 10) | 777 | #define OMAP4430_DPLL_CLKOUTX2_GATE_CTRL_MASK (1 << 10) |
638 | 778 | ||
639 | /* | 779 | /* |
@@ -641,10 +781,12 @@ | |||
641 | * CM_DIV_M2_DPLL_MPU, CM_DIV_M2_DPLL_PER, CM_DIV_M2_DPLL_UNIPRO | 781 | * CM_DIV_M2_DPLL_MPU, CM_DIV_M2_DPLL_PER, CM_DIV_M2_DPLL_UNIPRO |
642 | */ | 782 | */ |
643 | #define OMAP4430_DPLL_CLKOUT_DIV_SHIFT 0 | 783 | #define OMAP4430_DPLL_CLKOUT_DIV_SHIFT 0 |
784 | #define OMAP4430_DPLL_CLKOUT_DIV_WIDTH 0x5 | ||
644 | #define OMAP4430_DPLL_CLKOUT_DIV_MASK (0x1f << 0) | 785 | #define OMAP4430_DPLL_CLKOUT_DIV_MASK (0x1f << 0) |
645 | 786 | ||
646 | /* Renamed from DPLL_CLKOUT_DIV Used by CM_DIV_M2_DPLL_USB */ | 787 | /* Renamed from DPLL_CLKOUT_DIV Used by CM_DIV_M2_DPLL_USB */ |
647 | #define OMAP4430_DPLL_CLKOUT_DIV_0_6_SHIFT 0 | 788 | #define OMAP4430_DPLL_CLKOUT_DIV_0_6_SHIFT 0 |
789 | #define OMAP4430_DPLL_CLKOUT_DIV_0_6_WIDTH 0x7 | ||
648 | #define OMAP4430_DPLL_CLKOUT_DIV_0_6_MASK (0x7f << 0) | 790 | #define OMAP4430_DPLL_CLKOUT_DIV_0_6_MASK (0x7f << 0) |
649 | 791 | ||
650 | /* | 792 | /* |
@@ -652,10 +794,12 @@ | |||
652 | * CM_DIV_M2_DPLL_MPU, CM_DIV_M2_DPLL_PER, CM_DIV_M2_DPLL_UNIPRO | 794 | * CM_DIV_M2_DPLL_MPU, CM_DIV_M2_DPLL_PER, CM_DIV_M2_DPLL_UNIPRO |
653 | */ | 795 | */ |
654 | #define OMAP4430_DPLL_CLKOUT_DIVCHACK_SHIFT 5 | 796 | #define OMAP4430_DPLL_CLKOUT_DIVCHACK_SHIFT 5 |
797 | #define OMAP4430_DPLL_CLKOUT_DIVCHACK_WIDTH 0x1 | ||
655 | #define OMAP4430_DPLL_CLKOUT_DIVCHACK_MASK (1 << 5) | 798 | #define OMAP4430_DPLL_CLKOUT_DIVCHACK_MASK (1 << 5) |
656 | 799 | ||
657 | /* Renamed from DPLL_CLKOUT_DIVCHACK Used by CM_DIV_M2_DPLL_USB */ | 800 | /* Renamed from DPLL_CLKOUT_DIVCHACK Used by CM_DIV_M2_DPLL_USB */ |
658 | #define OMAP4430_DPLL_CLKOUT_DIVCHACK_M2_USB_SHIFT 7 | 801 | #define OMAP4430_DPLL_CLKOUT_DIVCHACK_M2_USB_SHIFT 7 |
802 | #define OMAP4430_DPLL_CLKOUT_DIVCHACK_M2_USB_WIDTH 0x1 | ||
659 | #define OMAP4430_DPLL_CLKOUT_DIVCHACK_M2_USB_MASK (1 << 7) | 803 | #define OMAP4430_DPLL_CLKOUT_DIVCHACK_M2_USB_MASK (1 << 7) |
660 | 804 | ||
661 | /* | 805 | /* |
@@ -663,18 +807,22 @@ | |||
663 | * CM_DIV_M2_DPLL_MPU, CM_DIV_M2_DPLL_PER, CM_DIV_M2_DPLL_USB | 807 | * CM_DIV_M2_DPLL_MPU, CM_DIV_M2_DPLL_PER, CM_DIV_M2_DPLL_USB |
664 | */ | 808 | */ |
665 | #define OMAP4430_DPLL_CLKOUT_GATE_CTRL_SHIFT 8 | 809 | #define OMAP4430_DPLL_CLKOUT_GATE_CTRL_SHIFT 8 |
810 | #define OMAP4430_DPLL_CLKOUT_GATE_CTRL_WIDTH 0x1 | ||
666 | #define OMAP4430_DPLL_CLKOUT_GATE_CTRL_MASK (1 << 8) | 811 | #define OMAP4430_DPLL_CLKOUT_GATE_CTRL_MASK (1 << 8) |
667 | 812 | ||
668 | /* Used by CM_SHADOW_FREQ_CONFIG1 */ | 813 | /* Used by CM_SHADOW_FREQ_CONFIG1 */ |
669 | #define OMAP4430_DPLL_CORE_DPLL_EN_SHIFT 8 | 814 | #define OMAP4430_DPLL_CORE_DPLL_EN_SHIFT 8 |
815 | #define OMAP4430_DPLL_CORE_DPLL_EN_WIDTH 0x3 | ||
670 | #define OMAP4430_DPLL_CORE_DPLL_EN_MASK (0x7 << 8) | 816 | #define OMAP4430_DPLL_CORE_DPLL_EN_MASK (0x7 << 8) |
671 | 817 | ||
672 | /* Used by CM_SHADOW_FREQ_CONFIG1 */ | 818 | /* Used by CM_SHADOW_FREQ_CONFIG1 */ |
673 | #define OMAP4430_DPLL_CORE_M2_DIV_SHIFT 11 | 819 | #define OMAP4430_DPLL_CORE_M2_DIV_SHIFT 11 |
820 | #define OMAP4430_DPLL_CORE_M2_DIV_WIDTH 0x5 | ||
674 | #define OMAP4430_DPLL_CORE_M2_DIV_MASK (0x1f << 11) | 821 | #define OMAP4430_DPLL_CORE_M2_DIV_MASK (0x1f << 11) |
675 | 822 | ||
676 | /* Used by CM_SHADOW_FREQ_CONFIG2 */ | 823 | /* Used by CM_SHADOW_FREQ_CONFIG2 */ |
677 | #define OMAP4430_DPLL_CORE_M5_DIV_SHIFT 3 | 824 | #define OMAP4430_DPLL_CORE_M5_DIV_SHIFT 3 |
825 | #define OMAP4430_DPLL_CORE_M5_DIV_WIDTH 0x5 | ||
678 | #define OMAP4430_DPLL_CORE_M5_DIV_MASK (0x1f << 3) | 826 | #define OMAP4430_DPLL_CORE_M5_DIV_MASK (0x1f << 3) |
679 | 827 | ||
680 | /* | 828 | /* |
@@ -683,10 +831,12 @@ | |||
683 | * CM_CLKSEL_DPLL_UNIPRO | 831 | * CM_CLKSEL_DPLL_UNIPRO |
684 | */ | 832 | */ |
685 | #define OMAP4430_DPLL_DIV_SHIFT 0 | 833 | #define OMAP4430_DPLL_DIV_SHIFT 0 |
834 | #define OMAP4430_DPLL_DIV_WIDTH 0x7 | ||
686 | #define OMAP4430_DPLL_DIV_MASK (0x7f << 0) | 835 | #define OMAP4430_DPLL_DIV_MASK (0x7f << 0) |
687 | 836 | ||
688 | /* Renamed from DPLL_DIV Used by CM_CLKSEL_DPLL_USB */ | 837 | /* Renamed from DPLL_DIV Used by CM_CLKSEL_DPLL_USB */ |
689 | #define OMAP4430_DPLL_DIV_0_7_SHIFT 0 | 838 | #define OMAP4430_DPLL_DIV_0_7_SHIFT 0 |
839 | #define OMAP4430_DPLL_DIV_0_7_WIDTH 0x8 | ||
690 | #define OMAP4430_DPLL_DIV_0_7_MASK (0xff << 0) | 840 | #define OMAP4430_DPLL_DIV_0_7_MASK (0xff << 0) |
691 | 841 | ||
692 | /* | 842 | /* |
@@ -694,10 +844,12 @@ | |||
694 | * CM_CLKMODE_DPLL_IVA, CM_CLKMODE_DPLL_MPU, CM_CLKMODE_DPLL_PER | 844 | * CM_CLKMODE_DPLL_IVA, CM_CLKMODE_DPLL_MPU, CM_CLKMODE_DPLL_PER |
695 | */ | 845 | */ |
696 | #define OMAP4430_DPLL_DRIFTGUARD_EN_SHIFT 8 | 846 | #define OMAP4430_DPLL_DRIFTGUARD_EN_SHIFT 8 |
847 | #define OMAP4430_DPLL_DRIFTGUARD_EN_WIDTH 0x1 | ||
697 | #define OMAP4430_DPLL_DRIFTGUARD_EN_MASK (1 << 8) | 848 | #define OMAP4430_DPLL_DRIFTGUARD_EN_MASK (1 << 8) |
698 | 849 | ||
699 | /* Renamed from DPLL_DRIFTGUARD_EN Used by CM_CLKMODE_DPLL_UNIPRO */ | 850 | /* Renamed from DPLL_DRIFTGUARD_EN Used by CM_CLKMODE_DPLL_UNIPRO */ |
700 | #define OMAP4430_DPLL_DRIFTGUARD_EN_3_3_SHIFT 3 | 851 | #define OMAP4430_DPLL_DRIFTGUARD_EN_3_3_SHIFT 3 |
852 | #define OMAP4430_DPLL_DRIFTGUARD_EN_3_3_WIDTH 0x1 | ||
701 | #define OMAP4430_DPLL_DRIFTGUARD_EN_3_3_MASK (1 << 3) | 853 | #define OMAP4430_DPLL_DRIFTGUARD_EN_3_3_MASK (1 << 3) |
702 | 854 | ||
703 | /* | 855 | /* |
@@ -706,6 +858,7 @@ | |||
706 | * CM_CLKMODE_DPLL_UNIPRO, CM_CLKMODE_DPLL_USB | 858 | * CM_CLKMODE_DPLL_UNIPRO, CM_CLKMODE_DPLL_USB |
707 | */ | 859 | */ |
708 | #define OMAP4430_DPLL_EN_SHIFT 0 | 860 | #define OMAP4430_DPLL_EN_SHIFT 0 |
861 | #define OMAP4430_DPLL_EN_WIDTH 0x3 | ||
709 | #define OMAP4430_DPLL_EN_MASK (0x7 << 0) | 862 | #define OMAP4430_DPLL_EN_MASK (0x7 << 0) |
710 | 863 | ||
711 | /* | 864 | /* |
@@ -714,6 +867,7 @@ | |||
714 | * CM_CLKMODE_DPLL_UNIPRO | 867 | * CM_CLKMODE_DPLL_UNIPRO |
715 | */ | 868 | */ |
716 | #define OMAP4430_DPLL_LPMODE_EN_SHIFT 10 | 869 | #define OMAP4430_DPLL_LPMODE_EN_SHIFT 10 |
870 | #define OMAP4430_DPLL_LPMODE_EN_WIDTH 0x1 | ||
717 | #define OMAP4430_DPLL_LPMODE_EN_MASK (1 << 10) | 871 | #define OMAP4430_DPLL_LPMODE_EN_MASK (1 << 10) |
718 | 872 | ||
719 | /* | 873 | /* |
@@ -722,10 +876,12 @@ | |||
722 | * CM_CLKSEL_DPLL_UNIPRO | 876 | * CM_CLKSEL_DPLL_UNIPRO |
723 | */ | 877 | */ |
724 | #define OMAP4430_DPLL_MULT_SHIFT 8 | 878 | #define OMAP4430_DPLL_MULT_SHIFT 8 |
879 | #define OMAP4430_DPLL_MULT_WIDTH 0xb | ||
725 | #define OMAP4430_DPLL_MULT_MASK (0x7ff << 8) | 880 | #define OMAP4430_DPLL_MULT_MASK (0x7ff << 8) |
726 | 881 | ||
727 | /* Renamed from DPLL_MULT Used by CM_CLKSEL_DPLL_USB */ | 882 | /* Renamed from DPLL_MULT Used by CM_CLKSEL_DPLL_USB */ |
728 | #define OMAP4430_DPLL_MULT_USB_SHIFT 8 | 883 | #define OMAP4430_DPLL_MULT_USB_SHIFT 8 |
884 | #define OMAP4430_DPLL_MULT_USB_WIDTH 0xc | ||
729 | #define OMAP4430_DPLL_MULT_USB_MASK (0xfff << 8) | 885 | #define OMAP4430_DPLL_MULT_USB_MASK (0xfff << 8) |
730 | 886 | ||
731 | /* | 887 | /* |
@@ -734,10 +890,12 @@ | |||
734 | * CM_CLKMODE_DPLL_UNIPRO | 890 | * CM_CLKMODE_DPLL_UNIPRO |
735 | */ | 891 | */ |
736 | #define OMAP4430_DPLL_REGM4XEN_SHIFT 11 | 892 | #define OMAP4430_DPLL_REGM4XEN_SHIFT 11 |
893 | #define OMAP4430_DPLL_REGM4XEN_WIDTH 0x1 | ||
737 | #define OMAP4430_DPLL_REGM4XEN_MASK (1 << 11) | 894 | #define OMAP4430_DPLL_REGM4XEN_MASK (1 << 11) |
738 | 895 | ||
739 | /* Used by CM_CLKSEL_DPLL_USB */ | 896 | /* Used by CM_CLKSEL_DPLL_USB */ |
740 | #define OMAP4430_DPLL_SD_DIV_SHIFT 24 | 897 | #define OMAP4430_DPLL_SD_DIV_SHIFT 24 |
898 | #define OMAP4430_DPLL_SD_DIV_WIDTH 0x8 | ||
741 | #define OMAP4430_DPLL_SD_DIV_MASK (0xff << 24) | 899 | #define OMAP4430_DPLL_SD_DIV_MASK (0xff << 24) |
742 | 900 | ||
743 | /* | 901 | /* |
@@ -746,6 +904,7 @@ | |||
746 | * CM_CLKMODE_DPLL_UNIPRO, CM_CLKMODE_DPLL_USB | 904 | * CM_CLKMODE_DPLL_UNIPRO, CM_CLKMODE_DPLL_USB |
747 | */ | 905 | */ |
748 | #define OMAP4430_DPLL_SSC_ACK_SHIFT 13 | 906 | #define OMAP4430_DPLL_SSC_ACK_SHIFT 13 |
907 | #define OMAP4430_DPLL_SSC_ACK_WIDTH 0x1 | ||
749 | #define OMAP4430_DPLL_SSC_ACK_MASK (1 << 13) | 908 | #define OMAP4430_DPLL_SSC_ACK_MASK (1 << 13) |
750 | 909 | ||
751 | /* | 910 | /* |
@@ -754,6 +913,7 @@ | |||
754 | * CM_CLKMODE_DPLL_UNIPRO, CM_CLKMODE_DPLL_USB | 913 | * CM_CLKMODE_DPLL_UNIPRO, CM_CLKMODE_DPLL_USB |
755 | */ | 914 | */ |
756 | #define OMAP4430_DPLL_SSC_DOWNSPREAD_SHIFT 14 | 915 | #define OMAP4430_DPLL_SSC_DOWNSPREAD_SHIFT 14 |
916 | #define OMAP4430_DPLL_SSC_DOWNSPREAD_WIDTH 0x1 | ||
757 | #define OMAP4430_DPLL_SSC_DOWNSPREAD_MASK (1 << 14) | 917 | #define OMAP4430_DPLL_SSC_DOWNSPREAD_MASK (1 << 14) |
758 | 918 | ||
759 | /* | 919 | /* |
@@ -762,42 +922,52 @@ | |||
762 | * CM_CLKMODE_DPLL_UNIPRO, CM_CLKMODE_DPLL_USB | 922 | * CM_CLKMODE_DPLL_UNIPRO, CM_CLKMODE_DPLL_USB |
763 | */ | 923 | */ |
764 | #define OMAP4430_DPLL_SSC_EN_SHIFT 12 | 924 | #define OMAP4430_DPLL_SSC_EN_SHIFT 12 |
925 | #define OMAP4430_DPLL_SSC_EN_WIDTH 0x1 | ||
765 | #define OMAP4430_DPLL_SSC_EN_MASK (1 << 12) | 926 | #define OMAP4430_DPLL_SSC_EN_MASK (1 << 12) |
766 | 927 | ||
767 | /* Used by CM_L3_2_DYNAMICDEP, CM_L4CFG_DYNAMICDEP, CM_L4PER_DYNAMICDEP */ | 928 | /* Used by CM_L3_2_DYNAMICDEP, CM_L4CFG_DYNAMICDEP, CM_L4PER_DYNAMICDEP */ |
768 | #define OMAP4430_DSS_DYNDEP_SHIFT 8 | 929 | #define OMAP4430_DSS_DYNDEP_SHIFT 8 |
930 | #define OMAP4430_DSS_DYNDEP_WIDTH 0x1 | ||
769 | #define OMAP4430_DSS_DYNDEP_MASK (1 << 8) | 931 | #define OMAP4430_DSS_DYNDEP_MASK (1 << 8) |
770 | 932 | ||
771 | /* Used by CM_DUCATI_STATICDEP, CM_MPU_STATICDEP, CM_SDMA_STATICDEP */ | 933 | /* Used by CM_DUCATI_STATICDEP, CM_MPU_STATICDEP, CM_SDMA_STATICDEP */ |
772 | #define OMAP4430_DSS_STATDEP_SHIFT 8 | 934 | #define OMAP4430_DSS_STATDEP_SHIFT 8 |
935 | #define OMAP4430_DSS_STATDEP_WIDTH 0x1 | ||
773 | #define OMAP4430_DSS_STATDEP_MASK (1 << 8) | 936 | #define OMAP4430_DSS_STATDEP_MASK (1 << 8) |
774 | 937 | ||
775 | /* Used by CM_L3_2_DYNAMICDEP */ | 938 | /* Used by CM_L3_2_DYNAMICDEP */ |
776 | #define OMAP4430_DUCATI_DYNDEP_SHIFT 0 | 939 | #define OMAP4430_DUCATI_DYNDEP_SHIFT 0 |
940 | #define OMAP4430_DUCATI_DYNDEP_WIDTH 0x1 | ||
777 | #define OMAP4430_DUCATI_DYNDEP_MASK (1 << 0) | 941 | #define OMAP4430_DUCATI_DYNDEP_MASK (1 << 0) |
778 | 942 | ||
779 | /* Used by CM_MPU_STATICDEP, CM_SDMA_STATICDEP */ | 943 | /* Used by CM_MPU_STATICDEP, CM_SDMA_STATICDEP */ |
780 | #define OMAP4430_DUCATI_STATDEP_SHIFT 0 | 944 | #define OMAP4430_DUCATI_STATDEP_SHIFT 0 |
945 | #define OMAP4430_DUCATI_STATDEP_WIDTH 0x1 | ||
781 | #define OMAP4430_DUCATI_STATDEP_MASK (1 << 0) | 946 | #define OMAP4430_DUCATI_STATDEP_MASK (1 << 0) |
782 | 947 | ||
783 | /* Used by CM_SHADOW_FREQ_CONFIG1 */ | 948 | /* Used by CM_SHADOW_FREQ_CONFIG1 */ |
784 | #define OMAP4430_FREQ_UPDATE_SHIFT 0 | 949 | #define OMAP4430_FREQ_UPDATE_SHIFT 0 |
950 | #define OMAP4430_FREQ_UPDATE_WIDTH 0x1 | ||
785 | #define OMAP4430_FREQ_UPDATE_MASK (1 << 0) | 951 | #define OMAP4430_FREQ_UPDATE_MASK (1 << 0) |
786 | 952 | ||
787 | /* Used by REVISION_CM1, REVISION_CM2 */ | 953 | /* Used by REVISION_CM1, REVISION_CM2 */ |
788 | #define OMAP4430_FUNC_SHIFT 16 | 954 | #define OMAP4430_FUNC_SHIFT 16 |
955 | #define OMAP4430_FUNC_WIDTH 0xc | ||
789 | #define OMAP4430_FUNC_MASK (0xfff << 16) | 956 | #define OMAP4430_FUNC_MASK (0xfff << 16) |
790 | 957 | ||
791 | /* Used by CM_L3_2_DYNAMICDEP */ | 958 | /* Used by CM_L3_2_DYNAMICDEP */ |
792 | #define OMAP4430_GFX_DYNDEP_SHIFT 10 | 959 | #define OMAP4430_GFX_DYNDEP_SHIFT 10 |
960 | #define OMAP4430_GFX_DYNDEP_WIDTH 0x1 | ||
793 | #define OMAP4430_GFX_DYNDEP_MASK (1 << 10) | 961 | #define OMAP4430_GFX_DYNDEP_MASK (1 << 10) |
794 | 962 | ||
795 | /* Used by CM_DUCATI_STATICDEP, CM_MPU_STATICDEP */ | 963 | /* Used by CM_DUCATI_STATICDEP, CM_MPU_STATICDEP */ |
796 | #define OMAP4430_GFX_STATDEP_SHIFT 10 | 964 | #define OMAP4430_GFX_STATDEP_SHIFT 10 |
965 | #define OMAP4430_GFX_STATDEP_WIDTH 0x1 | ||
797 | #define OMAP4430_GFX_STATDEP_MASK (1 << 10) | 966 | #define OMAP4430_GFX_STATDEP_MASK (1 << 10) |
798 | 967 | ||
799 | /* Used by CM_SHADOW_FREQ_CONFIG2 */ | 968 | /* Used by CM_SHADOW_FREQ_CONFIG2 */ |
800 | #define OMAP4430_GPMC_FREQ_UPDATE_SHIFT 0 | 969 | #define OMAP4430_GPMC_FREQ_UPDATE_SHIFT 0 |
970 | #define OMAP4430_GPMC_FREQ_UPDATE_WIDTH 0x1 | ||
801 | #define OMAP4430_GPMC_FREQ_UPDATE_MASK (1 << 0) | 971 | #define OMAP4430_GPMC_FREQ_UPDATE_MASK (1 << 0) |
802 | 972 | ||
803 | /* | 973 | /* |
@@ -805,6 +975,7 @@ | |||
805 | * CM_DIV_M4_DPLL_PER | 975 | * CM_DIV_M4_DPLL_PER |
806 | */ | 976 | */ |
807 | #define OMAP4430_HSDIVIDER_CLKOUT1_DIV_SHIFT 0 | 977 | #define OMAP4430_HSDIVIDER_CLKOUT1_DIV_SHIFT 0 |
978 | #define OMAP4430_HSDIVIDER_CLKOUT1_DIV_WIDTH 0x5 | ||
808 | #define OMAP4430_HSDIVIDER_CLKOUT1_DIV_MASK (0x1f << 0) | 979 | #define OMAP4430_HSDIVIDER_CLKOUT1_DIV_MASK (0x1f << 0) |
809 | 980 | ||
810 | /* | 981 | /* |
@@ -812,6 +983,7 @@ | |||
812 | * CM_DIV_M4_DPLL_PER | 983 | * CM_DIV_M4_DPLL_PER |
813 | */ | 984 | */ |
814 | #define OMAP4430_HSDIVIDER_CLKOUT1_DIVCHACK_SHIFT 5 | 985 | #define OMAP4430_HSDIVIDER_CLKOUT1_DIVCHACK_SHIFT 5 |
986 | #define OMAP4430_HSDIVIDER_CLKOUT1_DIVCHACK_WIDTH 0x1 | ||
815 | #define OMAP4430_HSDIVIDER_CLKOUT1_DIVCHACK_MASK (1 << 5) | 987 | #define OMAP4430_HSDIVIDER_CLKOUT1_DIVCHACK_MASK (1 << 5) |
816 | 988 | ||
817 | /* | 989 | /* |
@@ -819,6 +991,7 @@ | |||
819 | * CM_DIV_M4_DPLL_PER | 991 | * CM_DIV_M4_DPLL_PER |
820 | */ | 992 | */ |
821 | #define OMAP4430_HSDIVIDER_CLKOUT1_GATE_CTRL_SHIFT 8 | 993 | #define OMAP4430_HSDIVIDER_CLKOUT1_GATE_CTRL_SHIFT 8 |
994 | #define OMAP4430_HSDIVIDER_CLKOUT1_GATE_CTRL_WIDTH 0x1 | ||
822 | #define OMAP4430_HSDIVIDER_CLKOUT1_GATE_CTRL_MASK (1 << 8) | 995 | #define OMAP4430_HSDIVIDER_CLKOUT1_GATE_CTRL_MASK (1 << 8) |
823 | 996 | ||
824 | /* | 997 | /* |
@@ -826,6 +999,7 @@ | |||
826 | * CM_DIV_M4_DPLL_PER | 999 | * CM_DIV_M4_DPLL_PER |
827 | */ | 1000 | */ |
828 | #define OMAP4430_HSDIVIDER_CLKOUT1_PWDN_SHIFT 12 | 1001 | #define OMAP4430_HSDIVIDER_CLKOUT1_PWDN_SHIFT 12 |
1002 | #define OMAP4430_HSDIVIDER_CLKOUT1_PWDN_WIDTH 0x1 | ||
829 | #define OMAP4430_HSDIVIDER_CLKOUT1_PWDN_MASK (1 << 12) | 1003 | #define OMAP4430_HSDIVIDER_CLKOUT1_PWDN_MASK (1 << 12) |
830 | 1004 | ||
831 | /* | 1005 | /* |
@@ -833,6 +1007,7 @@ | |||
833 | * CM_DIV_M5_DPLL_PER | 1007 | * CM_DIV_M5_DPLL_PER |
834 | */ | 1008 | */ |
835 | #define OMAP4430_HSDIVIDER_CLKOUT2_DIV_SHIFT 0 | 1009 | #define OMAP4430_HSDIVIDER_CLKOUT2_DIV_SHIFT 0 |
1010 | #define OMAP4430_HSDIVIDER_CLKOUT2_DIV_WIDTH 0x5 | ||
836 | #define OMAP4430_HSDIVIDER_CLKOUT2_DIV_MASK (0x1f << 0) | 1011 | #define OMAP4430_HSDIVIDER_CLKOUT2_DIV_MASK (0x1f << 0) |
837 | 1012 | ||
838 | /* | 1013 | /* |
@@ -840,6 +1015,7 @@ | |||
840 | * CM_DIV_M5_DPLL_PER | 1015 | * CM_DIV_M5_DPLL_PER |
841 | */ | 1016 | */ |
842 | #define OMAP4430_HSDIVIDER_CLKOUT2_DIVCHACK_SHIFT 5 | 1017 | #define OMAP4430_HSDIVIDER_CLKOUT2_DIVCHACK_SHIFT 5 |
1018 | #define OMAP4430_HSDIVIDER_CLKOUT2_DIVCHACK_WIDTH 0x1 | ||
843 | #define OMAP4430_HSDIVIDER_CLKOUT2_DIVCHACK_MASK (1 << 5) | 1019 | #define OMAP4430_HSDIVIDER_CLKOUT2_DIVCHACK_MASK (1 << 5) |
844 | 1020 | ||
845 | /* | 1021 | /* |
@@ -847,6 +1023,7 @@ | |||
847 | * CM_DIV_M5_DPLL_PER | 1023 | * CM_DIV_M5_DPLL_PER |
848 | */ | 1024 | */ |
849 | #define OMAP4430_HSDIVIDER_CLKOUT2_GATE_CTRL_SHIFT 8 | 1025 | #define OMAP4430_HSDIVIDER_CLKOUT2_GATE_CTRL_SHIFT 8 |
1026 | #define OMAP4430_HSDIVIDER_CLKOUT2_GATE_CTRL_WIDTH 0x1 | ||
850 | #define OMAP4430_HSDIVIDER_CLKOUT2_GATE_CTRL_MASK (1 << 8) | 1027 | #define OMAP4430_HSDIVIDER_CLKOUT2_GATE_CTRL_MASK (1 << 8) |
851 | 1028 | ||
852 | /* | 1029 | /* |
@@ -854,38 +1031,47 @@ | |||
854 | * CM_DIV_M5_DPLL_PER | 1031 | * CM_DIV_M5_DPLL_PER |
855 | */ | 1032 | */ |
856 | #define OMAP4430_HSDIVIDER_CLKOUT2_PWDN_SHIFT 12 | 1033 | #define OMAP4430_HSDIVIDER_CLKOUT2_PWDN_SHIFT 12 |
1034 | #define OMAP4430_HSDIVIDER_CLKOUT2_PWDN_WIDTH 0x1 | ||
857 | #define OMAP4430_HSDIVIDER_CLKOUT2_PWDN_MASK (1 << 12) | 1035 | #define OMAP4430_HSDIVIDER_CLKOUT2_PWDN_MASK (1 << 12) |
858 | 1036 | ||
859 | /* Used by CM_DIV_M6_DPLL_CORE, CM_DIV_M6_DPLL_DDRPHY, CM_DIV_M6_DPLL_PER */ | 1037 | /* Used by CM_DIV_M6_DPLL_CORE, CM_DIV_M6_DPLL_DDRPHY, CM_DIV_M6_DPLL_PER */ |
860 | #define OMAP4430_HSDIVIDER_CLKOUT3_DIV_SHIFT 0 | 1038 | #define OMAP4430_HSDIVIDER_CLKOUT3_DIV_SHIFT 0 |
1039 | #define OMAP4430_HSDIVIDER_CLKOUT3_DIV_WIDTH 0x5 | ||
861 | #define OMAP4430_HSDIVIDER_CLKOUT3_DIV_MASK (0x1f << 0) | 1040 | #define OMAP4430_HSDIVIDER_CLKOUT3_DIV_MASK (0x1f << 0) |
862 | 1041 | ||
863 | /* Used by CM_DIV_M6_DPLL_CORE, CM_DIV_M6_DPLL_DDRPHY, CM_DIV_M6_DPLL_PER */ | 1042 | /* Used by CM_DIV_M6_DPLL_CORE, CM_DIV_M6_DPLL_DDRPHY, CM_DIV_M6_DPLL_PER */ |
864 | #define OMAP4430_HSDIVIDER_CLKOUT3_DIVCHACK_SHIFT 5 | 1043 | #define OMAP4430_HSDIVIDER_CLKOUT3_DIVCHACK_SHIFT 5 |
1044 | #define OMAP4430_HSDIVIDER_CLKOUT3_DIVCHACK_WIDTH 0x1 | ||
865 | #define OMAP4430_HSDIVIDER_CLKOUT3_DIVCHACK_MASK (1 << 5) | 1045 | #define OMAP4430_HSDIVIDER_CLKOUT3_DIVCHACK_MASK (1 << 5) |
866 | 1046 | ||
867 | /* Used by CM_DIV_M6_DPLL_CORE, CM_DIV_M6_DPLL_DDRPHY, CM_DIV_M6_DPLL_PER */ | 1047 | /* Used by CM_DIV_M6_DPLL_CORE, CM_DIV_M6_DPLL_DDRPHY, CM_DIV_M6_DPLL_PER */ |
868 | #define OMAP4430_HSDIVIDER_CLKOUT3_GATE_CTRL_SHIFT 8 | 1048 | #define OMAP4430_HSDIVIDER_CLKOUT3_GATE_CTRL_SHIFT 8 |
1049 | #define OMAP4430_HSDIVIDER_CLKOUT3_GATE_CTRL_WIDTH 0x1 | ||
869 | #define OMAP4430_HSDIVIDER_CLKOUT3_GATE_CTRL_MASK (1 << 8) | 1050 | #define OMAP4430_HSDIVIDER_CLKOUT3_GATE_CTRL_MASK (1 << 8) |
870 | 1051 | ||
871 | /* Used by CM_DIV_M6_DPLL_CORE, CM_DIV_M6_DPLL_DDRPHY, CM_DIV_M6_DPLL_PER */ | 1052 | /* Used by CM_DIV_M6_DPLL_CORE, CM_DIV_M6_DPLL_DDRPHY, CM_DIV_M6_DPLL_PER */ |
872 | #define OMAP4430_HSDIVIDER_CLKOUT3_PWDN_SHIFT 12 | 1053 | #define OMAP4430_HSDIVIDER_CLKOUT3_PWDN_SHIFT 12 |
1054 | #define OMAP4430_HSDIVIDER_CLKOUT3_PWDN_WIDTH 0x1 | ||
873 | #define OMAP4430_HSDIVIDER_CLKOUT3_PWDN_MASK (1 << 12) | 1055 | #define OMAP4430_HSDIVIDER_CLKOUT3_PWDN_MASK (1 << 12) |
874 | 1056 | ||
875 | /* Used by CM_DIV_M7_DPLL_CORE, CM_DIV_M7_DPLL_PER */ | 1057 | /* Used by CM_DIV_M7_DPLL_CORE, CM_DIV_M7_DPLL_PER */ |
876 | #define OMAP4430_HSDIVIDER_CLKOUT4_DIV_SHIFT 0 | 1058 | #define OMAP4430_HSDIVIDER_CLKOUT4_DIV_SHIFT 0 |
1059 | #define OMAP4430_HSDIVIDER_CLKOUT4_DIV_WIDTH 0x5 | ||
877 | #define OMAP4430_HSDIVIDER_CLKOUT4_DIV_MASK (0x1f << 0) | 1060 | #define OMAP4430_HSDIVIDER_CLKOUT4_DIV_MASK (0x1f << 0) |
878 | 1061 | ||
879 | /* Used by CM_DIV_M7_DPLL_CORE, CM_DIV_M7_DPLL_PER */ | 1062 | /* Used by CM_DIV_M7_DPLL_CORE, CM_DIV_M7_DPLL_PER */ |
880 | #define OMAP4430_HSDIVIDER_CLKOUT4_DIVCHACK_SHIFT 5 | 1063 | #define OMAP4430_HSDIVIDER_CLKOUT4_DIVCHACK_SHIFT 5 |
1064 | #define OMAP4430_HSDIVIDER_CLKOUT4_DIVCHACK_WIDTH 0x1 | ||
881 | #define OMAP4430_HSDIVIDER_CLKOUT4_DIVCHACK_MASK (1 << 5) | 1065 | #define OMAP4430_HSDIVIDER_CLKOUT4_DIVCHACK_MASK (1 << 5) |
882 | 1066 | ||
883 | /* Used by CM_DIV_M7_DPLL_CORE, CM_DIV_M7_DPLL_PER */ | 1067 | /* Used by CM_DIV_M7_DPLL_CORE, CM_DIV_M7_DPLL_PER */ |
884 | #define OMAP4430_HSDIVIDER_CLKOUT4_GATE_CTRL_SHIFT 8 | 1068 | #define OMAP4430_HSDIVIDER_CLKOUT4_GATE_CTRL_SHIFT 8 |
1069 | #define OMAP4430_HSDIVIDER_CLKOUT4_GATE_CTRL_WIDTH 0x1 | ||
885 | #define OMAP4430_HSDIVIDER_CLKOUT4_GATE_CTRL_MASK (1 << 8) | 1070 | #define OMAP4430_HSDIVIDER_CLKOUT4_GATE_CTRL_MASK (1 << 8) |
886 | 1071 | ||
887 | /* Used by CM_DIV_M7_DPLL_CORE, CM_DIV_M7_DPLL_PER */ | 1072 | /* Used by CM_DIV_M7_DPLL_CORE, CM_DIV_M7_DPLL_PER */ |
888 | #define OMAP4430_HSDIVIDER_CLKOUT4_PWDN_SHIFT 12 | 1073 | #define OMAP4430_HSDIVIDER_CLKOUT4_PWDN_SHIFT 12 |
1074 | #define OMAP4430_HSDIVIDER_CLKOUT4_PWDN_WIDTH 0x1 | ||
889 | #define OMAP4430_HSDIVIDER_CLKOUT4_PWDN_MASK (1 << 12) | 1075 | #define OMAP4430_HSDIVIDER_CLKOUT4_PWDN_MASK (1 << 12) |
890 | 1076 | ||
891 | /* | 1077 | /* |
@@ -893,53 +1079,48 @@ | |||
893 | * CM1_ABE_MCASP_CLKCTRL, CM1_ABE_MCBSP1_CLKCTRL, CM1_ABE_MCBSP2_CLKCTRL, | 1079 | * CM1_ABE_MCASP_CLKCTRL, CM1_ABE_MCBSP1_CLKCTRL, CM1_ABE_MCBSP2_CLKCTRL, |
894 | * CM1_ABE_MCBSP3_CLKCTRL, CM1_ABE_PDM_CLKCTRL, CM1_ABE_SLIMBUS_CLKCTRL, | 1080 | * CM1_ABE_MCBSP3_CLKCTRL, CM1_ABE_PDM_CLKCTRL, CM1_ABE_SLIMBUS_CLKCTRL, |
895 | * CM1_ABE_TIMER5_CLKCTRL, CM1_ABE_TIMER6_CLKCTRL, CM1_ABE_TIMER7_CLKCTRL, | 1081 | * CM1_ABE_TIMER5_CLKCTRL, CM1_ABE_TIMER6_CLKCTRL, CM1_ABE_TIMER7_CLKCTRL, |
896 | * CM1_ABE_TIMER8_CLKCTRL, CM1_ABE_WDT3_CLKCTRL, CM_ALWON_MDMINTC_CLKCTRL, | 1082 | * CM1_ABE_TIMER8_CLKCTRL, CM1_ABE_WDT3_CLKCTRL, CM_ALWON_SR_CORE_CLKCTRL, |
897 | * CM_ALWON_SR_CORE_CLKCTRL, CM_ALWON_SR_IVA_CLKCTRL, CM_ALWON_SR_MPU_CLKCTRL, | 1083 | * CM_ALWON_SR_IVA_CLKCTRL, CM_ALWON_SR_MPU_CLKCTRL, CM_CAM_FDIF_CLKCTRL, |
898 | * CM_CAM_FDIF_CLKCTRL, CM_CAM_ISS_CLKCTRL, CM_CEFUSE_CEFUSE_CLKCTRL, | 1084 | * CM_CAM_ISS_CLKCTRL, CM_CEFUSE_CEFUSE_CLKCTRL, CM_CM1_PROFILING_CLKCTRL, |
899 | * CM_CM1_PROFILING_CLKCTRL, CM_CM2_PROFILING_CLKCTRL, | 1085 | * CM_CM2_PROFILING_CLKCTRL, CM_D2D_MODEM_ICR_CLKCTRL, CM_D2D_SAD2D_CLKCTRL, |
900 | * CM_D2D_MODEM_ICR_CLKCTRL, CM_D2D_SAD2D_CLKCTRL, CM_D2D_SAD2D_FW_CLKCTRL, | 1086 | * CM_D2D_SAD2D_FW_CLKCTRL, CM_DSS_DSS_CLKCTRL, CM_DUCATI_DUCATI_CLKCTRL, |
901 | * CM_DSS_DEISS_CLKCTRL, CM_DSS_DSS_CLKCTRL, CM_DUCATI_DUCATI_CLKCTRL, | ||
902 | * CM_EMU_DEBUGSS_CLKCTRL, CM_GFX_GFX_CLKCTRL, CM_IVAHD_IVAHD_CLKCTRL, | 1087 | * CM_EMU_DEBUGSS_CLKCTRL, CM_GFX_GFX_CLKCTRL, CM_IVAHD_IVAHD_CLKCTRL, |
903 | * CM_IVAHD_SL2_CLKCTRL, CM_L3INIT_CCPTX_CLKCTRL, CM_L3INIT_EMAC_CLKCTRL, | 1088 | * CM_IVAHD_SL2_CLKCTRL, CM_L3INIT_HSI_CLKCTRL, CM_L3INIT_MMC1_CLKCTRL, |
904 | * CM_L3INIT_HSI_CLKCTRL, CM_L3INIT_MMC1_CLKCTRL, CM_L3INIT_MMC2_CLKCTRL, | 1089 | * CM_L3INIT_MMC2_CLKCTRL, CM_L3INIT_USBPHYOCP2SCP_CLKCTRL, |
905 | * CM_L3INIT_MMC6_CLKCTRL, CM_L3INIT_P1500_CLKCTRL, CM_L3INIT_PCIESS_CLKCTRL, | 1090 | * CM_L3INIT_USB_HOST_CLKCTRL, CM_L3INIT_USB_HOST_FS_CLKCTRL, |
906 | * CM_L3INIT_SATA_CLKCTRL, CM_L3INIT_TPPSS_CLKCTRL, CM_L3INIT_UNIPRO1_CLKCTRL, | 1091 | * CM_L3INIT_USB_OTG_CLKCTRL, CM_L3INIT_USB_TLL_CLKCTRL, |
907 | * CM_L3INIT_USBPHYOCP2SCP_CLKCTRL, CM_L3INIT_USB_HOST_CLKCTRL, | 1092 | * CM_L3INSTR_L3_3_CLKCTRL, CM_L3INSTR_L3_INSTR_CLKCTRL, |
908 | * CM_L3INIT_USB_HOST_FS_CLKCTRL, CM_L3INIT_USB_OTG_CLKCTRL, | 1093 | * CM_L3INSTR_OCP_WP1_CLKCTRL, CM_L3_1_L3_1_CLKCTRL, CM_L3_2_GPMC_CLKCTRL, |
909 | * CM_L3INIT_USB_TLL_CLKCTRL, CM_L3INIT_XHPI_CLKCTRL, CM_L3INSTR_L3_3_CLKCTRL, | 1094 | * CM_L3_2_L3_2_CLKCTRL, CM_L3_2_OCMC_RAM_CLKCTRL, CM_L4CFG_HW_SEM_CLKCTRL, |
910 | * CM_L3INSTR_L3_INSTR_CLKCTRL, CM_L3INSTR_OCP_WP1_CLKCTRL, | 1095 | * CM_L4CFG_L4_CFG_CLKCTRL, CM_L4CFG_MAILBOX_CLKCTRL, CM_L4CFG_SAR_ROM_CLKCTRL, |
911 | * CM_L3_1_L3_1_CLKCTRL, CM_L3_2_GPMC_CLKCTRL, CM_L3_2_L3_2_CLKCTRL, | ||
912 | * CM_L3_2_OCMC_RAM_CLKCTRL, CM_L4CFG_HW_SEM_CLKCTRL, CM_L4CFG_L4_CFG_CLKCTRL, | ||
913 | * CM_L4CFG_MAILBOX_CLKCTRL, CM_L4CFG_SAR_ROM_CLKCTRL, CM_L4PER_ADC_CLKCTRL, | ||
914 | * CM_L4PER_DMTIMER10_CLKCTRL, CM_L4PER_DMTIMER11_CLKCTRL, | 1096 | * CM_L4PER_DMTIMER10_CLKCTRL, CM_L4PER_DMTIMER11_CLKCTRL, |
915 | * CM_L4PER_DMTIMER2_CLKCTRL, CM_L4PER_DMTIMER3_CLKCTRL, | 1097 | * CM_L4PER_DMTIMER2_CLKCTRL, CM_L4PER_DMTIMER3_CLKCTRL, |
916 | * CM_L4PER_DMTIMER4_CLKCTRL, CM_L4PER_DMTIMER9_CLKCTRL, CM_L4PER_ELM_CLKCTRL, | 1098 | * CM_L4PER_DMTIMER4_CLKCTRL, CM_L4PER_DMTIMER9_CLKCTRL, CM_L4PER_ELM_CLKCTRL, |
917 | * CM_L4PER_GPIO2_CLKCTRL, CM_L4PER_GPIO3_CLKCTRL, CM_L4PER_GPIO4_CLKCTRL, | 1099 | * CM_L4PER_GPIO2_CLKCTRL, CM_L4PER_GPIO3_CLKCTRL, CM_L4PER_GPIO4_CLKCTRL, |
918 | * CM_L4PER_GPIO5_CLKCTRL, CM_L4PER_GPIO6_CLKCTRL, CM_L4PER_HDQ1W_CLKCTRL, | 1100 | * CM_L4PER_GPIO5_CLKCTRL, CM_L4PER_GPIO6_CLKCTRL, CM_L4PER_HDQ1W_CLKCTRL, |
919 | * CM_L4PER_HECC1_CLKCTRL, CM_L4PER_HECC2_CLKCTRL, CM_L4PER_I2C1_CLKCTRL, | 1101 | * CM_L4PER_I2C1_CLKCTRL, CM_L4PER_I2C2_CLKCTRL, CM_L4PER_I2C3_CLKCTRL, |
920 | * CM_L4PER_I2C2_CLKCTRL, CM_L4PER_I2C3_CLKCTRL, CM_L4PER_I2C4_CLKCTRL, | 1102 | * CM_L4PER_I2C4_CLKCTRL, CM_L4PER_I2C5_CLKCTRL, CM_L4PER_L4PER_CLKCTRL, |
921 | * CM_L4PER_I2C5_CLKCTRL, CM_L4PER_L4PER_CLKCTRL, CM_L4PER_MCASP2_CLKCTRL, | 1103 | * CM_L4PER_MCBSP4_CLKCTRL, CM_L4PER_MCSPI1_CLKCTRL, CM_L4PER_MCSPI2_CLKCTRL, |
922 | * CM_L4PER_MCASP3_CLKCTRL, CM_L4PER_MCBSP4_CLKCTRL, CM_L4PER_MCSPI1_CLKCTRL, | 1104 | * CM_L4PER_MCSPI3_CLKCTRL, CM_L4PER_MCSPI4_CLKCTRL, CM_L4PER_MMCSD3_CLKCTRL, |
923 | * CM_L4PER_MCSPI2_CLKCTRL, CM_L4PER_MCSPI3_CLKCTRL, CM_L4PER_MCSPI4_CLKCTRL, | 1105 | * CM_L4PER_MMCSD4_CLKCTRL, CM_L4PER_MMCSD5_CLKCTRL, CM_L4PER_SLIMBUS2_CLKCTRL, |
924 | * CM_L4PER_MGATE_CLKCTRL, CM_L4PER_MMCSD3_CLKCTRL, CM_L4PER_MMCSD4_CLKCTRL, | 1106 | * CM_L4PER_UART1_CLKCTRL, CM_L4PER_UART2_CLKCTRL, CM_L4PER_UART3_CLKCTRL, |
925 | * CM_L4PER_MMCSD5_CLKCTRL, CM_L4PER_MSPROHG_CLKCTRL, | 1107 | * CM_L4PER_UART4_CLKCTRL, CM_L4SEC_AES1_CLKCTRL, CM_L4SEC_AES2_CLKCTRL, |
926 | * CM_L4PER_SLIMBUS2_CLKCTRL, CM_L4PER_UART1_CLKCTRL, CM_L4PER_UART2_CLKCTRL, | 1108 | * CM_L4SEC_CRYPTODMA_CLKCTRL, CM_L4SEC_DES3DES_CLKCTRL, |
927 | * CM_L4PER_UART3_CLKCTRL, CM_L4PER_UART4_CLKCTRL, CM_L4SEC_AES1_CLKCTRL, | ||
928 | * CM_L4SEC_AES2_CLKCTRL, CM_L4SEC_CRYPTODMA_CLKCTRL, CM_L4SEC_DES3DES_CLKCTRL, | ||
929 | * CM_L4SEC_PKAEIP29_CLKCTRL, CM_L4SEC_RNG_CLKCTRL, CM_L4SEC_SHA2MD51_CLKCTRL, | 1109 | * CM_L4SEC_PKAEIP29_CLKCTRL, CM_L4SEC_RNG_CLKCTRL, CM_L4SEC_SHA2MD51_CLKCTRL, |
930 | * CM_MEMIF_DMM_CLKCTRL, CM_MEMIF_EMIF_1_CLKCTRL, CM_MEMIF_EMIF_2_CLKCTRL, | 1110 | * CM_MEMIF_DMM_CLKCTRL, CM_MEMIF_EMIF_1_CLKCTRL, CM_MEMIF_EMIF_2_CLKCTRL, |
931 | * CM_MEMIF_EMIF_FW_CLKCTRL, CM_MEMIF_EMIF_H1_CLKCTRL, | 1111 | * CM_MEMIF_EMIF_FW_CLKCTRL, CM_MPU_MPU_CLKCTRL, CM_SDMA_SDMA_CLKCTRL, |
932 | * CM_MEMIF_EMIF_H2_CLKCTRL, CM_MPU_MPU_CLKCTRL, CM_SDMA_SDMA_CLKCTRL, | ||
933 | * CM_TESLA_TESLA_CLKCTRL, CM_WKUP_GPIO1_CLKCTRL, CM_WKUP_KEYBOARD_CLKCTRL, | 1112 | * CM_TESLA_TESLA_CLKCTRL, CM_WKUP_GPIO1_CLKCTRL, CM_WKUP_KEYBOARD_CLKCTRL, |
934 | * CM_WKUP_L4WKUP_CLKCTRL, CM_WKUP_RTC_CLKCTRL, CM_WKUP_SARRAM_CLKCTRL, | 1113 | * CM_WKUP_L4WKUP_CLKCTRL, CM_WKUP_SARRAM_CLKCTRL, CM_WKUP_SYNCTIMER_CLKCTRL, |
935 | * CM_WKUP_SYNCTIMER_CLKCTRL, CM_WKUP_TIMER12_CLKCTRL, CM_WKUP_TIMER1_CLKCTRL, | 1114 | * CM_WKUP_TIMER12_CLKCTRL, CM_WKUP_TIMER1_CLKCTRL, CM_WKUP_USIM_CLKCTRL, |
936 | * CM_WKUP_USIM_CLKCTRL, CM_WKUP_WDT1_CLKCTRL, CM_WKUP_WDT2_CLKCTRL | 1115 | * CM_WKUP_WDT1_CLKCTRL, CM_WKUP_WDT2_CLKCTRL |
937 | */ | 1116 | */ |
938 | #define OMAP4430_IDLEST_SHIFT 16 | 1117 | #define OMAP4430_IDLEST_SHIFT 16 |
1118 | #define OMAP4430_IDLEST_WIDTH 0x2 | ||
939 | #define OMAP4430_IDLEST_MASK (0x3 << 16) | 1119 | #define OMAP4430_IDLEST_MASK (0x3 << 16) |
940 | 1120 | ||
941 | /* Used by CM_DUCATI_DYNAMICDEP, CM_L3_2_DYNAMICDEP, CM_L4CFG_DYNAMICDEP */ | 1121 | /* Used by CM_DUCATI_DYNAMICDEP, CM_L3_2_DYNAMICDEP, CM_L4CFG_DYNAMICDEP */ |
942 | #define OMAP4430_ISS_DYNDEP_SHIFT 9 | 1122 | #define OMAP4430_ISS_DYNDEP_SHIFT 9 |
1123 | #define OMAP4430_ISS_DYNDEP_WIDTH 0x1 | ||
943 | #define OMAP4430_ISS_DYNDEP_MASK (1 << 9) | 1124 | #define OMAP4430_ISS_DYNDEP_MASK (1 << 9) |
944 | 1125 | ||
945 | /* | 1126 | /* |
@@ -947,10 +1128,12 @@ | |||
947 | * CM_TESLA_STATICDEP | 1128 | * CM_TESLA_STATICDEP |
948 | */ | 1129 | */ |
949 | #define OMAP4430_ISS_STATDEP_SHIFT 9 | 1130 | #define OMAP4430_ISS_STATDEP_SHIFT 9 |
1131 | #define OMAP4430_ISS_STATDEP_WIDTH 0x1 | ||
950 | #define OMAP4430_ISS_STATDEP_MASK (1 << 9) | 1132 | #define OMAP4430_ISS_STATDEP_MASK (1 << 9) |
951 | 1133 | ||
952 | /* Used by CM_L3_2_DYNAMICDEP, CM_TESLA_DYNAMICDEP */ | 1134 | /* Used by CM_L3_2_DYNAMICDEP, CM_TESLA_DYNAMICDEP */ |
953 | #define OMAP4430_IVAHD_DYNDEP_SHIFT 2 | 1135 | #define OMAP4430_IVAHD_DYNDEP_SHIFT 2 |
1136 | #define OMAP4430_IVAHD_DYNDEP_WIDTH 0x1 | ||
954 | #define OMAP4430_IVAHD_DYNDEP_MASK (1 << 2) | 1137 | #define OMAP4430_IVAHD_DYNDEP_MASK (1 << 2) |
955 | 1138 | ||
956 | /* | 1139 | /* |
@@ -959,10 +1142,12 @@ | |||
959 | * CM_MPU_STATICDEP, CM_SDMA_STATICDEP, CM_TESLA_STATICDEP | 1142 | * CM_MPU_STATICDEP, CM_SDMA_STATICDEP, CM_TESLA_STATICDEP |
960 | */ | 1143 | */ |
961 | #define OMAP4430_IVAHD_STATDEP_SHIFT 2 | 1144 | #define OMAP4430_IVAHD_STATDEP_SHIFT 2 |
1145 | #define OMAP4430_IVAHD_STATDEP_WIDTH 0x1 | ||
962 | #define OMAP4430_IVAHD_STATDEP_MASK (1 << 2) | 1146 | #define OMAP4430_IVAHD_STATDEP_MASK (1 << 2) |
963 | 1147 | ||
964 | /* Used by CM_L3_2_DYNAMICDEP, CM_L4CFG_DYNAMICDEP, CM_L4PER_DYNAMICDEP */ | 1148 | /* Used by CM_L3_2_DYNAMICDEP, CM_L4CFG_DYNAMICDEP, CM_L4PER_DYNAMICDEP */ |
965 | #define OMAP4430_L3INIT_DYNDEP_SHIFT 7 | 1149 | #define OMAP4430_L3INIT_DYNDEP_SHIFT 7 |
1150 | #define OMAP4430_L3INIT_DYNDEP_WIDTH 0x1 | ||
966 | #define OMAP4430_L3INIT_DYNDEP_MASK (1 << 7) | 1151 | #define OMAP4430_L3INIT_DYNDEP_MASK (1 << 7) |
967 | 1152 | ||
968 | /* | 1153 | /* |
@@ -970,6 +1155,7 @@ | |||
970 | * CM_SDMA_STATICDEP, CM_TESLA_STATICDEP | 1155 | * CM_SDMA_STATICDEP, CM_TESLA_STATICDEP |
971 | */ | 1156 | */ |
972 | #define OMAP4430_L3INIT_STATDEP_SHIFT 7 | 1157 | #define OMAP4430_L3INIT_STATDEP_SHIFT 7 |
1158 | #define OMAP4430_L3INIT_STATDEP_WIDTH 0x1 | ||
973 | #define OMAP4430_L3INIT_STATDEP_MASK (1 << 7) | 1159 | #define OMAP4430_L3INIT_STATDEP_MASK (1 << 7) |
974 | 1160 | ||
975 | /* | 1161 | /* |
@@ -977,6 +1163,7 @@ | |||
977 | * CM_L4CFG_DYNAMICDEP, CM_MPU_DYNAMICDEP, CM_TESLA_DYNAMICDEP | 1163 | * CM_L4CFG_DYNAMICDEP, CM_MPU_DYNAMICDEP, CM_TESLA_DYNAMICDEP |
978 | */ | 1164 | */ |
979 | #define OMAP4430_L3_1_DYNDEP_SHIFT 5 | 1165 | #define OMAP4430_L3_1_DYNDEP_SHIFT 5 |
1166 | #define OMAP4430_L3_1_DYNDEP_WIDTH 0x1 | ||
980 | #define OMAP4430_L3_1_DYNDEP_MASK (1 << 5) | 1167 | #define OMAP4430_L3_1_DYNDEP_MASK (1 << 5) |
981 | 1168 | ||
982 | /* | 1169 | /* |
@@ -986,6 +1173,7 @@ | |||
986 | * CM_SDMA_STATICDEP, CM_TESLA_STATICDEP | 1173 | * CM_SDMA_STATICDEP, CM_TESLA_STATICDEP |
987 | */ | 1174 | */ |
988 | #define OMAP4430_L3_1_STATDEP_SHIFT 5 | 1175 | #define OMAP4430_L3_1_STATDEP_SHIFT 5 |
1176 | #define OMAP4430_L3_1_STATDEP_WIDTH 0x1 | ||
989 | #define OMAP4430_L3_1_STATDEP_MASK (1 << 5) | 1177 | #define OMAP4430_L3_1_STATDEP_MASK (1 << 5) |
990 | 1178 | ||
991 | /* | 1179 | /* |
@@ -995,6 +1183,7 @@ | |||
995 | * CM_L4SEC_DYNAMICDEP, CM_SDMA_DYNAMICDEP | 1183 | * CM_L4SEC_DYNAMICDEP, CM_SDMA_DYNAMICDEP |
996 | */ | 1184 | */ |
997 | #define OMAP4430_L3_2_DYNDEP_SHIFT 6 | 1185 | #define OMAP4430_L3_2_DYNDEP_SHIFT 6 |
1186 | #define OMAP4430_L3_2_DYNDEP_WIDTH 0x1 | ||
998 | #define OMAP4430_L3_2_DYNDEP_MASK (1 << 6) | 1187 | #define OMAP4430_L3_2_DYNDEP_MASK (1 << 6) |
999 | 1188 | ||
1000 | /* | 1189 | /* |
@@ -1004,10 +1193,12 @@ | |||
1004 | * CM_SDMA_STATICDEP, CM_TESLA_STATICDEP | 1193 | * CM_SDMA_STATICDEP, CM_TESLA_STATICDEP |
1005 | */ | 1194 | */ |
1006 | #define OMAP4430_L3_2_STATDEP_SHIFT 6 | 1195 | #define OMAP4430_L3_2_STATDEP_SHIFT 6 |
1196 | #define OMAP4430_L3_2_STATDEP_WIDTH 0x1 | ||
1007 | #define OMAP4430_L3_2_STATDEP_MASK (1 << 6) | 1197 | #define OMAP4430_L3_2_STATDEP_MASK (1 << 6) |
1008 | 1198 | ||
1009 | /* Used by CM_L3_1_DYNAMICDEP */ | 1199 | /* Used by CM_L3_1_DYNAMICDEP */ |
1010 | #define OMAP4430_L4CFG_DYNDEP_SHIFT 12 | 1200 | #define OMAP4430_L4CFG_DYNDEP_SHIFT 12 |
1201 | #define OMAP4430_L4CFG_DYNDEP_WIDTH 0x1 | ||
1011 | #define OMAP4430_L4CFG_DYNDEP_MASK (1 << 12) | 1202 | #define OMAP4430_L4CFG_DYNDEP_MASK (1 << 12) |
1012 | 1203 | ||
1013 | /* | 1204 | /* |
@@ -1015,10 +1206,12 @@ | |||
1015 | * CM_MPU_STATICDEP, CM_SDMA_STATICDEP, CM_TESLA_STATICDEP | 1206 | * CM_MPU_STATICDEP, CM_SDMA_STATICDEP, CM_TESLA_STATICDEP |
1016 | */ | 1207 | */ |
1017 | #define OMAP4430_L4CFG_STATDEP_SHIFT 12 | 1208 | #define OMAP4430_L4CFG_STATDEP_SHIFT 12 |
1209 | #define OMAP4430_L4CFG_STATDEP_WIDTH 0x1 | ||
1018 | #define OMAP4430_L4CFG_STATDEP_MASK (1 << 12) | 1210 | #define OMAP4430_L4CFG_STATDEP_MASK (1 << 12) |
1019 | 1211 | ||
1020 | /* Used by CM_L3_2_DYNAMICDEP */ | 1212 | /* Used by CM_L3_2_DYNAMICDEP */ |
1021 | #define OMAP4430_L4PER_DYNDEP_SHIFT 13 | 1213 | #define OMAP4430_L4PER_DYNDEP_SHIFT 13 |
1214 | #define OMAP4430_L4PER_DYNDEP_WIDTH 0x1 | ||
1022 | #define OMAP4430_L4PER_DYNDEP_MASK (1 << 13) | 1215 | #define OMAP4430_L4PER_DYNDEP_MASK (1 << 13) |
1023 | 1216 | ||
1024 | /* | 1217 | /* |
@@ -1026,10 +1219,12 @@ | |||
1026 | * CM_L4SEC_STATICDEP, CM_MPU_STATICDEP, CM_SDMA_STATICDEP, CM_TESLA_STATICDEP | 1219 | * CM_L4SEC_STATICDEP, CM_MPU_STATICDEP, CM_SDMA_STATICDEP, CM_TESLA_STATICDEP |
1027 | */ | 1220 | */ |
1028 | #define OMAP4430_L4PER_STATDEP_SHIFT 13 | 1221 | #define OMAP4430_L4PER_STATDEP_SHIFT 13 |
1222 | #define OMAP4430_L4PER_STATDEP_WIDTH 0x1 | ||
1029 | #define OMAP4430_L4PER_STATDEP_MASK (1 << 13) | 1223 | #define OMAP4430_L4PER_STATDEP_MASK (1 << 13) |
1030 | 1224 | ||
1031 | /* Used by CM_L3_2_DYNAMICDEP, CM_L4PER_DYNAMICDEP */ | 1225 | /* Used by CM_L3_2_DYNAMICDEP, CM_L4PER_DYNAMICDEP */ |
1032 | #define OMAP4430_L4SEC_DYNDEP_SHIFT 14 | 1226 | #define OMAP4430_L4SEC_DYNDEP_SHIFT 14 |
1227 | #define OMAP4430_L4SEC_DYNDEP_WIDTH 0x1 | ||
1033 | #define OMAP4430_L4SEC_DYNDEP_MASK (1 << 14) | 1228 | #define OMAP4430_L4SEC_DYNDEP_MASK (1 << 14) |
1034 | 1229 | ||
1035 | /* | 1230 | /* |
@@ -1037,10 +1232,12 @@ | |||
1037 | * CM_SDMA_STATICDEP | 1232 | * CM_SDMA_STATICDEP |
1038 | */ | 1233 | */ |
1039 | #define OMAP4430_L4SEC_STATDEP_SHIFT 14 | 1234 | #define OMAP4430_L4SEC_STATDEP_SHIFT 14 |
1235 | #define OMAP4430_L4SEC_STATDEP_WIDTH 0x1 | ||
1040 | #define OMAP4430_L4SEC_STATDEP_MASK (1 << 14) | 1236 | #define OMAP4430_L4SEC_STATDEP_MASK (1 << 14) |
1041 | 1237 | ||
1042 | /* Used by CM_L4CFG_DYNAMICDEP */ | 1238 | /* Used by CM_L4CFG_DYNAMICDEP */ |
1043 | #define OMAP4430_L4WKUP_DYNDEP_SHIFT 15 | 1239 | #define OMAP4430_L4WKUP_DYNDEP_SHIFT 15 |
1240 | #define OMAP4430_L4WKUP_DYNDEP_WIDTH 0x1 | ||
1044 | #define OMAP4430_L4WKUP_DYNDEP_MASK (1 << 15) | 1241 | #define OMAP4430_L4WKUP_DYNDEP_MASK (1 << 15) |
1045 | 1242 | ||
1046 | /* | 1243 | /* |
@@ -1048,6 +1245,7 @@ | |||
1048 | * CM_SDMA_STATICDEP, CM_TESLA_STATICDEP | 1245 | * CM_SDMA_STATICDEP, CM_TESLA_STATICDEP |
1049 | */ | 1246 | */ |
1050 | #define OMAP4430_L4WKUP_STATDEP_SHIFT 15 | 1247 | #define OMAP4430_L4WKUP_STATDEP_SHIFT 15 |
1248 | #define OMAP4430_L4WKUP_STATDEP_WIDTH 0x1 | ||
1051 | #define OMAP4430_L4WKUP_STATDEP_MASK (1 << 15) | 1249 | #define OMAP4430_L4WKUP_STATDEP_MASK (1 << 15) |
1052 | 1250 | ||
1053 | /* | 1251 | /* |
@@ -1055,6 +1253,7 @@ | |||
1055 | * CM_MPU_DYNAMICDEP | 1253 | * CM_MPU_DYNAMICDEP |
1056 | */ | 1254 | */ |
1057 | #define OMAP4430_MEMIF_DYNDEP_SHIFT 4 | 1255 | #define OMAP4430_MEMIF_DYNDEP_SHIFT 4 |
1256 | #define OMAP4430_MEMIF_DYNDEP_WIDTH 0x1 | ||
1058 | #define OMAP4430_MEMIF_DYNDEP_MASK (1 << 4) | 1257 | #define OMAP4430_MEMIF_DYNDEP_MASK (1 << 4) |
1059 | 1258 | ||
1060 | /* | 1259 | /* |
@@ -1064,6 +1263,7 @@ | |||
1064 | * CM_SDMA_STATICDEP, CM_TESLA_STATICDEP | 1263 | * CM_SDMA_STATICDEP, CM_TESLA_STATICDEP |
1065 | */ | 1264 | */ |
1066 | #define OMAP4430_MEMIF_STATDEP_SHIFT 4 | 1265 | #define OMAP4430_MEMIF_STATDEP_SHIFT 4 |
1266 | #define OMAP4430_MEMIF_STATDEP_WIDTH 0x1 | ||
1067 | #define OMAP4430_MEMIF_STATDEP_MASK (1 << 4) | 1267 | #define OMAP4430_MEMIF_STATDEP_MASK (1 << 4) |
1068 | 1268 | ||
1069 | /* | 1269 | /* |
@@ -1073,6 +1273,7 @@ | |||
1073 | * CM_SSC_MODFREQDIV_DPLL_UNIPRO, CM_SSC_MODFREQDIV_DPLL_USB | 1273 | * CM_SSC_MODFREQDIV_DPLL_UNIPRO, CM_SSC_MODFREQDIV_DPLL_USB |
1074 | */ | 1274 | */ |
1075 | #define OMAP4430_MODFREQDIV_EXPONENT_SHIFT 8 | 1275 | #define OMAP4430_MODFREQDIV_EXPONENT_SHIFT 8 |
1276 | #define OMAP4430_MODFREQDIV_EXPONENT_WIDTH 0x3 | ||
1076 | #define OMAP4430_MODFREQDIV_EXPONENT_MASK (0x7 << 8) | 1277 | #define OMAP4430_MODFREQDIV_EXPONENT_MASK (0x7 << 8) |
1077 | 1278 | ||
1078 | /* | 1279 | /* |
@@ -1082,6 +1283,7 @@ | |||
1082 | * CM_SSC_MODFREQDIV_DPLL_UNIPRO, CM_SSC_MODFREQDIV_DPLL_USB | 1283 | * CM_SSC_MODFREQDIV_DPLL_UNIPRO, CM_SSC_MODFREQDIV_DPLL_USB |
1083 | */ | 1284 | */ |
1084 | #define OMAP4430_MODFREQDIV_MANTISSA_SHIFT 0 | 1285 | #define OMAP4430_MODFREQDIV_MANTISSA_SHIFT 0 |
1286 | #define OMAP4430_MODFREQDIV_MANTISSA_WIDTH 0x7 | ||
1085 | #define OMAP4430_MODFREQDIV_MANTISSA_MASK (0x7f << 0) | 1287 | #define OMAP4430_MODFREQDIV_MANTISSA_MASK (0x7f << 0) |
1086 | 1288 | ||
1087 | /* | 1289 | /* |
@@ -1089,69 +1291,68 @@ | |||
1089 | * CM1_ABE_MCASP_CLKCTRL, CM1_ABE_MCBSP1_CLKCTRL, CM1_ABE_MCBSP2_CLKCTRL, | 1291 | * CM1_ABE_MCASP_CLKCTRL, CM1_ABE_MCBSP1_CLKCTRL, CM1_ABE_MCBSP2_CLKCTRL, |
1090 | * CM1_ABE_MCBSP3_CLKCTRL, CM1_ABE_PDM_CLKCTRL, CM1_ABE_SLIMBUS_CLKCTRL, | 1292 | * CM1_ABE_MCBSP3_CLKCTRL, CM1_ABE_PDM_CLKCTRL, CM1_ABE_SLIMBUS_CLKCTRL, |
1091 | * CM1_ABE_TIMER5_CLKCTRL, CM1_ABE_TIMER6_CLKCTRL, CM1_ABE_TIMER7_CLKCTRL, | 1293 | * CM1_ABE_TIMER5_CLKCTRL, CM1_ABE_TIMER6_CLKCTRL, CM1_ABE_TIMER7_CLKCTRL, |
1092 | * CM1_ABE_TIMER8_CLKCTRL, CM1_ABE_WDT3_CLKCTRL, CM_ALWON_MDMINTC_CLKCTRL, | 1294 | * CM1_ABE_TIMER8_CLKCTRL, CM1_ABE_WDT3_CLKCTRL, CM_ALWON_SR_CORE_CLKCTRL, |
1093 | * CM_ALWON_SR_CORE_CLKCTRL, CM_ALWON_SR_IVA_CLKCTRL, CM_ALWON_SR_MPU_CLKCTRL, | 1295 | * CM_ALWON_SR_IVA_CLKCTRL, CM_ALWON_SR_MPU_CLKCTRL, CM_CAM_FDIF_CLKCTRL, |
1094 | * CM_CAM_FDIF_CLKCTRL, CM_CAM_ISS_CLKCTRL, CM_CEFUSE_CEFUSE_CLKCTRL, | 1296 | * CM_CAM_ISS_CLKCTRL, CM_CEFUSE_CEFUSE_CLKCTRL, CM_CM1_PROFILING_CLKCTRL, |
1095 | * CM_CM1_PROFILING_CLKCTRL, CM_CM2_PROFILING_CLKCTRL, | 1297 | * CM_CM2_PROFILING_CLKCTRL, CM_D2D_MODEM_ICR_CLKCTRL, CM_D2D_SAD2D_CLKCTRL, |
1096 | * CM_D2D_MODEM_ICR_CLKCTRL, CM_D2D_SAD2D_CLKCTRL, CM_D2D_SAD2D_FW_CLKCTRL, | 1298 | * CM_D2D_SAD2D_FW_CLKCTRL, CM_DSS_DSS_CLKCTRL, CM_DUCATI_DUCATI_CLKCTRL, |
1097 | * CM_DSS_DEISS_CLKCTRL, CM_DSS_DSS_CLKCTRL, CM_DUCATI_DUCATI_CLKCTRL, | ||
1098 | * CM_EMU_DEBUGSS_CLKCTRL, CM_GFX_GFX_CLKCTRL, CM_IVAHD_IVAHD_CLKCTRL, | 1299 | * CM_EMU_DEBUGSS_CLKCTRL, CM_GFX_GFX_CLKCTRL, CM_IVAHD_IVAHD_CLKCTRL, |
1099 | * CM_IVAHD_SL2_CLKCTRL, CM_L3INIT_CCPTX_CLKCTRL, CM_L3INIT_EMAC_CLKCTRL, | 1300 | * CM_IVAHD_SL2_CLKCTRL, CM_L3INIT_HSI_CLKCTRL, CM_L3INIT_MMC1_CLKCTRL, |
1100 | * CM_L3INIT_HSI_CLKCTRL, CM_L3INIT_MMC1_CLKCTRL, CM_L3INIT_MMC2_CLKCTRL, | 1301 | * CM_L3INIT_MMC2_CLKCTRL, CM_L3INIT_USBPHYOCP2SCP_CLKCTRL, |
1101 | * CM_L3INIT_MMC6_CLKCTRL, CM_L3INIT_P1500_CLKCTRL, CM_L3INIT_PCIESS_CLKCTRL, | 1302 | * CM_L3INIT_USB_HOST_CLKCTRL, CM_L3INIT_USB_HOST_FS_CLKCTRL, |
1102 | * CM_L3INIT_SATA_CLKCTRL, CM_L3INIT_TPPSS_CLKCTRL, CM_L3INIT_UNIPRO1_CLKCTRL, | 1303 | * CM_L3INIT_USB_OTG_CLKCTRL, CM_L3INIT_USB_TLL_CLKCTRL, |
1103 | * CM_L3INIT_USBPHYOCP2SCP_CLKCTRL, CM_L3INIT_USB_HOST_CLKCTRL, | 1304 | * CM_L3INSTR_L3_3_CLKCTRL, CM_L3INSTR_L3_INSTR_CLKCTRL, |
1104 | * CM_L3INIT_USB_HOST_FS_CLKCTRL, CM_L3INIT_USB_OTG_CLKCTRL, | 1305 | * CM_L3INSTR_OCP_WP1_CLKCTRL, CM_L3_1_L3_1_CLKCTRL, CM_L3_2_GPMC_CLKCTRL, |
1105 | * CM_L3INIT_USB_TLL_CLKCTRL, CM_L3INIT_XHPI_CLKCTRL, CM_L3INSTR_L3_3_CLKCTRL, | 1306 | * CM_L3_2_L3_2_CLKCTRL, CM_L3_2_OCMC_RAM_CLKCTRL, CM_L4CFG_HW_SEM_CLKCTRL, |
1106 | * CM_L3INSTR_L3_INSTR_CLKCTRL, CM_L3INSTR_OCP_WP1_CLKCTRL, | 1307 | * CM_L4CFG_L4_CFG_CLKCTRL, CM_L4CFG_MAILBOX_CLKCTRL, CM_L4CFG_SAR_ROM_CLKCTRL, |
1107 | * CM_L3_1_L3_1_CLKCTRL, CM_L3_2_GPMC_CLKCTRL, CM_L3_2_L3_2_CLKCTRL, | ||
1108 | * CM_L3_2_OCMC_RAM_CLKCTRL, CM_L4CFG_HW_SEM_CLKCTRL, CM_L4CFG_L4_CFG_CLKCTRL, | ||
1109 | * CM_L4CFG_MAILBOX_CLKCTRL, CM_L4CFG_SAR_ROM_CLKCTRL, CM_L4PER_ADC_CLKCTRL, | ||
1110 | * CM_L4PER_DMTIMER10_CLKCTRL, CM_L4PER_DMTIMER11_CLKCTRL, | 1308 | * CM_L4PER_DMTIMER10_CLKCTRL, CM_L4PER_DMTIMER11_CLKCTRL, |
1111 | * CM_L4PER_DMTIMER2_CLKCTRL, CM_L4PER_DMTIMER3_CLKCTRL, | 1309 | * CM_L4PER_DMTIMER2_CLKCTRL, CM_L4PER_DMTIMER3_CLKCTRL, |
1112 | * CM_L4PER_DMTIMER4_CLKCTRL, CM_L4PER_DMTIMER9_CLKCTRL, CM_L4PER_ELM_CLKCTRL, | 1310 | * CM_L4PER_DMTIMER4_CLKCTRL, CM_L4PER_DMTIMER9_CLKCTRL, CM_L4PER_ELM_CLKCTRL, |
1113 | * CM_L4PER_GPIO2_CLKCTRL, CM_L4PER_GPIO3_CLKCTRL, CM_L4PER_GPIO4_CLKCTRL, | 1311 | * CM_L4PER_GPIO2_CLKCTRL, CM_L4PER_GPIO3_CLKCTRL, CM_L4PER_GPIO4_CLKCTRL, |
1114 | * CM_L4PER_GPIO5_CLKCTRL, CM_L4PER_GPIO6_CLKCTRL, CM_L4PER_HDQ1W_CLKCTRL, | 1312 | * CM_L4PER_GPIO5_CLKCTRL, CM_L4PER_GPIO6_CLKCTRL, CM_L4PER_HDQ1W_CLKCTRL, |
1115 | * CM_L4PER_HECC1_CLKCTRL, CM_L4PER_HECC2_CLKCTRL, CM_L4PER_I2C1_CLKCTRL, | 1313 | * CM_L4PER_I2C1_CLKCTRL, CM_L4PER_I2C2_CLKCTRL, CM_L4PER_I2C3_CLKCTRL, |
1116 | * CM_L4PER_I2C2_CLKCTRL, CM_L4PER_I2C3_CLKCTRL, CM_L4PER_I2C4_CLKCTRL, | 1314 | * CM_L4PER_I2C4_CLKCTRL, CM_L4PER_I2C5_CLKCTRL, CM_L4PER_L4PER_CLKCTRL, |
1117 | * CM_L4PER_I2C5_CLKCTRL, CM_L4PER_L4PER_CLKCTRL, CM_L4PER_MCASP2_CLKCTRL, | 1315 | * CM_L4PER_MCBSP4_CLKCTRL, CM_L4PER_MCSPI1_CLKCTRL, CM_L4PER_MCSPI2_CLKCTRL, |
1118 | * CM_L4PER_MCASP3_CLKCTRL, CM_L4PER_MCBSP4_CLKCTRL, CM_L4PER_MCSPI1_CLKCTRL, | 1316 | * CM_L4PER_MCSPI3_CLKCTRL, CM_L4PER_MCSPI4_CLKCTRL, CM_L4PER_MMCSD3_CLKCTRL, |
1119 | * CM_L4PER_MCSPI2_CLKCTRL, CM_L4PER_MCSPI3_CLKCTRL, CM_L4PER_MCSPI4_CLKCTRL, | 1317 | * CM_L4PER_MMCSD4_CLKCTRL, CM_L4PER_MMCSD5_CLKCTRL, CM_L4PER_SLIMBUS2_CLKCTRL, |
1120 | * CM_L4PER_MGATE_CLKCTRL, CM_L4PER_MMCSD3_CLKCTRL, CM_L4PER_MMCSD4_CLKCTRL, | 1318 | * CM_L4PER_UART1_CLKCTRL, CM_L4PER_UART2_CLKCTRL, CM_L4PER_UART3_CLKCTRL, |
1121 | * CM_L4PER_MMCSD5_CLKCTRL, CM_L4PER_MSPROHG_CLKCTRL, | 1319 | * CM_L4PER_UART4_CLKCTRL, CM_L4SEC_AES1_CLKCTRL, CM_L4SEC_AES2_CLKCTRL, |
1122 | * CM_L4PER_SLIMBUS2_CLKCTRL, CM_L4PER_UART1_CLKCTRL, CM_L4PER_UART2_CLKCTRL, | 1320 | * CM_L4SEC_CRYPTODMA_CLKCTRL, CM_L4SEC_DES3DES_CLKCTRL, |
1123 | * CM_L4PER_UART3_CLKCTRL, CM_L4PER_UART4_CLKCTRL, CM_L4SEC_AES1_CLKCTRL, | ||
1124 | * CM_L4SEC_AES2_CLKCTRL, CM_L4SEC_CRYPTODMA_CLKCTRL, CM_L4SEC_DES3DES_CLKCTRL, | ||
1125 | * CM_L4SEC_PKAEIP29_CLKCTRL, CM_L4SEC_RNG_CLKCTRL, CM_L4SEC_SHA2MD51_CLKCTRL, | 1321 | * CM_L4SEC_PKAEIP29_CLKCTRL, CM_L4SEC_RNG_CLKCTRL, CM_L4SEC_SHA2MD51_CLKCTRL, |
1126 | * CM_MEMIF_DMM_CLKCTRL, CM_MEMIF_EMIF_1_CLKCTRL, CM_MEMIF_EMIF_2_CLKCTRL, | 1322 | * CM_MEMIF_DMM_CLKCTRL, CM_MEMIF_EMIF_1_CLKCTRL, CM_MEMIF_EMIF_2_CLKCTRL, |
1127 | * CM_MEMIF_EMIF_FW_CLKCTRL, CM_MEMIF_EMIF_H1_CLKCTRL, | 1323 | * CM_MEMIF_EMIF_FW_CLKCTRL, CM_MPU_MPU_CLKCTRL, CM_SDMA_SDMA_CLKCTRL, |
1128 | * CM_MEMIF_EMIF_H2_CLKCTRL, CM_MPU_MPU_CLKCTRL, CM_SDMA_SDMA_CLKCTRL, | ||
1129 | * CM_TESLA_TESLA_CLKCTRL, CM_WKUP_GPIO1_CLKCTRL, CM_WKUP_KEYBOARD_CLKCTRL, | 1324 | * CM_TESLA_TESLA_CLKCTRL, CM_WKUP_GPIO1_CLKCTRL, CM_WKUP_KEYBOARD_CLKCTRL, |
1130 | * CM_WKUP_L4WKUP_CLKCTRL, CM_WKUP_RTC_CLKCTRL, CM_WKUP_SARRAM_CLKCTRL, | 1325 | * CM_WKUP_L4WKUP_CLKCTRL, CM_WKUP_SARRAM_CLKCTRL, CM_WKUP_SYNCTIMER_CLKCTRL, |
1131 | * CM_WKUP_SYNCTIMER_CLKCTRL, CM_WKUP_TIMER12_CLKCTRL, CM_WKUP_TIMER1_CLKCTRL, | 1326 | * CM_WKUP_TIMER12_CLKCTRL, CM_WKUP_TIMER1_CLKCTRL, CM_WKUP_USIM_CLKCTRL, |
1132 | * CM_WKUP_USIM_CLKCTRL, CM_WKUP_WDT1_CLKCTRL, CM_WKUP_WDT2_CLKCTRL | 1327 | * CM_WKUP_WDT1_CLKCTRL, CM_WKUP_WDT2_CLKCTRL |
1133 | */ | 1328 | */ |
1134 | #define OMAP4430_MODULEMODE_SHIFT 0 | 1329 | #define OMAP4430_MODULEMODE_SHIFT 0 |
1330 | #define OMAP4430_MODULEMODE_WIDTH 0x2 | ||
1135 | #define OMAP4430_MODULEMODE_MASK (0x3 << 0) | 1331 | #define OMAP4430_MODULEMODE_MASK (0x3 << 0) |
1136 | 1332 | ||
1137 | /* Used by CM_L4CFG_DYNAMICDEP */ | 1333 | /* Used by CM_L4CFG_DYNAMICDEP */ |
1138 | #define OMAP4460_MPU_DYNDEP_SHIFT 19 | 1334 | #define OMAP4460_MPU_DYNDEP_SHIFT 19 |
1335 | #define OMAP4460_MPU_DYNDEP_WIDTH 0x1 | ||
1139 | #define OMAP4460_MPU_DYNDEP_MASK (1 << 19) | 1336 | #define OMAP4460_MPU_DYNDEP_MASK (1 << 19) |
1140 | 1337 | ||
1141 | /* Used by CM_DSS_DSS_CLKCTRL */ | 1338 | /* Used by CM_DSS_DSS_CLKCTRL */ |
1142 | #define OMAP4430_OPTFCLKEN_48MHZ_CLK_SHIFT 9 | 1339 | #define OMAP4430_OPTFCLKEN_48MHZ_CLK_SHIFT 9 |
1340 | #define OMAP4430_OPTFCLKEN_48MHZ_CLK_WIDTH 0x1 | ||
1143 | #define OMAP4430_OPTFCLKEN_48MHZ_CLK_MASK (1 << 9) | 1341 | #define OMAP4430_OPTFCLKEN_48MHZ_CLK_MASK (1 << 9) |
1144 | 1342 | ||
1145 | /* Used by CM_WKUP_BANDGAP_CLKCTRL */ | 1343 | /* Used by CM_WKUP_BANDGAP_CLKCTRL */ |
1146 | #define OMAP4430_OPTFCLKEN_BGAP_32K_SHIFT 8 | 1344 | #define OMAP4430_OPTFCLKEN_BGAP_32K_SHIFT 8 |
1345 | #define OMAP4430_OPTFCLKEN_BGAP_32K_WIDTH 0x1 | ||
1147 | #define OMAP4430_OPTFCLKEN_BGAP_32K_MASK (1 << 8) | 1346 | #define OMAP4430_OPTFCLKEN_BGAP_32K_MASK (1 << 8) |
1148 | 1347 | ||
1149 | /* Used by CM_ALWON_USBPHY_CLKCTRL */ | 1348 | /* Used by CM_ALWON_USBPHY_CLKCTRL */ |
1150 | #define OMAP4430_OPTFCLKEN_CLK32K_SHIFT 8 | 1349 | #define OMAP4430_OPTFCLKEN_CLK32K_SHIFT 8 |
1350 | #define OMAP4430_OPTFCLKEN_CLK32K_WIDTH 0x1 | ||
1151 | #define OMAP4430_OPTFCLKEN_CLK32K_MASK (1 << 8) | 1351 | #define OMAP4430_OPTFCLKEN_CLK32K_MASK (1 << 8) |
1152 | 1352 | ||
1153 | /* Used by CM_CAM_ISS_CLKCTRL */ | 1353 | /* Used by CM_CAM_ISS_CLKCTRL */ |
1154 | #define OMAP4430_OPTFCLKEN_CTRLCLK_SHIFT 8 | 1354 | #define OMAP4430_OPTFCLKEN_CTRLCLK_SHIFT 8 |
1355 | #define OMAP4430_OPTFCLKEN_CTRLCLK_WIDTH 0x1 | ||
1155 | #define OMAP4430_OPTFCLKEN_CTRLCLK_MASK (1 << 8) | 1356 | #define OMAP4430_OPTFCLKEN_CTRLCLK_MASK (1 << 8) |
1156 | 1357 | ||
1157 | /* | 1358 | /* |
@@ -1160,126 +1361,157 @@ | |||
1160 | * CM_WKUP_GPIO1_CLKCTRL | 1361 | * CM_WKUP_GPIO1_CLKCTRL |
1161 | */ | 1362 | */ |
1162 | #define OMAP4430_OPTFCLKEN_DBCLK_SHIFT 8 | 1363 | #define OMAP4430_OPTFCLKEN_DBCLK_SHIFT 8 |
1364 | #define OMAP4430_OPTFCLKEN_DBCLK_WIDTH 0x1 | ||
1163 | #define OMAP4430_OPTFCLKEN_DBCLK_MASK (1 << 8) | 1365 | #define OMAP4430_OPTFCLKEN_DBCLK_MASK (1 << 8) |
1164 | 1366 | ||
1165 | /* Used by CM_MEMIF_DLL_CLKCTRL, CM_MEMIF_DLL_H_CLKCTRL */ | 1367 | /* Used by CM_MEMIF_DLL_CLKCTRL, CM_MEMIF_DLL_H_CLKCTRL */ |
1166 | #define OMAP4430_OPTFCLKEN_DLL_CLK_SHIFT 8 | 1368 | #define OMAP4430_OPTFCLKEN_DLL_CLK_SHIFT 8 |
1369 | #define OMAP4430_OPTFCLKEN_DLL_CLK_WIDTH 0x1 | ||
1167 | #define OMAP4430_OPTFCLKEN_DLL_CLK_MASK (1 << 8) | 1370 | #define OMAP4430_OPTFCLKEN_DLL_CLK_MASK (1 << 8) |
1168 | 1371 | ||
1169 | /* Used by CM_DSS_DSS_CLKCTRL */ | 1372 | /* Used by CM_DSS_DSS_CLKCTRL */ |
1170 | #define OMAP4430_OPTFCLKEN_DSSCLK_SHIFT 8 | 1373 | #define OMAP4430_OPTFCLKEN_DSSCLK_SHIFT 8 |
1374 | #define OMAP4430_OPTFCLKEN_DSSCLK_WIDTH 0x1 | ||
1171 | #define OMAP4430_OPTFCLKEN_DSSCLK_MASK (1 << 8) | 1375 | #define OMAP4430_OPTFCLKEN_DSSCLK_MASK (1 << 8) |
1172 | 1376 | ||
1173 | /* Used by CM_WKUP_USIM_CLKCTRL */ | 1377 | /* Used by CM_WKUP_USIM_CLKCTRL */ |
1174 | #define OMAP4430_OPTFCLKEN_FCLK_SHIFT 8 | 1378 | #define OMAP4430_OPTFCLKEN_FCLK_SHIFT 8 |
1379 | #define OMAP4430_OPTFCLKEN_FCLK_WIDTH 0x1 | ||
1175 | #define OMAP4430_OPTFCLKEN_FCLK_MASK (1 << 8) | 1380 | #define OMAP4430_OPTFCLKEN_FCLK_MASK (1 << 8) |
1176 | 1381 | ||
1177 | /* Used by CM1_ABE_SLIMBUS_CLKCTRL */ | 1382 | /* Used by CM1_ABE_SLIMBUS_CLKCTRL */ |
1178 | #define OMAP4430_OPTFCLKEN_FCLK0_SHIFT 8 | 1383 | #define OMAP4430_OPTFCLKEN_FCLK0_SHIFT 8 |
1384 | #define OMAP4430_OPTFCLKEN_FCLK0_WIDTH 0x1 | ||
1179 | #define OMAP4430_OPTFCLKEN_FCLK0_MASK (1 << 8) | 1385 | #define OMAP4430_OPTFCLKEN_FCLK0_MASK (1 << 8) |
1180 | 1386 | ||
1181 | /* Used by CM1_ABE_SLIMBUS_CLKCTRL */ | 1387 | /* Used by CM1_ABE_SLIMBUS_CLKCTRL */ |
1182 | #define OMAP4430_OPTFCLKEN_FCLK1_SHIFT 9 | 1388 | #define OMAP4430_OPTFCLKEN_FCLK1_SHIFT 9 |
1389 | #define OMAP4430_OPTFCLKEN_FCLK1_WIDTH 0x1 | ||
1183 | #define OMAP4430_OPTFCLKEN_FCLK1_MASK (1 << 9) | 1390 | #define OMAP4430_OPTFCLKEN_FCLK1_MASK (1 << 9) |
1184 | 1391 | ||
1185 | /* Used by CM1_ABE_SLIMBUS_CLKCTRL */ | 1392 | /* Used by CM1_ABE_SLIMBUS_CLKCTRL */ |
1186 | #define OMAP4430_OPTFCLKEN_FCLK2_SHIFT 10 | 1393 | #define OMAP4430_OPTFCLKEN_FCLK2_SHIFT 10 |
1394 | #define OMAP4430_OPTFCLKEN_FCLK2_WIDTH 0x1 | ||
1187 | #define OMAP4430_OPTFCLKEN_FCLK2_MASK (1 << 10) | 1395 | #define OMAP4430_OPTFCLKEN_FCLK2_MASK (1 << 10) |
1188 | 1396 | ||
1189 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ | 1397 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ |
1190 | #define OMAP4430_OPTFCLKEN_FUNC48MCLK_SHIFT 15 | 1398 | #define OMAP4430_OPTFCLKEN_FUNC48MCLK_SHIFT 15 |
1399 | #define OMAP4430_OPTFCLKEN_FUNC48MCLK_WIDTH 0x1 | ||
1191 | #define OMAP4430_OPTFCLKEN_FUNC48MCLK_MASK (1 << 15) | 1400 | #define OMAP4430_OPTFCLKEN_FUNC48MCLK_MASK (1 << 15) |
1192 | 1401 | ||
1193 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ | 1402 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ |
1194 | #define OMAP4430_OPTFCLKEN_HSIC480M_P1_CLK_SHIFT 13 | 1403 | #define OMAP4430_OPTFCLKEN_HSIC480M_P1_CLK_SHIFT 13 |
1404 | #define OMAP4430_OPTFCLKEN_HSIC480M_P1_CLK_WIDTH 0x1 | ||
1195 | #define OMAP4430_OPTFCLKEN_HSIC480M_P1_CLK_MASK (1 << 13) | 1405 | #define OMAP4430_OPTFCLKEN_HSIC480M_P1_CLK_MASK (1 << 13) |
1196 | 1406 | ||
1197 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ | 1407 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ |
1198 | #define OMAP4430_OPTFCLKEN_HSIC480M_P2_CLK_SHIFT 14 | 1408 | #define OMAP4430_OPTFCLKEN_HSIC480M_P2_CLK_SHIFT 14 |
1409 | #define OMAP4430_OPTFCLKEN_HSIC480M_P2_CLK_WIDTH 0x1 | ||
1199 | #define OMAP4430_OPTFCLKEN_HSIC480M_P2_CLK_MASK (1 << 14) | 1410 | #define OMAP4430_OPTFCLKEN_HSIC480M_P2_CLK_MASK (1 << 14) |
1200 | 1411 | ||
1201 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ | 1412 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ |
1202 | #define OMAP4430_OPTFCLKEN_HSIC60M_P1_CLK_SHIFT 11 | 1413 | #define OMAP4430_OPTFCLKEN_HSIC60M_P1_CLK_SHIFT 11 |
1414 | #define OMAP4430_OPTFCLKEN_HSIC60M_P1_CLK_WIDTH 0x1 | ||
1203 | #define OMAP4430_OPTFCLKEN_HSIC60M_P1_CLK_MASK (1 << 11) | 1415 | #define OMAP4430_OPTFCLKEN_HSIC60M_P1_CLK_MASK (1 << 11) |
1204 | 1416 | ||
1205 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ | 1417 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ |
1206 | #define OMAP4430_OPTFCLKEN_HSIC60M_P2_CLK_SHIFT 12 | 1418 | #define OMAP4430_OPTFCLKEN_HSIC60M_P2_CLK_SHIFT 12 |
1419 | #define OMAP4430_OPTFCLKEN_HSIC60M_P2_CLK_WIDTH 0x1 | ||
1207 | #define OMAP4430_OPTFCLKEN_HSIC60M_P2_CLK_MASK (1 << 12) | 1420 | #define OMAP4430_OPTFCLKEN_HSIC60M_P2_CLK_MASK (1 << 12) |
1208 | 1421 | ||
1209 | /* Used by CM_L4PER_SLIMBUS2_CLKCTRL */ | 1422 | /* Used by CM_L4PER_SLIMBUS2_CLKCTRL */ |
1210 | #define OMAP4430_OPTFCLKEN_PER24MC_GFCLK_SHIFT 8 | 1423 | #define OMAP4430_OPTFCLKEN_PER24MC_GFCLK_SHIFT 8 |
1424 | #define OMAP4430_OPTFCLKEN_PER24MC_GFCLK_WIDTH 0x1 | ||
1211 | #define OMAP4430_OPTFCLKEN_PER24MC_GFCLK_MASK (1 << 8) | 1425 | #define OMAP4430_OPTFCLKEN_PER24MC_GFCLK_MASK (1 << 8) |
1212 | 1426 | ||
1213 | /* Used by CM_L4PER_SLIMBUS2_CLKCTRL */ | 1427 | /* Used by CM_L4PER_SLIMBUS2_CLKCTRL */ |
1214 | #define OMAP4430_OPTFCLKEN_PERABE24M_GFCLK_SHIFT 9 | 1428 | #define OMAP4430_OPTFCLKEN_PERABE24M_GFCLK_SHIFT 9 |
1429 | #define OMAP4430_OPTFCLKEN_PERABE24M_GFCLK_WIDTH 0x1 | ||
1215 | #define OMAP4430_OPTFCLKEN_PERABE24M_GFCLK_MASK (1 << 9) | 1430 | #define OMAP4430_OPTFCLKEN_PERABE24M_GFCLK_MASK (1 << 9) |
1216 | 1431 | ||
1217 | /* Used by CM_L3INIT_USBPHYOCP2SCP_CLKCTRL */ | 1432 | /* Used by CM_L3INIT_USBPHYOCP2SCP_CLKCTRL */ |
1218 | #define OMAP4430_OPTFCLKEN_PHY_48M_SHIFT 8 | 1433 | #define OMAP4430_OPTFCLKEN_PHY_48M_SHIFT 8 |
1434 | #define OMAP4430_OPTFCLKEN_PHY_48M_WIDTH 0x1 | ||
1219 | #define OMAP4430_OPTFCLKEN_PHY_48M_MASK (1 << 8) | 1435 | #define OMAP4430_OPTFCLKEN_PHY_48M_MASK (1 << 8) |
1220 | 1436 | ||
1221 | /* Used by CM_L4PER_SLIMBUS2_CLKCTRL */ | 1437 | /* Used by CM_L4PER_SLIMBUS2_CLKCTRL */ |
1222 | #define OMAP4430_OPTFCLKEN_SLIMBUS_CLK_SHIFT 10 | 1438 | #define OMAP4430_OPTFCLKEN_SLIMBUS_CLK_SHIFT 10 |
1439 | #define OMAP4430_OPTFCLKEN_SLIMBUS_CLK_WIDTH 0x1 | ||
1223 | #define OMAP4430_OPTFCLKEN_SLIMBUS_CLK_MASK (1 << 10) | 1440 | #define OMAP4430_OPTFCLKEN_SLIMBUS_CLK_MASK (1 << 10) |
1224 | 1441 | ||
1225 | /* Renamed from OPTFCLKEN_SLIMBUS_CLK Used by CM1_ABE_SLIMBUS_CLKCTRL */ | 1442 | /* Renamed from OPTFCLKEN_SLIMBUS_CLK Used by CM1_ABE_SLIMBUS_CLKCTRL */ |
1226 | #define OMAP4430_OPTFCLKEN_SLIMBUS_CLK_11_11_SHIFT 11 | 1443 | #define OMAP4430_OPTFCLKEN_SLIMBUS_CLK_11_11_SHIFT 11 |
1444 | #define OMAP4430_OPTFCLKEN_SLIMBUS_CLK_11_11_WIDTH 0x1 | ||
1227 | #define OMAP4430_OPTFCLKEN_SLIMBUS_CLK_11_11_MASK (1 << 11) | 1445 | #define OMAP4430_OPTFCLKEN_SLIMBUS_CLK_11_11_MASK (1 << 11) |
1228 | 1446 | ||
1229 | /* Used by CM_DSS_DSS_CLKCTRL */ | 1447 | /* Used by CM_DSS_DSS_CLKCTRL */ |
1230 | #define OMAP4430_OPTFCLKEN_SYS_CLK_SHIFT 10 | 1448 | #define OMAP4430_OPTFCLKEN_SYS_CLK_SHIFT 10 |
1449 | #define OMAP4430_OPTFCLKEN_SYS_CLK_WIDTH 0x1 | ||
1231 | #define OMAP4430_OPTFCLKEN_SYS_CLK_MASK (1 << 10) | 1450 | #define OMAP4430_OPTFCLKEN_SYS_CLK_MASK (1 << 10) |
1232 | 1451 | ||
1233 | /* Used by CM_WKUP_BANDGAP_CLKCTRL */ | 1452 | /* Used by CM_WKUP_BANDGAP_CLKCTRL */ |
1234 | #define OMAP4460_OPTFCLKEN_TS_FCLK_SHIFT 8 | 1453 | #define OMAP4460_OPTFCLKEN_TS_FCLK_SHIFT 8 |
1454 | #define OMAP4460_OPTFCLKEN_TS_FCLK_WIDTH 0x1 | ||
1235 | #define OMAP4460_OPTFCLKEN_TS_FCLK_MASK (1 << 8) | 1455 | #define OMAP4460_OPTFCLKEN_TS_FCLK_MASK (1 << 8) |
1236 | 1456 | ||
1237 | /* Used by CM_DSS_DSS_CLKCTRL */ | 1457 | /* Used by CM_DSS_DSS_CLKCTRL */ |
1238 | #define OMAP4430_OPTFCLKEN_TV_CLK_SHIFT 11 | 1458 | #define OMAP4430_OPTFCLKEN_TV_CLK_SHIFT 11 |
1459 | #define OMAP4430_OPTFCLKEN_TV_CLK_WIDTH 0x1 | ||
1239 | #define OMAP4430_OPTFCLKEN_TV_CLK_MASK (1 << 11) | 1460 | #define OMAP4430_OPTFCLKEN_TV_CLK_MASK (1 << 11) |
1240 | 1461 | ||
1241 | /* Used by CM_L3INIT_UNIPRO1_CLKCTRL */ | 1462 | /* Used by CM_L3INIT_UNIPRO1_CLKCTRL */ |
1242 | #define OMAP4430_OPTFCLKEN_TXPHYCLK_SHIFT 8 | 1463 | #define OMAP4430_OPTFCLKEN_TXPHYCLK_SHIFT 8 |
1464 | #define OMAP4430_OPTFCLKEN_TXPHYCLK_WIDTH 0x1 | ||
1243 | #define OMAP4430_OPTFCLKEN_TXPHYCLK_MASK (1 << 8) | 1465 | #define OMAP4430_OPTFCLKEN_TXPHYCLK_MASK (1 << 8) |
1244 | 1466 | ||
1245 | /* Used by CM_L3INIT_USB_TLL_CLKCTRL */ | 1467 | /* Used by CM_L3INIT_USB_TLL_CLKCTRL */ |
1246 | #define OMAP4430_OPTFCLKEN_USB_CH0_CLK_SHIFT 8 | 1468 | #define OMAP4430_OPTFCLKEN_USB_CH0_CLK_SHIFT 8 |
1469 | #define OMAP4430_OPTFCLKEN_USB_CH0_CLK_WIDTH 0x1 | ||
1247 | #define OMAP4430_OPTFCLKEN_USB_CH0_CLK_MASK (1 << 8) | 1470 | #define OMAP4430_OPTFCLKEN_USB_CH0_CLK_MASK (1 << 8) |
1248 | 1471 | ||
1249 | /* Used by CM_L3INIT_USB_TLL_CLKCTRL */ | 1472 | /* Used by CM_L3INIT_USB_TLL_CLKCTRL */ |
1250 | #define OMAP4430_OPTFCLKEN_USB_CH1_CLK_SHIFT 9 | 1473 | #define OMAP4430_OPTFCLKEN_USB_CH1_CLK_SHIFT 9 |
1474 | #define OMAP4430_OPTFCLKEN_USB_CH1_CLK_WIDTH 0x1 | ||
1251 | #define OMAP4430_OPTFCLKEN_USB_CH1_CLK_MASK (1 << 9) | 1475 | #define OMAP4430_OPTFCLKEN_USB_CH1_CLK_MASK (1 << 9) |
1252 | 1476 | ||
1253 | /* Used by CM_L3INIT_USB_TLL_CLKCTRL */ | 1477 | /* Used by CM_L3INIT_USB_TLL_CLKCTRL */ |
1254 | #define OMAP4430_OPTFCLKEN_USB_CH2_CLK_SHIFT 10 | 1478 | #define OMAP4430_OPTFCLKEN_USB_CH2_CLK_SHIFT 10 |
1479 | #define OMAP4430_OPTFCLKEN_USB_CH2_CLK_WIDTH 0x1 | ||
1255 | #define OMAP4430_OPTFCLKEN_USB_CH2_CLK_MASK (1 << 10) | 1480 | #define OMAP4430_OPTFCLKEN_USB_CH2_CLK_MASK (1 << 10) |
1256 | 1481 | ||
1257 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ | 1482 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ |
1258 | #define OMAP4430_OPTFCLKEN_UTMI_P1_CLK_SHIFT 8 | 1483 | #define OMAP4430_OPTFCLKEN_UTMI_P1_CLK_SHIFT 8 |
1484 | #define OMAP4430_OPTFCLKEN_UTMI_P1_CLK_WIDTH 0x1 | ||
1259 | #define OMAP4430_OPTFCLKEN_UTMI_P1_CLK_MASK (1 << 8) | 1485 | #define OMAP4430_OPTFCLKEN_UTMI_P1_CLK_MASK (1 << 8) |
1260 | 1486 | ||
1261 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ | 1487 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ |
1262 | #define OMAP4430_OPTFCLKEN_UTMI_P2_CLK_SHIFT 9 | 1488 | #define OMAP4430_OPTFCLKEN_UTMI_P2_CLK_SHIFT 9 |
1489 | #define OMAP4430_OPTFCLKEN_UTMI_P2_CLK_WIDTH 0x1 | ||
1263 | #define OMAP4430_OPTFCLKEN_UTMI_P2_CLK_MASK (1 << 9) | 1490 | #define OMAP4430_OPTFCLKEN_UTMI_P2_CLK_MASK (1 << 9) |
1264 | 1491 | ||
1265 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ | 1492 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL */ |
1266 | #define OMAP4430_OPTFCLKEN_UTMI_P3_CLK_SHIFT 10 | 1493 | #define OMAP4430_OPTFCLKEN_UTMI_P3_CLK_SHIFT 10 |
1494 | #define OMAP4430_OPTFCLKEN_UTMI_P3_CLK_WIDTH 0x1 | ||
1267 | #define OMAP4430_OPTFCLKEN_UTMI_P3_CLK_MASK (1 << 10) | 1495 | #define OMAP4430_OPTFCLKEN_UTMI_P3_CLK_MASK (1 << 10) |
1268 | 1496 | ||
1269 | /* Used by CM_L3INIT_USB_OTG_CLKCTRL */ | 1497 | /* Used by CM_L3INIT_USB_OTG_CLKCTRL */ |
1270 | #define OMAP4430_OPTFCLKEN_XCLK_SHIFT 8 | 1498 | #define OMAP4430_OPTFCLKEN_XCLK_SHIFT 8 |
1499 | #define OMAP4430_OPTFCLKEN_XCLK_WIDTH 0x1 | ||
1271 | #define OMAP4430_OPTFCLKEN_XCLK_MASK (1 << 8) | 1500 | #define OMAP4430_OPTFCLKEN_XCLK_MASK (1 << 8) |
1272 | 1501 | ||
1273 | /* Used by CM_EMU_OVERRIDE_DPLL_CORE */ | 1502 | /* Used by CM_EMU_OVERRIDE_DPLL_CORE */ |
1274 | #define OMAP4430_OVERRIDE_ENABLE_SHIFT 19 | 1503 | #define OMAP4430_OVERRIDE_ENABLE_SHIFT 19 |
1504 | #define OMAP4430_OVERRIDE_ENABLE_WIDTH 0x1 | ||
1275 | #define OMAP4430_OVERRIDE_ENABLE_MASK (1 << 19) | 1505 | #define OMAP4430_OVERRIDE_ENABLE_MASK (1 << 19) |
1276 | 1506 | ||
1277 | /* Used by CM_CLKSEL_ABE */ | 1507 | /* Used by CM_CLKSEL_ABE */ |
1278 | #define OMAP4430_PAD_CLKS_GATE_SHIFT 8 | 1508 | #define OMAP4430_PAD_CLKS_GATE_SHIFT 8 |
1509 | #define OMAP4430_PAD_CLKS_GATE_WIDTH 0x1 | ||
1279 | #define OMAP4430_PAD_CLKS_GATE_MASK (1 << 8) | 1510 | #define OMAP4430_PAD_CLKS_GATE_MASK (1 << 8) |
1280 | 1511 | ||
1281 | /* Used by CM_CORE_DVFS_CURRENT, CM_IVA_DVFS_CURRENT */ | 1512 | /* Used by CM_CORE_DVFS_CURRENT, CM_IVA_DVFS_CURRENT */ |
1282 | #define OMAP4430_PERF_CURRENT_SHIFT 0 | 1513 | #define OMAP4430_PERF_CURRENT_SHIFT 0 |
1514 | #define OMAP4430_PERF_CURRENT_WIDTH 0x8 | ||
1283 | #define OMAP4430_PERF_CURRENT_MASK (0xff << 0) | 1515 | #define OMAP4430_PERF_CURRENT_MASK (0xff << 0) |
1284 | 1516 | ||
1285 | /* | 1517 | /* |
@@ -1288,74 +1520,85 @@ | |||
1288 | * CM_IVA_DVFS_PERF_TESLA | 1520 | * CM_IVA_DVFS_PERF_TESLA |
1289 | */ | 1521 | */ |
1290 | #define OMAP4430_PERF_REQ_SHIFT 0 | 1522 | #define OMAP4430_PERF_REQ_SHIFT 0 |
1523 | #define OMAP4430_PERF_REQ_WIDTH 0x8 | ||
1291 | #define OMAP4430_PERF_REQ_MASK (0xff << 0) | 1524 | #define OMAP4430_PERF_REQ_MASK (0xff << 0) |
1292 | 1525 | ||
1293 | /* Used by CM_RESTORE_ST */ | 1526 | /* Used by CM_RESTORE_ST */ |
1294 | #define OMAP4430_PHASE1_COMPLETED_SHIFT 0 | 1527 | #define OMAP4430_PHASE1_COMPLETED_SHIFT 0 |
1528 | #define OMAP4430_PHASE1_COMPLETED_WIDTH 0x1 | ||
1295 | #define OMAP4430_PHASE1_COMPLETED_MASK (1 << 0) | 1529 | #define OMAP4430_PHASE1_COMPLETED_MASK (1 << 0) |
1296 | 1530 | ||
1297 | /* Used by CM_RESTORE_ST */ | 1531 | /* Used by CM_RESTORE_ST */ |
1298 | #define OMAP4430_PHASE2A_COMPLETED_SHIFT 1 | 1532 | #define OMAP4430_PHASE2A_COMPLETED_SHIFT 1 |
1533 | #define OMAP4430_PHASE2A_COMPLETED_WIDTH 0x1 | ||
1299 | #define OMAP4430_PHASE2A_COMPLETED_MASK (1 << 1) | 1534 | #define OMAP4430_PHASE2A_COMPLETED_MASK (1 << 1) |
1300 | 1535 | ||
1301 | /* Used by CM_RESTORE_ST */ | 1536 | /* Used by CM_RESTORE_ST */ |
1302 | #define OMAP4430_PHASE2B_COMPLETED_SHIFT 2 | 1537 | #define OMAP4430_PHASE2B_COMPLETED_SHIFT 2 |
1538 | #define OMAP4430_PHASE2B_COMPLETED_WIDTH 0x1 | ||
1303 | #define OMAP4430_PHASE2B_COMPLETED_MASK (1 << 2) | 1539 | #define OMAP4430_PHASE2B_COMPLETED_MASK (1 << 2) |
1304 | 1540 | ||
1305 | /* Used by CM_EMU_DEBUGSS_CLKCTRL */ | 1541 | /* Used by CM_EMU_DEBUGSS_CLKCTRL */ |
1306 | #define OMAP4430_PMD_STM_MUX_CTRL_SHIFT 20 | 1542 | #define OMAP4430_PMD_STM_MUX_CTRL_SHIFT 20 |
1543 | #define OMAP4430_PMD_STM_MUX_CTRL_WIDTH 0x2 | ||
1307 | #define OMAP4430_PMD_STM_MUX_CTRL_MASK (0x3 << 20) | 1544 | #define OMAP4430_PMD_STM_MUX_CTRL_MASK (0x3 << 20) |
1308 | 1545 | ||
1309 | /* Used by CM_EMU_DEBUGSS_CLKCTRL */ | 1546 | /* Used by CM_EMU_DEBUGSS_CLKCTRL */ |
1310 | #define OMAP4430_PMD_TRACE_MUX_CTRL_SHIFT 22 | 1547 | #define OMAP4430_PMD_TRACE_MUX_CTRL_SHIFT 22 |
1548 | #define OMAP4430_PMD_TRACE_MUX_CTRL_WIDTH 0x2 | ||
1311 | #define OMAP4430_PMD_TRACE_MUX_CTRL_MASK (0x3 << 22) | 1549 | #define OMAP4430_PMD_TRACE_MUX_CTRL_MASK (0x3 << 22) |
1312 | 1550 | ||
1313 | /* Used by CM_DYN_DEP_PRESCAL */ | 1551 | /* Used by CM_DYN_DEP_PRESCAL */ |
1314 | #define OMAP4430_PRESCAL_SHIFT 0 | 1552 | #define OMAP4430_PRESCAL_SHIFT 0 |
1553 | #define OMAP4430_PRESCAL_WIDTH 0x6 | ||
1315 | #define OMAP4430_PRESCAL_MASK (0x3f << 0) | 1554 | #define OMAP4430_PRESCAL_MASK (0x3f << 0) |
1316 | 1555 | ||
1317 | /* Used by REVISION_CM1, REVISION_CM2 */ | 1556 | /* Used by REVISION_CM1, REVISION_CM2 */ |
1318 | #define OMAP4430_R_RTL_SHIFT 11 | 1557 | #define OMAP4430_R_RTL_SHIFT 11 |
1558 | #define OMAP4430_R_RTL_WIDTH 0x5 | ||
1319 | #define OMAP4430_R_RTL_MASK (0x1f << 11) | 1559 | #define OMAP4430_R_RTL_MASK (0x1f << 11) |
1320 | 1560 | ||
1321 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL, CM_L3INIT_USB_TLL_CLKCTRL */ | 1561 | /* Used by CM_L3INIT_USB_HOST_CLKCTRL, CM_L3INIT_USB_TLL_CLKCTRL */ |
1322 | #define OMAP4430_SAR_MODE_SHIFT 4 | 1562 | #define OMAP4430_SAR_MODE_SHIFT 4 |
1563 | #define OMAP4430_SAR_MODE_WIDTH 0x1 | ||
1323 | #define OMAP4430_SAR_MODE_MASK (1 << 4) | 1564 | #define OMAP4430_SAR_MODE_MASK (1 << 4) |
1324 | 1565 | ||
1325 | /* Used by CM_SCALE_FCLK */ | 1566 | /* Used by CM_SCALE_FCLK */ |
1326 | #define OMAP4430_SCALE_FCLK_SHIFT 0 | 1567 | #define OMAP4430_SCALE_FCLK_SHIFT 0 |
1568 | #define OMAP4430_SCALE_FCLK_WIDTH 0x1 | ||
1327 | #define OMAP4430_SCALE_FCLK_MASK (1 << 0) | 1569 | #define OMAP4430_SCALE_FCLK_MASK (1 << 0) |
1328 | 1570 | ||
1329 | /* Used by REVISION_CM1, REVISION_CM2 */ | 1571 | /* Used by REVISION_CM1, REVISION_CM2 */ |
1330 | #define OMAP4430_SCHEME_SHIFT 30 | 1572 | #define OMAP4430_SCHEME_SHIFT 30 |
1573 | #define OMAP4430_SCHEME_WIDTH 0x2 | ||
1331 | #define OMAP4430_SCHEME_MASK (0x3 << 30) | 1574 | #define OMAP4430_SCHEME_MASK (0x3 << 30) |
1332 | 1575 | ||
1333 | /* Used by CM_L4CFG_DYNAMICDEP */ | 1576 | /* Used by CM_L4CFG_DYNAMICDEP */ |
1334 | #define OMAP4430_SDMA_DYNDEP_SHIFT 11 | 1577 | #define OMAP4430_SDMA_DYNDEP_SHIFT 11 |
1578 | #define OMAP4430_SDMA_DYNDEP_WIDTH 0x1 | ||
1335 | #define OMAP4430_SDMA_DYNDEP_MASK (1 << 11) | 1579 | #define OMAP4430_SDMA_DYNDEP_MASK (1 << 11) |
1336 | 1580 | ||
1337 | /* Used by CM_DUCATI_STATICDEP, CM_MPU_STATICDEP */ | 1581 | /* Used by CM_DUCATI_STATICDEP, CM_MPU_STATICDEP */ |
1338 | #define OMAP4430_SDMA_STATDEP_SHIFT 11 | 1582 | #define OMAP4430_SDMA_STATDEP_SHIFT 11 |
1583 | #define OMAP4430_SDMA_STATDEP_WIDTH 0x1 | ||
1339 | #define OMAP4430_SDMA_STATDEP_MASK (1 << 11) | 1584 | #define OMAP4430_SDMA_STATDEP_MASK (1 << 11) |
1340 | 1585 | ||
1341 | /* Used by CM_CLKSEL_ABE */ | 1586 | /* Used by CM_CLKSEL_ABE */ |
1342 | #define OMAP4430_SLIMBUS_CLK_GATE_SHIFT 10 | 1587 | #define OMAP4430_SLIMBUS_CLK_GATE_SHIFT 10 |
1588 | #define OMAP4430_SLIMBUS_CLK_GATE_WIDTH 0x1 | ||
1343 | #define OMAP4430_SLIMBUS_CLK_GATE_MASK (1 << 10) | 1589 | #define OMAP4430_SLIMBUS_CLK_GATE_MASK (1 << 10) |
1344 | 1590 | ||
1345 | /* | 1591 | /* |
1346 | * Used by CM1_ABE_AESS_CLKCTRL, CM_CAM_FDIF_CLKCTRL, CM_CAM_ISS_CLKCTRL, | 1592 | * Used by CM1_ABE_AESS_CLKCTRL, CM_CAM_FDIF_CLKCTRL, CM_CAM_ISS_CLKCTRL, |
1347 | * CM_D2D_SAD2D_CLKCTRL, CM_DSS_DEISS_CLKCTRL, CM_DSS_DSS_CLKCTRL, | 1593 | * CM_D2D_SAD2D_CLKCTRL, CM_DSS_DSS_CLKCTRL, CM_DUCATI_DUCATI_CLKCTRL, |
1348 | * CM_DUCATI_DUCATI_CLKCTRL, CM_EMU_DEBUGSS_CLKCTRL, CM_GFX_GFX_CLKCTRL, | 1594 | * CM_EMU_DEBUGSS_CLKCTRL, CM_GFX_GFX_CLKCTRL, CM_IVAHD_IVAHD_CLKCTRL, |
1349 | * CM_IVAHD_IVAHD_CLKCTRL, CM_L3INIT_CCPTX_CLKCTRL, CM_L3INIT_EMAC_CLKCTRL, | ||
1350 | * CM_L3INIT_HSI_CLKCTRL, CM_L3INIT_MMC1_CLKCTRL, CM_L3INIT_MMC2_CLKCTRL, | 1595 | * CM_L3INIT_HSI_CLKCTRL, CM_L3INIT_MMC1_CLKCTRL, CM_L3INIT_MMC2_CLKCTRL, |
1351 | * CM_L3INIT_MMC6_CLKCTRL, CM_L3INIT_P1500_CLKCTRL, CM_L3INIT_PCIESS_CLKCTRL, | ||
1352 | * CM_L3INIT_SATA_CLKCTRL, CM_L3INIT_TPPSS_CLKCTRL, CM_L3INIT_UNIPRO1_CLKCTRL, | ||
1353 | * CM_L3INIT_USB_HOST_CLKCTRL, CM_L3INIT_USB_HOST_FS_CLKCTRL, | 1596 | * CM_L3INIT_USB_HOST_CLKCTRL, CM_L3INIT_USB_HOST_FS_CLKCTRL, |
1354 | * CM_L3INIT_USB_OTG_CLKCTRL, CM_L3INIT_XHPI_CLKCTRL, | 1597 | * CM_L3INIT_USB_OTG_CLKCTRL, CM_L4SEC_CRYPTODMA_CLKCTRL, CM_MPU_MPU_CLKCTRL, |
1355 | * CM_L4SEC_CRYPTODMA_CLKCTRL, CM_MPU_MPU_CLKCTRL, CM_SDMA_SDMA_CLKCTRL, | 1598 | * CM_SDMA_SDMA_CLKCTRL, CM_TESLA_TESLA_CLKCTRL |
1356 | * CM_TESLA_TESLA_CLKCTRL | ||
1357 | */ | 1599 | */ |
1358 | #define OMAP4430_STBYST_SHIFT 18 | 1600 | #define OMAP4430_STBYST_SHIFT 18 |
1601 | #define OMAP4430_STBYST_WIDTH 0x1 | ||
1359 | #define OMAP4430_STBYST_MASK (1 << 18) | 1602 | #define OMAP4430_STBYST_MASK (1 << 18) |
1360 | 1603 | ||
1361 | /* | 1604 | /* |
@@ -1364,10 +1607,12 @@ | |||
1364 | * CM_IDLEST_DPLL_UNIPRO, CM_IDLEST_DPLL_USB | 1607 | * CM_IDLEST_DPLL_UNIPRO, CM_IDLEST_DPLL_USB |
1365 | */ | 1608 | */ |
1366 | #define OMAP4430_ST_DPLL_CLK_SHIFT 0 | 1609 | #define OMAP4430_ST_DPLL_CLK_SHIFT 0 |
1610 | #define OMAP4430_ST_DPLL_CLK_WIDTH 0x1 | ||
1367 | #define OMAP4430_ST_DPLL_CLK_MASK (1 << 0) | 1611 | #define OMAP4430_ST_DPLL_CLK_MASK (1 << 0) |
1368 | 1612 | ||
1369 | /* Used by CM_CLKDCOLDO_DPLL_USB */ | 1613 | /* Used by CM_CLKDCOLDO_DPLL_USB */ |
1370 | #define OMAP4430_ST_DPLL_CLKDCOLDO_SHIFT 9 | 1614 | #define OMAP4430_ST_DPLL_CLKDCOLDO_SHIFT 9 |
1615 | #define OMAP4430_ST_DPLL_CLKDCOLDO_WIDTH 0x1 | ||
1371 | #define OMAP4430_ST_DPLL_CLKDCOLDO_MASK (1 << 9) | 1616 | #define OMAP4430_ST_DPLL_CLKDCOLDO_MASK (1 << 9) |
1372 | 1617 | ||
1373 | /* | 1618 | /* |
@@ -1375,14 +1620,17 @@ | |||
1375 | * CM_DIV_M2_DPLL_MPU, CM_DIV_M2_DPLL_PER, CM_DIV_M2_DPLL_USB | 1620 | * CM_DIV_M2_DPLL_MPU, CM_DIV_M2_DPLL_PER, CM_DIV_M2_DPLL_USB |
1376 | */ | 1621 | */ |
1377 | #define OMAP4430_ST_DPLL_CLKOUT_SHIFT 9 | 1622 | #define OMAP4430_ST_DPLL_CLKOUT_SHIFT 9 |
1623 | #define OMAP4430_ST_DPLL_CLKOUT_WIDTH 0x1 | ||
1378 | #define OMAP4430_ST_DPLL_CLKOUT_MASK (1 << 9) | 1624 | #define OMAP4430_ST_DPLL_CLKOUT_MASK (1 << 9) |
1379 | 1625 | ||
1380 | /* Used by CM_DIV_M3_DPLL_ABE, CM_DIV_M3_DPLL_CORE, CM_DIV_M3_DPLL_PER */ | 1626 | /* Used by CM_DIV_M3_DPLL_ABE, CM_DIV_M3_DPLL_CORE, CM_DIV_M3_DPLL_PER */ |
1381 | #define OMAP4430_ST_DPLL_CLKOUTHIF_SHIFT 9 | 1627 | #define OMAP4430_ST_DPLL_CLKOUTHIF_SHIFT 9 |
1628 | #define OMAP4430_ST_DPLL_CLKOUTHIF_WIDTH 0x1 | ||
1382 | #define OMAP4430_ST_DPLL_CLKOUTHIF_MASK (1 << 9) | 1629 | #define OMAP4430_ST_DPLL_CLKOUTHIF_MASK (1 << 9) |
1383 | 1630 | ||
1384 | /* Used by CM_DIV_M2_DPLL_ABE, CM_DIV_M2_DPLL_PER, CM_DIV_M2_DPLL_UNIPRO */ | 1631 | /* Used by CM_DIV_M2_DPLL_ABE, CM_DIV_M2_DPLL_PER, CM_DIV_M2_DPLL_UNIPRO */ |
1385 | #define OMAP4430_ST_DPLL_CLKOUTX2_SHIFT 11 | 1632 | #define OMAP4430_ST_DPLL_CLKOUTX2_SHIFT 11 |
1633 | #define OMAP4430_ST_DPLL_CLKOUTX2_WIDTH 0x1 | ||
1386 | #define OMAP4430_ST_DPLL_CLKOUTX2_MASK (1 << 11) | 1634 | #define OMAP4430_ST_DPLL_CLKOUTX2_MASK (1 << 11) |
1387 | 1635 | ||
1388 | /* | 1636 | /* |
@@ -1390,6 +1638,7 @@ | |||
1390 | * CM_DIV_M4_DPLL_PER | 1638 | * CM_DIV_M4_DPLL_PER |
1391 | */ | 1639 | */ |
1392 | #define OMAP4430_ST_HSDIVIDER_CLKOUT1_SHIFT 9 | 1640 | #define OMAP4430_ST_HSDIVIDER_CLKOUT1_SHIFT 9 |
1641 | #define OMAP4430_ST_HSDIVIDER_CLKOUT1_WIDTH 0x1 | ||
1393 | #define OMAP4430_ST_HSDIVIDER_CLKOUT1_MASK (1 << 9) | 1642 | #define OMAP4430_ST_HSDIVIDER_CLKOUT1_MASK (1 << 9) |
1394 | 1643 | ||
1395 | /* | 1644 | /* |
@@ -1397,14 +1646,17 @@ | |||
1397 | * CM_DIV_M5_DPLL_PER | 1646 | * CM_DIV_M5_DPLL_PER |
1398 | */ | 1647 | */ |
1399 | #define OMAP4430_ST_HSDIVIDER_CLKOUT2_SHIFT 9 | 1648 | #define OMAP4430_ST_HSDIVIDER_CLKOUT2_SHIFT 9 |
1649 | #define OMAP4430_ST_HSDIVIDER_CLKOUT2_WIDTH 0x1 | ||
1400 | #define OMAP4430_ST_HSDIVIDER_CLKOUT2_MASK (1 << 9) | 1650 | #define OMAP4430_ST_HSDIVIDER_CLKOUT2_MASK (1 << 9) |
1401 | 1651 | ||
1402 | /* Used by CM_DIV_M6_DPLL_CORE, CM_DIV_M6_DPLL_DDRPHY, CM_DIV_M6_DPLL_PER */ | 1652 | /* Used by CM_DIV_M6_DPLL_CORE, CM_DIV_M6_DPLL_DDRPHY, CM_DIV_M6_DPLL_PER */ |
1403 | #define OMAP4430_ST_HSDIVIDER_CLKOUT3_SHIFT 9 | 1653 | #define OMAP4430_ST_HSDIVIDER_CLKOUT3_SHIFT 9 |
1654 | #define OMAP4430_ST_HSDIVIDER_CLKOUT3_WIDTH 0x1 | ||
1404 | #define OMAP4430_ST_HSDIVIDER_CLKOUT3_MASK (1 << 9) | 1655 | #define OMAP4430_ST_HSDIVIDER_CLKOUT3_MASK (1 << 9) |
1405 | 1656 | ||
1406 | /* Used by CM_DIV_M7_DPLL_CORE, CM_DIV_M7_DPLL_PER */ | 1657 | /* Used by CM_DIV_M7_DPLL_CORE, CM_DIV_M7_DPLL_PER */ |
1407 | #define OMAP4430_ST_HSDIVIDER_CLKOUT4_SHIFT 9 | 1658 | #define OMAP4430_ST_HSDIVIDER_CLKOUT4_SHIFT 9 |
1659 | #define OMAP4430_ST_HSDIVIDER_CLKOUT4_WIDTH 0x1 | ||
1408 | #define OMAP4430_ST_HSDIVIDER_CLKOUT4_MASK (1 << 9) | 1660 | #define OMAP4430_ST_HSDIVIDER_CLKOUT4_MASK (1 << 9) |
1409 | 1661 | ||
1410 | /* | 1662 | /* |
@@ -1413,18 +1665,22 @@ | |||
1413 | * CM_IDLEST_DPLL_UNIPRO, CM_IDLEST_DPLL_USB | 1665 | * CM_IDLEST_DPLL_UNIPRO, CM_IDLEST_DPLL_USB |
1414 | */ | 1666 | */ |
1415 | #define OMAP4430_ST_MN_BYPASS_SHIFT 8 | 1667 | #define OMAP4430_ST_MN_BYPASS_SHIFT 8 |
1668 | #define OMAP4430_ST_MN_BYPASS_WIDTH 0x1 | ||
1416 | #define OMAP4430_ST_MN_BYPASS_MASK (1 << 8) | 1669 | #define OMAP4430_ST_MN_BYPASS_MASK (1 << 8) |
1417 | 1670 | ||
1418 | /* Used by CM_SYS_CLKSEL */ | 1671 | /* Used by CM_SYS_CLKSEL */ |
1419 | #define OMAP4430_SYS_CLKSEL_SHIFT 0 | 1672 | #define OMAP4430_SYS_CLKSEL_SHIFT 0 |
1673 | #define OMAP4430_SYS_CLKSEL_WIDTH 0x3 | ||
1420 | #define OMAP4430_SYS_CLKSEL_MASK (0x7 << 0) | 1674 | #define OMAP4430_SYS_CLKSEL_MASK (0x7 << 0) |
1421 | 1675 | ||
1422 | /* Used by CM_L4CFG_DYNAMICDEP */ | 1676 | /* Used by CM_L4CFG_DYNAMICDEP */ |
1423 | #define OMAP4430_TESLA_DYNDEP_SHIFT 1 | 1677 | #define OMAP4430_TESLA_DYNDEP_SHIFT 1 |
1678 | #define OMAP4430_TESLA_DYNDEP_WIDTH 0x1 | ||
1424 | #define OMAP4430_TESLA_DYNDEP_MASK (1 << 1) | 1679 | #define OMAP4430_TESLA_DYNDEP_MASK (1 << 1) |
1425 | 1680 | ||
1426 | /* Used by CM_DUCATI_STATICDEP, CM_MPU_STATICDEP */ | 1681 | /* Used by CM_DUCATI_STATICDEP, CM_MPU_STATICDEP */ |
1427 | #define OMAP4430_TESLA_STATDEP_SHIFT 1 | 1682 | #define OMAP4430_TESLA_STATDEP_SHIFT 1 |
1683 | #define OMAP4430_TESLA_STATDEP_WIDTH 0x1 | ||
1428 | #define OMAP4430_TESLA_STATDEP_MASK (1 << 1) | 1684 | #define OMAP4430_TESLA_STATDEP_MASK (1 << 1) |
1429 | 1685 | ||
1430 | /* | 1686 | /* |
@@ -1433,13 +1689,16 @@ | |||
1433 | * CM_L4PER_DYNAMICDEP, CM_MPU_DYNAMICDEP, CM_TESLA_DYNAMICDEP | 1689 | * CM_L4PER_DYNAMICDEP, CM_MPU_DYNAMICDEP, CM_TESLA_DYNAMICDEP |
1434 | */ | 1690 | */ |
1435 | #define OMAP4430_WINDOWSIZE_SHIFT 24 | 1691 | #define OMAP4430_WINDOWSIZE_SHIFT 24 |
1692 | #define OMAP4430_WINDOWSIZE_WIDTH 0x4 | ||
1436 | #define OMAP4430_WINDOWSIZE_MASK (0xf << 24) | 1693 | #define OMAP4430_WINDOWSIZE_MASK (0xf << 24) |
1437 | 1694 | ||
1438 | /* Used by REVISION_CM1, REVISION_CM2 */ | 1695 | /* Used by REVISION_CM1, REVISION_CM2 */ |
1439 | #define OMAP4430_X_MAJOR_SHIFT 8 | 1696 | #define OMAP4430_X_MAJOR_SHIFT 8 |
1697 | #define OMAP4430_X_MAJOR_WIDTH 0x3 | ||
1440 | #define OMAP4430_X_MAJOR_MASK (0x7 << 8) | 1698 | #define OMAP4430_X_MAJOR_MASK (0x7 << 8) |
1441 | 1699 | ||
1442 | /* Used by REVISION_CM1, REVISION_CM2 */ | 1700 | /* Used by REVISION_CM1, REVISION_CM2 */ |
1443 | #define OMAP4430_Y_MINOR_SHIFT 0 | 1701 | #define OMAP4430_Y_MINOR_SHIFT 0 |
1702 | #define OMAP4430_Y_MINOR_WIDTH 0x6 | ||
1444 | #define OMAP4430_Y_MINOR_MASK (0x3f << 0) | 1703 | #define OMAP4430_Y_MINOR_MASK (0x3f << 0) |
1445 | #endif | 1704 | #endif |
diff --git a/arch/arm/mach-omap2/cm2xxx_3xxx.c b/arch/arm/mach-omap2/cm2xxx_3xxx.c index 389f9f8b570c..7f07ab02a5b3 100644 --- a/arch/arm/mach-omap2/cm2xxx_3xxx.c +++ b/arch/arm/mach-omap2/cm2xxx_3xxx.c | |||
@@ -18,8 +18,7 @@ | |||
18 | #include <linux/err.h> | 18 | #include <linux/err.h> |
19 | #include <linux/io.h> | 19 | #include <linux/io.h> |
20 | 20 | ||
21 | #include <plat/hardware.h> | 21 | #include "soc.h" |
22 | |||
23 | #include "iomap.h" | 22 | #include "iomap.h" |
24 | #include "common.h" | 23 | #include "common.h" |
25 | #include "cm.h" | 24 | #include "cm.h" |
@@ -36,7 +35,7 @@ | |||
36 | #define OMAP2XXX_APLL_AUTOIDLE_LOW_POWER_STOP 0x3 | 35 | #define OMAP2XXX_APLL_AUTOIDLE_LOW_POWER_STOP 0x3 |
37 | 36 | ||
38 | static const u8 cm_idlest_offs[] = { | 37 | static const u8 cm_idlest_offs[] = { |
39 | CM_IDLEST1, CM_IDLEST2, OMAP2430_CM_IDLEST3 | 38 | CM_IDLEST1, CM_IDLEST2, OMAP2430_CM_IDLEST3, OMAP24XX_CM_IDLEST4 |
40 | }; | 39 | }; |
41 | 40 | ||
42 | u32 omap2_cm_read_mod_reg(s16 module, u16 idx) | 41 | u32 omap2_cm_read_mod_reg(s16 module, u16 idx) |
diff --git a/arch/arm/mach-omap2/cm2xxx_3xxx.h b/arch/arm/mach-omap2/cm2xxx_3xxx.h index 088bbad73db5..57b2f3c2fbf3 100644 --- a/arch/arm/mach-omap2/cm2xxx_3xxx.h +++ b/arch/arm/mach-omap2/cm2xxx_3xxx.h | |||
@@ -71,6 +71,7 @@ | |||
71 | #define OMAP24XX_CM_FCLKEN2 0x0004 | 71 | #define OMAP24XX_CM_FCLKEN2 0x0004 |
72 | #define OMAP24XX_CM_ICLKEN4 0x001c | 72 | #define OMAP24XX_CM_ICLKEN4 0x001c |
73 | #define OMAP24XX_CM_AUTOIDLE4 0x003c | 73 | #define OMAP24XX_CM_AUTOIDLE4 0x003c |
74 | #define OMAP24XX_CM_IDLEST4 0x002c | ||
74 | 75 | ||
75 | #define OMAP2430_CM_IDLEST3 0x0028 | 76 | #define OMAP2430_CM_IDLEST3 0x0028 |
76 | 77 | ||
diff --git a/arch/arm/mach-omap2/common-board-devices.c b/arch/arm/mach-omap2/common-board-devices.c index c1875862679f..48daac2581b4 100644 --- a/arch/arm/mach-omap2/common-board-devices.c +++ b/arch/arm/mach-omap2/common-board-devices.c | |||
@@ -24,9 +24,10 @@ | |||
24 | #include <linux/spi/spi.h> | 24 | #include <linux/spi/spi.h> |
25 | #include <linux/spi/ads7846.h> | 25 | #include <linux/spi/ads7846.h> |
26 | 26 | ||
27 | #include <plat/mcspi.h> | 27 | #include <linux/platform_data/spi-omap2-mcspi.h> |
28 | #include <plat/nand.h> | 28 | #include <linux/platform_data/mtd-nand-omap2.h> |
29 | 29 | ||
30 | #include "common.h" | ||
30 | #include "common-board-devices.h" | 31 | #include "common-board-devices.h" |
31 | 32 | ||
32 | #if defined(CONFIG_TOUCHSCREEN_ADS7846) || \ | 33 | #if defined(CONFIG_TOUCHSCREEN_ADS7846) || \ |
@@ -119,8 +120,7 @@ void __init omap_nand_flash_init(int options, struct mtd_partition *parts, | |||
119 | } | 120 | } |
120 | 121 | ||
121 | if (nandcs > GPMC_CS_NUM) { | 122 | if (nandcs > GPMC_CS_NUM) { |
122 | printk(KERN_INFO "NAND: Unable to find configuration " | 123 | pr_info("NAND: Unable to find configuration in GPMC\n"); |
123 | "in GPMC\n "); | ||
124 | return; | 124 | return; |
125 | } | 125 | } |
126 | 126 | ||
diff --git a/arch/arm/mach-omap2/common.c b/arch/arm/mach-omap2/common.c index 069f9725b1c3..17950c6e130b 100644 --- a/arch/arm/mach-omap2/common.c +++ b/arch/arm/mach-omap2/common.c | |||
@@ -17,11 +17,9 @@ | |||
17 | #include <linux/clk.h> | 17 | #include <linux/clk.h> |
18 | #include <linux/io.h> | 18 | #include <linux/io.h> |
19 | 19 | ||
20 | #include <plat/hardware.h> | ||
21 | #include <plat/board.h> | ||
22 | #include <plat/mux.h> | ||
23 | #include <plat/clock.h> | 20 | #include <plat/clock.h> |
24 | 21 | ||
22 | #include "soc.h" | ||
25 | #include "iomap.h" | 23 | #include "iomap.h" |
26 | #include "common.h" | 24 | #include "common.h" |
27 | #include "sdrc.h" | 25 | #include "sdrc.h" |
diff --git a/arch/arm/mach-omap2/common.h b/arch/arm/mach-omap2/common.h index 1f65b1871c23..7045e4d61ac3 100644 --- a/arch/arm/mach-omap2/common.h +++ b/arch/arm/mach-omap2/common.h | |||
@@ -26,11 +26,18 @@ | |||
26 | #define __ARCH_ARM_MACH_OMAP2PLUS_COMMON_H | 26 | #define __ARCH_ARM_MACH_OMAP2PLUS_COMMON_H |
27 | #ifndef __ASSEMBLER__ | 27 | #ifndef __ASSEMBLER__ |
28 | 28 | ||
29 | #include <linux/irq.h> | ||
29 | #include <linux/delay.h> | 30 | #include <linux/delay.h> |
30 | #include <linux/i2c/twl.h> | 31 | #include <linux/i2c/twl.h> |
31 | #include <plat/common.h> | 32 | |
32 | #include <asm/proc-fns.h> | 33 | #include <asm/proc-fns.h> |
33 | 34 | ||
35 | #include <plat/cpu.h> | ||
36 | #include <plat/serial.h> | ||
37 | #include <plat/common.h> | ||
38 | |||
39 | #define OMAP_INTC_START NR_IRQS | ||
40 | |||
34 | #ifdef CONFIG_SOC_OMAP2420 | 41 | #ifdef CONFIG_SOC_OMAP2420 |
35 | extern void omap242x_map_common_io(void); | 42 | extern void omap242x_map_common_io(void); |
36 | #else | 43 | #else |
@@ -278,6 +285,11 @@ extern void omap_secondary_startup(void); | |||
278 | extern u32 omap_modify_auxcoreboot0(u32 set_mask, u32 clear_mask); | 285 | extern u32 omap_modify_auxcoreboot0(u32 set_mask, u32 clear_mask); |
279 | extern void omap_auxcoreboot_addr(u32 cpu_addr); | 286 | extern void omap_auxcoreboot_addr(u32 cpu_addr); |
280 | extern u32 omap_read_auxcoreboot0(void); | 287 | extern u32 omap_read_auxcoreboot0(void); |
288 | |||
289 | extern void omap4_cpu_die(unsigned int cpu); | ||
290 | |||
291 | extern struct smp_operations omap4_smp_ops; | ||
292 | |||
281 | extern void omap5_secondary_startup(void); | 293 | extern void omap5_secondary_startup(void); |
282 | #endif | 294 | #endif |
283 | 295 | ||
diff --git a/arch/arm/mach-omap2/control.c b/arch/arm/mach-omap2/control.c index 3223b81e7532..d1ff8399a222 100644 --- a/arch/arm/mach-omap2/control.c +++ b/arch/arm/mach-omap2/control.c | |||
@@ -15,9 +15,9 @@ | |||
15 | #include <linux/kernel.h> | 15 | #include <linux/kernel.h> |
16 | #include <linux/io.h> | 16 | #include <linux/io.h> |
17 | 17 | ||
18 | #include <plat/hardware.h> | ||
19 | #include <plat/sdrc.h> | 18 | #include <plat/sdrc.h> |
20 | 19 | ||
20 | #include "soc.h" | ||
21 | #include "iomap.h" | 21 | #include "iomap.h" |
22 | #include "common.h" | 22 | #include "common.h" |
23 | #include "cm-regbits-34xx.h" | 23 | #include "cm-regbits-34xx.h" |
diff --git a/arch/arm/mach-omap2/control.h b/arch/arm/mach-omap2/control.h index b8cdc8531b60..a89e8256fd0e 100644 --- a/arch/arm/mach-omap2/control.h +++ b/arch/arm/mach-omap2/control.h | |||
@@ -16,12 +16,12 @@ | |||
16 | #ifndef __ARCH_ARM_MACH_OMAP2_CONTROL_H | 16 | #ifndef __ARCH_ARM_MACH_OMAP2_CONTROL_H |
17 | #define __ARCH_ARM_MACH_OMAP2_CONTROL_H | 17 | #define __ARCH_ARM_MACH_OMAP2_CONTROL_H |
18 | 18 | ||
19 | #include <mach/ctrl_module_core_44xx.h> | 19 | #include "ctrl_module_core_44xx.h" |
20 | #include <mach/ctrl_module_wkup_44xx.h> | 20 | #include "ctrl_module_wkup_44xx.h" |
21 | #include <mach/ctrl_module_pad_core_44xx.h> | 21 | #include "ctrl_module_pad_core_44xx.h" |
22 | #include <mach/ctrl_module_pad_wkup_44xx.h> | 22 | #include "ctrl_module_pad_wkup_44xx.h" |
23 | 23 | ||
24 | #include <plat/am33xx.h> | 24 | #include "am33xx.h" |
25 | 25 | ||
26 | #ifndef __ASSEMBLY__ | 26 | #ifndef __ASSEMBLY__ |
27 | #define OMAP242X_CTRL_REGADDR(reg) \ | 27 | #define OMAP242X_CTRL_REGADDR(reg) \ |
@@ -354,6 +354,7 @@ | |||
354 | 354 | ||
355 | /* AM33XX CONTROL_STATUS bitfields (partial) */ | 355 | /* AM33XX CONTROL_STATUS bitfields (partial) */ |
356 | #define AM33XX_CONTROL_STATUS_SYSBOOT1_SHIFT 22 | 356 | #define AM33XX_CONTROL_STATUS_SYSBOOT1_SHIFT 22 |
357 | #define AM33XX_CONTROL_STATUS_SYSBOOT1_WIDTH 0x2 | ||
357 | #define AM33XX_CONTROL_STATUS_SYSBOOT1_MASK (0x3 << 22) | 358 | #define AM33XX_CONTROL_STATUS_SYSBOOT1_MASK (0x3 << 22) |
358 | 359 | ||
359 | /* CONTROL OMAP STATUS register to identify OMAP3 features */ | 360 | /* CONTROL OMAP STATUS register to identify OMAP3 features */ |
diff --git a/arch/arm/mach-omap2/cpuidle34xx.c b/arch/arm/mach-omap2/cpuidle34xx.c index f2a49a48ef59..bc2756959be5 100644 --- a/arch/arm/mach-omap2/cpuidle34xx.c +++ b/arch/arm/mach-omap2/cpuidle34xx.c | |||
@@ -28,7 +28,6 @@ | |||
28 | #include <linux/cpu_pm.h> | 28 | #include <linux/cpu_pm.h> |
29 | 29 | ||
30 | #include <plat/prcm.h> | 30 | #include <plat/prcm.h> |
31 | #include <plat/irqs.h> | ||
32 | #include "powerdomain.h" | 31 | #include "powerdomain.h" |
33 | #include "clockdomain.h" | 32 | #include "clockdomain.h" |
34 | 33 | ||
diff --git a/arch/arm/mach-omap2/include/mach/ctrl_module_core_44xx.h b/arch/arm/mach-omap2/ctrl_module_core_44xx.h index 01970824e0e5..01970824e0e5 100644 --- a/arch/arm/mach-omap2/include/mach/ctrl_module_core_44xx.h +++ b/arch/arm/mach-omap2/ctrl_module_core_44xx.h | |||
diff --git a/arch/arm/mach-omap2/include/mach/ctrl_module_pad_core_44xx.h b/arch/arm/mach-omap2/ctrl_module_pad_core_44xx.h index c88420de1151..c88420de1151 100644 --- a/arch/arm/mach-omap2/include/mach/ctrl_module_pad_core_44xx.h +++ b/arch/arm/mach-omap2/ctrl_module_pad_core_44xx.h | |||
diff --git a/arch/arm/mach-omap2/include/mach/ctrl_module_pad_wkup_44xx.h b/arch/arm/mach-omap2/ctrl_module_pad_wkup_44xx.h index 17c9b37042c0..17c9b37042c0 100644 --- a/arch/arm/mach-omap2/include/mach/ctrl_module_pad_wkup_44xx.h +++ b/arch/arm/mach-omap2/ctrl_module_pad_wkup_44xx.h | |||
diff --git a/arch/arm/mach-omap2/include/mach/ctrl_module_wkup_44xx.h b/arch/arm/mach-omap2/ctrl_module_wkup_44xx.h index a0af9baec3f7..a0af9baec3f7 100644 --- a/arch/arm/mach-omap2/include/mach/ctrl_module_wkup_44xx.h +++ b/arch/arm/mach-omap2/ctrl_module_wkup_44xx.h | |||
diff --git a/arch/arm/mach-omap2/debug-devices.h b/arch/arm/mach-omap2/debug-devices.h new file mode 100644 index 000000000000..a4edbd2f7484 --- /dev/null +++ b/arch/arm/mach-omap2/debug-devices.h | |||
@@ -0,0 +1,9 @@ | |||
1 | #ifndef _OMAP_DEBUG_DEVICES_H | ||
2 | #define _OMAP_DEBUG_DEVICES_H | ||
3 | |||
4 | #include <linux/types.h> | ||
5 | |||
6 | /* for TI reference platforms sharing the same debug card */ | ||
7 | extern int debug_card_init(u32 addr, unsigned gpio); | ||
8 | |||
9 | #endif | ||
diff --git a/arch/arm/mach-omap2/devices.c b/arch/arm/mach-omap2/devices.c index c00c68961bb8..c8c211731d26 100644 --- a/arch/arm/mach-omap2/devices.c +++ b/arch/arm/mach-omap2/devices.c | |||
@@ -17,21 +17,20 @@ | |||
17 | #include <linux/err.h> | 17 | #include <linux/err.h> |
18 | #include <linux/slab.h> | 18 | #include <linux/slab.h> |
19 | #include <linux/of.h> | 19 | #include <linux/of.h> |
20 | #include <linux/pinctrl/machine.h> | ||
20 | #include <linux/platform_data/omap4-keypad.h> | 21 | #include <linux/platform_data/omap4-keypad.h> |
21 | 22 | ||
22 | #include <mach/hardware.h> | ||
23 | #include <mach/irqs.h> | ||
24 | #include <asm/mach-types.h> | 23 | #include <asm/mach-types.h> |
25 | #include <asm/mach/map.h> | 24 | #include <asm/mach/map.h> |
26 | #include <asm/pmu.h> | ||
27 | 25 | ||
28 | #include "iomap.h" | 26 | #include "iomap.h" |
29 | #include <plat/board.h> | ||
30 | #include <plat/dma.h> | 27 | #include <plat/dma.h> |
31 | #include <plat/omap_hwmod.h> | 28 | #include <plat/omap_hwmod.h> |
32 | #include <plat/omap_device.h> | 29 | #include <plat/omap_device.h> |
33 | #include <plat/omap4-keypad.h> | 30 | #include "omap4-keypad.h" |
34 | 31 | ||
32 | #include "soc.h" | ||
33 | #include "common.h" | ||
35 | #include "mux.h" | 34 | #include "mux.h" |
36 | #include "control.h" | 35 | #include "control.h" |
37 | #include "devices.h" | 36 | #include "devices.h" |
@@ -112,7 +111,7 @@ static struct resource omap2cam_resources[] = { | |||
112 | .flags = IORESOURCE_MEM, | 111 | .flags = IORESOURCE_MEM, |
113 | }, | 112 | }, |
114 | { | 113 | { |
115 | .start = INT_24XX_CAM_IRQ, | 114 | .start = 24 + OMAP_INTC_START, |
116 | .flags = IORESOURCE_IRQ, | 115 | .flags = IORESOURCE_IRQ, |
117 | } | 116 | } |
118 | }; | 117 | }; |
@@ -201,7 +200,7 @@ static struct resource omap3isp_resources[] = { | |||
201 | .flags = IORESOURCE_MEM, | 200 | .flags = IORESOURCE_MEM, |
202 | }, | 201 | }, |
203 | { | 202 | { |
204 | .start = INT_34XX_CAM_IRQ, | 203 | .start = 24 + OMAP_INTC_START, |
205 | .flags = IORESOURCE_IRQ, | 204 | .flags = IORESOURCE_IRQ, |
206 | } | 205 | } |
207 | }; | 206 | }; |
@@ -385,7 +384,7 @@ static inline void omap_init_hdmi_audio(void) {} | |||
385 | 384 | ||
386 | #if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE) | 385 | #if defined(CONFIG_SPI_OMAP24XX) || defined(CONFIG_SPI_OMAP24XX_MODULE) |
387 | 386 | ||
388 | #include <plat/mcspi.h> | 387 | #include <linux/platform_data/spi-omap2-mcspi.h> |
389 | 388 | ||
390 | static int __init omap_mcspi_init(struct omap_hwmod *oh, void *unused) | 389 | static int __init omap_mcspi_init(struct omap_hwmod *oh, void *unused) |
391 | { | 390 | { |
@@ -434,37 +433,24 @@ static void omap_init_mcspi(void) | |||
434 | static inline void omap_init_mcspi(void) {} | 433 | static inline void omap_init_mcspi(void) {} |
435 | #endif | 434 | #endif |
436 | 435 | ||
437 | static struct resource omap2_pmu_resource = { | 436 | /** |
438 | .start = 3, | 437 | * omap_init_rng - bind the RNG hwmod to the RNG omap_device |
439 | .end = 3, | 438 | * |
440 | .flags = IORESOURCE_IRQ, | 439 | * Bind the RNG hwmod to the RNG omap_device. No return value. |
441 | }; | 440 | */ |
442 | 441 | static void omap_init_rng(void) | |
443 | static struct resource omap3_pmu_resource = { | ||
444 | .start = INT_34XX_BENCH_MPU_EMUL, | ||
445 | .end = INT_34XX_BENCH_MPU_EMUL, | ||
446 | .flags = IORESOURCE_IRQ, | ||
447 | }; | ||
448 | |||
449 | static struct platform_device omap_pmu_device = { | ||
450 | .name = "arm-pmu", | ||
451 | .id = ARM_PMU_DEVICE_CPU, | ||
452 | .num_resources = 1, | ||
453 | }; | ||
454 | |||
455 | static void omap_init_pmu(void) | ||
456 | { | 442 | { |
457 | if (cpu_is_omap24xx()) | 443 | struct omap_hwmod *oh; |
458 | omap_pmu_device.resource = &omap2_pmu_resource; | 444 | struct platform_device *pdev; |
459 | else if (cpu_is_omap34xx()) | 445 | |
460 | omap_pmu_device.resource = &omap3_pmu_resource; | 446 | oh = omap_hwmod_lookup("rng"); |
461 | else | 447 | if (!oh) |
462 | return; | 448 | return; |
463 | 449 | ||
464 | platform_device_register(&omap_pmu_device); | 450 | pdev = omap_device_build("omap_rng", -1, oh, NULL, 0, NULL, 0, 0); |
451 | WARN(IS_ERR(pdev), "Can't build omap_device for omap_rng\n"); | ||
465 | } | 452 | } |
466 | 453 | ||
467 | |||
468 | #if defined(CONFIG_CRYPTO_DEV_OMAP_SHAM) || defined(CONFIG_CRYPTO_DEV_OMAP_SHAM_MODULE) | 454 | #if defined(CONFIG_CRYPTO_DEV_OMAP_SHAM) || defined(CONFIG_CRYPTO_DEV_OMAP_SHAM_MODULE) |
469 | 455 | ||
470 | #ifdef CONFIG_ARCH_OMAP2 | 456 | #ifdef CONFIG_ARCH_OMAP2 |
@@ -475,7 +461,7 @@ static struct resource omap2_sham_resources[] = { | |||
475 | .flags = IORESOURCE_MEM, | 461 | .flags = IORESOURCE_MEM, |
476 | }, | 462 | }, |
477 | { | 463 | { |
478 | .start = INT_24XX_SHA1MD5, | 464 | .start = 51 + OMAP_INTC_START, |
479 | .flags = IORESOURCE_IRQ, | 465 | .flags = IORESOURCE_IRQ, |
480 | } | 466 | } |
481 | }; | 467 | }; |
@@ -493,7 +479,7 @@ static struct resource omap3_sham_resources[] = { | |||
493 | .flags = IORESOURCE_MEM, | 479 | .flags = IORESOURCE_MEM, |
494 | }, | 480 | }, |
495 | { | 481 | { |
496 | .start = INT_34XX_SHA1MD52_IRQ, | 482 | .start = 49 + OMAP_INTC_START, |
497 | .flags = IORESOURCE_IRQ, | 483 | .flags = IORESOURCE_IRQ, |
498 | }, | 484 | }, |
499 | { | 485 | { |
@@ -631,6 +617,10 @@ static inline void omap_init_vout(void) {} | |||
631 | 617 | ||
632 | static int __init omap2_init_devices(void) | 618 | static int __init omap2_init_devices(void) |
633 | { | 619 | { |
620 | /* Enable dummy states for those platforms without pinctrl support */ | ||
621 | if (!of_have_populated_dt()) | ||
622 | pinctrl_provide_dummies(); | ||
623 | |||
634 | /* | 624 | /* |
635 | * please keep these calls, and their implementations above, | 625 | * please keep these calls, and their implementations above, |
636 | * in alphabetical order so they're easier to sort through. | 626 | * in alphabetical order so they're easier to sort through. |
@@ -645,8 +635,8 @@ static int __init omap2_init_devices(void) | |||
645 | omap_init_mcpdm(); | 635 | omap_init_mcpdm(); |
646 | omap_init_mcspi(); | 636 | omap_init_mcspi(); |
647 | } | 637 | } |
648 | omap_init_pmu(); | ||
649 | omap_init_sti(); | 638 | omap_init_sti(); |
639 | omap_init_rng(); | ||
650 | omap_init_sham(); | 640 | omap_init_sham(); |
651 | omap_init_aes(); | 641 | omap_init_aes(); |
652 | omap_init_vout(); | 642 | omap_init_vout(); |
diff --git a/arch/arm/mach-omap2/display.c b/arch/arm/mach-omap2/display.c index ee40739b55c0..1011995f150a 100644 --- a/arch/arm/mach-omap2/display.c +++ b/arch/arm/mach-omap2/display.c | |||
@@ -76,14 +76,14 @@ struct omap_dss_hwmod_data { | |||
76 | const int id; | 76 | const int id; |
77 | }; | 77 | }; |
78 | 78 | ||
79 | static const struct omap_dss_hwmod_data omap2_dss_hwmod_data[] __initdata = { | 79 | static const struct omap_dss_hwmod_data omap2_dss_hwmod_data[] __initconst = { |
80 | { "dss_core", "omapdss_dss", -1 }, | 80 | { "dss_core", "omapdss_dss", -1 }, |
81 | { "dss_dispc", "omapdss_dispc", -1 }, | 81 | { "dss_dispc", "omapdss_dispc", -1 }, |
82 | { "dss_rfbi", "omapdss_rfbi", -1 }, | 82 | { "dss_rfbi", "omapdss_rfbi", -1 }, |
83 | { "dss_venc", "omapdss_venc", -1 }, | 83 | { "dss_venc", "omapdss_venc", -1 }, |
84 | }; | 84 | }; |
85 | 85 | ||
86 | static const struct omap_dss_hwmod_data omap3_dss_hwmod_data[] __initdata = { | 86 | static const struct omap_dss_hwmod_data omap3_dss_hwmod_data[] __initconst = { |
87 | { "dss_core", "omapdss_dss", -1 }, | 87 | { "dss_core", "omapdss_dss", -1 }, |
88 | { "dss_dispc", "omapdss_dispc", -1 }, | 88 | { "dss_dispc", "omapdss_dispc", -1 }, |
89 | { "dss_rfbi", "omapdss_rfbi", -1 }, | 89 | { "dss_rfbi", "omapdss_rfbi", -1 }, |
@@ -91,7 +91,7 @@ static const struct omap_dss_hwmod_data omap3_dss_hwmod_data[] __initdata = { | |||
91 | { "dss_dsi1", "omapdss_dsi", 0 }, | 91 | { "dss_dsi1", "omapdss_dsi", 0 }, |
92 | }; | 92 | }; |
93 | 93 | ||
94 | static const struct omap_dss_hwmod_data omap4_dss_hwmod_data[] __initdata = { | 94 | static const struct omap_dss_hwmod_data omap4_dss_hwmod_data[] __initconst = { |
95 | { "dss_core", "omapdss_dss", -1 }, | 95 | { "dss_core", "omapdss_dss", -1 }, |
96 | { "dss_dispc", "omapdss_dispc", -1 }, | 96 | { "dss_dispc", "omapdss_dispc", -1 }, |
97 | { "dss_rfbi", "omapdss_rfbi", -1 }, | 97 | { "dss_rfbi", "omapdss_rfbi", -1 }, |
@@ -220,7 +220,7 @@ static struct platform_device *create_dss_pdev(const char *pdev_name, | |||
220 | 220 | ||
221 | ohs[0] = oh; | 221 | ohs[0] = oh; |
222 | od = omap_device_alloc(pdev, ohs, 1, NULL, 0); | 222 | od = omap_device_alloc(pdev, ohs, 1, NULL, 0); |
223 | if (!od) { | 223 | if (IS_ERR(od)) { |
224 | pr_err("Could not alloc omap_device for %s\n", pdev_name); | 224 | pr_err("Could not alloc omap_device for %s\n", pdev_name); |
225 | r = -ENOMEM; | 225 | r = -ENOMEM; |
226 | goto err; | 226 | goto err; |
@@ -487,7 +487,7 @@ int omap_dss_reset(struct omap_hwmod *oh) | |||
487 | 487 | ||
488 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) | 488 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) |
489 | if (oc->_clk) | 489 | if (oc->_clk) |
490 | clk_enable(oc->_clk); | 490 | clk_prepare_enable(oc->_clk); |
491 | 491 | ||
492 | dispc_disable_outputs(); | 492 | dispc_disable_outputs(); |
493 | 493 | ||
@@ -514,7 +514,7 @@ int omap_dss_reset(struct omap_hwmod *oh) | |||
514 | 514 | ||
515 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) | 515 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) |
516 | if (oc->_clk) | 516 | if (oc->_clk) |
517 | clk_disable(oc->_clk); | 517 | clk_disable_unprepare(oc->_clk); |
518 | 518 | ||
519 | r = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0; | 519 | r = (c == MAX_MODULE_SOFTRESET_WAIT) ? -ETIMEDOUT : 0; |
520 | 520 | ||
diff --git a/arch/arm/mach-omap2/dpll3xxx.c b/arch/arm/mach-omap2/dpll3xxx.c index b9c8d2f6a81f..814e1808e158 100644 --- a/arch/arm/mach-omap2/dpll3xxx.c +++ b/arch/arm/mach-omap2/dpll3xxx.c | |||
@@ -28,9 +28,9 @@ | |||
28 | #include <linux/bitops.h> | 28 | #include <linux/bitops.h> |
29 | #include <linux/clkdev.h> | 29 | #include <linux/clkdev.h> |
30 | 30 | ||
31 | #include <plat/cpu.h> | ||
32 | #include <plat/clock.h> | 31 | #include <plat/clock.h> |
33 | 32 | ||
33 | #include "soc.h" | ||
34 | #include "clock.h" | 34 | #include "clock.h" |
35 | #include "cm2xxx_3xxx.h" | 35 | #include "cm2xxx_3xxx.h" |
36 | #include "cm-regbits-34xx.h" | 36 | #include "cm-regbits-34xx.h" |
@@ -63,8 +63,10 @@ static int _omap3_wait_dpll_status(struct clk *clk, u8 state) | |||
63 | const struct dpll_data *dd; | 63 | const struct dpll_data *dd; |
64 | int i = 0; | 64 | int i = 0; |
65 | int ret = -EINVAL; | 65 | int ret = -EINVAL; |
66 | const char *clk_name; | ||
66 | 67 | ||
67 | dd = clk->dpll_data; | 68 | dd = clk->dpll_data; |
69 | clk_name = __clk_get_name(clk); | ||
68 | 70 | ||
69 | state <<= __ffs(dd->idlest_mask); | 71 | state <<= __ffs(dd->idlest_mask); |
70 | 72 | ||
@@ -76,10 +78,10 @@ static int _omap3_wait_dpll_status(struct clk *clk, u8 state) | |||
76 | 78 | ||
77 | if (i == MAX_DPLL_WAIT_TRIES) { | 79 | if (i == MAX_DPLL_WAIT_TRIES) { |
78 | printk(KERN_ERR "clock: %s failed transition to '%s'\n", | 80 | printk(KERN_ERR "clock: %s failed transition to '%s'\n", |
79 | clk->name, (state) ? "locked" : "bypassed"); | 81 | clk_name, (state) ? "locked" : "bypassed"); |
80 | } else { | 82 | } else { |
81 | pr_debug("clock: %s transition to '%s' in %d loops\n", | 83 | pr_debug("clock: %s transition to '%s' in %d loops\n", |
82 | clk->name, (state) ? "locked" : "bypassed", i); | 84 | clk_name, (state) ? "locked" : "bypassed", i); |
83 | 85 | ||
84 | ret = 0; | 86 | ret = 0; |
85 | } | 87 | } |
@@ -93,7 +95,7 @@ static u16 _omap3_dpll_compute_freqsel(struct clk *clk, u8 n) | |||
93 | unsigned long fint; | 95 | unsigned long fint; |
94 | u16 f = 0; | 96 | u16 f = 0; |
95 | 97 | ||
96 | fint = clk->dpll_data->clk_ref->rate / n; | 98 | fint = __clk_get_rate(clk->dpll_data->clk_ref) / n; |
97 | 99 | ||
98 | pr_debug("clock: fint is %lu\n", fint); | 100 | pr_debug("clock: fint is %lu\n", fint); |
99 | 101 | ||
@@ -140,7 +142,7 @@ static int _omap3_noncore_dpll_lock(struct clk *clk) | |||
140 | u8 state = 1; | 142 | u8 state = 1; |
141 | int r = 0; | 143 | int r = 0; |
142 | 144 | ||
143 | pr_debug("clock: locking DPLL %s\n", clk->name); | 145 | pr_debug("clock: locking DPLL %s\n", __clk_get_name(clk)); |
144 | 146 | ||
145 | dd = clk->dpll_data; | 147 | dd = clk->dpll_data; |
146 | state <<= __ffs(dd->idlest_mask); | 148 | state <<= __ffs(dd->idlest_mask); |
@@ -187,7 +189,7 @@ static int _omap3_noncore_dpll_bypass(struct clk *clk) | |||
187 | return -EINVAL; | 189 | return -EINVAL; |
188 | 190 | ||
189 | pr_debug("clock: configuring DPLL %s for low-power bypass\n", | 191 | pr_debug("clock: configuring DPLL %s for low-power bypass\n", |
190 | clk->name); | 192 | __clk_get_name(clk)); |
191 | 193 | ||
192 | ai = omap3_dpll_autoidle_read(clk); | 194 | ai = omap3_dpll_autoidle_read(clk); |
193 | 195 | ||
@@ -217,7 +219,7 @@ static int _omap3_noncore_dpll_stop(struct clk *clk) | |||
217 | if (!(clk->dpll_data->modes & (1 << DPLL_LOW_POWER_STOP))) | 219 | if (!(clk->dpll_data->modes & (1 << DPLL_LOW_POWER_STOP))) |
218 | return -EINVAL; | 220 | return -EINVAL; |
219 | 221 | ||
220 | pr_debug("clock: stopping DPLL %s\n", clk->name); | 222 | pr_debug("clock: stopping DPLL %s\n", __clk_get_name(clk)); |
221 | 223 | ||
222 | ai = omap3_dpll_autoidle_read(clk); | 224 | ai = omap3_dpll_autoidle_read(clk); |
223 | 225 | ||
@@ -245,7 +247,7 @@ static void _lookup_dco(struct clk *clk, u8 *dco, u16 m, u8 n) | |||
245 | { | 247 | { |
246 | unsigned long fint, clkinp; /* watch out for overflow */ | 248 | unsigned long fint, clkinp; /* watch out for overflow */ |
247 | 249 | ||
248 | clkinp = clk->parent->rate; | 250 | clkinp = __clk_get_rate(__clk_get_parent(clk)); |
249 | fint = (clkinp / n) * m; | 251 | fint = (clkinp / n) * m; |
250 | 252 | ||
251 | if (fint < 1000000000) | 253 | if (fint < 1000000000) |
@@ -271,7 +273,7 @@ static void _lookup_sddiv(struct clk *clk, u8 *sd_div, u16 m, u8 n) | |||
271 | unsigned long clkinp, sd; /* watch out for overflow */ | 273 | unsigned long clkinp, sd; /* watch out for overflow */ |
272 | int mod1, mod2; | 274 | int mod1, mod2; |
273 | 275 | ||
274 | clkinp = clk->parent->rate; | 276 | clkinp = __clk_get_rate(__clk_get_parent(clk)); |
275 | 277 | ||
276 | /* | 278 | /* |
277 | * target sigma-delta to near 250MHz | 279 | * target sigma-delta to near 250MHz |
@@ -311,7 +313,7 @@ static int omap3_noncore_dpll_program(struct clk *clk, u16 m, u8 n, u16 freqsel) | |||
311 | * Set jitter correction. No jitter correction for OMAP4 and 3630 | 313 | * Set jitter correction. No jitter correction for OMAP4 and 3630 |
312 | * since freqsel field is no longer present | 314 | * since freqsel field is no longer present |
313 | */ | 315 | */ |
314 | if (!cpu_is_omap44xx() && !cpu_is_omap3630()) { | 316 | if (!soc_is_am33xx() && !cpu_is_omap44xx() && !cpu_is_omap3630()) { |
315 | v = __raw_readl(dd->control_reg); | 317 | v = __raw_readl(dd->control_reg); |
316 | v &= ~dd->freqsel_mask; | 318 | v &= ~dd->freqsel_mask; |
317 | v |= freqsel << __ffs(dd->freqsel_mask); | 319 | v |= freqsel << __ffs(dd->freqsel_mask); |
@@ -380,16 +382,19 @@ int omap3_noncore_dpll_enable(struct clk *clk) | |||
380 | { | 382 | { |
381 | int r; | 383 | int r; |
382 | struct dpll_data *dd; | 384 | struct dpll_data *dd; |
385 | struct clk *parent; | ||
383 | 386 | ||
384 | dd = clk->dpll_data; | 387 | dd = clk->dpll_data; |
385 | if (!dd) | 388 | if (!dd) |
386 | return -EINVAL; | 389 | return -EINVAL; |
387 | 390 | ||
388 | if (clk->rate == dd->clk_bypass->rate) { | 391 | parent = __clk_get_parent(clk); |
389 | WARN_ON(clk->parent != dd->clk_bypass); | 392 | |
393 | if (__clk_get_rate(clk) == __clk_get_rate(dd->clk_bypass)) { | ||
394 | WARN_ON(parent != dd->clk_bypass); | ||
390 | r = _omap3_noncore_dpll_bypass(clk); | 395 | r = _omap3_noncore_dpll_bypass(clk); |
391 | } else { | 396 | } else { |
392 | WARN_ON(clk->parent != dd->clk_ref); | 397 | WARN_ON(parent != dd->clk_ref); |
393 | r = _omap3_noncore_dpll_lock(clk); | 398 | r = _omap3_noncore_dpll_lock(clk); |
394 | } | 399 | } |
395 | /* | 400 | /* |
@@ -432,7 +437,7 @@ void omap3_noncore_dpll_disable(struct clk *clk) | |||
432 | int omap3_noncore_dpll_set_rate(struct clk *clk, unsigned long rate) | 437 | int omap3_noncore_dpll_set_rate(struct clk *clk, unsigned long rate) |
433 | { | 438 | { |
434 | struct clk *new_parent = NULL; | 439 | struct clk *new_parent = NULL; |
435 | unsigned long hw_rate; | 440 | unsigned long hw_rate, bypass_rate; |
436 | u16 freqsel = 0; | 441 | u16 freqsel = 0; |
437 | struct dpll_data *dd; | 442 | struct dpll_data *dd; |
438 | int ret; | 443 | int ret; |
@@ -456,7 +461,8 @@ int omap3_noncore_dpll_set_rate(struct clk *clk, unsigned long rate) | |||
456 | omap2_clk_enable(dd->clk_bypass); | 461 | omap2_clk_enable(dd->clk_bypass); |
457 | omap2_clk_enable(dd->clk_ref); | 462 | omap2_clk_enable(dd->clk_ref); |
458 | 463 | ||
459 | if (dd->clk_bypass->rate == rate && | 464 | bypass_rate = __clk_get_rate(dd->clk_bypass); |
465 | if (bypass_rate == rate && | ||
460 | (clk->dpll_data->modes & (1 << DPLL_LOW_POWER_BYPASS))) { | 466 | (clk->dpll_data->modes & (1 << DPLL_LOW_POWER_BYPASS))) { |
461 | pr_debug("clock: %s: set rate: entering bypass.\n", clk->name); | 467 | pr_debug("clock: %s: set rate: entering bypass.\n", clk->name); |
462 | 468 | ||
@@ -471,7 +477,7 @@ int omap3_noncore_dpll_set_rate(struct clk *clk, unsigned long rate) | |||
471 | return -EINVAL; | 477 | return -EINVAL; |
472 | 478 | ||
473 | /* No freqsel on OMAP4 and OMAP3630 */ | 479 | /* No freqsel on OMAP4 and OMAP3630 */ |
474 | if (!cpu_is_omap44xx() && !cpu_is_omap3630()) { | 480 | if (!soc_is_am33xx() && !cpu_is_omap44xx() && !cpu_is_omap3630()) { |
475 | freqsel = _omap3_dpll_compute_freqsel(clk, | 481 | freqsel = _omap3_dpll_compute_freqsel(clk, |
476 | dd->last_rounded_n); | 482 | dd->last_rounded_n); |
477 | if (!freqsel) | 483 | if (!freqsel) |
@@ -479,7 +485,7 @@ int omap3_noncore_dpll_set_rate(struct clk *clk, unsigned long rate) | |||
479 | } | 485 | } |
480 | 486 | ||
481 | pr_debug("clock: %s: set rate: locking rate to %lu.\n", | 487 | pr_debug("clock: %s: set rate: locking rate to %lu.\n", |
482 | clk->name, rate); | 488 | __clk_get_name(clk), rate); |
483 | 489 | ||
484 | ret = omap3_noncore_dpll_program(clk, dd->last_rounded_m, | 490 | ret = omap3_noncore_dpll_program(clk, dd->last_rounded_m, |
485 | dd->last_rounded_n, freqsel); | 491 | dd->last_rounded_n, freqsel); |
@@ -557,7 +563,7 @@ void omap3_dpll_allow_idle(struct clk *clk) | |||
557 | 563 | ||
558 | if (!dd->autoidle_reg) { | 564 | if (!dd->autoidle_reg) { |
559 | pr_debug("clock: DPLL %s: autoidle not supported\n", | 565 | pr_debug("clock: DPLL %s: autoidle not supported\n", |
560 | clk->name); | 566 | __clk_get_name(clk)); |
561 | return; | 567 | return; |
562 | } | 568 | } |
563 | 569 | ||
@@ -591,7 +597,7 @@ void omap3_dpll_deny_idle(struct clk *clk) | |||
591 | 597 | ||
592 | if (!dd->autoidle_reg) { | 598 | if (!dd->autoidle_reg) { |
593 | pr_debug("clock: DPLL %s: autoidle not supported\n", | 599 | pr_debug("clock: DPLL %s: autoidle not supported\n", |
594 | clk->name); | 600 | __clk_get_name(clk)); |
595 | return; | 601 | return; |
596 | } | 602 | } |
597 | 603 | ||
@@ -617,25 +623,30 @@ unsigned long omap3_clkoutx2_recalc(struct clk *clk) | |||
617 | unsigned long rate; | 623 | unsigned long rate; |
618 | u32 v; | 624 | u32 v; |
619 | struct clk *pclk; | 625 | struct clk *pclk; |
626 | unsigned long parent_rate; | ||
620 | 627 | ||
621 | /* Walk up the parents of clk, looking for a DPLL */ | 628 | /* Walk up the parents of clk, looking for a DPLL */ |
622 | pclk = clk->parent; | 629 | pclk = __clk_get_parent(clk); |
623 | while (pclk && !pclk->dpll_data) | 630 | while (pclk && !pclk->dpll_data) |
624 | pclk = pclk->parent; | 631 | pclk = __clk_get_parent(pclk); |
625 | 632 | ||
626 | /* clk does not have a DPLL as a parent? */ | 633 | /* clk does not have a DPLL as a parent? error in the clock data */ |
627 | WARN_ON(!pclk); | 634 | if (!pclk) { |
635 | WARN_ON(1); | ||
636 | return 0; | ||
637 | } | ||
628 | 638 | ||
629 | dd = pclk->dpll_data; | 639 | dd = pclk->dpll_data; |
630 | 640 | ||
631 | WARN_ON(!dd->enable_mask); | 641 | WARN_ON(!dd->enable_mask); |
632 | 642 | ||
643 | parent_rate = __clk_get_rate(__clk_get_parent(clk)); | ||
633 | v = __raw_readl(dd->control_reg) & dd->enable_mask; | 644 | v = __raw_readl(dd->control_reg) & dd->enable_mask; |
634 | v >>= __ffs(dd->enable_mask); | 645 | v >>= __ffs(dd->enable_mask); |
635 | if ((v != OMAP3XXX_EN_DPLL_LOCKED) || (dd->flags & DPLL_J_TYPE)) | 646 | if ((v != OMAP3XXX_EN_DPLL_LOCKED) || (dd->flags & DPLL_J_TYPE)) |
636 | rate = clk->parent->rate; | 647 | rate = parent_rate; |
637 | else | 648 | else |
638 | rate = clk->parent->rate * 2; | 649 | rate = parent_rate * 2; |
639 | return rate; | 650 | return rate; |
640 | } | 651 | } |
641 | 652 | ||
diff --git a/arch/arm/mach-omap2/dpll44xx.c b/arch/arm/mach-omap2/dpll44xx.c index 9c6a296b3dc3..09d0ccccb861 100644 --- a/arch/arm/mach-omap2/dpll44xx.c +++ b/arch/arm/mach-omap2/dpll44xx.c | |||
@@ -15,9 +15,9 @@ | |||
15 | #include <linux/io.h> | 15 | #include <linux/io.h> |
16 | #include <linux/bitops.h> | 16 | #include <linux/bitops.h> |
17 | 17 | ||
18 | #include <plat/cpu.h> | ||
19 | #include <plat/clock.h> | 18 | #include <plat/clock.h> |
20 | 19 | ||
20 | #include "soc.h" | ||
21 | #include "clock.h" | 21 | #include "clock.h" |
22 | #include "clock44xx.h" | 22 | #include "clock44xx.h" |
23 | #include "cm-regbits-44xx.h" | 23 | #include "cm-regbits-44xx.h" |
diff --git a/arch/arm/mach-omap2/dsp.c b/arch/arm/mach-omap2/dsp.c index a636ebc16b39..98388109f22a 100644 --- a/arch/arm/mach-omap2/dsp.c +++ b/arch/arm/mach-omap2/dsp.c | |||
@@ -30,7 +30,7 @@ | |||
30 | #include <plat/omap-pm.h> | 30 | #include <plat/omap-pm.h> |
31 | #endif | 31 | #endif |
32 | 32 | ||
33 | #include <plat/dsp.h> | 33 | #include <linux/platform_data/dsp-omap.h> |
34 | 34 | ||
35 | static struct platform_device *omap_dsp_pdev; | 35 | static struct platform_device *omap_dsp_pdev; |
36 | 36 | ||
diff --git a/arch/arm/mach-omap2/emu.c b/arch/arm/mach-omap2/emu.c index e28e761b7ab9..b3566f68a559 100644 --- a/arch/arm/mach-omap2/emu.c +++ b/arch/arm/mach-omap2/emu.c | |||
@@ -21,8 +21,7 @@ | |||
21 | #include <linux/clk.h> | 21 | #include <linux/clk.h> |
22 | #include <linux/err.h> | 22 | #include <linux/err.h> |
23 | 23 | ||
24 | #include <mach/hardware.h> | 24 | #include "soc.h" |
25 | |||
26 | #include "iomap.h" | 25 | #include "iomap.h" |
27 | 26 | ||
28 | MODULE_LICENSE("GPL"); | 27 | MODULE_LICENSE("GPL"); |
diff --git a/arch/arm/mach-omap2/gpio.c b/arch/arm/mach-omap2/gpio.c index 9ad7d489b0de..d1058f16fb40 100644 --- a/arch/arm/mach-omap2/gpio.c +++ b/arch/arm/mach-omap2/gpio.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <linux/slab.h> | 21 | #include <linux/slab.h> |
22 | #include <linux/interrupt.h> | 22 | #include <linux/interrupt.h> |
23 | #include <linux/of.h> | 23 | #include <linux/of.h> |
24 | #include <linux/platform_data/gpio-omap.h> | ||
24 | 25 | ||
25 | #include <plat/omap_hwmod.h> | 26 | #include <plat/omap_hwmod.h> |
26 | #include <plat/omap_device.h> | 27 | #include <plat/omap_device.h> |
@@ -60,6 +61,7 @@ static int __init omap2_gpio_dev_init(struct omap_hwmod *oh, void *unused) | |||
60 | pdata->regs = kzalloc(sizeof(struct omap_gpio_reg_offs), GFP_KERNEL); | 61 | pdata->regs = kzalloc(sizeof(struct omap_gpio_reg_offs), GFP_KERNEL); |
61 | if (!pdata->regs) { | 62 | if (!pdata->regs) { |
62 | pr_err("gpio%d: Memory allocation failed\n", id); | 63 | pr_err("gpio%d: Memory allocation failed\n", id); |
64 | kfree(pdata); | ||
63 | return -ENOMEM; | 65 | return -ENOMEM; |
64 | } | 66 | } |
65 | 67 | ||
@@ -121,6 +123,7 @@ static int __init omap2_gpio_dev_init(struct omap_hwmod *oh, void *unused) | |||
121 | break; | 123 | break; |
122 | default: | 124 | default: |
123 | WARN(1, "Invalid gpio bank_type\n"); | 125 | WARN(1, "Invalid gpio bank_type\n"); |
126 | kfree(pdata->regs); | ||
124 | kfree(pdata); | 127 | kfree(pdata); |
125 | return -EINVAL; | 128 | return -EINVAL; |
126 | } | 129 | } |
diff --git a/arch/arm/mach-omap2/gpmc-nand.c b/arch/arm/mach-omap2/gpmc-nand.c index 386dec8d2351..4acf497faeb3 100644 --- a/arch/arm/mach-omap2/gpmc-nand.c +++ b/arch/arm/mach-omap2/gpmc-nand.c | |||
@@ -13,23 +13,31 @@ | |||
13 | #include <linux/platform_device.h> | 13 | #include <linux/platform_device.h> |
14 | #include <linux/io.h> | 14 | #include <linux/io.h> |
15 | #include <linux/mtd/nand.h> | 15 | #include <linux/mtd/nand.h> |
16 | #include <linux/platform_data/mtd-nand-omap2.h> | ||
16 | 17 | ||
17 | #include <asm/mach/flash.h> | 18 | #include <asm/mach/flash.h> |
18 | 19 | ||
19 | #include <plat/cpu.h> | ||
20 | #include <plat/nand.h> | ||
21 | #include <plat/board.h> | ||
22 | #include <plat/gpmc.h> | 20 | #include <plat/gpmc.h> |
23 | 21 | ||
24 | static struct resource gpmc_nand_resource = { | 22 | #include "soc.h" |
25 | .flags = IORESOURCE_MEM, | 23 | |
24 | static struct resource gpmc_nand_resource[] = { | ||
25 | { | ||
26 | .flags = IORESOURCE_MEM, | ||
27 | }, | ||
28 | { | ||
29 | .flags = IORESOURCE_IRQ, | ||
30 | }, | ||
31 | { | ||
32 | .flags = IORESOURCE_IRQ, | ||
33 | }, | ||
26 | }; | 34 | }; |
27 | 35 | ||
28 | static struct platform_device gpmc_nand_device = { | 36 | static struct platform_device gpmc_nand_device = { |
29 | .name = "omap2-nand", | 37 | .name = "omap2-nand", |
30 | .id = 0, | 38 | .id = 0, |
31 | .num_resources = 1, | 39 | .num_resources = ARRAY_SIZE(gpmc_nand_resource), |
32 | .resource = &gpmc_nand_resource, | 40 | .resource = gpmc_nand_resource, |
33 | }; | 41 | }; |
34 | 42 | ||
35 | static int omap2_nand_gpmc_retime(struct omap_nand_platform_data *gpmc_nand_data) | 43 | static int omap2_nand_gpmc_retime(struct omap_nand_platform_data *gpmc_nand_data) |
@@ -75,6 +83,7 @@ static int omap2_nand_gpmc_retime(struct omap_nand_platform_data *gpmc_nand_data | |||
75 | gpmc_cs_configure(gpmc_nand_data->cs, GPMC_CONFIG_DEV_SIZE, 0); | 83 | gpmc_cs_configure(gpmc_nand_data->cs, GPMC_CONFIG_DEV_SIZE, 0); |
76 | gpmc_cs_configure(gpmc_nand_data->cs, | 84 | gpmc_cs_configure(gpmc_nand_data->cs, |
77 | GPMC_CONFIG_DEV_TYPE, GPMC_DEVICETYPE_NAND); | 85 | GPMC_CONFIG_DEV_TYPE, GPMC_DEVICETYPE_NAND); |
86 | gpmc_cs_configure(gpmc_nand_data->cs, GPMC_CONFIG_WP, 0); | ||
78 | err = gpmc_cs_set_timings(gpmc_nand_data->cs, &t); | 87 | err = gpmc_cs_set_timings(gpmc_nand_data->cs, &t); |
79 | if (err) | 88 | if (err) |
80 | return err; | 89 | return err; |
@@ -90,12 +99,19 @@ int __init gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data) | |||
90 | gpmc_nand_device.dev.platform_data = gpmc_nand_data; | 99 | gpmc_nand_device.dev.platform_data = gpmc_nand_data; |
91 | 100 | ||
92 | err = gpmc_cs_request(gpmc_nand_data->cs, NAND_IO_SIZE, | 101 | err = gpmc_cs_request(gpmc_nand_data->cs, NAND_IO_SIZE, |
93 | &gpmc_nand_data->phys_base); | 102 | (unsigned long *)&gpmc_nand_resource[0].start); |
94 | if (err < 0) { | 103 | if (err < 0) { |
95 | dev_err(dev, "Cannot request GPMC CS\n"); | 104 | dev_err(dev, "Cannot request GPMC CS\n"); |
96 | return err; | 105 | return err; |
97 | } | 106 | } |
98 | 107 | ||
108 | gpmc_nand_resource[0].end = gpmc_nand_resource[0].start + | ||
109 | NAND_IO_SIZE - 1; | ||
110 | |||
111 | gpmc_nand_resource[1].start = | ||
112 | gpmc_get_client_irq(GPMC_IRQ_FIFOEVENTENABLE); | ||
113 | gpmc_nand_resource[2].start = | ||
114 | gpmc_get_client_irq(GPMC_IRQ_COUNT_EVENT); | ||
99 | /* Set timings in GPMC */ | 115 | /* Set timings in GPMC */ |
100 | err = omap2_nand_gpmc_retime(gpmc_nand_data); | 116 | err = omap2_nand_gpmc_retime(gpmc_nand_data); |
101 | if (err < 0) { | 117 | if (err < 0) { |
@@ -108,6 +124,8 @@ int __init gpmc_nand_init(struct omap_nand_platform_data *gpmc_nand_data) | |||
108 | gpmc_cs_configure(gpmc_nand_data->cs, GPMC_CONFIG_RDY_BSY, 1); | 124 | gpmc_cs_configure(gpmc_nand_data->cs, GPMC_CONFIG_RDY_BSY, 1); |
109 | } | 125 | } |
110 | 126 | ||
127 | gpmc_update_nand_reg(&gpmc_nand_data->reg, gpmc_nand_data->cs); | ||
128 | |||
111 | err = platform_device_register(&gpmc_nand_device); | 129 | err = platform_device_register(&gpmc_nand_device); |
112 | if (err < 0) { | 130 | if (err < 0) { |
113 | dev_err(dev, "Unable to register NAND device\n"); | 131 | dev_err(dev, "Unable to register NAND device\n"); |
diff --git a/arch/arm/mach-omap2/gpmc-onenand.c b/arch/arm/mach-omap2/gpmc-onenand.c index a0fa9bb2bda5..916716e1da3b 100644 --- a/arch/arm/mach-omap2/gpmc-onenand.c +++ b/arch/arm/mach-omap2/gpmc-onenand.c | |||
@@ -15,19 +15,27 @@ | |||
15 | #include <linux/platform_device.h> | 15 | #include <linux/platform_device.h> |
16 | #include <linux/mtd/onenand_regs.h> | 16 | #include <linux/mtd/onenand_regs.h> |
17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
18 | #include <linux/platform_data/mtd-onenand-omap2.h> | ||
18 | 19 | ||
19 | #include <asm/mach/flash.h> | 20 | #include <asm/mach/flash.h> |
20 | 21 | ||
21 | #include <plat/cpu.h> | ||
22 | #include <plat/onenand.h> | ||
23 | #include <plat/board.h> | ||
24 | #include <plat/gpmc.h> | 22 | #include <plat/gpmc.h> |
25 | 23 | ||
24 | #include "soc.h" | ||
25 | |||
26 | #define ONENAND_IO_SIZE SZ_128K | ||
27 | |||
26 | static struct omap_onenand_platform_data *gpmc_onenand_data; | 28 | static struct omap_onenand_platform_data *gpmc_onenand_data; |
27 | 29 | ||
30 | static struct resource gpmc_onenand_resource = { | ||
31 | .flags = IORESOURCE_MEM, | ||
32 | }; | ||
33 | |||
28 | static struct platform_device gpmc_onenand_device = { | 34 | static struct platform_device gpmc_onenand_device = { |
29 | .name = "omap2-onenand", | 35 | .name = "omap2-onenand", |
30 | .id = -1, | 36 | .id = -1, |
37 | .num_resources = 1, | ||
38 | .resource = &gpmc_onenand_resource, | ||
31 | }; | 39 | }; |
32 | 40 | ||
33 | static int omap2_onenand_set_async_mode(int cs, void __iomem *onenand_base) | 41 | static int omap2_onenand_set_async_mode(int cs, void __iomem *onenand_base) |
@@ -390,6 +398,8 @@ static int gpmc_onenand_setup(void __iomem *onenand_base, int *freq_ptr) | |||
390 | 398 | ||
391 | void __init gpmc_onenand_init(struct omap_onenand_platform_data *_onenand_data) | 399 | void __init gpmc_onenand_init(struct omap_onenand_platform_data *_onenand_data) |
392 | { | 400 | { |
401 | int err; | ||
402 | |||
393 | gpmc_onenand_data = _onenand_data; | 403 | gpmc_onenand_data = _onenand_data; |
394 | gpmc_onenand_data->onenand_setup = gpmc_onenand_setup; | 404 | gpmc_onenand_data->onenand_setup = gpmc_onenand_setup; |
395 | gpmc_onenand_device.dev.platform_data = gpmc_onenand_data; | 405 | gpmc_onenand_device.dev.platform_data = gpmc_onenand_data; |
@@ -401,8 +411,19 @@ void __init gpmc_onenand_init(struct omap_onenand_platform_data *_onenand_data) | |||
401 | gpmc_onenand_data->flags |= ONENAND_SYNC_READ; | 411 | gpmc_onenand_data->flags |= ONENAND_SYNC_READ; |
402 | } | 412 | } |
403 | 413 | ||
414 | err = gpmc_cs_request(gpmc_onenand_data->cs, ONENAND_IO_SIZE, | ||
415 | (unsigned long *)&gpmc_onenand_resource.start); | ||
416 | if (err < 0) { | ||
417 | pr_err("%s: Cannot request GPMC CS\n", __func__); | ||
418 | return; | ||
419 | } | ||
420 | |||
421 | gpmc_onenand_resource.end = gpmc_onenand_resource.start + | ||
422 | ONENAND_IO_SIZE - 1; | ||
423 | |||
404 | if (platform_device_register(&gpmc_onenand_device) < 0) { | 424 | if (platform_device_register(&gpmc_onenand_device) < 0) { |
405 | printk(KERN_ERR "Unable to register OneNAND device\n"); | 425 | pr_err("%s: Unable to register OneNAND device\n", __func__); |
426 | gpmc_cs_free(gpmc_onenand_data->cs); | ||
406 | return; | 427 | return; |
407 | } | 428 | } |
408 | } | 429 | } |
diff --git a/arch/arm/mach-omap2/gpmc-smc91x.c b/arch/arm/mach-omap2/gpmc-smc91x.c index ba10c24f3d8d..565475310374 100644 --- a/arch/arm/mach-omap2/gpmc-smc91x.c +++ b/arch/arm/mach-omap2/gpmc-smc91x.c | |||
@@ -17,9 +17,10 @@ | |||
17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
18 | #include <linux/smc91x.h> | 18 | #include <linux/smc91x.h> |
19 | 19 | ||
20 | #include <plat/board.h> | ||
21 | #include <plat/gpmc.h> | 20 | #include <plat/gpmc.h> |
22 | #include <plat/gpmc-smc91x.h> | 21 | #include "gpmc-smc91x.h" |
22 | |||
23 | #include "soc.h" | ||
23 | 24 | ||
24 | static struct omap_smc91x_platform_data *gpmc_cfg; | 25 | static struct omap_smc91x_platform_data *gpmc_cfg; |
25 | 26 | ||
diff --git a/arch/arm/mach-omap2/gpmc-smc91x.h b/arch/arm/mach-omap2/gpmc-smc91x.h new file mode 100644 index 000000000000..b64fbee4d567 --- /dev/null +++ b/arch/arm/mach-omap2/gpmc-smc91x.h | |||
@@ -0,0 +1,42 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-omap/include/mach/gpmc-smc91x.h | ||
3 | * | ||
4 | * Copyright (C) 2009 Nokia Corporation | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify | ||
7 | * it under the terms of the GNU General Public License version 2 as | ||
8 | * published by the Free Software Foundation. | ||
9 | */ | ||
10 | |||
11 | #ifndef __ASM_ARCH_OMAP_GPMC_SMC91X_H__ | ||
12 | |||
13 | #define GPMC_TIMINGS_SMC91C96 (1 << 4) | ||
14 | #define GPMC_MUX_ADD_DATA (1 << 5) /* GPMC_CONFIG1_MUXADDDATA */ | ||
15 | #define GPMC_READ_MON (1 << 6) /* GPMC_CONFIG1_WAIT_READ_MON */ | ||
16 | #define GPMC_WRITE_MON (1 << 7) /* GPMC_CONFIG1_WAIT_WRITE_MON */ | ||
17 | |||
18 | struct omap_smc91x_platform_data { | ||
19 | int cs; | ||
20 | int gpio_irq; | ||
21 | int gpio_pwrdwn; | ||
22 | int gpio_reset; | ||
23 | int wait_pin; /* Optional GPMC_CONFIG1_WAITPINSELECT */ | ||
24 | u32 flags; | ||
25 | int (*retime)(void); | ||
26 | }; | ||
27 | |||
28 | #if defined(CONFIG_SMC91X) || \ | ||
29 | defined(CONFIG_SMC91X_MODULE) | ||
30 | |||
31 | extern void gpmc_smc91x_init(struct omap_smc91x_platform_data *d); | ||
32 | |||
33 | #else | ||
34 | |||
35 | #define board_smc91x_data NULL | ||
36 | |||
37 | static inline void gpmc_smc91x_init(struct omap_smc91x_platform_data *d) | ||
38 | { | ||
39 | } | ||
40 | |||
41 | #endif | ||
42 | #endif | ||
diff --git a/arch/arm/mach-omap2/gpmc-smsc911x.c b/arch/arm/mach-omap2/gpmc-smsc911x.c index b6c77be3e8f7..249a0b440cd6 100644 --- a/arch/arm/mach-omap2/gpmc-smsc911x.c +++ b/arch/arm/mach-omap2/gpmc-smsc911x.c | |||
@@ -20,9 +20,8 @@ | |||
20 | #include <linux/io.h> | 20 | #include <linux/io.h> |
21 | #include <linux/smsc911x.h> | 21 | #include <linux/smsc911x.h> |
22 | 22 | ||
23 | #include <plat/board.h> | ||
24 | #include <plat/gpmc.h> | 23 | #include <plat/gpmc.h> |
25 | #include <plat/gpmc-smsc911x.h> | 24 | #include "gpmc-smsc911x.h" |
26 | 25 | ||
27 | static struct resource gpmc_smsc911x_resources[] = { | 26 | static struct resource gpmc_smsc911x_resources[] = { |
28 | [0] = { | 27 | [0] = { |
diff --git a/arch/arm/mach-omap2/gpmc-smsc911x.h b/arch/arm/mach-omap2/gpmc-smsc911x.h new file mode 100644 index 000000000000..ea6c9c88c725 --- /dev/null +++ b/arch/arm/mach-omap2/gpmc-smsc911x.h | |||
@@ -0,0 +1,35 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-omap/include/plat/gpmc-smsc911x.h | ||
3 | * | ||
4 | * Copyright (C) 2009 Li-Pro.Net | ||
5 | * Stephan Linz <linz@li-pro.net> | ||
6 | * | ||
7 | * Modified from arch/arm/plat-omap/include/plat/gpmc-smc91x.h | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | |||
14 | #ifndef __ASM_ARCH_OMAP_GPMC_SMSC911X_H__ | ||
15 | |||
16 | struct omap_smsc911x_platform_data { | ||
17 | int id; | ||
18 | int cs; | ||
19 | int gpio_irq; | ||
20 | int gpio_reset; | ||
21 | u32 flags; | ||
22 | }; | ||
23 | |||
24 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) | ||
25 | |||
26 | extern void gpmc_smsc911x_init(struct omap_smsc911x_platform_data *d); | ||
27 | |||
28 | #else | ||
29 | |||
30 | static inline void gpmc_smsc911x_init(struct omap_smsc911x_platform_data *d) | ||
31 | { | ||
32 | } | ||
33 | |||
34 | #endif | ||
35 | #endif | ||
diff --git a/arch/arm/mach-omap2/gpmc.c b/arch/arm/mach-omap2/gpmc.c index b2b5759ab0fe..5ac5cf30406a 100644 --- a/arch/arm/mach-omap2/gpmc.c +++ b/arch/arm/mach-omap2/gpmc.c | |||
@@ -24,11 +24,20 @@ | |||
24 | #include <linux/io.h> | 24 | #include <linux/io.h> |
25 | #include <linux/module.h> | 25 | #include <linux/module.h> |
26 | #include <linux/interrupt.h> | 26 | #include <linux/interrupt.h> |
27 | #include <linux/platform_device.h> | ||
27 | 28 | ||
28 | #include <asm/mach-types.h> | 29 | #include <asm/mach-types.h> |
29 | #include <plat/gpmc.h> | 30 | #include <plat/gpmc.h> |
30 | 31 | ||
32 | #include <plat/cpu.h> | ||
33 | #include <plat/gpmc.h> | ||
31 | #include <plat/sdrc.h> | 34 | #include <plat/sdrc.h> |
35 | #include <plat/omap_device.h> | ||
36 | |||
37 | #include "soc.h" | ||
38 | #include "common.h" | ||
39 | |||
40 | #define DEVICE_NAME "omap-gpmc" | ||
32 | 41 | ||
33 | /* GPMC register offsets */ | 42 | /* GPMC register offsets */ |
34 | #define GPMC_REVISION 0x00 | 43 | #define GPMC_REVISION 0x00 |
@@ -78,6 +87,21 @@ | |||
78 | #define ENABLE_PREFETCH (0x1 << 7) | 87 | #define ENABLE_PREFETCH (0x1 << 7) |
79 | #define DMA_MPU_MODE 2 | 88 | #define DMA_MPU_MODE 2 |
80 | 89 | ||
90 | #define GPMC_REVISION_MAJOR(l) ((l >> 4) & 0xf) | ||
91 | #define GPMC_REVISION_MINOR(l) (l & 0xf) | ||
92 | |||
93 | #define GPMC_HAS_WR_ACCESS 0x1 | ||
94 | #define GPMC_HAS_WR_DATA_MUX_BUS 0x2 | ||
95 | |||
96 | /* XXX: Only NAND irq has been considered,currently these are the only ones used | ||
97 | */ | ||
98 | #define GPMC_NR_IRQ 2 | ||
99 | |||
100 | struct gpmc_client_irq { | ||
101 | unsigned irq; | ||
102 | u32 bitmask; | ||
103 | }; | ||
104 | |||
81 | /* Structure to save gpmc cs context */ | 105 | /* Structure to save gpmc cs context */ |
82 | struct gpmc_cs_config { | 106 | struct gpmc_cs_config { |
83 | u32 config1; | 107 | u32 config1; |
@@ -105,12 +129,19 @@ struct omap3_gpmc_regs { | |||
105 | struct gpmc_cs_config cs_context[GPMC_CS_NUM]; | 129 | struct gpmc_cs_config cs_context[GPMC_CS_NUM]; |
106 | }; | 130 | }; |
107 | 131 | ||
132 | static struct gpmc_client_irq gpmc_client_irq[GPMC_NR_IRQ]; | ||
133 | static struct irq_chip gpmc_irq_chip; | ||
134 | static unsigned gpmc_irq_start; | ||
135 | |||
108 | static struct resource gpmc_mem_root; | 136 | static struct resource gpmc_mem_root; |
109 | static struct resource gpmc_cs_mem[GPMC_CS_NUM]; | 137 | static struct resource gpmc_cs_mem[GPMC_CS_NUM]; |
110 | static DEFINE_SPINLOCK(gpmc_mem_lock); | 138 | static DEFINE_SPINLOCK(gpmc_mem_lock); |
111 | static unsigned int gpmc_cs_map; /* flag for cs which are initialized */ | 139 | static unsigned int gpmc_cs_map; /* flag for cs which are initialized */ |
112 | static int gpmc_ecc_used = -EINVAL; /* cs using ecc engine */ | 140 | static int gpmc_ecc_used = -EINVAL; /* cs using ecc engine */ |
113 | 141 | static struct device *gpmc_dev; | |
142 | static int gpmc_irq; | ||
143 | static resource_size_t phys_base, mem_size; | ||
144 | static unsigned gpmc_capability; | ||
114 | static void __iomem *gpmc_base; | 145 | static void __iomem *gpmc_base; |
115 | 146 | ||
116 | static struct clk *gpmc_l3_clk; | 147 | static struct clk *gpmc_l3_clk; |
@@ -279,7 +310,7 @@ int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t) | |||
279 | 310 | ||
280 | div = gpmc_cs_calc_divider(cs, t->sync_clk); | 311 | div = gpmc_cs_calc_divider(cs, t->sync_clk); |
281 | if (div < 0) | 312 | if (div < 0) |
282 | return -1; | 313 | return div; |
283 | 314 | ||
284 | GPMC_SET_ONE(GPMC_CS_CONFIG2, 0, 3, cs_on); | 315 | GPMC_SET_ONE(GPMC_CS_CONFIG2, 0, 3, cs_on); |
285 | GPMC_SET_ONE(GPMC_CS_CONFIG2, 8, 12, cs_rd_off); | 316 | GPMC_SET_ONE(GPMC_CS_CONFIG2, 8, 12, cs_rd_off); |
@@ -300,10 +331,10 @@ int gpmc_cs_set_timings(int cs, const struct gpmc_timings *t) | |||
300 | 331 | ||
301 | GPMC_SET_ONE(GPMC_CS_CONFIG5, 24, 27, page_burst_access); | 332 | GPMC_SET_ONE(GPMC_CS_CONFIG5, 24, 27, page_burst_access); |
302 | 333 | ||
303 | if (cpu_is_omap34xx()) { | 334 | if (gpmc_capability & GPMC_HAS_WR_DATA_MUX_BUS) |
304 | GPMC_SET_ONE(GPMC_CS_CONFIG6, 16, 19, wr_data_mux_bus); | 335 | GPMC_SET_ONE(GPMC_CS_CONFIG6, 16, 19, wr_data_mux_bus); |
336 | if (gpmc_capability & GPMC_HAS_WR_ACCESS) | ||
305 | GPMC_SET_ONE(GPMC_CS_CONFIG6, 24, 28, wr_access); | 337 | GPMC_SET_ONE(GPMC_CS_CONFIG6, 24, 28, wr_access); |
306 | } | ||
307 | 338 | ||
308 | /* caller is expected to have initialized CONFIG1 to cover | 339 | /* caller is expected to have initialized CONFIG1 to cover |
309 | * at least sync vs async | 340 | * at least sync vs async |
@@ -413,6 +444,20 @@ static int gpmc_cs_insert_mem(int cs, unsigned long base, unsigned long size) | |||
413 | return r; | 444 | return r; |
414 | } | 445 | } |
415 | 446 | ||
447 | static int gpmc_cs_delete_mem(int cs) | ||
448 | { | ||
449 | struct resource *res = &gpmc_cs_mem[cs]; | ||
450 | int r; | ||
451 | |||
452 | spin_lock(&gpmc_mem_lock); | ||
453 | r = release_resource(&gpmc_cs_mem[cs]); | ||
454 | res->start = 0; | ||
455 | res->end = 0; | ||
456 | spin_unlock(&gpmc_mem_lock); | ||
457 | |||
458 | return r; | ||
459 | } | ||
460 | |||
416 | int gpmc_cs_request(int cs, unsigned long size, unsigned long *base) | 461 | int gpmc_cs_request(int cs, unsigned long size, unsigned long *base) |
417 | { | 462 | { |
418 | struct resource *res = &gpmc_cs_mem[cs]; | 463 | struct resource *res = &gpmc_cs_mem[cs]; |
@@ -682,7 +727,148 @@ int gpmc_prefetch_reset(int cs) | |||
682 | } | 727 | } |
683 | EXPORT_SYMBOL(gpmc_prefetch_reset); | 728 | EXPORT_SYMBOL(gpmc_prefetch_reset); |
684 | 729 | ||
685 | static void __init gpmc_mem_init(void) | 730 | void gpmc_update_nand_reg(struct gpmc_nand_regs *reg, int cs) |
731 | { | ||
732 | reg->gpmc_status = gpmc_base + GPMC_STATUS; | ||
733 | reg->gpmc_nand_command = gpmc_base + GPMC_CS0_OFFSET + | ||
734 | GPMC_CS_NAND_COMMAND + GPMC_CS_SIZE * cs; | ||
735 | reg->gpmc_nand_address = gpmc_base + GPMC_CS0_OFFSET + | ||
736 | GPMC_CS_NAND_ADDRESS + GPMC_CS_SIZE * cs; | ||
737 | reg->gpmc_nand_data = gpmc_base + GPMC_CS0_OFFSET + | ||
738 | GPMC_CS_NAND_DATA + GPMC_CS_SIZE * cs; | ||
739 | reg->gpmc_prefetch_config1 = gpmc_base + GPMC_PREFETCH_CONFIG1; | ||
740 | reg->gpmc_prefetch_config2 = gpmc_base + GPMC_PREFETCH_CONFIG2; | ||
741 | reg->gpmc_prefetch_control = gpmc_base + GPMC_PREFETCH_CONTROL; | ||
742 | reg->gpmc_prefetch_status = gpmc_base + GPMC_PREFETCH_STATUS; | ||
743 | reg->gpmc_ecc_config = gpmc_base + GPMC_ECC_CONFIG; | ||
744 | reg->gpmc_ecc_control = gpmc_base + GPMC_ECC_CONTROL; | ||
745 | reg->gpmc_ecc_size_config = gpmc_base + GPMC_ECC_SIZE_CONFIG; | ||
746 | reg->gpmc_ecc1_result = gpmc_base + GPMC_ECC1_RESULT; | ||
747 | reg->gpmc_bch_result0 = gpmc_base + GPMC_ECC_BCH_RESULT_0; | ||
748 | } | ||
749 | |||
750 | int gpmc_get_client_irq(unsigned irq_config) | ||
751 | { | ||
752 | int i; | ||
753 | |||
754 | if (hweight32(irq_config) > 1) | ||
755 | return 0; | ||
756 | |||
757 | for (i = 0; i < GPMC_NR_IRQ; i++) | ||
758 | if (gpmc_client_irq[i].bitmask & irq_config) | ||
759 | return gpmc_client_irq[i].irq; | ||
760 | |||
761 | return 0; | ||
762 | } | ||
763 | |||
764 | static int gpmc_irq_endis(unsigned irq, bool endis) | ||
765 | { | ||
766 | int i; | ||
767 | u32 regval; | ||
768 | |||
769 | for (i = 0; i < GPMC_NR_IRQ; i++) | ||
770 | if (irq == gpmc_client_irq[i].irq) { | ||
771 | regval = gpmc_read_reg(GPMC_IRQENABLE); | ||
772 | if (endis) | ||
773 | regval |= gpmc_client_irq[i].bitmask; | ||
774 | else | ||
775 | regval &= ~gpmc_client_irq[i].bitmask; | ||
776 | gpmc_write_reg(GPMC_IRQENABLE, regval); | ||
777 | break; | ||
778 | } | ||
779 | |||
780 | return 0; | ||
781 | } | ||
782 | |||
783 | static void gpmc_irq_disable(struct irq_data *p) | ||
784 | { | ||
785 | gpmc_irq_endis(p->irq, false); | ||
786 | } | ||
787 | |||
788 | static void gpmc_irq_enable(struct irq_data *p) | ||
789 | { | ||
790 | gpmc_irq_endis(p->irq, true); | ||
791 | } | ||
792 | |||
793 | static void gpmc_irq_noop(struct irq_data *data) { } | ||
794 | |||
795 | static unsigned int gpmc_irq_noop_ret(struct irq_data *data) { return 0; } | ||
796 | |||
797 | static int gpmc_setup_irq(void) | ||
798 | { | ||
799 | int i; | ||
800 | u32 regval; | ||
801 | |||
802 | if (!gpmc_irq) | ||
803 | return -EINVAL; | ||
804 | |||
805 | gpmc_irq_start = irq_alloc_descs(-1, 0, GPMC_NR_IRQ, 0); | ||
806 | if (IS_ERR_VALUE(gpmc_irq_start)) { | ||
807 | pr_err("irq_alloc_descs failed\n"); | ||
808 | return gpmc_irq_start; | ||
809 | } | ||
810 | |||
811 | gpmc_irq_chip.name = "gpmc"; | ||
812 | gpmc_irq_chip.irq_startup = gpmc_irq_noop_ret; | ||
813 | gpmc_irq_chip.irq_enable = gpmc_irq_enable; | ||
814 | gpmc_irq_chip.irq_disable = gpmc_irq_disable; | ||
815 | gpmc_irq_chip.irq_shutdown = gpmc_irq_noop; | ||
816 | gpmc_irq_chip.irq_ack = gpmc_irq_noop; | ||
817 | gpmc_irq_chip.irq_mask = gpmc_irq_noop; | ||
818 | gpmc_irq_chip.irq_unmask = gpmc_irq_noop; | ||
819 | |||
820 | gpmc_client_irq[0].bitmask = GPMC_IRQ_FIFOEVENTENABLE; | ||
821 | gpmc_client_irq[1].bitmask = GPMC_IRQ_COUNT_EVENT; | ||
822 | |||
823 | for (i = 0; i < GPMC_NR_IRQ; i++) { | ||
824 | gpmc_client_irq[i].irq = gpmc_irq_start + i; | ||
825 | irq_set_chip_and_handler(gpmc_client_irq[i].irq, | ||
826 | &gpmc_irq_chip, handle_simple_irq); | ||
827 | set_irq_flags(gpmc_client_irq[i].irq, | ||
828 | IRQF_VALID | IRQF_NOAUTOEN); | ||
829 | } | ||
830 | |||
831 | /* Disable interrupts */ | ||
832 | gpmc_write_reg(GPMC_IRQENABLE, 0); | ||
833 | |||
834 | /* clear interrupts */ | ||
835 | regval = gpmc_read_reg(GPMC_IRQSTATUS); | ||
836 | gpmc_write_reg(GPMC_IRQSTATUS, regval); | ||
837 | |||
838 | return request_irq(gpmc_irq, gpmc_handle_irq, 0, "gpmc", NULL); | ||
839 | } | ||
840 | |||
841 | static __devexit int gpmc_free_irq(void) | ||
842 | { | ||
843 | int i; | ||
844 | |||
845 | if (gpmc_irq) | ||
846 | free_irq(gpmc_irq, NULL); | ||
847 | |||
848 | for (i = 0; i < GPMC_NR_IRQ; i++) { | ||
849 | irq_set_handler(gpmc_client_irq[i].irq, NULL); | ||
850 | irq_set_chip(gpmc_client_irq[i].irq, &no_irq_chip); | ||
851 | irq_modify_status(gpmc_client_irq[i].irq, 0, 0); | ||
852 | } | ||
853 | |||
854 | irq_free_descs(gpmc_irq_start, GPMC_NR_IRQ); | ||
855 | |||
856 | return 0; | ||
857 | } | ||
858 | |||
859 | static void __devexit gpmc_mem_exit(void) | ||
860 | { | ||
861 | int cs; | ||
862 | |||
863 | for (cs = 0; cs < GPMC_CS_NUM; cs++) { | ||
864 | if (!gpmc_cs_mem_enabled(cs)) | ||
865 | continue; | ||
866 | gpmc_cs_delete_mem(cs); | ||
867 | } | ||
868 | |||
869 | } | ||
870 | |||
871 | static void __devinit gpmc_mem_init(void) | ||
686 | { | 872 | { |
687 | int cs; | 873 | int cs; |
688 | unsigned long boot_rom_space = 0; | 874 | unsigned long boot_rom_space = 0; |
@@ -709,83 +895,120 @@ static void __init gpmc_mem_init(void) | |||
709 | } | 895 | } |
710 | } | 896 | } |
711 | 897 | ||
712 | static int __init gpmc_init(void) | 898 | static __devinit int gpmc_probe(struct platform_device *pdev) |
713 | { | 899 | { |
714 | u32 l, irq; | 900 | u32 l; |
715 | int cs, ret = -EINVAL; | 901 | struct resource *res; |
716 | int gpmc_irq; | 902 | |
717 | char *ck = NULL; | 903 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
718 | 904 | if (res == NULL) | |
719 | if (cpu_is_omap24xx()) { | 905 | return -ENOENT; |
720 | ck = "core_l3_ck"; | 906 | |
721 | if (cpu_is_omap2420()) | 907 | phys_base = res->start; |
722 | l = OMAP2420_GPMC_BASE; | 908 | mem_size = resource_size(res); |
723 | else | 909 | |
724 | l = OMAP34XX_GPMC_BASE; | 910 | gpmc_base = devm_request_and_ioremap(&pdev->dev, res); |
725 | gpmc_irq = INT_34XX_GPMC_IRQ; | 911 | if (!gpmc_base) { |
726 | } else if (cpu_is_omap34xx()) { | 912 | dev_err(&pdev->dev, "error: request memory / ioremap\n"); |
727 | ck = "gpmc_fck"; | 913 | return -EADDRNOTAVAIL; |
728 | l = OMAP34XX_GPMC_BASE; | ||
729 | gpmc_irq = INT_34XX_GPMC_IRQ; | ||
730 | } else if (cpu_is_omap44xx() || soc_is_omap54xx()) { | ||
731 | /* Base address and irq number are same for OMAP4/5 */ | ||
732 | ck = "gpmc_ck"; | ||
733 | l = OMAP44XX_GPMC_BASE; | ||
734 | gpmc_irq = OMAP44XX_IRQ_GPMC; | ||
735 | } | 914 | } |
736 | 915 | ||
737 | if (WARN_ON(!ck)) | 916 | res = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
738 | return ret; | 917 | if (res == NULL) |
918 | dev_warn(&pdev->dev, "Failed to get resource: irq\n"); | ||
919 | else | ||
920 | gpmc_irq = res->start; | ||
739 | 921 | ||
740 | gpmc_l3_clk = clk_get(NULL, ck); | 922 | gpmc_l3_clk = clk_get(&pdev->dev, "fck"); |
741 | if (IS_ERR(gpmc_l3_clk)) { | 923 | if (IS_ERR(gpmc_l3_clk)) { |
742 | printk(KERN_ERR "Could not get GPMC clock %s\n", ck); | 924 | dev_err(&pdev->dev, "error: clk_get\n"); |
743 | BUG(); | 925 | gpmc_irq = 0; |
926 | return PTR_ERR(gpmc_l3_clk); | ||
744 | } | 927 | } |
745 | 928 | ||
746 | gpmc_base = ioremap(l, SZ_4K); | 929 | clk_prepare_enable(gpmc_l3_clk); |
747 | if (!gpmc_base) { | ||
748 | clk_put(gpmc_l3_clk); | ||
749 | printk(KERN_ERR "Could not get GPMC register memory\n"); | ||
750 | BUG(); | ||
751 | } | ||
752 | 930 | ||
753 | clk_enable(gpmc_l3_clk); | 931 | gpmc_dev = &pdev->dev; |
754 | 932 | ||
755 | l = gpmc_read_reg(GPMC_REVISION); | 933 | l = gpmc_read_reg(GPMC_REVISION); |
756 | printk(KERN_INFO "GPMC revision %d.%d\n", (l >> 4) & 0x0f, l & 0x0f); | 934 | if (GPMC_REVISION_MAJOR(l) > 0x4) |
757 | /* Set smart idle mode and automatic L3 clock gating */ | 935 | gpmc_capability = GPMC_HAS_WR_ACCESS | GPMC_HAS_WR_DATA_MUX_BUS; |
758 | l = gpmc_read_reg(GPMC_SYSCONFIG); | 936 | dev_info(gpmc_dev, "GPMC revision %d.%d\n", GPMC_REVISION_MAJOR(l), |
759 | l &= 0x03 << 3; | 937 | GPMC_REVISION_MINOR(l)); |
760 | l |= (0x02 << 3) | (1 << 0); | 938 | |
761 | gpmc_write_reg(GPMC_SYSCONFIG, l); | ||
762 | gpmc_mem_init(); | 939 | gpmc_mem_init(); |
763 | 940 | ||
764 | /* initalize the irq_chained */ | 941 | if (IS_ERR_VALUE(gpmc_setup_irq())) |
765 | irq = OMAP_GPMC_IRQ_BASE; | 942 | dev_warn(gpmc_dev, "gpmc_setup_irq failed\n"); |
766 | for (cs = 0; cs < GPMC_CS_NUM; cs++) { | 943 | |
767 | irq_set_chip_and_handler(irq, &dummy_irq_chip, | 944 | return 0; |
768 | handle_simple_irq); | 945 | } |
769 | set_irq_flags(irq, IRQF_VALID); | 946 | |
770 | irq++; | 947 | static __devexit int gpmc_remove(struct platform_device *pdev) |
771 | } | 948 | { |
949 | gpmc_free_irq(); | ||
950 | gpmc_mem_exit(); | ||
951 | gpmc_dev = NULL; | ||
952 | return 0; | ||
953 | } | ||
954 | |||
955 | static struct platform_driver gpmc_driver = { | ||
956 | .probe = gpmc_probe, | ||
957 | .remove = __devexit_p(gpmc_remove), | ||
958 | .driver = { | ||
959 | .name = DEVICE_NAME, | ||
960 | .owner = THIS_MODULE, | ||
961 | }, | ||
962 | }; | ||
772 | 963 | ||
773 | ret = request_irq(gpmc_irq, gpmc_handle_irq, IRQF_SHARED, "gpmc", NULL); | 964 | static __init int gpmc_init(void) |
774 | if (ret) | 965 | { |
775 | pr_err("gpmc: irq-%d could not claim: err %d\n", | 966 | return platform_driver_register(&gpmc_driver); |
776 | gpmc_irq, ret); | ||
777 | return ret; | ||
778 | } | 967 | } |
968 | |||
969 | static __exit void gpmc_exit(void) | ||
970 | { | ||
971 | platform_driver_unregister(&gpmc_driver); | ||
972 | |||
973 | } | ||
974 | |||
779 | postcore_initcall(gpmc_init); | 975 | postcore_initcall(gpmc_init); |
976 | module_exit(gpmc_exit); | ||
977 | |||
978 | static int __init omap_gpmc_init(void) | ||
979 | { | ||
980 | struct omap_hwmod *oh; | ||
981 | struct platform_device *pdev; | ||
982 | char *oh_name = "gpmc"; | ||
983 | |||
984 | oh = omap_hwmod_lookup(oh_name); | ||
985 | if (!oh) { | ||
986 | pr_err("Could not look up %s\n", oh_name); | ||
987 | return -ENODEV; | ||
988 | } | ||
989 | |||
990 | pdev = omap_device_build(DEVICE_NAME, -1, oh, NULL, 0, NULL, 0, 0); | ||
991 | WARN(IS_ERR(pdev), "could not build omap_device for %s\n", oh_name); | ||
992 | |||
993 | return IS_ERR(pdev) ? PTR_ERR(pdev) : 0; | ||
994 | } | ||
995 | postcore_initcall(omap_gpmc_init); | ||
780 | 996 | ||
781 | static irqreturn_t gpmc_handle_irq(int irq, void *dev) | 997 | static irqreturn_t gpmc_handle_irq(int irq, void *dev) |
782 | { | 998 | { |
783 | u8 cs; | 999 | int i; |
1000 | u32 regval; | ||
1001 | |||
1002 | regval = gpmc_read_reg(GPMC_IRQSTATUS); | ||
1003 | |||
1004 | if (!regval) | ||
1005 | return IRQ_NONE; | ||
1006 | |||
1007 | for (i = 0; i < GPMC_NR_IRQ; i++) | ||
1008 | if (regval & gpmc_client_irq[i].bitmask) | ||
1009 | generic_handle_irq(gpmc_client_irq[i].irq); | ||
784 | 1010 | ||
785 | /* check cs to invoke the irq */ | 1011 | gpmc_write_reg(GPMC_IRQSTATUS, regval); |
786 | cs = ((gpmc_read_reg(GPMC_PREFETCH_CONFIG1)) >> CS_NUM_SHIFT) & 0x7; | ||
787 | if (OMAP_GPMC_IRQ_BASE+cs <= OMAP_GPMC_IRQ_END) | ||
788 | generic_handle_irq(OMAP_GPMC_IRQ_BASE+cs); | ||
789 | 1012 | ||
790 | return IRQ_HANDLED; | 1013 | return IRQ_HANDLED; |
791 | } | 1014 | } |
diff --git a/arch/arm/mach-omap2/hdq1w.c b/arch/arm/mach-omap2/hdq1w.c index cdd6dda03828..e003f2bba30c 100644 --- a/arch/arm/mach-omap2/hdq1w.c +++ b/arch/arm/mach-omap2/hdq1w.c | |||
@@ -29,7 +29,7 @@ | |||
29 | 29 | ||
30 | #include <plat/omap_hwmod.h> | 30 | #include <plat/omap_hwmod.h> |
31 | #include <plat/omap_device.h> | 31 | #include <plat/omap_device.h> |
32 | #include <plat/hdq1w.h> | 32 | #include "hdq1w.h" |
33 | 33 | ||
34 | #include "common.h" | 34 | #include "common.h" |
35 | 35 | ||
diff --git a/arch/arm/mach-omap2/hdq1w.h b/arch/arm/mach-omap2/hdq1w.h new file mode 100644 index 000000000000..0c1efc846d8d --- /dev/null +++ b/arch/arm/mach-omap2/hdq1w.h | |||
@@ -0,0 +1,36 @@ | |||
1 | /* | ||
2 | * Shared macros and function prototypes for the HDQ1W/1-wire IP block | ||
3 | * | ||
4 | * Copyright (C) 2012 Texas Instruments, Inc. | ||
5 | * Paul Walmsley | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU General Public License | ||
9 | * version 2 as published by the Free Software Foundation. | ||
10 | * | ||
11 | * This program is distributed in the hope that it will be useful, but | ||
12 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
14 | * General Public License for more details. | ||
15 | * | ||
16 | * You should have received a copy of the GNU General Public License | ||
17 | * along with this program; if not, write to the Free Software | ||
18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA | ||
19 | * 02110-1301 USA | ||
20 | */ | ||
21 | #ifndef ARCH_ARM_MACH_OMAP2_HDQ1W_H | ||
22 | #define ARCH_ARM_MACH_OMAP2_HDQ1W_H | ||
23 | |||
24 | #include <plat/omap_hwmod.h> | ||
25 | |||
26 | /* | ||
27 | * XXX A future cleanup patch should modify | ||
28 | * drivers/w1/masters/omap_hdq.c to use these macros | ||
29 | */ | ||
30 | #define HDQ_CTRL_STATUS_OFFSET 0x0c | ||
31 | #define HDQ_CTRL_STATUS_CLOCKENABLE_SHIFT 5 | ||
32 | |||
33 | |||
34 | extern int omap_hdq1w_reset(struct omap_hwmod *oh); | ||
35 | |||
36 | #endif | ||
diff --git a/arch/arm/mach-omap2/hsmmc.c b/arch/arm/mach-omap2/hsmmc.c index a9675d8d1822..4d3a6324155f 100644 --- a/arch/arm/mach-omap2/hsmmc.c +++ b/arch/arm/mach-omap2/hsmmc.c | |||
@@ -15,9 +15,10 @@ | |||
15 | #include <linux/delay.h> | 15 | #include <linux/delay.h> |
16 | #include <linux/gpio.h> | 16 | #include <linux/gpio.h> |
17 | #include <mach/hardware.h> | 17 | #include <mach/hardware.h> |
18 | #include <linux/platform_data/gpio-omap.h> | ||
19 | |||
18 | #include <plat/mmc.h> | 20 | #include <plat/mmc.h> |
19 | #include <plat/omap-pm.h> | 21 | #include <plat/omap-pm.h> |
20 | #include <plat/mux.h> | ||
21 | #include <plat/omap_device.h> | 22 | #include <plat/omap_device.h> |
22 | 23 | ||
23 | #include "mux.h" | 24 | #include "mux.h" |
@@ -522,7 +523,7 @@ static void __init omap_hsmmc_init_one(struct omap2_hsmmc_info *hsmmcinfo, | |||
522 | dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id); | 523 | dev_set_name(&pdev->dev, "%s.%d", pdev->name, pdev->id); |
523 | 524 | ||
524 | od = omap_device_alloc(pdev, ohs, 1, NULL, 0); | 525 | od = omap_device_alloc(pdev, ohs, 1, NULL, 0); |
525 | if (!od) { | 526 | if (IS_ERR(od)) { |
526 | pr_err("Could not allocate od for %s\n", name); | 527 | pr_err("Could not allocate od for %s\n", name); |
527 | goto put_pdev; | 528 | goto put_pdev; |
528 | } | 529 | } |
diff --git a/arch/arm/mach-omap2/i2c.c b/arch/arm/mach-omap2/i2c.c index a12e224eb97d..fc57e67b321f 100644 --- a/arch/arm/mach-omap2/i2c.c +++ b/arch/arm/mach-omap2/i2c.c | |||
@@ -19,7 +19,6 @@ | |||
19 | * | 19 | * |
20 | */ | 20 | */ |
21 | 21 | ||
22 | #include <plat/cpu.h> | ||
23 | #include <plat/i2c.h> | 22 | #include <plat/i2c.h> |
24 | #include "common.h" | 23 | #include "common.h" |
25 | #include <plat/omap_hwmod.h> | 24 | #include <plat/omap_hwmod.h> |
diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index 40373db649aa..cf2362ccb234 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c | |||
@@ -22,10 +22,10 @@ | |||
22 | #include <asm/cputype.h> | 22 | #include <asm/cputype.h> |
23 | 23 | ||
24 | #include "common.h" | 24 | #include "common.h" |
25 | #include <plat/cpu.h> | ||
26 | 25 | ||
27 | #include <mach/id.h> | 26 | #include "id.h" |
28 | 27 | ||
28 | #include "soc.h" | ||
29 | #include "control.h" | 29 | #include "control.h" |
30 | 30 | ||
31 | static unsigned int omap_revision; | 31 | static unsigned int omap_revision; |
@@ -161,9 +161,8 @@ void __init omap2xxx_check_revision(void) | |||
161 | } | 161 | } |
162 | 162 | ||
163 | if (j == ARRAY_SIZE(omap_ids)) { | 163 | if (j == ARRAY_SIZE(omap_ids)) { |
164 | printk(KERN_ERR "Unknown OMAP device type. " | 164 | pr_err("Unknown OMAP device type. Handling it as OMAP%04x\n", |
165 | "Handling it as OMAP%04x\n", | 165 | omap_ids[i].type >> 16); |
166 | omap_ids[i].type >> 16); | ||
167 | j = i; | 166 | j = i; |
168 | } | 167 | } |
169 | 168 | ||
diff --git a/arch/arm/mach-omap2/include/mach/id.h b/arch/arm/mach-omap2/id.h index 02ed3aa56f1e..02ed3aa56f1e 100644 --- a/arch/arm/mach-omap2/include/mach/id.h +++ b/arch/arm/mach-omap2/id.h | |||
diff --git a/arch/arm/mach-omap2/include/mach/board-zoom.h b/arch/arm/mach-omap2/include/mach/board-zoom.h index 775fdc3b000b..2e9486940ead 100644 --- a/arch/arm/mach-omap2/include/mach/board-zoom.h +++ b/arch/arm/mach-omap2/include/mach/board-zoom.h | |||
@@ -8,5 +8,3 @@ | |||
8 | extern int __init zoom_debugboard_init(void); | 8 | extern int __init zoom_debugboard_init(void); |
9 | extern void __init zoom_peripherals_init(void); | 9 | extern void __init zoom_peripherals_init(void); |
10 | extern void __init zoom_display_init(void); | 10 | extern void __init zoom_display_init(void); |
11 | |||
12 | #define ZOOM2_HEADSET_EXTMUTE_GPIO 153 | ||
diff --git a/arch/arm/mach-omap2/include/mach/gpio.h b/arch/arm/mach-omap2/include/mach/gpio.h index be4d290d57ee..5621cc59c9f4 100644 --- a/arch/arm/mach-omap2/include/mach/gpio.h +++ b/arch/arm/mach-omap2/include/mach/gpio.h | |||
@@ -1,5 +1,3 @@ | |||
1 | /* | 1 | /* |
2 | * arch/arm/mach-omap2/include/mach/gpio.h | 2 | * arch/arm/mach-omap2/include/mach/gpio.h |
3 | */ | 3 | */ |
4 | |||
5 | #include <plat/gpio.h> | ||
diff --git a/arch/arm/mach-omap2/include/mach/hardware.h b/arch/arm/mach-omap2/include/mach/hardware.h index 78edf9d33f71..54492dbf6973 100644 --- a/arch/arm/mach-omap2/include/mach/hardware.h +++ b/arch/arm/mach-omap2/include/mach/hardware.h | |||
@@ -1,5 +1,3 @@ | |||
1 | /* | 1 | /* |
2 | * arch/arm/mach-omap2/include/mach/hardware.h | 2 | * arch/arm/mach-omap2/include/mach/hardware.h |
3 | */ | 3 | */ |
4 | |||
5 | #include <plat/hardware.h> | ||
diff --git a/arch/arm/mach-omap2/include/mach/irqs.h b/arch/arm/mach-omap2/include/mach/irqs.h index 44dab7725696..ba5282cafa42 100644 --- a/arch/arm/mach-omap2/include/mach/irqs.h +++ b/arch/arm/mach-omap2/include/mach/irqs.h | |||
@@ -1,5 +1,3 @@ | |||
1 | /* | 1 | /* |
2 | * arch/arm/mach-omap2/include/mach/irqs.h | 2 | * arch/arm/mach-omap2/include/mach/irqs.h |
3 | */ | 3 | */ |
4 | |||
5 | #include <plat/irqs.h> | ||
diff --git a/arch/arm/mach-omap2/include/mach/smp.h b/arch/arm/mach-omap2/include/mach/smp.h deleted file mode 100644 index 323675f21b69..000000000000 --- a/arch/arm/mach-omap2/include/mach/smp.h +++ /dev/null | |||
@@ -1,5 +0,0 @@ | |||
1 | /* | ||
2 | * arch/arm/mach-omap2/include/mach/smp.h | ||
3 | */ | ||
4 | |||
5 | #include <plat/smp.h> | ||
diff --git a/arch/arm/mach-omap2/io.c b/arch/arm/mach-omap2/io.c index 4d2d981ff5c5..4234d28dc171 100644 --- a/arch/arm/mach-omap2/io.c +++ b/arch/arm/mach-omap2/io.c | |||
@@ -33,6 +33,7 @@ | |||
33 | #include <plat/multi.h> | 33 | #include <plat/multi.h> |
34 | #include <plat/dma.h> | 34 | #include <plat/dma.h> |
35 | 35 | ||
36 | #include "soc.h" | ||
36 | #include "iomap.h" | 37 | #include "iomap.h" |
37 | #include "voltage.h" | 38 | #include "voltage.h" |
38 | #include "powerdomain.h" | 39 | #include "powerdomain.h" |
@@ -523,6 +524,8 @@ void __init am33xx_init_early(void) | |||
523 | am33xx_voltagedomains_init(); | 524 | am33xx_voltagedomains_init(); |
524 | am33xx_powerdomains_init(); | 525 | am33xx_powerdomains_init(); |
525 | am33xx_clockdomains_init(); | 526 | am33xx_clockdomains_init(); |
527 | am33xx_hwmod_init(); | ||
528 | omap_hwmod_init_postsetup(); | ||
526 | am33xx_clk_init(); | 529 | am33xx_clk_init(); |
527 | } | 530 | } |
528 | #endif | 531 | #endif |
diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c index bcd83db41bbc..3926f370448f 100644 --- a/arch/arm/mach-omap2/irq.c +++ b/arch/arm/mach-omap2/irq.c | |||
@@ -23,8 +23,7 @@ | |||
23 | #include <linux/of_address.h> | 23 | #include <linux/of_address.h> |
24 | #include <linux/of_irq.h> | 24 | #include <linux/of_irq.h> |
25 | 25 | ||
26 | #include <mach/hardware.h> | 26 | #include "soc.h" |
27 | |||
28 | #include "iomap.h" | 27 | #include "iomap.h" |
29 | #include "common.h" | 28 | #include "common.h" |
30 | 29 | ||
@@ -49,6 +48,8 @@ | |||
49 | #define OMAP3_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP34XX_IC_BASE) | 48 | #define OMAP3_IRQ_BASE OMAP2_L4_IO_ADDRESS(OMAP34XX_IC_BASE) |
50 | #define INTCPS_SIR_IRQ_OFFSET 0x0040 /* omap2/3 active interrupt offset */ | 49 | #define INTCPS_SIR_IRQ_OFFSET 0x0040 /* omap2/3 active interrupt offset */ |
51 | #define ACTIVEIRQ_MASK 0x7f /* omap2/3 active interrupt bits */ | 50 | #define ACTIVEIRQ_MASK 0x7f /* omap2/3 active interrupt bits */ |
51 | #define INTCPS_NR_MIR_REGS 3 | ||
52 | #define INTCPS_NR_IRQS 96 | ||
52 | 53 | ||
53 | /* | 54 | /* |
54 | * OMAP2 has a number of different interrupt controllers, each interrupt | 55 | * OMAP2 has a number of different interrupt controllers, each interrupt |
@@ -107,9 +108,8 @@ static void __init omap_irq_bank_init_one(struct omap_irq_bank *bank) | |||
107 | unsigned long tmp; | 108 | unsigned long tmp; |
108 | 109 | ||
109 | tmp = intc_bank_read_reg(bank, INTC_REVISION) & 0xff; | 110 | tmp = intc_bank_read_reg(bank, INTC_REVISION) & 0xff; |
110 | printk(KERN_INFO "IRQ: Found an INTC at 0x%p " | 111 | pr_info("IRQ: Found an INTC at 0x%p (revision %ld.%ld) with %d interrupts\n", |
111 | "(revision %ld.%ld) with %d interrupts\n", | 112 | bank->base_reg, tmp >> 4, tmp & 0xf, bank->nr_irqs); |
112 | bank->base_reg, tmp >> 4, tmp & 0xf, bank->nr_irqs); | ||
113 | 113 | ||
114 | tmp = intc_bank_read_reg(bank, INTC_SYSCONFIG); | 114 | tmp = intc_bank_read_reg(bank, INTC_SYSCONFIG); |
115 | tmp |= 1 << 1; /* soft reset */ | 115 | tmp |= 1 << 1; /* soft reset */ |
diff --git a/arch/arm/mach-omap2/l3_2xxx.h b/arch/arm/mach-omap2/l3_2xxx.h new file mode 100644 index 000000000000..b8b5641379b0 --- /dev/null +++ b/arch/arm/mach-omap2/l3_2xxx.h | |||
@@ -0,0 +1,20 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-omap/include/plat/l3_2xxx.h - L3 firewall definitions | ||
3 | * | ||
4 | * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ | ||
5 | * Sumit Semwal | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | */ | ||
13 | #ifndef __ARCH_ARM_PLAT_OMAP_INCLUDE_PLAT_L3_2XXX_H | ||
14 | #define __ARCH_ARM_PLAT_OMAP_INCLUDE_PLAT_L3_2XXX_H | ||
15 | |||
16 | /* L3 CONNIDs */ | ||
17 | /* Display Sub system (DSS) */ | ||
18 | #define OMAP2_L3_CORE_FW_CONNID_DSS 8 | ||
19 | |||
20 | #endif | ||
diff --git a/arch/arm/mach-omap2/l3_3xxx.h b/arch/arm/mach-omap2/l3_3xxx.h new file mode 100644 index 000000000000..cde1938c5f82 --- /dev/null +++ b/arch/arm/mach-omap2/l3_3xxx.h | |||
@@ -0,0 +1,20 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-omap/include/plat/l3_3xxx.h - L3 firewall definitions | ||
3 | * | ||
4 | * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ | ||
5 | * Sumit Semwal | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | */ | ||
13 | #ifndef __ARCH_ARM_PLAT_OMAP_INCLUDE_PLAT_L3_3XXX_H | ||
14 | #define __ARCH_ARM_PLAT_OMAP_INCLUDE_PLAT_L3_3XXX_H | ||
15 | |||
16 | /* L3 Initiator IDs */ | ||
17 | /* Display Sub system (DSS) */ | ||
18 | #define OMAP3_L3_CORE_FW_INIT_ID_DSS 29 | ||
19 | |||
20 | #endif | ||
diff --git a/arch/arm/mach-omap2/l4_2xxx.h b/arch/arm/mach-omap2/l4_2xxx.h new file mode 100644 index 000000000000..3f39cf8a35c6 --- /dev/null +++ b/arch/arm/mach-omap2/l4_2xxx.h | |||
@@ -0,0 +1,24 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-omap/include/plat/l4_2xxx.h - L4 firewall definitions | ||
3 | * | ||
4 | * Copyright (C) 2010 Texas Instruments Incorporated - http://www.ti.com/ | ||
5 | * Sumit Semwal | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | */ | ||
13 | #ifndef __ARCH_ARM_PLAT_OMAP_INCLUDE_PLAT_L4_2XXX_H | ||
14 | #define __ARCH_ARM_PLAT_OMAP_INCLUDE_PLAT_L4_2XXX_H | ||
15 | |||
16 | /* L4 CORE */ | ||
17 | /* Display Sub system (DSS) */ | ||
18 | #define OMAP2420_L4_CORE_FW_DSS_CORE_REGION 28 | ||
19 | #define OMAP2420_L4_CORE_FW_DSS_DISPC_REGION 29 | ||
20 | #define OMAP2420_L4_CORE_FW_DSS_RFBI_REGION 30 | ||
21 | #define OMAP2420_L4_CORE_FW_DSS_VENC_REGION 31 | ||
22 | #define OMAP2420_L4_CORE_FW_DSS_TA_REGION 32 | ||
23 | |||
24 | #endif | ||
diff --git a/arch/arm/mach-omap2/l4_3xxx.h b/arch/arm/mach-omap2/l4_3xxx.h new file mode 100644 index 000000000000..881a858b1ffc --- /dev/null +++ b/arch/arm/mach-omap2/l4_3xxx.h | |||
@@ -0,0 +1,34 @@ | |||
1 | /* | ||
2 | * arch/arm/plat-omap/include/mach/l4_3xxx.h - L4 firewall definitions | ||
3 | * | ||
4 | * Copyright (C) 2009 Nokia Corporation | ||
5 | * Paul Walmsley | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | */ | ||
13 | #ifndef __ARCH_ARM_PLAT_OMAP_INCLUDE_MACH_L4_3XXX_H | ||
14 | #define __ARCH_ARM_PLAT_OMAP_INCLUDE_MACH_L4_3XXX_H | ||
15 | |||
16 | /* L4 CORE */ | ||
17 | #define OMAP3_L4_CORE_FW_I2C1_REGION 21 | ||
18 | #define OMAP3_L4_CORE_FW_I2C1_TA_REGION 22 | ||
19 | #define OMAP3_L4_CORE_FW_I2C2_REGION 23 | ||
20 | #define OMAP3_L4_CORE_FW_I2C2_TA_REGION 24 | ||
21 | #define OMAP3_L4_CORE_FW_I2C3_REGION 73 | ||
22 | #define OMAP3_L4_CORE_FW_I2C3_TA_REGION 74 | ||
23 | |||
24 | /* Display Sub system (DSS) */ | ||
25 | #define OMAP3_L4_CORE_FW_DSS_PROT_GROUP 2 | ||
26 | |||
27 | #define OMAP3_L4_CORE_FW_DSS_DSI_REGION 104 | ||
28 | #define OMAP3ES1_L4_CORE_FW_DSS_CORE_REGION 3 | ||
29 | #define OMAP3_L4_CORE_FW_DSS_CORE_REGION 4 | ||
30 | #define OMAP3_L4_CORE_FW_DSS_DISPC_REGION 4 | ||
31 | #define OMAP3_L4_CORE_FW_DSS_RFBI_REGION 5 | ||
32 | #define OMAP3_L4_CORE_FW_DSS_VENC_REGION 6 | ||
33 | #define OMAP3_L4_CORE_FW_DSS_TA_REGION 7 | ||
34 | #endif | ||
diff --git a/arch/arm/mach-omap2/mailbox.c b/arch/arm/mach-omap2/mailbox.c index 6875be837d9f..0d974565f8ca 100644 --- a/arch/arm/mach-omap2/mailbox.c +++ b/arch/arm/mach-omap2/mailbox.c | |||
@@ -16,8 +16,10 @@ | |||
16 | #include <linux/platform_device.h> | 16 | #include <linux/platform_device.h> |
17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
18 | #include <linux/pm_runtime.h> | 18 | #include <linux/pm_runtime.h> |
19 | |||
19 | #include <plat/mailbox.h> | 20 | #include <plat/mailbox.h> |
20 | #include <mach/irqs.h> | 21 | |
22 | #include "soc.h" | ||
21 | 23 | ||
22 | #define MAILBOX_REVISION 0x000 | 24 | #define MAILBOX_REVISION 0x000 |
23 | #define MAILBOX_MESSAGE(m) (0x040 + 4 * (m)) | 25 | #define MAILBOX_MESSAGE(m) (0x040 + 4 * (m)) |
diff --git a/arch/arm/mach-omap2/mcbsp.c b/arch/arm/mach-omap2/mcbsp.c index 577cb77db26c..37f8f948047b 100644 --- a/arch/arm/mach-omap2/mcbsp.c +++ b/arch/arm/mach-omap2/mcbsp.c | |||
@@ -15,18 +15,15 @@ | |||
15 | #include <linux/clk.h> | 15 | #include <linux/clk.h> |
16 | #include <linux/err.h> | 16 | #include <linux/err.h> |
17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
18 | #include <linux/of.h> | ||
18 | #include <linux/platform_device.h> | 19 | #include <linux/platform_device.h> |
19 | #include <linux/slab.h> | 20 | #include <linux/slab.h> |
21 | #include <linux/platform_data/asoc-ti-mcbsp.h> | ||
20 | 22 | ||
21 | #include <mach/irqs.h> | ||
22 | #include <plat/dma.h> | 23 | #include <plat/dma.h> |
23 | #include <plat/cpu.h> | ||
24 | #include <plat/mcbsp.h> | ||
25 | #include <plat/omap_device.h> | 24 | #include <plat/omap_device.h> |
26 | #include <linux/pm_runtime.h> | 25 | #include <linux/pm_runtime.h> |
27 | 26 | ||
28 | #include "control.h" | ||
29 | |||
30 | /* | 27 | /* |
31 | * FIXME: Find a mechanism to enable/disable runtime the McBSP ICLK autoidle. | 28 | * FIXME: Find a mechanism to enable/disable runtime the McBSP ICLK autoidle. |
32 | * Sidetone needs non-gated ICLK and sidetone autoidle is broken. | 29 | * Sidetone needs non-gated ICLK and sidetone autoidle is broken. |
@@ -34,112 +31,6 @@ | |||
34 | #include "cm2xxx_3xxx.h" | 31 | #include "cm2xxx_3xxx.h" |
35 | #include "cm-regbits-34xx.h" | 32 | #include "cm-regbits-34xx.h" |
36 | 33 | ||
37 | /* McBSP1 internal signal muxing function for OMAP2/3 */ | ||
38 | static int omap2_mcbsp1_mux_rx_clk(struct device *dev, const char *signal, | ||
39 | const char *src) | ||
40 | { | ||
41 | u32 v; | ||
42 | |||
43 | v = omap_ctrl_readl(OMAP2_CONTROL_DEVCONF0); | ||
44 | |||
45 | if (!strcmp(signal, "clkr")) { | ||
46 | if (!strcmp(src, "clkr")) | ||
47 | v &= ~OMAP2_MCBSP1_CLKR_MASK; | ||
48 | else if (!strcmp(src, "clkx")) | ||
49 | v |= OMAP2_MCBSP1_CLKR_MASK; | ||
50 | else | ||
51 | return -EINVAL; | ||
52 | } else if (!strcmp(signal, "fsr")) { | ||
53 | if (!strcmp(src, "fsr")) | ||
54 | v &= ~OMAP2_MCBSP1_FSR_MASK; | ||
55 | else if (!strcmp(src, "fsx")) | ||
56 | v |= OMAP2_MCBSP1_FSR_MASK; | ||
57 | else | ||
58 | return -EINVAL; | ||
59 | } else { | ||
60 | return -EINVAL; | ||
61 | } | ||
62 | |||
63 | omap_ctrl_writel(v, OMAP2_CONTROL_DEVCONF0); | ||
64 | |||
65 | return 0; | ||
66 | } | ||
67 | |||
68 | /* McBSP4 internal signal muxing function for OMAP4 */ | ||
69 | #define OMAP4_CONTROL_MCBSPLP_ALBCTRLRX_FSX (1 << 31) | ||
70 | #define OMAP4_CONTROL_MCBSPLP_ALBCTRLRX_CLKX (1 << 30) | ||
71 | static int omap4_mcbsp4_mux_rx_clk(struct device *dev, const char *signal, | ||
72 | const char *src) | ||
73 | { | ||
74 | u32 v; | ||
75 | |||
76 | /* | ||
77 | * In CONTROL_MCBSPLP register only bit 30 (CLKR mux), and bit 31 (FSR | ||
78 | * mux) is used */ | ||
79 | v = omap4_ctrl_pad_readl(OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_MCBSPLP); | ||
80 | |||
81 | if (!strcmp(signal, "clkr")) { | ||
82 | if (!strcmp(src, "clkr")) | ||
83 | v &= ~OMAP4_CONTROL_MCBSPLP_ALBCTRLRX_CLKX; | ||
84 | else if (!strcmp(src, "clkx")) | ||
85 | v |= OMAP4_CONTROL_MCBSPLP_ALBCTRLRX_CLKX; | ||
86 | else | ||
87 | return -EINVAL; | ||
88 | } else if (!strcmp(signal, "fsr")) { | ||
89 | if (!strcmp(src, "fsr")) | ||
90 | v &= ~OMAP4_CONTROL_MCBSPLP_ALBCTRLRX_FSX; | ||
91 | else if (!strcmp(src, "fsx")) | ||
92 | v |= OMAP4_CONTROL_MCBSPLP_ALBCTRLRX_FSX; | ||
93 | else | ||
94 | return -EINVAL; | ||
95 | } else { | ||
96 | return -EINVAL; | ||
97 | } | ||
98 | |||
99 | omap4_ctrl_pad_writel(v, OMAP4_CTRL_MODULE_PAD_CORE_CONTROL_MCBSPLP); | ||
100 | |||
101 | return 0; | ||
102 | } | ||
103 | |||
104 | /* McBSP CLKS source switching function */ | ||
105 | static int omap2_mcbsp_set_clk_src(struct device *dev, struct clk *clk, | ||
106 | const char *src) | ||
107 | { | ||
108 | struct clk *fck_src; | ||
109 | char *fck_src_name; | ||
110 | int r; | ||
111 | |||
112 | if (!strcmp(src, "clks_ext")) | ||
113 | fck_src_name = "pad_fck"; | ||
114 | else if (!strcmp(src, "clks_fclk")) | ||
115 | fck_src_name = "prcm_fck"; | ||
116 | else | ||
117 | return -EINVAL; | ||
118 | |||
119 | fck_src = clk_get(dev, fck_src_name); | ||
120 | if (IS_ERR_OR_NULL(fck_src)) { | ||
121 | pr_err("omap-mcbsp: %s: could not clk_get() %s\n", "clks", | ||
122 | fck_src_name); | ||
123 | return -EINVAL; | ||
124 | } | ||
125 | |||
126 | pm_runtime_put_sync(dev); | ||
127 | |||
128 | r = clk_set_parent(clk, fck_src); | ||
129 | if (IS_ERR_VALUE(r)) { | ||
130 | pr_err("omap-mcbsp: %s: could not clk_set_parent() to %s\n", | ||
131 | "clks", fck_src_name); | ||
132 | clk_put(fck_src); | ||
133 | return -EINVAL; | ||
134 | } | ||
135 | |||
136 | pm_runtime_get_sync(dev); | ||
137 | |||
138 | clk_put(fck_src); | ||
139 | |||
140 | return 0; | ||
141 | } | ||
142 | |||
143 | static int omap3_enable_st_clock(unsigned int id, bool enable) | 34 | static int omap3_enable_st_clock(unsigned int id, bool enable) |
144 | { | 35 | { |
145 | unsigned int w; | 36 | unsigned int w; |
@@ -181,17 +72,11 @@ static int __init omap_init_mcbsp(struct omap_hwmod *oh, void *unused) | |||
181 | pdata->reg_size = 4; | 72 | pdata->reg_size = 4; |
182 | pdata->has_ccr = true; | 73 | pdata->has_ccr = true; |
183 | } | 74 | } |
184 | pdata->set_clk_src = omap2_mcbsp_set_clk_src; | ||
185 | |||
186 | /* On OMAP2/3 the McBSP1 port has 6 pin configuration */ | ||
187 | if (id == 1 && oh->class->rev < MCBSP_CONFIG_TYPE4) | ||
188 | pdata->mux_signal = omap2_mcbsp1_mux_rx_clk; | ||
189 | 75 | ||
190 | /* On OMAP4 the McBSP4 port has 6 pin configuration */ | 76 | if (oh->class->rev == MCBSP_CONFIG_TYPE2) { |
191 | if (id == 4 && oh->class->rev == MCBSP_CONFIG_TYPE4) | 77 | /* The FIFO has 128 locations */ |
192 | pdata->mux_signal = omap4_mcbsp4_mux_rx_clk; | 78 | pdata->buffer_size = 0x80; |
193 | 79 | } else if (oh->class->rev == MCBSP_CONFIG_TYPE3) { | |
194 | if (oh->class->rev == MCBSP_CONFIG_TYPE3) { | ||
195 | if (id == 2) | 80 | if (id == 2) |
196 | /* The FIFO has 1024 + 256 locations */ | 81 | /* The FIFO has 1024 + 256 locations */ |
197 | pdata->buffer_size = 0x500; | 82 | pdata->buffer_size = 0x500; |
@@ -227,7 +112,8 @@ static int __init omap_init_mcbsp(struct omap_hwmod *oh, void *unused) | |||
227 | 112 | ||
228 | static int __init omap2_mcbsp_init(void) | 113 | static int __init omap2_mcbsp_init(void) |
229 | { | 114 | { |
230 | omap_hwmod_for_each_by_class("mcbsp", omap_init_mcbsp, NULL); | 115 | if (!of_have_populated_dt()) |
116 | omap_hwmod_for_each_by_class("mcbsp", omap_init_mcbsp, NULL); | ||
231 | 117 | ||
232 | return 0; | 118 | return 0; |
233 | } | 119 | } |
diff --git a/arch/arm/mach-omap2/msdi.c b/arch/arm/mach-omap2/msdi.c index fb5bc6cf3773..9e57b4aadb06 100644 --- a/arch/arm/mach-omap2/msdi.c +++ b/arch/arm/mach-omap2/msdi.c | |||
@@ -23,6 +23,7 @@ | |||
23 | 23 | ||
24 | #include <linux/kernel.h> | 24 | #include <linux/kernel.h> |
25 | #include <linux/err.h> | 25 | #include <linux/err.h> |
26 | #include <linux/platform_data/gpio-omap.h> | ||
26 | 27 | ||
27 | #include <plat/omap_hwmod.h> | 28 | #include <plat/omap_hwmod.h> |
28 | #include <plat/omap_device.h> | 29 | #include <plat/omap_device.h> |
diff --git a/arch/arm/mach-omap2/mux.c b/arch/arm/mach-omap2/mux.c index 9fe6829f4c16..701e17cba468 100644 --- a/arch/arm/mach-omap2/mux.c +++ b/arch/arm/mach-omap2/mux.c | |||
@@ -486,7 +486,7 @@ void omap_hwmod_mux(struct omap_hwmod_mux_info *hmux, u8 state) | |||
486 | default: | 486 | default: |
487 | /* Nothing to be done */ | 487 | /* Nothing to be done */ |
488 | break; | 488 | break; |
489 | }; | 489 | } |
490 | 490 | ||
491 | if (val >= 0) { | 491 | if (val >= 0) { |
492 | omap_mux_write(pad->partition, val, | 492 | omap_mux_write(pad->partition, val, |
diff --git a/arch/arm/mach-omap2/omap-hotplug.c b/arch/arm/mach-omap2/omap-hotplug.c index 414083b427df..e712d1725a8b 100644 --- a/arch/arm/mach-omap2/omap-hotplug.c +++ b/arch/arm/mach-omap2/omap-hotplug.c | |||
@@ -20,22 +20,17 @@ | |||
20 | #include <linux/io.h> | 20 | #include <linux/io.h> |
21 | 21 | ||
22 | #include <asm/cacheflush.h> | 22 | #include <asm/cacheflush.h> |
23 | #include <mach/omap-wakeupgen.h> | 23 | #include "omap-wakeupgen.h" |
24 | 24 | ||
25 | #include "common.h" | 25 | #include "common.h" |
26 | 26 | ||
27 | #include "powerdomain.h" | 27 | #include "powerdomain.h" |
28 | 28 | ||
29 | int platform_cpu_kill(unsigned int cpu) | ||
30 | { | ||
31 | return 1; | ||
32 | } | ||
33 | |||
34 | /* | 29 | /* |
35 | * platform-specific code to shutdown a CPU | 30 | * platform-specific code to shutdown a CPU |
36 | * Called with IRQs disabled | 31 | * Called with IRQs disabled |
37 | */ | 32 | */ |
38 | void __ref platform_cpu_die(unsigned int cpu) | 33 | void __ref omap4_cpu_die(unsigned int cpu) |
39 | { | 34 | { |
40 | unsigned int boot_cpu = 0; | 35 | unsigned int boot_cpu = 0; |
41 | void __iomem *base = omap_get_wakeupgen_base(); | 36 | void __iomem *base = omap_get_wakeupgen_base(); |
@@ -75,12 +70,3 @@ void __ref platform_cpu_die(unsigned int cpu) | |||
75 | pr_debug("CPU%u: spurious wakeup call\n", cpu); | 70 | pr_debug("CPU%u: spurious wakeup call\n", cpu); |
76 | } | 71 | } |
77 | } | 72 | } |
78 | |||
79 | int platform_cpu_disable(unsigned int cpu) | ||
80 | { | ||
81 | /* | ||
82 | * we don't allow CPU 0 to be shutdown (it is still too special | ||
83 | * e.g. clock tick interrupts) | ||
84 | */ | ||
85 | return cpu == 0 ? -EPERM : 0; | ||
86 | } | ||
diff --git a/arch/arm/mach-omap2/omap-iommu.c b/arch/arm/mach-omap2/omap-iommu.c index 1be8bcb52e93..df298d46707c 100644 --- a/arch/arm/mach-omap2/omap-iommu.c +++ b/arch/arm/mach-omap2/omap-iommu.c | |||
@@ -14,7 +14,9 @@ | |||
14 | #include <linux/platform_device.h> | 14 | #include <linux/platform_device.h> |
15 | 15 | ||
16 | #include <plat/iommu.h> | 16 | #include <plat/iommu.h> |
17 | #include <plat/irqs.h> | 17 | |
18 | #include "soc.h" | ||
19 | #include "common.h" | ||
18 | 20 | ||
19 | struct iommu_device { | 21 | struct iommu_device { |
20 | resource_size_t base; | 22 | resource_size_t base; |
@@ -29,7 +31,7 @@ static int num_iommu_devices; | |||
29 | static struct iommu_device omap3_devices[] = { | 31 | static struct iommu_device omap3_devices[] = { |
30 | { | 32 | { |
31 | .base = 0x480bd400, | 33 | .base = 0x480bd400, |
32 | .irq = 24, | 34 | .irq = 24 + OMAP_INTC_START, |
33 | .pdata = { | 35 | .pdata = { |
34 | .name = "isp", | 36 | .name = "isp", |
35 | .nr_tlb_entries = 8, | 37 | .nr_tlb_entries = 8, |
@@ -41,7 +43,7 @@ static struct iommu_device omap3_devices[] = { | |||
41 | #if defined(CONFIG_OMAP_IOMMU_IVA2) | 43 | #if defined(CONFIG_OMAP_IOMMU_IVA2) |
42 | { | 44 | { |
43 | .base = 0x5d000000, | 45 | .base = 0x5d000000, |
44 | .irq = 28, | 46 | .irq = 28 + OMAP_INTC_START, |
45 | .pdata = { | 47 | .pdata = { |
46 | .name = "iva2", | 48 | .name = "iva2", |
47 | .nr_tlb_entries = 32, | 49 | .nr_tlb_entries = 32, |
@@ -64,7 +66,7 @@ static struct platform_device *omap3_iommu_pdev[NR_OMAP3_IOMMU_DEVICES]; | |||
64 | static struct iommu_device omap4_devices[] = { | 66 | static struct iommu_device omap4_devices[] = { |
65 | { | 67 | { |
66 | .base = OMAP4_MMU1_BASE, | 68 | .base = OMAP4_MMU1_BASE, |
67 | .irq = OMAP44XX_IRQ_DUCATI_MMU, | 69 | .irq = 100 + OMAP44XX_IRQ_GIC_START, |
68 | .pdata = { | 70 | .pdata = { |
69 | .name = "ducati", | 71 | .name = "ducati", |
70 | .nr_tlb_entries = 32, | 72 | .nr_tlb_entries = 32, |
@@ -75,7 +77,7 @@ static struct iommu_device omap4_devices[] = { | |||
75 | }, | 77 | }, |
76 | { | 78 | { |
77 | .base = OMAP4_MMU2_BASE, | 79 | .base = OMAP4_MMU2_BASE, |
78 | .irq = OMAP44XX_IRQ_TESLA_MMU, | 80 | .irq = 28 + OMAP44XX_IRQ_GIC_START, |
79 | .pdata = { | 81 | .pdata = { |
80 | .name = "tesla", | 82 | .name = "tesla", |
81 | .nr_tlb_entries = 32, | 83 | .nr_tlb_entries = 32, |
diff --git a/arch/arm/mach-omap2/omap-mpuss-lowpower.c b/arch/arm/mach-omap2/omap-mpuss-lowpower.c index 637a1bdf2ac4..ff4e6a0e9c7c 100644 --- a/arch/arm/mach-omap2/omap-mpuss-lowpower.c +++ b/arch/arm/mach-omap2/omap-mpuss-lowpower.c | |||
@@ -50,9 +50,8 @@ | |||
50 | #include <asm/suspend.h> | 50 | #include <asm/suspend.h> |
51 | #include <asm/hardware/cache-l2x0.h> | 51 | #include <asm/hardware/cache-l2x0.h> |
52 | 52 | ||
53 | #include <plat/omap44xx.h> | ||
54 | |||
55 | #include "common.h" | 53 | #include "common.h" |
54 | #include "omap44xx.h" | ||
56 | #include "omap4-sar-layout.h" | 55 | #include "omap4-sar-layout.h" |
57 | #include "pm.h" | 56 | #include "pm.h" |
58 | #include "prcm_mpu44xx.h" | 57 | #include "prcm_mpu44xx.h" |
diff --git a/arch/arm/mach-omap2/omap-secure.c b/arch/arm/mach-omap2/omap-secure.c index d9ae4a53d818..e089e4d1ae38 100644 --- a/arch/arm/mach-omap2/omap-secure.c +++ b/arch/arm/mach-omap2/omap-secure.c | |||
@@ -19,7 +19,7 @@ | |||
19 | #include <asm/memblock.h> | 19 | #include <asm/memblock.h> |
20 | 20 | ||
21 | #include <plat/omap-secure.h> | 21 | #include <plat/omap-secure.h> |
22 | #include <mach/omap-secure.h> | 22 | #include "omap-secure.h" |
23 | 23 | ||
24 | static phys_addr_t omap_secure_memblock_base; | 24 | static phys_addr_t omap_secure_memblock_base; |
25 | 25 | ||
@@ -61,8 +61,8 @@ int __init omap_secure_ram_reserve_memblock(void) | |||
61 | { | 61 | { |
62 | u32 size = OMAP_SECURE_RAM_STORAGE; | 62 | u32 size = OMAP_SECURE_RAM_STORAGE; |
63 | 63 | ||
64 | size = ALIGN(size, SZ_1M); | 64 | size = ALIGN(size, SECTION_SIZE); |
65 | omap_secure_memblock_base = arm_memblock_steal(size, SZ_1M); | 65 | omap_secure_memblock_base = arm_memblock_steal(size, SECTION_SIZE); |
66 | 66 | ||
67 | return 0; | 67 | return 0; |
68 | } | 68 | } |
diff --git a/arch/arm/mach-omap2/include/mach/omap-secure.h b/arch/arm/mach-omap2/omap-secure.h index c90a43589abe..c90a43589abe 100644 --- a/arch/arm/mach-omap2/include/mach/omap-secure.h +++ b/arch/arm/mach-omap2/omap-secure.h | |||
diff --git a/arch/arm/mach-omap2/omap-smp.c b/arch/arm/mach-omap2/omap-smp.c index 9a35adf91232..4d05fa8a4e48 100644 --- a/arch/arm/mach-omap2/omap-smp.c +++ b/arch/arm/mach-omap2/omap-smp.c | |||
@@ -24,11 +24,11 @@ | |||
24 | #include <asm/hardware/gic.h> | 24 | #include <asm/hardware/gic.h> |
25 | #include <asm/smp_scu.h> | 25 | #include <asm/smp_scu.h> |
26 | 26 | ||
27 | #include <mach/hardware.h> | 27 | #include "omap-secure.h" |
28 | #include <mach/omap-secure.h> | 28 | #include "omap-wakeupgen.h" |
29 | #include <mach/omap-wakeupgen.h> | ||
30 | #include <asm/cputype.h> | 29 | #include <asm/cputype.h> |
31 | 30 | ||
31 | #include "soc.h" | ||
32 | #include "iomap.h" | 32 | #include "iomap.h" |
33 | #include "common.h" | 33 | #include "common.h" |
34 | #include "clockdomain.h" | 34 | #include "clockdomain.h" |
@@ -49,7 +49,7 @@ void __iomem *omap4_get_scu_base(void) | |||
49 | return scu_base; | 49 | return scu_base; |
50 | } | 50 | } |
51 | 51 | ||
52 | void __cpuinit platform_secondary_init(unsigned int cpu) | 52 | static void __cpuinit omap4_secondary_init(unsigned int cpu) |
53 | { | 53 | { |
54 | /* | 54 | /* |
55 | * Configure ACTRL and enable NS SMP bit access on CPU1 on HS device. | 55 | * Configure ACTRL and enable NS SMP bit access on CPU1 on HS device. |
@@ -77,7 +77,7 @@ void __cpuinit platform_secondary_init(unsigned int cpu) | |||
77 | spin_unlock(&boot_lock); | 77 | spin_unlock(&boot_lock); |
78 | } | 78 | } |
79 | 79 | ||
80 | int __cpuinit boot_secondary(unsigned int cpu, struct task_struct *idle) | 80 | static int __cpuinit omap4_boot_secondary(unsigned int cpu, struct task_struct *idle) |
81 | { | 81 | { |
82 | static struct clockdomain *cpu1_clkdm; | 82 | static struct clockdomain *cpu1_clkdm; |
83 | static bool booted; | 83 | static bool booted; |
@@ -165,7 +165,7 @@ static void __init wakeup_secondary(void) | |||
165 | * Initialise the CPU possible map early - this describes the CPUs | 165 | * Initialise the CPU possible map early - this describes the CPUs |
166 | * which may be present or become present in the system. | 166 | * which may be present or become present in the system. |
167 | */ | 167 | */ |
168 | void __init smp_init_cpus(void) | 168 | static void __init omap4_smp_init_cpus(void) |
169 | { | 169 | { |
170 | unsigned int i = 0, ncores = 1, cpu_id; | 170 | unsigned int i = 0, ncores = 1, cpu_id; |
171 | 171 | ||
@@ -196,7 +196,7 @@ void __init smp_init_cpus(void) | |||
196 | set_smp_cross_call(gic_raise_softirq); | 196 | set_smp_cross_call(gic_raise_softirq); |
197 | } | 197 | } |
198 | 198 | ||
199 | void __init platform_smp_prepare_cpus(unsigned int max_cpus) | 199 | static void __init omap4_smp_prepare_cpus(unsigned int max_cpus) |
200 | { | 200 | { |
201 | 201 | ||
202 | /* | 202 | /* |
@@ -207,3 +207,13 @@ void __init platform_smp_prepare_cpus(unsigned int max_cpus) | |||
207 | scu_enable(scu_base); | 207 | scu_enable(scu_base); |
208 | wakeup_secondary(); | 208 | wakeup_secondary(); |
209 | } | 209 | } |
210 | |||
211 | struct smp_operations omap4_smp_ops __initdata = { | ||
212 | .smp_init_cpus = omap4_smp_init_cpus, | ||
213 | .smp_prepare_cpus = omap4_smp_prepare_cpus, | ||
214 | .smp_secondary_init = omap4_secondary_init, | ||
215 | .smp_boot_secondary = omap4_boot_secondary, | ||
216 | #ifdef CONFIG_HOTPLUG_CPU | ||
217 | .cpu_die = omap4_cpu_die, | ||
218 | #endif | ||
219 | }; | ||
diff --git a/arch/arm/mach-omap2/omap-wakeupgen.c b/arch/arm/mach-omap2/omap-wakeupgen.c index 05fdebfaa195..5d3b4f4f81ae 100644 --- a/arch/arm/mach-omap2/omap-wakeupgen.c +++ b/arch/arm/mach-omap2/omap-wakeupgen.c | |||
@@ -27,9 +27,10 @@ | |||
27 | 27 | ||
28 | #include <asm/hardware/gic.h> | 28 | #include <asm/hardware/gic.h> |
29 | 29 | ||
30 | #include <mach/omap-wakeupgen.h> | 30 | #include "omap-wakeupgen.h" |
31 | #include <mach/omap-secure.h> | 31 | #include "omap-secure.h" |
32 | 32 | ||
33 | #include "soc.h" | ||
33 | #include "omap4-sar-layout.h" | 34 | #include "omap4-sar-layout.h" |
34 | #include "common.h" | 35 | #include "common.h" |
35 | 36 | ||
@@ -46,7 +47,7 @@ | |||
46 | static void __iomem *wakeupgen_base; | 47 | static void __iomem *wakeupgen_base; |
47 | static void __iomem *sar_base; | 48 | static void __iomem *sar_base; |
48 | static DEFINE_SPINLOCK(wakeupgen_lock); | 49 | static DEFINE_SPINLOCK(wakeupgen_lock); |
49 | static unsigned int irq_target_cpu[NR_IRQS]; | 50 | static unsigned int irq_target_cpu[MAX_IRQS]; |
50 | static unsigned int irq_banks = MAX_NR_REG_BANKS; | 51 | static unsigned int irq_banks = MAX_NR_REG_BANKS; |
51 | static unsigned int max_irqs = MAX_IRQS; | 52 | static unsigned int max_irqs = MAX_IRQS; |
52 | static unsigned int omap_secure_apis; | 53 | static unsigned int omap_secure_apis; |
@@ -229,13 +230,7 @@ static inline void omap4_irq_save_context(void) | |||
229 | /* Save AuxBoot* registers */ | 230 | /* Save AuxBoot* registers */ |
230 | val = __raw_readl(wakeupgen_base + OMAP_AUX_CORE_BOOT_0); | 231 | val = __raw_readl(wakeupgen_base + OMAP_AUX_CORE_BOOT_0); |
231 | __raw_writel(val, sar_base + AUXCOREBOOT0_OFFSET); | 232 | __raw_writel(val, sar_base + AUXCOREBOOT0_OFFSET); |
232 | val = __raw_readl(wakeupgen_base + OMAP_AUX_CORE_BOOT_0); | 233 | val = __raw_readl(wakeupgen_base + OMAP_AUX_CORE_BOOT_1); |
233 | __raw_writel(val, sar_base + AUXCOREBOOT1_OFFSET); | ||
234 | |||
235 | /* Save SyncReq generation logic */ | ||
236 | val = __raw_readl(wakeupgen_base + OMAP_AUX_CORE_BOOT_0); | ||
237 | __raw_writel(val, sar_base + AUXCOREBOOT0_OFFSET); | ||
238 | val = __raw_readl(wakeupgen_base + OMAP_AUX_CORE_BOOT_0); | ||
239 | __raw_writel(val, sar_base + AUXCOREBOOT1_OFFSET); | 234 | __raw_writel(val, sar_base + AUXCOREBOOT1_OFFSET); |
240 | 235 | ||
241 | /* Save SyncReq generation logic */ | 236 | /* Save SyncReq generation logic */ |
diff --git a/arch/arm/mach-omap2/include/mach/omap-wakeupgen.h b/arch/arm/mach-omap2/omap-wakeupgen.h index b0fd16f5c391..b0fd16f5c391 100644 --- a/arch/arm/mach-omap2/include/mach/omap-wakeupgen.h +++ b/arch/arm/mach-omap2/omap-wakeupgen.h | |||
diff --git a/arch/arm/mach-omap2/omap24xx.h b/arch/arm/mach-omap2/omap24xx.h new file mode 100644 index 000000000000..641a2c8d2eee --- /dev/null +++ b/arch/arm/mach-omap2/omap24xx.h | |||
@@ -0,0 +1,87 @@ | |||
1 | /* | ||
2 | * This file contains the processor specific definitions | ||
3 | * of the TI OMAP24XX. | ||
4 | * | ||
5 | * Copyright (C) 2007 Texas Instruments. | ||
6 | * Copyright (C) 2007 Nokia Corporation. | ||
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 as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
16 | * GNU General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
21 | * | ||
22 | */ | ||
23 | |||
24 | #ifndef __ASM_ARCH_OMAP2_H | ||
25 | #define __ASM_ARCH_OMAP2_H | ||
26 | |||
27 | /* | ||
28 | * Please place only base defines here and put the rest in device | ||
29 | * specific headers. Note also that some of these defines are needed | ||
30 | * for omap1 to compile without adding ifdefs. | ||
31 | */ | ||
32 | |||
33 | #define L4_24XX_BASE 0x48000000 | ||
34 | #define L4_WK_243X_BASE 0x49000000 | ||
35 | #define L3_24XX_BASE 0x68000000 | ||
36 | |||
37 | /* interrupt controller */ | ||
38 | #define OMAP24XX_IC_BASE (L4_24XX_BASE + 0xfe000) | ||
39 | #define OMAP24XX_IVA_INTC_BASE 0x40000000 | ||
40 | |||
41 | #define OMAP242X_CTRL_BASE L4_24XX_BASE | ||
42 | #define OMAP2420_32KSYNCT_BASE (L4_24XX_BASE + 0x4000) | ||
43 | #define OMAP2420_PRCM_BASE (L4_24XX_BASE + 0x8000) | ||
44 | #define OMAP2420_CM_BASE (L4_24XX_BASE + 0x8000) | ||
45 | #define OMAP2420_PRM_BASE OMAP2420_CM_BASE | ||
46 | #define OMAP2420_SDRC_BASE (L3_24XX_BASE + 0x9000) | ||
47 | #define OMAP2420_SMS_BASE 0x68008000 | ||
48 | #define OMAP2420_GPMC_BASE 0x6800a000 | ||
49 | |||
50 | #define OMAP2430_32KSYNCT_BASE (L4_WK_243X_BASE + 0x20000) | ||
51 | #define OMAP2430_PRCM_BASE (L4_WK_243X_BASE + 0x6000) | ||
52 | #define OMAP2430_CM_BASE (L4_WK_243X_BASE + 0x6000) | ||
53 | #define OMAP2430_PRM_BASE OMAP2430_CM_BASE | ||
54 | |||
55 | #define OMAP243X_SMS_BASE 0x6C000000 | ||
56 | #define OMAP243X_SDRC_BASE 0x6D000000 | ||
57 | #define OMAP243X_GPMC_BASE 0x6E000000 | ||
58 | #define OMAP243X_SCM_BASE (L4_WK_243X_BASE + 0x2000) | ||
59 | #define OMAP243X_CTRL_BASE OMAP243X_SCM_BASE | ||
60 | #define OMAP243X_HS_BASE (L4_24XX_BASE + 0x000ac000) | ||
61 | |||
62 | /* DSP SS */ | ||
63 | #define OMAP2420_DSP_BASE 0x58000000 | ||
64 | #define OMAP2420_DSP_MEM_BASE (OMAP2420_DSP_BASE + 0x0) | ||
65 | #define OMAP2420_DSP_IPI_BASE (OMAP2420_DSP_BASE + 0x1000000) | ||
66 | #define OMAP2420_DSP_MMU_BASE (OMAP2420_DSP_BASE + 0x2000000) | ||
67 | |||
68 | #define OMAP243X_DSP_BASE 0x5C000000 | ||
69 | #define OMAP243X_DSP_MEM_BASE (OMAP243X_DSP_BASE + 0x0) | ||
70 | #define OMAP243X_DSP_MMU_BASE (OMAP243X_DSP_BASE + 0x1000000) | ||
71 | |||
72 | /* Mailbox */ | ||
73 | #define OMAP24XX_MAILBOX_BASE (L4_24XX_BASE + 0x94000) | ||
74 | |||
75 | /* Camera */ | ||
76 | #define OMAP24XX_CAMERA_BASE (L4_24XX_BASE + 0x52000) | ||
77 | |||
78 | /* Security */ | ||
79 | #define OMAP24XX_SEC_BASE (L4_24XX_BASE + 0xA0000) | ||
80 | #define OMAP24XX_SEC_RNG_BASE (OMAP24XX_SEC_BASE + 0x0000) | ||
81 | #define OMAP24XX_SEC_DES_BASE (OMAP24XX_SEC_BASE + 0x2000) | ||
82 | #define OMAP24XX_SEC_SHA1MD5_BASE (OMAP24XX_SEC_BASE + 0x4000) | ||
83 | #define OMAP24XX_SEC_AES_BASE (OMAP24XX_SEC_BASE + 0x6000) | ||
84 | #define OMAP24XX_SEC_PKA_BASE (OMAP24XX_SEC_BASE + 0x8000) | ||
85 | |||
86 | #endif /* __ASM_ARCH_OMAP2_H */ | ||
87 | |||
diff --git a/arch/arm/mach-omap2/omap34xx.h b/arch/arm/mach-omap2/omap34xx.h new file mode 100644 index 000000000000..c0d1b4b1653f --- /dev/null +++ b/arch/arm/mach-omap2/omap34xx.h | |||
@@ -0,0 +1,99 @@ | |||
1 | /* | ||
2 | * This file contains the processor specific definitions of the TI OMAP34XX. | ||
3 | * | ||
4 | * Copyright (C) 2007 Texas Instruments. | ||
5 | * Copyright (C) 2007 Nokia Corporation. | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | * GNU General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
20 | */ | ||
21 | |||
22 | #ifndef __ASM_ARCH_OMAP3_H | ||
23 | #define __ASM_ARCH_OMAP3_H | ||
24 | |||
25 | /* | ||
26 | * Please place only base defines here and put the rest in device | ||
27 | * specific headers. | ||
28 | */ | ||
29 | |||
30 | #define L4_34XX_BASE 0x48000000 | ||
31 | #define L4_WK_34XX_BASE 0x48300000 | ||
32 | #define L4_PER_34XX_BASE 0x49000000 | ||
33 | #define L4_EMU_34XX_BASE 0x54000000 | ||
34 | #define L3_34XX_BASE 0x68000000 | ||
35 | |||
36 | #define L4_WK_AM33XX_BASE 0x44C00000 | ||
37 | |||
38 | #define OMAP3430_32KSYNCT_BASE 0x48320000 | ||
39 | #define OMAP3430_CM_BASE 0x48004800 | ||
40 | #define OMAP3430_PRM_BASE 0x48306800 | ||
41 | #define OMAP343X_SMS_BASE 0x6C000000 | ||
42 | #define OMAP343X_SDRC_BASE 0x6D000000 | ||
43 | #define OMAP34XX_GPMC_BASE 0x6E000000 | ||
44 | #define OMAP343X_SCM_BASE 0x48002000 | ||
45 | #define OMAP343X_CTRL_BASE OMAP343X_SCM_BASE | ||
46 | |||
47 | #define OMAP34XX_IC_BASE 0x48200000 | ||
48 | |||
49 | #define OMAP3430_ISP_BASE (L4_34XX_BASE + 0xBC000) | ||
50 | #define OMAP3430_ISP_CBUFF_BASE (OMAP3430_ISP_BASE + 0x0100) | ||
51 | #define OMAP3430_ISP_CCP2_BASE (OMAP3430_ISP_BASE + 0x0400) | ||
52 | #define OMAP3430_ISP_CCDC_BASE (OMAP3430_ISP_BASE + 0x0600) | ||
53 | #define OMAP3430_ISP_HIST_BASE (OMAP3430_ISP_BASE + 0x0A00) | ||
54 | #define OMAP3430_ISP_H3A_BASE (OMAP3430_ISP_BASE + 0x0C00) | ||
55 | #define OMAP3430_ISP_PREV_BASE (OMAP3430_ISP_BASE + 0x0E00) | ||
56 | #define OMAP3430_ISP_RESZ_BASE (OMAP3430_ISP_BASE + 0x1000) | ||
57 | #define OMAP3430_ISP_SBL_BASE (OMAP3430_ISP_BASE + 0x1200) | ||
58 | #define OMAP3430_ISP_MMU_BASE (OMAP3430_ISP_BASE + 0x1400) | ||
59 | #define OMAP3430_ISP_CSI2A_REGS1_BASE (OMAP3430_ISP_BASE + 0x1800) | ||
60 | #define OMAP3430_ISP_CSIPHY2_BASE (OMAP3430_ISP_BASE + 0x1970) | ||
61 | #define OMAP3630_ISP_CSI2A_REGS2_BASE (OMAP3430_ISP_BASE + 0x19C0) | ||
62 | #define OMAP3630_ISP_CSI2C_REGS1_BASE (OMAP3430_ISP_BASE + 0x1C00) | ||
63 | #define OMAP3630_ISP_CSIPHY1_BASE (OMAP3430_ISP_BASE + 0x1D70) | ||
64 | #define OMAP3630_ISP_CSI2C_REGS2_BASE (OMAP3430_ISP_BASE + 0x1DC0) | ||
65 | |||
66 | #define OMAP3430_ISP_END (OMAP3430_ISP_BASE + 0x06F) | ||
67 | #define OMAP3430_ISP_CBUFF_END (OMAP3430_ISP_CBUFF_BASE + 0x077) | ||
68 | #define OMAP3430_ISP_CCP2_END (OMAP3430_ISP_CCP2_BASE + 0x1EF) | ||
69 | #define OMAP3430_ISP_CCDC_END (OMAP3430_ISP_CCDC_BASE + 0x0A7) | ||
70 | #define OMAP3430_ISP_HIST_END (OMAP3430_ISP_HIST_BASE + 0x047) | ||
71 | #define OMAP3430_ISP_H3A_END (OMAP3430_ISP_H3A_BASE + 0x05F) | ||
72 | #define OMAP3430_ISP_PREV_END (OMAP3430_ISP_PREV_BASE + 0x09F) | ||
73 | #define OMAP3430_ISP_RESZ_END (OMAP3430_ISP_RESZ_BASE + 0x0AB) | ||
74 | #define OMAP3430_ISP_SBL_END (OMAP3430_ISP_SBL_BASE + 0x0FB) | ||
75 | #define OMAP3430_ISP_MMU_END (OMAP3430_ISP_MMU_BASE + 0x06F) | ||
76 | #define OMAP3430_ISP_CSI2A_REGS1_END (OMAP3430_ISP_CSI2A_REGS1_BASE + 0x16F) | ||
77 | #define OMAP3430_ISP_CSIPHY2_END (OMAP3430_ISP_CSIPHY2_BASE + 0x00B) | ||
78 | #define OMAP3630_ISP_CSI2A_REGS2_END (OMAP3630_ISP_CSI2A_REGS2_BASE + 0x3F) | ||
79 | #define OMAP3630_ISP_CSI2C_REGS1_END (OMAP3630_ISP_CSI2C_REGS1_BASE + 0x16F) | ||
80 | #define OMAP3630_ISP_CSIPHY1_END (OMAP3630_ISP_CSIPHY1_BASE + 0x00B) | ||
81 | #define OMAP3630_ISP_CSI2C_REGS2_END (OMAP3630_ISP_CSI2C_REGS2_BASE + 0x3F) | ||
82 | |||
83 | #define OMAP34XX_HSUSB_OTG_BASE (L4_34XX_BASE + 0xAB000) | ||
84 | #define OMAP34XX_USBTLL_BASE (L4_34XX_BASE + 0x62000) | ||
85 | #define OMAP34XX_UHH_CONFIG_BASE (L4_34XX_BASE + 0x64000) | ||
86 | #define OMAP34XX_OHCI_BASE (L4_34XX_BASE + 0x64400) | ||
87 | #define OMAP34XX_EHCI_BASE (L4_34XX_BASE + 0x64800) | ||
88 | #define OMAP34XX_SR1_BASE 0x480C9000 | ||
89 | #define OMAP34XX_SR2_BASE 0x480CB000 | ||
90 | |||
91 | #define OMAP34XX_MAILBOX_BASE (L4_34XX_BASE + 0x94000) | ||
92 | |||
93 | /* Security */ | ||
94 | #define OMAP34XX_SEC_BASE (L4_34XX_BASE + 0xA0000) | ||
95 | #define OMAP34XX_SEC_SHA1MD5_BASE (OMAP34XX_SEC_BASE + 0x23000) | ||
96 | #define OMAP34XX_SEC_AES_BASE (OMAP34XX_SEC_BASE + 0x25000) | ||
97 | |||
98 | #endif /* __ASM_ARCH_OMAP3_H */ | ||
99 | |||
diff --git a/arch/arm/mach-omap2/omap4-common.c b/arch/arm/mach-omap2/omap4-common.c index c29dee998a79..e1f289748c5d 100644 --- a/arch/arm/mach-omap2/omap4-common.c +++ b/arch/arm/mach-omap2/omap4-common.c | |||
@@ -16,26 +16,25 @@ | |||
16 | #include <linux/io.h> | 16 | #include <linux/io.h> |
17 | #include <linux/platform_device.h> | 17 | #include <linux/platform_device.h> |
18 | #include <linux/memblock.h> | 18 | #include <linux/memblock.h> |
19 | #include <linux/of_irq.h> | ||
20 | #include <linux/of_platform.h> | ||
21 | #include <linux/export.h> | ||
19 | 22 | ||
20 | #include <asm/hardware/gic.h> | 23 | #include <asm/hardware/gic.h> |
21 | #include <asm/hardware/cache-l2x0.h> | 24 | #include <asm/hardware/cache-l2x0.h> |
22 | #include <asm/mach/map.h> | 25 | #include <asm/mach/map.h> |
23 | #include <asm/memblock.h> | 26 | #include <asm/memblock.h> |
24 | #include <linux/of_irq.h> | ||
25 | #include <linux/of_platform.h> | ||
26 | 27 | ||
27 | #include <plat/irqs.h> | ||
28 | #include <plat/sram.h> | 28 | #include <plat/sram.h> |
29 | #include <plat/omap-secure.h> | 29 | #include <plat/omap-secure.h> |
30 | #include <plat/mmc.h> | 30 | #include <plat/mmc.h> |
31 | 31 | ||
32 | #include <mach/hardware.h> | 32 | #include "omap-wakeupgen.h" |
33 | #include <mach/omap-wakeupgen.h> | ||
34 | 33 | ||
34 | #include "soc.h" | ||
35 | #include "common.h" | 35 | #include "common.h" |
36 | #include "hsmmc.h" | 36 | #include "hsmmc.h" |
37 | #include "omap4-sar-layout.h" | 37 | #include "omap4-sar-layout.h" |
38 | #include <linux/export.h> | ||
39 | 38 | ||
40 | #ifdef CONFIG_CACHE_L2X0 | 39 | #ifdef CONFIG_CACHE_L2X0 |
41 | static void __iomem *l2cache_base; | 40 | static void __iomem *l2cache_base; |
@@ -171,7 +170,10 @@ static int __init omap_l2_cache_init(void) | |||
171 | /* Enable PL310 L2 Cache controller */ | 170 | /* Enable PL310 L2 Cache controller */ |
172 | omap_smc1(0x102, 0x1); | 171 | omap_smc1(0x102, 0x1); |
173 | 172 | ||
174 | l2x0_init(l2cache_base, aux_ctrl, L2X0_AUX_CTRL_MASK); | 173 | if (of_have_populated_dt()) |
174 | l2x0_of_init(aux_ctrl, L2X0_AUX_CTRL_MASK); | ||
175 | else | ||
176 | l2x0_init(l2cache_base, aux_ctrl, L2X0_AUX_CTRL_MASK); | ||
175 | 177 | ||
176 | /* | 178 | /* |
177 | * Override default outer_cache.disable with a OMAP4 | 179 | * Override default outer_cache.disable with a OMAP4 |
diff --git a/arch/arm/mach-omap2/omap4-keypad.h b/arch/arm/mach-omap2/omap4-keypad.h new file mode 100644 index 000000000000..20de0d5a7e77 --- /dev/null +++ b/arch/arm/mach-omap2/omap4-keypad.h | |||
@@ -0,0 +1,8 @@ | |||
1 | #ifndef ARCH_ARM_PLAT_OMAP4_KEYPAD_H | ||
2 | #define ARCH_ARM_PLAT_OMAP4_KEYPAD_H | ||
3 | |||
4 | struct omap_board_data; | ||
5 | |||
6 | extern int omap4_keyboard_init(struct omap4_keypad_platform_data *, | ||
7 | struct omap_board_data *); | ||
8 | #endif | ||
diff --git a/arch/arm/mach-omap2/omap44xx.h b/arch/arm/mach-omap2/omap44xx.h new file mode 100644 index 000000000000..43b927b2e2e8 --- /dev/null +++ b/arch/arm/mach-omap2/omap44xx.h | |||
@@ -0,0 +1,62 @@ | |||
1 | /*: | ||
2 | * Address mappings and base address for OMAP4 interconnects | ||
3 | * and peripherals. | ||
4 | * | ||
5 | * Copyright (C) 2009 Texas Instruments | ||
6 | * | ||
7 | * Author: Santosh Shilimkar <santosh.shilimkar@ti.com> | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | #ifndef __ASM_ARCH_OMAP44XX_H | ||
14 | #define __ASM_ARCH_OMAP44XX_H | ||
15 | |||
16 | /* | ||
17 | * Please place only base defines here and put the rest in device | ||
18 | * specific headers. | ||
19 | */ | ||
20 | #define L4_44XX_BASE 0x4a000000 | ||
21 | #define L4_WK_44XX_BASE 0x4a300000 | ||
22 | #define L4_PER_44XX_BASE 0x48000000 | ||
23 | #define L4_EMU_44XX_BASE 0x54000000 | ||
24 | #define L3_44XX_BASE 0x44000000 | ||
25 | #define OMAP44XX_EMIF1_BASE 0x4c000000 | ||
26 | #define OMAP44XX_EMIF2_BASE 0x4d000000 | ||
27 | #define OMAP44XX_DMM_BASE 0x4e000000 | ||
28 | #define OMAP4430_32KSYNCT_BASE 0x4a304000 | ||
29 | #define OMAP4430_CM1_BASE 0x4a004000 | ||
30 | #define OMAP4430_CM_BASE OMAP4430_CM1_BASE | ||
31 | #define OMAP4430_CM2_BASE 0x4a008000 | ||
32 | #define OMAP4430_PRM_BASE 0x4a306000 | ||
33 | #define OMAP4430_PRCM_MPU_BASE 0x48243000 | ||
34 | #define OMAP44XX_GPMC_BASE 0x50000000 | ||
35 | #define OMAP443X_SCM_BASE 0x4a002000 | ||
36 | #define OMAP443X_CTRL_BASE 0x4a100000 | ||
37 | #define OMAP44XX_IC_BASE 0x48200000 | ||
38 | #define OMAP44XX_IVA_INTC_BASE 0x40000000 | ||
39 | #define IRQ_SIR_IRQ 0x0040 | ||
40 | #define OMAP44XX_GIC_DIST_BASE 0x48241000 | ||
41 | #define OMAP44XX_GIC_CPU_BASE 0x48240100 | ||
42 | #define OMAP44XX_IRQ_GIC_START 32 | ||
43 | #define OMAP44XX_SCU_BASE 0x48240000 | ||
44 | #define OMAP44XX_LOCAL_TWD_BASE 0x48240600 | ||
45 | #define OMAP44XX_L2CACHE_BASE 0x48242000 | ||
46 | #define OMAP44XX_WKUPGEN_BASE 0x48281000 | ||
47 | #define OMAP44XX_MCPDM_BASE 0x40132000 | ||
48 | #define OMAP44XX_SAR_RAM_BASE 0x4a326000 | ||
49 | |||
50 | #define OMAP44XX_MAILBOX_BASE (L4_44XX_BASE + 0xF4000) | ||
51 | #define OMAP44XX_HSUSB_OTG_BASE (L4_44XX_BASE + 0xAB000) | ||
52 | |||
53 | #define OMAP4_MMU1_BASE 0x55082000 | ||
54 | #define OMAP4_MMU2_BASE 0x4A066000 | ||
55 | |||
56 | #define OMAP44XX_USBTLL_BASE (L4_44XX_BASE + 0x62000) | ||
57 | #define OMAP44XX_UHH_CONFIG_BASE (L4_44XX_BASE + 0x64000) | ||
58 | #define OMAP44XX_HSUSB_OHCI_BASE (L4_44XX_BASE + 0x64800) | ||
59 | #define OMAP44XX_HSUSB_EHCI_BASE (L4_44XX_BASE + 0x64C00) | ||
60 | |||
61 | #endif /* __ASM_ARCH_OMAP44XX_H */ | ||
62 | |||
diff --git a/arch/arm/mach-omap2/omap54xx.h b/arch/arm/mach-omap2/omap54xx.h new file mode 100644 index 000000000000..a2582bb3cab3 --- /dev/null +++ b/arch/arm/mach-omap2/omap54xx.h | |||
@@ -0,0 +1,32 @@ | |||
1 | /*: | ||
2 | * Address mappings and base address for OMAP5 interconnects | ||
3 | * and peripherals. | ||
4 | * | ||
5 | * Copyright (C) 2012 Texas Instruments | ||
6 | * Santosh Shilimkar <santosh.shilimkar@ti.com> | ||
7 | * Sricharan <r.sricharan@ti.com> | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License version 2 as | ||
11 | * published by the Free Software Foundation. | ||
12 | */ | ||
13 | #ifndef __ASM_SOC_OMAP54XX_H | ||
14 | #define __ASM_SOC_OMAP54XX_H | ||
15 | |||
16 | /* | ||
17 | * Please place only base defines here and put the rest in device | ||
18 | * specific headers. | ||
19 | */ | ||
20 | #define L4_54XX_BASE 0x4a000000 | ||
21 | #define L4_WK_54XX_BASE 0x4ae00000 | ||
22 | #define L4_PER_54XX_BASE 0x48000000 | ||
23 | #define L3_54XX_BASE 0x44000000 | ||
24 | #define OMAP54XX_32KSYNCT_BASE 0x4ae04000 | ||
25 | #define OMAP54XX_CM_CORE_AON_BASE 0x4a004000 | ||
26 | #define OMAP54XX_CM_CORE_BASE 0x4a008000 | ||
27 | #define OMAP54XX_PRM_BASE 0x4ae06000 | ||
28 | #define OMAP54XX_PRCM_MPU_BASE 0x48243000 | ||
29 | #define OMAP54XX_SCM_BASE 0x4a002000 | ||
30 | #define OMAP54XX_CTRL_BASE 0x4a002800 | ||
31 | |||
32 | #endif /* __ASM_SOC_OMAP555554XX_H */ | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod.c b/arch/arm/mach-omap2/omap_hwmod.c index 6ca8e519968d..b969ab1d258b 100644 --- a/arch/arm/mach-omap2/omap_hwmod.c +++ b/arch/arm/mach-omap2/omap_hwmod.c | |||
@@ -139,18 +139,20 @@ | |||
139 | #include <linux/slab.h> | 139 | #include <linux/slab.h> |
140 | #include <linux/bootmem.h> | 140 | #include <linux/bootmem.h> |
141 | 141 | ||
142 | #include "common.h" | ||
143 | #include <plat/cpu.h> | ||
144 | #include "clockdomain.h" | ||
145 | #include "powerdomain.h" | ||
146 | #include <plat/clock.h> | 142 | #include <plat/clock.h> |
147 | #include <plat/omap_hwmod.h> | 143 | #include <plat/omap_hwmod.h> |
148 | #include <plat/prcm.h> | 144 | #include <plat/prcm.h> |
149 | 145 | ||
146 | #include "soc.h" | ||
147 | #include "common.h" | ||
148 | #include "clockdomain.h" | ||
149 | #include "powerdomain.h" | ||
150 | #include "cm2xxx_3xxx.h" | 150 | #include "cm2xxx_3xxx.h" |
151 | #include "cminst44xx.h" | 151 | #include "cminst44xx.h" |
152 | #include "cm33xx.h" | ||
152 | #include "prm2xxx_3xxx.h" | 153 | #include "prm2xxx_3xxx.h" |
153 | #include "prm44xx.h" | 154 | #include "prm44xx.h" |
155 | #include "prm33xx.h" | ||
154 | #include "prminst44xx.h" | 156 | #include "prminst44xx.h" |
155 | #include "mux.h" | 157 | #include "mux.h" |
156 | #include "pm.h" | 158 | #include "pm.h" |
@@ -677,16 +679,25 @@ static int _init_main_clk(struct omap_hwmod *oh) | |||
677 | if (!oh->main_clk) | 679 | if (!oh->main_clk) |
678 | return 0; | 680 | return 0; |
679 | 681 | ||
680 | oh->_clk = omap_clk_get_by_name(oh->main_clk); | 682 | oh->_clk = clk_get(NULL, oh->main_clk); |
681 | if (!oh->_clk) { | 683 | if (IS_ERR(oh->_clk)) { |
682 | pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n", | 684 | pr_warning("omap_hwmod: %s: cannot clk_get main_clk %s\n", |
683 | oh->name, oh->main_clk); | 685 | oh->name, oh->main_clk); |
684 | return -EINVAL; | 686 | return -EINVAL; |
685 | } | 687 | } |
688 | /* | ||
689 | * HACK: This needs a re-visit once clk_prepare() is implemented | ||
690 | * to do something meaningful. Today its just a no-op. | ||
691 | * If clk_prepare() is used at some point to do things like | ||
692 | * voltage scaling etc, then this would have to be moved to | ||
693 | * some point where subsystems like i2c and pmic become | ||
694 | * available. | ||
695 | */ | ||
696 | clk_prepare(oh->_clk); | ||
686 | 697 | ||
687 | if (!oh->_clk->clkdm) | 698 | if (!oh->_clk->clkdm) |
688 | pr_warning("omap_hwmod: %s: missing clockdomain for %s.\n", | 699 | pr_debug("omap_hwmod: %s: missing clockdomain for %s.\n", |
689 | oh->main_clk, oh->_clk->name); | 700 | oh->name, oh->main_clk); |
690 | 701 | ||
691 | return ret; | 702 | return ret; |
692 | } | 703 | } |
@@ -713,13 +724,22 @@ static int _init_interface_clks(struct omap_hwmod *oh) | |||
713 | if (!os->clk) | 724 | if (!os->clk) |
714 | continue; | 725 | continue; |
715 | 726 | ||
716 | c = omap_clk_get_by_name(os->clk); | 727 | c = clk_get(NULL, os->clk); |
717 | if (!c) { | 728 | if (IS_ERR(c)) { |
718 | pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n", | 729 | pr_warning("omap_hwmod: %s: cannot clk_get interface_clk %s\n", |
719 | oh->name, os->clk); | 730 | oh->name, os->clk); |
720 | ret = -EINVAL; | 731 | ret = -EINVAL; |
721 | } | 732 | } |
722 | os->_clk = c; | 733 | os->_clk = c; |
734 | /* | ||
735 | * HACK: This needs a re-visit once clk_prepare() is implemented | ||
736 | * to do something meaningful. Today its just a no-op. | ||
737 | * If clk_prepare() is used at some point to do things like | ||
738 | * voltage scaling etc, then this would have to be moved to | ||
739 | * some point where subsystems like i2c and pmic become | ||
740 | * available. | ||
741 | */ | ||
742 | clk_prepare(os->_clk); | ||
723 | } | 743 | } |
724 | 744 | ||
725 | return ret; | 745 | return ret; |
@@ -740,13 +760,22 @@ static int _init_opt_clks(struct omap_hwmod *oh) | |||
740 | int ret = 0; | 760 | int ret = 0; |
741 | 761 | ||
742 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) { | 762 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) { |
743 | c = omap_clk_get_by_name(oc->clk); | 763 | c = clk_get(NULL, oc->clk); |
744 | if (!c) { | 764 | if (IS_ERR(c)) { |
745 | pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n", | 765 | pr_warning("omap_hwmod: %s: cannot clk_get opt_clk %s\n", |
746 | oh->name, oc->clk); | 766 | oh->name, oc->clk); |
747 | ret = -EINVAL; | 767 | ret = -EINVAL; |
748 | } | 768 | } |
749 | oc->_clk = c; | 769 | oc->_clk = c; |
770 | /* | ||
771 | * HACK: This needs a re-visit once clk_prepare() is implemented | ||
772 | * to do something meaningful. Today its just a no-op. | ||
773 | * If clk_prepare() is used at some point to do things like | ||
774 | * voltage scaling etc, then this would have to be moved to | ||
775 | * some point where subsystems like i2c and pmic become | ||
776 | * available. | ||
777 | */ | ||
778 | clk_prepare(oc->_clk); | ||
750 | } | 779 | } |
751 | 780 | ||
752 | return ret; | 781 | return ret; |
@@ -825,7 +854,7 @@ static void _enable_optional_clocks(struct omap_hwmod *oh) | |||
825 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) | 854 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) |
826 | if (oc->_clk) { | 855 | if (oc->_clk) { |
827 | pr_debug("omap_hwmod: enable %s:%s\n", oc->role, | 856 | pr_debug("omap_hwmod: enable %s:%s\n", oc->role, |
828 | oc->_clk->name); | 857 | __clk_get_name(oc->_clk)); |
829 | clk_enable(oc->_clk); | 858 | clk_enable(oc->_clk); |
830 | } | 859 | } |
831 | } | 860 | } |
@@ -840,7 +869,7 @@ static void _disable_optional_clocks(struct omap_hwmod *oh) | |||
840 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) | 869 | for (i = oh->opt_clks_cnt, oc = oh->opt_clks; i > 0; i--, oc++) |
841 | if (oc->_clk) { | 870 | if (oc->_clk) { |
842 | pr_debug("omap_hwmod: disable %s:%s\n", oc->role, | 871 | pr_debug("omap_hwmod: disable %s:%s\n", oc->role, |
843 | oc->_clk->name); | 872 | __clk_get_name(oc->_clk)); |
844 | clk_disable(oc->_clk); | 873 | clk_disable(oc->_clk); |
845 | } | 874 | } |
846 | } | 875 | } |
@@ -868,6 +897,26 @@ static void _omap4_enable_module(struct omap_hwmod *oh) | |||
868 | } | 897 | } |
869 | 898 | ||
870 | /** | 899 | /** |
900 | * _am33xx_enable_module - enable CLKCTRL modulemode on AM33XX | ||
901 | * @oh: struct omap_hwmod * | ||
902 | * | ||
903 | * Enables the PRCM module mode related to the hwmod @oh. | ||
904 | * No return value. | ||
905 | */ | ||
906 | static void _am33xx_enable_module(struct omap_hwmod *oh) | ||
907 | { | ||
908 | if (!oh->clkdm || !oh->prcm.omap4.modulemode) | ||
909 | return; | ||
910 | |||
911 | pr_debug("omap_hwmod: %s: %s: %d\n", | ||
912 | oh->name, __func__, oh->prcm.omap4.modulemode); | ||
913 | |||
914 | am33xx_cm_module_enable(oh->prcm.omap4.modulemode, oh->clkdm->cm_inst, | ||
915 | oh->clkdm->clkdm_offs, | ||
916 | oh->prcm.omap4.clkctrl_offs); | ||
917 | } | ||
918 | |||
919 | /** | ||
871 | * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4 | 920 | * _omap4_wait_target_disable - wait for a module to be disabled on OMAP4 |
872 | * @oh: struct omap_hwmod * | 921 | * @oh: struct omap_hwmod * |
873 | * | 922 | * |
@@ -878,10 +927,10 @@ static void _omap4_enable_module(struct omap_hwmod *oh) | |||
878 | */ | 927 | */ |
879 | static int _omap4_wait_target_disable(struct omap_hwmod *oh) | 928 | static int _omap4_wait_target_disable(struct omap_hwmod *oh) |
880 | { | 929 | { |
881 | if (!oh || !oh->clkdm) | 930 | if (!oh) |
882 | return -EINVAL; | 931 | return -EINVAL; |
883 | 932 | ||
884 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) | 933 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT || !oh->clkdm) |
885 | return 0; | 934 | return 0; |
886 | 935 | ||
887 | if (oh->flags & HWMOD_NO_IDLEST) | 936 | if (oh->flags & HWMOD_NO_IDLEST) |
@@ -894,6 +943,31 @@ static int _omap4_wait_target_disable(struct omap_hwmod *oh) | |||
894 | } | 943 | } |
895 | 944 | ||
896 | /** | 945 | /** |
946 | * _am33xx_wait_target_disable - wait for a module to be disabled on AM33XX | ||
947 | * @oh: struct omap_hwmod * | ||
948 | * | ||
949 | * Wait for a module @oh to enter slave idle. Returns 0 if the module | ||
950 | * does not have an IDLEST bit or if the module successfully enters | ||
951 | * slave idle; otherwise, pass along the return value of the | ||
952 | * appropriate *_cm*_wait_module_idle() function. | ||
953 | */ | ||
954 | static int _am33xx_wait_target_disable(struct omap_hwmod *oh) | ||
955 | { | ||
956 | if (!oh) | ||
957 | return -EINVAL; | ||
958 | |||
959 | if (oh->_int_flags & _HWMOD_NO_MPU_PORT) | ||
960 | return 0; | ||
961 | |||
962 | if (oh->flags & HWMOD_NO_IDLEST) | ||
963 | return 0; | ||
964 | |||
965 | return am33xx_cm_wait_module_idle(oh->clkdm->cm_inst, | ||
966 | oh->clkdm->clkdm_offs, | ||
967 | oh->prcm.omap4.clkctrl_offs); | ||
968 | } | ||
969 | |||
970 | /** | ||
897 | * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh | 971 | * _count_mpu_irqs - count the number of MPU IRQ lines associated with @oh |
898 | * @oh: struct omap_hwmod *oh | 972 | * @oh: struct omap_hwmod *oh |
899 | * | 973 | * |
@@ -1380,8 +1454,10 @@ static struct omap_hwmod *_lookup(const char *name) | |||
1380 | */ | 1454 | */ |
1381 | static int _init_clkdm(struct omap_hwmod *oh) | 1455 | static int _init_clkdm(struct omap_hwmod *oh) |
1382 | { | 1456 | { |
1383 | if (!oh->clkdm_name) | 1457 | if (!oh->clkdm_name) { |
1458 | pr_debug("omap_hwmod: %s: missing clockdomain\n", oh->name); | ||
1384 | return 0; | 1459 | return 0; |
1460 | } | ||
1385 | 1461 | ||
1386 | oh->clkdm = clkdm_lookup(oh->clkdm_name); | 1462 | oh->clkdm = clkdm_lookup(oh->clkdm_name); |
1387 | if (!oh->clkdm) { | 1463 | if (!oh->clkdm) { |
@@ -1438,8 +1514,8 @@ static int _init_clocks(struct omap_hwmod *oh, void *data) | |||
1438 | * Return the bit position of the reset line that match the | 1514 | * Return the bit position of the reset line that match the |
1439 | * input name. Return -ENOENT if not found. | 1515 | * input name. Return -ENOENT if not found. |
1440 | */ | 1516 | */ |
1441 | static u8 _lookup_hardreset(struct omap_hwmod *oh, const char *name, | 1517 | static int _lookup_hardreset(struct omap_hwmod *oh, const char *name, |
1442 | struct omap_hwmod_rst_info *ohri) | 1518 | struct omap_hwmod_rst_info *ohri) |
1443 | { | 1519 | { |
1444 | int i; | 1520 | int i; |
1445 | 1521 | ||
@@ -1475,7 +1551,7 @@ static u8 _lookup_hardreset(struct omap_hwmod *oh, const char *name, | |||
1475 | static int _assert_hardreset(struct omap_hwmod *oh, const char *name) | 1551 | static int _assert_hardreset(struct omap_hwmod *oh, const char *name) |
1476 | { | 1552 | { |
1477 | struct omap_hwmod_rst_info ohri; | 1553 | struct omap_hwmod_rst_info ohri; |
1478 | u8 ret = -EINVAL; | 1554 | int ret = -EINVAL; |
1479 | 1555 | ||
1480 | if (!oh) | 1556 | if (!oh) |
1481 | return -EINVAL; | 1557 | return -EINVAL; |
@@ -1484,7 +1560,7 @@ static int _assert_hardreset(struct omap_hwmod *oh, const char *name) | |||
1484 | return -ENOSYS; | 1560 | return -ENOSYS; |
1485 | 1561 | ||
1486 | ret = _lookup_hardreset(oh, name, &ohri); | 1562 | ret = _lookup_hardreset(oh, name, &ohri); |
1487 | if (IS_ERR_VALUE(ret)) | 1563 | if (ret < 0) |
1488 | return ret; | 1564 | return ret; |
1489 | 1565 | ||
1490 | ret = soc_ops.assert_hardreset(oh, &ohri); | 1566 | ret = soc_ops.assert_hardreset(oh, &ohri); |
@@ -1509,6 +1585,7 @@ static int _deassert_hardreset(struct omap_hwmod *oh, const char *name) | |||
1509 | { | 1585 | { |
1510 | struct omap_hwmod_rst_info ohri; | 1586 | struct omap_hwmod_rst_info ohri; |
1511 | int ret = -EINVAL; | 1587 | int ret = -EINVAL; |
1588 | int hwsup = 0; | ||
1512 | 1589 | ||
1513 | if (!oh) | 1590 | if (!oh) |
1514 | return -EINVAL; | 1591 | return -EINVAL; |
@@ -1520,10 +1597,46 @@ static int _deassert_hardreset(struct omap_hwmod *oh, const char *name) | |||
1520 | if (IS_ERR_VALUE(ret)) | 1597 | if (IS_ERR_VALUE(ret)) |
1521 | return ret; | 1598 | return ret; |
1522 | 1599 | ||
1600 | if (oh->clkdm) { | ||
1601 | /* | ||
1602 | * A clockdomain must be in SW_SUP otherwise reset | ||
1603 | * might not be completed. The clockdomain can be set | ||
1604 | * in HW_AUTO only when the module become ready. | ||
1605 | */ | ||
1606 | hwsup = clkdm_in_hwsup(oh->clkdm); | ||
1607 | ret = clkdm_hwmod_enable(oh->clkdm, oh); | ||
1608 | if (ret) { | ||
1609 | WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n", | ||
1610 | oh->name, oh->clkdm->name, ret); | ||
1611 | return ret; | ||
1612 | } | ||
1613 | } | ||
1614 | |||
1615 | _enable_clocks(oh); | ||
1616 | if (soc_ops.enable_module) | ||
1617 | soc_ops.enable_module(oh); | ||
1618 | |||
1523 | ret = soc_ops.deassert_hardreset(oh, &ohri); | 1619 | ret = soc_ops.deassert_hardreset(oh, &ohri); |
1620 | |||
1621 | if (soc_ops.disable_module) | ||
1622 | soc_ops.disable_module(oh); | ||
1623 | _disable_clocks(oh); | ||
1624 | |||
1524 | if (ret == -EBUSY) | 1625 | if (ret == -EBUSY) |
1525 | pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name); | 1626 | pr_warning("omap_hwmod: %s: failed to hardreset\n", oh->name); |
1526 | 1627 | ||
1628 | if (!ret) { | ||
1629 | /* | ||
1630 | * Set the clockdomain to HW_AUTO, assuming that the | ||
1631 | * previous state was HW_AUTO. | ||
1632 | */ | ||
1633 | if (oh->clkdm && hwsup) | ||
1634 | clkdm_allow_idle(oh->clkdm); | ||
1635 | } else { | ||
1636 | if (oh->clkdm) | ||
1637 | clkdm_hwmod_disable(oh->clkdm, oh); | ||
1638 | } | ||
1639 | |||
1527 | return ret; | 1640 | return ret; |
1528 | } | 1641 | } |
1529 | 1642 | ||
@@ -1542,7 +1655,7 @@ static int _deassert_hardreset(struct omap_hwmod *oh, const char *name) | |||
1542 | static int _read_hardreset(struct omap_hwmod *oh, const char *name) | 1655 | static int _read_hardreset(struct omap_hwmod *oh, const char *name) |
1543 | { | 1656 | { |
1544 | struct omap_hwmod_rst_info ohri; | 1657 | struct omap_hwmod_rst_info ohri; |
1545 | u8 ret = -EINVAL; | 1658 | int ret = -EINVAL; |
1546 | 1659 | ||
1547 | if (!oh) | 1660 | if (!oh) |
1548 | return -EINVAL; | 1661 | return -EINVAL; |
@@ -1551,37 +1664,63 @@ static int _read_hardreset(struct omap_hwmod *oh, const char *name) | |||
1551 | return -ENOSYS; | 1664 | return -ENOSYS; |
1552 | 1665 | ||
1553 | ret = _lookup_hardreset(oh, name, &ohri); | 1666 | ret = _lookup_hardreset(oh, name, &ohri); |
1554 | if (IS_ERR_VALUE(ret)) | 1667 | if (ret < 0) |
1555 | return ret; | 1668 | return ret; |
1556 | 1669 | ||
1557 | return soc_ops.is_hardreset_asserted(oh, &ohri); | 1670 | return soc_ops.is_hardreset_asserted(oh, &ohri); |
1558 | } | 1671 | } |
1559 | 1672 | ||
1560 | /** | 1673 | /** |
1561 | * _are_any_hardreset_lines_asserted - return true if part of @oh is hard-reset | 1674 | * _are_all_hardreset_lines_asserted - return true if the @oh is hard-reset |
1562 | * @oh: struct omap_hwmod * | 1675 | * @oh: struct omap_hwmod * |
1563 | * | 1676 | * |
1564 | * If any hardreset line associated with @oh is asserted, then return true. | 1677 | * If all hardreset lines associated with @oh are asserted, then return true. |
1565 | * Otherwise, if @oh has no hardreset lines associated with it, or if | 1678 | * Otherwise, if part of @oh is out hardreset or if no hardreset lines |
1566 | * no hardreset lines associated with @oh are asserted, then return false. | 1679 | * associated with @oh are asserted, then return false. |
1567 | * This function is used to avoid executing some parts of the IP block | 1680 | * This function is used to avoid executing some parts of the IP block |
1568 | * enable/disable sequence if a hardreset line is set. | 1681 | * enable/disable sequence if its hardreset line is set. |
1569 | */ | 1682 | */ |
1570 | static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh) | 1683 | static bool _are_all_hardreset_lines_asserted(struct omap_hwmod *oh) |
1571 | { | 1684 | { |
1572 | int i; | 1685 | int i, rst_cnt = 0; |
1573 | 1686 | ||
1574 | if (oh->rst_lines_cnt == 0) | 1687 | if (oh->rst_lines_cnt == 0) |
1575 | return false; | 1688 | return false; |
1576 | 1689 | ||
1577 | for (i = 0; i < oh->rst_lines_cnt; i++) | 1690 | for (i = 0; i < oh->rst_lines_cnt; i++) |
1578 | if (_read_hardreset(oh, oh->rst_lines[i].name) > 0) | 1691 | if (_read_hardreset(oh, oh->rst_lines[i].name) > 0) |
1579 | return true; | 1692 | rst_cnt++; |
1693 | |||
1694 | if (oh->rst_lines_cnt == rst_cnt) | ||
1695 | return true; | ||
1580 | 1696 | ||
1581 | return false; | 1697 | return false; |
1582 | } | 1698 | } |
1583 | 1699 | ||
1584 | /** | 1700 | /** |
1701 | * _are_any_hardreset_lines_asserted - return true if any part of @oh is | ||
1702 | * hard-reset | ||
1703 | * @oh: struct omap_hwmod * | ||
1704 | * | ||
1705 | * If any hardreset lines associated with @oh are asserted, then | ||
1706 | * return true. Otherwise, if no hardreset lines associated with @oh | ||
1707 | * are asserted, or if @oh has no hardreset lines, then return false. | ||
1708 | * This function is used to avoid executing some parts of the IP block | ||
1709 | * enable/disable sequence if any hardreset line is set. | ||
1710 | */ | ||
1711 | static bool _are_any_hardreset_lines_asserted(struct omap_hwmod *oh) | ||
1712 | { | ||
1713 | int rst_cnt = 0; | ||
1714 | int i; | ||
1715 | |||
1716 | for (i = 0; i < oh->rst_lines_cnt && rst_cnt == 0; i++) | ||
1717 | if (_read_hardreset(oh, oh->rst_lines[i].name) > 0) | ||
1718 | rst_cnt++; | ||
1719 | |||
1720 | return (rst_cnt) ? true : false; | ||
1721 | } | ||
1722 | |||
1723 | /** | ||
1585 | * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4 | 1724 | * _omap4_disable_module - enable CLKCTRL modulemode on OMAP4 |
1586 | * @oh: struct omap_hwmod * | 1725 | * @oh: struct omap_hwmod * |
1587 | * | 1726 | * |
@@ -1595,6 +1734,13 @@ static int _omap4_disable_module(struct omap_hwmod *oh) | |||
1595 | if (!oh->clkdm || !oh->prcm.omap4.modulemode) | 1734 | if (!oh->clkdm || !oh->prcm.omap4.modulemode) |
1596 | return -EINVAL; | 1735 | return -EINVAL; |
1597 | 1736 | ||
1737 | /* | ||
1738 | * Since integration code might still be doing something, only | ||
1739 | * disable if all lines are under hardreset. | ||
1740 | */ | ||
1741 | if (_are_any_hardreset_lines_asserted(oh)) | ||
1742 | return 0; | ||
1743 | |||
1598 | pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__); | 1744 | pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__); |
1599 | 1745 | ||
1600 | omap4_cminst_module_disable(oh->clkdm->prcm_partition, | 1746 | omap4_cminst_module_disable(oh->clkdm->prcm_partition, |
@@ -1602,10 +1748,37 @@ static int _omap4_disable_module(struct omap_hwmod *oh) | |||
1602 | oh->clkdm->clkdm_offs, | 1748 | oh->clkdm->clkdm_offs, |
1603 | oh->prcm.omap4.clkctrl_offs); | 1749 | oh->prcm.omap4.clkctrl_offs); |
1604 | 1750 | ||
1751 | v = _omap4_wait_target_disable(oh); | ||
1752 | if (v) | ||
1753 | pr_warn("omap_hwmod: %s: _wait_target_disable failed\n", | ||
1754 | oh->name); | ||
1755 | |||
1756 | return 0; | ||
1757 | } | ||
1758 | |||
1759 | /** | ||
1760 | * _am33xx_disable_module - enable CLKCTRL modulemode on AM33XX | ||
1761 | * @oh: struct omap_hwmod * | ||
1762 | * | ||
1763 | * Disable the PRCM module mode related to the hwmod @oh. | ||
1764 | * Return EINVAL if the modulemode is not supported and 0 in case of success. | ||
1765 | */ | ||
1766 | static int _am33xx_disable_module(struct omap_hwmod *oh) | ||
1767 | { | ||
1768 | int v; | ||
1769 | |||
1770 | if (!oh->clkdm || !oh->prcm.omap4.modulemode) | ||
1771 | return -EINVAL; | ||
1772 | |||
1773 | pr_debug("omap_hwmod: %s: %s\n", oh->name, __func__); | ||
1774 | |||
1605 | if (_are_any_hardreset_lines_asserted(oh)) | 1775 | if (_are_any_hardreset_lines_asserted(oh)) |
1606 | return 0; | 1776 | return 0; |
1607 | 1777 | ||
1608 | v = _omap4_wait_target_disable(oh); | 1778 | am33xx_cm_module_disable(oh->clkdm->cm_inst, oh->clkdm->clkdm_offs, |
1779 | oh->prcm.omap4.clkctrl_offs); | ||
1780 | |||
1781 | v = _am33xx_wait_target_disable(oh); | ||
1609 | if (v) | 1782 | if (v) |
1610 | pr_warn("omap_hwmod: %s: _wait_target_disable failed\n", | 1783 | pr_warn("omap_hwmod: %s: _wait_target_disable failed\n", |
1611 | oh->name); | 1784 | oh->name); |
@@ -1641,8 +1814,8 @@ static int _ocp_softreset(struct omap_hwmod *oh) | |||
1641 | 1814 | ||
1642 | /* clocks must be on for this operation */ | 1815 | /* clocks must be on for this operation */ |
1643 | if (oh->_state != _HWMOD_STATE_ENABLED) { | 1816 | if (oh->_state != _HWMOD_STATE_ENABLED) { |
1644 | pr_warning("omap_hwmod: %s: reset can only be entered from " | 1817 | pr_warn("omap_hwmod: %s: reset can only be entered from enabled state\n", |
1645 | "enabled state\n", oh->name); | 1818 | oh->name); |
1646 | return -EINVAL; | 1819 | return -EINVAL; |
1647 | } | 1820 | } |
1648 | 1821 | ||
@@ -1830,7 +2003,7 @@ static int _enable(struct omap_hwmod *oh) | |||
1830 | } | 2003 | } |
1831 | 2004 | ||
1832 | /* | 2005 | /* |
1833 | * If an IP block contains HW reset lines and any of them are | 2006 | * If an IP block contains HW reset lines and all of them are |
1834 | * asserted, we let integration code associated with that | 2007 | * asserted, we let integration code associated with that |
1835 | * block handle the enable. We've received very little | 2008 | * block handle the enable. We've received very little |
1836 | * information on what those driver authors need, and until | 2009 | * information on what those driver authors need, and until |
@@ -1838,7 +2011,7 @@ static int _enable(struct omap_hwmod *oh) | |||
1838 | * posted to the public lists, this is probably the best we | 2011 | * posted to the public lists, this is probably the best we |
1839 | * can do. | 2012 | * can do. |
1840 | */ | 2013 | */ |
1841 | if (_are_any_hardreset_lines_asserted(oh)) | 2014 | if (_are_all_hardreset_lines_asserted(oh)) |
1842 | return 0; | 2015 | return 0; |
1843 | 2016 | ||
1844 | /* Mux pins for device runtime if populated */ | 2017 | /* Mux pins for device runtime if populated */ |
@@ -1857,7 +2030,8 @@ static int _enable(struct omap_hwmod *oh) | |||
1857 | * completely the module. The clockdomain can be set | 2030 | * completely the module. The clockdomain can be set |
1858 | * in HW_AUTO only when the module become ready. | 2031 | * in HW_AUTO only when the module become ready. |
1859 | */ | 2032 | */ |
1860 | hwsup = clkdm_in_hwsup(oh->clkdm); | 2033 | hwsup = clkdm_in_hwsup(oh->clkdm) && |
2034 | !clkdm_missing_idle_reporting(oh->clkdm); | ||
1861 | r = clkdm_hwmod_enable(oh->clkdm, oh); | 2035 | r = clkdm_hwmod_enable(oh->clkdm, oh); |
1862 | if (r) { | 2036 | if (r) { |
1863 | WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n", | 2037 | WARN(1, "omap_hwmod: %s: could not enable clockdomain %s: %d\n", |
@@ -1889,6 +2063,7 @@ static int _enable(struct omap_hwmod *oh) | |||
1889 | _enable_sysc(oh); | 2063 | _enable_sysc(oh); |
1890 | } | 2064 | } |
1891 | } else { | 2065 | } else { |
2066 | _omap4_disable_module(oh); | ||
1892 | _disable_clocks(oh); | 2067 | _disable_clocks(oh); |
1893 | pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n", | 2068 | pr_debug("omap_hwmod: %s: _wait_target_ready: %d\n", |
1894 | oh->name, r); | 2069 | oh->name, r); |
@@ -1918,7 +2093,7 @@ static int _idle(struct omap_hwmod *oh) | |||
1918 | return -EINVAL; | 2093 | return -EINVAL; |
1919 | } | 2094 | } |
1920 | 2095 | ||
1921 | if (_are_any_hardreset_lines_asserted(oh)) | 2096 | if (_are_all_hardreset_lines_asserted(oh)) |
1922 | return 0; | 2097 | return 0; |
1923 | 2098 | ||
1924 | if (oh->class->sysc) | 2099 | if (oh->class->sysc) |
@@ -2006,7 +2181,7 @@ static int _shutdown(struct omap_hwmod *oh) | |||
2006 | return -EINVAL; | 2181 | return -EINVAL; |
2007 | } | 2182 | } |
2008 | 2183 | ||
2009 | if (_are_any_hardreset_lines_asserted(oh)) | 2184 | if (_are_all_hardreset_lines_asserted(oh)) |
2010 | return 0; | 2185 | return 0; |
2011 | 2186 | ||
2012 | pr_debug("omap_hwmod: %s: disabling\n", oh->name); | 2187 | pr_debug("omap_hwmod: %s: disabling\n", oh->name); |
@@ -2530,10 +2705,10 @@ static int _omap2_wait_target_ready(struct omap_hwmod *oh) | |||
2530 | */ | 2705 | */ |
2531 | static int _omap4_wait_target_ready(struct omap_hwmod *oh) | 2706 | static int _omap4_wait_target_ready(struct omap_hwmod *oh) |
2532 | { | 2707 | { |
2533 | if (!oh || !oh->clkdm) | 2708 | if (!oh) |
2534 | return -EINVAL; | 2709 | return -EINVAL; |
2535 | 2710 | ||
2536 | if (oh->flags & HWMOD_NO_IDLEST) | 2711 | if (oh->flags & HWMOD_NO_IDLEST || !oh->clkdm) |
2537 | return 0; | 2712 | return 0; |
2538 | 2713 | ||
2539 | if (!_find_mpu_rt_port(oh)) | 2714 | if (!_find_mpu_rt_port(oh)) |
@@ -2548,6 +2723,33 @@ static int _omap4_wait_target_ready(struct omap_hwmod *oh) | |||
2548 | } | 2723 | } |
2549 | 2724 | ||
2550 | /** | 2725 | /** |
2726 | * _am33xx_wait_target_ready - wait for a module to leave slave idle | ||
2727 | * @oh: struct omap_hwmod * | ||
2728 | * | ||
2729 | * Wait for a module @oh to leave slave idle. Returns 0 if the module | ||
2730 | * does not have an IDLEST bit or if the module successfully leaves | ||
2731 | * slave idle; otherwise, pass along the return value of the | ||
2732 | * appropriate *_cm*_wait_module_ready() function. | ||
2733 | */ | ||
2734 | static int _am33xx_wait_target_ready(struct omap_hwmod *oh) | ||
2735 | { | ||
2736 | if (!oh || !oh->clkdm) | ||
2737 | return -EINVAL; | ||
2738 | |||
2739 | if (oh->flags & HWMOD_NO_IDLEST) | ||
2740 | return 0; | ||
2741 | |||
2742 | if (!_find_mpu_rt_port(oh)) | ||
2743 | return 0; | ||
2744 | |||
2745 | /* XXX check module SIDLEMODE, hardreset status */ | ||
2746 | |||
2747 | return am33xx_cm_wait_module_ready(oh->clkdm->cm_inst, | ||
2748 | oh->clkdm->clkdm_offs, | ||
2749 | oh->prcm.omap4.clkctrl_offs); | ||
2750 | } | ||
2751 | |||
2752 | /** | ||
2551 | * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args | 2753 | * _omap2_assert_hardreset - call OMAP2 PRM hardreset fn with hwmod args |
2552 | * @oh: struct omap_hwmod * to assert hardreset | 2754 | * @oh: struct omap_hwmod * to assert hardreset |
2553 | * @ohri: hardreset line data | 2755 | * @ohri: hardreset line data |
@@ -2678,6 +2880,72 @@ static int _omap4_is_hardreset_asserted(struct omap_hwmod *oh, | |||
2678 | oh->prcm.omap4.rstctrl_offs); | 2880 | oh->prcm.omap4.rstctrl_offs); |
2679 | } | 2881 | } |
2680 | 2882 | ||
2883 | /** | ||
2884 | * _am33xx_assert_hardreset - call AM33XX PRM hardreset fn with hwmod args | ||
2885 | * @oh: struct omap_hwmod * to assert hardreset | ||
2886 | * @ohri: hardreset line data | ||
2887 | * | ||
2888 | * Call am33xx_prminst_assert_hardreset() with parameters extracted | ||
2889 | * from the hwmod @oh and the hardreset line data @ohri. Only | ||
2890 | * intended for use as an soc_ops function pointer. Passes along the | ||
2891 | * return value from am33xx_prminst_assert_hardreset(). XXX This | ||
2892 | * function is scheduled for removal when the PRM code is moved into | ||
2893 | * drivers/. | ||
2894 | */ | ||
2895 | static int _am33xx_assert_hardreset(struct omap_hwmod *oh, | ||
2896 | struct omap_hwmod_rst_info *ohri) | ||
2897 | |||
2898 | { | ||
2899 | return am33xx_prm_assert_hardreset(ohri->rst_shift, | ||
2900 | oh->clkdm->pwrdm.ptr->prcm_offs, | ||
2901 | oh->prcm.omap4.rstctrl_offs); | ||
2902 | } | ||
2903 | |||
2904 | /** | ||
2905 | * _am33xx_deassert_hardreset - call AM33XX PRM hardreset fn with hwmod args | ||
2906 | * @oh: struct omap_hwmod * to deassert hardreset | ||
2907 | * @ohri: hardreset line data | ||
2908 | * | ||
2909 | * Call am33xx_prminst_deassert_hardreset() with parameters extracted | ||
2910 | * from the hwmod @oh and the hardreset line data @ohri. Only | ||
2911 | * intended for use as an soc_ops function pointer. Passes along the | ||
2912 | * return value from am33xx_prminst_deassert_hardreset(). XXX This | ||
2913 | * function is scheduled for removal when the PRM code is moved into | ||
2914 | * drivers/. | ||
2915 | */ | ||
2916 | static int _am33xx_deassert_hardreset(struct omap_hwmod *oh, | ||
2917 | struct omap_hwmod_rst_info *ohri) | ||
2918 | { | ||
2919 | if (ohri->st_shift) | ||
2920 | pr_err("omap_hwmod: %s: %s: hwmod data error: OMAP4 does not support st_shift\n", | ||
2921 | oh->name, ohri->name); | ||
2922 | |||
2923 | return am33xx_prm_deassert_hardreset(ohri->rst_shift, | ||
2924 | oh->clkdm->pwrdm.ptr->prcm_offs, | ||
2925 | oh->prcm.omap4.rstctrl_offs, | ||
2926 | oh->prcm.omap4.rstst_offs); | ||
2927 | } | ||
2928 | |||
2929 | /** | ||
2930 | * _am33xx_is_hardreset_asserted - call AM33XX PRM hardreset fn with hwmod args | ||
2931 | * @oh: struct omap_hwmod * to test hardreset | ||
2932 | * @ohri: hardreset line data | ||
2933 | * | ||
2934 | * Call am33xx_prminst_is_hardreset_asserted() with parameters | ||
2935 | * extracted from the hwmod @oh and the hardreset line data @ohri. | ||
2936 | * Only intended for use as an soc_ops function pointer. Passes along | ||
2937 | * the return value from am33xx_prminst_is_hardreset_asserted(). XXX | ||
2938 | * This function is scheduled for removal when the PRM code is moved | ||
2939 | * into drivers/. | ||
2940 | */ | ||
2941 | static int _am33xx_is_hardreset_asserted(struct omap_hwmod *oh, | ||
2942 | struct omap_hwmod_rst_info *ohri) | ||
2943 | { | ||
2944 | return am33xx_prm_is_hardreset_asserted(ohri->rst_shift, | ||
2945 | oh->clkdm->pwrdm.ptr->prcm_offs, | ||
2946 | oh->prcm.omap4.rstctrl_offs); | ||
2947 | } | ||
2948 | |||
2681 | /* Public functions */ | 2949 | /* Public functions */ |
2682 | 2950 | ||
2683 | u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs) | 2951 | u32 omap_hwmod_read(struct omap_hwmod *oh, u16 reg_offs) |
@@ -3158,6 +3426,33 @@ int omap_hwmod_fill_resources(struct omap_hwmod *oh, struct resource *res) | |||
3158 | } | 3426 | } |
3159 | 3427 | ||
3160 | /** | 3428 | /** |
3429 | * omap_hwmod_fill_dma_resources - fill struct resource array with dma data | ||
3430 | * @oh: struct omap_hwmod * | ||
3431 | * @res: pointer to the array of struct resource to fill | ||
3432 | * | ||
3433 | * Fill the struct resource array @res with dma resource data from the | ||
3434 | * omap_hwmod @oh. Intended to be called by code that registers | ||
3435 | * omap_devices. See also omap_hwmod_count_resources(). Returns the | ||
3436 | * number of array elements filled. | ||
3437 | */ | ||
3438 | int omap_hwmod_fill_dma_resources(struct omap_hwmod *oh, struct resource *res) | ||
3439 | { | ||
3440 | int i, sdma_reqs_cnt; | ||
3441 | int r = 0; | ||
3442 | |||
3443 | sdma_reqs_cnt = _count_sdma_reqs(oh); | ||
3444 | for (i = 0; i < sdma_reqs_cnt; i++) { | ||
3445 | (res + r)->name = (oh->sdma_reqs + i)->name; | ||
3446 | (res + r)->start = (oh->sdma_reqs + i)->dma_req; | ||
3447 | (res + r)->end = (oh->sdma_reqs + i)->dma_req; | ||
3448 | (res + r)->flags = IORESOURCE_DMA; | ||
3449 | r++; | ||
3450 | } | ||
3451 | |||
3452 | return r; | ||
3453 | } | ||
3454 | |||
3455 | /** | ||
3161 | * omap_hwmod_get_resource_byname - fetch IP block integration data by name | 3456 | * omap_hwmod_get_resource_byname - fetch IP block integration data by name |
3162 | * @oh: struct omap_hwmod * to operate on | 3457 | * @oh: struct omap_hwmod * to operate on |
3163 | * @type: one of the IORESOURCE_* constants from include/linux/ioport.h | 3458 | * @type: one of the IORESOURCE_* constants from include/linux/ioport.h |
@@ -3677,6 +3972,14 @@ void __init omap_hwmod_init(void) | |||
3677 | soc_ops.deassert_hardreset = _omap4_deassert_hardreset; | 3972 | soc_ops.deassert_hardreset = _omap4_deassert_hardreset; |
3678 | soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted; | 3973 | soc_ops.is_hardreset_asserted = _omap4_is_hardreset_asserted; |
3679 | soc_ops.init_clkdm = _init_clkdm; | 3974 | soc_ops.init_clkdm = _init_clkdm; |
3975 | } else if (soc_is_am33xx()) { | ||
3976 | soc_ops.enable_module = _am33xx_enable_module; | ||
3977 | soc_ops.disable_module = _am33xx_disable_module; | ||
3978 | soc_ops.wait_target_ready = _am33xx_wait_target_ready; | ||
3979 | soc_ops.assert_hardreset = _am33xx_assert_hardreset; | ||
3980 | soc_ops.deassert_hardreset = _am33xx_deassert_hardreset; | ||
3981 | soc_ops.is_hardreset_asserted = _am33xx_is_hardreset_asserted; | ||
3982 | soc_ops.init_clkdm = _init_clkdm; | ||
3680 | } else { | 3983 | } else { |
3681 | WARN(1, "omap_hwmod: unknown SoC type\n"); | 3984 | WARN(1, "omap_hwmod: unknown SoC type\n"); |
3682 | } | 3985 | } |
diff --git a/arch/arm/mach-omap2/omap_hwmod_2420_data.c b/arch/arm/mach-omap2/omap_hwmod_2420_data.c index 50cfab61b0e2..b5db6007c523 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2420_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2420_data.c | |||
@@ -12,17 +12,15 @@ | |||
12 | * XXX handle crossbar/shared link difference for L3? | 12 | * XXX handle crossbar/shared link difference for L3? |
13 | * XXX these should be marked initdata for multi-OMAP kernels | 13 | * XXX these should be marked initdata for multi-OMAP kernels |
14 | */ | 14 | */ |
15 | #include <linux/platform_data/spi-omap2-mcspi.h> | ||
16 | |||
15 | #include <plat/omap_hwmod.h> | 17 | #include <plat/omap_hwmod.h> |
16 | #include <mach/irqs.h> | ||
17 | #include <plat/cpu.h> | ||
18 | #include <plat/dma.h> | 18 | #include <plat/dma.h> |
19 | #include <plat/serial.h> | 19 | #include <plat/serial.h> |
20 | #include <plat/i2c.h> | 20 | #include <plat/i2c.h> |
21 | #include <plat/gpio.h> | ||
22 | #include <plat/mcspi.h> | ||
23 | #include <plat/dmtimer.h> | 21 | #include <plat/dmtimer.h> |
24 | #include <plat/l3_2xxx.h> | 22 | #include "l3_2xxx.h" |
25 | #include <plat/l4_2xxx.h> | 23 | #include "l4_2xxx.h" |
26 | #include <plat/mmc.h> | 24 | #include <plat/mmc.h> |
27 | 25 | ||
28 | #include "omap_hwmod_common_data.h" | 26 | #include "omap_hwmod_common_data.h" |
@@ -162,9 +160,9 @@ static struct omap_hwmod omap2420_dma_system_hwmod = { | |||
162 | 160 | ||
163 | /* mailbox */ | 161 | /* mailbox */ |
164 | static struct omap_hwmod_irq_info omap2420_mailbox_irqs[] = { | 162 | static struct omap_hwmod_irq_info omap2420_mailbox_irqs[] = { |
165 | { .name = "dsp", .irq = 26 }, | 163 | { .name = "dsp", .irq = 26 + OMAP_INTC_START, }, |
166 | { .name = "iva", .irq = 34 }, | 164 | { .name = "iva", .irq = 34 + OMAP_INTC_START, }, |
167 | { .irq = -1 } | 165 | { .irq = -1 }, |
168 | }; | 166 | }; |
169 | 167 | ||
170 | static struct omap_hwmod omap2420_mailbox_hwmod = { | 168 | static struct omap_hwmod omap2420_mailbox_hwmod = { |
@@ -199,9 +197,9 @@ static struct omap_hwmod_opt_clk mcbsp_opt_clks[] = { | |||
199 | 197 | ||
200 | /* mcbsp1 */ | 198 | /* mcbsp1 */ |
201 | static struct omap_hwmod_irq_info omap2420_mcbsp1_irqs[] = { | 199 | static struct omap_hwmod_irq_info omap2420_mcbsp1_irqs[] = { |
202 | { .name = "tx", .irq = 59 }, | 200 | { .name = "tx", .irq = 59 + OMAP_INTC_START, }, |
203 | { .name = "rx", .irq = 60 }, | 201 | { .name = "rx", .irq = 60 + OMAP_INTC_START, }, |
204 | { .irq = -1 } | 202 | { .irq = -1 }, |
205 | }; | 203 | }; |
206 | 204 | ||
207 | static struct omap_hwmod omap2420_mcbsp1_hwmod = { | 205 | static struct omap_hwmod omap2420_mcbsp1_hwmod = { |
@@ -225,9 +223,9 @@ static struct omap_hwmod omap2420_mcbsp1_hwmod = { | |||
225 | 223 | ||
226 | /* mcbsp2 */ | 224 | /* mcbsp2 */ |
227 | static struct omap_hwmod_irq_info omap2420_mcbsp2_irqs[] = { | 225 | static struct omap_hwmod_irq_info omap2420_mcbsp2_irqs[] = { |
228 | { .name = "tx", .irq = 62 }, | 226 | { .name = "tx", .irq = 62 + OMAP_INTC_START, }, |
229 | { .name = "rx", .irq = 63 }, | 227 | { .name = "rx", .irq = 63 + OMAP_INTC_START, }, |
230 | { .irq = -1 } | 228 | { .irq = -1 }, |
231 | }; | 229 | }; |
232 | 230 | ||
233 | static struct omap_hwmod omap2420_mcbsp2_hwmod = { | 231 | static struct omap_hwmod omap2420_mcbsp2_hwmod = { |
@@ -265,8 +263,8 @@ static struct omap_hwmod_class omap2420_msdi_hwmod_class = { | |||
265 | 263 | ||
266 | /* msdi1 */ | 264 | /* msdi1 */ |
267 | static struct omap_hwmod_irq_info omap2420_msdi1_irqs[] = { | 265 | static struct omap_hwmod_irq_info omap2420_msdi1_irqs[] = { |
268 | { .irq = 83 }, | 266 | { .irq = 83 + OMAP_INTC_START, }, |
269 | { .irq = -1 } | 267 | { .irq = -1 }, |
270 | }; | 268 | }; |
271 | 269 | ||
272 | static struct omap_hwmod_dma_info omap2420_msdi1_sdma_reqs[] = { | 270 | static struct omap_hwmod_dma_info omap2420_msdi1_sdma_reqs[] = { |
@@ -538,6 +536,15 @@ static struct omap_hwmod_addr_space omap2420_counter_32k_addrs[] = { | |||
538 | { } | 536 | { } |
539 | }; | 537 | }; |
540 | 538 | ||
539 | static struct omap_hwmod_addr_space omap2420_gpmc_addrs[] = { | ||
540 | { | ||
541 | .pa_start = 0x6800a000, | ||
542 | .pa_end = 0x6800afff, | ||
543 | .flags = ADDR_TYPE_RT | ||
544 | }, | ||
545 | { } | ||
546 | }; | ||
547 | |||
541 | static struct omap_hwmod_ocp_if omap2420_l4_wkup__counter_32k = { | 548 | static struct omap_hwmod_ocp_if omap2420_l4_wkup__counter_32k = { |
542 | .master = &omap2xxx_l4_wkup_hwmod, | 549 | .master = &omap2xxx_l4_wkup_hwmod, |
543 | .slave = &omap2xxx_counter_32k_hwmod, | 550 | .slave = &omap2xxx_counter_32k_hwmod, |
@@ -546,6 +553,14 @@ static struct omap_hwmod_ocp_if omap2420_l4_wkup__counter_32k = { | |||
546 | .user = OCP_USER_MPU | OCP_USER_SDMA, | 553 | .user = OCP_USER_MPU | OCP_USER_SDMA, |
547 | }; | 554 | }; |
548 | 555 | ||
556 | static struct omap_hwmod_ocp_if omap2420_l3__gpmc = { | ||
557 | .master = &omap2xxx_l3_main_hwmod, | ||
558 | .slave = &omap2xxx_gpmc_hwmod, | ||
559 | .clk = "core_l3_ck", | ||
560 | .addr = omap2420_gpmc_addrs, | ||
561 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
562 | }; | ||
563 | |||
549 | static struct omap_hwmod_ocp_if *omap2420_hwmod_ocp_ifs[] __initdata = { | 564 | static struct omap_hwmod_ocp_if *omap2420_hwmod_ocp_ifs[] __initdata = { |
550 | &omap2xxx_l3_main__l4_core, | 565 | &omap2xxx_l3_main__l4_core, |
551 | &omap2xxx_mpu__l3_main, | 566 | &omap2xxx_mpu__l3_main, |
@@ -587,8 +602,10 @@ static struct omap_hwmod_ocp_if *omap2420_hwmod_ocp_ifs[] __initdata = { | |||
587 | &omap2420_l4_core__mcbsp1, | 602 | &omap2420_l4_core__mcbsp1, |
588 | &omap2420_l4_core__mcbsp2, | 603 | &omap2420_l4_core__mcbsp2, |
589 | &omap2420_l4_core__msdi1, | 604 | &omap2420_l4_core__msdi1, |
605 | &omap2xxx_l4_core__rng, | ||
590 | &omap2420_l4_core__hdq1w, | 606 | &omap2420_l4_core__hdq1w, |
591 | &omap2420_l4_wkup__counter_32k, | 607 | &omap2420_l4_wkup__counter_32k, |
608 | &omap2420_l3__gpmc, | ||
592 | NULL, | 609 | NULL, |
593 | }; | 610 | }; |
594 | 611 | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_2430_data.c b/arch/arm/mach-omap2/omap_hwmod_2430_data.c index 58b5bc196d32..c455e41b0237 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2430_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2430_data.c | |||
@@ -12,21 +12,19 @@ | |||
12 | * XXX handle crossbar/shared link difference for L3? | 12 | * XXX handle crossbar/shared link difference for L3? |
13 | * XXX these should be marked initdata for multi-OMAP kernels | 13 | * XXX these should be marked initdata for multi-OMAP kernels |
14 | */ | 14 | */ |
15 | #include <linux/platform_data/asoc-ti-mcbsp.h> | ||
16 | #include <linux/platform_data/spi-omap2-mcspi.h> | ||
17 | |||
15 | #include <plat/omap_hwmod.h> | 18 | #include <plat/omap_hwmod.h> |
16 | #include <mach/irqs.h> | ||
17 | #include <plat/cpu.h> | ||
18 | #include <plat/dma.h> | 19 | #include <plat/dma.h> |
19 | #include <plat/serial.h> | 20 | #include <plat/serial.h> |
20 | #include <plat/i2c.h> | 21 | #include <plat/i2c.h> |
21 | #include <plat/gpio.h> | ||
22 | #include <plat/mcbsp.h> | ||
23 | #include <plat/mcspi.h> | ||
24 | #include <plat/dmtimer.h> | 22 | #include <plat/dmtimer.h> |
25 | #include <plat/mmc.h> | 23 | #include <plat/mmc.h> |
26 | #include <plat/l3_2xxx.h> | 24 | #include "l3_2xxx.h" |
27 | 25 | ||
26 | #include "soc.h" | ||
28 | #include "omap_hwmod_common_data.h" | 27 | #include "omap_hwmod_common_data.h" |
29 | |||
30 | #include "prm-regbits-24xx.h" | 28 | #include "prm-regbits-24xx.h" |
31 | #include "cm-regbits-24xx.h" | 29 | #include "cm-regbits-24xx.h" |
32 | #include "wd_timer.h" | 30 | #include "wd_timer.h" |
@@ -133,8 +131,8 @@ static struct omap_hwmod omap2430_i2c2_hwmod = { | |||
133 | 131 | ||
134 | /* gpio5 */ | 132 | /* gpio5 */ |
135 | static struct omap_hwmod_irq_info omap243x_gpio5_irqs[] = { | 133 | static struct omap_hwmod_irq_info omap243x_gpio5_irqs[] = { |
136 | { .irq = 33 }, /* INT_24XX_GPIO_BANK5 */ | 134 | { .irq = 33 + OMAP_INTC_START, }, /* INT_24XX_GPIO_BANK5 */ |
137 | { .irq = -1 } | 135 | { .irq = -1 }, |
138 | }; | 136 | }; |
139 | 137 | ||
140 | static struct omap_hwmod omap2430_gpio5_hwmod = { | 138 | static struct omap_hwmod omap2430_gpio5_hwmod = { |
@@ -173,8 +171,8 @@ static struct omap_hwmod omap2430_dma_system_hwmod = { | |||
173 | 171 | ||
174 | /* mailbox */ | 172 | /* mailbox */ |
175 | static struct omap_hwmod_irq_info omap2430_mailbox_irqs[] = { | 173 | static struct omap_hwmod_irq_info omap2430_mailbox_irqs[] = { |
176 | { .irq = 26 }, | 174 | { .irq = 26 + OMAP_INTC_START, }, |
177 | { .irq = -1 } | 175 | { .irq = -1 }, |
178 | }; | 176 | }; |
179 | 177 | ||
180 | static struct omap_hwmod omap2430_mailbox_hwmod = { | 178 | static struct omap_hwmod omap2430_mailbox_hwmod = { |
@@ -195,8 +193,8 @@ static struct omap_hwmod omap2430_mailbox_hwmod = { | |||
195 | 193 | ||
196 | /* mcspi3 */ | 194 | /* mcspi3 */ |
197 | static struct omap_hwmod_irq_info omap2430_mcspi3_mpu_irqs[] = { | 195 | static struct omap_hwmod_irq_info omap2430_mcspi3_mpu_irqs[] = { |
198 | { .irq = 91 }, | 196 | { .irq = 91 + OMAP_INTC_START, }, |
199 | { .irq = -1 } | 197 | { .irq = -1 }, |
200 | }; | 198 | }; |
201 | 199 | ||
202 | static struct omap_hwmod_dma_info omap2430_mcspi3_sdma_reqs[] = { | 200 | static struct omap_hwmod_dma_info omap2430_mcspi3_sdma_reqs[] = { |
@@ -250,9 +248,9 @@ static struct omap_hwmod_class usbotg_class = { | |||
250 | /* usb_otg_hs */ | 248 | /* usb_otg_hs */ |
251 | static struct omap_hwmod_irq_info omap2430_usbhsotg_mpu_irqs[] = { | 249 | static struct omap_hwmod_irq_info omap2430_usbhsotg_mpu_irqs[] = { |
252 | 250 | ||
253 | { .name = "mc", .irq = 92 }, | 251 | { .name = "mc", .irq = 92 + OMAP_INTC_START, }, |
254 | { .name = "dma", .irq = 93 }, | 252 | { .name = "dma", .irq = 93 + OMAP_INTC_START, }, |
255 | { .irq = -1 } | 253 | { .irq = -1 }, |
256 | }; | 254 | }; |
257 | 255 | ||
258 | static struct omap_hwmod omap2430_usbhsotg_hwmod = { | 256 | static struct omap_hwmod omap2430_usbhsotg_hwmod = { |
@@ -303,11 +301,11 @@ static struct omap_hwmod_opt_clk mcbsp_opt_clks[] = { | |||
303 | 301 | ||
304 | /* mcbsp1 */ | 302 | /* mcbsp1 */ |
305 | static struct omap_hwmod_irq_info omap2430_mcbsp1_irqs[] = { | 303 | static struct omap_hwmod_irq_info omap2430_mcbsp1_irqs[] = { |
306 | { .name = "tx", .irq = 59 }, | 304 | { .name = "tx", .irq = 59 + OMAP_INTC_START, }, |
307 | { .name = "rx", .irq = 60 }, | 305 | { .name = "rx", .irq = 60 + OMAP_INTC_START, }, |
308 | { .name = "ovr", .irq = 61 }, | 306 | { .name = "ovr", .irq = 61 + OMAP_INTC_START, }, |
309 | { .name = "common", .irq = 64 }, | 307 | { .name = "common", .irq = 64 + OMAP_INTC_START, }, |
310 | { .irq = -1 } | 308 | { .irq = -1 }, |
311 | }; | 309 | }; |
312 | 310 | ||
313 | static struct omap_hwmod omap2430_mcbsp1_hwmod = { | 311 | static struct omap_hwmod omap2430_mcbsp1_hwmod = { |
@@ -331,10 +329,10 @@ static struct omap_hwmod omap2430_mcbsp1_hwmod = { | |||
331 | 329 | ||
332 | /* mcbsp2 */ | 330 | /* mcbsp2 */ |
333 | static struct omap_hwmod_irq_info omap2430_mcbsp2_irqs[] = { | 331 | static struct omap_hwmod_irq_info omap2430_mcbsp2_irqs[] = { |
334 | { .name = "tx", .irq = 62 }, | 332 | { .name = "tx", .irq = 62 + OMAP_INTC_START, }, |
335 | { .name = "rx", .irq = 63 }, | 333 | { .name = "rx", .irq = 63 + OMAP_INTC_START, }, |
336 | { .name = "common", .irq = 16 }, | 334 | { .name = "common", .irq = 16 + OMAP_INTC_START, }, |
337 | { .irq = -1 } | 335 | { .irq = -1 }, |
338 | }; | 336 | }; |
339 | 337 | ||
340 | static struct omap_hwmod omap2430_mcbsp2_hwmod = { | 338 | static struct omap_hwmod omap2430_mcbsp2_hwmod = { |
@@ -358,10 +356,10 @@ static struct omap_hwmod omap2430_mcbsp2_hwmod = { | |||
358 | 356 | ||
359 | /* mcbsp3 */ | 357 | /* mcbsp3 */ |
360 | static struct omap_hwmod_irq_info omap2430_mcbsp3_irqs[] = { | 358 | static struct omap_hwmod_irq_info omap2430_mcbsp3_irqs[] = { |
361 | { .name = "tx", .irq = 89 }, | 359 | { .name = "tx", .irq = 89 + OMAP_INTC_START, }, |
362 | { .name = "rx", .irq = 90 }, | 360 | { .name = "rx", .irq = 90 + OMAP_INTC_START, }, |
363 | { .name = "common", .irq = 17 }, | 361 | { .name = "common", .irq = 17 + OMAP_INTC_START, }, |
364 | { .irq = -1 } | 362 | { .irq = -1 }, |
365 | }; | 363 | }; |
366 | 364 | ||
367 | static struct omap_hwmod omap2430_mcbsp3_hwmod = { | 365 | static struct omap_hwmod omap2430_mcbsp3_hwmod = { |
@@ -385,10 +383,10 @@ static struct omap_hwmod omap2430_mcbsp3_hwmod = { | |||
385 | 383 | ||
386 | /* mcbsp4 */ | 384 | /* mcbsp4 */ |
387 | static struct omap_hwmod_irq_info omap2430_mcbsp4_irqs[] = { | 385 | static struct omap_hwmod_irq_info omap2430_mcbsp4_irqs[] = { |
388 | { .name = "tx", .irq = 54 }, | 386 | { .name = "tx", .irq = 54 + OMAP_INTC_START, }, |
389 | { .name = "rx", .irq = 55 }, | 387 | { .name = "rx", .irq = 55 + OMAP_INTC_START, }, |
390 | { .name = "common", .irq = 18 }, | 388 | { .name = "common", .irq = 18 + OMAP_INTC_START, }, |
391 | { .irq = -1 } | 389 | { .irq = -1 }, |
392 | }; | 390 | }; |
393 | 391 | ||
394 | static struct omap_hwmod_dma_info omap2430_mcbsp4_sdma_chs[] = { | 392 | static struct omap_hwmod_dma_info omap2430_mcbsp4_sdma_chs[] = { |
@@ -418,10 +416,10 @@ static struct omap_hwmod omap2430_mcbsp4_hwmod = { | |||
418 | 416 | ||
419 | /* mcbsp5 */ | 417 | /* mcbsp5 */ |
420 | static struct omap_hwmod_irq_info omap2430_mcbsp5_irqs[] = { | 418 | static struct omap_hwmod_irq_info omap2430_mcbsp5_irqs[] = { |
421 | { .name = "tx", .irq = 81 }, | 419 | { .name = "tx", .irq = 81 + OMAP_INTC_START, }, |
422 | { .name = "rx", .irq = 82 }, | 420 | { .name = "rx", .irq = 82 + OMAP_INTC_START, }, |
423 | { .name = "common", .irq = 19 }, | 421 | { .name = "common", .irq = 19 + OMAP_INTC_START, }, |
424 | { .irq = -1 } | 422 | { .irq = -1 }, |
425 | }; | 423 | }; |
426 | 424 | ||
427 | static struct omap_hwmod_dma_info omap2430_mcbsp5_sdma_chs[] = { | 425 | static struct omap_hwmod_dma_info omap2430_mcbsp5_sdma_chs[] = { |
@@ -468,8 +466,8 @@ static struct omap_hwmod_class omap2430_mmc_class = { | |||
468 | 466 | ||
469 | /* MMC/SD/SDIO1 */ | 467 | /* MMC/SD/SDIO1 */ |
470 | static struct omap_hwmod_irq_info omap2430_mmc1_mpu_irqs[] = { | 468 | static struct omap_hwmod_irq_info omap2430_mmc1_mpu_irqs[] = { |
471 | { .irq = 83 }, | 469 | { .irq = 83 + OMAP_INTC_START, }, |
472 | { .irq = -1 } | 470 | { .irq = -1 }, |
473 | }; | 471 | }; |
474 | 472 | ||
475 | static struct omap_hwmod_dma_info omap2430_mmc1_sdma_reqs[] = { | 473 | static struct omap_hwmod_dma_info omap2430_mmc1_sdma_reqs[] = { |
@@ -509,8 +507,8 @@ static struct omap_hwmod omap2430_mmc1_hwmod = { | |||
509 | 507 | ||
510 | /* MMC/SD/SDIO2 */ | 508 | /* MMC/SD/SDIO2 */ |
511 | static struct omap_hwmod_irq_info omap2430_mmc2_mpu_irqs[] = { | 509 | static struct omap_hwmod_irq_info omap2430_mmc2_mpu_irqs[] = { |
512 | { .irq = 86 }, | 510 | { .irq = 86 + OMAP_INTC_START, }, |
513 | { .irq = -1 } | 511 | { .irq = -1 }, |
514 | }; | 512 | }; |
515 | 513 | ||
516 | static struct omap_hwmod_dma_info omap2430_mmc2_sdma_reqs[] = { | 514 | static struct omap_hwmod_dma_info omap2430_mmc2_sdma_reqs[] = { |
@@ -890,6 +888,15 @@ static struct omap_hwmod_addr_space omap2430_counter_32k_addrs[] = { | |||
890 | { } | 888 | { } |
891 | }; | 889 | }; |
892 | 890 | ||
891 | static struct omap_hwmod_addr_space omap2430_gpmc_addrs[] = { | ||
892 | { | ||
893 | .pa_start = 0x6e000000, | ||
894 | .pa_end = 0x6e000fff, | ||
895 | .flags = ADDR_TYPE_RT | ||
896 | }, | ||
897 | { } | ||
898 | }; | ||
899 | |||
893 | static struct omap_hwmod_ocp_if omap2430_l4_wkup__counter_32k = { | 900 | static struct omap_hwmod_ocp_if omap2430_l4_wkup__counter_32k = { |
894 | .master = &omap2xxx_l4_wkup_hwmod, | 901 | .master = &omap2xxx_l4_wkup_hwmod, |
895 | .slave = &omap2xxx_counter_32k_hwmod, | 902 | .slave = &omap2xxx_counter_32k_hwmod, |
@@ -898,6 +905,14 @@ static struct omap_hwmod_ocp_if omap2430_l4_wkup__counter_32k = { | |||
898 | .user = OCP_USER_MPU | OCP_USER_SDMA, | 905 | .user = OCP_USER_MPU | OCP_USER_SDMA, |
899 | }; | 906 | }; |
900 | 907 | ||
908 | static struct omap_hwmod_ocp_if omap2430_l3__gpmc = { | ||
909 | .master = &omap2xxx_l3_main_hwmod, | ||
910 | .slave = &omap2xxx_gpmc_hwmod, | ||
911 | .clk = "core_l3_ck", | ||
912 | .addr = omap2430_gpmc_addrs, | ||
913 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
914 | }; | ||
915 | |||
901 | static struct omap_hwmod_ocp_if *omap2430_hwmod_ocp_ifs[] __initdata = { | 916 | static struct omap_hwmod_ocp_if *omap2430_hwmod_ocp_ifs[] __initdata = { |
902 | &omap2xxx_l3_main__l4_core, | 917 | &omap2xxx_l3_main__l4_core, |
903 | &omap2xxx_mpu__l3_main, | 918 | &omap2xxx_mpu__l3_main, |
@@ -947,7 +962,9 @@ static struct omap_hwmod_ocp_if *omap2430_hwmod_ocp_ifs[] __initdata = { | |||
947 | &omap2430_l4_core__mcbsp4, | 962 | &omap2430_l4_core__mcbsp4, |
948 | &omap2430_l4_core__mcbsp5, | 963 | &omap2430_l4_core__mcbsp5, |
949 | &omap2430_l4_core__hdq1w, | 964 | &omap2430_l4_core__hdq1w, |
965 | &omap2xxx_l4_core__rng, | ||
950 | &omap2430_l4_wkup__counter_32k, | 966 | &omap2430_l4_wkup__counter_32k, |
967 | &omap2430_l3__gpmc, | ||
951 | NULL, | 968 | NULL, |
952 | }; | 969 | }; |
953 | 970 | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c b/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c index 102d76e9e9ea..8851bbb6bb24 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2xxx_3xxx_ipblock_data.c | |||
@@ -13,9 +13,7 @@ | |||
13 | #include <plat/serial.h> | 13 | #include <plat/serial.h> |
14 | #include <plat/dma.h> | 14 | #include <plat/dma.h> |
15 | #include <plat/common.h> | 15 | #include <plat/common.h> |
16 | #include <plat/hdq1w.h> | 16 | #include "hdq1w.h" |
17 | |||
18 | #include <mach/irqs.h> | ||
19 | 17 | ||
20 | #include "omap_hwmod_common_data.h" | 18 | #include "omap_hwmod_common_data.h" |
21 | 19 | ||
@@ -182,126 +180,126 @@ struct omap_hwmod_class iva_hwmod_class = { | |||
182 | /* Common MPU IRQ line data */ | 180 | /* Common MPU IRQ line data */ |
183 | 181 | ||
184 | struct omap_hwmod_irq_info omap2_timer1_mpu_irqs[] = { | 182 | struct omap_hwmod_irq_info omap2_timer1_mpu_irqs[] = { |
185 | { .irq = 37, }, | 183 | { .irq = 37 + OMAP_INTC_START, }, |
186 | { .irq = -1 } | 184 | { .irq = -1 }, |
187 | }; | 185 | }; |
188 | 186 | ||
189 | struct omap_hwmod_irq_info omap2_timer2_mpu_irqs[] = { | 187 | struct omap_hwmod_irq_info omap2_timer2_mpu_irqs[] = { |
190 | { .irq = 38, }, | 188 | { .irq = 38 + OMAP_INTC_START, }, |
191 | { .irq = -1 } | 189 | { .irq = -1 }, |
192 | }; | 190 | }; |
193 | 191 | ||
194 | struct omap_hwmod_irq_info omap2_timer3_mpu_irqs[] = { | 192 | struct omap_hwmod_irq_info omap2_timer3_mpu_irqs[] = { |
195 | { .irq = 39, }, | 193 | { .irq = 39 + OMAP_INTC_START, }, |
196 | { .irq = -1 } | 194 | { .irq = -1 }, |
197 | }; | 195 | }; |
198 | 196 | ||
199 | struct omap_hwmod_irq_info omap2_timer4_mpu_irqs[] = { | 197 | struct omap_hwmod_irq_info omap2_timer4_mpu_irqs[] = { |
200 | { .irq = 40, }, | 198 | { .irq = 40 + OMAP_INTC_START, }, |
201 | { .irq = -1 } | 199 | { .irq = -1 }, |
202 | }; | 200 | }; |
203 | 201 | ||
204 | struct omap_hwmod_irq_info omap2_timer5_mpu_irqs[] = { | 202 | struct omap_hwmod_irq_info omap2_timer5_mpu_irqs[] = { |
205 | { .irq = 41, }, | 203 | { .irq = 41 + OMAP_INTC_START, }, |
206 | { .irq = -1 } | 204 | { .irq = -1 }, |
207 | }; | 205 | }; |
208 | 206 | ||
209 | struct omap_hwmod_irq_info omap2_timer6_mpu_irqs[] = { | 207 | struct omap_hwmod_irq_info omap2_timer6_mpu_irqs[] = { |
210 | { .irq = 42, }, | 208 | { .irq = 42 + OMAP_INTC_START, }, |
211 | { .irq = -1 } | 209 | { .irq = -1 }, |
212 | }; | 210 | }; |
213 | 211 | ||
214 | struct omap_hwmod_irq_info omap2_timer7_mpu_irqs[] = { | 212 | struct omap_hwmod_irq_info omap2_timer7_mpu_irqs[] = { |
215 | { .irq = 43, }, | 213 | { .irq = 43 + OMAP_INTC_START, }, |
216 | { .irq = -1 } | 214 | { .irq = -1 }, |
217 | }; | 215 | }; |
218 | 216 | ||
219 | struct omap_hwmod_irq_info omap2_timer8_mpu_irqs[] = { | 217 | struct omap_hwmod_irq_info omap2_timer8_mpu_irqs[] = { |
220 | { .irq = 44, }, | 218 | { .irq = 44 + OMAP_INTC_START, }, |
221 | { .irq = -1 } | 219 | { .irq = -1 }, |
222 | }; | 220 | }; |
223 | 221 | ||
224 | struct omap_hwmod_irq_info omap2_timer9_mpu_irqs[] = { | 222 | struct omap_hwmod_irq_info omap2_timer9_mpu_irqs[] = { |
225 | { .irq = 45, }, | 223 | { .irq = 45 + OMAP_INTC_START, }, |
226 | { .irq = -1 } | 224 | { .irq = -1 }, |
227 | }; | 225 | }; |
228 | 226 | ||
229 | struct omap_hwmod_irq_info omap2_timer10_mpu_irqs[] = { | 227 | struct omap_hwmod_irq_info omap2_timer10_mpu_irqs[] = { |
230 | { .irq = 46, }, | 228 | { .irq = 46 + OMAP_INTC_START, }, |
231 | { .irq = -1 } | 229 | { .irq = -1 }, |
232 | }; | 230 | }; |
233 | 231 | ||
234 | struct omap_hwmod_irq_info omap2_timer11_mpu_irqs[] = { | 232 | struct omap_hwmod_irq_info omap2_timer11_mpu_irqs[] = { |
235 | { .irq = 47, }, | 233 | { .irq = 47 + OMAP_INTC_START, }, |
236 | { .irq = -1 } | 234 | { .irq = -1 }, |
237 | }; | 235 | }; |
238 | 236 | ||
239 | struct omap_hwmod_irq_info omap2_uart1_mpu_irqs[] = { | 237 | struct omap_hwmod_irq_info omap2_uart1_mpu_irqs[] = { |
240 | { .irq = INT_24XX_UART1_IRQ, }, | 238 | { .irq = 72 + OMAP_INTC_START, }, |
241 | { .irq = -1 } | 239 | { .irq = -1 }, |
242 | }; | 240 | }; |
243 | 241 | ||
244 | struct omap_hwmod_irq_info omap2_uart2_mpu_irqs[] = { | 242 | struct omap_hwmod_irq_info omap2_uart2_mpu_irqs[] = { |
245 | { .irq = INT_24XX_UART2_IRQ, }, | 243 | { .irq = 73 + OMAP_INTC_START, }, |
246 | { .irq = -1 } | 244 | { .irq = -1 }, |
247 | }; | 245 | }; |
248 | 246 | ||
249 | struct omap_hwmod_irq_info omap2_uart3_mpu_irqs[] = { | 247 | struct omap_hwmod_irq_info omap2_uart3_mpu_irqs[] = { |
250 | { .irq = INT_24XX_UART3_IRQ, }, | 248 | { .irq = 74 + OMAP_INTC_START, }, |
251 | { .irq = -1 } | 249 | { .irq = -1 }, |
252 | }; | 250 | }; |
253 | 251 | ||
254 | struct omap_hwmod_irq_info omap2_dispc_irqs[] = { | 252 | struct omap_hwmod_irq_info omap2_dispc_irqs[] = { |
255 | { .irq = 25 }, | 253 | { .irq = 25 + OMAP_INTC_START, }, |
256 | { .irq = -1 } | 254 | { .irq = -1 }, |
257 | }; | 255 | }; |
258 | 256 | ||
259 | struct omap_hwmod_irq_info omap2_i2c1_mpu_irqs[] = { | 257 | struct omap_hwmod_irq_info omap2_i2c1_mpu_irqs[] = { |
260 | { .irq = INT_24XX_I2C1_IRQ, }, | 258 | { .irq = 56 + OMAP_INTC_START, }, |
261 | { .irq = -1 } | 259 | { .irq = -1 }, |
262 | }; | 260 | }; |
263 | 261 | ||
264 | struct omap_hwmod_irq_info omap2_i2c2_mpu_irqs[] = { | 262 | struct omap_hwmod_irq_info omap2_i2c2_mpu_irqs[] = { |
265 | { .irq = INT_24XX_I2C2_IRQ, }, | 263 | { .irq = 57 + OMAP_INTC_START, }, |
266 | { .irq = -1 } | 264 | { .irq = -1 }, |
267 | }; | 265 | }; |
268 | 266 | ||
269 | struct omap_hwmod_irq_info omap2_gpio1_irqs[] = { | 267 | struct omap_hwmod_irq_info omap2_gpio1_irqs[] = { |
270 | { .irq = 29 }, /* INT_24XX_GPIO_BANK1 */ | 268 | { .irq = 29 + OMAP_INTC_START, }, /* INT_24XX_GPIO_BANK1 */ |
271 | { .irq = -1 } | 269 | { .irq = -1 }, |
272 | }; | 270 | }; |
273 | 271 | ||
274 | struct omap_hwmod_irq_info omap2_gpio2_irqs[] = { | 272 | struct omap_hwmod_irq_info omap2_gpio2_irqs[] = { |
275 | { .irq = 30 }, /* INT_24XX_GPIO_BANK2 */ | 273 | { .irq = 30 + OMAP_INTC_START, }, /* INT_24XX_GPIO_BANK2 */ |
276 | { .irq = -1 } | 274 | { .irq = -1 }, |
277 | }; | 275 | }; |
278 | 276 | ||
279 | struct omap_hwmod_irq_info omap2_gpio3_irqs[] = { | 277 | struct omap_hwmod_irq_info omap2_gpio3_irqs[] = { |
280 | { .irq = 31 }, /* INT_24XX_GPIO_BANK3 */ | 278 | { .irq = 31 + OMAP_INTC_START, }, /* INT_24XX_GPIO_BANK3 */ |
281 | { .irq = -1 } | 279 | { .irq = -1 }, |
282 | }; | 280 | }; |
283 | 281 | ||
284 | struct omap_hwmod_irq_info omap2_gpio4_irqs[] = { | 282 | struct omap_hwmod_irq_info omap2_gpio4_irqs[] = { |
285 | { .irq = 32 }, /* INT_24XX_GPIO_BANK4 */ | 283 | { .irq = 32 + OMAP_INTC_START, }, /* INT_24XX_GPIO_BANK4 */ |
286 | { .irq = -1 } | 284 | { .irq = -1 }, |
287 | }; | 285 | }; |
288 | 286 | ||
289 | struct omap_hwmod_irq_info omap2_dma_system_irqs[] = { | 287 | struct omap_hwmod_irq_info omap2_dma_system_irqs[] = { |
290 | { .name = "0", .irq = 12 }, /* INT_24XX_SDMA_IRQ0 */ | 288 | { .name = "0", .irq = 12 + OMAP_INTC_START, }, /* INT_24XX_SDMA_IRQ0 */ |
291 | { .name = "1", .irq = 13 }, /* INT_24XX_SDMA_IRQ1 */ | 289 | { .name = "1", .irq = 13 + OMAP_INTC_START, }, /* INT_24XX_SDMA_IRQ1 */ |
292 | { .name = "2", .irq = 14 }, /* INT_24XX_SDMA_IRQ2 */ | 290 | { .name = "2", .irq = 14 + OMAP_INTC_START, }, /* INT_24XX_SDMA_IRQ2 */ |
293 | { .name = "3", .irq = 15 }, /* INT_24XX_SDMA_IRQ3 */ | 291 | { .name = "3", .irq = 15 + OMAP_INTC_START, }, /* INT_24XX_SDMA_IRQ3 */ |
294 | { .irq = -1 } | 292 | { .irq = -1 }, |
295 | }; | 293 | }; |
296 | 294 | ||
297 | struct omap_hwmod_irq_info omap2_mcspi1_mpu_irqs[] = { | 295 | struct omap_hwmod_irq_info omap2_mcspi1_mpu_irqs[] = { |
298 | { .irq = 65 }, | 296 | { .irq = 65 + OMAP_INTC_START, }, |
299 | { .irq = -1 } | 297 | { .irq = -1 }, |
300 | }; | 298 | }; |
301 | 299 | ||
302 | struct omap_hwmod_irq_info omap2_mcspi2_mpu_irqs[] = { | 300 | struct omap_hwmod_irq_info omap2_mcspi2_mpu_irqs[] = { |
303 | { .irq = 66 }, | 301 | { .irq = 66 + OMAP_INTC_START, }, |
304 | { .irq = -1 } | 302 | { .irq = -1 }, |
305 | }; | 303 | }; |
306 | 304 | ||
307 | struct omap_hwmod_class_sysconfig omap2_hdq1w_sysc = { | 305 | struct omap_hwmod_class_sysconfig omap2_hdq1w_sysc = { |
@@ -320,7 +318,7 @@ struct omap_hwmod_class omap2_hdq1w_class = { | |||
320 | }; | 318 | }; |
321 | 319 | ||
322 | struct omap_hwmod_irq_info omap2_hdq1w_mpu_irqs[] = { | 320 | struct omap_hwmod_irq_info omap2_hdq1w_mpu_irqs[] = { |
323 | { .irq = 58, }, | 321 | { .irq = 58 + OMAP_INTC_START, }, |
324 | { .irq = -1 } | 322 | { .irq = -1 }, |
325 | }; | 323 | }; |
326 | 324 | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c b/arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c index 5178e40e84f9..1a1287d62648 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2xxx_interconnect_data.c | |||
@@ -15,8 +15,8 @@ | |||
15 | 15 | ||
16 | #include <plat/omap_hwmod.h> | 16 | #include <plat/omap_hwmod.h> |
17 | #include <plat/serial.h> | 17 | #include <plat/serial.h> |
18 | #include <plat/l3_2xxx.h> | 18 | #include "l3_2xxx.h" |
19 | #include <plat/l4_2xxx.h> | 19 | #include "l4_2xxx.h" |
20 | 20 | ||
21 | #include "omap_hwmod_common_data.h" | 21 | #include "omap_hwmod_common_data.h" |
22 | 22 | ||
@@ -129,6 +129,15 @@ struct omap_hwmod_addr_space omap2xxx_mcbsp2_addrs[] = { | |||
129 | { } | 129 | { } |
130 | }; | 130 | }; |
131 | 131 | ||
132 | static struct omap_hwmod_addr_space omap2_rng_addr_space[] = { | ||
133 | { | ||
134 | .pa_start = 0x480a0000, | ||
135 | .pa_end = 0x480a004f, | ||
136 | .flags = ADDR_TYPE_RT | ||
137 | }, | ||
138 | { } | ||
139 | }; | ||
140 | |||
132 | /* | 141 | /* |
133 | * Common interconnect data | 142 | * Common interconnect data |
134 | */ | 143 | */ |
@@ -372,3 +381,11 @@ struct omap_hwmod_ocp_if omap2xxx_l4_core__dss_venc = { | |||
372 | .user = OCP_USER_MPU | OCP_USER_SDMA, | 381 | .user = OCP_USER_MPU | OCP_USER_SDMA, |
373 | }; | 382 | }; |
374 | 383 | ||
384 | /* l4_core -> rng */ | ||
385 | struct omap_hwmod_ocp_if omap2xxx_l4_core__rng = { | ||
386 | .master = &omap2xxx_l4_core_hwmod, | ||
387 | .slave = &omap2xxx_rng_hwmod, | ||
388 | .clk = "rng_ick", | ||
389 | .addr = omap2_rng_addr_space, | ||
390 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
391 | }; | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c b/arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c index afad69c6ba6e..bd9220ed5ab9 100644 --- a/arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_2xxx_ipblock_data.c | |||
@@ -10,12 +10,10 @@ | |||
10 | */ | 10 | */ |
11 | #include <plat/omap_hwmod.h> | 11 | #include <plat/omap_hwmod.h> |
12 | #include <plat/serial.h> | 12 | #include <plat/serial.h> |
13 | #include <plat/gpio.h> | 13 | #include <linux/platform_data/gpio-omap.h> |
14 | #include <plat/dma.h> | 14 | #include <plat/dma.h> |
15 | #include <plat/dmtimer.h> | 15 | #include <plat/dmtimer.h> |
16 | #include <plat/mcspi.h> | 16 | #include <linux/platform_data/spi-omap2-mcspi.h> |
17 | |||
18 | #include <mach/irqs.h> | ||
19 | 17 | ||
20 | #include "omap_hwmod_common_data.h" | 18 | #include "omap_hwmod_common_data.h" |
21 | #include "cm-regbits-24xx.h" | 19 | #include "cm-regbits-24xx.h" |
@@ -23,8 +21,8 @@ | |||
23 | #include "wd_timer.h" | 21 | #include "wd_timer.h" |
24 | 22 | ||
25 | struct omap_hwmod_irq_info omap2xxx_timer12_mpu_irqs[] = { | 23 | struct omap_hwmod_irq_info omap2xxx_timer12_mpu_irqs[] = { |
26 | { .irq = 48, }, | 24 | { .irq = 48 + OMAP_INTC_START, }, |
27 | { .irq = -1 } | 25 | { .irq = -1 }, |
28 | }; | 26 | }; |
29 | 27 | ||
30 | struct omap_hwmod_dma_info omap2xxx_dss_sdma_chs[] = { | 28 | struct omap_hwmod_dma_info omap2xxx_dss_sdma_chs[] = { |
@@ -175,6 +173,26 @@ struct omap_hwmod_class omap2xxx_mcspi_class = { | |||
175 | }; | 173 | }; |
176 | 174 | ||
177 | /* | 175 | /* |
176 | * 'gpmc' class | ||
177 | * general purpose memory controller | ||
178 | */ | ||
179 | |||
180 | static struct omap_hwmod_class_sysconfig omap2xxx_gpmc_sysc = { | ||
181 | .rev_offs = 0x0000, | ||
182 | .sysc_offs = 0x0010, | ||
183 | .syss_offs = 0x0014, | ||
184 | .sysc_flags = (SYSC_HAS_AUTOIDLE | SYSC_HAS_SIDLEMODE | | ||
185 | SYSC_HAS_SOFTRESET | SYSS_HAS_RESET_STATUS), | ||
186 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
187 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
188 | }; | ||
189 | |||
190 | static struct omap_hwmod_class omap2xxx_gpmc_hwmod_class = { | ||
191 | .name = "gpmc", | ||
192 | .sysc = &omap2xxx_gpmc_sysc, | ||
193 | }; | ||
194 | |||
195 | /* | ||
178 | * IP blocks | 196 | * IP blocks |
179 | */ | 197 | */ |
180 | 198 | ||
@@ -200,8 +218,14 @@ struct omap_hwmod omap2xxx_l4_wkup_hwmod = { | |||
200 | }; | 218 | }; |
201 | 219 | ||
202 | /* MPU */ | 220 | /* MPU */ |
221 | static struct omap_hwmod_irq_info omap2xxx_mpu_irqs[] = { | ||
222 | { .name = "pmu", .irq = 3 + OMAP_INTC_START }, | ||
223 | { .irq = -1 } | ||
224 | }; | ||
225 | |||
203 | struct omap_hwmod omap2xxx_mpu_hwmod = { | 226 | struct omap_hwmod omap2xxx_mpu_hwmod = { |
204 | .name = "mpu", | 227 | .name = "mpu", |
228 | .mpu_irqs = omap2xxx_mpu_irqs, | ||
205 | .class = &mpu_hwmod_class, | 229 | .class = &mpu_hwmod_class, |
206 | .main_clk = "mpu_ck", | 230 | .main_clk = "mpu_ck", |
207 | }; | 231 | }; |
@@ -222,6 +246,11 @@ static struct omap_timer_capability_dev_attr capability_pwm_dev_attr = { | |||
222 | .timer_capability = OMAP_TIMER_HAS_PWM, | 246 | .timer_capability = OMAP_TIMER_HAS_PWM, |
223 | }; | 247 | }; |
224 | 248 | ||
249 | /* timers with DSP interrupt dev attribute */ | ||
250 | static struct omap_timer_capability_dev_attr capability_dsp_dev_attr = { | ||
251 | .timer_capability = OMAP_TIMER_HAS_DSP_IRQ, | ||
252 | }; | ||
253 | |||
225 | /* timer1 */ | 254 | /* timer1 */ |
226 | 255 | ||
227 | struct omap_hwmod omap2xxx_timer1_hwmod = { | 256 | struct omap_hwmod omap2xxx_timer1_hwmod = { |
@@ -310,6 +339,7 @@ struct omap_hwmod omap2xxx_timer5_hwmod = { | |||
310 | .idlest_idle_bit = OMAP24XX_ST_GPT5_SHIFT, | 339 | .idlest_idle_bit = OMAP24XX_ST_GPT5_SHIFT, |
311 | }, | 340 | }, |
312 | }, | 341 | }, |
342 | .dev_attr = &capability_dsp_dev_attr, | ||
313 | .class = &omap2xxx_timer_hwmod_class, | 343 | .class = &omap2xxx_timer_hwmod_class, |
314 | }; | 344 | }; |
315 | 345 | ||
@@ -328,6 +358,7 @@ struct omap_hwmod omap2xxx_timer6_hwmod = { | |||
328 | .idlest_idle_bit = OMAP24XX_ST_GPT6_SHIFT, | 358 | .idlest_idle_bit = OMAP24XX_ST_GPT6_SHIFT, |
329 | }, | 359 | }, |
330 | }, | 360 | }, |
361 | .dev_attr = &capability_dsp_dev_attr, | ||
331 | .class = &omap2xxx_timer_hwmod_class, | 362 | .class = &omap2xxx_timer_hwmod_class, |
332 | }; | 363 | }; |
333 | 364 | ||
@@ -346,6 +377,7 @@ struct omap_hwmod omap2xxx_timer7_hwmod = { | |||
346 | .idlest_idle_bit = OMAP24XX_ST_GPT7_SHIFT, | 377 | .idlest_idle_bit = OMAP24XX_ST_GPT7_SHIFT, |
347 | }, | 378 | }, |
348 | }, | 379 | }, |
380 | .dev_attr = &capability_dsp_dev_attr, | ||
349 | .class = &omap2xxx_timer_hwmod_class, | 381 | .class = &omap2xxx_timer_hwmod_class, |
350 | }; | 382 | }; |
351 | 383 | ||
@@ -364,6 +396,7 @@ struct omap_hwmod omap2xxx_timer8_hwmod = { | |||
364 | .idlest_idle_bit = OMAP24XX_ST_GPT8_SHIFT, | 396 | .idlest_idle_bit = OMAP24XX_ST_GPT8_SHIFT, |
365 | }, | 397 | }, |
366 | }, | 398 | }, |
399 | .dev_attr = &capability_dsp_dev_attr, | ||
367 | .class = &omap2xxx_timer_hwmod_class, | 400 | .class = &omap2xxx_timer_hwmod_class, |
368 | }; | 401 | }; |
369 | 402 | ||
@@ -726,7 +759,6 @@ struct omap_hwmod omap2xxx_mcspi2_hwmod = { | |||
726 | .dev_attr = &omap_mcspi2_dev_attr, | 759 | .dev_attr = &omap_mcspi2_dev_attr, |
727 | }; | 760 | }; |
728 | 761 | ||
729 | |||
730 | static struct omap_hwmod_class omap2xxx_counter_hwmod_class = { | 762 | static struct omap_hwmod_class omap2xxx_counter_hwmod_class = { |
731 | .name = "counter", | 763 | .name = "counter", |
732 | }; | 764 | }; |
@@ -745,3 +777,77 @@ struct omap_hwmod omap2xxx_counter_32k_hwmod = { | |||
745 | }, | 777 | }, |
746 | .class = &omap2xxx_counter_hwmod_class, | 778 | .class = &omap2xxx_counter_hwmod_class, |
747 | }; | 779 | }; |
780 | |||
781 | /* gpmc */ | ||
782 | static struct omap_hwmod_irq_info omap2xxx_gpmc_irqs[] = { | ||
783 | { .irq = 20 }, | ||
784 | { .irq = -1 } | ||
785 | }; | ||
786 | |||
787 | struct omap_hwmod omap2xxx_gpmc_hwmod = { | ||
788 | .name = "gpmc", | ||
789 | .class = &omap2xxx_gpmc_hwmod_class, | ||
790 | .mpu_irqs = omap2xxx_gpmc_irqs, | ||
791 | .main_clk = "gpmc_fck", | ||
792 | /* | ||
793 | * XXX HWMOD_INIT_NO_RESET should not be needed for this IP | ||
794 | * block. It is not being added due to any known bugs with | ||
795 | * resetting the GPMC IP block, but rather because any timings | ||
796 | * set by the bootloader are not being correctly programmed by | ||
797 | * the kernel from the board file or DT data. | ||
798 | * HWMOD_INIT_NO_RESET should be removed ASAP. | ||
799 | */ | ||
800 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET | | ||
801 | HWMOD_NO_IDLEST), | ||
802 | .prcm = { | ||
803 | .omap2 = { | ||
804 | .prcm_reg_id = 3, | ||
805 | .module_bit = OMAP24XX_EN_GPMC_MASK, | ||
806 | .module_offs = CORE_MOD, | ||
807 | }, | ||
808 | }, | ||
809 | }; | ||
810 | |||
811 | /* RNG */ | ||
812 | |||
813 | static struct omap_hwmod_class_sysconfig omap2_rng_sysc = { | ||
814 | .rev_offs = 0x3c, | ||
815 | .sysc_offs = 0x40, | ||
816 | .syss_offs = 0x44, | ||
817 | .sysc_flags = (SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE | | ||
818 | SYSS_HAS_RESET_STATUS), | ||
819 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
820 | }; | ||
821 | |||
822 | static struct omap_hwmod_class omap2_rng_hwmod_class = { | ||
823 | .name = "rng", | ||
824 | .sysc = &omap2_rng_sysc, | ||
825 | }; | ||
826 | |||
827 | static struct omap_hwmod_irq_info omap2_rng_mpu_irqs[] = { | ||
828 | { .irq = 52 }, | ||
829 | { .irq = -1 } | ||
830 | }; | ||
831 | |||
832 | struct omap_hwmod omap2xxx_rng_hwmod = { | ||
833 | .name = "rng", | ||
834 | .mpu_irqs = omap2_rng_mpu_irqs, | ||
835 | .main_clk = "l4_ck", | ||
836 | .prcm = { | ||
837 | .omap2 = { | ||
838 | .module_offs = CORE_MOD, | ||
839 | .prcm_reg_id = 4, | ||
840 | .module_bit = OMAP24XX_EN_RNG_SHIFT, | ||
841 | .idlest_reg_id = 4, | ||
842 | .idlest_idle_bit = OMAP24XX_ST_RNG_SHIFT, | ||
843 | }, | ||
844 | }, | ||
845 | /* | ||
846 | * XXX The first read from the SYSSTATUS register of the RNG | ||
847 | * after the SYSCONFIG SOFTRESET bit is set triggers an | ||
848 | * imprecise external abort. It's unclear why this happens. | ||
849 | * Until this is analyzed, skip the IP block reset. | ||
850 | */ | ||
851 | .flags = HWMOD_INIT_NO_RESET, | ||
852 | .class = &omap2_rng_hwmod_class, | ||
853 | }; | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_33xx_data.c b/arch/arm/mach-omap2/omap_hwmod_33xx_data.c new file mode 100644 index 000000000000..59d5c1cd316d --- /dev/null +++ b/arch/arm/mach-omap2/omap_hwmod_33xx_data.c | |||
@@ -0,0 +1,3381 @@ | |||
1 | /* | ||
2 | * omap_hwmod_33xx_data.c: Hardware modules present on the AM33XX chips | ||
3 | * | ||
4 | * Copyright (C) {2012} Texas Instruments Incorporated - http://www.ti.com/ | ||
5 | * | ||
6 | * This file is automatically generated from the AM33XX hardware databases. | ||
7 | * This program is free software; you can redistribute it and/or | ||
8 | * modify it under the terms of the GNU General Public License as | ||
9 | * published by the Free Software Foundation version 2. | ||
10 | * | ||
11 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any | ||
12 | * kind, whether express or implied; without even the implied warranty | ||
13 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
14 | * GNU General Public License for more details. | ||
15 | */ | ||
16 | |||
17 | #include <plat/omap_hwmod.h> | ||
18 | #include <plat/cpu.h> | ||
19 | #include <linux/platform_data/gpio-omap.h> | ||
20 | #include <linux/platform_data/spi-omap2-mcspi.h> | ||
21 | #include <plat/dma.h> | ||
22 | #include <plat/mmc.h> | ||
23 | #include <plat/i2c.h> | ||
24 | |||
25 | #include "omap_hwmod_common_data.h" | ||
26 | |||
27 | #include "control.h" | ||
28 | #include "cm33xx.h" | ||
29 | #include "prm33xx.h" | ||
30 | #include "prm-regbits-33xx.h" | ||
31 | |||
32 | /* | ||
33 | * IP blocks | ||
34 | */ | ||
35 | |||
36 | /* | ||
37 | * 'emif_fw' class | ||
38 | * instance(s): emif_fw | ||
39 | */ | ||
40 | static struct omap_hwmod_class am33xx_emif_fw_hwmod_class = { | ||
41 | .name = "emif_fw", | ||
42 | }; | ||
43 | |||
44 | /* emif_fw */ | ||
45 | static struct omap_hwmod am33xx_emif_fw_hwmod = { | ||
46 | .name = "emif_fw", | ||
47 | .class = &am33xx_emif_fw_hwmod_class, | ||
48 | .clkdm_name = "l4fw_clkdm", | ||
49 | .main_clk = "l4fw_gclk", | ||
50 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET), | ||
51 | .prcm = { | ||
52 | .omap4 = { | ||
53 | .clkctrl_offs = AM33XX_CM_PER_EMIF_FW_CLKCTRL_OFFSET, | ||
54 | .modulemode = MODULEMODE_SWCTRL, | ||
55 | }, | ||
56 | }, | ||
57 | }; | ||
58 | |||
59 | /* | ||
60 | * 'emif' class | ||
61 | * instance(s): emif | ||
62 | */ | ||
63 | static struct omap_hwmod_class_sysconfig am33xx_emif_sysc = { | ||
64 | .rev_offs = 0x0000, | ||
65 | }; | ||
66 | |||
67 | static struct omap_hwmod_class am33xx_emif_hwmod_class = { | ||
68 | .name = "emif", | ||
69 | .sysc = &am33xx_emif_sysc, | ||
70 | }; | ||
71 | |||
72 | static struct omap_hwmod_irq_info am33xx_emif_irqs[] = { | ||
73 | { .name = "ddrerr0", .irq = 101 + OMAP_INTC_START, }, | ||
74 | { .irq = -1 }, | ||
75 | }; | ||
76 | |||
77 | /* emif */ | ||
78 | static struct omap_hwmod am33xx_emif_hwmod = { | ||
79 | .name = "emif", | ||
80 | .class = &am33xx_emif_hwmod_class, | ||
81 | .clkdm_name = "l3_clkdm", | ||
82 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET), | ||
83 | .mpu_irqs = am33xx_emif_irqs, | ||
84 | .main_clk = "dpll_ddr_m2_div2_ck", | ||
85 | .prcm = { | ||
86 | .omap4 = { | ||
87 | .clkctrl_offs = AM33XX_CM_PER_EMIF_CLKCTRL_OFFSET, | ||
88 | .modulemode = MODULEMODE_SWCTRL, | ||
89 | }, | ||
90 | }, | ||
91 | }; | ||
92 | |||
93 | /* | ||
94 | * 'l3' class | ||
95 | * instance(s): l3_main, l3_s, l3_instr | ||
96 | */ | ||
97 | static struct omap_hwmod_class am33xx_l3_hwmod_class = { | ||
98 | .name = "l3", | ||
99 | }; | ||
100 | |||
101 | /* l3_main (l3_fast) */ | ||
102 | static struct omap_hwmod_irq_info am33xx_l3_main_irqs[] = { | ||
103 | { .name = "l3debug", .irq = 9 + OMAP_INTC_START, }, | ||
104 | { .name = "l3appint", .irq = 10 + OMAP_INTC_START, }, | ||
105 | { .irq = -1 }, | ||
106 | }; | ||
107 | |||
108 | static struct omap_hwmod am33xx_l3_main_hwmod = { | ||
109 | .name = "l3_main", | ||
110 | .class = &am33xx_l3_hwmod_class, | ||
111 | .clkdm_name = "l3_clkdm", | ||
112 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET), | ||
113 | .mpu_irqs = am33xx_l3_main_irqs, | ||
114 | .main_clk = "l3_gclk", | ||
115 | .prcm = { | ||
116 | .omap4 = { | ||
117 | .clkctrl_offs = AM33XX_CM_PER_L3_CLKCTRL_OFFSET, | ||
118 | .modulemode = MODULEMODE_SWCTRL, | ||
119 | }, | ||
120 | }, | ||
121 | }; | ||
122 | |||
123 | /* l3_s */ | ||
124 | static struct omap_hwmod am33xx_l3_s_hwmod = { | ||
125 | .name = "l3_s", | ||
126 | .class = &am33xx_l3_hwmod_class, | ||
127 | .clkdm_name = "l3s_clkdm", | ||
128 | }; | ||
129 | |||
130 | /* l3_instr */ | ||
131 | static struct omap_hwmod am33xx_l3_instr_hwmod = { | ||
132 | .name = "l3_instr", | ||
133 | .class = &am33xx_l3_hwmod_class, | ||
134 | .clkdm_name = "l3_clkdm", | ||
135 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET), | ||
136 | .main_clk = "l3_gclk", | ||
137 | .prcm = { | ||
138 | .omap4 = { | ||
139 | .clkctrl_offs = AM33XX_CM_PER_L3_INSTR_CLKCTRL_OFFSET, | ||
140 | .modulemode = MODULEMODE_SWCTRL, | ||
141 | }, | ||
142 | }, | ||
143 | }; | ||
144 | |||
145 | /* | ||
146 | * 'l4' class | ||
147 | * instance(s): l4_ls, l4_hs, l4_wkup, l4_fw | ||
148 | */ | ||
149 | static struct omap_hwmod_class am33xx_l4_hwmod_class = { | ||
150 | .name = "l4", | ||
151 | }; | ||
152 | |||
153 | /* l4_ls */ | ||
154 | static struct omap_hwmod am33xx_l4_ls_hwmod = { | ||
155 | .name = "l4_ls", | ||
156 | .class = &am33xx_l4_hwmod_class, | ||
157 | .clkdm_name = "l4ls_clkdm", | ||
158 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET), | ||
159 | .main_clk = "l4ls_gclk", | ||
160 | .prcm = { | ||
161 | .omap4 = { | ||
162 | .clkctrl_offs = AM33XX_CM_PER_L4LS_CLKCTRL_OFFSET, | ||
163 | .modulemode = MODULEMODE_SWCTRL, | ||
164 | }, | ||
165 | }, | ||
166 | }; | ||
167 | |||
168 | /* l4_hs */ | ||
169 | static struct omap_hwmod am33xx_l4_hs_hwmod = { | ||
170 | .name = "l4_hs", | ||
171 | .class = &am33xx_l4_hwmod_class, | ||
172 | .clkdm_name = "l4hs_clkdm", | ||
173 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET), | ||
174 | .main_clk = "l4hs_gclk", | ||
175 | .prcm = { | ||
176 | .omap4 = { | ||
177 | .clkctrl_offs = AM33XX_CM_PER_L4HS_CLKCTRL_OFFSET, | ||
178 | .modulemode = MODULEMODE_SWCTRL, | ||
179 | }, | ||
180 | }, | ||
181 | }; | ||
182 | |||
183 | |||
184 | /* l4_wkup */ | ||
185 | static struct omap_hwmod am33xx_l4_wkup_hwmod = { | ||
186 | .name = "l4_wkup", | ||
187 | .class = &am33xx_l4_hwmod_class, | ||
188 | .clkdm_name = "l4_wkup_clkdm", | ||
189 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET), | ||
190 | .prcm = { | ||
191 | .omap4 = { | ||
192 | .clkctrl_offs = AM33XX_CM_WKUP_L4WKUP_CLKCTRL_OFFSET, | ||
193 | .modulemode = MODULEMODE_SWCTRL, | ||
194 | }, | ||
195 | }, | ||
196 | }; | ||
197 | |||
198 | /* l4_fw */ | ||
199 | static struct omap_hwmod am33xx_l4_fw_hwmod = { | ||
200 | .name = "l4_fw", | ||
201 | .class = &am33xx_l4_hwmod_class, | ||
202 | .clkdm_name = "l4fw_clkdm", | ||
203 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET), | ||
204 | .prcm = { | ||
205 | .omap4 = { | ||
206 | .clkctrl_offs = AM33XX_CM_PER_L4FW_CLKCTRL_OFFSET, | ||
207 | .modulemode = MODULEMODE_SWCTRL, | ||
208 | }, | ||
209 | }, | ||
210 | }; | ||
211 | |||
212 | /* | ||
213 | * 'mpu' class | ||
214 | */ | ||
215 | static struct omap_hwmod_class am33xx_mpu_hwmod_class = { | ||
216 | .name = "mpu", | ||
217 | }; | ||
218 | |||
219 | /* mpu */ | ||
220 | static struct omap_hwmod_irq_info am33xx_mpu_irqs[] = { | ||
221 | { .name = "emuint", .irq = 0 + OMAP_INTC_START, }, | ||
222 | { .name = "commtx", .irq = 1 + OMAP_INTC_START, }, | ||
223 | { .name = "commrx", .irq = 2 + OMAP_INTC_START, }, | ||
224 | { .name = "bench", .irq = 3 + OMAP_INTC_START, }, | ||
225 | { .irq = -1 }, | ||
226 | }; | ||
227 | |||
228 | static struct omap_hwmod am33xx_mpu_hwmod = { | ||
229 | .name = "mpu", | ||
230 | .class = &am33xx_mpu_hwmod_class, | ||
231 | .clkdm_name = "mpu_clkdm", | ||
232 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET), | ||
233 | .mpu_irqs = am33xx_mpu_irqs, | ||
234 | .main_clk = "dpll_mpu_m2_ck", | ||
235 | .prcm = { | ||
236 | .omap4 = { | ||
237 | .clkctrl_offs = AM33XX_CM_MPU_MPU_CLKCTRL_OFFSET, | ||
238 | .modulemode = MODULEMODE_SWCTRL, | ||
239 | }, | ||
240 | }, | ||
241 | }; | ||
242 | |||
243 | /* | ||
244 | * 'wakeup m3' class | ||
245 | * Wakeup controller sub-system under wakeup domain | ||
246 | */ | ||
247 | static struct omap_hwmod_class am33xx_wkup_m3_hwmod_class = { | ||
248 | .name = "wkup_m3", | ||
249 | }; | ||
250 | |||
251 | static struct omap_hwmod_rst_info am33xx_wkup_m3_resets[] = { | ||
252 | { .name = "wkup_m3", .rst_shift = 3, .st_shift = 5 }, | ||
253 | }; | ||
254 | |||
255 | static struct omap_hwmod_irq_info am33xx_wkup_m3_irqs[] = { | ||
256 | { .name = "txev", .irq = 78 + OMAP_INTC_START, }, | ||
257 | { .irq = -1 }, | ||
258 | }; | ||
259 | |||
260 | /* wkup_m3 */ | ||
261 | static struct omap_hwmod am33xx_wkup_m3_hwmod = { | ||
262 | .name = "wkup_m3", | ||
263 | .class = &am33xx_wkup_m3_hwmod_class, | ||
264 | .clkdm_name = "l4_wkup_aon_clkdm", | ||
265 | .flags = HWMOD_INIT_NO_RESET, /* Keep hardreset asserted */ | ||
266 | .mpu_irqs = am33xx_wkup_m3_irqs, | ||
267 | .main_clk = "dpll_core_m4_div2_ck", | ||
268 | .prcm = { | ||
269 | .omap4 = { | ||
270 | .clkctrl_offs = AM33XX_CM_WKUP_WKUP_M3_CLKCTRL_OFFSET, | ||
271 | .rstctrl_offs = AM33XX_RM_WKUP_RSTCTRL_OFFSET, | ||
272 | .modulemode = MODULEMODE_SWCTRL, | ||
273 | }, | ||
274 | }, | ||
275 | .rst_lines = am33xx_wkup_m3_resets, | ||
276 | .rst_lines_cnt = ARRAY_SIZE(am33xx_wkup_m3_resets), | ||
277 | }; | ||
278 | |||
279 | /* | ||
280 | * 'pru-icss' class | ||
281 | * Programmable Real-Time Unit and Industrial Communication Subsystem | ||
282 | */ | ||
283 | static struct omap_hwmod_class am33xx_pruss_hwmod_class = { | ||
284 | .name = "pruss", | ||
285 | }; | ||
286 | |||
287 | static struct omap_hwmod_rst_info am33xx_pruss_resets[] = { | ||
288 | { .name = "pruss", .rst_shift = 1 }, | ||
289 | }; | ||
290 | |||
291 | static struct omap_hwmod_irq_info am33xx_pruss_irqs[] = { | ||
292 | { .name = "evtout0", .irq = 20 + OMAP_INTC_START, }, | ||
293 | { .name = "evtout1", .irq = 21 + OMAP_INTC_START, }, | ||
294 | { .name = "evtout2", .irq = 22 + OMAP_INTC_START, }, | ||
295 | { .name = "evtout3", .irq = 23 + OMAP_INTC_START, }, | ||
296 | { .name = "evtout4", .irq = 24 + OMAP_INTC_START, }, | ||
297 | { .name = "evtout5", .irq = 25 + OMAP_INTC_START, }, | ||
298 | { .name = "evtout6", .irq = 26 + OMAP_INTC_START, }, | ||
299 | { .name = "evtout7", .irq = 27 + OMAP_INTC_START, }, | ||
300 | { .irq = -1 }, | ||
301 | }; | ||
302 | |||
303 | /* pru-icss */ | ||
304 | /* Pseudo hwmod for reset control purpose only */ | ||
305 | static struct omap_hwmod am33xx_pruss_hwmod = { | ||
306 | .name = "pruss", | ||
307 | .class = &am33xx_pruss_hwmod_class, | ||
308 | .clkdm_name = "pruss_ocp_clkdm", | ||
309 | .mpu_irqs = am33xx_pruss_irqs, | ||
310 | .main_clk = "pruss_ocp_gclk", | ||
311 | .prcm = { | ||
312 | .omap4 = { | ||
313 | .clkctrl_offs = AM33XX_CM_PER_PRUSS_CLKCTRL_OFFSET, | ||
314 | .rstctrl_offs = AM33XX_RM_PER_RSTCTRL_OFFSET, | ||
315 | .modulemode = MODULEMODE_SWCTRL, | ||
316 | }, | ||
317 | }, | ||
318 | .rst_lines = am33xx_pruss_resets, | ||
319 | .rst_lines_cnt = ARRAY_SIZE(am33xx_pruss_resets), | ||
320 | }; | ||
321 | |||
322 | /* gfx */ | ||
323 | /* Pseudo hwmod for reset control purpose only */ | ||
324 | static struct omap_hwmod_class am33xx_gfx_hwmod_class = { | ||
325 | .name = "gfx", | ||
326 | }; | ||
327 | |||
328 | static struct omap_hwmod_rst_info am33xx_gfx_resets[] = { | ||
329 | { .name = "gfx", .rst_shift = 0 }, | ||
330 | }; | ||
331 | |||
332 | static struct omap_hwmod_irq_info am33xx_gfx_irqs[] = { | ||
333 | { .name = "gfxint", .irq = 37 + OMAP_INTC_START, }, | ||
334 | { .irq = -1 }, | ||
335 | }; | ||
336 | |||
337 | static struct omap_hwmod am33xx_gfx_hwmod = { | ||
338 | .name = "gfx", | ||
339 | .class = &am33xx_gfx_hwmod_class, | ||
340 | .clkdm_name = "gfx_l3_clkdm", | ||
341 | .mpu_irqs = am33xx_gfx_irqs, | ||
342 | .main_clk = "gfx_fck_div_ck", | ||
343 | .prcm = { | ||
344 | .omap4 = { | ||
345 | .clkctrl_offs = AM33XX_CM_GFX_GFX_CLKCTRL_OFFSET, | ||
346 | .rstctrl_offs = AM33XX_RM_GFX_RSTCTRL_OFFSET, | ||
347 | .modulemode = MODULEMODE_SWCTRL, | ||
348 | }, | ||
349 | }, | ||
350 | .rst_lines = am33xx_gfx_resets, | ||
351 | .rst_lines_cnt = ARRAY_SIZE(am33xx_gfx_resets), | ||
352 | }; | ||
353 | |||
354 | /* | ||
355 | * 'prcm' class | ||
356 | * power and reset manager (whole prcm infrastructure) | ||
357 | */ | ||
358 | static struct omap_hwmod_class am33xx_prcm_hwmod_class = { | ||
359 | .name = "prcm", | ||
360 | }; | ||
361 | |||
362 | /* prcm */ | ||
363 | static struct omap_hwmod am33xx_prcm_hwmod = { | ||
364 | .name = "prcm", | ||
365 | .class = &am33xx_prcm_hwmod_class, | ||
366 | .clkdm_name = "l4_wkup_clkdm", | ||
367 | }; | ||
368 | |||
369 | /* | ||
370 | * 'adc/tsc' class | ||
371 | * TouchScreen Controller (Anolog-To-Digital Converter) | ||
372 | */ | ||
373 | static struct omap_hwmod_class_sysconfig am33xx_adc_tsc_sysc = { | ||
374 | .rev_offs = 0x00, | ||
375 | .sysc_offs = 0x10, | ||
376 | .sysc_flags = SYSC_HAS_SIDLEMODE, | ||
377 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART | | ||
378 | SIDLE_SMART_WKUP), | ||
379 | .sysc_fields = &omap_hwmod_sysc_type2, | ||
380 | }; | ||
381 | |||
382 | static struct omap_hwmod_class am33xx_adc_tsc_hwmod_class = { | ||
383 | .name = "adc_tsc", | ||
384 | .sysc = &am33xx_adc_tsc_sysc, | ||
385 | }; | ||
386 | |||
387 | static struct omap_hwmod_irq_info am33xx_adc_tsc_irqs[] = { | ||
388 | { .irq = 16 + OMAP_INTC_START, }, | ||
389 | { .irq = -1 }, | ||
390 | }; | ||
391 | |||
392 | static struct omap_hwmod am33xx_adc_tsc_hwmod = { | ||
393 | .name = "adc_tsc", | ||
394 | .class = &am33xx_adc_tsc_hwmod_class, | ||
395 | .clkdm_name = "l4_wkup_clkdm", | ||
396 | .mpu_irqs = am33xx_adc_tsc_irqs, | ||
397 | .main_clk = "adc_tsc_fck", | ||
398 | .prcm = { | ||
399 | .omap4 = { | ||
400 | .clkctrl_offs = AM33XX_CM_WKUP_ADC_TSC_CLKCTRL_OFFSET, | ||
401 | .modulemode = MODULEMODE_SWCTRL, | ||
402 | }, | ||
403 | }, | ||
404 | }; | ||
405 | |||
406 | /* | ||
407 | * Modules omap_hwmod structures | ||
408 | * | ||
409 | * The following IPs are excluded for the moment because: | ||
410 | * - They do not need an explicit SW control using omap_hwmod API. | ||
411 | * - They still need to be validated with the driver | ||
412 | * properly adapted to omap_hwmod / omap_device | ||
413 | * | ||
414 | * - cEFUSE (doesn't fall under any ocp_if) | ||
415 | * - clkdiv32k | ||
416 | * - debugss | ||
417 | * - ocmc ram | ||
418 | * - ocp watch point | ||
419 | * - aes0 | ||
420 | * - sha0 | ||
421 | */ | ||
422 | #if 0 | ||
423 | /* | ||
424 | * 'cefuse' class | ||
425 | */ | ||
426 | static struct omap_hwmod_class am33xx_cefuse_hwmod_class = { | ||
427 | .name = "cefuse", | ||
428 | }; | ||
429 | |||
430 | static struct omap_hwmod am33xx_cefuse_hwmod = { | ||
431 | .name = "cefuse", | ||
432 | .class = &am33xx_cefuse_hwmod_class, | ||
433 | .clkdm_name = "l4_cefuse_clkdm", | ||
434 | .main_clk = "cefuse_fck", | ||
435 | .prcm = { | ||
436 | .omap4 = { | ||
437 | .clkctrl_offs = AM33XX_CM_CEFUSE_CEFUSE_CLKCTRL_OFFSET, | ||
438 | .modulemode = MODULEMODE_SWCTRL, | ||
439 | }, | ||
440 | }, | ||
441 | }; | ||
442 | |||
443 | /* | ||
444 | * 'clkdiv32k' class | ||
445 | */ | ||
446 | static struct omap_hwmod_class am33xx_clkdiv32k_hwmod_class = { | ||
447 | .name = "clkdiv32k", | ||
448 | }; | ||
449 | |||
450 | static struct omap_hwmod am33xx_clkdiv32k_hwmod = { | ||
451 | .name = "clkdiv32k", | ||
452 | .class = &am33xx_clkdiv32k_hwmod_class, | ||
453 | .clkdm_name = "clk_24mhz_clkdm", | ||
454 | .main_clk = "clkdiv32k_ick", | ||
455 | .prcm = { | ||
456 | .omap4 = { | ||
457 | .clkctrl_offs = AM33XX_CM_PER_CLKDIV32K_CLKCTRL_OFFSET, | ||
458 | .modulemode = MODULEMODE_SWCTRL, | ||
459 | }, | ||
460 | }, | ||
461 | }; | ||
462 | |||
463 | /* | ||
464 | * 'debugss' class | ||
465 | * debug sub system | ||
466 | */ | ||
467 | static struct omap_hwmod_class am33xx_debugss_hwmod_class = { | ||
468 | .name = "debugss", | ||
469 | }; | ||
470 | |||
471 | static struct omap_hwmod am33xx_debugss_hwmod = { | ||
472 | .name = "debugss", | ||
473 | .class = &am33xx_debugss_hwmod_class, | ||
474 | .clkdm_name = "l3_aon_clkdm", | ||
475 | .main_clk = "debugss_ick", | ||
476 | .prcm = { | ||
477 | .omap4 = { | ||
478 | .clkctrl_offs = AM33XX_CM_WKUP_DEBUGSS_CLKCTRL_OFFSET, | ||
479 | .modulemode = MODULEMODE_SWCTRL, | ||
480 | }, | ||
481 | }, | ||
482 | }; | ||
483 | |||
484 | /* ocmcram */ | ||
485 | static struct omap_hwmod_class am33xx_ocmcram_hwmod_class = { | ||
486 | .name = "ocmcram", | ||
487 | }; | ||
488 | |||
489 | static struct omap_hwmod am33xx_ocmcram_hwmod = { | ||
490 | .name = "ocmcram", | ||
491 | .class = &am33xx_ocmcram_hwmod_class, | ||
492 | .clkdm_name = "l3_clkdm", | ||
493 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET), | ||
494 | .main_clk = "l3_gclk", | ||
495 | .prcm = { | ||
496 | .omap4 = { | ||
497 | .clkctrl_offs = AM33XX_CM_PER_OCMCRAM_CLKCTRL_OFFSET, | ||
498 | .modulemode = MODULEMODE_SWCTRL, | ||
499 | }, | ||
500 | }, | ||
501 | }; | ||
502 | |||
503 | /* ocpwp */ | ||
504 | static struct omap_hwmod_class am33xx_ocpwp_hwmod_class = { | ||
505 | .name = "ocpwp", | ||
506 | }; | ||
507 | |||
508 | static struct omap_hwmod am33xx_ocpwp_hwmod = { | ||
509 | .name = "ocpwp", | ||
510 | .class = &am33xx_ocpwp_hwmod_class, | ||
511 | .clkdm_name = "l4ls_clkdm", | ||
512 | .main_clk = "l4ls_gclk", | ||
513 | .prcm = { | ||
514 | .omap4 = { | ||
515 | .clkctrl_offs = AM33XX_CM_PER_OCPWP_CLKCTRL_OFFSET, | ||
516 | .modulemode = MODULEMODE_SWCTRL, | ||
517 | }, | ||
518 | }, | ||
519 | }; | ||
520 | |||
521 | /* | ||
522 | * 'aes' class | ||
523 | */ | ||
524 | static struct omap_hwmod_class am33xx_aes_hwmod_class = { | ||
525 | .name = "aes", | ||
526 | }; | ||
527 | |||
528 | static struct omap_hwmod_irq_info am33xx_aes0_irqs[] = { | ||
529 | { .irq = 102 + OMAP_INTC_START, }, | ||
530 | { .irq = -1 }, | ||
531 | }; | ||
532 | |||
533 | static struct omap_hwmod am33xx_aes0_hwmod = { | ||
534 | .name = "aes0", | ||
535 | .class = &am33xx_aes_hwmod_class, | ||
536 | .clkdm_name = "l3_clkdm", | ||
537 | .mpu_irqs = am33xx_aes0_irqs, | ||
538 | .main_clk = "l3_gclk", | ||
539 | .prcm = { | ||
540 | .omap4 = { | ||
541 | .clkctrl_offs = AM33XX_CM_PER_AES0_CLKCTRL_OFFSET, | ||
542 | .modulemode = MODULEMODE_SWCTRL, | ||
543 | }, | ||
544 | }, | ||
545 | }; | ||
546 | |||
547 | /* sha0 */ | ||
548 | static struct omap_hwmod_class am33xx_sha0_hwmod_class = { | ||
549 | .name = "sha0", | ||
550 | }; | ||
551 | |||
552 | static struct omap_hwmod_irq_info am33xx_sha0_irqs[] = { | ||
553 | { .irq = 108 + OMAP_INTC_START, }, | ||
554 | { .irq = -1 }, | ||
555 | }; | ||
556 | |||
557 | static struct omap_hwmod am33xx_sha0_hwmod = { | ||
558 | .name = "sha0", | ||
559 | .class = &am33xx_sha0_hwmod_class, | ||
560 | .clkdm_name = "l3_clkdm", | ||
561 | .mpu_irqs = am33xx_sha0_irqs, | ||
562 | .main_clk = "l3_gclk", | ||
563 | .prcm = { | ||
564 | .omap4 = { | ||
565 | .clkctrl_offs = AM33XX_CM_PER_SHA0_CLKCTRL_OFFSET, | ||
566 | .modulemode = MODULEMODE_SWCTRL, | ||
567 | }, | ||
568 | }, | ||
569 | }; | ||
570 | |||
571 | #endif | ||
572 | |||
573 | /* 'smartreflex' class */ | ||
574 | static struct omap_hwmod_class am33xx_smartreflex_hwmod_class = { | ||
575 | .name = "smartreflex", | ||
576 | }; | ||
577 | |||
578 | /* smartreflex0 */ | ||
579 | static struct omap_hwmod_irq_info am33xx_smartreflex0_irqs[] = { | ||
580 | { .irq = 120 + OMAP_INTC_START, }, | ||
581 | { .irq = -1 }, | ||
582 | }; | ||
583 | |||
584 | static struct omap_hwmod am33xx_smartreflex0_hwmod = { | ||
585 | .name = "smartreflex0", | ||
586 | .class = &am33xx_smartreflex_hwmod_class, | ||
587 | .clkdm_name = "l4_wkup_clkdm", | ||
588 | .mpu_irqs = am33xx_smartreflex0_irqs, | ||
589 | .main_clk = "smartreflex0_fck", | ||
590 | .prcm = { | ||
591 | .omap4 = { | ||
592 | .clkctrl_offs = AM33XX_CM_WKUP_SMARTREFLEX0_CLKCTRL_OFFSET, | ||
593 | .modulemode = MODULEMODE_SWCTRL, | ||
594 | }, | ||
595 | }, | ||
596 | }; | ||
597 | |||
598 | /* smartreflex1 */ | ||
599 | static struct omap_hwmod_irq_info am33xx_smartreflex1_irqs[] = { | ||
600 | { .irq = 121 + OMAP_INTC_START, }, | ||
601 | { .irq = -1 }, | ||
602 | }; | ||
603 | |||
604 | static struct omap_hwmod am33xx_smartreflex1_hwmod = { | ||
605 | .name = "smartreflex1", | ||
606 | .class = &am33xx_smartreflex_hwmod_class, | ||
607 | .clkdm_name = "l4_wkup_clkdm", | ||
608 | .mpu_irqs = am33xx_smartreflex1_irqs, | ||
609 | .main_clk = "smartreflex1_fck", | ||
610 | .prcm = { | ||
611 | .omap4 = { | ||
612 | .clkctrl_offs = AM33XX_CM_WKUP_SMARTREFLEX1_CLKCTRL_OFFSET, | ||
613 | .modulemode = MODULEMODE_SWCTRL, | ||
614 | }, | ||
615 | }, | ||
616 | }; | ||
617 | |||
618 | /* | ||
619 | * 'control' module class | ||
620 | */ | ||
621 | static struct omap_hwmod_class am33xx_control_hwmod_class = { | ||
622 | .name = "control", | ||
623 | }; | ||
624 | |||
625 | static struct omap_hwmod_irq_info am33xx_control_irqs[] = { | ||
626 | { .irq = 8 + OMAP_INTC_START, }, | ||
627 | { .irq = -1 }, | ||
628 | }; | ||
629 | |||
630 | static struct omap_hwmod am33xx_control_hwmod = { | ||
631 | .name = "control", | ||
632 | .class = &am33xx_control_hwmod_class, | ||
633 | .clkdm_name = "l4_wkup_clkdm", | ||
634 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET), | ||
635 | .mpu_irqs = am33xx_control_irqs, | ||
636 | .main_clk = "dpll_core_m4_div2_ck", | ||
637 | .prcm = { | ||
638 | .omap4 = { | ||
639 | .clkctrl_offs = AM33XX_CM_WKUP_CONTROL_CLKCTRL_OFFSET, | ||
640 | .modulemode = MODULEMODE_SWCTRL, | ||
641 | }, | ||
642 | }, | ||
643 | }; | ||
644 | |||
645 | /* | ||
646 | * 'cpgmac' class | ||
647 | * cpsw/cpgmac sub system | ||
648 | */ | ||
649 | static struct omap_hwmod_class_sysconfig am33xx_cpgmac_sysc = { | ||
650 | .rev_offs = 0x0, | ||
651 | .sysc_offs = 0x8, | ||
652 | .syss_offs = 0x4, | ||
653 | .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_MIDLEMODE | | ||
654 | SYSS_HAS_RESET_STATUS), | ||
655 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | MSTANDBY_FORCE | | ||
656 | MSTANDBY_NO), | ||
657 | .sysc_fields = &omap_hwmod_sysc_type3, | ||
658 | }; | ||
659 | |||
660 | static struct omap_hwmod_class am33xx_cpgmac0_hwmod_class = { | ||
661 | .name = "cpgmac0", | ||
662 | .sysc = &am33xx_cpgmac_sysc, | ||
663 | }; | ||
664 | |||
665 | static struct omap_hwmod_irq_info am33xx_cpgmac0_irqs[] = { | ||
666 | { .name = "c0_rx_thresh_pend", .irq = 40 + OMAP_INTC_START, }, | ||
667 | { .name = "c0_rx_pend", .irq = 41 + OMAP_INTC_START, }, | ||
668 | { .name = "c0_tx_pend", .irq = 42 + OMAP_INTC_START, }, | ||
669 | { .name = "c0_misc_pend", .irq = 43 + OMAP_INTC_START, }, | ||
670 | { .irq = -1 }, | ||
671 | }; | ||
672 | |||
673 | static struct omap_hwmod am33xx_cpgmac0_hwmod = { | ||
674 | .name = "cpgmac0", | ||
675 | .class = &am33xx_cpgmac0_hwmod_class, | ||
676 | .clkdm_name = "cpsw_125mhz_clkdm", | ||
677 | .mpu_irqs = am33xx_cpgmac0_irqs, | ||
678 | .main_clk = "cpsw_125mhz_gclk", | ||
679 | .prcm = { | ||
680 | .omap4 = { | ||
681 | .clkctrl_offs = AM33XX_CM_PER_CPGMAC0_CLKCTRL_OFFSET, | ||
682 | .modulemode = MODULEMODE_SWCTRL, | ||
683 | }, | ||
684 | }, | ||
685 | }; | ||
686 | |||
687 | /* | ||
688 | * dcan class | ||
689 | */ | ||
690 | static struct omap_hwmod_class am33xx_dcan_hwmod_class = { | ||
691 | .name = "d_can", | ||
692 | }; | ||
693 | |||
694 | /* dcan0 */ | ||
695 | static struct omap_hwmod_irq_info am33xx_dcan0_irqs[] = { | ||
696 | { .name = "d_can_ms", .irq = 52 + OMAP_INTC_START, }, | ||
697 | { .name = "d_can_mo", .irq = 53 + OMAP_INTC_START, }, | ||
698 | { .irq = -1 }, | ||
699 | }; | ||
700 | |||
701 | static struct omap_hwmod am33xx_dcan0_hwmod = { | ||
702 | .name = "d_can0", | ||
703 | .class = &am33xx_dcan_hwmod_class, | ||
704 | .clkdm_name = "l4ls_clkdm", | ||
705 | .mpu_irqs = am33xx_dcan0_irqs, | ||
706 | .main_clk = "dcan0_fck", | ||
707 | .prcm = { | ||
708 | .omap4 = { | ||
709 | .clkctrl_offs = AM33XX_CM_PER_DCAN0_CLKCTRL_OFFSET, | ||
710 | .modulemode = MODULEMODE_SWCTRL, | ||
711 | }, | ||
712 | }, | ||
713 | }; | ||
714 | |||
715 | /* dcan1 */ | ||
716 | static struct omap_hwmod_irq_info am33xx_dcan1_irqs[] = { | ||
717 | { .name = "d_can_ms", .irq = 55 + OMAP_INTC_START, }, | ||
718 | { .name = "d_can_mo", .irq = 56 + OMAP_INTC_START, }, | ||
719 | { .irq = -1 }, | ||
720 | }; | ||
721 | static struct omap_hwmod am33xx_dcan1_hwmod = { | ||
722 | .name = "d_can1", | ||
723 | .class = &am33xx_dcan_hwmod_class, | ||
724 | .clkdm_name = "l4ls_clkdm", | ||
725 | .mpu_irqs = am33xx_dcan1_irqs, | ||
726 | .main_clk = "dcan1_fck", | ||
727 | .prcm = { | ||
728 | .omap4 = { | ||
729 | .clkctrl_offs = AM33XX_CM_PER_DCAN1_CLKCTRL_OFFSET, | ||
730 | .modulemode = MODULEMODE_SWCTRL, | ||
731 | }, | ||
732 | }, | ||
733 | }; | ||
734 | |||
735 | /* elm */ | ||
736 | static struct omap_hwmod_class_sysconfig am33xx_elm_sysc = { | ||
737 | .rev_offs = 0x0000, | ||
738 | .sysc_offs = 0x0010, | ||
739 | .syss_offs = 0x0014, | ||
740 | .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE | | ||
741 | SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE | | ||
742 | SYSS_HAS_RESET_STATUS), | ||
743 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
744 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
745 | }; | ||
746 | |||
747 | static struct omap_hwmod_class am33xx_elm_hwmod_class = { | ||
748 | .name = "elm", | ||
749 | .sysc = &am33xx_elm_sysc, | ||
750 | }; | ||
751 | |||
752 | static struct omap_hwmod_irq_info am33xx_elm_irqs[] = { | ||
753 | { .irq = 4 + OMAP_INTC_START, }, | ||
754 | { .irq = -1 }, | ||
755 | }; | ||
756 | |||
757 | static struct omap_hwmod am33xx_elm_hwmod = { | ||
758 | .name = "elm", | ||
759 | .class = &am33xx_elm_hwmod_class, | ||
760 | .clkdm_name = "l4ls_clkdm", | ||
761 | .mpu_irqs = am33xx_elm_irqs, | ||
762 | .main_clk = "l4ls_gclk", | ||
763 | .prcm = { | ||
764 | .omap4 = { | ||
765 | .clkctrl_offs = AM33XX_CM_PER_ELM_CLKCTRL_OFFSET, | ||
766 | .modulemode = MODULEMODE_SWCTRL, | ||
767 | }, | ||
768 | }, | ||
769 | }; | ||
770 | |||
771 | /* | ||
772 | * 'epwmss' class: ecap0,1,2, ehrpwm0,1,2 | ||
773 | */ | ||
774 | static struct omap_hwmod_class_sysconfig am33xx_epwmss_sysc = { | ||
775 | .rev_offs = 0x0, | ||
776 | .sysc_offs = 0x4, | ||
777 | .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_MIDLEMODE), | ||
778 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART | | ||
779 | SIDLE_SMART_WKUP | MSTANDBY_FORCE | MSTANDBY_NO | | ||
780 | MSTANDBY_SMART | MSTANDBY_SMART_WKUP), | ||
781 | .sysc_fields = &omap_hwmod_sysc_type2, | ||
782 | }; | ||
783 | |||
784 | static struct omap_hwmod_class am33xx_epwmss_hwmod_class = { | ||
785 | .name = "epwmss", | ||
786 | .sysc = &am33xx_epwmss_sysc, | ||
787 | }; | ||
788 | |||
789 | /* ehrpwm0 */ | ||
790 | static struct omap_hwmod_irq_info am33xx_ehrpwm0_irqs[] = { | ||
791 | { .name = "int", .irq = 86 + OMAP_INTC_START, }, | ||
792 | { .name = "tzint", .irq = 58 + OMAP_INTC_START, }, | ||
793 | { .irq = -1 }, | ||
794 | }; | ||
795 | |||
796 | static struct omap_hwmod am33xx_ehrpwm0_hwmod = { | ||
797 | .name = "ehrpwm0", | ||
798 | .class = &am33xx_epwmss_hwmod_class, | ||
799 | .clkdm_name = "l4ls_clkdm", | ||
800 | .mpu_irqs = am33xx_ehrpwm0_irqs, | ||
801 | .main_clk = "l4ls_gclk", | ||
802 | .prcm = { | ||
803 | .omap4 = { | ||
804 | .clkctrl_offs = AM33XX_CM_PER_EPWMSS0_CLKCTRL_OFFSET, | ||
805 | .modulemode = MODULEMODE_SWCTRL, | ||
806 | }, | ||
807 | }, | ||
808 | }; | ||
809 | |||
810 | /* ehrpwm1 */ | ||
811 | static struct omap_hwmod_irq_info am33xx_ehrpwm1_irqs[] = { | ||
812 | { .name = "int", .irq = 87 + OMAP_INTC_START, }, | ||
813 | { .name = "tzint", .irq = 59 + OMAP_INTC_START, }, | ||
814 | { .irq = -1 }, | ||
815 | }; | ||
816 | |||
817 | static struct omap_hwmod am33xx_ehrpwm1_hwmod = { | ||
818 | .name = "ehrpwm1", | ||
819 | .class = &am33xx_epwmss_hwmod_class, | ||
820 | .clkdm_name = "l4ls_clkdm", | ||
821 | .mpu_irqs = am33xx_ehrpwm1_irqs, | ||
822 | .main_clk = "l4ls_gclk", | ||
823 | .prcm = { | ||
824 | .omap4 = { | ||
825 | .clkctrl_offs = AM33XX_CM_PER_EPWMSS1_CLKCTRL_OFFSET, | ||
826 | .modulemode = MODULEMODE_SWCTRL, | ||
827 | }, | ||
828 | }, | ||
829 | }; | ||
830 | |||
831 | /* ehrpwm2 */ | ||
832 | static struct omap_hwmod_irq_info am33xx_ehrpwm2_irqs[] = { | ||
833 | { .name = "int", .irq = 39 + OMAP_INTC_START, }, | ||
834 | { .name = "tzint", .irq = 60 + OMAP_INTC_START, }, | ||
835 | { .irq = -1 }, | ||
836 | }; | ||
837 | |||
838 | static struct omap_hwmod am33xx_ehrpwm2_hwmod = { | ||
839 | .name = "ehrpwm2", | ||
840 | .class = &am33xx_epwmss_hwmod_class, | ||
841 | .clkdm_name = "l4ls_clkdm", | ||
842 | .mpu_irqs = am33xx_ehrpwm2_irqs, | ||
843 | .main_clk = "l4ls_gclk", | ||
844 | .prcm = { | ||
845 | .omap4 = { | ||
846 | .clkctrl_offs = AM33XX_CM_PER_EPWMSS2_CLKCTRL_OFFSET, | ||
847 | .modulemode = MODULEMODE_SWCTRL, | ||
848 | }, | ||
849 | }, | ||
850 | }; | ||
851 | |||
852 | /* ecap0 */ | ||
853 | static struct omap_hwmod_irq_info am33xx_ecap0_irqs[] = { | ||
854 | { .irq = 31 + OMAP_INTC_START, }, | ||
855 | { .irq = -1 }, | ||
856 | }; | ||
857 | |||
858 | static struct omap_hwmod am33xx_ecap0_hwmod = { | ||
859 | .name = "ecap0", | ||
860 | .class = &am33xx_epwmss_hwmod_class, | ||
861 | .clkdm_name = "l4ls_clkdm", | ||
862 | .mpu_irqs = am33xx_ecap0_irqs, | ||
863 | .main_clk = "l4ls_gclk", | ||
864 | .prcm = { | ||
865 | .omap4 = { | ||
866 | .clkctrl_offs = AM33XX_CM_PER_EPWMSS0_CLKCTRL_OFFSET, | ||
867 | .modulemode = MODULEMODE_SWCTRL, | ||
868 | }, | ||
869 | }, | ||
870 | }; | ||
871 | |||
872 | /* ecap1 */ | ||
873 | static struct omap_hwmod_irq_info am33xx_ecap1_irqs[] = { | ||
874 | { .irq = 47 + OMAP_INTC_START, }, | ||
875 | { .irq = -1 }, | ||
876 | }; | ||
877 | |||
878 | static struct omap_hwmod am33xx_ecap1_hwmod = { | ||
879 | .name = "ecap1", | ||
880 | .class = &am33xx_epwmss_hwmod_class, | ||
881 | .clkdm_name = "l4ls_clkdm", | ||
882 | .mpu_irqs = am33xx_ecap1_irqs, | ||
883 | .main_clk = "l4ls_gclk", | ||
884 | .prcm = { | ||
885 | .omap4 = { | ||
886 | .clkctrl_offs = AM33XX_CM_PER_EPWMSS1_CLKCTRL_OFFSET, | ||
887 | .modulemode = MODULEMODE_SWCTRL, | ||
888 | }, | ||
889 | }, | ||
890 | }; | ||
891 | |||
892 | /* ecap2 */ | ||
893 | static struct omap_hwmod_irq_info am33xx_ecap2_irqs[] = { | ||
894 | { .irq = 61 + OMAP_INTC_START, }, | ||
895 | { .irq = -1 }, | ||
896 | }; | ||
897 | |||
898 | static struct omap_hwmod am33xx_ecap2_hwmod = { | ||
899 | .name = "ecap2", | ||
900 | .mpu_irqs = am33xx_ecap2_irqs, | ||
901 | .class = &am33xx_epwmss_hwmod_class, | ||
902 | .clkdm_name = "l4ls_clkdm", | ||
903 | .main_clk = "l4ls_gclk", | ||
904 | .prcm = { | ||
905 | .omap4 = { | ||
906 | .clkctrl_offs = AM33XX_CM_PER_EPWMSS2_CLKCTRL_OFFSET, | ||
907 | .modulemode = MODULEMODE_SWCTRL, | ||
908 | }, | ||
909 | }, | ||
910 | }; | ||
911 | |||
912 | /* | ||
913 | * 'gpio' class: for gpio 0,1,2,3 | ||
914 | */ | ||
915 | static struct omap_hwmod_class_sysconfig am33xx_gpio_sysc = { | ||
916 | .rev_offs = 0x0000, | ||
917 | .sysc_offs = 0x0010, | ||
918 | .syss_offs = 0x0114, | ||
919 | .sysc_flags = (SYSC_HAS_AUTOIDLE | SYSC_HAS_ENAWAKEUP | | ||
920 | SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET | | ||
921 | SYSS_HAS_RESET_STATUS), | ||
922 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART | | ||
923 | SIDLE_SMART_WKUP), | ||
924 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
925 | }; | ||
926 | |||
927 | static struct omap_hwmod_class am33xx_gpio_hwmod_class = { | ||
928 | .name = "gpio", | ||
929 | .sysc = &am33xx_gpio_sysc, | ||
930 | .rev = 2, | ||
931 | }; | ||
932 | |||
933 | static struct omap_gpio_dev_attr gpio_dev_attr = { | ||
934 | .bank_width = 32, | ||
935 | .dbck_flag = true, | ||
936 | }; | ||
937 | |||
938 | /* gpio0 */ | ||
939 | static struct omap_hwmod_opt_clk gpio0_opt_clks[] = { | ||
940 | { .role = "dbclk", .clk = "gpio0_dbclk" }, | ||
941 | }; | ||
942 | |||
943 | static struct omap_hwmod_irq_info am33xx_gpio0_irqs[] = { | ||
944 | { .irq = 96 + OMAP_INTC_START, }, | ||
945 | { .irq = -1 }, | ||
946 | }; | ||
947 | |||
948 | static struct omap_hwmod am33xx_gpio0_hwmod = { | ||
949 | .name = "gpio1", | ||
950 | .class = &am33xx_gpio_hwmod_class, | ||
951 | .clkdm_name = "l4_wkup_clkdm", | ||
952 | .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET, | ||
953 | .mpu_irqs = am33xx_gpio0_irqs, | ||
954 | .main_clk = "dpll_core_m4_div2_ck", | ||
955 | .prcm = { | ||
956 | .omap4 = { | ||
957 | .clkctrl_offs = AM33XX_CM_WKUP_GPIO0_CLKCTRL_OFFSET, | ||
958 | .modulemode = MODULEMODE_SWCTRL, | ||
959 | }, | ||
960 | }, | ||
961 | .opt_clks = gpio0_opt_clks, | ||
962 | .opt_clks_cnt = ARRAY_SIZE(gpio0_opt_clks), | ||
963 | .dev_attr = &gpio_dev_attr, | ||
964 | }; | ||
965 | |||
966 | /* gpio1 */ | ||
967 | static struct omap_hwmod_irq_info am33xx_gpio1_irqs[] = { | ||
968 | { .irq = 98 + OMAP_INTC_START, }, | ||
969 | { .irq = -1 }, | ||
970 | }; | ||
971 | |||
972 | static struct omap_hwmod_opt_clk gpio1_opt_clks[] = { | ||
973 | { .role = "dbclk", .clk = "gpio1_dbclk" }, | ||
974 | }; | ||
975 | |||
976 | static struct omap_hwmod am33xx_gpio1_hwmod = { | ||
977 | .name = "gpio2", | ||
978 | .class = &am33xx_gpio_hwmod_class, | ||
979 | .clkdm_name = "l4ls_clkdm", | ||
980 | .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET, | ||
981 | .mpu_irqs = am33xx_gpio1_irqs, | ||
982 | .main_clk = "l4ls_gclk", | ||
983 | .prcm = { | ||
984 | .omap4 = { | ||
985 | .clkctrl_offs = AM33XX_CM_PER_GPIO1_CLKCTRL_OFFSET, | ||
986 | .modulemode = MODULEMODE_SWCTRL, | ||
987 | }, | ||
988 | }, | ||
989 | .opt_clks = gpio1_opt_clks, | ||
990 | .opt_clks_cnt = ARRAY_SIZE(gpio1_opt_clks), | ||
991 | .dev_attr = &gpio_dev_attr, | ||
992 | }; | ||
993 | |||
994 | /* gpio2 */ | ||
995 | static struct omap_hwmod_irq_info am33xx_gpio2_irqs[] = { | ||
996 | { .irq = 32 + OMAP_INTC_START, }, | ||
997 | { .irq = -1 }, | ||
998 | }; | ||
999 | |||
1000 | static struct omap_hwmod_opt_clk gpio2_opt_clks[] = { | ||
1001 | { .role = "dbclk", .clk = "gpio2_dbclk" }, | ||
1002 | }; | ||
1003 | |||
1004 | static struct omap_hwmod am33xx_gpio2_hwmod = { | ||
1005 | .name = "gpio3", | ||
1006 | .class = &am33xx_gpio_hwmod_class, | ||
1007 | .clkdm_name = "l4ls_clkdm", | ||
1008 | .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET, | ||
1009 | .mpu_irqs = am33xx_gpio2_irqs, | ||
1010 | .main_clk = "l4ls_gclk", | ||
1011 | .prcm = { | ||
1012 | .omap4 = { | ||
1013 | .clkctrl_offs = AM33XX_CM_PER_GPIO2_CLKCTRL_OFFSET, | ||
1014 | .modulemode = MODULEMODE_SWCTRL, | ||
1015 | }, | ||
1016 | }, | ||
1017 | .opt_clks = gpio2_opt_clks, | ||
1018 | .opt_clks_cnt = ARRAY_SIZE(gpio2_opt_clks), | ||
1019 | .dev_attr = &gpio_dev_attr, | ||
1020 | }; | ||
1021 | |||
1022 | /* gpio3 */ | ||
1023 | static struct omap_hwmod_irq_info am33xx_gpio3_irqs[] = { | ||
1024 | { .irq = 62 + OMAP_INTC_START, }, | ||
1025 | { .irq = -1 }, | ||
1026 | }; | ||
1027 | |||
1028 | static struct omap_hwmod_opt_clk gpio3_opt_clks[] = { | ||
1029 | { .role = "dbclk", .clk = "gpio3_dbclk" }, | ||
1030 | }; | ||
1031 | |||
1032 | static struct omap_hwmod am33xx_gpio3_hwmod = { | ||
1033 | .name = "gpio4", | ||
1034 | .class = &am33xx_gpio_hwmod_class, | ||
1035 | .clkdm_name = "l4ls_clkdm", | ||
1036 | .flags = HWMOD_CONTROL_OPT_CLKS_IN_RESET, | ||
1037 | .mpu_irqs = am33xx_gpio3_irqs, | ||
1038 | .main_clk = "l4ls_gclk", | ||
1039 | .prcm = { | ||
1040 | .omap4 = { | ||
1041 | .clkctrl_offs = AM33XX_CM_PER_GPIO3_CLKCTRL_OFFSET, | ||
1042 | .modulemode = MODULEMODE_SWCTRL, | ||
1043 | }, | ||
1044 | }, | ||
1045 | .opt_clks = gpio3_opt_clks, | ||
1046 | .opt_clks_cnt = ARRAY_SIZE(gpio3_opt_clks), | ||
1047 | .dev_attr = &gpio_dev_attr, | ||
1048 | }; | ||
1049 | |||
1050 | /* gpmc */ | ||
1051 | static struct omap_hwmod_class_sysconfig gpmc_sysc = { | ||
1052 | .rev_offs = 0x0, | ||
1053 | .sysc_offs = 0x10, | ||
1054 | .syss_offs = 0x14, | ||
1055 | .sysc_flags = (SYSC_HAS_AUTOIDLE | SYSC_HAS_SIDLEMODE | | ||
1056 | SYSC_HAS_SOFTRESET | SYSS_HAS_RESET_STATUS), | ||
1057 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
1058 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
1059 | }; | ||
1060 | |||
1061 | static struct omap_hwmod_class am33xx_gpmc_hwmod_class = { | ||
1062 | .name = "gpmc", | ||
1063 | .sysc = &gpmc_sysc, | ||
1064 | }; | ||
1065 | |||
1066 | static struct omap_hwmod_irq_info am33xx_gpmc_irqs[] = { | ||
1067 | { .irq = 100 + OMAP_INTC_START, }, | ||
1068 | { .irq = -1 }, | ||
1069 | }; | ||
1070 | |||
1071 | static struct omap_hwmod am33xx_gpmc_hwmod = { | ||
1072 | .name = "gpmc", | ||
1073 | .class = &am33xx_gpmc_hwmod_class, | ||
1074 | .clkdm_name = "l3s_clkdm", | ||
1075 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET), | ||
1076 | .mpu_irqs = am33xx_gpmc_irqs, | ||
1077 | .main_clk = "l3s_gclk", | ||
1078 | .prcm = { | ||
1079 | .omap4 = { | ||
1080 | .clkctrl_offs = AM33XX_CM_PER_GPMC_CLKCTRL_OFFSET, | ||
1081 | .modulemode = MODULEMODE_SWCTRL, | ||
1082 | }, | ||
1083 | }, | ||
1084 | }; | ||
1085 | |||
1086 | /* 'i2c' class */ | ||
1087 | static struct omap_hwmod_class_sysconfig am33xx_i2c_sysc = { | ||
1088 | .sysc_offs = 0x0010, | ||
1089 | .syss_offs = 0x0090, | ||
1090 | .sysc_flags = (SYSC_HAS_AUTOIDLE | SYSC_HAS_CLOCKACTIVITY | | ||
1091 | SYSC_HAS_ENAWAKEUP | SYSC_HAS_SIDLEMODE | | ||
1092 | SYSC_HAS_SOFTRESET | SYSS_HAS_RESET_STATUS), | ||
1093 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART | | ||
1094 | SIDLE_SMART_WKUP), | ||
1095 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
1096 | }; | ||
1097 | |||
1098 | static struct omap_hwmod_class i2c_class = { | ||
1099 | .name = "i2c", | ||
1100 | .sysc = &am33xx_i2c_sysc, | ||
1101 | .rev = OMAP_I2C_IP_VERSION_2, | ||
1102 | .reset = &omap_i2c_reset, | ||
1103 | }; | ||
1104 | |||
1105 | static struct omap_i2c_dev_attr i2c_dev_attr = { | ||
1106 | .flags = OMAP_I2C_FLAG_BUS_SHIFT_NONE | | ||
1107 | OMAP_I2C_FLAG_RESET_REGS_POSTIDLE, | ||
1108 | }; | ||
1109 | |||
1110 | /* i2c1 */ | ||
1111 | static struct omap_hwmod_irq_info i2c1_mpu_irqs[] = { | ||
1112 | { .irq = 70 + OMAP_INTC_START, }, | ||
1113 | { .irq = -1 }, | ||
1114 | }; | ||
1115 | |||
1116 | static struct omap_hwmod_dma_info i2c1_edma_reqs[] = { | ||
1117 | { .name = "tx", .dma_req = 0, }, | ||
1118 | { .name = "rx", .dma_req = 0, }, | ||
1119 | { .dma_req = -1 } | ||
1120 | }; | ||
1121 | |||
1122 | static struct omap_hwmod am33xx_i2c1_hwmod = { | ||
1123 | .name = "i2c1", | ||
1124 | .class = &i2c_class, | ||
1125 | .clkdm_name = "l4_wkup_clkdm", | ||
1126 | .mpu_irqs = i2c1_mpu_irqs, | ||
1127 | .sdma_reqs = i2c1_edma_reqs, | ||
1128 | .flags = HWMOD_16BIT_REG | HWMOD_SET_DEFAULT_CLOCKACT, | ||
1129 | .main_clk = "dpll_per_m2_div4_wkupdm_ck", | ||
1130 | .prcm = { | ||
1131 | .omap4 = { | ||
1132 | .clkctrl_offs = AM33XX_CM_WKUP_I2C0_CLKCTRL_OFFSET, | ||
1133 | .modulemode = MODULEMODE_SWCTRL, | ||
1134 | }, | ||
1135 | }, | ||
1136 | .dev_attr = &i2c_dev_attr, | ||
1137 | }; | ||
1138 | |||
1139 | /* i2c1 */ | ||
1140 | static struct omap_hwmod_irq_info i2c2_mpu_irqs[] = { | ||
1141 | { .irq = 71 + OMAP_INTC_START, }, | ||
1142 | { .irq = -1 }, | ||
1143 | }; | ||
1144 | |||
1145 | static struct omap_hwmod_dma_info i2c2_edma_reqs[] = { | ||
1146 | { .name = "tx", .dma_req = 0, }, | ||
1147 | { .name = "rx", .dma_req = 0, }, | ||
1148 | { .dma_req = -1 } | ||
1149 | }; | ||
1150 | |||
1151 | static struct omap_hwmod am33xx_i2c2_hwmod = { | ||
1152 | .name = "i2c2", | ||
1153 | .class = &i2c_class, | ||
1154 | .clkdm_name = "l4ls_clkdm", | ||
1155 | .mpu_irqs = i2c2_mpu_irqs, | ||
1156 | .sdma_reqs = i2c2_edma_reqs, | ||
1157 | .flags = HWMOD_16BIT_REG | HWMOD_SET_DEFAULT_CLOCKACT, | ||
1158 | .main_clk = "dpll_per_m2_div4_ck", | ||
1159 | .prcm = { | ||
1160 | .omap4 = { | ||
1161 | .clkctrl_offs = AM33XX_CM_PER_I2C1_CLKCTRL_OFFSET, | ||
1162 | .modulemode = MODULEMODE_SWCTRL, | ||
1163 | }, | ||
1164 | }, | ||
1165 | .dev_attr = &i2c_dev_attr, | ||
1166 | }; | ||
1167 | |||
1168 | /* i2c3 */ | ||
1169 | static struct omap_hwmod_dma_info i2c3_edma_reqs[] = { | ||
1170 | { .name = "tx", .dma_req = 0, }, | ||
1171 | { .name = "rx", .dma_req = 0, }, | ||
1172 | { .dma_req = -1 } | ||
1173 | }; | ||
1174 | |||
1175 | static struct omap_hwmod_irq_info i2c3_mpu_irqs[] = { | ||
1176 | { .irq = 30 + OMAP_INTC_START, }, | ||
1177 | { .irq = -1 }, | ||
1178 | }; | ||
1179 | |||
1180 | static struct omap_hwmod am33xx_i2c3_hwmod = { | ||
1181 | .name = "i2c3", | ||
1182 | .class = &i2c_class, | ||
1183 | .clkdm_name = "l4ls_clkdm", | ||
1184 | .mpu_irqs = i2c3_mpu_irqs, | ||
1185 | .sdma_reqs = i2c3_edma_reqs, | ||
1186 | .flags = HWMOD_16BIT_REG | HWMOD_SET_DEFAULT_CLOCKACT, | ||
1187 | .main_clk = "dpll_per_m2_div4_ck", | ||
1188 | .prcm = { | ||
1189 | .omap4 = { | ||
1190 | .clkctrl_offs = AM33XX_CM_PER_I2C2_CLKCTRL_OFFSET, | ||
1191 | .modulemode = MODULEMODE_SWCTRL, | ||
1192 | }, | ||
1193 | }, | ||
1194 | .dev_attr = &i2c_dev_attr, | ||
1195 | }; | ||
1196 | |||
1197 | |||
1198 | /* lcdc */ | ||
1199 | static struct omap_hwmod_class_sysconfig lcdc_sysc = { | ||
1200 | .rev_offs = 0x0, | ||
1201 | .sysc_offs = 0x54, | ||
1202 | .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_MIDLEMODE), | ||
1203 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
1204 | .sysc_fields = &omap_hwmod_sysc_type2, | ||
1205 | }; | ||
1206 | |||
1207 | static struct omap_hwmod_class am33xx_lcdc_hwmod_class = { | ||
1208 | .name = "lcdc", | ||
1209 | .sysc = &lcdc_sysc, | ||
1210 | }; | ||
1211 | |||
1212 | static struct omap_hwmod_irq_info am33xx_lcdc_irqs[] = { | ||
1213 | { .irq = 36 + OMAP_INTC_START, }, | ||
1214 | { .irq = -1 }, | ||
1215 | }; | ||
1216 | |||
1217 | static struct omap_hwmod am33xx_lcdc_hwmod = { | ||
1218 | .name = "lcdc", | ||
1219 | .class = &am33xx_lcdc_hwmod_class, | ||
1220 | .clkdm_name = "lcdc_clkdm", | ||
1221 | .mpu_irqs = am33xx_lcdc_irqs, | ||
1222 | .flags = HWMOD_SWSUP_SIDLE | HWMOD_SWSUP_MSTANDBY, | ||
1223 | .main_clk = "lcd_gclk", | ||
1224 | .prcm = { | ||
1225 | .omap4 = { | ||
1226 | .clkctrl_offs = AM33XX_CM_PER_LCDC_CLKCTRL_OFFSET, | ||
1227 | .modulemode = MODULEMODE_SWCTRL, | ||
1228 | }, | ||
1229 | }, | ||
1230 | }; | ||
1231 | |||
1232 | /* | ||
1233 | * 'mailbox' class | ||
1234 | * mailbox module allowing communication between the on-chip processors using a | ||
1235 | * queued mailbox-interrupt mechanism. | ||
1236 | */ | ||
1237 | static struct omap_hwmod_class_sysconfig am33xx_mailbox_sysc = { | ||
1238 | .rev_offs = 0x0000, | ||
1239 | .sysc_offs = 0x0010, | ||
1240 | .sysc_flags = (SYSC_HAS_RESET_STATUS | SYSC_HAS_SIDLEMODE | | ||
1241 | SYSC_HAS_SOFTRESET), | ||
1242 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
1243 | .sysc_fields = &omap_hwmod_sysc_type2, | ||
1244 | }; | ||
1245 | |||
1246 | static struct omap_hwmod_class am33xx_mailbox_hwmod_class = { | ||
1247 | .name = "mailbox", | ||
1248 | .sysc = &am33xx_mailbox_sysc, | ||
1249 | }; | ||
1250 | |||
1251 | static struct omap_hwmod_irq_info am33xx_mailbox_irqs[] = { | ||
1252 | { .irq = 77 + OMAP_INTC_START, }, | ||
1253 | { .irq = -1 }, | ||
1254 | }; | ||
1255 | |||
1256 | static struct omap_hwmod am33xx_mailbox_hwmod = { | ||
1257 | .name = "mailbox", | ||
1258 | .class = &am33xx_mailbox_hwmod_class, | ||
1259 | .clkdm_name = "l4ls_clkdm", | ||
1260 | .mpu_irqs = am33xx_mailbox_irqs, | ||
1261 | .main_clk = "l4ls_gclk", | ||
1262 | .prcm = { | ||
1263 | .omap4 = { | ||
1264 | .clkctrl_offs = AM33XX_CM_PER_MAILBOX0_CLKCTRL_OFFSET, | ||
1265 | .modulemode = MODULEMODE_SWCTRL, | ||
1266 | }, | ||
1267 | }, | ||
1268 | }; | ||
1269 | |||
1270 | /* | ||
1271 | * 'mcasp' class | ||
1272 | */ | ||
1273 | static struct omap_hwmod_class_sysconfig am33xx_mcasp_sysc = { | ||
1274 | .rev_offs = 0x0, | ||
1275 | .sysc_offs = 0x4, | ||
1276 | .sysc_flags = SYSC_HAS_SIDLEMODE, | ||
1277 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
1278 | .sysc_fields = &omap_hwmod_sysc_type3, | ||
1279 | }; | ||
1280 | |||
1281 | static struct omap_hwmod_class am33xx_mcasp_hwmod_class = { | ||
1282 | .name = "mcasp", | ||
1283 | .sysc = &am33xx_mcasp_sysc, | ||
1284 | }; | ||
1285 | |||
1286 | /* mcasp0 */ | ||
1287 | static struct omap_hwmod_irq_info am33xx_mcasp0_irqs[] = { | ||
1288 | { .name = "ax", .irq = 80 + OMAP_INTC_START, }, | ||
1289 | { .name = "ar", .irq = 81 + OMAP_INTC_START, }, | ||
1290 | { .irq = -1 }, | ||
1291 | }; | ||
1292 | |||
1293 | static struct omap_hwmod_dma_info am33xx_mcasp0_edma_reqs[] = { | ||
1294 | { .name = "tx", .dma_req = 8, }, | ||
1295 | { .name = "rx", .dma_req = 9, }, | ||
1296 | { .dma_req = -1 } | ||
1297 | }; | ||
1298 | |||
1299 | static struct omap_hwmod am33xx_mcasp0_hwmod = { | ||
1300 | .name = "mcasp0", | ||
1301 | .class = &am33xx_mcasp_hwmod_class, | ||
1302 | .clkdm_name = "l3s_clkdm", | ||
1303 | .mpu_irqs = am33xx_mcasp0_irqs, | ||
1304 | .sdma_reqs = am33xx_mcasp0_edma_reqs, | ||
1305 | .main_clk = "mcasp0_fck", | ||
1306 | .prcm = { | ||
1307 | .omap4 = { | ||
1308 | .clkctrl_offs = AM33XX_CM_PER_MCASP0_CLKCTRL_OFFSET, | ||
1309 | .modulemode = MODULEMODE_SWCTRL, | ||
1310 | }, | ||
1311 | }, | ||
1312 | }; | ||
1313 | |||
1314 | /* mcasp1 */ | ||
1315 | static struct omap_hwmod_irq_info am33xx_mcasp1_irqs[] = { | ||
1316 | { .name = "ax", .irq = 82 + OMAP_INTC_START, }, | ||
1317 | { .name = "ar", .irq = 83 + OMAP_INTC_START, }, | ||
1318 | { .irq = -1 }, | ||
1319 | }; | ||
1320 | |||
1321 | static struct omap_hwmod_dma_info am33xx_mcasp1_edma_reqs[] = { | ||
1322 | { .name = "tx", .dma_req = 10, }, | ||
1323 | { .name = "rx", .dma_req = 11, }, | ||
1324 | { .dma_req = -1 } | ||
1325 | }; | ||
1326 | |||
1327 | static struct omap_hwmod am33xx_mcasp1_hwmod = { | ||
1328 | .name = "mcasp1", | ||
1329 | .class = &am33xx_mcasp_hwmod_class, | ||
1330 | .clkdm_name = "l3s_clkdm", | ||
1331 | .mpu_irqs = am33xx_mcasp1_irqs, | ||
1332 | .sdma_reqs = am33xx_mcasp1_edma_reqs, | ||
1333 | .main_clk = "mcasp1_fck", | ||
1334 | .prcm = { | ||
1335 | .omap4 = { | ||
1336 | .clkctrl_offs = AM33XX_CM_PER_MCASP1_CLKCTRL_OFFSET, | ||
1337 | .modulemode = MODULEMODE_SWCTRL, | ||
1338 | }, | ||
1339 | }, | ||
1340 | }; | ||
1341 | |||
1342 | /* 'mmc' class */ | ||
1343 | static struct omap_hwmod_class_sysconfig am33xx_mmc_sysc = { | ||
1344 | .rev_offs = 0x1fc, | ||
1345 | .sysc_offs = 0x10, | ||
1346 | .syss_offs = 0x14, | ||
1347 | .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE | | ||
1348 | SYSC_HAS_ENAWAKEUP | SYSC_HAS_SOFTRESET | | ||
1349 | SYSC_HAS_AUTOIDLE | SYSS_HAS_RESET_STATUS), | ||
1350 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
1351 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
1352 | }; | ||
1353 | |||
1354 | static struct omap_hwmod_class am33xx_mmc_hwmod_class = { | ||
1355 | .name = "mmc", | ||
1356 | .sysc = &am33xx_mmc_sysc, | ||
1357 | }; | ||
1358 | |||
1359 | /* mmc0 */ | ||
1360 | static struct omap_hwmod_irq_info am33xx_mmc0_irqs[] = { | ||
1361 | { .irq = 64 + OMAP_INTC_START, }, | ||
1362 | { .irq = -1 }, | ||
1363 | }; | ||
1364 | |||
1365 | static struct omap_hwmod_dma_info am33xx_mmc0_edma_reqs[] = { | ||
1366 | { .name = "tx", .dma_req = 24, }, | ||
1367 | { .name = "rx", .dma_req = 25, }, | ||
1368 | { .dma_req = -1 } | ||
1369 | }; | ||
1370 | |||
1371 | static struct omap_mmc_dev_attr am33xx_mmc0_dev_attr = { | ||
1372 | .flags = OMAP_HSMMC_SUPPORTS_DUAL_VOLT, | ||
1373 | }; | ||
1374 | |||
1375 | static struct omap_hwmod am33xx_mmc0_hwmod = { | ||
1376 | .name = "mmc1", | ||
1377 | .class = &am33xx_mmc_hwmod_class, | ||
1378 | .clkdm_name = "l4ls_clkdm", | ||
1379 | .mpu_irqs = am33xx_mmc0_irqs, | ||
1380 | .sdma_reqs = am33xx_mmc0_edma_reqs, | ||
1381 | .main_clk = "mmc_clk", | ||
1382 | .prcm = { | ||
1383 | .omap4 = { | ||
1384 | .clkctrl_offs = AM33XX_CM_PER_MMC0_CLKCTRL_OFFSET, | ||
1385 | .modulemode = MODULEMODE_SWCTRL, | ||
1386 | }, | ||
1387 | }, | ||
1388 | .dev_attr = &am33xx_mmc0_dev_attr, | ||
1389 | }; | ||
1390 | |||
1391 | /* mmc1 */ | ||
1392 | static struct omap_hwmod_irq_info am33xx_mmc1_irqs[] = { | ||
1393 | { .irq = 28 + OMAP_INTC_START, }, | ||
1394 | { .irq = -1 }, | ||
1395 | }; | ||
1396 | |||
1397 | static struct omap_hwmod_dma_info am33xx_mmc1_edma_reqs[] = { | ||
1398 | { .name = "tx", .dma_req = 2, }, | ||
1399 | { .name = "rx", .dma_req = 3, }, | ||
1400 | { .dma_req = -1 } | ||
1401 | }; | ||
1402 | |||
1403 | static struct omap_mmc_dev_attr am33xx_mmc1_dev_attr = { | ||
1404 | .flags = OMAP_HSMMC_SUPPORTS_DUAL_VOLT, | ||
1405 | }; | ||
1406 | |||
1407 | static struct omap_hwmod am33xx_mmc1_hwmod = { | ||
1408 | .name = "mmc2", | ||
1409 | .class = &am33xx_mmc_hwmod_class, | ||
1410 | .clkdm_name = "l4ls_clkdm", | ||
1411 | .mpu_irqs = am33xx_mmc1_irqs, | ||
1412 | .sdma_reqs = am33xx_mmc1_edma_reqs, | ||
1413 | .main_clk = "mmc_clk", | ||
1414 | .prcm = { | ||
1415 | .omap4 = { | ||
1416 | .clkctrl_offs = AM33XX_CM_PER_MMC1_CLKCTRL_OFFSET, | ||
1417 | .modulemode = MODULEMODE_SWCTRL, | ||
1418 | }, | ||
1419 | }, | ||
1420 | .dev_attr = &am33xx_mmc1_dev_attr, | ||
1421 | }; | ||
1422 | |||
1423 | /* mmc2 */ | ||
1424 | static struct omap_hwmod_irq_info am33xx_mmc2_irqs[] = { | ||
1425 | { .irq = 29 + OMAP_INTC_START, }, | ||
1426 | { .irq = -1 }, | ||
1427 | }; | ||
1428 | |||
1429 | static struct omap_hwmod_dma_info am33xx_mmc2_edma_reqs[] = { | ||
1430 | { .name = "tx", .dma_req = 64, }, | ||
1431 | { .name = "rx", .dma_req = 65, }, | ||
1432 | { .dma_req = -1 } | ||
1433 | }; | ||
1434 | |||
1435 | static struct omap_mmc_dev_attr am33xx_mmc2_dev_attr = { | ||
1436 | .flags = OMAP_HSMMC_SUPPORTS_DUAL_VOLT, | ||
1437 | }; | ||
1438 | static struct omap_hwmod am33xx_mmc2_hwmod = { | ||
1439 | .name = "mmc3", | ||
1440 | .class = &am33xx_mmc_hwmod_class, | ||
1441 | .clkdm_name = "l3s_clkdm", | ||
1442 | .mpu_irqs = am33xx_mmc2_irqs, | ||
1443 | .sdma_reqs = am33xx_mmc2_edma_reqs, | ||
1444 | .main_clk = "mmc_clk", | ||
1445 | .prcm = { | ||
1446 | .omap4 = { | ||
1447 | .clkctrl_offs = AM33XX_CM_PER_MMC2_CLKCTRL_OFFSET, | ||
1448 | .modulemode = MODULEMODE_SWCTRL, | ||
1449 | }, | ||
1450 | }, | ||
1451 | .dev_attr = &am33xx_mmc2_dev_attr, | ||
1452 | }; | ||
1453 | |||
1454 | /* | ||
1455 | * 'rtc' class | ||
1456 | * rtc subsystem | ||
1457 | */ | ||
1458 | static struct omap_hwmod_class_sysconfig am33xx_rtc_sysc = { | ||
1459 | .rev_offs = 0x0074, | ||
1460 | .sysc_offs = 0x0078, | ||
1461 | .sysc_flags = SYSC_HAS_SIDLEMODE, | ||
1462 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | | ||
1463 | SIDLE_SMART | SIDLE_SMART_WKUP), | ||
1464 | .sysc_fields = &omap_hwmod_sysc_type3, | ||
1465 | }; | ||
1466 | |||
1467 | static struct omap_hwmod_class am33xx_rtc_hwmod_class = { | ||
1468 | .name = "rtc", | ||
1469 | .sysc = &am33xx_rtc_sysc, | ||
1470 | }; | ||
1471 | |||
1472 | static struct omap_hwmod_irq_info am33xx_rtc_irqs[] = { | ||
1473 | { .name = "rtcint", .irq = 75 + OMAP_INTC_START, }, | ||
1474 | { .name = "rtcalarmint", .irq = 76 + OMAP_INTC_START, }, | ||
1475 | { .irq = -1 }, | ||
1476 | }; | ||
1477 | |||
1478 | static struct omap_hwmod am33xx_rtc_hwmod = { | ||
1479 | .name = "rtc", | ||
1480 | .class = &am33xx_rtc_hwmod_class, | ||
1481 | .clkdm_name = "l4_rtc_clkdm", | ||
1482 | .mpu_irqs = am33xx_rtc_irqs, | ||
1483 | .main_clk = "clk_32768_ck", | ||
1484 | .prcm = { | ||
1485 | .omap4 = { | ||
1486 | .clkctrl_offs = AM33XX_CM_RTC_RTC_CLKCTRL_OFFSET, | ||
1487 | .modulemode = MODULEMODE_SWCTRL, | ||
1488 | }, | ||
1489 | }, | ||
1490 | }; | ||
1491 | |||
1492 | /* 'spi' class */ | ||
1493 | static struct omap_hwmod_class_sysconfig am33xx_mcspi_sysc = { | ||
1494 | .rev_offs = 0x0000, | ||
1495 | .sysc_offs = 0x0110, | ||
1496 | .syss_offs = 0x0114, | ||
1497 | .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE | | ||
1498 | SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE | | ||
1499 | SYSS_HAS_RESET_STATUS), | ||
1500 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
1501 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
1502 | }; | ||
1503 | |||
1504 | static struct omap_hwmod_class am33xx_spi_hwmod_class = { | ||
1505 | .name = "mcspi", | ||
1506 | .sysc = &am33xx_mcspi_sysc, | ||
1507 | .rev = OMAP4_MCSPI_REV, | ||
1508 | }; | ||
1509 | |||
1510 | /* spi0 */ | ||
1511 | static struct omap_hwmod_irq_info am33xx_spi0_irqs[] = { | ||
1512 | { .irq = 65 + OMAP_INTC_START, }, | ||
1513 | { .irq = -1 }, | ||
1514 | }; | ||
1515 | |||
1516 | static struct omap_hwmod_dma_info am33xx_mcspi0_edma_reqs[] = { | ||
1517 | { .name = "rx0", .dma_req = 17 }, | ||
1518 | { .name = "tx0", .dma_req = 16 }, | ||
1519 | { .name = "rx1", .dma_req = 19 }, | ||
1520 | { .name = "tx1", .dma_req = 18 }, | ||
1521 | { .dma_req = -1 } | ||
1522 | }; | ||
1523 | |||
1524 | static struct omap2_mcspi_dev_attr mcspi_attrib = { | ||
1525 | .num_chipselect = 2, | ||
1526 | }; | ||
1527 | static struct omap_hwmod am33xx_spi0_hwmod = { | ||
1528 | .name = "spi0", | ||
1529 | .class = &am33xx_spi_hwmod_class, | ||
1530 | .clkdm_name = "l4ls_clkdm", | ||
1531 | .mpu_irqs = am33xx_spi0_irqs, | ||
1532 | .sdma_reqs = am33xx_mcspi0_edma_reqs, | ||
1533 | .main_clk = "dpll_per_m2_div4_ck", | ||
1534 | .prcm = { | ||
1535 | .omap4 = { | ||
1536 | .clkctrl_offs = AM33XX_CM_PER_SPI0_CLKCTRL_OFFSET, | ||
1537 | .modulemode = MODULEMODE_SWCTRL, | ||
1538 | }, | ||
1539 | }, | ||
1540 | .dev_attr = &mcspi_attrib, | ||
1541 | }; | ||
1542 | |||
1543 | /* spi1 */ | ||
1544 | static struct omap_hwmod_irq_info am33xx_spi1_irqs[] = { | ||
1545 | { .irq = 125 + OMAP_INTC_START, }, | ||
1546 | { .irq = -1 }, | ||
1547 | }; | ||
1548 | |||
1549 | static struct omap_hwmod_dma_info am33xx_mcspi1_edma_reqs[] = { | ||
1550 | { .name = "rx0", .dma_req = 43 }, | ||
1551 | { .name = "tx0", .dma_req = 42 }, | ||
1552 | { .name = "rx1", .dma_req = 45 }, | ||
1553 | { .name = "tx1", .dma_req = 44 }, | ||
1554 | { .dma_req = -1 } | ||
1555 | }; | ||
1556 | |||
1557 | static struct omap_hwmod am33xx_spi1_hwmod = { | ||
1558 | .name = "spi1", | ||
1559 | .class = &am33xx_spi_hwmod_class, | ||
1560 | .clkdm_name = "l4ls_clkdm", | ||
1561 | .mpu_irqs = am33xx_spi1_irqs, | ||
1562 | .sdma_reqs = am33xx_mcspi1_edma_reqs, | ||
1563 | .main_clk = "dpll_per_m2_div4_ck", | ||
1564 | .prcm = { | ||
1565 | .omap4 = { | ||
1566 | .clkctrl_offs = AM33XX_CM_PER_SPI1_CLKCTRL_OFFSET, | ||
1567 | .modulemode = MODULEMODE_SWCTRL, | ||
1568 | }, | ||
1569 | }, | ||
1570 | .dev_attr = &mcspi_attrib, | ||
1571 | }; | ||
1572 | |||
1573 | /* | ||
1574 | * 'spinlock' class | ||
1575 | * spinlock provides hardware assistance for synchronizing the | ||
1576 | * processes running on multiple processors | ||
1577 | */ | ||
1578 | static struct omap_hwmod_class am33xx_spinlock_hwmod_class = { | ||
1579 | .name = "spinlock", | ||
1580 | }; | ||
1581 | |||
1582 | static struct omap_hwmod am33xx_spinlock_hwmod = { | ||
1583 | .name = "spinlock", | ||
1584 | .class = &am33xx_spinlock_hwmod_class, | ||
1585 | .clkdm_name = "l4ls_clkdm", | ||
1586 | .main_clk = "l4ls_gclk", | ||
1587 | .prcm = { | ||
1588 | .omap4 = { | ||
1589 | .clkctrl_offs = AM33XX_CM_PER_SPINLOCK_CLKCTRL_OFFSET, | ||
1590 | .modulemode = MODULEMODE_SWCTRL, | ||
1591 | }, | ||
1592 | }, | ||
1593 | }; | ||
1594 | |||
1595 | /* 'timer 2-7' class */ | ||
1596 | static struct omap_hwmod_class_sysconfig am33xx_timer_sysc = { | ||
1597 | .rev_offs = 0x0000, | ||
1598 | .sysc_offs = 0x0010, | ||
1599 | .syss_offs = 0x0014, | ||
1600 | .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET), | ||
1601 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART | | ||
1602 | SIDLE_SMART_WKUP), | ||
1603 | .sysc_fields = &omap_hwmod_sysc_type2, | ||
1604 | }; | ||
1605 | |||
1606 | static struct omap_hwmod_class am33xx_timer_hwmod_class = { | ||
1607 | .name = "timer", | ||
1608 | .sysc = &am33xx_timer_sysc, | ||
1609 | }; | ||
1610 | |||
1611 | /* timer1 1ms */ | ||
1612 | static struct omap_hwmod_class_sysconfig am33xx_timer1ms_sysc = { | ||
1613 | .rev_offs = 0x0000, | ||
1614 | .sysc_offs = 0x0010, | ||
1615 | .syss_offs = 0x0014, | ||
1616 | .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE | | ||
1617 | SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE | | ||
1618 | SYSS_HAS_RESET_STATUS), | ||
1619 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
1620 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
1621 | }; | ||
1622 | |||
1623 | static struct omap_hwmod_class am33xx_timer1ms_hwmod_class = { | ||
1624 | .name = "timer", | ||
1625 | .sysc = &am33xx_timer1ms_sysc, | ||
1626 | }; | ||
1627 | |||
1628 | static struct omap_hwmod_irq_info am33xx_timer1_irqs[] = { | ||
1629 | { .irq = 67 + OMAP_INTC_START, }, | ||
1630 | { .irq = -1 }, | ||
1631 | }; | ||
1632 | |||
1633 | static struct omap_hwmod am33xx_timer1_hwmod = { | ||
1634 | .name = "timer1", | ||
1635 | .class = &am33xx_timer1ms_hwmod_class, | ||
1636 | .clkdm_name = "l4_wkup_clkdm", | ||
1637 | .mpu_irqs = am33xx_timer1_irqs, | ||
1638 | .main_clk = "timer1_fck", | ||
1639 | .prcm = { | ||
1640 | .omap4 = { | ||
1641 | .clkctrl_offs = AM33XX_CM_WKUP_TIMER1_CLKCTRL_OFFSET, | ||
1642 | .modulemode = MODULEMODE_SWCTRL, | ||
1643 | }, | ||
1644 | }, | ||
1645 | }; | ||
1646 | |||
1647 | static struct omap_hwmod_irq_info am33xx_timer2_irqs[] = { | ||
1648 | { .irq = 68 + OMAP_INTC_START, }, | ||
1649 | { .irq = -1 }, | ||
1650 | }; | ||
1651 | |||
1652 | static struct omap_hwmod am33xx_timer2_hwmod = { | ||
1653 | .name = "timer2", | ||
1654 | .class = &am33xx_timer_hwmod_class, | ||
1655 | .clkdm_name = "l4ls_clkdm", | ||
1656 | .mpu_irqs = am33xx_timer2_irqs, | ||
1657 | .main_clk = "timer2_fck", | ||
1658 | .prcm = { | ||
1659 | .omap4 = { | ||
1660 | .clkctrl_offs = AM33XX_CM_PER_TIMER2_CLKCTRL_OFFSET, | ||
1661 | .modulemode = MODULEMODE_SWCTRL, | ||
1662 | }, | ||
1663 | }, | ||
1664 | }; | ||
1665 | |||
1666 | static struct omap_hwmod_irq_info am33xx_timer3_irqs[] = { | ||
1667 | { .irq = 69 + OMAP_INTC_START, }, | ||
1668 | { .irq = -1 }, | ||
1669 | }; | ||
1670 | |||
1671 | static struct omap_hwmod am33xx_timer3_hwmod = { | ||
1672 | .name = "timer3", | ||
1673 | .class = &am33xx_timer_hwmod_class, | ||
1674 | .clkdm_name = "l4ls_clkdm", | ||
1675 | .mpu_irqs = am33xx_timer3_irqs, | ||
1676 | .main_clk = "timer3_fck", | ||
1677 | .prcm = { | ||
1678 | .omap4 = { | ||
1679 | .clkctrl_offs = AM33XX_CM_PER_TIMER3_CLKCTRL_OFFSET, | ||
1680 | .modulemode = MODULEMODE_SWCTRL, | ||
1681 | }, | ||
1682 | }, | ||
1683 | }; | ||
1684 | |||
1685 | static struct omap_hwmod_irq_info am33xx_timer4_irqs[] = { | ||
1686 | { .irq = 92 + OMAP_INTC_START, }, | ||
1687 | { .irq = -1 }, | ||
1688 | }; | ||
1689 | |||
1690 | static struct omap_hwmod am33xx_timer4_hwmod = { | ||
1691 | .name = "timer4", | ||
1692 | .class = &am33xx_timer_hwmod_class, | ||
1693 | .clkdm_name = "l4ls_clkdm", | ||
1694 | .mpu_irqs = am33xx_timer4_irqs, | ||
1695 | .main_clk = "timer4_fck", | ||
1696 | .prcm = { | ||
1697 | .omap4 = { | ||
1698 | .clkctrl_offs = AM33XX_CM_PER_TIMER4_CLKCTRL_OFFSET, | ||
1699 | .modulemode = MODULEMODE_SWCTRL, | ||
1700 | }, | ||
1701 | }, | ||
1702 | }; | ||
1703 | |||
1704 | static struct omap_hwmod_irq_info am33xx_timer5_irqs[] = { | ||
1705 | { .irq = 93 + OMAP_INTC_START, }, | ||
1706 | { .irq = -1 }, | ||
1707 | }; | ||
1708 | |||
1709 | static struct omap_hwmod am33xx_timer5_hwmod = { | ||
1710 | .name = "timer5", | ||
1711 | .class = &am33xx_timer_hwmod_class, | ||
1712 | .clkdm_name = "l4ls_clkdm", | ||
1713 | .mpu_irqs = am33xx_timer5_irqs, | ||
1714 | .main_clk = "timer5_fck", | ||
1715 | .prcm = { | ||
1716 | .omap4 = { | ||
1717 | .clkctrl_offs = AM33XX_CM_PER_TIMER5_CLKCTRL_OFFSET, | ||
1718 | .modulemode = MODULEMODE_SWCTRL, | ||
1719 | }, | ||
1720 | }, | ||
1721 | }; | ||
1722 | |||
1723 | static struct omap_hwmod_irq_info am33xx_timer6_irqs[] = { | ||
1724 | { .irq = 94 + OMAP_INTC_START, }, | ||
1725 | { .irq = -1 }, | ||
1726 | }; | ||
1727 | |||
1728 | static struct omap_hwmod am33xx_timer6_hwmod = { | ||
1729 | .name = "timer6", | ||
1730 | .class = &am33xx_timer_hwmod_class, | ||
1731 | .clkdm_name = "l4ls_clkdm", | ||
1732 | .mpu_irqs = am33xx_timer6_irqs, | ||
1733 | .main_clk = "timer6_fck", | ||
1734 | .prcm = { | ||
1735 | .omap4 = { | ||
1736 | .clkctrl_offs = AM33XX_CM_PER_TIMER6_CLKCTRL_OFFSET, | ||
1737 | .modulemode = MODULEMODE_SWCTRL, | ||
1738 | }, | ||
1739 | }, | ||
1740 | }; | ||
1741 | |||
1742 | static struct omap_hwmod_irq_info am33xx_timer7_irqs[] = { | ||
1743 | { .irq = 95 + OMAP_INTC_START, }, | ||
1744 | { .irq = -1 }, | ||
1745 | }; | ||
1746 | |||
1747 | static struct omap_hwmod am33xx_timer7_hwmod = { | ||
1748 | .name = "timer7", | ||
1749 | .class = &am33xx_timer_hwmod_class, | ||
1750 | .clkdm_name = "l4ls_clkdm", | ||
1751 | .mpu_irqs = am33xx_timer7_irqs, | ||
1752 | .main_clk = "timer7_fck", | ||
1753 | .prcm = { | ||
1754 | .omap4 = { | ||
1755 | .clkctrl_offs = AM33XX_CM_PER_TIMER7_CLKCTRL_OFFSET, | ||
1756 | .modulemode = MODULEMODE_SWCTRL, | ||
1757 | }, | ||
1758 | }, | ||
1759 | }; | ||
1760 | |||
1761 | /* tpcc */ | ||
1762 | static struct omap_hwmod_class am33xx_tpcc_hwmod_class = { | ||
1763 | .name = "tpcc", | ||
1764 | }; | ||
1765 | |||
1766 | static struct omap_hwmod_irq_info am33xx_tpcc_irqs[] = { | ||
1767 | { .name = "edma0", .irq = 12 + OMAP_INTC_START, }, | ||
1768 | { .name = "edma0_mperr", .irq = 13 + OMAP_INTC_START, }, | ||
1769 | { .name = "edma0_err", .irq = 14 + OMAP_INTC_START, }, | ||
1770 | { .irq = -1 }, | ||
1771 | }; | ||
1772 | |||
1773 | static struct omap_hwmod am33xx_tpcc_hwmod = { | ||
1774 | .name = "tpcc", | ||
1775 | .class = &am33xx_tpcc_hwmod_class, | ||
1776 | .clkdm_name = "l3_clkdm", | ||
1777 | .mpu_irqs = am33xx_tpcc_irqs, | ||
1778 | .main_clk = "l3_gclk", | ||
1779 | .prcm = { | ||
1780 | .omap4 = { | ||
1781 | .clkctrl_offs = AM33XX_CM_PER_TPCC_CLKCTRL_OFFSET, | ||
1782 | .modulemode = MODULEMODE_SWCTRL, | ||
1783 | }, | ||
1784 | }, | ||
1785 | }; | ||
1786 | |||
1787 | static struct omap_hwmod_class_sysconfig am33xx_tptc_sysc = { | ||
1788 | .rev_offs = 0x0, | ||
1789 | .sysc_offs = 0x10, | ||
1790 | .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_SOFTRESET | | ||
1791 | SYSC_HAS_MIDLEMODE), | ||
1792 | .idlemodes = (SIDLE_FORCE | SIDLE_SMART | MSTANDBY_FORCE), | ||
1793 | .sysc_fields = &omap_hwmod_sysc_type2, | ||
1794 | }; | ||
1795 | |||
1796 | /* 'tptc' class */ | ||
1797 | static struct omap_hwmod_class am33xx_tptc_hwmod_class = { | ||
1798 | .name = "tptc", | ||
1799 | .sysc = &am33xx_tptc_sysc, | ||
1800 | }; | ||
1801 | |||
1802 | /* tptc0 */ | ||
1803 | static struct omap_hwmod_irq_info am33xx_tptc0_irqs[] = { | ||
1804 | { .irq = 112 + OMAP_INTC_START, }, | ||
1805 | { .irq = -1 }, | ||
1806 | }; | ||
1807 | |||
1808 | static struct omap_hwmod am33xx_tptc0_hwmod = { | ||
1809 | .name = "tptc0", | ||
1810 | .class = &am33xx_tptc_hwmod_class, | ||
1811 | .clkdm_name = "l3_clkdm", | ||
1812 | .mpu_irqs = am33xx_tptc0_irqs, | ||
1813 | .main_clk = "l3_gclk", | ||
1814 | .prcm = { | ||
1815 | .omap4 = { | ||
1816 | .clkctrl_offs = AM33XX_CM_PER_TPTC0_CLKCTRL_OFFSET, | ||
1817 | .modulemode = MODULEMODE_SWCTRL, | ||
1818 | }, | ||
1819 | }, | ||
1820 | }; | ||
1821 | |||
1822 | /* tptc1 */ | ||
1823 | static struct omap_hwmod_irq_info am33xx_tptc1_irqs[] = { | ||
1824 | { .irq = 113 + OMAP_INTC_START, }, | ||
1825 | { .irq = -1 }, | ||
1826 | }; | ||
1827 | |||
1828 | static struct omap_hwmod am33xx_tptc1_hwmod = { | ||
1829 | .name = "tptc1", | ||
1830 | .class = &am33xx_tptc_hwmod_class, | ||
1831 | .clkdm_name = "l3_clkdm", | ||
1832 | .mpu_irqs = am33xx_tptc1_irqs, | ||
1833 | .flags = (HWMOD_SWSUP_SIDLE | HWMOD_SWSUP_MSTANDBY), | ||
1834 | .main_clk = "l3_gclk", | ||
1835 | .prcm = { | ||
1836 | .omap4 = { | ||
1837 | .clkctrl_offs = AM33XX_CM_PER_TPTC1_CLKCTRL_OFFSET, | ||
1838 | .modulemode = MODULEMODE_SWCTRL, | ||
1839 | }, | ||
1840 | }, | ||
1841 | }; | ||
1842 | |||
1843 | /* tptc2 */ | ||
1844 | static struct omap_hwmod_irq_info am33xx_tptc2_irqs[] = { | ||
1845 | { .irq = 114 + OMAP_INTC_START, }, | ||
1846 | { .irq = -1 }, | ||
1847 | }; | ||
1848 | |||
1849 | static struct omap_hwmod am33xx_tptc2_hwmod = { | ||
1850 | .name = "tptc2", | ||
1851 | .class = &am33xx_tptc_hwmod_class, | ||
1852 | .clkdm_name = "l3_clkdm", | ||
1853 | .mpu_irqs = am33xx_tptc2_irqs, | ||
1854 | .flags = (HWMOD_SWSUP_SIDLE | HWMOD_SWSUP_MSTANDBY), | ||
1855 | .main_clk = "l3_gclk", | ||
1856 | .prcm = { | ||
1857 | .omap4 = { | ||
1858 | .clkctrl_offs = AM33XX_CM_PER_TPTC2_CLKCTRL_OFFSET, | ||
1859 | .modulemode = MODULEMODE_SWCTRL, | ||
1860 | }, | ||
1861 | }, | ||
1862 | }; | ||
1863 | |||
1864 | /* 'uart' class */ | ||
1865 | static struct omap_hwmod_class_sysconfig uart_sysc = { | ||
1866 | .rev_offs = 0x50, | ||
1867 | .sysc_offs = 0x54, | ||
1868 | .syss_offs = 0x58, | ||
1869 | .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_ENAWAKEUP | | ||
1870 | SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE), | ||
1871 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART | | ||
1872 | SIDLE_SMART_WKUP), | ||
1873 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
1874 | }; | ||
1875 | |||
1876 | static struct omap_hwmod_class uart_class = { | ||
1877 | .name = "uart", | ||
1878 | .sysc = &uart_sysc, | ||
1879 | }; | ||
1880 | |||
1881 | /* uart1 */ | ||
1882 | static struct omap_hwmod_dma_info uart1_edma_reqs[] = { | ||
1883 | { .name = "tx", .dma_req = 26, }, | ||
1884 | { .name = "rx", .dma_req = 27, }, | ||
1885 | { .dma_req = -1 } | ||
1886 | }; | ||
1887 | |||
1888 | static struct omap_hwmod_irq_info am33xx_uart1_irqs[] = { | ||
1889 | { .irq = 72 + OMAP_INTC_START, }, | ||
1890 | { .irq = -1 }, | ||
1891 | }; | ||
1892 | |||
1893 | static struct omap_hwmod am33xx_uart1_hwmod = { | ||
1894 | .name = "uart1", | ||
1895 | .class = &uart_class, | ||
1896 | .clkdm_name = "l4_wkup_clkdm", | ||
1897 | .mpu_irqs = am33xx_uart1_irqs, | ||
1898 | .sdma_reqs = uart1_edma_reqs, | ||
1899 | .main_clk = "dpll_per_m2_div4_wkupdm_ck", | ||
1900 | .prcm = { | ||
1901 | .omap4 = { | ||
1902 | .clkctrl_offs = AM33XX_CM_WKUP_UART0_CLKCTRL_OFFSET, | ||
1903 | .modulemode = MODULEMODE_SWCTRL, | ||
1904 | }, | ||
1905 | }, | ||
1906 | }; | ||
1907 | |||
1908 | static struct omap_hwmod_irq_info am33xx_uart2_irqs[] = { | ||
1909 | { .irq = 73 + OMAP_INTC_START, }, | ||
1910 | { .irq = -1 }, | ||
1911 | }; | ||
1912 | |||
1913 | static struct omap_hwmod am33xx_uart2_hwmod = { | ||
1914 | .name = "uart2", | ||
1915 | .class = &uart_class, | ||
1916 | .clkdm_name = "l4ls_clkdm", | ||
1917 | .mpu_irqs = am33xx_uart2_irqs, | ||
1918 | .sdma_reqs = uart1_edma_reqs, | ||
1919 | .main_clk = "dpll_per_m2_div4_ck", | ||
1920 | .prcm = { | ||
1921 | .omap4 = { | ||
1922 | .clkctrl_offs = AM33XX_CM_PER_UART1_CLKCTRL_OFFSET, | ||
1923 | .modulemode = MODULEMODE_SWCTRL, | ||
1924 | }, | ||
1925 | }, | ||
1926 | }; | ||
1927 | |||
1928 | /* uart3 */ | ||
1929 | static struct omap_hwmod_dma_info uart3_edma_reqs[] = { | ||
1930 | { .name = "tx", .dma_req = 30, }, | ||
1931 | { .name = "rx", .dma_req = 31, }, | ||
1932 | { .dma_req = -1 } | ||
1933 | }; | ||
1934 | |||
1935 | static struct omap_hwmod_irq_info am33xx_uart3_irqs[] = { | ||
1936 | { .irq = 74 + OMAP_INTC_START, }, | ||
1937 | { .irq = -1 }, | ||
1938 | }; | ||
1939 | |||
1940 | static struct omap_hwmod am33xx_uart3_hwmod = { | ||
1941 | .name = "uart3", | ||
1942 | .class = &uart_class, | ||
1943 | .clkdm_name = "l4ls_clkdm", | ||
1944 | .mpu_irqs = am33xx_uart3_irqs, | ||
1945 | .sdma_reqs = uart3_edma_reqs, | ||
1946 | .main_clk = "dpll_per_m2_div4_ck", | ||
1947 | .prcm = { | ||
1948 | .omap4 = { | ||
1949 | .clkctrl_offs = AM33XX_CM_PER_UART2_CLKCTRL_OFFSET, | ||
1950 | .modulemode = MODULEMODE_SWCTRL, | ||
1951 | }, | ||
1952 | }, | ||
1953 | }; | ||
1954 | |||
1955 | static struct omap_hwmod_irq_info am33xx_uart4_irqs[] = { | ||
1956 | { .irq = 44 + OMAP_INTC_START, }, | ||
1957 | { .irq = -1 }, | ||
1958 | }; | ||
1959 | |||
1960 | static struct omap_hwmod am33xx_uart4_hwmod = { | ||
1961 | .name = "uart4", | ||
1962 | .class = &uart_class, | ||
1963 | .clkdm_name = "l4ls_clkdm", | ||
1964 | .mpu_irqs = am33xx_uart4_irqs, | ||
1965 | .sdma_reqs = uart1_edma_reqs, | ||
1966 | .main_clk = "dpll_per_m2_div4_ck", | ||
1967 | .prcm = { | ||
1968 | .omap4 = { | ||
1969 | .clkctrl_offs = AM33XX_CM_PER_UART3_CLKCTRL_OFFSET, | ||
1970 | .modulemode = MODULEMODE_SWCTRL, | ||
1971 | }, | ||
1972 | }, | ||
1973 | }; | ||
1974 | |||
1975 | static struct omap_hwmod_irq_info am33xx_uart5_irqs[] = { | ||
1976 | { .irq = 45 + OMAP_INTC_START, }, | ||
1977 | { .irq = -1 }, | ||
1978 | }; | ||
1979 | |||
1980 | static struct omap_hwmod am33xx_uart5_hwmod = { | ||
1981 | .name = "uart5", | ||
1982 | .class = &uart_class, | ||
1983 | .clkdm_name = "l4ls_clkdm", | ||
1984 | .mpu_irqs = am33xx_uart5_irqs, | ||
1985 | .sdma_reqs = uart1_edma_reqs, | ||
1986 | .main_clk = "dpll_per_m2_div4_ck", | ||
1987 | .prcm = { | ||
1988 | .omap4 = { | ||
1989 | .clkctrl_offs = AM33XX_CM_PER_UART4_CLKCTRL_OFFSET, | ||
1990 | .modulemode = MODULEMODE_SWCTRL, | ||
1991 | }, | ||
1992 | }, | ||
1993 | }; | ||
1994 | |||
1995 | static struct omap_hwmod_irq_info am33xx_uart6_irqs[] = { | ||
1996 | { .irq = 46 + OMAP_INTC_START, }, | ||
1997 | { .irq = -1 }, | ||
1998 | }; | ||
1999 | |||
2000 | static struct omap_hwmod am33xx_uart6_hwmod = { | ||
2001 | .name = "uart6", | ||
2002 | .class = &uart_class, | ||
2003 | .clkdm_name = "l4ls_clkdm", | ||
2004 | .mpu_irqs = am33xx_uart6_irqs, | ||
2005 | .sdma_reqs = uart1_edma_reqs, | ||
2006 | .main_clk = "dpll_per_m2_div4_ck", | ||
2007 | .prcm = { | ||
2008 | .omap4 = { | ||
2009 | .clkctrl_offs = AM33XX_CM_PER_UART5_CLKCTRL_OFFSET, | ||
2010 | .modulemode = MODULEMODE_SWCTRL, | ||
2011 | }, | ||
2012 | }, | ||
2013 | }; | ||
2014 | |||
2015 | /* 'wd_timer' class */ | ||
2016 | static struct omap_hwmod_class am33xx_wd_timer_hwmod_class = { | ||
2017 | .name = "wd_timer", | ||
2018 | }; | ||
2019 | |||
2020 | /* | ||
2021 | * XXX: device.c file uses hardcoded name for watchdog timer | ||
2022 | * driver "wd_timer2, so we are also using same name as of now... | ||
2023 | */ | ||
2024 | static struct omap_hwmod am33xx_wd_timer1_hwmod = { | ||
2025 | .name = "wd_timer2", | ||
2026 | .class = &am33xx_wd_timer_hwmod_class, | ||
2027 | .clkdm_name = "l4_wkup_clkdm", | ||
2028 | .main_clk = "wdt1_fck", | ||
2029 | .prcm = { | ||
2030 | .omap4 = { | ||
2031 | .clkctrl_offs = AM33XX_CM_WKUP_WDT1_CLKCTRL_OFFSET, | ||
2032 | .modulemode = MODULEMODE_SWCTRL, | ||
2033 | }, | ||
2034 | }, | ||
2035 | }; | ||
2036 | |||
2037 | /* | ||
2038 | * 'usb_otg' class | ||
2039 | * high-speed on-the-go universal serial bus (usb_otg) controller | ||
2040 | */ | ||
2041 | static struct omap_hwmod_class_sysconfig am33xx_usbhsotg_sysc = { | ||
2042 | .rev_offs = 0x0, | ||
2043 | .sysc_offs = 0x10, | ||
2044 | .sysc_flags = (SYSC_HAS_SIDLEMODE | SYSC_HAS_MIDLEMODE), | ||
2045 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART | | ||
2046 | MSTANDBY_FORCE | MSTANDBY_NO | MSTANDBY_SMART), | ||
2047 | .sysc_fields = &omap_hwmod_sysc_type2, | ||
2048 | }; | ||
2049 | |||
2050 | static struct omap_hwmod_class am33xx_usbotg_class = { | ||
2051 | .name = "usbotg", | ||
2052 | .sysc = &am33xx_usbhsotg_sysc, | ||
2053 | }; | ||
2054 | |||
2055 | static struct omap_hwmod_irq_info am33xx_usbss_mpu_irqs[] = { | ||
2056 | { .name = "usbss-irq", .irq = 17 + OMAP_INTC_START, }, | ||
2057 | { .name = "musb0-irq", .irq = 18 + OMAP_INTC_START, }, | ||
2058 | { .name = "musb1-irq", .irq = 19 + OMAP_INTC_START, }, | ||
2059 | { .irq = -1 + OMAP_INTC_START, }, | ||
2060 | }; | ||
2061 | |||
2062 | static struct omap_hwmod am33xx_usbss_hwmod = { | ||
2063 | .name = "usb_otg_hs", | ||
2064 | .class = &am33xx_usbotg_class, | ||
2065 | .clkdm_name = "l3s_clkdm", | ||
2066 | .mpu_irqs = am33xx_usbss_mpu_irqs, | ||
2067 | .flags = HWMOD_SWSUP_SIDLE | HWMOD_SWSUP_MSTANDBY, | ||
2068 | .main_clk = "usbotg_fck", | ||
2069 | .prcm = { | ||
2070 | .omap4 = { | ||
2071 | .clkctrl_offs = AM33XX_CM_PER_USB0_CLKCTRL_OFFSET, | ||
2072 | .modulemode = MODULEMODE_SWCTRL, | ||
2073 | }, | ||
2074 | }, | ||
2075 | }; | ||
2076 | |||
2077 | |||
2078 | /* | ||
2079 | * Interfaces | ||
2080 | */ | ||
2081 | |||
2082 | /* l4 fw -> emif fw */ | ||
2083 | static struct omap_hwmod_ocp_if am33xx_l4_fw__emif_fw = { | ||
2084 | .master = &am33xx_l4_fw_hwmod, | ||
2085 | .slave = &am33xx_emif_fw_hwmod, | ||
2086 | .clk = "l4fw_gclk", | ||
2087 | .user = OCP_USER_MPU, | ||
2088 | }; | ||
2089 | |||
2090 | static struct omap_hwmod_addr_space am33xx_emif_addrs[] = { | ||
2091 | { | ||
2092 | .pa_start = 0x4c000000, | ||
2093 | .pa_end = 0x4c000fff, | ||
2094 | .flags = ADDR_TYPE_RT | ||
2095 | }, | ||
2096 | { } | ||
2097 | }; | ||
2098 | /* l3 main -> emif */ | ||
2099 | static struct omap_hwmod_ocp_if am33xx_l3_main__emif = { | ||
2100 | .master = &am33xx_l3_main_hwmod, | ||
2101 | .slave = &am33xx_emif_hwmod, | ||
2102 | .clk = "dpll_core_m4_ck", | ||
2103 | .addr = am33xx_emif_addrs, | ||
2104 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2105 | }; | ||
2106 | |||
2107 | /* mpu -> l3 main */ | ||
2108 | static struct omap_hwmod_ocp_if am33xx_mpu__l3_main = { | ||
2109 | .master = &am33xx_mpu_hwmod, | ||
2110 | .slave = &am33xx_l3_main_hwmod, | ||
2111 | .clk = "dpll_mpu_m2_ck", | ||
2112 | .user = OCP_USER_MPU, | ||
2113 | }; | ||
2114 | |||
2115 | /* l3 main -> l4 hs */ | ||
2116 | static struct omap_hwmod_ocp_if am33xx_l3_main__l4_hs = { | ||
2117 | .master = &am33xx_l3_main_hwmod, | ||
2118 | .slave = &am33xx_l4_hs_hwmod, | ||
2119 | .clk = "l3s_gclk", | ||
2120 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2121 | }; | ||
2122 | |||
2123 | /* l3 main -> l3 s */ | ||
2124 | static struct omap_hwmod_ocp_if am33xx_l3_main__l3_s = { | ||
2125 | .master = &am33xx_l3_main_hwmod, | ||
2126 | .slave = &am33xx_l3_s_hwmod, | ||
2127 | .clk = "l3s_gclk", | ||
2128 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2129 | }; | ||
2130 | |||
2131 | /* l3 s -> l4 per/ls */ | ||
2132 | static struct omap_hwmod_ocp_if am33xx_l3_s__l4_ls = { | ||
2133 | .master = &am33xx_l3_s_hwmod, | ||
2134 | .slave = &am33xx_l4_ls_hwmod, | ||
2135 | .clk = "l3s_gclk", | ||
2136 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2137 | }; | ||
2138 | |||
2139 | /* l3 s -> l4 wkup */ | ||
2140 | static struct omap_hwmod_ocp_if am33xx_l3_s__l4_wkup = { | ||
2141 | .master = &am33xx_l3_s_hwmod, | ||
2142 | .slave = &am33xx_l4_wkup_hwmod, | ||
2143 | .clk = "l3s_gclk", | ||
2144 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2145 | }; | ||
2146 | |||
2147 | /* l3 s -> l4 fw */ | ||
2148 | static struct omap_hwmod_ocp_if am33xx_l3_s__l4_fw = { | ||
2149 | .master = &am33xx_l3_s_hwmod, | ||
2150 | .slave = &am33xx_l4_fw_hwmod, | ||
2151 | .clk = "l3s_gclk", | ||
2152 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2153 | }; | ||
2154 | |||
2155 | /* l3 main -> l3 instr */ | ||
2156 | static struct omap_hwmod_ocp_if am33xx_l3_main__l3_instr = { | ||
2157 | .master = &am33xx_l3_main_hwmod, | ||
2158 | .slave = &am33xx_l3_instr_hwmod, | ||
2159 | .clk = "l3s_gclk", | ||
2160 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2161 | }; | ||
2162 | |||
2163 | /* mpu -> prcm */ | ||
2164 | static struct omap_hwmod_ocp_if am33xx_mpu__prcm = { | ||
2165 | .master = &am33xx_mpu_hwmod, | ||
2166 | .slave = &am33xx_prcm_hwmod, | ||
2167 | .clk = "dpll_mpu_m2_ck", | ||
2168 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2169 | }; | ||
2170 | |||
2171 | /* l3 s -> l3 main*/ | ||
2172 | static struct omap_hwmod_ocp_if am33xx_l3_s__l3_main = { | ||
2173 | .master = &am33xx_l3_s_hwmod, | ||
2174 | .slave = &am33xx_l3_main_hwmod, | ||
2175 | .clk = "l3s_gclk", | ||
2176 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2177 | }; | ||
2178 | |||
2179 | /* pru-icss -> l3 main */ | ||
2180 | static struct omap_hwmod_ocp_if am33xx_pruss__l3_main = { | ||
2181 | .master = &am33xx_pruss_hwmod, | ||
2182 | .slave = &am33xx_l3_main_hwmod, | ||
2183 | .clk = "l3_gclk", | ||
2184 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2185 | }; | ||
2186 | |||
2187 | /* wkup m3 -> l4 wkup */ | ||
2188 | static struct omap_hwmod_ocp_if am33xx_wkup_m3__l4_wkup = { | ||
2189 | .master = &am33xx_wkup_m3_hwmod, | ||
2190 | .slave = &am33xx_l4_wkup_hwmod, | ||
2191 | .clk = "dpll_core_m4_div2_ck", | ||
2192 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2193 | }; | ||
2194 | |||
2195 | /* gfx -> l3 main */ | ||
2196 | static struct omap_hwmod_ocp_if am33xx_gfx__l3_main = { | ||
2197 | .master = &am33xx_gfx_hwmod, | ||
2198 | .slave = &am33xx_l3_main_hwmod, | ||
2199 | .clk = "dpll_core_m4_ck", | ||
2200 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2201 | }; | ||
2202 | |||
2203 | /* l4 wkup -> wkup m3 */ | ||
2204 | static struct omap_hwmod_addr_space am33xx_wkup_m3_addrs[] = { | ||
2205 | { | ||
2206 | .name = "umem", | ||
2207 | .pa_start = 0x44d00000, | ||
2208 | .pa_end = 0x44d00000 + SZ_16K - 1, | ||
2209 | .flags = ADDR_TYPE_RT | ||
2210 | }, | ||
2211 | { | ||
2212 | .name = "dmem", | ||
2213 | .pa_start = 0x44d80000, | ||
2214 | .pa_end = 0x44d80000 + SZ_8K - 1, | ||
2215 | .flags = ADDR_TYPE_RT | ||
2216 | }, | ||
2217 | { } | ||
2218 | }; | ||
2219 | |||
2220 | static struct omap_hwmod_ocp_if am33xx_l4_wkup__wkup_m3 = { | ||
2221 | .master = &am33xx_l4_wkup_hwmod, | ||
2222 | .slave = &am33xx_wkup_m3_hwmod, | ||
2223 | .clk = "dpll_core_m4_div2_ck", | ||
2224 | .addr = am33xx_wkup_m3_addrs, | ||
2225 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2226 | }; | ||
2227 | |||
2228 | /* l4 hs -> pru-icss */ | ||
2229 | static struct omap_hwmod_addr_space am33xx_pruss_addrs[] = { | ||
2230 | { | ||
2231 | .pa_start = 0x4a300000, | ||
2232 | .pa_end = 0x4a300000 + SZ_512K - 1, | ||
2233 | .flags = ADDR_TYPE_RT | ||
2234 | }, | ||
2235 | { } | ||
2236 | }; | ||
2237 | |||
2238 | static struct omap_hwmod_ocp_if am33xx_l4_hs__pruss = { | ||
2239 | .master = &am33xx_l4_hs_hwmod, | ||
2240 | .slave = &am33xx_pruss_hwmod, | ||
2241 | .clk = "dpll_core_m4_ck", | ||
2242 | .addr = am33xx_pruss_addrs, | ||
2243 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2244 | }; | ||
2245 | |||
2246 | /* l3 main -> gfx */ | ||
2247 | static struct omap_hwmod_addr_space am33xx_gfx_addrs[] = { | ||
2248 | { | ||
2249 | .pa_start = 0x56000000, | ||
2250 | .pa_end = 0x56000000 + SZ_16M - 1, | ||
2251 | .flags = ADDR_TYPE_RT | ||
2252 | }, | ||
2253 | { } | ||
2254 | }; | ||
2255 | |||
2256 | static struct omap_hwmod_ocp_if am33xx_l3_main__gfx = { | ||
2257 | .master = &am33xx_l3_main_hwmod, | ||
2258 | .slave = &am33xx_gfx_hwmod, | ||
2259 | .clk = "dpll_core_m4_ck", | ||
2260 | .addr = am33xx_gfx_addrs, | ||
2261 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2262 | }; | ||
2263 | |||
2264 | /* l4 wkup -> smartreflex0 */ | ||
2265 | static struct omap_hwmod_addr_space am33xx_smartreflex0_addrs[] = { | ||
2266 | { | ||
2267 | .pa_start = 0x44e37000, | ||
2268 | .pa_end = 0x44e37000 + SZ_4K - 1, | ||
2269 | .flags = ADDR_TYPE_RT | ||
2270 | }, | ||
2271 | { } | ||
2272 | }; | ||
2273 | |||
2274 | static struct omap_hwmod_ocp_if am33xx_l4_wkup__smartreflex0 = { | ||
2275 | .master = &am33xx_l4_wkup_hwmod, | ||
2276 | .slave = &am33xx_smartreflex0_hwmod, | ||
2277 | .clk = "dpll_core_m4_div2_ck", | ||
2278 | .addr = am33xx_smartreflex0_addrs, | ||
2279 | .user = OCP_USER_MPU, | ||
2280 | }; | ||
2281 | |||
2282 | /* l4 wkup -> smartreflex1 */ | ||
2283 | static struct omap_hwmod_addr_space am33xx_smartreflex1_addrs[] = { | ||
2284 | { | ||
2285 | .pa_start = 0x44e39000, | ||
2286 | .pa_end = 0x44e39000 + SZ_4K - 1, | ||
2287 | .flags = ADDR_TYPE_RT | ||
2288 | }, | ||
2289 | { } | ||
2290 | }; | ||
2291 | |||
2292 | static struct omap_hwmod_ocp_if am33xx_l4_wkup__smartreflex1 = { | ||
2293 | .master = &am33xx_l4_wkup_hwmod, | ||
2294 | .slave = &am33xx_smartreflex1_hwmod, | ||
2295 | .clk = "dpll_core_m4_div2_ck", | ||
2296 | .addr = am33xx_smartreflex1_addrs, | ||
2297 | .user = OCP_USER_MPU, | ||
2298 | }; | ||
2299 | |||
2300 | /* l4 wkup -> control */ | ||
2301 | static struct omap_hwmod_addr_space am33xx_control_addrs[] = { | ||
2302 | { | ||
2303 | .pa_start = 0x44e10000, | ||
2304 | .pa_end = 0x44e10000 + SZ_8K - 1, | ||
2305 | .flags = ADDR_TYPE_RT | ||
2306 | }, | ||
2307 | { } | ||
2308 | }; | ||
2309 | |||
2310 | static struct omap_hwmod_ocp_if am33xx_l4_wkup__control = { | ||
2311 | .master = &am33xx_l4_wkup_hwmod, | ||
2312 | .slave = &am33xx_control_hwmod, | ||
2313 | .clk = "dpll_core_m4_div2_ck", | ||
2314 | .addr = am33xx_control_addrs, | ||
2315 | .user = OCP_USER_MPU, | ||
2316 | }; | ||
2317 | |||
2318 | /* l4 wkup -> rtc */ | ||
2319 | static struct omap_hwmod_addr_space am33xx_rtc_addrs[] = { | ||
2320 | { | ||
2321 | .pa_start = 0x44e3e000, | ||
2322 | .pa_end = 0x44e3e000 + SZ_4K - 1, | ||
2323 | .flags = ADDR_TYPE_RT | ||
2324 | }, | ||
2325 | { } | ||
2326 | }; | ||
2327 | |||
2328 | static struct omap_hwmod_ocp_if am33xx_l4_wkup__rtc = { | ||
2329 | .master = &am33xx_l4_wkup_hwmod, | ||
2330 | .slave = &am33xx_rtc_hwmod, | ||
2331 | .clk = "clkdiv32k_ick", | ||
2332 | .addr = am33xx_rtc_addrs, | ||
2333 | .user = OCP_USER_MPU, | ||
2334 | }; | ||
2335 | |||
2336 | /* l4 per/ls -> DCAN0 */ | ||
2337 | static struct omap_hwmod_addr_space am33xx_dcan0_addrs[] = { | ||
2338 | { | ||
2339 | .pa_start = 0x481CC000, | ||
2340 | .pa_end = 0x481CC000 + SZ_4K - 1, | ||
2341 | .flags = ADDR_TYPE_RT | ||
2342 | }, | ||
2343 | { } | ||
2344 | }; | ||
2345 | |||
2346 | static struct omap_hwmod_ocp_if am33xx_l4_per__dcan0 = { | ||
2347 | .master = &am33xx_l4_ls_hwmod, | ||
2348 | .slave = &am33xx_dcan0_hwmod, | ||
2349 | .clk = "l4ls_gclk", | ||
2350 | .addr = am33xx_dcan0_addrs, | ||
2351 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2352 | }; | ||
2353 | |||
2354 | /* l4 per/ls -> DCAN1 */ | ||
2355 | static struct omap_hwmod_addr_space am33xx_dcan1_addrs[] = { | ||
2356 | { | ||
2357 | .pa_start = 0x481D0000, | ||
2358 | .pa_end = 0x481D0000 + SZ_4K - 1, | ||
2359 | .flags = ADDR_TYPE_RT | ||
2360 | }, | ||
2361 | { } | ||
2362 | }; | ||
2363 | |||
2364 | static struct omap_hwmod_ocp_if am33xx_l4_per__dcan1 = { | ||
2365 | .master = &am33xx_l4_ls_hwmod, | ||
2366 | .slave = &am33xx_dcan1_hwmod, | ||
2367 | .clk = "l4ls_gclk", | ||
2368 | .addr = am33xx_dcan1_addrs, | ||
2369 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2370 | }; | ||
2371 | |||
2372 | /* l4 per/ls -> GPIO2 */ | ||
2373 | static struct omap_hwmod_addr_space am33xx_gpio1_addrs[] = { | ||
2374 | { | ||
2375 | .pa_start = 0x4804C000, | ||
2376 | .pa_end = 0x4804C000 + SZ_4K - 1, | ||
2377 | .flags = ADDR_TYPE_RT, | ||
2378 | }, | ||
2379 | { } | ||
2380 | }; | ||
2381 | |||
2382 | static struct omap_hwmod_ocp_if am33xx_l4_per__gpio1 = { | ||
2383 | .master = &am33xx_l4_ls_hwmod, | ||
2384 | .slave = &am33xx_gpio1_hwmod, | ||
2385 | .clk = "l4ls_gclk", | ||
2386 | .addr = am33xx_gpio1_addrs, | ||
2387 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2388 | }; | ||
2389 | |||
2390 | /* l4 per/ls -> gpio3 */ | ||
2391 | static struct omap_hwmod_addr_space am33xx_gpio2_addrs[] = { | ||
2392 | { | ||
2393 | .pa_start = 0x481AC000, | ||
2394 | .pa_end = 0x481AC000 + SZ_4K - 1, | ||
2395 | .flags = ADDR_TYPE_RT, | ||
2396 | }, | ||
2397 | { } | ||
2398 | }; | ||
2399 | |||
2400 | static struct omap_hwmod_ocp_if am33xx_l4_per__gpio2 = { | ||
2401 | .master = &am33xx_l4_ls_hwmod, | ||
2402 | .slave = &am33xx_gpio2_hwmod, | ||
2403 | .clk = "l4ls_gclk", | ||
2404 | .addr = am33xx_gpio2_addrs, | ||
2405 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2406 | }; | ||
2407 | |||
2408 | /* l4 per/ls -> gpio4 */ | ||
2409 | static struct omap_hwmod_addr_space am33xx_gpio3_addrs[] = { | ||
2410 | { | ||
2411 | .pa_start = 0x481AE000, | ||
2412 | .pa_end = 0x481AE000 + SZ_4K - 1, | ||
2413 | .flags = ADDR_TYPE_RT, | ||
2414 | }, | ||
2415 | { } | ||
2416 | }; | ||
2417 | |||
2418 | static struct omap_hwmod_ocp_if am33xx_l4_per__gpio3 = { | ||
2419 | .master = &am33xx_l4_ls_hwmod, | ||
2420 | .slave = &am33xx_gpio3_hwmod, | ||
2421 | .clk = "l4ls_gclk", | ||
2422 | .addr = am33xx_gpio3_addrs, | ||
2423 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2424 | }; | ||
2425 | |||
2426 | /* L4 WKUP -> I2C1 */ | ||
2427 | static struct omap_hwmod_addr_space am33xx_i2c1_addr_space[] = { | ||
2428 | { | ||
2429 | .pa_start = 0x44E0B000, | ||
2430 | .pa_end = 0x44E0B000 + SZ_4K - 1, | ||
2431 | .flags = ADDR_TYPE_RT, | ||
2432 | }, | ||
2433 | { } | ||
2434 | }; | ||
2435 | |||
2436 | static struct omap_hwmod_ocp_if am33xx_l4_wkup__i2c1 = { | ||
2437 | .master = &am33xx_l4_wkup_hwmod, | ||
2438 | .slave = &am33xx_i2c1_hwmod, | ||
2439 | .clk = "dpll_core_m4_div2_ck", | ||
2440 | .addr = am33xx_i2c1_addr_space, | ||
2441 | .user = OCP_USER_MPU, | ||
2442 | }; | ||
2443 | |||
2444 | /* L4 WKUP -> GPIO1 */ | ||
2445 | static struct omap_hwmod_addr_space am33xx_gpio0_addrs[] = { | ||
2446 | { | ||
2447 | .pa_start = 0x44E07000, | ||
2448 | .pa_end = 0x44E07000 + SZ_4K - 1, | ||
2449 | .flags = ADDR_TYPE_RT, | ||
2450 | }, | ||
2451 | { } | ||
2452 | }; | ||
2453 | |||
2454 | static struct omap_hwmod_ocp_if am33xx_l4_wkup__gpio0 = { | ||
2455 | .master = &am33xx_l4_wkup_hwmod, | ||
2456 | .slave = &am33xx_gpio0_hwmod, | ||
2457 | .clk = "dpll_core_m4_div2_ck", | ||
2458 | .addr = am33xx_gpio0_addrs, | ||
2459 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2460 | }; | ||
2461 | |||
2462 | /* L4 WKUP -> ADC_TSC */ | ||
2463 | static struct omap_hwmod_addr_space am33xx_adc_tsc_addrs[] = { | ||
2464 | { | ||
2465 | .pa_start = 0x44E0D000, | ||
2466 | .pa_end = 0x44E0D000 + SZ_8K - 1, | ||
2467 | .flags = ADDR_TYPE_RT | ||
2468 | }, | ||
2469 | { } | ||
2470 | }; | ||
2471 | |||
2472 | static struct omap_hwmod_ocp_if am33xx_l4_wkup__adc_tsc = { | ||
2473 | .master = &am33xx_l4_wkup_hwmod, | ||
2474 | .slave = &am33xx_adc_tsc_hwmod, | ||
2475 | .clk = "dpll_core_m4_div2_ck", | ||
2476 | .addr = am33xx_adc_tsc_addrs, | ||
2477 | .user = OCP_USER_MPU, | ||
2478 | }; | ||
2479 | |||
2480 | static struct omap_hwmod_addr_space am33xx_cpgmac0_addr_space[] = { | ||
2481 | /* cpsw ss */ | ||
2482 | { | ||
2483 | .pa_start = 0x4a100000, | ||
2484 | .pa_end = 0x4a100000 + SZ_2K - 1, | ||
2485 | .flags = ADDR_TYPE_RT, | ||
2486 | }, | ||
2487 | /* cpsw wr */ | ||
2488 | { | ||
2489 | .pa_start = 0x4a101200, | ||
2490 | .pa_end = 0x4a101200 + SZ_256 - 1, | ||
2491 | .flags = ADDR_TYPE_RT, | ||
2492 | }, | ||
2493 | { } | ||
2494 | }; | ||
2495 | |||
2496 | static struct omap_hwmod_ocp_if am33xx_l4_hs__cpgmac0 = { | ||
2497 | .master = &am33xx_l4_hs_hwmod, | ||
2498 | .slave = &am33xx_cpgmac0_hwmod, | ||
2499 | .clk = "cpsw_125mhz_gclk", | ||
2500 | .addr = am33xx_cpgmac0_addr_space, | ||
2501 | .user = OCP_USER_MPU, | ||
2502 | }; | ||
2503 | |||
2504 | static struct omap_hwmod_addr_space am33xx_elm_addr_space[] = { | ||
2505 | { | ||
2506 | .pa_start = 0x48080000, | ||
2507 | .pa_end = 0x48080000 + SZ_8K - 1, | ||
2508 | .flags = ADDR_TYPE_RT | ||
2509 | }, | ||
2510 | { } | ||
2511 | }; | ||
2512 | |||
2513 | static struct omap_hwmod_ocp_if am33xx_l4_ls__elm = { | ||
2514 | .master = &am33xx_l4_ls_hwmod, | ||
2515 | .slave = &am33xx_elm_hwmod, | ||
2516 | .clk = "l4ls_gclk", | ||
2517 | .addr = am33xx_elm_addr_space, | ||
2518 | .user = OCP_USER_MPU, | ||
2519 | }; | ||
2520 | |||
2521 | /* | ||
2522 | * Splitting the resources to handle access of PWMSS config space | ||
2523 | * and module specific part independently | ||
2524 | */ | ||
2525 | static struct omap_hwmod_addr_space am33xx_ehrpwm0_addr_space[] = { | ||
2526 | { | ||
2527 | .pa_start = 0x48300000, | ||
2528 | .pa_end = 0x48300000 + SZ_16 - 1, | ||
2529 | .flags = ADDR_TYPE_RT | ||
2530 | }, | ||
2531 | { | ||
2532 | .pa_start = 0x48300200, | ||
2533 | .pa_end = 0x48300200 + SZ_256 - 1, | ||
2534 | .flags = ADDR_TYPE_RT | ||
2535 | }, | ||
2536 | { } | ||
2537 | }; | ||
2538 | |||
2539 | static struct omap_hwmod_ocp_if am33xx_l4_ls__ehrpwm0 = { | ||
2540 | .master = &am33xx_l4_ls_hwmod, | ||
2541 | .slave = &am33xx_ehrpwm0_hwmod, | ||
2542 | .clk = "l4ls_gclk", | ||
2543 | .addr = am33xx_ehrpwm0_addr_space, | ||
2544 | .user = OCP_USER_MPU, | ||
2545 | }; | ||
2546 | |||
2547 | /* | ||
2548 | * Splitting the resources to handle access of PWMSS config space | ||
2549 | * and module specific part independently | ||
2550 | */ | ||
2551 | static struct omap_hwmod_addr_space am33xx_ehrpwm1_addr_space[] = { | ||
2552 | { | ||
2553 | .pa_start = 0x48302000, | ||
2554 | .pa_end = 0x48302000 + SZ_16 - 1, | ||
2555 | .flags = ADDR_TYPE_RT | ||
2556 | }, | ||
2557 | { | ||
2558 | .pa_start = 0x48302200, | ||
2559 | .pa_end = 0x48302200 + SZ_256 - 1, | ||
2560 | .flags = ADDR_TYPE_RT | ||
2561 | }, | ||
2562 | { } | ||
2563 | }; | ||
2564 | |||
2565 | static struct omap_hwmod_ocp_if am33xx_l4_ls__ehrpwm1 = { | ||
2566 | .master = &am33xx_l4_ls_hwmod, | ||
2567 | .slave = &am33xx_ehrpwm1_hwmod, | ||
2568 | .clk = "l4ls_gclk", | ||
2569 | .addr = am33xx_ehrpwm1_addr_space, | ||
2570 | .user = OCP_USER_MPU, | ||
2571 | }; | ||
2572 | |||
2573 | /* | ||
2574 | * Splitting the resources to handle access of PWMSS config space | ||
2575 | * and module specific part independently | ||
2576 | */ | ||
2577 | static struct omap_hwmod_addr_space am33xx_ehrpwm2_addr_space[] = { | ||
2578 | { | ||
2579 | .pa_start = 0x48304000, | ||
2580 | .pa_end = 0x48304000 + SZ_16 - 1, | ||
2581 | .flags = ADDR_TYPE_RT | ||
2582 | }, | ||
2583 | { | ||
2584 | .pa_start = 0x48304200, | ||
2585 | .pa_end = 0x48304200 + SZ_256 - 1, | ||
2586 | .flags = ADDR_TYPE_RT | ||
2587 | }, | ||
2588 | { } | ||
2589 | }; | ||
2590 | |||
2591 | static struct omap_hwmod_ocp_if am33xx_l4_ls__ehrpwm2 = { | ||
2592 | .master = &am33xx_l4_ls_hwmod, | ||
2593 | .slave = &am33xx_ehrpwm2_hwmod, | ||
2594 | .clk = "l4ls_gclk", | ||
2595 | .addr = am33xx_ehrpwm2_addr_space, | ||
2596 | .user = OCP_USER_MPU, | ||
2597 | }; | ||
2598 | |||
2599 | /* | ||
2600 | * Splitting the resources to handle access of PWMSS config space | ||
2601 | * and module specific part independently | ||
2602 | */ | ||
2603 | static struct omap_hwmod_addr_space am33xx_ecap0_addr_space[] = { | ||
2604 | { | ||
2605 | .pa_start = 0x48300000, | ||
2606 | .pa_end = 0x48300000 + SZ_16 - 1, | ||
2607 | .flags = ADDR_TYPE_RT | ||
2608 | }, | ||
2609 | { | ||
2610 | .pa_start = 0x48300100, | ||
2611 | .pa_end = 0x48300100 + SZ_256 - 1, | ||
2612 | .flags = ADDR_TYPE_RT | ||
2613 | }, | ||
2614 | { } | ||
2615 | }; | ||
2616 | |||
2617 | static struct omap_hwmod_ocp_if am33xx_l4_ls__ecap0 = { | ||
2618 | .master = &am33xx_l4_ls_hwmod, | ||
2619 | .slave = &am33xx_ecap0_hwmod, | ||
2620 | .clk = "l4ls_gclk", | ||
2621 | .addr = am33xx_ecap0_addr_space, | ||
2622 | .user = OCP_USER_MPU, | ||
2623 | }; | ||
2624 | |||
2625 | /* | ||
2626 | * Splitting the resources to handle access of PWMSS config space | ||
2627 | * and module specific part independently | ||
2628 | */ | ||
2629 | static struct omap_hwmod_addr_space am33xx_ecap1_addr_space[] = { | ||
2630 | { | ||
2631 | .pa_start = 0x48302000, | ||
2632 | .pa_end = 0x48302000 + SZ_16 - 1, | ||
2633 | .flags = ADDR_TYPE_RT | ||
2634 | }, | ||
2635 | { | ||
2636 | .pa_start = 0x48302100, | ||
2637 | .pa_end = 0x48302100 + SZ_256 - 1, | ||
2638 | .flags = ADDR_TYPE_RT | ||
2639 | }, | ||
2640 | { } | ||
2641 | }; | ||
2642 | |||
2643 | static struct omap_hwmod_ocp_if am33xx_l4_ls__ecap1 = { | ||
2644 | .master = &am33xx_l4_ls_hwmod, | ||
2645 | .slave = &am33xx_ecap1_hwmod, | ||
2646 | .clk = "l4ls_gclk", | ||
2647 | .addr = am33xx_ecap1_addr_space, | ||
2648 | .user = OCP_USER_MPU, | ||
2649 | }; | ||
2650 | |||
2651 | /* | ||
2652 | * Splitting the resources to handle access of PWMSS config space | ||
2653 | * and module specific part independently | ||
2654 | */ | ||
2655 | static struct omap_hwmod_addr_space am33xx_ecap2_addr_space[] = { | ||
2656 | { | ||
2657 | .pa_start = 0x48304000, | ||
2658 | .pa_end = 0x48304000 + SZ_16 - 1, | ||
2659 | .flags = ADDR_TYPE_RT | ||
2660 | }, | ||
2661 | { | ||
2662 | .pa_start = 0x48304100, | ||
2663 | .pa_end = 0x48304100 + SZ_256 - 1, | ||
2664 | .flags = ADDR_TYPE_RT | ||
2665 | }, | ||
2666 | { } | ||
2667 | }; | ||
2668 | |||
2669 | static struct omap_hwmod_ocp_if am33xx_l4_ls__ecap2 = { | ||
2670 | .master = &am33xx_l4_ls_hwmod, | ||
2671 | .slave = &am33xx_ecap2_hwmod, | ||
2672 | .clk = "l4ls_gclk", | ||
2673 | .addr = am33xx_ecap2_addr_space, | ||
2674 | .user = OCP_USER_MPU, | ||
2675 | }; | ||
2676 | |||
2677 | /* l3s cfg -> gpmc */ | ||
2678 | static struct omap_hwmod_addr_space am33xx_gpmc_addr_space[] = { | ||
2679 | { | ||
2680 | .pa_start = 0x50000000, | ||
2681 | .pa_end = 0x50000000 + SZ_8K - 1, | ||
2682 | .flags = ADDR_TYPE_RT, | ||
2683 | }, | ||
2684 | { } | ||
2685 | }; | ||
2686 | |||
2687 | static struct omap_hwmod_ocp_if am33xx_l3_s__gpmc = { | ||
2688 | .master = &am33xx_l3_s_hwmod, | ||
2689 | .slave = &am33xx_gpmc_hwmod, | ||
2690 | .clk = "l3s_gclk", | ||
2691 | .addr = am33xx_gpmc_addr_space, | ||
2692 | .user = OCP_USER_MPU, | ||
2693 | }; | ||
2694 | |||
2695 | /* i2c2 */ | ||
2696 | static struct omap_hwmod_addr_space am33xx_i2c2_addr_space[] = { | ||
2697 | { | ||
2698 | .pa_start = 0x4802A000, | ||
2699 | .pa_end = 0x4802A000 + SZ_4K - 1, | ||
2700 | .flags = ADDR_TYPE_RT, | ||
2701 | }, | ||
2702 | { } | ||
2703 | }; | ||
2704 | |||
2705 | static struct omap_hwmod_ocp_if am33xx_l4_per__i2c2 = { | ||
2706 | .master = &am33xx_l4_ls_hwmod, | ||
2707 | .slave = &am33xx_i2c2_hwmod, | ||
2708 | .clk = "l4ls_gclk", | ||
2709 | .addr = am33xx_i2c2_addr_space, | ||
2710 | .user = OCP_USER_MPU, | ||
2711 | }; | ||
2712 | |||
2713 | static struct omap_hwmod_addr_space am33xx_i2c3_addr_space[] = { | ||
2714 | { | ||
2715 | .pa_start = 0x4819C000, | ||
2716 | .pa_end = 0x4819C000 + SZ_4K - 1, | ||
2717 | .flags = ADDR_TYPE_RT | ||
2718 | }, | ||
2719 | { } | ||
2720 | }; | ||
2721 | |||
2722 | static struct omap_hwmod_ocp_if am33xx_l4_per__i2c3 = { | ||
2723 | .master = &am33xx_l4_ls_hwmod, | ||
2724 | .slave = &am33xx_i2c3_hwmod, | ||
2725 | .clk = "l4ls_gclk", | ||
2726 | .addr = am33xx_i2c3_addr_space, | ||
2727 | .user = OCP_USER_MPU, | ||
2728 | }; | ||
2729 | |||
2730 | static struct omap_hwmod_addr_space am33xx_lcdc_addr_space[] = { | ||
2731 | { | ||
2732 | .pa_start = 0x4830E000, | ||
2733 | .pa_end = 0x4830E000 + SZ_8K - 1, | ||
2734 | .flags = ADDR_TYPE_RT, | ||
2735 | }, | ||
2736 | { } | ||
2737 | }; | ||
2738 | |||
2739 | static struct omap_hwmod_ocp_if am33xx_l3_main__lcdc = { | ||
2740 | .master = &am33xx_l3_main_hwmod, | ||
2741 | .slave = &am33xx_lcdc_hwmod, | ||
2742 | .clk = "dpll_core_m4_ck", | ||
2743 | .addr = am33xx_lcdc_addr_space, | ||
2744 | .user = OCP_USER_MPU, | ||
2745 | }; | ||
2746 | |||
2747 | static struct omap_hwmod_addr_space am33xx_mailbox_addrs[] = { | ||
2748 | { | ||
2749 | .pa_start = 0x480C8000, | ||
2750 | .pa_end = 0x480C8000 + (SZ_4K - 1), | ||
2751 | .flags = ADDR_TYPE_RT | ||
2752 | }, | ||
2753 | { } | ||
2754 | }; | ||
2755 | |||
2756 | /* l4 ls -> mailbox */ | ||
2757 | static struct omap_hwmod_ocp_if am33xx_l4_per__mailbox = { | ||
2758 | .master = &am33xx_l4_ls_hwmod, | ||
2759 | .slave = &am33xx_mailbox_hwmod, | ||
2760 | .clk = "l4ls_gclk", | ||
2761 | .addr = am33xx_mailbox_addrs, | ||
2762 | .user = OCP_USER_MPU, | ||
2763 | }; | ||
2764 | |||
2765 | /* l4 ls -> spinlock */ | ||
2766 | static struct omap_hwmod_addr_space am33xx_spinlock_addrs[] = { | ||
2767 | { | ||
2768 | .pa_start = 0x480Ca000, | ||
2769 | .pa_end = 0x480Ca000 + SZ_4K - 1, | ||
2770 | .flags = ADDR_TYPE_RT | ||
2771 | }, | ||
2772 | { } | ||
2773 | }; | ||
2774 | |||
2775 | static struct omap_hwmod_ocp_if am33xx_l4_ls__spinlock = { | ||
2776 | .master = &am33xx_l4_ls_hwmod, | ||
2777 | .slave = &am33xx_spinlock_hwmod, | ||
2778 | .clk = "l4ls_gclk", | ||
2779 | .addr = am33xx_spinlock_addrs, | ||
2780 | .user = OCP_USER_MPU, | ||
2781 | }; | ||
2782 | |||
2783 | /* l4 ls -> mcasp0 */ | ||
2784 | static struct omap_hwmod_addr_space am33xx_mcasp0_addr_space[] = { | ||
2785 | { | ||
2786 | .pa_start = 0x48038000, | ||
2787 | .pa_end = 0x48038000 + SZ_8K - 1, | ||
2788 | .flags = ADDR_TYPE_RT | ||
2789 | }, | ||
2790 | { } | ||
2791 | }; | ||
2792 | |||
2793 | static struct omap_hwmod_ocp_if am33xx_l4_ls__mcasp0 = { | ||
2794 | .master = &am33xx_l4_ls_hwmod, | ||
2795 | .slave = &am33xx_mcasp0_hwmod, | ||
2796 | .clk = "l4ls_gclk", | ||
2797 | .addr = am33xx_mcasp0_addr_space, | ||
2798 | .user = OCP_USER_MPU, | ||
2799 | }; | ||
2800 | |||
2801 | /* l3 s -> mcasp0 data */ | ||
2802 | static struct omap_hwmod_addr_space am33xx_mcasp0_data_addr_space[] = { | ||
2803 | { | ||
2804 | .pa_start = 0x46000000, | ||
2805 | .pa_end = 0x46000000 + SZ_4M - 1, | ||
2806 | .flags = ADDR_TYPE_RT | ||
2807 | }, | ||
2808 | { } | ||
2809 | }; | ||
2810 | |||
2811 | static struct omap_hwmod_ocp_if am33xx_l3_s__mcasp0_data = { | ||
2812 | .master = &am33xx_l3_s_hwmod, | ||
2813 | .slave = &am33xx_mcasp0_hwmod, | ||
2814 | .clk = "l3s_gclk", | ||
2815 | .addr = am33xx_mcasp0_data_addr_space, | ||
2816 | .user = OCP_USER_SDMA, | ||
2817 | }; | ||
2818 | |||
2819 | /* l4 ls -> mcasp1 */ | ||
2820 | static struct omap_hwmod_addr_space am33xx_mcasp1_addr_space[] = { | ||
2821 | { | ||
2822 | .pa_start = 0x4803C000, | ||
2823 | .pa_end = 0x4803C000 + SZ_8K - 1, | ||
2824 | .flags = ADDR_TYPE_RT | ||
2825 | }, | ||
2826 | { } | ||
2827 | }; | ||
2828 | |||
2829 | static struct omap_hwmod_ocp_if am33xx_l4_ls__mcasp1 = { | ||
2830 | .master = &am33xx_l4_ls_hwmod, | ||
2831 | .slave = &am33xx_mcasp1_hwmod, | ||
2832 | .clk = "l4ls_gclk", | ||
2833 | .addr = am33xx_mcasp1_addr_space, | ||
2834 | .user = OCP_USER_MPU, | ||
2835 | }; | ||
2836 | |||
2837 | /* l3 s -> mcasp1 data */ | ||
2838 | static struct omap_hwmod_addr_space am33xx_mcasp1_data_addr_space[] = { | ||
2839 | { | ||
2840 | .pa_start = 0x46400000, | ||
2841 | .pa_end = 0x46400000 + SZ_4M - 1, | ||
2842 | .flags = ADDR_TYPE_RT | ||
2843 | }, | ||
2844 | { } | ||
2845 | }; | ||
2846 | |||
2847 | static struct omap_hwmod_ocp_if am33xx_l3_s__mcasp1_data = { | ||
2848 | .master = &am33xx_l3_s_hwmod, | ||
2849 | .slave = &am33xx_mcasp1_hwmod, | ||
2850 | .clk = "l3s_gclk", | ||
2851 | .addr = am33xx_mcasp1_data_addr_space, | ||
2852 | .user = OCP_USER_SDMA, | ||
2853 | }; | ||
2854 | |||
2855 | /* l4 ls -> mmc0 */ | ||
2856 | static struct omap_hwmod_addr_space am33xx_mmc0_addr_space[] = { | ||
2857 | { | ||
2858 | .pa_start = 0x48060100, | ||
2859 | .pa_end = 0x48060100 + SZ_4K - 1, | ||
2860 | .flags = ADDR_TYPE_RT, | ||
2861 | }, | ||
2862 | { } | ||
2863 | }; | ||
2864 | |||
2865 | static struct omap_hwmod_ocp_if am33xx_l4_ls__mmc0 = { | ||
2866 | .master = &am33xx_l4_ls_hwmod, | ||
2867 | .slave = &am33xx_mmc0_hwmod, | ||
2868 | .clk = "l4ls_gclk", | ||
2869 | .addr = am33xx_mmc0_addr_space, | ||
2870 | .user = OCP_USER_MPU, | ||
2871 | }; | ||
2872 | |||
2873 | /* l4 ls -> mmc1 */ | ||
2874 | static struct omap_hwmod_addr_space am33xx_mmc1_addr_space[] = { | ||
2875 | { | ||
2876 | .pa_start = 0x481d8100, | ||
2877 | .pa_end = 0x481d8100 + SZ_4K - 1, | ||
2878 | .flags = ADDR_TYPE_RT, | ||
2879 | }, | ||
2880 | { } | ||
2881 | }; | ||
2882 | |||
2883 | static struct omap_hwmod_ocp_if am33xx_l4_ls__mmc1 = { | ||
2884 | .master = &am33xx_l4_ls_hwmod, | ||
2885 | .slave = &am33xx_mmc1_hwmod, | ||
2886 | .clk = "l4ls_gclk", | ||
2887 | .addr = am33xx_mmc1_addr_space, | ||
2888 | .user = OCP_USER_MPU, | ||
2889 | }; | ||
2890 | |||
2891 | /* l3 s -> mmc2 */ | ||
2892 | static struct omap_hwmod_addr_space am33xx_mmc2_addr_space[] = { | ||
2893 | { | ||
2894 | .pa_start = 0x47810100, | ||
2895 | .pa_end = 0x47810100 + SZ_64K - 1, | ||
2896 | .flags = ADDR_TYPE_RT, | ||
2897 | }, | ||
2898 | { } | ||
2899 | }; | ||
2900 | |||
2901 | static struct omap_hwmod_ocp_if am33xx_l3_s__mmc2 = { | ||
2902 | .master = &am33xx_l3_s_hwmod, | ||
2903 | .slave = &am33xx_mmc2_hwmod, | ||
2904 | .clk = "l3s_gclk", | ||
2905 | .addr = am33xx_mmc2_addr_space, | ||
2906 | .user = OCP_USER_MPU, | ||
2907 | }; | ||
2908 | |||
2909 | /* l4 ls -> mcspi0 */ | ||
2910 | static struct omap_hwmod_addr_space am33xx_mcspi0_addr_space[] = { | ||
2911 | { | ||
2912 | .pa_start = 0x48030000, | ||
2913 | .pa_end = 0x48030000 + SZ_1K - 1, | ||
2914 | .flags = ADDR_TYPE_RT, | ||
2915 | }, | ||
2916 | { } | ||
2917 | }; | ||
2918 | |||
2919 | static struct omap_hwmod_ocp_if am33xx_l4_ls__mcspi0 = { | ||
2920 | .master = &am33xx_l4_ls_hwmod, | ||
2921 | .slave = &am33xx_spi0_hwmod, | ||
2922 | .clk = "l4ls_gclk", | ||
2923 | .addr = am33xx_mcspi0_addr_space, | ||
2924 | .user = OCP_USER_MPU, | ||
2925 | }; | ||
2926 | |||
2927 | /* l4 ls -> mcspi1 */ | ||
2928 | static struct omap_hwmod_addr_space am33xx_mcspi1_addr_space[] = { | ||
2929 | { | ||
2930 | .pa_start = 0x481A0000, | ||
2931 | .pa_end = 0x481A0000 + SZ_1K - 1, | ||
2932 | .flags = ADDR_TYPE_RT, | ||
2933 | }, | ||
2934 | { } | ||
2935 | }; | ||
2936 | |||
2937 | static struct omap_hwmod_ocp_if am33xx_l4_ls__mcspi1 = { | ||
2938 | .master = &am33xx_l4_ls_hwmod, | ||
2939 | .slave = &am33xx_spi1_hwmod, | ||
2940 | .clk = "l4ls_gclk", | ||
2941 | .addr = am33xx_mcspi1_addr_space, | ||
2942 | .user = OCP_USER_MPU, | ||
2943 | }; | ||
2944 | |||
2945 | /* l4 wkup -> timer1 */ | ||
2946 | static struct omap_hwmod_addr_space am33xx_timer1_addr_space[] = { | ||
2947 | { | ||
2948 | .pa_start = 0x44E31000, | ||
2949 | .pa_end = 0x44E31000 + SZ_1K - 1, | ||
2950 | .flags = ADDR_TYPE_RT | ||
2951 | }, | ||
2952 | { } | ||
2953 | }; | ||
2954 | |||
2955 | static struct omap_hwmod_ocp_if am33xx_l4_wkup__timer1 = { | ||
2956 | .master = &am33xx_l4_wkup_hwmod, | ||
2957 | .slave = &am33xx_timer1_hwmod, | ||
2958 | .clk = "dpll_core_m4_div2_ck", | ||
2959 | .addr = am33xx_timer1_addr_space, | ||
2960 | .user = OCP_USER_MPU, | ||
2961 | }; | ||
2962 | |||
2963 | /* l4 per -> timer2 */ | ||
2964 | static struct omap_hwmod_addr_space am33xx_timer2_addr_space[] = { | ||
2965 | { | ||
2966 | .pa_start = 0x48040000, | ||
2967 | .pa_end = 0x48040000 + SZ_1K - 1, | ||
2968 | .flags = ADDR_TYPE_RT | ||
2969 | }, | ||
2970 | { } | ||
2971 | }; | ||
2972 | |||
2973 | static struct omap_hwmod_ocp_if am33xx_l4_ls__timer2 = { | ||
2974 | .master = &am33xx_l4_ls_hwmod, | ||
2975 | .slave = &am33xx_timer2_hwmod, | ||
2976 | .clk = "l4ls_gclk", | ||
2977 | .addr = am33xx_timer2_addr_space, | ||
2978 | .user = OCP_USER_MPU, | ||
2979 | }; | ||
2980 | |||
2981 | /* l4 per -> timer3 */ | ||
2982 | static struct omap_hwmod_addr_space am33xx_timer3_addr_space[] = { | ||
2983 | { | ||
2984 | .pa_start = 0x48042000, | ||
2985 | .pa_end = 0x48042000 + SZ_1K - 1, | ||
2986 | .flags = ADDR_TYPE_RT | ||
2987 | }, | ||
2988 | { } | ||
2989 | }; | ||
2990 | |||
2991 | static struct omap_hwmod_ocp_if am33xx_l4_ls__timer3 = { | ||
2992 | .master = &am33xx_l4_ls_hwmod, | ||
2993 | .slave = &am33xx_timer3_hwmod, | ||
2994 | .clk = "l4ls_gclk", | ||
2995 | .addr = am33xx_timer3_addr_space, | ||
2996 | .user = OCP_USER_MPU, | ||
2997 | }; | ||
2998 | |||
2999 | /* l4 per -> timer4 */ | ||
3000 | static struct omap_hwmod_addr_space am33xx_timer4_addr_space[] = { | ||
3001 | { | ||
3002 | .pa_start = 0x48044000, | ||
3003 | .pa_end = 0x48044000 + SZ_1K - 1, | ||
3004 | .flags = ADDR_TYPE_RT | ||
3005 | }, | ||
3006 | { } | ||
3007 | }; | ||
3008 | |||
3009 | static struct omap_hwmod_ocp_if am33xx_l4_ls__timer4 = { | ||
3010 | .master = &am33xx_l4_ls_hwmod, | ||
3011 | .slave = &am33xx_timer4_hwmod, | ||
3012 | .clk = "l4ls_gclk", | ||
3013 | .addr = am33xx_timer4_addr_space, | ||
3014 | .user = OCP_USER_MPU, | ||
3015 | }; | ||
3016 | |||
3017 | /* l4 per -> timer5 */ | ||
3018 | static struct omap_hwmod_addr_space am33xx_timer5_addr_space[] = { | ||
3019 | { | ||
3020 | .pa_start = 0x48046000, | ||
3021 | .pa_end = 0x48046000 + SZ_1K - 1, | ||
3022 | .flags = ADDR_TYPE_RT | ||
3023 | }, | ||
3024 | { } | ||
3025 | }; | ||
3026 | |||
3027 | static struct omap_hwmod_ocp_if am33xx_l4_ls__timer5 = { | ||
3028 | .master = &am33xx_l4_ls_hwmod, | ||
3029 | .slave = &am33xx_timer5_hwmod, | ||
3030 | .clk = "l4ls_gclk", | ||
3031 | .addr = am33xx_timer5_addr_space, | ||
3032 | .user = OCP_USER_MPU, | ||
3033 | }; | ||
3034 | |||
3035 | /* l4 per -> timer6 */ | ||
3036 | static struct omap_hwmod_addr_space am33xx_timer6_addr_space[] = { | ||
3037 | { | ||
3038 | .pa_start = 0x48048000, | ||
3039 | .pa_end = 0x48048000 + SZ_1K - 1, | ||
3040 | .flags = ADDR_TYPE_RT | ||
3041 | }, | ||
3042 | { } | ||
3043 | }; | ||
3044 | |||
3045 | static struct omap_hwmod_ocp_if am33xx_l4_ls__timer6 = { | ||
3046 | .master = &am33xx_l4_ls_hwmod, | ||
3047 | .slave = &am33xx_timer6_hwmod, | ||
3048 | .clk = "l4ls_gclk", | ||
3049 | .addr = am33xx_timer6_addr_space, | ||
3050 | .user = OCP_USER_MPU, | ||
3051 | }; | ||
3052 | |||
3053 | /* l4 per -> timer7 */ | ||
3054 | static struct omap_hwmod_addr_space am33xx_timer7_addr_space[] = { | ||
3055 | { | ||
3056 | .pa_start = 0x4804A000, | ||
3057 | .pa_end = 0x4804A000 + SZ_1K - 1, | ||
3058 | .flags = ADDR_TYPE_RT | ||
3059 | }, | ||
3060 | { } | ||
3061 | }; | ||
3062 | |||
3063 | static struct omap_hwmod_ocp_if am33xx_l4_ls__timer7 = { | ||
3064 | .master = &am33xx_l4_ls_hwmod, | ||
3065 | .slave = &am33xx_timer7_hwmod, | ||
3066 | .clk = "l4ls_gclk", | ||
3067 | .addr = am33xx_timer7_addr_space, | ||
3068 | .user = OCP_USER_MPU, | ||
3069 | }; | ||
3070 | |||
3071 | /* l3 main -> tpcc */ | ||
3072 | static struct omap_hwmod_addr_space am33xx_tpcc_addr_space[] = { | ||
3073 | { | ||
3074 | .pa_start = 0x49000000, | ||
3075 | .pa_end = 0x49000000 + SZ_32K - 1, | ||
3076 | .flags = ADDR_TYPE_RT | ||
3077 | }, | ||
3078 | { } | ||
3079 | }; | ||
3080 | |||
3081 | static struct omap_hwmod_ocp_if am33xx_l3_main__tpcc = { | ||
3082 | .master = &am33xx_l3_main_hwmod, | ||
3083 | .slave = &am33xx_tpcc_hwmod, | ||
3084 | .clk = "l3_gclk", | ||
3085 | .addr = am33xx_tpcc_addr_space, | ||
3086 | .user = OCP_USER_MPU, | ||
3087 | }; | ||
3088 | |||
3089 | /* l3 main -> tpcc0 */ | ||
3090 | static struct omap_hwmod_addr_space am33xx_tptc0_addr_space[] = { | ||
3091 | { | ||
3092 | .pa_start = 0x49800000, | ||
3093 | .pa_end = 0x49800000 + SZ_8K - 1, | ||
3094 | .flags = ADDR_TYPE_RT, | ||
3095 | }, | ||
3096 | { } | ||
3097 | }; | ||
3098 | |||
3099 | static struct omap_hwmod_ocp_if am33xx_l3_main__tptc0 = { | ||
3100 | .master = &am33xx_l3_main_hwmod, | ||
3101 | .slave = &am33xx_tptc0_hwmod, | ||
3102 | .clk = "l3_gclk", | ||
3103 | .addr = am33xx_tptc0_addr_space, | ||
3104 | .user = OCP_USER_MPU, | ||
3105 | }; | ||
3106 | |||
3107 | /* l3 main -> tpcc1 */ | ||
3108 | static struct omap_hwmod_addr_space am33xx_tptc1_addr_space[] = { | ||
3109 | { | ||
3110 | .pa_start = 0x49900000, | ||
3111 | .pa_end = 0x49900000 + SZ_8K - 1, | ||
3112 | .flags = ADDR_TYPE_RT, | ||
3113 | }, | ||
3114 | { } | ||
3115 | }; | ||
3116 | |||
3117 | static struct omap_hwmod_ocp_if am33xx_l3_main__tptc1 = { | ||
3118 | .master = &am33xx_l3_main_hwmod, | ||
3119 | .slave = &am33xx_tptc1_hwmod, | ||
3120 | .clk = "l3_gclk", | ||
3121 | .addr = am33xx_tptc1_addr_space, | ||
3122 | .user = OCP_USER_MPU, | ||
3123 | }; | ||
3124 | |||
3125 | /* l3 main -> tpcc2 */ | ||
3126 | static struct omap_hwmod_addr_space am33xx_tptc2_addr_space[] = { | ||
3127 | { | ||
3128 | .pa_start = 0x49a00000, | ||
3129 | .pa_end = 0x49a00000 + SZ_8K - 1, | ||
3130 | .flags = ADDR_TYPE_RT, | ||
3131 | }, | ||
3132 | { } | ||
3133 | }; | ||
3134 | |||
3135 | static struct omap_hwmod_ocp_if am33xx_l3_main__tptc2 = { | ||
3136 | .master = &am33xx_l3_main_hwmod, | ||
3137 | .slave = &am33xx_tptc2_hwmod, | ||
3138 | .clk = "l3_gclk", | ||
3139 | .addr = am33xx_tptc2_addr_space, | ||
3140 | .user = OCP_USER_MPU, | ||
3141 | }; | ||
3142 | |||
3143 | /* l4 wkup -> uart1 */ | ||
3144 | static struct omap_hwmod_addr_space am33xx_uart1_addr_space[] = { | ||
3145 | { | ||
3146 | .pa_start = 0x44E09000, | ||
3147 | .pa_end = 0x44E09000 + SZ_8K - 1, | ||
3148 | .flags = ADDR_TYPE_RT, | ||
3149 | }, | ||
3150 | { } | ||
3151 | }; | ||
3152 | |||
3153 | static struct omap_hwmod_ocp_if am33xx_l4_wkup__uart1 = { | ||
3154 | .master = &am33xx_l4_wkup_hwmod, | ||
3155 | .slave = &am33xx_uart1_hwmod, | ||
3156 | .clk = "dpll_core_m4_div2_ck", | ||
3157 | .addr = am33xx_uart1_addr_space, | ||
3158 | .user = OCP_USER_MPU, | ||
3159 | }; | ||
3160 | |||
3161 | /* l4 ls -> uart2 */ | ||
3162 | static struct omap_hwmod_addr_space am33xx_uart2_addr_space[] = { | ||
3163 | { | ||
3164 | .pa_start = 0x48022000, | ||
3165 | .pa_end = 0x48022000 + SZ_8K - 1, | ||
3166 | .flags = ADDR_TYPE_RT, | ||
3167 | }, | ||
3168 | { } | ||
3169 | }; | ||
3170 | |||
3171 | static struct omap_hwmod_ocp_if am33xx_l4_ls__uart2 = { | ||
3172 | .master = &am33xx_l4_ls_hwmod, | ||
3173 | .slave = &am33xx_uart2_hwmod, | ||
3174 | .clk = "l4ls_gclk", | ||
3175 | .addr = am33xx_uart2_addr_space, | ||
3176 | .user = OCP_USER_MPU, | ||
3177 | }; | ||
3178 | |||
3179 | /* l4 ls -> uart3 */ | ||
3180 | static struct omap_hwmod_addr_space am33xx_uart3_addr_space[] = { | ||
3181 | { | ||
3182 | .pa_start = 0x48024000, | ||
3183 | .pa_end = 0x48024000 + SZ_8K - 1, | ||
3184 | .flags = ADDR_TYPE_RT, | ||
3185 | }, | ||
3186 | { } | ||
3187 | }; | ||
3188 | |||
3189 | static struct omap_hwmod_ocp_if am33xx_l4_ls__uart3 = { | ||
3190 | .master = &am33xx_l4_ls_hwmod, | ||
3191 | .slave = &am33xx_uart3_hwmod, | ||
3192 | .clk = "l4ls_gclk", | ||
3193 | .addr = am33xx_uart3_addr_space, | ||
3194 | .user = OCP_USER_MPU, | ||
3195 | }; | ||
3196 | |||
3197 | /* l4 ls -> uart4 */ | ||
3198 | static struct omap_hwmod_addr_space am33xx_uart4_addr_space[] = { | ||
3199 | { | ||
3200 | .pa_start = 0x481A6000, | ||
3201 | .pa_end = 0x481A6000 + SZ_8K - 1, | ||
3202 | .flags = ADDR_TYPE_RT, | ||
3203 | }, | ||
3204 | { } | ||
3205 | }; | ||
3206 | |||
3207 | static struct omap_hwmod_ocp_if am33xx_l4_ls__uart4 = { | ||
3208 | .master = &am33xx_l4_ls_hwmod, | ||
3209 | .slave = &am33xx_uart4_hwmod, | ||
3210 | .clk = "l4ls_gclk", | ||
3211 | .addr = am33xx_uart4_addr_space, | ||
3212 | .user = OCP_USER_MPU, | ||
3213 | }; | ||
3214 | |||
3215 | /* l4 ls -> uart5 */ | ||
3216 | static struct omap_hwmod_addr_space am33xx_uart5_addr_space[] = { | ||
3217 | { | ||
3218 | .pa_start = 0x481A8000, | ||
3219 | .pa_end = 0x481A8000 + SZ_8K - 1, | ||
3220 | .flags = ADDR_TYPE_RT, | ||
3221 | }, | ||
3222 | { } | ||
3223 | }; | ||
3224 | |||
3225 | static struct omap_hwmod_ocp_if am33xx_l4_ls__uart5 = { | ||
3226 | .master = &am33xx_l4_ls_hwmod, | ||
3227 | .slave = &am33xx_uart5_hwmod, | ||
3228 | .clk = "l4ls_gclk", | ||
3229 | .addr = am33xx_uart5_addr_space, | ||
3230 | .user = OCP_USER_MPU, | ||
3231 | }; | ||
3232 | |||
3233 | /* l4 ls -> uart6 */ | ||
3234 | static struct omap_hwmod_addr_space am33xx_uart6_addr_space[] = { | ||
3235 | { | ||
3236 | .pa_start = 0x481aa000, | ||
3237 | .pa_end = 0x481aa000 + SZ_8K - 1, | ||
3238 | .flags = ADDR_TYPE_RT, | ||
3239 | }, | ||
3240 | { } | ||
3241 | }; | ||
3242 | |||
3243 | static struct omap_hwmod_ocp_if am33xx_l4_ls__uart6 = { | ||
3244 | .master = &am33xx_l4_ls_hwmod, | ||
3245 | .slave = &am33xx_uart6_hwmod, | ||
3246 | .clk = "l4ls_gclk", | ||
3247 | .addr = am33xx_uart6_addr_space, | ||
3248 | .user = OCP_USER_MPU, | ||
3249 | }; | ||
3250 | |||
3251 | /* l4 wkup -> wd_timer1 */ | ||
3252 | static struct omap_hwmod_addr_space am33xx_wd_timer1_addrs[] = { | ||
3253 | { | ||
3254 | .pa_start = 0x44e35000, | ||
3255 | .pa_end = 0x44e35000 + SZ_4K - 1, | ||
3256 | .flags = ADDR_TYPE_RT | ||
3257 | }, | ||
3258 | { } | ||
3259 | }; | ||
3260 | |||
3261 | static struct omap_hwmod_ocp_if am33xx_l4_wkup__wd_timer1 = { | ||
3262 | .master = &am33xx_l4_wkup_hwmod, | ||
3263 | .slave = &am33xx_wd_timer1_hwmod, | ||
3264 | .clk = "dpll_core_m4_div2_ck", | ||
3265 | .addr = am33xx_wd_timer1_addrs, | ||
3266 | .user = OCP_USER_MPU, | ||
3267 | }; | ||
3268 | |||
3269 | /* usbss */ | ||
3270 | /* l3 s -> USBSS interface */ | ||
3271 | static struct omap_hwmod_addr_space am33xx_usbss_addr_space[] = { | ||
3272 | { | ||
3273 | .name = "usbss", | ||
3274 | .pa_start = 0x47400000, | ||
3275 | .pa_end = 0x47400000 + SZ_4K - 1, | ||
3276 | .flags = ADDR_TYPE_RT | ||
3277 | }, | ||
3278 | { | ||
3279 | .name = "musb0", | ||
3280 | .pa_start = 0x47401000, | ||
3281 | .pa_end = 0x47401000 + SZ_2K - 1, | ||
3282 | .flags = ADDR_TYPE_RT | ||
3283 | }, | ||
3284 | { | ||
3285 | .name = "musb1", | ||
3286 | .pa_start = 0x47401800, | ||
3287 | .pa_end = 0x47401800 + SZ_2K - 1, | ||
3288 | .flags = ADDR_TYPE_RT | ||
3289 | }, | ||
3290 | { } | ||
3291 | }; | ||
3292 | |||
3293 | static struct omap_hwmod_ocp_if am33xx_l3_s__usbss = { | ||
3294 | .master = &am33xx_l3_s_hwmod, | ||
3295 | .slave = &am33xx_usbss_hwmod, | ||
3296 | .clk = "l3s_gclk", | ||
3297 | .addr = am33xx_usbss_addr_space, | ||
3298 | .user = OCP_USER_MPU, | ||
3299 | .flags = OCPIF_SWSUP_IDLE, | ||
3300 | }; | ||
3301 | |||
3302 | static struct omap_hwmod_ocp_if *am33xx_hwmod_ocp_ifs[] __initdata = { | ||
3303 | &am33xx_l4_fw__emif_fw, | ||
3304 | &am33xx_l3_main__emif, | ||
3305 | &am33xx_mpu__l3_main, | ||
3306 | &am33xx_mpu__prcm, | ||
3307 | &am33xx_l3_s__l4_ls, | ||
3308 | &am33xx_l3_s__l4_wkup, | ||
3309 | &am33xx_l3_s__l4_fw, | ||
3310 | &am33xx_l3_main__l4_hs, | ||
3311 | &am33xx_l3_main__l3_s, | ||
3312 | &am33xx_l3_main__l3_instr, | ||
3313 | &am33xx_l3_main__gfx, | ||
3314 | &am33xx_l3_s__l3_main, | ||
3315 | &am33xx_pruss__l3_main, | ||
3316 | &am33xx_wkup_m3__l4_wkup, | ||
3317 | &am33xx_gfx__l3_main, | ||
3318 | &am33xx_l4_wkup__wkup_m3, | ||
3319 | &am33xx_l4_wkup__control, | ||
3320 | &am33xx_l4_wkup__smartreflex0, | ||
3321 | &am33xx_l4_wkup__smartreflex1, | ||
3322 | &am33xx_l4_wkup__uart1, | ||
3323 | &am33xx_l4_wkup__timer1, | ||
3324 | &am33xx_l4_wkup__rtc, | ||
3325 | &am33xx_l4_wkup__i2c1, | ||
3326 | &am33xx_l4_wkup__gpio0, | ||
3327 | &am33xx_l4_wkup__adc_tsc, | ||
3328 | &am33xx_l4_wkup__wd_timer1, | ||
3329 | &am33xx_l4_hs__pruss, | ||
3330 | &am33xx_l4_per__dcan0, | ||
3331 | &am33xx_l4_per__dcan1, | ||
3332 | &am33xx_l4_per__gpio1, | ||
3333 | &am33xx_l4_per__gpio2, | ||
3334 | &am33xx_l4_per__gpio3, | ||
3335 | &am33xx_l4_per__i2c2, | ||
3336 | &am33xx_l4_per__i2c3, | ||
3337 | &am33xx_l4_per__mailbox, | ||
3338 | &am33xx_l4_ls__mcasp0, | ||
3339 | &am33xx_l3_s__mcasp0_data, | ||
3340 | &am33xx_l4_ls__mcasp1, | ||
3341 | &am33xx_l3_s__mcasp1_data, | ||
3342 | &am33xx_l4_ls__mmc0, | ||
3343 | &am33xx_l4_ls__mmc1, | ||
3344 | &am33xx_l3_s__mmc2, | ||
3345 | &am33xx_l4_ls__timer2, | ||
3346 | &am33xx_l4_ls__timer3, | ||
3347 | &am33xx_l4_ls__timer4, | ||
3348 | &am33xx_l4_ls__timer5, | ||
3349 | &am33xx_l4_ls__timer6, | ||
3350 | &am33xx_l4_ls__timer7, | ||
3351 | &am33xx_l3_main__tpcc, | ||
3352 | &am33xx_l4_ls__uart2, | ||
3353 | &am33xx_l4_ls__uart3, | ||
3354 | &am33xx_l4_ls__uart4, | ||
3355 | &am33xx_l4_ls__uart5, | ||
3356 | &am33xx_l4_ls__uart6, | ||
3357 | &am33xx_l4_ls__spinlock, | ||
3358 | &am33xx_l4_ls__elm, | ||
3359 | &am33xx_l4_ls__ehrpwm0, | ||
3360 | &am33xx_l4_ls__ehrpwm1, | ||
3361 | &am33xx_l4_ls__ehrpwm2, | ||
3362 | &am33xx_l4_ls__ecap0, | ||
3363 | &am33xx_l4_ls__ecap1, | ||
3364 | &am33xx_l4_ls__ecap2, | ||
3365 | &am33xx_l3_s__gpmc, | ||
3366 | &am33xx_l3_main__lcdc, | ||
3367 | &am33xx_l4_ls__mcspi0, | ||
3368 | &am33xx_l4_ls__mcspi1, | ||
3369 | &am33xx_l3_main__tptc0, | ||
3370 | &am33xx_l3_main__tptc1, | ||
3371 | &am33xx_l3_main__tptc2, | ||
3372 | &am33xx_l3_s__usbss, | ||
3373 | &am33xx_l4_hs__cpgmac0, | ||
3374 | NULL, | ||
3375 | }; | ||
3376 | |||
3377 | int __init am33xx_hwmod_init(void) | ||
3378 | { | ||
3379 | omap_hwmod_init(); | ||
3380 | return omap_hwmod_register_links(am33xx_hwmod_ocp_ifs); | ||
3381 | } | ||
diff --git a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c index c9e38200216b..f67b7ee07dd4 100644 --- a/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_3xxx_data.c | |||
@@ -15,26 +15,27 @@ | |||
15 | * XXX these should be marked initdata for multi-OMAP kernels | 15 | * XXX these should be marked initdata for multi-OMAP kernels |
16 | */ | 16 | */ |
17 | #include <linux/power/smartreflex.h> | 17 | #include <linux/power/smartreflex.h> |
18 | #include <linux/platform_data/gpio-omap.h> | ||
18 | 19 | ||
19 | #include <plat/omap_hwmod.h> | 20 | #include <plat/omap_hwmod.h> |
20 | #include <mach/irqs.h> | ||
21 | #include <plat/cpu.h> | ||
22 | #include <plat/dma.h> | 21 | #include <plat/dma.h> |
23 | #include <plat/serial.h> | 22 | #include <plat/serial.h> |
24 | #include <plat/l3_3xxx.h> | 23 | #include "l3_3xxx.h" |
25 | #include <plat/l4_3xxx.h> | 24 | #include "l4_3xxx.h" |
26 | #include <plat/i2c.h> | 25 | #include <plat/i2c.h> |
27 | #include <plat/gpio.h> | ||
28 | #include <plat/mmc.h> | 26 | #include <plat/mmc.h> |
29 | #include <plat/mcbsp.h> | 27 | #include <linux/platform_data/asoc-ti-mcbsp.h> |
30 | #include <plat/mcspi.h> | 28 | #include <linux/platform_data/spi-omap2-mcspi.h> |
31 | #include <plat/dmtimer.h> | 29 | #include <plat/dmtimer.h> |
30 | #include <plat/iommu.h> | ||
32 | 31 | ||
32 | #include "am35xx.h" | ||
33 | |||
34 | #include "soc.h" | ||
33 | #include "omap_hwmod_common_data.h" | 35 | #include "omap_hwmod_common_data.h" |
34 | #include "prm-regbits-34xx.h" | 36 | #include "prm-regbits-34xx.h" |
35 | #include "cm-regbits-34xx.h" | 37 | #include "cm-regbits-34xx.h" |
36 | #include "wd_timer.h" | 38 | #include "wd_timer.h" |
37 | #include <mach/am35xx.h> | ||
38 | 39 | ||
39 | /* | 40 | /* |
40 | * OMAP3xxx hardware module integration data | 41 | * OMAP3xxx hardware module integration data |
@@ -51,9 +52,9 @@ | |||
51 | 52 | ||
52 | /* L3 */ | 53 | /* L3 */ |
53 | static struct omap_hwmod_irq_info omap3xxx_l3_main_irqs[] = { | 54 | static struct omap_hwmod_irq_info omap3xxx_l3_main_irqs[] = { |
54 | { .irq = INT_34XX_L3_DBG_IRQ }, | 55 | { .irq = 9 + OMAP_INTC_START, }, |
55 | { .irq = INT_34XX_L3_APP_IRQ }, | 56 | { .irq = 10 + OMAP_INTC_START, }, |
56 | { .irq = -1 } | 57 | { .irq = -1 }, |
57 | }; | 58 | }; |
58 | 59 | ||
59 | static struct omap_hwmod omap3xxx_l3_main_hwmod = { | 60 | static struct omap_hwmod omap3xxx_l3_main_hwmod = { |
@@ -92,17 +93,23 @@ static struct omap_hwmod omap3xxx_l4_sec_hwmod = { | |||
92 | }; | 93 | }; |
93 | 94 | ||
94 | /* MPU */ | 95 | /* MPU */ |
96 | static struct omap_hwmod_irq_info omap3xxx_mpu_irqs[] = { | ||
97 | { .name = "pmu", .irq = 3 + OMAP_INTC_START }, | ||
98 | { .irq = -1 } | ||
99 | }; | ||
100 | |||
95 | static struct omap_hwmod omap3xxx_mpu_hwmod = { | 101 | static struct omap_hwmod omap3xxx_mpu_hwmod = { |
96 | .name = "mpu", | 102 | .name = "mpu", |
103 | .mpu_irqs = omap3xxx_mpu_irqs, | ||
97 | .class = &mpu_hwmod_class, | 104 | .class = &mpu_hwmod_class, |
98 | .main_clk = "arm_fck", | 105 | .main_clk = "arm_fck", |
99 | }; | 106 | }; |
100 | 107 | ||
101 | /* IVA2 (IVA2) */ | 108 | /* IVA2 (IVA2) */ |
102 | static struct omap_hwmod_rst_info omap3xxx_iva_resets[] = { | 109 | static struct omap_hwmod_rst_info omap3xxx_iva_resets[] = { |
103 | { .name = "logic", .rst_shift = 0 }, | 110 | { .name = "logic", .rst_shift = 0, .st_shift = 8 }, |
104 | { .name = "seq0", .rst_shift = 1 }, | 111 | { .name = "seq0", .rst_shift = 1, .st_shift = 9 }, |
105 | { .name = "seq1", .rst_shift = 2 }, | 112 | { .name = "seq1", .rst_shift = 2, .st_shift = 10 }, |
106 | }; | 113 | }; |
107 | 114 | ||
108 | static struct omap_hwmod omap3xxx_iva_hwmod = { | 115 | static struct omap_hwmod omap3xxx_iva_hwmod = { |
@@ -112,6 +119,33 @@ static struct omap_hwmod omap3xxx_iva_hwmod = { | |||
112 | .rst_lines = omap3xxx_iva_resets, | 119 | .rst_lines = omap3xxx_iva_resets, |
113 | .rst_lines_cnt = ARRAY_SIZE(omap3xxx_iva_resets), | 120 | .rst_lines_cnt = ARRAY_SIZE(omap3xxx_iva_resets), |
114 | .main_clk = "iva2_ck", | 121 | .main_clk = "iva2_ck", |
122 | .prcm = { | ||
123 | .omap2 = { | ||
124 | .module_offs = OMAP3430_IVA2_MOD, | ||
125 | .prcm_reg_id = 1, | ||
126 | .module_bit = OMAP3430_CM_FCLKEN_IVA2_EN_IVA2_SHIFT, | ||
127 | .idlest_reg_id = 1, | ||
128 | .idlest_idle_bit = OMAP3430_ST_IVA2_SHIFT, | ||
129 | } | ||
130 | }, | ||
131 | }; | ||
132 | |||
133 | /* | ||
134 | * 'debugss' class | ||
135 | * debug and emulation sub system | ||
136 | */ | ||
137 | |||
138 | static struct omap_hwmod_class omap3xxx_debugss_hwmod_class = { | ||
139 | .name = "debugss", | ||
140 | }; | ||
141 | |||
142 | /* debugss */ | ||
143 | static struct omap_hwmod omap3xxx_debugss_hwmod = { | ||
144 | .name = "debugss", | ||
145 | .class = &omap3xxx_debugss_hwmod_class, | ||
146 | .clkdm_name = "emu_clkdm", | ||
147 | .main_clk = "emu_src_ck", | ||
148 | .flags = HWMOD_NO_IDLEST, | ||
115 | }; | 149 | }; |
116 | 150 | ||
117 | /* timer class */ | 151 | /* timer class */ |
@@ -161,6 +195,16 @@ static struct omap_timer_capability_dev_attr capability_pwm_dev_attr = { | |||
161 | .timer_capability = OMAP_TIMER_HAS_PWM, | 195 | .timer_capability = OMAP_TIMER_HAS_PWM, |
162 | }; | 196 | }; |
163 | 197 | ||
198 | /* timers with DSP interrupt dev attribute */ | ||
199 | static struct omap_timer_capability_dev_attr capability_dsp_dev_attr = { | ||
200 | .timer_capability = OMAP_TIMER_HAS_DSP_IRQ, | ||
201 | }; | ||
202 | |||
203 | /* pwm timers with DSP interrupt dev attribute */ | ||
204 | static struct omap_timer_capability_dev_attr capability_dsp_pwm_dev_attr = { | ||
205 | .timer_capability = OMAP_TIMER_HAS_DSP_IRQ | OMAP_TIMER_HAS_PWM, | ||
206 | }; | ||
207 | |||
164 | /* timer1 */ | 208 | /* timer1 */ |
165 | static struct omap_hwmod omap3xxx_timer1_hwmod = { | 209 | static struct omap_hwmod omap3xxx_timer1_hwmod = { |
166 | .name = "timer1", | 210 | .name = "timer1", |
@@ -244,6 +288,7 @@ static struct omap_hwmod omap3xxx_timer5_hwmod = { | |||
244 | .idlest_idle_bit = OMAP3430_ST_GPT5_SHIFT, | 288 | .idlest_idle_bit = OMAP3430_ST_GPT5_SHIFT, |
245 | }, | 289 | }, |
246 | }, | 290 | }, |
291 | .dev_attr = &capability_dsp_dev_attr, | ||
247 | .class = &omap3xxx_timer_hwmod_class, | 292 | .class = &omap3xxx_timer_hwmod_class, |
248 | }; | 293 | }; |
249 | 294 | ||
@@ -261,6 +306,7 @@ static struct omap_hwmod omap3xxx_timer6_hwmod = { | |||
261 | .idlest_idle_bit = OMAP3430_ST_GPT6_SHIFT, | 306 | .idlest_idle_bit = OMAP3430_ST_GPT6_SHIFT, |
262 | }, | 307 | }, |
263 | }, | 308 | }, |
309 | .dev_attr = &capability_dsp_dev_attr, | ||
264 | .class = &omap3xxx_timer_hwmod_class, | 310 | .class = &omap3xxx_timer_hwmod_class, |
265 | }; | 311 | }; |
266 | 312 | ||
@@ -278,6 +324,7 @@ static struct omap_hwmod omap3xxx_timer7_hwmod = { | |||
278 | .idlest_idle_bit = OMAP3430_ST_GPT7_SHIFT, | 324 | .idlest_idle_bit = OMAP3430_ST_GPT7_SHIFT, |
279 | }, | 325 | }, |
280 | }, | 326 | }, |
327 | .dev_attr = &capability_dsp_dev_attr, | ||
281 | .class = &omap3xxx_timer_hwmod_class, | 328 | .class = &omap3xxx_timer_hwmod_class, |
282 | }; | 329 | }; |
283 | 330 | ||
@@ -295,7 +342,7 @@ static struct omap_hwmod omap3xxx_timer8_hwmod = { | |||
295 | .idlest_idle_bit = OMAP3430_ST_GPT8_SHIFT, | 342 | .idlest_idle_bit = OMAP3430_ST_GPT8_SHIFT, |
296 | }, | 343 | }, |
297 | }, | 344 | }, |
298 | .dev_attr = &capability_pwm_dev_attr, | 345 | .dev_attr = &capability_dsp_pwm_dev_attr, |
299 | .class = &omap3xxx_timer_hwmod_class, | 346 | .class = &omap3xxx_timer_hwmod_class, |
300 | }; | 347 | }; |
301 | 348 | ||
@@ -355,8 +402,8 @@ static struct omap_hwmod omap3xxx_timer11_hwmod = { | |||
355 | 402 | ||
356 | /* timer12 */ | 403 | /* timer12 */ |
357 | static struct omap_hwmod_irq_info omap3xxx_timer12_mpu_irqs[] = { | 404 | static struct omap_hwmod_irq_info omap3xxx_timer12_mpu_irqs[] = { |
358 | { .irq = 95, }, | 405 | { .irq = 95 + OMAP_INTC_START, }, |
359 | { .irq = -1 } | 406 | { .irq = -1 }, |
360 | }; | 407 | }; |
361 | 408 | ||
362 | static struct omap_hwmod omap3xxx_timer12_hwmod = { | 409 | static struct omap_hwmod omap3xxx_timer12_hwmod = { |
@@ -490,8 +537,8 @@ static struct omap_hwmod omap3xxx_uart3_hwmod = { | |||
490 | 537 | ||
491 | /* UART4 */ | 538 | /* UART4 */ |
492 | static struct omap_hwmod_irq_info uart4_mpu_irqs[] = { | 539 | static struct omap_hwmod_irq_info uart4_mpu_irqs[] = { |
493 | { .irq = INT_36XX_UART4_IRQ, }, | 540 | { .irq = 80 + OMAP_INTC_START, }, |
494 | { .irq = -1 } | 541 | { .irq = -1 }, |
495 | }; | 542 | }; |
496 | 543 | ||
497 | static struct omap_hwmod_dma_info uart4_sdma_reqs[] = { | 544 | static struct omap_hwmod_dma_info uart4_sdma_reqs[] = { |
@@ -518,8 +565,8 @@ static struct omap_hwmod omap36xx_uart4_hwmod = { | |||
518 | }; | 565 | }; |
519 | 566 | ||
520 | static struct omap_hwmod_irq_info am35xx_uart4_mpu_irqs[] = { | 567 | static struct omap_hwmod_irq_info am35xx_uart4_mpu_irqs[] = { |
521 | { .irq = INT_35XX_UART4_IRQ, }, | 568 | { .irq = 84 + OMAP_INTC_START, }, |
522 | { .irq = -1 } | 569 | { .irq = -1 }, |
523 | }; | 570 | }; |
524 | 571 | ||
525 | static struct omap_hwmod_dma_info am35xx_uart4_sdma_reqs[] = { | 572 | static struct omap_hwmod_dma_info am35xx_uart4_sdma_reqs[] = { |
@@ -674,8 +721,8 @@ static struct omap_hwmod_class omap3xxx_dsi_hwmod_class = { | |||
674 | }; | 721 | }; |
675 | 722 | ||
676 | static struct omap_hwmod_irq_info omap3xxx_dsi1_irqs[] = { | 723 | static struct omap_hwmod_irq_info omap3xxx_dsi1_irqs[] = { |
677 | { .irq = 25 }, | 724 | { .irq = 25 + OMAP_INTC_START, }, |
678 | { .irq = -1 } | 725 | { .irq = -1 }, |
679 | }; | 726 | }; |
680 | 727 | ||
681 | /* dss_dsi1 */ | 728 | /* dss_dsi1 */ |
@@ -804,8 +851,8 @@ static struct omap_i2c_dev_attr i2c3_dev_attr = { | |||
804 | }; | 851 | }; |
805 | 852 | ||
806 | static struct omap_hwmod_irq_info i2c3_mpu_irqs[] = { | 853 | static struct omap_hwmod_irq_info i2c3_mpu_irqs[] = { |
807 | { .irq = INT_34XX_I2C3_IRQ, }, | 854 | { .irq = 61 + OMAP_INTC_START, }, |
808 | { .irq = -1 } | 855 | { .irq = -1 }, |
809 | }; | 856 | }; |
810 | 857 | ||
811 | static struct omap_hwmod_dma_info i2c3_sdma_reqs[] = { | 858 | static struct omap_hwmod_dma_info i2c3_sdma_reqs[] = { |
@@ -963,8 +1010,8 @@ static struct omap_hwmod omap3xxx_gpio4_hwmod = { | |||
963 | 1010 | ||
964 | /* gpio5 */ | 1011 | /* gpio5 */ |
965 | static struct omap_hwmod_irq_info omap3xxx_gpio5_irqs[] = { | 1012 | static struct omap_hwmod_irq_info omap3xxx_gpio5_irqs[] = { |
966 | { .irq = 33 }, /* INT_34XX_GPIO_BANK5 */ | 1013 | { .irq = 33 + OMAP_INTC_START, }, /* INT_34XX_GPIO_BANK5 */ |
967 | { .irq = -1 } | 1014 | { .irq = -1 }, |
968 | }; | 1015 | }; |
969 | 1016 | ||
970 | static struct omap_hwmod_opt_clk gpio5_opt_clks[] = { | 1017 | static struct omap_hwmod_opt_clk gpio5_opt_clks[] = { |
@@ -993,8 +1040,8 @@ static struct omap_hwmod omap3xxx_gpio5_hwmod = { | |||
993 | 1040 | ||
994 | /* gpio6 */ | 1041 | /* gpio6 */ |
995 | static struct omap_hwmod_irq_info omap3xxx_gpio6_irqs[] = { | 1042 | static struct omap_hwmod_irq_info omap3xxx_gpio6_irqs[] = { |
996 | { .irq = 34 }, /* INT_34XX_GPIO_BANK6 */ | 1043 | { .irq = 34 + OMAP_INTC_START, }, /* INT_34XX_GPIO_BANK6 */ |
997 | { .irq = -1 } | 1044 | { .irq = -1 }, |
998 | }; | 1045 | }; |
999 | 1046 | ||
1000 | static struct omap_hwmod_opt_clk gpio6_opt_clks[] = { | 1047 | static struct omap_hwmod_opt_clk gpio6_opt_clks[] = { |
@@ -1098,10 +1145,10 @@ static struct omap_hwmod_opt_clk mcbsp234_opt_clks[] = { | |||
1098 | 1145 | ||
1099 | /* mcbsp1 */ | 1146 | /* mcbsp1 */ |
1100 | static struct omap_hwmod_irq_info omap3xxx_mcbsp1_irqs[] = { | 1147 | static struct omap_hwmod_irq_info omap3xxx_mcbsp1_irqs[] = { |
1101 | { .name = "common", .irq = 16 }, | 1148 | { .name = "common", .irq = 16 + OMAP_INTC_START, }, |
1102 | { .name = "tx", .irq = 59 }, | 1149 | { .name = "tx", .irq = 59 + OMAP_INTC_START, }, |
1103 | { .name = "rx", .irq = 60 }, | 1150 | { .name = "rx", .irq = 60 + OMAP_INTC_START, }, |
1104 | { .irq = -1 } | 1151 | { .irq = -1 }, |
1105 | }; | 1152 | }; |
1106 | 1153 | ||
1107 | static struct omap_hwmod omap3xxx_mcbsp1_hwmod = { | 1154 | static struct omap_hwmod omap3xxx_mcbsp1_hwmod = { |
@@ -1125,10 +1172,10 @@ static struct omap_hwmod omap3xxx_mcbsp1_hwmod = { | |||
1125 | 1172 | ||
1126 | /* mcbsp2 */ | 1173 | /* mcbsp2 */ |
1127 | static struct omap_hwmod_irq_info omap3xxx_mcbsp2_irqs[] = { | 1174 | static struct omap_hwmod_irq_info omap3xxx_mcbsp2_irqs[] = { |
1128 | { .name = "common", .irq = 17 }, | 1175 | { .name = "common", .irq = 17 + OMAP_INTC_START, }, |
1129 | { .name = "tx", .irq = 62 }, | 1176 | { .name = "tx", .irq = 62 + OMAP_INTC_START, }, |
1130 | { .name = "rx", .irq = 63 }, | 1177 | { .name = "rx", .irq = 63 + OMAP_INTC_START, }, |
1131 | { .irq = -1 } | 1178 | { .irq = -1 }, |
1132 | }; | 1179 | }; |
1133 | 1180 | ||
1134 | static struct omap_mcbsp_dev_attr omap34xx_mcbsp2_dev_attr = { | 1181 | static struct omap_mcbsp_dev_attr omap34xx_mcbsp2_dev_attr = { |
@@ -1157,10 +1204,10 @@ static struct omap_hwmod omap3xxx_mcbsp2_hwmod = { | |||
1157 | 1204 | ||
1158 | /* mcbsp3 */ | 1205 | /* mcbsp3 */ |
1159 | static struct omap_hwmod_irq_info omap3xxx_mcbsp3_irqs[] = { | 1206 | static struct omap_hwmod_irq_info omap3xxx_mcbsp3_irqs[] = { |
1160 | { .name = "common", .irq = 22 }, | 1207 | { .name = "common", .irq = 22 + OMAP_INTC_START, }, |
1161 | { .name = "tx", .irq = 89 }, | 1208 | { .name = "tx", .irq = 89 + OMAP_INTC_START, }, |
1162 | { .name = "rx", .irq = 90 }, | 1209 | { .name = "rx", .irq = 90 + OMAP_INTC_START, }, |
1163 | { .irq = -1 } | 1210 | { .irq = -1 }, |
1164 | }; | 1211 | }; |
1165 | 1212 | ||
1166 | static struct omap_mcbsp_dev_attr omap34xx_mcbsp3_dev_attr = { | 1213 | static struct omap_mcbsp_dev_attr omap34xx_mcbsp3_dev_attr = { |
@@ -1189,10 +1236,10 @@ static struct omap_hwmod omap3xxx_mcbsp3_hwmod = { | |||
1189 | 1236 | ||
1190 | /* mcbsp4 */ | 1237 | /* mcbsp4 */ |
1191 | static struct omap_hwmod_irq_info omap3xxx_mcbsp4_irqs[] = { | 1238 | static struct omap_hwmod_irq_info omap3xxx_mcbsp4_irqs[] = { |
1192 | { .name = "common", .irq = 23 }, | 1239 | { .name = "common", .irq = 23 + OMAP_INTC_START, }, |
1193 | { .name = "tx", .irq = 54 }, | 1240 | { .name = "tx", .irq = 54 + OMAP_INTC_START, }, |
1194 | { .name = "rx", .irq = 55 }, | 1241 | { .name = "rx", .irq = 55 + OMAP_INTC_START, }, |
1195 | { .irq = -1 } | 1242 | { .irq = -1 }, |
1196 | }; | 1243 | }; |
1197 | 1244 | ||
1198 | static struct omap_hwmod_dma_info omap3xxx_mcbsp4_sdma_chs[] = { | 1245 | static struct omap_hwmod_dma_info omap3xxx_mcbsp4_sdma_chs[] = { |
@@ -1222,10 +1269,10 @@ static struct omap_hwmod omap3xxx_mcbsp4_hwmod = { | |||
1222 | 1269 | ||
1223 | /* mcbsp5 */ | 1270 | /* mcbsp5 */ |
1224 | static struct omap_hwmod_irq_info omap3xxx_mcbsp5_irqs[] = { | 1271 | static struct omap_hwmod_irq_info omap3xxx_mcbsp5_irqs[] = { |
1225 | { .name = "common", .irq = 27 }, | 1272 | { .name = "common", .irq = 27 + OMAP_INTC_START, }, |
1226 | { .name = "tx", .irq = 81 }, | 1273 | { .name = "tx", .irq = 81 + OMAP_INTC_START, }, |
1227 | { .name = "rx", .irq = 82 }, | 1274 | { .name = "rx", .irq = 82 + OMAP_INTC_START, }, |
1228 | { .irq = -1 } | 1275 | { .irq = -1 }, |
1229 | }; | 1276 | }; |
1230 | 1277 | ||
1231 | static struct omap_hwmod_dma_info omap3xxx_mcbsp5_sdma_chs[] = { | 1278 | static struct omap_hwmod_dma_info omap3xxx_mcbsp5_sdma_chs[] = { |
@@ -1267,8 +1314,8 @@ static struct omap_hwmod_class omap3xxx_mcbsp_sidetone_hwmod_class = { | |||
1267 | 1314 | ||
1268 | /* mcbsp2_sidetone */ | 1315 | /* mcbsp2_sidetone */ |
1269 | static struct omap_hwmod_irq_info omap3xxx_mcbsp2_sidetone_irqs[] = { | 1316 | static struct omap_hwmod_irq_info omap3xxx_mcbsp2_sidetone_irqs[] = { |
1270 | { .name = "irq", .irq = 4 }, | 1317 | { .name = "irq", .irq = 4 + OMAP_INTC_START, }, |
1271 | { .irq = -1 } | 1318 | { .irq = -1 }, |
1272 | }; | 1319 | }; |
1273 | 1320 | ||
1274 | static struct omap_hwmod omap3xxx_mcbsp2_sidetone_hwmod = { | 1321 | static struct omap_hwmod omap3xxx_mcbsp2_sidetone_hwmod = { |
@@ -1289,8 +1336,8 @@ static struct omap_hwmod omap3xxx_mcbsp2_sidetone_hwmod = { | |||
1289 | 1336 | ||
1290 | /* mcbsp3_sidetone */ | 1337 | /* mcbsp3_sidetone */ |
1291 | static struct omap_hwmod_irq_info omap3xxx_mcbsp3_sidetone_irqs[] = { | 1338 | static struct omap_hwmod_irq_info omap3xxx_mcbsp3_sidetone_irqs[] = { |
1292 | { .name = "irq", .irq = 5 }, | 1339 | { .name = "irq", .irq = 5 + OMAP_INTC_START, }, |
1293 | { .irq = -1 } | 1340 | { .irq = -1 }, |
1294 | }; | 1341 | }; |
1295 | 1342 | ||
1296 | static struct omap_hwmod omap3xxx_mcbsp3_sidetone_hwmod = { | 1343 | static struct omap_hwmod omap3xxx_mcbsp3_sidetone_hwmod = { |
@@ -1352,8 +1399,8 @@ static struct omap_smartreflex_dev_attr sr1_dev_attr = { | |||
1352 | }; | 1399 | }; |
1353 | 1400 | ||
1354 | static struct omap_hwmod_irq_info omap3_smartreflex_mpu_irqs[] = { | 1401 | static struct omap_hwmod_irq_info omap3_smartreflex_mpu_irqs[] = { |
1355 | { .irq = 18 }, | 1402 | { .irq = 18 + OMAP_INTC_START, }, |
1356 | { .irq = -1 } | 1403 | { .irq = -1 }, |
1357 | }; | 1404 | }; |
1358 | 1405 | ||
1359 | static struct omap_hwmod omap34xx_sr1_hwmod = { | 1406 | static struct omap_hwmod omap34xx_sr1_hwmod = { |
@@ -1397,8 +1444,8 @@ static struct omap_smartreflex_dev_attr sr2_dev_attr = { | |||
1397 | }; | 1444 | }; |
1398 | 1445 | ||
1399 | static struct omap_hwmod_irq_info omap3_smartreflex_core_irqs[] = { | 1446 | static struct omap_hwmod_irq_info omap3_smartreflex_core_irqs[] = { |
1400 | { .irq = 19 }, | 1447 | { .irq = 19 + OMAP_INTC_START, }, |
1401 | { .irq = -1 } | 1448 | { .irq = -1 }, |
1402 | }; | 1449 | }; |
1403 | 1450 | ||
1404 | static struct omap_hwmod omap34xx_sr2_hwmod = { | 1451 | static struct omap_hwmod omap34xx_sr2_hwmod = { |
@@ -1458,8 +1505,8 @@ static struct omap_hwmod_class omap3xxx_mailbox_hwmod_class = { | |||
1458 | }; | 1505 | }; |
1459 | 1506 | ||
1460 | static struct omap_hwmod_irq_info omap3xxx_mailbox_irqs[] = { | 1507 | static struct omap_hwmod_irq_info omap3xxx_mailbox_irqs[] = { |
1461 | { .irq = 26 }, | 1508 | { .irq = 26 + OMAP_INTC_START, }, |
1462 | { .irq = -1 } | 1509 | { .irq = -1 }, |
1463 | }; | 1510 | }; |
1464 | 1511 | ||
1465 | static struct omap_hwmod omap3xxx_mailbox_hwmod = { | 1512 | static struct omap_hwmod omap3xxx_mailbox_hwmod = { |
@@ -1549,8 +1596,8 @@ static struct omap_hwmod omap34xx_mcspi2 = { | |||
1549 | 1596 | ||
1550 | /* mcspi3 */ | 1597 | /* mcspi3 */ |
1551 | static struct omap_hwmod_irq_info omap34xx_mcspi3_mpu_irqs[] = { | 1598 | static struct omap_hwmod_irq_info omap34xx_mcspi3_mpu_irqs[] = { |
1552 | { .name = "irq", .irq = 91 }, /* 91 */ | 1599 | { .name = "irq", .irq = 91 + OMAP_INTC_START, }, /* 91 */ |
1553 | { .irq = -1 } | 1600 | { .irq = -1 }, |
1554 | }; | 1601 | }; |
1555 | 1602 | ||
1556 | static struct omap_hwmod_dma_info omap34xx_mcspi3_sdma_reqs[] = { | 1603 | static struct omap_hwmod_dma_info omap34xx_mcspi3_sdma_reqs[] = { |
@@ -1585,8 +1632,8 @@ static struct omap_hwmod omap34xx_mcspi3 = { | |||
1585 | 1632 | ||
1586 | /* mcspi4 */ | 1633 | /* mcspi4 */ |
1587 | static struct omap_hwmod_irq_info omap34xx_mcspi4_mpu_irqs[] = { | 1634 | static struct omap_hwmod_irq_info omap34xx_mcspi4_mpu_irqs[] = { |
1588 | { .name = "irq", .irq = INT_34XX_SPI4_IRQ }, /* 48 */ | 1635 | { .name = "irq", .irq = 48 + OMAP_INTC_START, }, |
1589 | { .irq = -1 } | 1636 | { .irq = -1 }, |
1590 | }; | 1637 | }; |
1591 | 1638 | ||
1592 | static struct omap_hwmod_dma_info omap34xx_mcspi4_sdma_reqs[] = { | 1639 | static struct omap_hwmod_dma_info omap34xx_mcspi4_sdma_reqs[] = { |
@@ -1638,9 +1685,9 @@ static struct omap_hwmod_class usbotg_class = { | |||
1638 | /* usb_otg_hs */ | 1685 | /* usb_otg_hs */ |
1639 | static struct omap_hwmod_irq_info omap3xxx_usbhsotg_mpu_irqs[] = { | 1686 | static struct omap_hwmod_irq_info omap3xxx_usbhsotg_mpu_irqs[] = { |
1640 | 1687 | ||
1641 | { .name = "mc", .irq = 92 }, | 1688 | { .name = "mc", .irq = 92 + OMAP_INTC_START, }, |
1642 | { .name = "dma", .irq = 93 }, | 1689 | { .name = "dma", .irq = 93 + OMAP_INTC_START, }, |
1643 | { .irq = -1 } | 1690 | { .irq = -1 }, |
1644 | }; | 1691 | }; |
1645 | 1692 | ||
1646 | static struct omap_hwmod omap3xxx_usbhsotg_hwmod = { | 1693 | static struct omap_hwmod omap3xxx_usbhsotg_hwmod = { |
@@ -1670,8 +1717,8 @@ static struct omap_hwmod omap3xxx_usbhsotg_hwmod = { | |||
1670 | 1717 | ||
1671 | /* usb_otg_hs */ | 1718 | /* usb_otg_hs */ |
1672 | static struct omap_hwmod_irq_info am35xx_usbhsotg_mpu_irqs[] = { | 1719 | static struct omap_hwmod_irq_info am35xx_usbhsotg_mpu_irqs[] = { |
1673 | { .name = "mc", .irq = 71 }, | 1720 | { .name = "mc", .irq = 71 + OMAP_INTC_START, }, |
1674 | { .irq = -1 } | 1721 | { .irq = -1 }, |
1675 | }; | 1722 | }; |
1676 | 1723 | ||
1677 | static struct omap_hwmod_class am35xx_usbotg_class = { | 1724 | static struct omap_hwmod_class am35xx_usbotg_class = { |
@@ -1706,8 +1753,8 @@ static struct omap_hwmod_class omap34xx_mmc_class = { | |||
1706 | /* MMC/SD/SDIO1 */ | 1753 | /* MMC/SD/SDIO1 */ |
1707 | 1754 | ||
1708 | static struct omap_hwmod_irq_info omap34xx_mmc1_mpu_irqs[] = { | 1755 | static struct omap_hwmod_irq_info omap34xx_mmc1_mpu_irqs[] = { |
1709 | { .irq = 83, }, | 1756 | { .irq = 83 + OMAP_INTC_START, }, |
1710 | { .irq = -1 } | 1757 | { .irq = -1 }, |
1711 | }; | 1758 | }; |
1712 | 1759 | ||
1713 | static struct omap_hwmod_dma_info omap34xx_mmc1_sdma_reqs[] = { | 1760 | static struct omap_hwmod_dma_info omap34xx_mmc1_sdma_reqs[] = { |
@@ -1773,8 +1820,8 @@ static struct omap_hwmod omap3xxx_es3plus_mmc1_hwmod = { | |||
1773 | /* MMC/SD/SDIO2 */ | 1820 | /* MMC/SD/SDIO2 */ |
1774 | 1821 | ||
1775 | static struct omap_hwmod_irq_info omap34xx_mmc2_mpu_irqs[] = { | 1822 | static struct omap_hwmod_irq_info omap34xx_mmc2_mpu_irqs[] = { |
1776 | { .irq = INT_24XX_MMC2_IRQ, }, | 1823 | { .irq = 86 + OMAP_INTC_START, }, |
1777 | { .irq = -1 } | 1824 | { .irq = -1 }, |
1778 | }; | 1825 | }; |
1779 | 1826 | ||
1780 | static struct omap_hwmod_dma_info omap34xx_mmc2_sdma_reqs[] = { | 1827 | static struct omap_hwmod_dma_info omap34xx_mmc2_sdma_reqs[] = { |
@@ -1834,8 +1881,8 @@ static struct omap_hwmod omap3xxx_es3plus_mmc2_hwmod = { | |||
1834 | /* MMC/SD/SDIO3 */ | 1881 | /* MMC/SD/SDIO3 */ |
1835 | 1882 | ||
1836 | static struct omap_hwmod_irq_info omap34xx_mmc3_mpu_irqs[] = { | 1883 | static struct omap_hwmod_irq_info omap34xx_mmc3_mpu_irqs[] = { |
1837 | { .irq = 94, }, | 1884 | { .irq = 94 + OMAP_INTC_START, }, |
1838 | { .irq = -1 } | 1885 | { .irq = -1 }, |
1839 | }; | 1886 | }; |
1840 | 1887 | ||
1841 | static struct omap_hwmod_dma_info omap34xx_mmc3_sdma_reqs[] = { | 1888 | static struct omap_hwmod_dma_info omap34xx_mmc3_sdma_reqs[] = { |
@@ -1893,9 +1940,9 @@ static struct omap_hwmod_opt_clk omap3xxx_usb_host_hs_opt_clks[] = { | |||
1893 | }; | 1940 | }; |
1894 | 1941 | ||
1895 | static struct omap_hwmod_irq_info omap3xxx_usb_host_hs_irqs[] = { | 1942 | static struct omap_hwmod_irq_info omap3xxx_usb_host_hs_irqs[] = { |
1896 | { .name = "ohci-irq", .irq = 76 }, | 1943 | { .name = "ohci-irq", .irq = 76 + OMAP_INTC_START, }, |
1897 | { .name = "ehci-irq", .irq = 77 }, | 1944 | { .name = "ehci-irq", .irq = 77 + OMAP_INTC_START, }, |
1898 | { .irq = -1 } | 1945 | { .irq = -1 }, |
1899 | }; | 1946 | }; |
1900 | 1947 | ||
1901 | static struct omap_hwmod omap3xxx_usb_host_hs_hwmod = { | 1948 | static struct omap_hwmod omap3xxx_usb_host_hs_hwmod = { |
@@ -1987,8 +2034,8 @@ static struct omap_hwmod_class omap3xxx_usb_tll_hs_hwmod_class = { | |||
1987 | }; | 2034 | }; |
1988 | 2035 | ||
1989 | static struct omap_hwmod_irq_info omap3xxx_usb_tll_hs_irqs[] = { | 2036 | static struct omap_hwmod_irq_info omap3xxx_usb_tll_hs_irqs[] = { |
1990 | { .name = "tll-irq", .irq = 78 }, | 2037 | { .name = "tll-irq", .irq = 78 + OMAP_INTC_START, }, |
1991 | { .irq = -1 } | 2038 | { .irq = -1 }, |
1992 | }; | 2039 | }; |
1993 | 2040 | ||
1994 | static struct omap_hwmod omap3xxx_usb_tll_hs_hwmod = { | 2041 | static struct omap_hwmod omap3xxx_usb_tll_hs_hwmod = { |
@@ -2024,6 +2071,33 @@ static struct omap_hwmod omap3xxx_hdq1w_hwmod = { | |||
2024 | .class = &omap2_hdq1w_class, | 2071 | .class = &omap2_hdq1w_class, |
2025 | }; | 2072 | }; |
2026 | 2073 | ||
2074 | /* SAD2D */ | ||
2075 | static struct omap_hwmod_rst_info omap3xxx_sad2d_resets[] = { | ||
2076 | { .name = "rst_modem_pwron_sw", .rst_shift = 0 }, | ||
2077 | { .name = "rst_modem_sw", .rst_shift = 1 }, | ||
2078 | }; | ||
2079 | |||
2080 | static struct omap_hwmod_class omap3xxx_sad2d_class = { | ||
2081 | .name = "sad2d", | ||
2082 | }; | ||
2083 | |||
2084 | static struct omap_hwmod omap3xxx_sad2d_hwmod = { | ||
2085 | .name = "sad2d", | ||
2086 | .rst_lines = omap3xxx_sad2d_resets, | ||
2087 | .rst_lines_cnt = ARRAY_SIZE(omap3xxx_sad2d_resets), | ||
2088 | .main_clk = "sad2d_ick", | ||
2089 | .prcm = { | ||
2090 | .omap2 = { | ||
2091 | .module_offs = CORE_MOD, | ||
2092 | .prcm_reg_id = 1, | ||
2093 | .module_bit = OMAP3430_EN_SAD2D_SHIFT, | ||
2094 | .idlest_reg_id = 1, | ||
2095 | .idlest_idle_bit = OMAP3430_ST_SAD2D_SHIFT, | ||
2096 | }, | ||
2097 | }, | ||
2098 | .class = &omap3xxx_sad2d_class, | ||
2099 | }; | ||
2100 | |||
2027 | /* | 2101 | /* |
2028 | * '32K sync counter' class | 2102 | * '32K sync counter' class |
2029 | * 32-bit ordinary counter, clocked by the falling edge of the 32 khz clock | 2103 | * 32-bit ordinary counter, clocked by the falling edge of the 32 khz clock |
@@ -2059,6 +2133,49 @@ static struct omap_hwmod omap3xxx_counter_32k_hwmod = { | |||
2059 | }; | 2133 | }; |
2060 | 2134 | ||
2061 | /* | 2135 | /* |
2136 | * 'gpmc' class | ||
2137 | * general purpose memory controller | ||
2138 | */ | ||
2139 | |||
2140 | static struct omap_hwmod_class_sysconfig omap3xxx_gpmc_sysc = { | ||
2141 | .rev_offs = 0x0000, | ||
2142 | .sysc_offs = 0x0010, | ||
2143 | .syss_offs = 0x0014, | ||
2144 | .sysc_flags = (SYSC_HAS_AUTOIDLE | SYSC_HAS_SIDLEMODE | | ||
2145 | SYSC_HAS_SOFTRESET | SYSS_HAS_RESET_STATUS), | ||
2146 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
2147 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
2148 | }; | ||
2149 | |||
2150 | static struct omap_hwmod_class omap3xxx_gpmc_hwmod_class = { | ||
2151 | .name = "gpmc", | ||
2152 | .sysc = &omap3xxx_gpmc_sysc, | ||
2153 | }; | ||
2154 | |||
2155 | static struct omap_hwmod_irq_info omap3xxx_gpmc_irqs[] = { | ||
2156 | { .irq = 20 }, | ||
2157 | { .irq = -1 } | ||
2158 | }; | ||
2159 | |||
2160 | static struct omap_hwmod omap3xxx_gpmc_hwmod = { | ||
2161 | .name = "gpmc", | ||
2162 | .class = &omap3xxx_gpmc_hwmod_class, | ||
2163 | .clkdm_name = "core_l3_clkdm", | ||
2164 | .mpu_irqs = omap3xxx_gpmc_irqs, | ||
2165 | .main_clk = "gpmc_fck", | ||
2166 | /* | ||
2167 | * XXX HWMOD_INIT_NO_RESET should not be needed for this IP | ||
2168 | * block. It is not being added due to any known bugs with | ||
2169 | * resetting the GPMC IP block, but rather because any timings | ||
2170 | * set by the bootloader are not being correctly programmed by | ||
2171 | * the kernel from the board file or DT data. | ||
2172 | * HWMOD_INIT_NO_RESET should be removed ASAP. | ||
2173 | */ | ||
2174 | .flags = (HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET | | ||
2175 | HWMOD_NO_IDLEST), | ||
2176 | }; | ||
2177 | |||
2178 | /* | ||
2062 | * interfaces | 2179 | * interfaces |
2063 | */ | 2180 | */ |
2064 | 2181 | ||
@@ -2093,6 +2210,23 @@ static struct omap_hwmod_ocp_if omap3xxx_mpu__l3_main = { | |||
2093 | .user = OCP_USER_MPU, | 2210 | .user = OCP_USER_MPU, |
2094 | }; | 2211 | }; |
2095 | 2212 | ||
2213 | static struct omap_hwmod_addr_space omap3xxx_l4_emu_addrs[] = { | ||
2214 | { | ||
2215 | .pa_start = 0x54000000, | ||
2216 | .pa_end = 0x547fffff, | ||
2217 | .flags = ADDR_TYPE_RT, | ||
2218 | }, | ||
2219 | { } | ||
2220 | }; | ||
2221 | |||
2222 | /* l3 -> debugss */ | ||
2223 | static struct omap_hwmod_ocp_if omap3xxx_l3_main__l4_debugss = { | ||
2224 | .master = &omap3xxx_l3_main_hwmod, | ||
2225 | .slave = &omap3xxx_debugss_hwmod, | ||
2226 | .addr = omap3xxx_l4_emu_addrs, | ||
2227 | .user = OCP_USER_MPU, | ||
2228 | }; | ||
2229 | |||
2096 | /* DSS -> l3 */ | 2230 | /* DSS -> l3 */ |
2097 | static struct omap_hwmod_ocp_if omap3430es1_dss__l3 = { | 2231 | static struct omap_hwmod_ocp_if omap3430es1_dss__l3 = { |
2098 | .master = &omap3430es1_dss_core_hwmod, | 2232 | .master = &omap3430es1_dss_core_hwmod, |
@@ -2128,6 +2262,14 @@ static struct omap_hwmod_ocp_if am35xx_usbhsotg__l3 = { | |||
2128 | .user = OCP_USER_MPU, | 2262 | .user = OCP_USER_MPU, |
2129 | }; | 2263 | }; |
2130 | 2264 | ||
2265 | /* l3_core -> sad2d interface */ | ||
2266 | static struct omap_hwmod_ocp_if omap3xxx_sad2d__l3 = { | ||
2267 | .master = &omap3xxx_sad2d_hwmod, | ||
2268 | .slave = &omap3xxx_l3_main_hwmod, | ||
2269 | .clk = "core_l3_ick", | ||
2270 | .user = OCP_USER_MPU, | ||
2271 | }; | ||
2272 | |||
2131 | /* L4_CORE -> L4_WKUP interface */ | 2273 | /* L4_CORE -> L4_WKUP interface */ |
2132 | static struct omap_hwmod_ocp_if omap3xxx_l4_core__l4_wkup = { | 2274 | static struct omap_hwmod_ocp_if omap3xxx_l4_core__l4_wkup = { |
2133 | .master = &omap3xxx_l4_core_hwmod, | 2275 | .master = &omap3xxx_l4_core_hwmod, |
@@ -2814,6 +2956,122 @@ static struct omap_hwmod_ocp_if omap3xxx_l4_per__gpio3 = { | |||
2814 | .user = OCP_USER_MPU | OCP_USER_SDMA, | 2956 | .user = OCP_USER_MPU | OCP_USER_SDMA, |
2815 | }; | 2957 | }; |
2816 | 2958 | ||
2959 | /* | ||
2960 | * 'mmu' class | ||
2961 | * The memory management unit performs virtual to physical address translation | ||
2962 | * for its requestors. | ||
2963 | */ | ||
2964 | |||
2965 | static struct omap_hwmod_class_sysconfig mmu_sysc = { | ||
2966 | .rev_offs = 0x000, | ||
2967 | .sysc_offs = 0x010, | ||
2968 | .syss_offs = 0x014, | ||
2969 | .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE | | ||
2970 | SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE), | ||
2971 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
2972 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
2973 | }; | ||
2974 | |||
2975 | static struct omap_hwmod_class omap3xxx_mmu_hwmod_class = { | ||
2976 | .name = "mmu", | ||
2977 | .sysc = &mmu_sysc, | ||
2978 | }; | ||
2979 | |||
2980 | /* mmu isp */ | ||
2981 | |||
2982 | static struct omap_mmu_dev_attr mmu_isp_dev_attr = { | ||
2983 | .da_start = 0x0, | ||
2984 | .da_end = 0xfffff000, | ||
2985 | .nr_tlb_entries = 8, | ||
2986 | }; | ||
2987 | |||
2988 | static struct omap_hwmod omap3xxx_mmu_isp_hwmod; | ||
2989 | static struct omap_hwmod_irq_info omap3xxx_mmu_isp_irqs[] = { | ||
2990 | { .irq = 24 }, | ||
2991 | { .irq = -1 } | ||
2992 | }; | ||
2993 | |||
2994 | static struct omap_hwmod_addr_space omap3xxx_mmu_isp_addrs[] = { | ||
2995 | { | ||
2996 | .pa_start = 0x480bd400, | ||
2997 | .pa_end = 0x480bd47f, | ||
2998 | .flags = ADDR_TYPE_RT, | ||
2999 | }, | ||
3000 | { } | ||
3001 | }; | ||
3002 | |||
3003 | /* l4_core -> mmu isp */ | ||
3004 | static struct omap_hwmod_ocp_if omap3xxx_l4_core__mmu_isp = { | ||
3005 | .master = &omap3xxx_l4_core_hwmod, | ||
3006 | .slave = &omap3xxx_mmu_isp_hwmod, | ||
3007 | .addr = omap3xxx_mmu_isp_addrs, | ||
3008 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
3009 | }; | ||
3010 | |||
3011 | static struct omap_hwmod omap3xxx_mmu_isp_hwmod = { | ||
3012 | .name = "mmu_isp", | ||
3013 | .class = &omap3xxx_mmu_hwmod_class, | ||
3014 | .mpu_irqs = omap3xxx_mmu_isp_irqs, | ||
3015 | .main_clk = "cam_ick", | ||
3016 | .dev_attr = &mmu_isp_dev_attr, | ||
3017 | .flags = HWMOD_NO_IDLEST, | ||
3018 | }; | ||
3019 | |||
3020 | #ifdef CONFIG_OMAP_IOMMU_IVA2 | ||
3021 | |||
3022 | /* mmu iva */ | ||
3023 | |||
3024 | static struct omap_mmu_dev_attr mmu_iva_dev_attr = { | ||
3025 | .da_start = 0x11000000, | ||
3026 | .da_end = 0xfffff000, | ||
3027 | .nr_tlb_entries = 32, | ||
3028 | }; | ||
3029 | |||
3030 | static struct omap_hwmod omap3xxx_mmu_iva_hwmod; | ||
3031 | static struct omap_hwmod_irq_info omap3xxx_mmu_iva_irqs[] = { | ||
3032 | { .irq = 28 }, | ||
3033 | { .irq = -1 } | ||
3034 | }; | ||
3035 | |||
3036 | static struct omap_hwmod_rst_info omap3xxx_mmu_iva_resets[] = { | ||
3037 | { .name = "mmu", .rst_shift = 1, .st_shift = 9 }, | ||
3038 | }; | ||
3039 | |||
3040 | static struct omap_hwmod_addr_space omap3xxx_mmu_iva_addrs[] = { | ||
3041 | { | ||
3042 | .pa_start = 0x5d000000, | ||
3043 | .pa_end = 0x5d00007f, | ||
3044 | .flags = ADDR_TYPE_RT, | ||
3045 | }, | ||
3046 | { } | ||
3047 | }; | ||
3048 | |||
3049 | /* l3_main -> iva mmu */ | ||
3050 | static struct omap_hwmod_ocp_if omap3xxx_l3_main__mmu_iva = { | ||
3051 | .master = &omap3xxx_l3_main_hwmod, | ||
3052 | .slave = &omap3xxx_mmu_iva_hwmod, | ||
3053 | .addr = omap3xxx_mmu_iva_addrs, | ||
3054 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
3055 | }; | ||
3056 | |||
3057 | static struct omap_hwmod omap3xxx_mmu_iva_hwmod = { | ||
3058 | .name = "mmu_iva", | ||
3059 | .class = &omap3xxx_mmu_hwmod_class, | ||
3060 | .mpu_irqs = omap3xxx_mmu_iva_irqs, | ||
3061 | .rst_lines = omap3xxx_mmu_iva_resets, | ||
3062 | .rst_lines_cnt = ARRAY_SIZE(omap3xxx_mmu_iva_resets), | ||
3063 | .main_clk = "iva2_ck", | ||
3064 | .prcm = { | ||
3065 | .omap2 = { | ||
3066 | .module_offs = OMAP3430_IVA2_MOD, | ||
3067 | }, | ||
3068 | }, | ||
3069 | .dev_attr = &mmu_iva_dev_attr, | ||
3070 | .flags = HWMOD_NO_IDLEST, | ||
3071 | }; | ||
3072 | |||
3073 | #endif | ||
3074 | |||
2817 | /* l4_per -> gpio4 */ | 3075 | /* l4_per -> gpio4 */ |
2818 | static struct omap_hwmod_addr_space omap3xxx_gpio4_addrs[] = { | 3076 | static struct omap_hwmod_addr_space omap3xxx_gpio4_addrs[] = { |
2819 | { | 3077 | { |
@@ -3159,6 +3417,15 @@ static struct omap_hwmod_addr_space omap3xxx_counter_32k_addrs[] = { | |||
3159 | { } | 3417 | { } |
3160 | }; | 3418 | }; |
3161 | 3419 | ||
3420 | static struct omap_hwmod_addr_space omap3xxx_gpmc_addrs[] = { | ||
3421 | { | ||
3422 | .pa_start = 0x6e000000, | ||
3423 | .pa_end = 0x6e000fff, | ||
3424 | .flags = ADDR_TYPE_RT | ||
3425 | }, | ||
3426 | { } | ||
3427 | }; | ||
3428 | |||
3162 | static struct omap_hwmod_ocp_if omap3xxx_l4_wkup__counter_32k = { | 3429 | static struct omap_hwmod_ocp_if omap3xxx_l4_wkup__counter_32k = { |
3163 | .master = &omap3xxx_l4_wkup_hwmod, | 3430 | .master = &omap3xxx_l4_wkup_hwmod, |
3164 | .slave = &omap3xxx_counter_32k_hwmod, | 3431 | .slave = &omap3xxx_counter_32k_hwmod, |
@@ -3214,11 +3481,11 @@ static struct omap_hwmod_ocp_if am35xx_l4_core__mdio = { | |||
3214 | }; | 3481 | }; |
3215 | 3482 | ||
3216 | static struct omap_hwmod_irq_info am35xx_emac_mpu_irqs[] = { | 3483 | static struct omap_hwmod_irq_info am35xx_emac_mpu_irqs[] = { |
3217 | { .name = "rxthresh", .irq = INT_35XX_EMAC_C0_RXTHRESH_IRQ }, | 3484 | { .name = "rxthresh", .irq = 67 + OMAP_INTC_START, }, |
3218 | { .name = "rx_pulse", .irq = INT_35XX_EMAC_C0_RX_PULSE_IRQ }, | 3485 | { .name = "rx_pulse", .irq = 68 + OMAP_INTC_START, }, |
3219 | { .name = "tx_pulse", .irq = INT_35XX_EMAC_C0_TX_PULSE_IRQ }, | 3486 | { .name = "tx_pulse", .irq = 69 + OMAP_INTC_START }, |
3220 | { .name = "misc_pulse", .irq = INT_35XX_EMAC_C0_MISC_PULSE_IRQ }, | 3487 | { .name = "misc_pulse", .irq = 70 + OMAP_INTC_START }, |
3221 | { .irq = -1 } | 3488 | { .irq = -1 }, |
3222 | }; | 3489 | }; |
3223 | 3490 | ||
3224 | static struct omap_hwmod_class am35xx_emac_class = { | 3491 | static struct omap_hwmod_class am35xx_emac_class = { |
@@ -3268,10 +3535,19 @@ static struct omap_hwmod_ocp_if am35xx_l4_core__emac = { | |||
3268 | .user = OCP_USER_MPU, | 3535 | .user = OCP_USER_MPU, |
3269 | }; | 3536 | }; |
3270 | 3537 | ||
3538 | static struct omap_hwmod_ocp_if omap3xxx_l3_main__gpmc = { | ||
3539 | .master = &omap3xxx_l3_main_hwmod, | ||
3540 | .slave = &omap3xxx_gpmc_hwmod, | ||
3541 | .clk = "core_l3_ick", | ||
3542 | .addr = omap3xxx_gpmc_addrs, | ||
3543 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
3544 | }; | ||
3545 | |||
3271 | static struct omap_hwmod_ocp_if *omap3xxx_hwmod_ocp_ifs[] __initdata = { | 3546 | static struct omap_hwmod_ocp_if *omap3xxx_hwmod_ocp_ifs[] __initdata = { |
3272 | &omap3xxx_l3_main__l4_core, | 3547 | &omap3xxx_l3_main__l4_core, |
3273 | &omap3xxx_l3_main__l4_per, | 3548 | &omap3xxx_l3_main__l4_per, |
3274 | &omap3xxx_mpu__l3_main, | 3549 | &omap3xxx_mpu__l3_main, |
3550 | &omap3xxx_l3_main__l4_debugss, | ||
3275 | &omap3xxx_l4_core__l4_wkup, | 3551 | &omap3xxx_l4_core__l4_wkup, |
3276 | &omap3xxx_l4_core__mmc3, | 3552 | &omap3xxx_l4_core__mmc3, |
3277 | &omap3_l4_core__uart1, | 3553 | &omap3_l4_core__uart1, |
@@ -3313,6 +3589,7 @@ static struct omap_hwmod_ocp_if *omap3xxx_hwmod_ocp_ifs[] __initdata = { | |||
3313 | &omap34xx_l4_core__mcspi3, | 3589 | &omap34xx_l4_core__mcspi3, |
3314 | &omap34xx_l4_core__mcspi4, | 3590 | &omap34xx_l4_core__mcspi4, |
3315 | &omap3xxx_l4_wkup__counter_32k, | 3591 | &omap3xxx_l4_wkup__counter_32k, |
3592 | &omap3xxx_l3_main__gpmc, | ||
3316 | NULL, | 3593 | NULL, |
3317 | }; | 3594 | }; |
3318 | 3595 | ||
@@ -3362,6 +3639,11 @@ static struct omap_hwmod_ocp_if *omap34xx_hwmod_ocp_ifs[] __initdata = { | |||
3362 | &omap34xx_l4_core__sr2, | 3639 | &omap34xx_l4_core__sr2, |
3363 | &omap3xxx_l4_core__mailbox, | 3640 | &omap3xxx_l4_core__mailbox, |
3364 | &omap3xxx_l4_core__hdq1w, | 3641 | &omap3xxx_l4_core__hdq1w, |
3642 | &omap3xxx_sad2d__l3, | ||
3643 | &omap3xxx_l4_core__mmu_isp, | ||
3644 | #ifdef CONFIG_OMAP_IOMMU_IVA2 | ||
3645 | &omap3xxx_l3_main__mmu_iva, | ||
3646 | #endif | ||
3365 | NULL | 3647 | NULL |
3366 | }; | 3648 | }; |
3367 | 3649 | ||
@@ -3382,6 +3664,11 @@ static struct omap_hwmod_ocp_if *omap36xx_hwmod_ocp_ifs[] __initdata = { | |||
3382 | &omap3xxx_l4_core__es3plus_mmc1, | 3664 | &omap3xxx_l4_core__es3plus_mmc1, |
3383 | &omap3xxx_l4_core__es3plus_mmc2, | 3665 | &omap3xxx_l4_core__es3plus_mmc2, |
3384 | &omap3xxx_l4_core__hdq1w, | 3666 | &omap3xxx_l4_core__hdq1w, |
3667 | &omap3xxx_sad2d__l3, | ||
3668 | &omap3xxx_l4_core__mmu_isp, | ||
3669 | #ifdef CONFIG_OMAP_IOMMU_IVA2 | ||
3670 | &omap3xxx_l3_main__mmu_iva, | ||
3671 | #endif | ||
3385 | NULL | 3672 | NULL |
3386 | }; | 3673 | }; |
3387 | 3674 | ||
@@ -3396,6 +3683,7 @@ static struct omap_hwmod_ocp_if *am35xx_hwmod_ocp_ifs[] __initdata = { | |||
3396 | &omap3xxx_l4_core__usb_tll_hs, | 3683 | &omap3xxx_l4_core__usb_tll_hs, |
3397 | &omap3xxx_l4_core__es3plus_mmc1, | 3684 | &omap3xxx_l4_core__es3plus_mmc1, |
3398 | &omap3xxx_l4_core__es3plus_mmc2, | 3685 | &omap3xxx_l4_core__es3plus_mmc2, |
3686 | &omap3xxx_l4_core__hdq1w, | ||
3399 | &am35xx_mdio__l3, | 3687 | &am35xx_mdio__l3, |
3400 | &am35xx_l4_core__mdio, | 3688 | &am35xx_l4_core__mdio, |
3401 | &am35xx_emac__l3, | 3689 | &am35xx_emac__l3, |
@@ -3450,7 +3738,7 @@ int __init omap3xxx_hwmod_init(void) | |||
3450 | } else { | 3738 | } else { |
3451 | WARN(1, "OMAP3 hwmod family init: unknown chip type\n"); | 3739 | WARN(1, "OMAP3 hwmod family init: unknown chip type\n"); |
3452 | return -EINVAL; | 3740 | return -EINVAL; |
3453 | }; | 3741 | } |
3454 | 3742 | ||
3455 | r = omap_hwmod_register_links(h); | 3743 | r = omap_hwmod_register_links(h); |
3456 | if (r < 0) | 3744 | if (r < 0) |
@@ -3467,7 +3755,7 @@ int __init omap3xxx_hwmod_init(void) | |||
3467 | rev == OMAP3430_REV_ES3_0 || rev == OMAP3430_REV_ES3_1 || | 3755 | rev == OMAP3430_REV_ES3_0 || rev == OMAP3430_REV_ES3_1 || |
3468 | rev == OMAP3430_REV_ES3_1_2) { | 3756 | rev == OMAP3430_REV_ES3_1_2) { |
3469 | h = omap3430es2plus_hwmod_ocp_ifs; | 3757 | h = omap3430es2plus_hwmod_ocp_ifs; |
3470 | }; | 3758 | } |
3471 | 3759 | ||
3472 | if (h) { | 3760 | if (h) { |
3473 | r = omap_hwmod_register_links(h); | 3761 | r = omap_hwmod_register_links(h); |
@@ -3482,7 +3770,7 @@ int __init omap3xxx_hwmod_init(void) | |||
3482 | } else if (rev == OMAP3430_REV_ES3_0 || rev == OMAP3430_REV_ES3_1 || | 3770 | } else if (rev == OMAP3430_REV_ES3_0 || rev == OMAP3430_REV_ES3_1 || |
3483 | rev == OMAP3430_REV_ES3_1_2) { | 3771 | rev == OMAP3430_REV_ES3_1_2) { |
3484 | h = omap3430_es3plus_hwmod_ocp_ifs; | 3772 | h = omap3430_es3plus_hwmod_ocp_ifs; |
3485 | }; | 3773 | } |
3486 | 3774 | ||
3487 | if (h) | 3775 | if (h) |
3488 | r = omap_hwmod_register_links(h); | 3776 | r = omap_hwmod_register_links(h); |
diff --git a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c index 242aee498ceb..652d0285bd6d 100644 --- a/arch/arm/mach-omap2/omap_hwmod_44xx_data.c +++ b/arch/arm/mach-omap2/omap_hwmod_44xx_data.c | |||
@@ -19,18 +19,18 @@ | |||
19 | */ | 19 | */ |
20 | 20 | ||
21 | #include <linux/io.h> | 21 | #include <linux/io.h> |
22 | #include <linux/platform_data/gpio-omap.h> | ||
22 | #include <linux/power/smartreflex.h> | 23 | #include <linux/power/smartreflex.h> |
23 | 24 | ||
24 | #include <plat/omap_hwmod.h> | 25 | #include <plat/omap_hwmod.h> |
25 | #include <plat/cpu.h> | ||
26 | #include <plat/i2c.h> | 26 | #include <plat/i2c.h> |
27 | #include <plat/gpio.h> | ||
28 | #include <plat/dma.h> | 27 | #include <plat/dma.h> |
29 | #include <plat/mcspi.h> | 28 | #include <linux/platform_data/spi-omap2-mcspi.h> |
30 | #include <plat/mcbsp.h> | 29 | #include <linux/platform_data/asoc-ti-mcbsp.h> |
31 | #include <plat/mmc.h> | 30 | #include <plat/mmc.h> |
32 | #include <plat/dmtimer.h> | 31 | #include <plat/dmtimer.h> |
33 | #include <plat/common.h> | 32 | #include <plat/common.h> |
33 | #include <plat/iommu.h> | ||
34 | 34 | ||
35 | #include "omap_hwmod_common_data.h" | 35 | #include "omap_hwmod_common_data.h" |
36 | #include "cm1_44xx.h" | 36 | #include "cm1_44xx.h" |
@@ -203,6 +203,9 @@ static struct omap_hwmod omap44xx_l4_abe_hwmod = { | |||
203 | .prcm = { | 203 | .prcm = { |
204 | .omap4 = { | 204 | .omap4 = { |
205 | .clkctrl_offs = OMAP4_CM1_ABE_L4ABE_CLKCTRL_OFFSET, | 205 | .clkctrl_offs = OMAP4_CM1_ABE_L4ABE_CLKCTRL_OFFSET, |
206 | .context_offs = OMAP4_RM_ABE_AESS_CONTEXT_OFFSET, | ||
207 | .lostcontext_mask = OMAP4430_LOSTMEM_AESSMEM_MASK, | ||
208 | .flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT, | ||
206 | }, | 209 | }, |
207 | }, | 210 | }, |
208 | }; | 211 | }; |
@@ -259,6 +262,11 @@ static struct omap_hwmod omap44xx_mpu_private_hwmod = { | |||
259 | .name = "mpu_private", | 262 | .name = "mpu_private", |
260 | .class = &omap44xx_mpu_bus_hwmod_class, | 263 | .class = &omap44xx_mpu_bus_hwmod_class, |
261 | .clkdm_name = "mpuss_clkdm", | 264 | .clkdm_name = "mpuss_clkdm", |
265 | .prcm = { | ||
266 | .omap4 = { | ||
267 | .flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT, | ||
268 | }, | ||
269 | }, | ||
262 | }; | 270 | }; |
263 | 271 | ||
264 | /* | 272 | /* |
@@ -343,6 +351,7 @@ static struct omap_hwmod omap44xx_aess_hwmod = { | |||
343 | .omap4 = { | 351 | .omap4 = { |
344 | .clkctrl_offs = OMAP4_CM1_ABE_AESS_CLKCTRL_OFFSET, | 352 | .clkctrl_offs = OMAP4_CM1_ABE_AESS_CLKCTRL_OFFSET, |
345 | .context_offs = OMAP4_RM_ABE_AESS_CONTEXT_OFFSET, | 353 | .context_offs = OMAP4_RM_ABE_AESS_CONTEXT_OFFSET, |
354 | .lostcontext_mask = OMAP4430_LOSTCONTEXT_DFF_MASK, | ||
346 | .modulemode = MODULEMODE_SWCTRL, | 355 | .modulemode = MODULEMODE_SWCTRL, |
347 | }, | 356 | }, |
348 | }, | 357 | }, |
@@ -447,6 +456,11 @@ static struct omap_hwmod omap44xx_ctrl_module_core_hwmod = { | |||
447 | .class = &omap44xx_ctrl_module_hwmod_class, | 456 | .class = &omap44xx_ctrl_module_hwmod_class, |
448 | .clkdm_name = "l4_cfg_clkdm", | 457 | .clkdm_name = "l4_cfg_clkdm", |
449 | .mpu_irqs = omap44xx_ctrl_module_core_irqs, | 458 | .mpu_irqs = omap44xx_ctrl_module_core_irqs, |
459 | .prcm = { | ||
460 | .omap4 = { | ||
461 | .flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT, | ||
462 | }, | ||
463 | }, | ||
450 | }; | 464 | }; |
451 | 465 | ||
452 | /* ctrl_module_pad_core */ | 466 | /* ctrl_module_pad_core */ |
@@ -454,6 +468,11 @@ static struct omap_hwmod omap44xx_ctrl_module_pad_core_hwmod = { | |||
454 | .name = "ctrl_module_pad_core", | 468 | .name = "ctrl_module_pad_core", |
455 | .class = &omap44xx_ctrl_module_hwmod_class, | 469 | .class = &omap44xx_ctrl_module_hwmod_class, |
456 | .clkdm_name = "l4_cfg_clkdm", | 470 | .clkdm_name = "l4_cfg_clkdm", |
471 | .prcm = { | ||
472 | .omap4 = { | ||
473 | .flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT, | ||
474 | }, | ||
475 | }, | ||
457 | }; | 476 | }; |
458 | 477 | ||
459 | /* ctrl_module_wkup */ | 478 | /* ctrl_module_wkup */ |
@@ -461,6 +480,11 @@ static struct omap_hwmod omap44xx_ctrl_module_wkup_hwmod = { | |||
461 | .name = "ctrl_module_wkup", | 480 | .name = "ctrl_module_wkup", |
462 | .class = &omap44xx_ctrl_module_hwmod_class, | 481 | .class = &omap44xx_ctrl_module_hwmod_class, |
463 | .clkdm_name = "l4_wkup_clkdm", | 482 | .clkdm_name = "l4_wkup_clkdm", |
483 | .prcm = { | ||
484 | .omap4 = { | ||
485 | .flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT, | ||
486 | }, | ||
487 | }, | ||
464 | }; | 488 | }; |
465 | 489 | ||
466 | /* ctrl_module_pad_wkup */ | 490 | /* ctrl_module_pad_wkup */ |
@@ -468,6 +492,11 @@ static struct omap_hwmod omap44xx_ctrl_module_pad_wkup_hwmod = { | |||
468 | .name = "ctrl_module_pad_wkup", | 492 | .name = "ctrl_module_pad_wkup", |
469 | .class = &omap44xx_ctrl_module_hwmod_class, | 493 | .class = &omap44xx_ctrl_module_hwmod_class, |
470 | .clkdm_name = "l4_wkup_clkdm", | 494 | .clkdm_name = "l4_wkup_clkdm", |
495 | .prcm = { | ||
496 | .omap4 = { | ||
497 | .flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT, | ||
498 | }, | ||
499 | }, | ||
471 | }; | 500 | }; |
472 | 501 | ||
473 | /* | 502 | /* |
@@ -612,7 +641,6 @@ static struct omap_hwmod_irq_info omap44xx_dsp_irqs[] = { | |||
612 | 641 | ||
613 | static struct omap_hwmod_rst_info omap44xx_dsp_resets[] = { | 642 | static struct omap_hwmod_rst_info omap44xx_dsp_resets[] = { |
614 | { .name = "dsp", .rst_shift = 0 }, | 643 | { .name = "dsp", .rst_shift = 0 }, |
615 | { .name = "mmu_cache", .rst_shift = 1 }, | ||
616 | }; | 644 | }; |
617 | 645 | ||
618 | static struct omap_hwmod omap44xx_dsp_hwmod = { | 646 | static struct omap_hwmod omap44xx_dsp_hwmod = { |
@@ -1324,6 +1352,14 @@ static struct omap_hwmod omap44xx_gpmc_hwmod = { | |||
1324 | .name = "gpmc", | 1352 | .name = "gpmc", |
1325 | .class = &omap44xx_gpmc_hwmod_class, | 1353 | .class = &omap44xx_gpmc_hwmod_class, |
1326 | .clkdm_name = "l3_2_clkdm", | 1354 | .clkdm_name = "l3_2_clkdm", |
1355 | /* | ||
1356 | * XXX HWMOD_INIT_NO_RESET should not be needed for this IP | ||
1357 | * block. It is not being added due to any known bugs with | ||
1358 | * resetting the GPMC IP block, but rather because any timings | ||
1359 | * set by the bootloader are not being correctly programmed by | ||
1360 | * the kernel from the board file or DT data. | ||
1361 | * HWMOD_INIT_NO_RESET should be removed ASAP. | ||
1362 | */ | ||
1327 | .flags = HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET, | 1363 | .flags = HWMOD_INIT_NO_IDLE | HWMOD_INIT_NO_RESET, |
1328 | .mpu_irqs = omap44xx_gpmc_irqs, | 1364 | .mpu_irqs = omap44xx_gpmc_irqs, |
1329 | .sdma_reqs = omap44xx_gpmc_sdma_reqs, | 1365 | .sdma_reqs = omap44xx_gpmc_sdma_reqs, |
@@ -1632,7 +1668,6 @@ static struct omap_hwmod_irq_info omap44xx_ipu_irqs[] = { | |||
1632 | static struct omap_hwmod_rst_info omap44xx_ipu_resets[] = { | 1668 | static struct omap_hwmod_rst_info omap44xx_ipu_resets[] = { |
1633 | { .name = "cpu0", .rst_shift = 0 }, | 1669 | { .name = "cpu0", .rst_shift = 0 }, |
1634 | { .name = "cpu1", .rst_shift = 1 }, | 1670 | { .name = "cpu1", .rst_shift = 1 }, |
1635 | { .name = "mmu_cache", .rst_shift = 2 }, | ||
1636 | }; | 1671 | }; |
1637 | 1672 | ||
1638 | static struct omap_hwmod omap44xx_ipu_hwmod = { | 1673 | static struct omap_hwmod omap44xx_ipu_hwmod = { |
@@ -2439,6 +2474,137 @@ static struct omap_hwmod omap44xx_mmc5_hwmod = { | |||
2439 | }; | 2474 | }; |
2440 | 2475 | ||
2441 | /* | 2476 | /* |
2477 | * 'mmu' class | ||
2478 | * The memory management unit performs virtual to physical address translation | ||
2479 | * for its requestors. | ||
2480 | */ | ||
2481 | |||
2482 | static struct omap_hwmod_class_sysconfig mmu_sysc = { | ||
2483 | .rev_offs = 0x000, | ||
2484 | .sysc_offs = 0x010, | ||
2485 | .syss_offs = 0x014, | ||
2486 | .sysc_flags = (SYSC_HAS_CLOCKACTIVITY | SYSC_HAS_SIDLEMODE | | ||
2487 | SYSC_HAS_SOFTRESET | SYSC_HAS_AUTOIDLE), | ||
2488 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
2489 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
2490 | }; | ||
2491 | |||
2492 | static struct omap_hwmod_class omap44xx_mmu_hwmod_class = { | ||
2493 | .name = "mmu", | ||
2494 | .sysc = &mmu_sysc, | ||
2495 | }; | ||
2496 | |||
2497 | /* mmu ipu */ | ||
2498 | |||
2499 | static struct omap_mmu_dev_attr mmu_ipu_dev_attr = { | ||
2500 | .da_start = 0x0, | ||
2501 | .da_end = 0xfffff000, | ||
2502 | .nr_tlb_entries = 32, | ||
2503 | }; | ||
2504 | |||
2505 | static struct omap_hwmod omap44xx_mmu_ipu_hwmod; | ||
2506 | static struct omap_hwmod_irq_info omap44xx_mmu_ipu_irqs[] = { | ||
2507 | { .irq = 100 + OMAP44XX_IRQ_GIC_START, }, | ||
2508 | { .irq = -1 } | ||
2509 | }; | ||
2510 | |||
2511 | static struct omap_hwmod_rst_info omap44xx_mmu_ipu_resets[] = { | ||
2512 | { .name = "mmu_cache", .rst_shift = 2 }, | ||
2513 | }; | ||
2514 | |||
2515 | static struct omap_hwmod_addr_space omap44xx_mmu_ipu_addrs[] = { | ||
2516 | { | ||
2517 | .pa_start = 0x55082000, | ||
2518 | .pa_end = 0x550820ff, | ||
2519 | .flags = ADDR_TYPE_RT, | ||
2520 | }, | ||
2521 | { } | ||
2522 | }; | ||
2523 | |||
2524 | /* l3_main_2 -> mmu_ipu */ | ||
2525 | static struct omap_hwmod_ocp_if omap44xx_l3_main_2__mmu_ipu = { | ||
2526 | .master = &omap44xx_l3_main_2_hwmod, | ||
2527 | .slave = &omap44xx_mmu_ipu_hwmod, | ||
2528 | .clk = "l3_div_ck", | ||
2529 | .addr = omap44xx_mmu_ipu_addrs, | ||
2530 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2531 | }; | ||
2532 | |||
2533 | static struct omap_hwmod omap44xx_mmu_ipu_hwmod = { | ||
2534 | .name = "mmu_ipu", | ||
2535 | .class = &omap44xx_mmu_hwmod_class, | ||
2536 | .clkdm_name = "ducati_clkdm", | ||
2537 | .mpu_irqs = omap44xx_mmu_ipu_irqs, | ||
2538 | .rst_lines = omap44xx_mmu_ipu_resets, | ||
2539 | .rst_lines_cnt = ARRAY_SIZE(omap44xx_mmu_ipu_resets), | ||
2540 | .main_clk = "ducati_clk_mux_ck", | ||
2541 | .prcm = { | ||
2542 | .omap4 = { | ||
2543 | .clkctrl_offs = OMAP4_CM_DUCATI_DUCATI_CLKCTRL_OFFSET, | ||
2544 | .rstctrl_offs = OMAP4_RM_DUCATI_RSTCTRL_OFFSET, | ||
2545 | .context_offs = OMAP4_RM_DUCATI_DUCATI_CONTEXT_OFFSET, | ||
2546 | .modulemode = MODULEMODE_HWCTRL, | ||
2547 | }, | ||
2548 | }, | ||
2549 | .dev_attr = &mmu_ipu_dev_attr, | ||
2550 | }; | ||
2551 | |||
2552 | /* mmu dsp */ | ||
2553 | |||
2554 | static struct omap_mmu_dev_attr mmu_dsp_dev_attr = { | ||
2555 | .da_start = 0x0, | ||
2556 | .da_end = 0xfffff000, | ||
2557 | .nr_tlb_entries = 32, | ||
2558 | }; | ||
2559 | |||
2560 | static struct omap_hwmod omap44xx_mmu_dsp_hwmod; | ||
2561 | static struct omap_hwmod_irq_info omap44xx_mmu_dsp_irqs[] = { | ||
2562 | { .irq = 28 + OMAP44XX_IRQ_GIC_START }, | ||
2563 | { .irq = -1 } | ||
2564 | }; | ||
2565 | |||
2566 | static struct omap_hwmod_rst_info omap44xx_mmu_dsp_resets[] = { | ||
2567 | { .name = "mmu_cache", .rst_shift = 1 }, | ||
2568 | }; | ||
2569 | |||
2570 | static struct omap_hwmod_addr_space omap44xx_mmu_dsp_addrs[] = { | ||
2571 | { | ||
2572 | .pa_start = 0x4a066000, | ||
2573 | .pa_end = 0x4a0660ff, | ||
2574 | .flags = ADDR_TYPE_RT, | ||
2575 | }, | ||
2576 | { } | ||
2577 | }; | ||
2578 | |||
2579 | /* l4_cfg -> dsp */ | ||
2580 | static struct omap_hwmod_ocp_if omap44xx_l4_cfg__mmu_dsp = { | ||
2581 | .master = &omap44xx_l4_cfg_hwmod, | ||
2582 | .slave = &omap44xx_mmu_dsp_hwmod, | ||
2583 | .clk = "l4_div_ck", | ||
2584 | .addr = omap44xx_mmu_dsp_addrs, | ||
2585 | .user = OCP_USER_MPU | OCP_USER_SDMA, | ||
2586 | }; | ||
2587 | |||
2588 | static struct omap_hwmod omap44xx_mmu_dsp_hwmod = { | ||
2589 | .name = "mmu_dsp", | ||
2590 | .class = &omap44xx_mmu_hwmod_class, | ||
2591 | .clkdm_name = "tesla_clkdm", | ||
2592 | .mpu_irqs = omap44xx_mmu_dsp_irqs, | ||
2593 | .rst_lines = omap44xx_mmu_dsp_resets, | ||
2594 | .rst_lines_cnt = ARRAY_SIZE(omap44xx_mmu_dsp_resets), | ||
2595 | .main_clk = "dpll_iva_m4x2_ck", | ||
2596 | .prcm = { | ||
2597 | .omap4 = { | ||
2598 | .clkctrl_offs = OMAP4_CM_TESLA_TESLA_CLKCTRL_OFFSET, | ||
2599 | .rstctrl_offs = OMAP4_RM_TESLA_RSTCTRL_OFFSET, | ||
2600 | .context_offs = OMAP4_RM_TESLA_TESLA_CONTEXT_OFFSET, | ||
2601 | .modulemode = MODULEMODE_HWCTRL, | ||
2602 | }, | ||
2603 | }, | ||
2604 | .dev_attr = &mmu_dsp_dev_attr, | ||
2605 | }; | ||
2606 | |||
2607 | /* | ||
2442 | * 'mpu' class | 2608 | * 'mpu' class |
2443 | * mpu sub-system | 2609 | * mpu sub-system |
2444 | */ | 2610 | */ |
@@ -2449,6 +2615,8 @@ static struct omap_hwmod_class omap44xx_mpu_hwmod_class = { | |||
2449 | 2615 | ||
2450 | /* mpu */ | 2616 | /* mpu */ |
2451 | static struct omap_hwmod_irq_info omap44xx_mpu_irqs[] = { | 2617 | static struct omap_hwmod_irq_info omap44xx_mpu_irqs[] = { |
2618 | { .name = "pmu0", .irq = 54 + OMAP44XX_IRQ_GIC_START }, | ||
2619 | { .name = "pmu1", .irq = 55 + OMAP44XX_IRQ_GIC_START }, | ||
2452 | { .name = "pl310", .irq = 0 + OMAP44XX_IRQ_GIC_START }, | 2620 | { .name = "pl310", .irq = 0 + OMAP44XX_IRQ_GIC_START }, |
2453 | { .name = "cti0", .irq = 1 + OMAP44XX_IRQ_GIC_START }, | 2621 | { .name = "cti0", .irq = 1 + OMAP44XX_IRQ_GIC_START }, |
2454 | { .name = "cti1", .irq = 2 + OMAP44XX_IRQ_GIC_START }, | 2622 | { .name = "cti1", .irq = 2 + OMAP44XX_IRQ_GIC_START }, |
@@ -2498,19 +2666,27 @@ static struct omap_hwmod omap44xx_ocmc_ram_hwmod = { | |||
2498 | * protocol | 2666 | * protocol |
2499 | */ | 2667 | */ |
2500 | 2668 | ||
2669 | static struct omap_hwmod_class_sysconfig omap44xx_ocp2scp_sysc = { | ||
2670 | .rev_offs = 0x0000, | ||
2671 | .sysc_offs = 0x0010, | ||
2672 | .syss_offs = 0x0014, | ||
2673 | .sysc_flags = (SYSC_HAS_AUTOIDLE | SYSC_HAS_SIDLEMODE | | ||
2674 | SYSC_HAS_SOFTRESET | SYSS_HAS_RESET_STATUS), | ||
2675 | .idlemodes = (SIDLE_FORCE | SIDLE_NO | SIDLE_SMART), | ||
2676 | .sysc_fields = &omap_hwmod_sysc_type1, | ||
2677 | }; | ||
2678 | |||
2501 | static struct omap_hwmod_class omap44xx_ocp2scp_hwmod_class = { | 2679 | static struct omap_hwmod_class omap44xx_ocp2scp_hwmod_class = { |
2502 | .name = "ocp2scp", | 2680 | .name = "ocp2scp", |
2681 | .sysc = &omap44xx_ocp2scp_sysc, | ||
2503 | }; | 2682 | }; |
2504 | 2683 | ||
2505 | /* ocp2scp_usb_phy */ | 2684 | /* ocp2scp_usb_phy */ |
2506 | static struct omap_hwmod_opt_clk ocp2scp_usb_phy_opt_clks[] = { | ||
2507 | { .role = "phy_48m", .clk = "ocp2scp_usb_phy_phy_48m" }, | ||
2508 | }; | ||
2509 | |||
2510 | static struct omap_hwmod omap44xx_ocp2scp_usb_phy_hwmod = { | 2685 | static struct omap_hwmod omap44xx_ocp2scp_usb_phy_hwmod = { |
2511 | .name = "ocp2scp_usb_phy", | 2686 | .name = "ocp2scp_usb_phy", |
2512 | .class = &omap44xx_ocp2scp_hwmod_class, | 2687 | .class = &omap44xx_ocp2scp_hwmod_class, |
2513 | .clkdm_name = "l3_init_clkdm", | 2688 | .clkdm_name = "l3_init_clkdm", |
2689 | .main_clk = "ocp2scp_usb_phy_phy_48m", | ||
2514 | .prcm = { | 2690 | .prcm = { |
2515 | .omap4 = { | 2691 | .omap4 = { |
2516 | .clkctrl_offs = OMAP4_CM_L3INIT_USBPHYOCP2SCP_CLKCTRL_OFFSET, | 2692 | .clkctrl_offs = OMAP4_CM_L3INIT_USBPHYOCP2SCP_CLKCTRL_OFFSET, |
@@ -2518,8 +2694,6 @@ static struct omap_hwmod omap44xx_ocp2scp_usb_phy_hwmod = { | |||
2518 | .modulemode = MODULEMODE_HWCTRL, | 2694 | .modulemode = MODULEMODE_HWCTRL, |
2519 | }, | 2695 | }, |
2520 | }, | 2696 | }, |
2521 | .opt_clks = ocp2scp_usb_phy_opt_clks, | ||
2522 | .opt_clks_cnt = ARRAY_SIZE(ocp2scp_usb_phy_opt_clks), | ||
2523 | }; | 2697 | }; |
2524 | 2698 | ||
2525 | /* | 2699 | /* |
@@ -2537,18 +2711,36 @@ static struct omap_hwmod omap44xx_prcm_mpu_hwmod = { | |||
2537 | .name = "prcm_mpu", | 2711 | .name = "prcm_mpu", |
2538 | .class = &omap44xx_prcm_hwmod_class, | 2712 | .class = &omap44xx_prcm_hwmod_class, |
2539 | .clkdm_name = "l4_wkup_clkdm", | 2713 | .clkdm_name = "l4_wkup_clkdm", |
2714 | .flags = HWMOD_NO_IDLEST, | ||
2715 | .prcm = { | ||
2716 | .omap4 = { | ||
2717 | .flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT, | ||
2718 | }, | ||
2719 | }, | ||
2540 | }; | 2720 | }; |
2541 | 2721 | ||
2542 | /* cm_core_aon */ | 2722 | /* cm_core_aon */ |
2543 | static struct omap_hwmod omap44xx_cm_core_aon_hwmod = { | 2723 | static struct omap_hwmod omap44xx_cm_core_aon_hwmod = { |
2544 | .name = "cm_core_aon", | 2724 | .name = "cm_core_aon", |
2545 | .class = &omap44xx_prcm_hwmod_class, | 2725 | .class = &omap44xx_prcm_hwmod_class, |
2726 | .flags = HWMOD_NO_IDLEST, | ||
2727 | .prcm = { | ||
2728 | .omap4 = { | ||
2729 | .flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT, | ||
2730 | }, | ||
2731 | }, | ||
2546 | }; | 2732 | }; |
2547 | 2733 | ||
2548 | /* cm_core */ | 2734 | /* cm_core */ |
2549 | static struct omap_hwmod omap44xx_cm_core_hwmod = { | 2735 | static struct omap_hwmod omap44xx_cm_core_hwmod = { |
2550 | .name = "cm_core", | 2736 | .name = "cm_core", |
2551 | .class = &omap44xx_prcm_hwmod_class, | 2737 | .class = &omap44xx_prcm_hwmod_class, |
2738 | .flags = HWMOD_NO_IDLEST, | ||
2739 | .prcm = { | ||
2740 | .omap4 = { | ||
2741 | .flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT, | ||
2742 | }, | ||
2743 | }, | ||
2552 | }; | 2744 | }; |
2553 | 2745 | ||
2554 | /* prm */ | 2746 | /* prm */ |
@@ -2584,6 +2776,11 @@ static struct omap_hwmod omap44xx_scrm_hwmod = { | |||
2584 | .name = "scrm", | 2776 | .name = "scrm", |
2585 | .class = &omap44xx_scrm_hwmod_class, | 2777 | .class = &omap44xx_scrm_hwmod_class, |
2586 | .clkdm_name = "l4_wkup_clkdm", | 2778 | .clkdm_name = "l4_wkup_clkdm", |
2779 | .prcm = { | ||
2780 | .omap4 = { | ||
2781 | .flags = HWMOD_OMAP4_NO_CONTEXT_LOSS_BIT, | ||
2782 | }, | ||
2783 | }, | ||
2587 | }; | 2784 | }; |
2588 | 2785 | ||
2589 | /* | 2786 | /* |
@@ -2902,6 +3099,16 @@ static struct omap_timer_capability_dev_attr capability_pwm_dev_attr = { | |||
2902 | .timer_capability = OMAP_TIMER_HAS_PWM, | 3099 | .timer_capability = OMAP_TIMER_HAS_PWM, |
2903 | }; | 3100 | }; |
2904 | 3101 | ||
3102 | /* timers with DSP interrupt dev attribute */ | ||
3103 | static struct omap_timer_capability_dev_attr capability_dsp_dev_attr = { | ||
3104 | .timer_capability = OMAP_TIMER_HAS_DSP_IRQ, | ||
3105 | }; | ||
3106 | |||
3107 | /* pwm timers with DSP interrupt dev attribute */ | ||
3108 | static struct omap_timer_capability_dev_attr capability_dsp_pwm_dev_attr = { | ||
3109 | .timer_capability = OMAP_TIMER_HAS_DSP_IRQ | OMAP_TIMER_HAS_PWM, | ||
3110 | }; | ||
3111 | |||
2905 | /* timer1 */ | 3112 | /* timer1 */ |
2906 | static struct omap_hwmod_irq_info omap44xx_timer1_irqs[] = { | 3113 | static struct omap_hwmod_irq_info omap44xx_timer1_irqs[] = { |
2907 | { .irq = 37 + OMAP44XX_IRQ_GIC_START }, | 3114 | { .irq = 37 + OMAP44XX_IRQ_GIC_START }, |
@@ -3006,6 +3213,7 @@ static struct omap_hwmod omap44xx_timer5_hwmod = { | |||
3006 | .modulemode = MODULEMODE_SWCTRL, | 3213 | .modulemode = MODULEMODE_SWCTRL, |
3007 | }, | 3214 | }, |
3008 | }, | 3215 | }, |
3216 | .dev_attr = &capability_dsp_dev_attr, | ||
3009 | }; | 3217 | }; |
3010 | 3218 | ||
3011 | /* timer6 */ | 3219 | /* timer6 */ |
@@ -3028,6 +3236,7 @@ static struct omap_hwmod omap44xx_timer6_hwmod = { | |||
3028 | .modulemode = MODULEMODE_SWCTRL, | 3236 | .modulemode = MODULEMODE_SWCTRL, |
3029 | }, | 3237 | }, |
3030 | }, | 3238 | }, |
3239 | .dev_attr = &capability_dsp_dev_attr, | ||
3031 | }; | 3240 | }; |
3032 | 3241 | ||
3033 | /* timer7 */ | 3242 | /* timer7 */ |
@@ -3049,6 +3258,7 @@ static struct omap_hwmod omap44xx_timer7_hwmod = { | |||
3049 | .modulemode = MODULEMODE_SWCTRL, | 3258 | .modulemode = MODULEMODE_SWCTRL, |
3050 | }, | 3259 | }, |
3051 | }, | 3260 | }, |
3261 | .dev_attr = &capability_dsp_dev_attr, | ||
3052 | }; | 3262 | }; |
3053 | 3263 | ||
3054 | /* timer8 */ | 3264 | /* timer8 */ |
@@ -3070,7 +3280,7 @@ static struct omap_hwmod omap44xx_timer8_hwmod = { | |||
3070 | .modulemode = MODULEMODE_SWCTRL, | 3280 | .modulemode = MODULEMODE_SWCTRL, |
3071 | }, | 3281 | }, |
3072 | }, | 3282 | }, |
3073 | .dev_attr = &capability_pwm_dev_attr, | 3283 | .dev_attr = &capability_dsp_pwm_dev_attr, |
3074 | }; | 3284 | }; |
3075 | 3285 | ||
3076 | /* timer9 */ | 3286 | /* timer9 */ |
@@ -4210,7 +4420,7 @@ static struct omap_hwmod_ocp_if omap44xx_dsp__iva = { | |||
4210 | }; | 4420 | }; |
4211 | 4421 | ||
4212 | /* dsp -> sl2if */ | 4422 | /* dsp -> sl2if */ |
4213 | static struct omap_hwmod_ocp_if omap44xx_dsp__sl2if = { | 4423 | static struct omap_hwmod_ocp_if __maybe_unused omap44xx_dsp__sl2if = { |
4214 | .master = &omap44xx_dsp_hwmod, | 4424 | .master = &omap44xx_dsp_hwmod, |
4215 | .slave = &omap44xx_sl2if_hwmod, | 4425 | .slave = &omap44xx_sl2if_hwmod, |
4216 | .clk = "dpll_iva_m5x2_ck", | 4426 | .clk = "dpll_iva_m5x2_ck", |
@@ -4828,7 +5038,7 @@ static struct omap_hwmod_ocp_if omap44xx_l3_main_2__iss = { | |||
4828 | }; | 5038 | }; |
4829 | 5039 | ||
4830 | /* iva -> sl2if */ | 5040 | /* iva -> sl2if */ |
4831 | static struct omap_hwmod_ocp_if omap44xx_iva__sl2if = { | 5041 | static struct omap_hwmod_ocp_if __maybe_unused omap44xx_iva__sl2if = { |
4832 | .master = &omap44xx_iva_hwmod, | 5042 | .master = &omap44xx_iva_hwmod, |
4833 | .slave = &omap44xx_sl2if_hwmod, | 5043 | .slave = &omap44xx_sl2if_hwmod, |
4834 | .clk = "dpll_iva_m5x2_ck", | 5044 | .clk = "dpll_iva_m5x2_ck", |
@@ -5059,6 +5269,7 @@ static struct omap_hwmod_ocp_if omap44xx_l4_per__mcbsp4 = { | |||
5059 | 5269 | ||
5060 | static struct omap_hwmod_addr_space omap44xx_mcpdm_addrs[] = { | 5270 | static struct omap_hwmod_addr_space omap44xx_mcpdm_addrs[] = { |
5061 | { | 5271 | { |
5272 | .name = "mpu", | ||
5062 | .pa_start = 0x40132000, | 5273 | .pa_start = 0x40132000, |
5063 | .pa_end = 0x4013207f, | 5274 | .pa_end = 0x4013207f, |
5064 | .flags = ADDR_TYPE_RT | 5275 | .flags = ADDR_TYPE_RT |
@@ -5077,6 +5288,7 @@ static struct omap_hwmod_ocp_if omap44xx_l4_abe__mcpdm = { | |||
5077 | 5288 | ||
5078 | static struct omap_hwmod_addr_space omap44xx_mcpdm_dma_addrs[] = { | 5289 | static struct omap_hwmod_addr_space omap44xx_mcpdm_dma_addrs[] = { |
5079 | { | 5290 | { |
5291 | .name = "dma", | ||
5080 | .pa_start = 0x49032000, | 5292 | .pa_start = 0x49032000, |
5081 | .pa_end = 0x4903207f, | 5293 | .pa_end = 0x4903207f, |
5082 | .flags = ADDR_TYPE_RT | 5294 | .flags = ADDR_TYPE_RT |
@@ -5263,11 +5475,21 @@ static struct omap_hwmod_ocp_if omap44xx_l3_main_2__ocmc_ram = { | |||
5263 | .user = OCP_USER_MPU | OCP_USER_SDMA, | 5475 | .user = OCP_USER_MPU | OCP_USER_SDMA, |
5264 | }; | 5476 | }; |
5265 | 5477 | ||
5478 | static struct omap_hwmod_addr_space omap44xx_ocp2scp_usb_phy_addrs[] = { | ||
5479 | { | ||
5480 | .pa_start = 0x4a0ad000, | ||
5481 | .pa_end = 0x4a0ad01f, | ||
5482 | .flags = ADDR_TYPE_RT | ||
5483 | }, | ||
5484 | { } | ||
5485 | }; | ||
5486 | |||
5266 | /* l4_cfg -> ocp2scp_usb_phy */ | 5487 | /* l4_cfg -> ocp2scp_usb_phy */ |
5267 | static struct omap_hwmod_ocp_if omap44xx_l4_cfg__ocp2scp_usb_phy = { | 5488 | static struct omap_hwmod_ocp_if omap44xx_l4_cfg__ocp2scp_usb_phy = { |
5268 | .master = &omap44xx_l4_cfg_hwmod, | 5489 | .master = &omap44xx_l4_cfg_hwmod, |
5269 | .slave = &omap44xx_ocp2scp_usb_phy_hwmod, | 5490 | .slave = &omap44xx_ocp2scp_usb_phy_hwmod, |
5270 | .clk = "l4_div_ck", | 5491 | .clk = "l4_div_ck", |
5492 | .addr = omap44xx_ocp2scp_usb_phy_addrs, | ||
5271 | .user = OCP_USER_MPU | OCP_USER_SDMA, | 5493 | .user = OCP_USER_MPU | OCP_USER_SDMA, |
5272 | }; | 5494 | }; |
5273 | 5495 | ||
@@ -5362,7 +5584,7 @@ static struct omap_hwmod_ocp_if omap44xx_l4_wkup__scrm = { | |||
5362 | }; | 5584 | }; |
5363 | 5585 | ||
5364 | /* l3_main_2 -> sl2if */ | 5586 | /* l3_main_2 -> sl2if */ |
5365 | static struct omap_hwmod_ocp_if omap44xx_l3_main_2__sl2if = { | 5587 | static struct omap_hwmod_ocp_if __maybe_unused omap44xx_l3_main_2__sl2if = { |
5366 | .master = &omap44xx_l3_main_2_hwmod, | 5588 | .master = &omap44xx_l3_main_2_hwmod, |
5367 | .slave = &omap44xx_sl2if_hwmod, | 5589 | .slave = &omap44xx_sl2if_hwmod, |
5368 | .clk = "l3_div_ck", | 5590 | .clk = "l3_div_ck", |
@@ -5887,7 +6109,13 @@ static struct omap_hwmod_ocp_if omap44xx_l4_cfg__usb_host_hs = { | |||
5887 | static struct omap_hwmod_addr_space omap44xx_usb_otg_hs_addrs[] = { | 6109 | static struct omap_hwmod_addr_space omap44xx_usb_otg_hs_addrs[] = { |
5888 | { | 6110 | { |
5889 | .pa_start = 0x4a0ab000, | 6111 | .pa_start = 0x4a0ab000, |
5890 | .pa_end = 0x4a0ab003, | 6112 | .pa_end = 0x4a0ab7ff, |
6113 | .flags = ADDR_TYPE_RT | ||
6114 | }, | ||
6115 | { | ||
6116 | /* XXX: Remove this once control module driver is in place */ | ||
6117 | .pa_start = 0x4a00233c, | ||
6118 | .pa_end = 0x4a00233f, | ||
5891 | .flags = ADDR_TYPE_RT | 6119 | .flags = ADDR_TYPE_RT |
5892 | }, | 6120 | }, |
5893 | { } | 6121 | { } |
@@ -6032,7 +6260,7 @@ static struct omap_hwmod_ocp_if *omap44xx_hwmod_ocp_ifs[] __initdata = { | |||
6032 | &omap44xx_l4_abe__dmic, | 6260 | &omap44xx_l4_abe__dmic, |
6033 | &omap44xx_l4_abe__dmic_dma, | 6261 | &omap44xx_l4_abe__dmic_dma, |
6034 | &omap44xx_dsp__iva, | 6262 | &omap44xx_dsp__iva, |
6035 | &omap44xx_dsp__sl2if, | 6263 | /* &omap44xx_dsp__sl2if, */ |
6036 | &omap44xx_l4_cfg__dsp, | 6264 | &omap44xx_l4_cfg__dsp, |
6037 | &omap44xx_l3_main_2__dss, | 6265 | &omap44xx_l3_main_2__dss, |
6038 | &omap44xx_l4_per__dss, | 6266 | &omap44xx_l4_per__dss, |
@@ -6068,7 +6296,7 @@ static struct omap_hwmod_ocp_if *omap44xx_hwmod_ocp_ifs[] __initdata = { | |||
6068 | &omap44xx_l4_per__i2c4, | 6296 | &omap44xx_l4_per__i2c4, |
6069 | &omap44xx_l3_main_2__ipu, | 6297 | &omap44xx_l3_main_2__ipu, |
6070 | &omap44xx_l3_main_2__iss, | 6298 | &omap44xx_l3_main_2__iss, |
6071 | &omap44xx_iva__sl2if, | 6299 | /* &omap44xx_iva__sl2if, */ |
6072 | &omap44xx_l3_main_2__iva, | 6300 | &omap44xx_l3_main_2__iva, |
6073 | &omap44xx_l4_wkup__kbd, | 6301 | &omap44xx_l4_wkup__kbd, |
6074 | &omap44xx_l4_cfg__mailbox, | 6302 | &omap44xx_l4_cfg__mailbox, |
@@ -6092,6 +6320,8 @@ static struct omap_hwmod_ocp_if *omap44xx_hwmod_ocp_ifs[] __initdata = { | |||
6092 | &omap44xx_l4_per__mmc3, | 6320 | &omap44xx_l4_per__mmc3, |
6093 | &omap44xx_l4_per__mmc4, | 6321 | &omap44xx_l4_per__mmc4, |
6094 | &omap44xx_l4_per__mmc5, | 6322 | &omap44xx_l4_per__mmc5, |
6323 | &omap44xx_l3_main_2__mmu_ipu, | ||
6324 | &omap44xx_l4_cfg__mmu_dsp, | ||
6095 | &omap44xx_l3_main_2__ocmc_ram, | 6325 | &omap44xx_l3_main_2__ocmc_ram, |
6096 | &omap44xx_l4_cfg__ocp2scp_usb_phy, | 6326 | &omap44xx_l4_cfg__ocp2scp_usb_phy, |
6097 | &omap44xx_mpu_private__prcm_mpu, | 6327 | &omap44xx_mpu_private__prcm_mpu, |
@@ -6099,7 +6329,7 @@ static struct omap_hwmod_ocp_if *omap44xx_hwmod_ocp_ifs[] __initdata = { | |||
6099 | &omap44xx_l4_cfg__cm_core, | 6329 | &omap44xx_l4_cfg__cm_core, |
6100 | &omap44xx_l4_wkup__prm, | 6330 | &omap44xx_l4_wkup__prm, |
6101 | &omap44xx_l4_wkup__scrm, | 6331 | &omap44xx_l4_wkup__scrm, |
6102 | &omap44xx_l3_main_2__sl2if, | 6332 | /* &omap44xx_l3_main_2__sl2if, */ |
6103 | &omap44xx_l4_abe__slimbus1, | 6333 | &omap44xx_l4_abe__slimbus1, |
6104 | &omap44xx_l4_abe__slimbus1_dma, | 6334 | &omap44xx_l4_abe__slimbus1_dma, |
6105 | &omap44xx_l4_per__slimbus2, | 6335 | &omap44xx_l4_per__slimbus2, |
diff --git a/arch/arm/mach-omap2/omap_hwmod_common_data.h b/arch/arm/mach-omap2/omap_hwmod_common_data.h index e7e8eeae95e5..2bc8f1705d4a 100644 --- a/arch/arm/mach-omap2/omap_hwmod_common_data.h +++ b/arch/arm/mach-omap2/omap_hwmod_common_data.h | |||
@@ -2,9 +2,8 @@ | |||
2 | * omap_hwmod_common_data.h - OMAP hwmod common macros and declarations | 2 | * omap_hwmod_common_data.h - OMAP hwmod common macros and declarations |
3 | * | 3 | * |
4 | * Copyright (C) 2010-2011 Nokia Corporation | 4 | * Copyright (C) 2010-2011 Nokia Corporation |
5 | * Copyright (C) 2010-2012 Texas Instruments, Inc. | ||
5 | * Paul Walmsley | 6 | * Paul Walmsley |
6 | * | ||
7 | * Copyright (C) 2010-2011 Texas Instruments, Inc. | ||
8 | * Benoît Cousson | 7 | * Benoît Cousson |
9 | * | 8 | * |
10 | * This program is free software; you can redistribute it and/or modify | 9 | * This program is free software; you can redistribute it and/or modify |
@@ -16,6 +15,7 @@ | |||
16 | 15 | ||
17 | #include <plat/omap_hwmod.h> | 16 | #include <plat/omap_hwmod.h> |
18 | 17 | ||
18 | #include "common.h" | ||
19 | #include "display.h" | 19 | #include "display.h" |
20 | 20 | ||
21 | /* Common address space across OMAP2xxx */ | 21 | /* Common address space across OMAP2xxx */ |
@@ -76,6 +76,8 @@ extern struct omap_hwmod omap2xxx_gpio4_hwmod; | |||
76 | extern struct omap_hwmod omap2xxx_mcspi1_hwmod; | 76 | extern struct omap_hwmod omap2xxx_mcspi1_hwmod; |
77 | extern struct omap_hwmod omap2xxx_mcspi2_hwmod; | 77 | extern struct omap_hwmod omap2xxx_mcspi2_hwmod; |
78 | extern struct omap_hwmod omap2xxx_counter_32k_hwmod; | 78 | extern struct omap_hwmod omap2xxx_counter_32k_hwmod; |
79 | extern struct omap_hwmod omap2xxx_gpmc_hwmod; | ||
80 | extern struct omap_hwmod omap2xxx_rng_hwmod; | ||
79 | 81 | ||
80 | /* Common interface data across OMAP2xxx */ | 82 | /* Common interface data across OMAP2xxx */ |
81 | extern struct omap_hwmod_ocp_if omap2xxx_l3_main__l4_core; | 83 | extern struct omap_hwmod_ocp_if omap2xxx_l3_main__l4_core; |
@@ -102,6 +104,7 @@ extern struct omap_hwmod_ocp_if omap2xxx_l4_core__dss; | |||
102 | extern struct omap_hwmod_ocp_if omap2xxx_l4_core__dss_dispc; | 104 | extern struct omap_hwmod_ocp_if omap2xxx_l4_core__dss_dispc; |
103 | extern struct omap_hwmod_ocp_if omap2xxx_l4_core__dss_rfbi; | 105 | extern struct omap_hwmod_ocp_if omap2xxx_l4_core__dss_rfbi; |
104 | extern struct omap_hwmod_ocp_if omap2xxx_l4_core__dss_venc; | 106 | extern struct omap_hwmod_ocp_if omap2xxx_l4_core__dss_venc; |
107 | extern struct omap_hwmod_ocp_if omap2xxx_l4_core__rng; | ||
105 | 108 | ||
106 | /* Common IP block data */ | 109 | /* Common IP block data */ |
107 | extern struct omap_hwmod_dma_info omap2_uart1_sdma_reqs[]; | 110 | extern struct omap_hwmod_dma_info omap2_uart1_sdma_reqs[]; |
diff --git a/arch/arm/mach-omap2/omap_l3_noc.c b/arch/arm/mach-omap2/omap_l3_noc.c deleted file mode 100644 index d15225ff5c49..000000000000 --- a/arch/arm/mach-omap2/omap_l3_noc.c +++ /dev/null | |||
@@ -1,266 +0,0 @@ | |||
1 | /* | ||
2 | * OMAP4XXX L3 Interconnect error handling driver | ||
3 | * | ||
4 | * Copyright (C) 2011 Texas Corporation | ||
5 | * Santosh Shilimkar <santosh.shilimkar@ti.com> | ||
6 | * Sricharan <r.sricharan@ti.com> | ||
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 as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
16 | * GNU General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | ||
21 | * USA | ||
22 | */ | ||
23 | #include <linux/module.h> | ||
24 | #include <linux/init.h> | ||
25 | #include <linux/io.h> | ||
26 | #include <linux/platform_device.h> | ||
27 | #include <linux/interrupt.h> | ||
28 | #include <linux/kernel.h> | ||
29 | #include <linux/slab.h> | ||
30 | |||
31 | #include "omap_l3_noc.h" | ||
32 | |||
33 | /* | ||
34 | * Interrupt Handler for L3 error detection. | ||
35 | * 1) Identify the L3 clockdomain partition to which the error belongs to. | ||
36 | * 2) Identify the slave where the error information is logged | ||
37 | * 3) Print the logged information. | ||
38 | * 4) Add dump stack to provide kernel trace. | ||
39 | * | ||
40 | * Two Types of errors : | ||
41 | * 1) Custom errors in L3 : | ||
42 | * Target like DMM/FW/EMIF generates SRESP=ERR error | ||
43 | * 2) Standard L3 error: | ||
44 | * - Unsupported CMD. | ||
45 | * L3 tries to access target while it is idle | ||
46 | * - OCP disconnect. | ||
47 | * - Address hole error: | ||
48 | * If DSS/ISS/FDIF/USBHOSTFS access a target where they | ||
49 | * do not have connectivity, the error is logged in | ||
50 | * their default target which is DMM2. | ||
51 | * | ||
52 | * On High Secure devices, firewall errors are possible and those | ||
53 | * can be trapped as well. But the trapping is implemented as part | ||
54 | * secure software and hence need not be implemented here. | ||
55 | */ | ||
56 | static irqreturn_t l3_interrupt_handler(int irq, void *_l3) | ||
57 | { | ||
58 | |||
59 | struct omap4_l3 *l3 = _l3; | ||
60 | int inttype, i, k; | ||
61 | int err_src = 0; | ||
62 | u32 std_err_main, err_reg, clear, masterid; | ||
63 | void __iomem *base, *l3_targ_base; | ||
64 | char *target_name, *master_name = "UN IDENTIFIED"; | ||
65 | |||
66 | /* Get the Type of interrupt */ | ||
67 | inttype = irq == l3->app_irq ? L3_APPLICATION_ERROR : L3_DEBUG_ERROR; | ||
68 | |||
69 | for (i = 0; i < L3_MODULES; i++) { | ||
70 | /* | ||
71 | * Read the regerr register of the clock domain | ||
72 | * to determine the source | ||
73 | */ | ||
74 | base = l3->l3_base[i]; | ||
75 | err_reg = __raw_readl(base + l3_flagmux[i] + | ||
76 | + L3_FLAGMUX_REGERR0 + (inttype << 3)); | ||
77 | |||
78 | /* Get the corresponding error and analyse */ | ||
79 | if (err_reg) { | ||
80 | /* Identify the source from control status register */ | ||
81 | err_src = __ffs(err_reg); | ||
82 | |||
83 | /* Read the stderrlog_main_source from clk domain */ | ||
84 | l3_targ_base = base + *(l3_targ[i] + err_src); | ||
85 | std_err_main = __raw_readl(l3_targ_base + | ||
86 | L3_TARG_STDERRLOG_MAIN); | ||
87 | masterid = __raw_readl(l3_targ_base + | ||
88 | L3_TARG_STDERRLOG_MSTADDR); | ||
89 | |||
90 | switch (std_err_main & CUSTOM_ERROR) { | ||
91 | case STANDARD_ERROR: | ||
92 | target_name = | ||
93 | l3_targ_inst_name[i][err_src]; | ||
94 | WARN(true, "L3 standard error: TARGET:%s at address 0x%x\n", | ||
95 | target_name, | ||
96 | __raw_readl(l3_targ_base + | ||
97 | L3_TARG_STDERRLOG_SLVOFSLSB)); | ||
98 | /* clear the std error log*/ | ||
99 | clear = std_err_main | CLEAR_STDERR_LOG; | ||
100 | writel(clear, l3_targ_base + | ||
101 | L3_TARG_STDERRLOG_MAIN); | ||
102 | break; | ||
103 | |||
104 | case CUSTOM_ERROR: | ||
105 | target_name = | ||
106 | l3_targ_inst_name[i][err_src]; | ||
107 | for (k = 0; k < NUM_OF_L3_MASTERS; k++) { | ||
108 | if (masterid == l3_masters[k].id) | ||
109 | master_name = | ||
110 | l3_masters[k].name; | ||
111 | } | ||
112 | WARN(true, "L3 custom error: MASTER:%s TARGET:%s\n", | ||
113 | master_name, target_name); | ||
114 | /* clear the std error log*/ | ||
115 | clear = std_err_main | CLEAR_STDERR_LOG; | ||
116 | writel(clear, l3_targ_base + | ||
117 | L3_TARG_STDERRLOG_MAIN); | ||
118 | break; | ||
119 | |||
120 | default: | ||
121 | /* Nothing to be handled here as of now */ | ||
122 | break; | ||
123 | } | ||
124 | /* Error found so break the for loop */ | ||
125 | break; | ||
126 | } | ||
127 | } | ||
128 | return IRQ_HANDLED; | ||
129 | } | ||
130 | |||
131 | static int __devinit omap4_l3_probe(struct platform_device *pdev) | ||
132 | { | ||
133 | static struct omap4_l3 *l3; | ||
134 | struct resource *res; | ||
135 | int ret; | ||
136 | |||
137 | l3 = kzalloc(sizeof(*l3), GFP_KERNEL); | ||
138 | if (!l3) | ||
139 | return -ENOMEM; | ||
140 | |||
141 | platform_set_drvdata(pdev, l3); | ||
142 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
143 | if (!res) { | ||
144 | dev_err(&pdev->dev, "couldn't find resource 0\n"); | ||
145 | ret = -ENODEV; | ||
146 | goto err0; | ||
147 | } | ||
148 | |||
149 | l3->l3_base[0] = ioremap(res->start, resource_size(res)); | ||
150 | if (!l3->l3_base[0]) { | ||
151 | dev_err(&pdev->dev, "ioremap failed\n"); | ||
152 | ret = -ENOMEM; | ||
153 | goto err0; | ||
154 | } | ||
155 | |||
156 | res = platform_get_resource(pdev, IORESOURCE_MEM, 1); | ||
157 | if (!res) { | ||
158 | dev_err(&pdev->dev, "couldn't find resource 1\n"); | ||
159 | ret = -ENODEV; | ||
160 | goto err1; | ||
161 | } | ||
162 | |||
163 | l3->l3_base[1] = ioremap(res->start, resource_size(res)); | ||
164 | if (!l3->l3_base[1]) { | ||
165 | dev_err(&pdev->dev, "ioremap failed\n"); | ||
166 | ret = -ENOMEM; | ||
167 | goto err1; | ||
168 | } | ||
169 | |||
170 | res = platform_get_resource(pdev, IORESOURCE_MEM, 2); | ||
171 | if (!res) { | ||
172 | dev_err(&pdev->dev, "couldn't find resource 2\n"); | ||
173 | ret = -ENODEV; | ||
174 | goto err2; | ||
175 | } | ||
176 | |||
177 | l3->l3_base[2] = ioremap(res->start, resource_size(res)); | ||
178 | if (!l3->l3_base[2]) { | ||
179 | dev_err(&pdev->dev, "ioremap failed\n"); | ||
180 | ret = -ENOMEM; | ||
181 | goto err2; | ||
182 | } | ||
183 | |||
184 | /* | ||
185 | * Setup interrupt Handlers | ||
186 | */ | ||
187 | l3->debug_irq = platform_get_irq(pdev, 0); | ||
188 | ret = request_irq(l3->debug_irq, | ||
189 | l3_interrupt_handler, | ||
190 | IRQF_DISABLED, "l3-dbg-irq", l3); | ||
191 | if (ret) { | ||
192 | pr_crit("L3: request_irq failed to register for 0x%x\n", | ||
193 | OMAP44XX_IRQ_L3_DBG); | ||
194 | goto err3; | ||
195 | } | ||
196 | |||
197 | l3->app_irq = platform_get_irq(pdev, 1); | ||
198 | ret = request_irq(l3->app_irq, | ||
199 | l3_interrupt_handler, | ||
200 | IRQF_DISABLED, "l3-app-irq", l3); | ||
201 | if (ret) { | ||
202 | pr_crit("L3: request_irq failed to register for 0x%x\n", | ||
203 | OMAP44XX_IRQ_L3_APP); | ||
204 | goto err4; | ||
205 | } | ||
206 | |||
207 | return 0; | ||
208 | |||
209 | err4: | ||
210 | free_irq(l3->debug_irq, l3); | ||
211 | err3: | ||
212 | iounmap(l3->l3_base[2]); | ||
213 | err2: | ||
214 | iounmap(l3->l3_base[1]); | ||
215 | err1: | ||
216 | iounmap(l3->l3_base[0]); | ||
217 | err0: | ||
218 | kfree(l3); | ||
219 | return ret; | ||
220 | } | ||
221 | |||
222 | static int __devexit omap4_l3_remove(struct platform_device *pdev) | ||
223 | { | ||
224 | struct omap4_l3 *l3 = platform_get_drvdata(pdev); | ||
225 | |||
226 | free_irq(l3->app_irq, l3); | ||
227 | free_irq(l3->debug_irq, l3); | ||
228 | iounmap(l3->l3_base[0]); | ||
229 | iounmap(l3->l3_base[1]); | ||
230 | iounmap(l3->l3_base[2]); | ||
231 | kfree(l3); | ||
232 | |||
233 | return 0; | ||
234 | } | ||
235 | |||
236 | #if defined(CONFIG_OF) | ||
237 | static const struct of_device_id l3_noc_match[] = { | ||
238 | {.compatible = "ti,omap4-l3-noc", }, | ||
239 | {}, | ||
240 | }; | ||
241 | MODULE_DEVICE_TABLE(of, l3_noc_match); | ||
242 | #else | ||
243 | #define l3_noc_match NULL | ||
244 | #endif | ||
245 | |||
246 | static struct platform_driver omap4_l3_driver = { | ||
247 | .probe = omap4_l3_probe, | ||
248 | .remove = __devexit_p(omap4_l3_remove), | ||
249 | .driver = { | ||
250 | .name = "omap_l3_noc", | ||
251 | .owner = THIS_MODULE, | ||
252 | .of_match_table = l3_noc_match, | ||
253 | }, | ||
254 | }; | ||
255 | |||
256 | static int __init omap4_l3_init(void) | ||
257 | { | ||
258 | return platform_driver_register(&omap4_l3_driver); | ||
259 | } | ||
260 | postcore_initcall_sync(omap4_l3_init); | ||
261 | |||
262 | static void __exit omap4_l3_exit(void) | ||
263 | { | ||
264 | platform_driver_unregister(&omap4_l3_driver); | ||
265 | } | ||
266 | module_exit(omap4_l3_exit); | ||
diff --git a/arch/arm/mach-omap2/omap_l3_noc.h b/arch/arm/mach-omap2/omap_l3_noc.h deleted file mode 100644 index a6ce34dc4814..000000000000 --- a/arch/arm/mach-omap2/omap_l3_noc.h +++ /dev/null | |||
@@ -1,176 +0,0 @@ | |||
1 | /* | ||
2 | * OMAP4XXX L3 Interconnect error handling driver header | ||
3 | * | ||
4 | * Copyright (C) 2011 Texas Corporation | ||
5 | * Santosh Shilimkar <santosh.shilimkar@ti.com> | ||
6 | * sricharan <r.sricharan@ti.com> | ||
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 as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
16 | * GNU General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | ||
21 | * USA | ||
22 | */ | ||
23 | #ifndef __ARCH_ARM_MACH_OMAP2_L3_INTERCONNECT_3XXX_H | ||
24 | #define __ARCH_ARM_MACH_OMAP2_L3_INTERCONNECT_3XXX_H | ||
25 | |||
26 | #define L3_MODULES 3 | ||
27 | #define CLEAR_STDERR_LOG (1 << 31) | ||
28 | #define CUSTOM_ERROR 0x2 | ||
29 | #define STANDARD_ERROR 0x0 | ||
30 | #define INBAND_ERROR 0x0 | ||
31 | #define L3_APPLICATION_ERROR 0x0 | ||
32 | #define L3_DEBUG_ERROR 0x1 | ||
33 | |||
34 | /* L3 TARG register offsets */ | ||
35 | #define L3_TARG_STDERRLOG_MAIN 0x48 | ||
36 | #define L3_TARG_STDERRLOG_SLVOFSLSB 0x5c | ||
37 | #define L3_TARG_STDERRLOG_MSTADDR 0x68 | ||
38 | #define L3_FLAGMUX_REGERR0 0xc | ||
39 | |||
40 | #define NUM_OF_L3_MASTERS (sizeof(l3_masters)/sizeof(l3_masters[0])) | ||
41 | |||
42 | static u32 l3_flagmux[L3_MODULES] = { | ||
43 | 0x500, | ||
44 | 0x1000, | ||
45 | 0X0200 | ||
46 | }; | ||
47 | |||
48 | /* L3 Target standard Error register offsets */ | ||
49 | static u32 l3_targ_inst_clk1[] = { | ||
50 | 0x100, /* DMM1 */ | ||
51 | 0x200, /* DMM2 */ | ||
52 | 0x300, /* ABE */ | ||
53 | 0x400, /* L4CFG */ | ||
54 | 0x600, /* CLK2 PWR DISC */ | ||
55 | 0x0, /* Host CLK1 */ | ||
56 | 0x900 /* L4 Wakeup */ | ||
57 | }; | ||
58 | |||
59 | static u32 l3_targ_inst_clk2[] = { | ||
60 | 0x500, /* CORTEX M3 */ | ||
61 | 0x300, /* DSS */ | ||
62 | 0x100, /* GPMC */ | ||
63 | 0x400, /* ISS */ | ||
64 | 0x700, /* IVAHD */ | ||
65 | 0xD00, /* missing in TRM corresponds to AES1*/ | ||
66 | 0x900, /* L4 PER0*/ | ||
67 | 0x200, /* OCMRAM */ | ||
68 | 0x100, /* missing in TRM corresponds to GPMC sERROR*/ | ||
69 | 0x600, /* SGX */ | ||
70 | 0x800, /* SL2 */ | ||
71 | 0x1600, /* C2C */ | ||
72 | 0x1100, /* missing in TRM corresponds PWR DISC CLK1*/ | ||
73 | 0xF00, /* missing in TRM corrsponds to SHA1*/ | ||
74 | 0xE00, /* missing in TRM corresponds to AES2*/ | ||
75 | 0xC00, /* L4 PER3 */ | ||
76 | 0xA00, /* L4 PER1*/ | ||
77 | 0xB00, /* L4 PER2*/ | ||
78 | 0x0, /* HOST CLK2 */ | ||
79 | 0x1800, /* CAL */ | ||
80 | 0x1700 /* LLI */ | ||
81 | }; | ||
82 | |||
83 | static u32 l3_targ_inst_clk3[] = { | ||
84 | 0x0100 /* EMUSS */, | ||
85 | 0x0300, /* DEBUGSS_CT_TBR */ | ||
86 | 0x0 /* HOST CLK3 */ | ||
87 | }; | ||
88 | |||
89 | static struct l3_masters_data { | ||
90 | u32 id; | ||
91 | char name[10]; | ||
92 | } l3_masters[] = { | ||
93 | { 0x0 , "MPU"}, | ||
94 | { 0x10, "CS_ADP"}, | ||
95 | { 0x14, "xxx"}, | ||
96 | { 0x20, "DSP"}, | ||
97 | { 0x30, "IVAHD"}, | ||
98 | { 0x40, "ISS"}, | ||
99 | { 0x44, "DucatiM3"}, | ||
100 | { 0x48, "FaceDetect"}, | ||
101 | { 0x50, "SDMA_Rd"}, | ||
102 | { 0x54, "SDMA_Wr"}, | ||
103 | { 0x58, "xxx"}, | ||
104 | { 0x5C, "xxx"}, | ||
105 | { 0x60, "SGX"}, | ||
106 | { 0x70, "DSS"}, | ||
107 | { 0x80, "C2C"}, | ||
108 | { 0x88, "xxx"}, | ||
109 | { 0x8C, "xxx"}, | ||
110 | { 0x90, "HSI"}, | ||
111 | { 0xA0, "MMC1"}, | ||
112 | { 0xA4, "MMC2"}, | ||
113 | { 0xA8, "MMC6"}, | ||
114 | { 0xB0, "UNIPRO1"}, | ||
115 | { 0xC0, "USBHOSTHS"}, | ||
116 | { 0xC4, "USBOTGHS"}, | ||
117 | { 0xC8, "USBHOSTFS"} | ||
118 | }; | ||
119 | |||
120 | static char *l3_targ_inst_name[L3_MODULES][21] = { | ||
121 | { | ||
122 | "DMM1", | ||
123 | "DMM2", | ||
124 | "ABE", | ||
125 | "L4CFG", | ||
126 | "CLK2 PWR DISC", | ||
127 | "HOST CLK1", | ||
128 | "L4 WAKEUP" | ||
129 | }, | ||
130 | { | ||
131 | "CORTEX M3" , | ||
132 | "DSS ", | ||
133 | "GPMC ", | ||
134 | "ISS ", | ||
135 | "IVAHD ", | ||
136 | "AES1", | ||
137 | "L4 PER0", | ||
138 | "OCMRAM ", | ||
139 | "GPMC sERROR", | ||
140 | "SGX ", | ||
141 | "SL2 ", | ||
142 | "C2C ", | ||
143 | "PWR DISC CLK1", | ||
144 | "SHA1", | ||
145 | "AES2", | ||
146 | "L4 PER3", | ||
147 | "L4 PER1", | ||
148 | "L4 PER2", | ||
149 | "HOST CLK2", | ||
150 | "CAL", | ||
151 | "LLI" | ||
152 | }, | ||
153 | { | ||
154 | "EMUSS", | ||
155 | "DEBUG SOURCE", | ||
156 | "HOST CLK3" | ||
157 | }, | ||
158 | }; | ||
159 | |||
160 | static u32 *l3_targ[L3_MODULES] = { | ||
161 | l3_targ_inst_clk1, | ||
162 | l3_targ_inst_clk2, | ||
163 | l3_targ_inst_clk3, | ||
164 | }; | ||
165 | |||
166 | struct omap4_l3 { | ||
167 | struct device *dev; | ||
168 | struct clk *ick; | ||
169 | |||
170 | /* memory base */ | ||
171 | void __iomem *l3_base[L3_MODULES]; | ||
172 | |||
173 | int debug_irq; | ||
174 | int app_irq; | ||
175 | }; | ||
176 | #endif | ||
diff --git a/arch/arm/mach-omap2/omap_l3_smx.c b/arch/arm/mach-omap2/omap_l3_smx.c deleted file mode 100644 index acc216491b8a..000000000000 --- a/arch/arm/mach-omap2/omap_l3_smx.c +++ /dev/null | |||
@@ -1,297 +0,0 @@ | |||
1 | /* | ||
2 | * OMAP3XXX L3 Interconnect Driver | ||
3 | * | ||
4 | * Copyright (C) 2011 Texas Corporation | ||
5 | * Felipe Balbi <balbi@ti.com> | ||
6 | * Santosh Shilimkar <santosh.shilimkar@ti.com> | ||
7 | * Sricharan <r.sricharan@ti.com> | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License as published by | ||
11 | * the Free Software Foundation; either version 2 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with this program; if not, write to the Free Software | ||
21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | ||
22 | * USA | ||
23 | */ | ||
24 | |||
25 | #include <linux/kernel.h> | ||
26 | #include <linux/slab.h> | ||
27 | #include <linux/platform_device.h> | ||
28 | #include <linux/interrupt.h> | ||
29 | #include <linux/io.h> | ||
30 | #include "omap_l3_smx.h" | ||
31 | |||
32 | static inline u64 omap3_l3_readll(void __iomem *base, u16 reg) | ||
33 | { | ||
34 | return __raw_readll(base + reg); | ||
35 | } | ||
36 | |||
37 | static inline void omap3_l3_writell(void __iomem *base, u16 reg, u64 value) | ||
38 | { | ||
39 | __raw_writell(value, base + reg); | ||
40 | } | ||
41 | |||
42 | static inline enum omap3_l3_code omap3_l3_decode_error_code(u64 error) | ||
43 | { | ||
44 | return (error & 0x0f000000) >> L3_ERROR_LOG_CODE; | ||
45 | } | ||
46 | |||
47 | static inline u32 omap3_l3_decode_addr(u64 error_addr) | ||
48 | { | ||
49 | return error_addr & 0xffffffff; | ||
50 | } | ||
51 | |||
52 | static inline unsigned omap3_l3_decode_cmd(u64 error) | ||
53 | { | ||
54 | return (error & 0x07) >> L3_ERROR_LOG_CMD; | ||
55 | } | ||
56 | |||
57 | static inline enum omap3_l3_initiator_id omap3_l3_decode_initid(u64 error) | ||
58 | { | ||
59 | return (error & 0xff00) >> L3_ERROR_LOG_INITID; | ||
60 | } | ||
61 | |||
62 | static inline unsigned omap3_l3_decode_req_info(u64 error) | ||
63 | { | ||
64 | return (error >> 32) & 0xffff; | ||
65 | } | ||
66 | |||
67 | static char *omap3_l3_code_string(u8 code) | ||
68 | { | ||
69 | switch (code) { | ||
70 | case OMAP_L3_CODE_NOERROR: | ||
71 | return "No Error"; | ||
72 | case OMAP_L3_CODE_UNSUP_CMD: | ||
73 | return "Unsupported Command"; | ||
74 | case OMAP_L3_CODE_ADDR_HOLE: | ||
75 | return "Address Hole"; | ||
76 | case OMAP_L3_CODE_PROTECT_VIOLATION: | ||
77 | return "Protection Violation"; | ||
78 | case OMAP_L3_CODE_IN_BAND_ERR: | ||
79 | return "In-band Error"; | ||
80 | case OMAP_L3_CODE_REQ_TOUT_NOT_ACCEPT: | ||
81 | return "Request Timeout Not Accepted"; | ||
82 | case OMAP_L3_CODE_REQ_TOUT_NO_RESP: | ||
83 | return "Request Timeout, no response"; | ||
84 | default: | ||
85 | return "UNKNOWN error"; | ||
86 | } | ||
87 | } | ||
88 | |||
89 | static char *omap3_l3_initiator_string(u8 initid) | ||
90 | { | ||
91 | switch (initid) { | ||
92 | case OMAP_L3_LCD: | ||
93 | return "LCD"; | ||
94 | case OMAP_L3_SAD2D: | ||
95 | return "SAD2D"; | ||
96 | case OMAP_L3_IA_MPU_SS_1: | ||
97 | case OMAP_L3_IA_MPU_SS_2: | ||
98 | case OMAP_L3_IA_MPU_SS_3: | ||
99 | case OMAP_L3_IA_MPU_SS_4: | ||
100 | case OMAP_L3_IA_MPU_SS_5: | ||
101 | return "MPU"; | ||
102 | case OMAP_L3_IA_IVA_SS_1: | ||
103 | case OMAP_L3_IA_IVA_SS_2: | ||
104 | case OMAP_L3_IA_IVA_SS_3: | ||
105 | return "IVA_SS"; | ||
106 | case OMAP_L3_IA_IVA_SS_DMA_1: | ||
107 | case OMAP_L3_IA_IVA_SS_DMA_2: | ||
108 | case OMAP_L3_IA_IVA_SS_DMA_3: | ||
109 | case OMAP_L3_IA_IVA_SS_DMA_4: | ||
110 | case OMAP_L3_IA_IVA_SS_DMA_5: | ||
111 | case OMAP_L3_IA_IVA_SS_DMA_6: | ||
112 | return "IVA_SS_DMA"; | ||
113 | case OMAP_L3_IA_SGX: | ||
114 | return "SGX"; | ||
115 | case OMAP_L3_IA_CAM_1: | ||
116 | case OMAP_L3_IA_CAM_2: | ||
117 | case OMAP_L3_IA_CAM_3: | ||
118 | return "CAM"; | ||
119 | case OMAP_L3_IA_DAP: | ||
120 | return "DAP"; | ||
121 | case OMAP_L3_SDMA_WR_1: | ||
122 | case OMAP_L3_SDMA_WR_2: | ||
123 | return "SDMA_WR"; | ||
124 | case OMAP_L3_SDMA_RD_1: | ||
125 | case OMAP_L3_SDMA_RD_2: | ||
126 | case OMAP_L3_SDMA_RD_3: | ||
127 | case OMAP_L3_SDMA_RD_4: | ||
128 | return "SDMA_RD"; | ||
129 | case OMAP_L3_USBOTG: | ||
130 | return "USB_OTG"; | ||
131 | case OMAP_L3_USBHOST: | ||
132 | return "USB_HOST"; | ||
133 | default: | ||
134 | return "UNKNOWN Initiator"; | ||
135 | } | ||
136 | } | ||
137 | |||
138 | /* | ||
139 | * omap3_l3_block_irq - handles a register block's irq | ||
140 | * @l3: struct omap3_l3 * | ||
141 | * @base: register block base address | ||
142 | * @error: L3_ERROR_LOG register of our block | ||
143 | * | ||
144 | * Called in hard-irq context. Caller should take care of locking | ||
145 | * | ||
146 | * OMAP36xx TRM gives, on page 2001, Figure 9-10, the Typical Error | ||
147 | * Analysis Sequence, we are following that sequence here, please | ||
148 | * refer to that Figure for more information on the subject. | ||
149 | */ | ||
150 | static irqreturn_t omap3_l3_block_irq(struct omap3_l3 *l3, | ||
151 | u64 error, int error_addr) | ||
152 | { | ||
153 | u8 code = omap3_l3_decode_error_code(error); | ||
154 | u8 initid = omap3_l3_decode_initid(error); | ||
155 | u8 multi = error & L3_ERROR_LOG_MULTI; | ||
156 | u32 address = omap3_l3_decode_addr(error_addr); | ||
157 | |||
158 | pr_err("%s seen by %s %s at address %x\n", | ||
159 | omap3_l3_code_string(code), | ||
160 | omap3_l3_initiator_string(initid), | ||
161 | multi ? "Multiple Errors" : "", address); | ||
162 | WARN_ON(1); | ||
163 | |||
164 | return IRQ_HANDLED; | ||
165 | } | ||
166 | |||
167 | static irqreturn_t omap3_l3_app_irq(int irq, void *_l3) | ||
168 | { | ||
169 | struct omap3_l3 *l3 = _l3; | ||
170 | u64 status, clear; | ||
171 | u64 error; | ||
172 | u64 error_addr; | ||
173 | u64 err_source = 0; | ||
174 | void __iomem *base; | ||
175 | int int_type; | ||
176 | irqreturn_t ret = IRQ_NONE; | ||
177 | |||
178 | int_type = irq == l3->app_irq ? L3_APPLICATION_ERROR : L3_DEBUG_ERROR; | ||
179 | if (!int_type) { | ||
180 | status = omap3_l3_readll(l3->rt, L3_SI_FLAG_STATUS_0); | ||
181 | /* | ||
182 | * if we have a timeout error, there's nothing we can | ||
183 | * do besides rebooting the board. So let's BUG on any | ||
184 | * of such errors and handle the others. timeout error | ||
185 | * is severe and not expected to occur. | ||
186 | */ | ||
187 | BUG_ON(status & L3_STATUS_0_TIMEOUT_MASK); | ||
188 | } else { | ||
189 | status = omap3_l3_readll(l3->rt, L3_SI_FLAG_STATUS_1); | ||
190 | /* No timeout error for debug sources */ | ||
191 | } | ||
192 | |||
193 | /* identify the error source */ | ||
194 | err_source = __ffs(status); | ||
195 | |||
196 | base = l3->rt + omap3_l3_bases[int_type][err_source]; | ||
197 | error = omap3_l3_readll(base, L3_ERROR_LOG); | ||
198 | if (error) { | ||
199 | error_addr = omap3_l3_readll(base, L3_ERROR_LOG_ADDR); | ||
200 | ret |= omap3_l3_block_irq(l3, error, error_addr); | ||
201 | } | ||
202 | |||
203 | /* Clear the status register */ | ||
204 | clear = (L3_AGENT_STATUS_CLEAR_IA << int_type) | | ||
205 | L3_AGENT_STATUS_CLEAR_TA; | ||
206 | omap3_l3_writell(base, L3_AGENT_STATUS, clear); | ||
207 | |||
208 | /* clear the error log register */ | ||
209 | omap3_l3_writell(base, L3_ERROR_LOG, error); | ||
210 | |||
211 | return ret; | ||
212 | } | ||
213 | |||
214 | static int __init omap3_l3_probe(struct platform_device *pdev) | ||
215 | { | ||
216 | struct omap3_l3 *l3; | ||
217 | struct resource *res; | ||
218 | int ret; | ||
219 | |||
220 | l3 = kzalloc(sizeof(*l3), GFP_KERNEL); | ||
221 | if (!l3) | ||
222 | return -ENOMEM; | ||
223 | |||
224 | platform_set_drvdata(pdev, l3); | ||
225 | |||
226 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | ||
227 | if (!res) { | ||
228 | dev_err(&pdev->dev, "couldn't find resource\n"); | ||
229 | ret = -ENODEV; | ||
230 | goto err0; | ||
231 | } | ||
232 | l3->rt = ioremap(res->start, resource_size(res)); | ||
233 | if (!l3->rt) { | ||
234 | dev_err(&pdev->dev, "ioremap failed\n"); | ||
235 | ret = -ENOMEM; | ||
236 | goto err0; | ||
237 | } | ||
238 | |||
239 | l3->debug_irq = platform_get_irq(pdev, 0); | ||
240 | ret = request_irq(l3->debug_irq, omap3_l3_app_irq, | ||
241 | IRQF_DISABLED | IRQF_TRIGGER_RISING, | ||
242 | "l3-debug-irq", l3); | ||
243 | if (ret) { | ||
244 | dev_err(&pdev->dev, "couldn't request debug irq\n"); | ||
245 | goto err1; | ||
246 | } | ||
247 | |||
248 | l3->app_irq = platform_get_irq(pdev, 1); | ||
249 | ret = request_irq(l3->app_irq, omap3_l3_app_irq, | ||
250 | IRQF_DISABLED | IRQF_TRIGGER_RISING, | ||
251 | "l3-app-irq", l3); | ||
252 | if (ret) { | ||
253 | dev_err(&pdev->dev, "couldn't request app irq\n"); | ||
254 | goto err2; | ||
255 | } | ||
256 | |||
257 | return 0; | ||
258 | |||
259 | err2: | ||
260 | free_irq(l3->debug_irq, l3); | ||
261 | err1: | ||
262 | iounmap(l3->rt); | ||
263 | err0: | ||
264 | kfree(l3); | ||
265 | return ret; | ||
266 | } | ||
267 | |||
268 | static int __exit omap3_l3_remove(struct platform_device *pdev) | ||
269 | { | ||
270 | struct omap3_l3 *l3 = platform_get_drvdata(pdev); | ||
271 | |||
272 | free_irq(l3->app_irq, l3); | ||
273 | free_irq(l3->debug_irq, l3); | ||
274 | iounmap(l3->rt); | ||
275 | kfree(l3); | ||
276 | |||
277 | return 0; | ||
278 | } | ||
279 | |||
280 | static struct platform_driver omap3_l3_driver = { | ||
281 | .remove = __exit_p(omap3_l3_remove), | ||
282 | .driver = { | ||
283 | .name = "omap_l3_smx", | ||
284 | }, | ||
285 | }; | ||
286 | |||
287 | static int __init omap3_l3_init(void) | ||
288 | { | ||
289 | return platform_driver_probe(&omap3_l3_driver, omap3_l3_probe); | ||
290 | } | ||
291 | postcore_initcall_sync(omap3_l3_init); | ||
292 | |||
293 | static void __exit omap3_l3_exit(void) | ||
294 | { | ||
295 | platform_driver_unregister(&omap3_l3_driver); | ||
296 | } | ||
297 | module_exit(omap3_l3_exit); | ||
diff --git a/arch/arm/mach-omap2/omap_l3_smx.h b/arch/arm/mach-omap2/omap_l3_smx.h deleted file mode 100644 index 4f3cebca4179..000000000000 --- a/arch/arm/mach-omap2/omap_l3_smx.h +++ /dev/null | |||
@@ -1,338 +0,0 @@ | |||
1 | /* | ||
2 | * OMAP3XXX L3 Interconnect Driver header | ||
3 | * | ||
4 | * Copyright (C) 2011 Texas Corporation | ||
5 | * Felipe Balbi <balbi@ti.com> | ||
6 | * Santosh Shilimkar <santosh.shilimkar@ti.com> | ||
7 | * sricharan <r.sricharan@ti.com> | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License as published by | ||
11 | * the Free Software Foundation; either version 2 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | * | ||
14 | * This program is distributed in the hope that it will be useful, | ||
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
17 | * GNU General Public License for more details. | ||
18 | * | ||
19 | * You should have received a copy of the GNU General Public License | ||
20 | * along with this program; if not, write to the Free Software | ||
21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 | ||
22 | * USA | ||
23 | */ | ||
24 | #ifndef __ARCH_ARM_MACH_OMAP2_L3_INTERCONNECT_3XXX_H | ||
25 | #define __ARCH_ARM_MACH_OMAP2_L3_INTERCONNECT_3XXX_H | ||
26 | |||
27 | /* Register definitions. All 64-bit wide */ | ||
28 | #define L3_COMPONENT 0x000 | ||
29 | #define L3_CORE 0x018 | ||
30 | #define L3_AGENT_CONTROL 0x020 | ||
31 | #define L3_AGENT_STATUS 0x028 | ||
32 | #define L3_ERROR_LOG 0x058 | ||
33 | |||
34 | #define L3_ERROR_LOG_MULTI (1 << 31) | ||
35 | #define L3_ERROR_LOG_SECONDARY (1 << 30) | ||
36 | |||
37 | #define L3_ERROR_LOG_ADDR 0x060 | ||
38 | |||
39 | /* Register definitions for Sideband Interconnect */ | ||
40 | #define L3_SI_CONTROL 0x020 | ||
41 | #define L3_SI_FLAG_STATUS_0 0x510 | ||
42 | |||
43 | static const u64 shift = 1; | ||
44 | |||
45 | #define L3_STATUS_0_MPUIA_BRST (shift << 0) | ||
46 | #define L3_STATUS_0_MPUIA_RSP (shift << 1) | ||
47 | #define L3_STATUS_0_MPUIA_INBAND (shift << 2) | ||
48 | #define L3_STATUS_0_IVAIA_BRST (shift << 6) | ||
49 | #define L3_STATUS_0_IVAIA_RSP (shift << 7) | ||
50 | #define L3_STATUS_0_IVAIA_INBAND (shift << 8) | ||
51 | #define L3_STATUS_0_SGXIA_BRST (shift << 9) | ||
52 | #define L3_STATUS_0_SGXIA_RSP (shift << 10) | ||
53 | #define L3_STATUS_0_SGXIA_MERROR (shift << 11) | ||
54 | #define L3_STATUS_0_CAMIA_BRST (shift << 12) | ||
55 | #define L3_STATUS_0_CAMIA_RSP (shift << 13) | ||
56 | #define L3_STATUS_0_CAMIA_INBAND (shift << 14) | ||
57 | #define L3_STATUS_0_DISPIA_BRST (shift << 15) | ||
58 | #define L3_STATUS_0_DISPIA_RSP (shift << 16) | ||
59 | #define L3_STATUS_0_DMARDIA_BRST (shift << 18) | ||
60 | #define L3_STATUS_0_DMARDIA_RSP (shift << 19) | ||
61 | #define L3_STATUS_0_DMAWRIA_BRST (shift << 21) | ||
62 | #define L3_STATUS_0_DMAWRIA_RSP (shift << 22) | ||
63 | #define L3_STATUS_0_USBOTGIA_BRST (shift << 24) | ||
64 | #define L3_STATUS_0_USBOTGIA_RSP (shift << 25) | ||
65 | #define L3_STATUS_0_USBOTGIA_INBAND (shift << 26) | ||
66 | #define L3_STATUS_0_USBHOSTIA_BRST (shift << 27) | ||
67 | #define L3_STATUS_0_USBHOSTIA_INBAND (shift << 28) | ||
68 | #define L3_STATUS_0_SMSTA_REQ (shift << 48) | ||
69 | #define L3_STATUS_0_GPMCTA_REQ (shift << 49) | ||
70 | #define L3_STATUS_0_OCMRAMTA_REQ (shift << 50) | ||
71 | #define L3_STATUS_0_OCMROMTA_REQ (shift << 51) | ||
72 | #define L3_STATUS_0_IVATA_REQ (shift << 54) | ||
73 | #define L3_STATUS_0_SGXTA_REQ (shift << 55) | ||
74 | #define L3_STATUS_0_SGXTA_SERROR (shift << 56) | ||
75 | #define L3_STATUS_0_GPMCTA_SERROR (shift << 57) | ||
76 | #define L3_STATUS_0_L4CORETA_REQ (shift << 58) | ||
77 | #define L3_STATUS_0_L4PERTA_REQ (shift << 59) | ||
78 | #define L3_STATUS_0_L4EMUTA_REQ (shift << 60) | ||
79 | #define L3_STATUS_0_MAD2DTA_REQ (shift << 61) | ||
80 | |||
81 | #define L3_STATUS_0_TIMEOUT_MASK (L3_STATUS_0_MPUIA_BRST \ | ||
82 | | L3_STATUS_0_MPUIA_RSP \ | ||
83 | | L3_STATUS_0_IVAIA_BRST \ | ||
84 | | L3_STATUS_0_IVAIA_RSP \ | ||
85 | | L3_STATUS_0_SGXIA_BRST \ | ||
86 | | L3_STATUS_0_SGXIA_RSP \ | ||
87 | | L3_STATUS_0_CAMIA_BRST \ | ||
88 | | L3_STATUS_0_CAMIA_RSP \ | ||
89 | | L3_STATUS_0_DISPIA_BRST \ | ||
90 | | L3_STATUS_0_DISPIA_RSP \ | ||
91 | | L3_STATUS_0_DMARDIA_BRST \ | ||
92 | | L3_STATUS_0_DMARDIA_RSP \ | ||
93 | | L3_STATUS_0_DMAWRIA_BRST \ | ||
94 | | L3_STATUS_0_DMAWRIA_RSP \ | ||
95 | | L3_STATUS_0_USBOTGIA_BRST \ | ||
96 | | L3_STATUS_0_USBOTGIA_RSP \ | ||
97 | | L3_STATUS_0_USBHOSTIA_BRST \ | ||
98 | | L3_STATUS_0_SMSTA_REQ \ | ||
99 | | L3_STATUS_0_GPMCTA_REQ \ | ||
100 | | L3_STATUS_0_OCMRAMTA_REQ \ | ||
101 | | L3_STATUS_0_OCMROMTA_REQ \ | ||
102 | | L3_STATUS_0_IVATA_REQ \ | ||
103 | | L3_STATUS_0_SGXTA_REQ \ | ||
104 | | L3_STATUS_0_L4CORETA_REQ \ | ||
105 | | L3_STATUS_0_L4PERTA_REQ \ | ||
106 | | L3_STATUS_0_L4EMUTA_REQ \ | ||
107 | | L3_STATUS_0_MAD2DTA_REQ) | ||
108 | |||
109 | #define L3_SI_FLAG_STATUS_1 0x530 | ||
110 | |||
111 | #define L3_STATUS_1_MPU_DATAIA (1 << 0) | ||
112 | #define L3_STATUS_1_DAPIA0 (1 << 3) | ||
113 | #define L3_STATUS_1_DAPIA1 (1 << 4) | ||
114 | #define L3_STATUS_1_IVAIA (1 << 6) | ||
115 | |||
116 | #define L3_PM_ERROR_LOG 0x020 | ||
117 | #define L3_PM_CONTROL 0x028 | ||
118 | #define L3_PM_ERROR_CLEAR_SINGLE 0x030 | ||
119 | #define L3_PM_ERROR_CLEAR_MULTI 0x038 | ||
120 | #define L3_PM_REQ_INFO_PERMISSION(n) (0x048 + (0x020 * n)) | ||
121 | #define L3_PM_READ_PERMISSION(n) (0x050 + (0x020 * n)) | ||
122 | #define L3_PM_WRITE_PERMISSION(n) (0x058 + (0x020 * n)) | ||
123 | #define L3_PM_ADDR_MATCH(n) (0x060 + (0x020 * n)) | ||
124 | |||
125 | /* L3 error log bit fields. Common for IA and TA */ | ||
126 | #define L3_ERROR_LOG_CODE 24 | ||
127 | #define L3_ERROR_LOG_INITID 8 | ||
128 | #define L3_ERROR_LOG_CMD 0 | ||
129 | |||
130 | /* L3 agent status bit fields. */ | ||
131 | #define L3_AGENT_STATUS_CLEAR_IA 0x10000000 | ||
132 | #define L3_AGENT_STATUS_CLEAR_TA 0x01000000 | ||
133 | |||
134 | #define OMAP34xx_IRQ_L3_APP 10 | ||
135 | #define L3_APPLICATION_ERROR 0x0 | ||
136 | #define L3_DEBUG_ERROR 0x1 | ||
137 | |||
138 | enum omap3_l3_initiator_id { | ||
139 | /* LCD has 1 ID */ | ||
140 | OMAP_L3_LCD = 29, | ||
141 | /* SAD2D has 1 ID */ | ||
142 | OMAP_L3_SAD2D = 28, | ||
143 | /* MPU has 5 IDs */ | ||
144 | OMAP_L3_IA_MPU_SS_1 = 27, | ||
145 | OMAP_L3_IA_MPU_SS_2 = 26, | ||
146 | OMAP_L3_IA_MPU_SS_3 = 25, | ||
147 | OMAP_L3_IA_MPU_SS_4 = 24, | ||
148 | OMAP_L3_IA_MPU_SS_5 = 23, | ||
149 | /* IVA2.2 SS has 3 IDs*/ | ||
150 | OMAP_L3_IA_IVA_SS_1 = 22, | ||
151 | OMAP_L3_IA_IVA_SS_2 = 21, | ||
152 | OMAP_L3_IA_IVA_SS_3 = 20, | ||
153 | /* IVA 2.2 SS DMA has 6 IDS */ | ||
154 | OMAP_L3_IA_IVA_SS_DMA_1 = 19, | ||
155 | OMAP_L3_IA_IVA_SS_DMA_2 = 18, | ||
156 | OMAP_L3_IA_IVA_SS_DMA_3 = 17, | ||
157 | OMAP_L3_IA_IVA_SS_DMA_4 = 16, | ||
158 | OMAP_L3_IA_IVA_SS_DMA_5 = 15, | ||
159 | OMAP_L3_IA_IVA_SS_DMA_6 = 14, | ||
160 | /* SGX has 1 ID */ | ||
161 | OMAP_L3_IA_SGX = 13, | ||
162 | /* CAM has 3 ID */ | ||
163 | OMAP_L3_IA_CAM_1 = 12, | ||
164 | OMAP_L3_IA_CAM_2 = 11, | ||
165 | OMAP_L3_IA_CAM_3 = 10, | ||
166 | /* DAP has 1 ID */ | ||
167 | OMAP_L3_IA_DAP = 9, | ||
168 | /* SDMA WR has 2 IDs */ | ||
169 | OMAP_L3_SDMA_WR_1 = 8, | ||
170 | OMAP_L3_SDMA_WR_2 = 7, | ||
171 | /* SDMA RD has 4 IDs */ | ||
172 | OMAP_L3_SDMA_RD_1 = 6, | ||
173 | OMAP_L3_SDMA_RD_2 = 5, | ||
174 | OMAP_L3_SDMA_RD_3 = 4, | ||
175 | OMAP_L3_SDMA_RD_4 = 3, | ||
176 | /* HSUSB OTG has 1 ID */ | ||
177 | OMAP_L3_USBOTG = 2, | ||
178 | /* HSUSB HOST has 1 ID */ | ||
179 | OMAP_L3_USBHOST = 1, | ||
180 | }; | ||
181 | |||
182 | enum omap3_l3_code { | ||
183 | OMAP_L3_CODE_NOERROR = 0, | ||
184 | OMAP_L3_CODE_UNSUP_CMD = 1, | ||
185 | OMAP_L3_CODE_ADDR_HOLE = 2, | ||
186 | OMAP_L3_CODE_PROTECT_VIOLATION = 3, | ||
187 | OMAP_L3_CODE_IN_BAND_ERR = 4, | ||
188 | /* codes 5 and 6 are reserved */ | ||
189 | OMAP_L3_CODE_REQ_TOUT_NOT_ACCEPT = 7, | ||
190 | OMAP_L3_CODE_REQ_TOUT_NO_RESP = 8, | ||
191 | /* codes 9 - 15 are also reserved */ | ||
192 | }; | ||
193 | |||
194 | struct omap3_l3 { | ||
195 | struct device *dev; | ||
196 | struct clk *ick; | ||
197 | |||
198 | /* memory base*/ | ||
199 | void __iomem *rt; | ||
200 | |||
201 | int debug_irq; | ||
202 | int app_irq; | ||
203 | |||
204 | /* true when and inband functional error occurs */ | ||
205 | unsigned inband:1; | ||
206 | }; | ||
207 | |||
208 | /* offsets for l3 agents in order with the Flag status register */ | ||
209 | static unsigned int omap3_l3_app_bases[] = { | ||
210 | /* MPU IA */ | ||
211 | 0x1400, | ||
212 | 0x1400, | ||
213 | 0x1400, | ||
214 | /* RESERVED */ | ||
215 | 0, | ||
216 | 0, | ||
217 | 0, | ||
218 | /* IVA 2.2 IA */ | ||
219 | 0x1800, | ||
220 | 0x1800, | ||
221 | 0x1800, | ||
222 | /* SGX IA */ | ||
223 | 0x1c00, | ||
224 | 0x1c00, | ||
225 | /* RESERVED */ | ||
226 | 0, | ||
227 | /* CAMERA IA */ | ||
228 | 0x5800, | ||
229 | 0x5800, | ||
230 | 0x5800, | ||
231 | /* DISPLAY IA */ | ||
232 | 0x5400, | ||
233 | 0x5400, | ||
234 | /* RESERVED */ | ||
235 | 0, | ||
236 | /*SDMA RD IA */ | ||
237 | 0x4c00, | ||
238 | 0x4c00, | ||
239 | /* RESERVED */ | ||
240 | 0, | ||
241 | /* SDMA WR IA */ | ||
242 | 0x5000, | ||
243 | 0x5000, | ||
244 | /* RESERVED */ | ||
245 | 0, | ||
246 | /* USB OTG IA */ | ||
247 | 0x4400, | ||
248 | 0x4400, | ||
249 | 0x4400, | ||
250 | /* USB HOST IA */ | ||
251 | 0x4000, | ||
252 | 0x4000, | ||
253 | /* RESERVED */ | ||
254 | 0, | ||
255 | 0, | ||
256 | 0, | ||
257 | 0, | ||
258 | /* SAD2D IA */ | ||
259 | 0x3000, | ||
260 | 0x3000, | ||
261 | 0x3000, | ||
262 | /* RESERVED */ | ||
263 | 0, | ||
264 | 0, | ||
265 | 0, | ||
266 | 0, | ||
267 | 0, | ||
268 | 0, | ||
269 | 0, | ||
270 | 0, | ||
271 | 0, | ||
272 | 0, | ||
273 | 0, | ||
274 | 0, | ||
275 | /* SMA TA */ | ||
276 | 0x2000, | ||
277 | /* GPMC TA */ | ||
278 | 0x2400, | ||
279 | /* OCM RAM TA */ | ||
280 | 0x2800, | ||
281 | /* OCM ROM TA */ | ||
282 | 0x2C00, | ||
283 | /* L4 CORE TA */ | ||
284 | 0x6800, | ||
285 | /* L4 PER TA */ | ||
286 | 0x6c00, | ||
287 | /* IVA 2.2 TA */ | ||
288 | 0x6000, | ||
289 | /* SGX TA */ | ||
290 | 0x6400, | ||
291 | /* L4 EMU TA */ | ||
292 | 0x7000, | ||
293 | /* GPMC TA */ | ||
294 | 0x2400, | ||
295 | /* L4 CORE TA */ | ||
296 | 0x6800, | ||
297 | /* L4 PER TA */ | ||
298 | 0x6c00, | ||
299 | /* L4 EMU TA */ | ||
300 | 0x7000, | ||
301 | /* MAD2D TA */ | ||
302 | 0x3400, | ||
303 | /* RESERVED */ | ||
304 | 0, | ||
305 | 0, | ||
306 | }; | ||
307 | |||
308 | static unsigned int omap3_l3_debug_bases[] = { | ||
309 | /* MPU DATA IA */ | ||
310 | 0x1400, | ||
311 | /* RESERVED */ | ||
312 | 0, | ||
313 | 0, | ||
314 | /* DAP IA */ | ||
315 | 0x5c00, | ||
316 | 0x5c00, | ||
317 | /* RESERVED */ | ||
318 | 0, | ||
319 | /* IVA 2.2 IA */ | ||
320 | 0x1800, | ||
321 | /* REST RESERVED */ | ||
322 | }; | ||
323 | |||
324 | static u32 *omap3_l3_bases[] = { | ||
325 | omap3_l3_app_bases, | ||
326 | omap3_l3_debug_bases, | ||
327 | }; | ||
328 | |||
329 | /* | ||
330 | * REVISIT define __raw_readll/__raw_writell here, but move them to | ||
331 | * <asm/io.h> at some point | ||
332 | */ | ||
333 | #define __raw_writell(v, a) (__chk_io_ptr(a), \ | ||
334 | *(volatile u64 __force *)(a) = (v)) | ||
335 | #define __raw_readll(a) (__chk_io_ptr(a), \ | ||
336 | *(volatile u64 __force *)(a)) | ||
337 | |||
338 | #endif | ||
diff --git a/arch/arm/mach-omap2/omap_phy_internal.c b/arch/arm/mach-omap2/omap_phy_internal.c index d52651a05daa..d992db8ff0b0 100644 --- a/arch/arm/mach-omap2/omap_phy_internal.c +++ b/arch/arm/mach-omap2/omap_phy_internal.c | |||
@@ -29,145 +29,9 @@ | |||
29 | #include <linux/usb.h> | 29 | #include <linux/usb.h> |
30 | 30 | ||
31 | #include <plat/usb.h> | 31 | #include <plat/usb.h> |
32 | #include "control.h" | ||
33 | |||
34 | /* OMAP control module register for UTMI PHY */ | ||
35 | #define CONTROL_DEV_CONF 0x300 | ||
36 | #define PHY_PD 0x1 | ||
37 | |||
38 | #define USBOTGHS_CONTROL 0x33c | ||
39 | #define AVALID BIT(0) | ||
40 | #define BVALID BIT(1) | ||
41 | #define VBUSVALID BIT(2) | ||
42 | #define SESSEND BIT(3) | ||
43 | #define IDDIG BIT(4) | ||
44 | |||
45 | static struct clk *phyclk, *clk48m, *clk32k; | ||
46 | static void __iomem *ctrl_base; | ||
47 | static int usbotghs_control; | ||
48 | |||
49 | int omap4430_phy_init(struct device *dev) | ||
50 | { | ||
51 | ctrl_base = ioremap(OMAP443X_SCM_BASE, SZ_1K); | ||
52 | if (!ctrl_base) { | ||
53 | pr_err("control module ioremap failed\n"); | ||
54 | return -ENOMEM; | ||
55 | } | ||
56 | /* Power down the phy */ | ||
57 | __raw_writel(PHY_PD, ctrl_base + CONTROL_DEV_CONF); | ||
58 | |||
59 | if (!dev) { | ||
60 | iounmap(ctrl_base); | ||
61 | return 0; | ||
62 | } | ||
63 | |||
64 | phyclk = clk_get(dev, "ocp2scp_usb_phy_ick"); | ||
65 | if (IS_ERR(phyclk)) { | ||
66 | dev_err(dev, "cannot clk_get ocp2scp_usb_phy_ick\n"); | ||
67 | iounmap(ctrl_base); | ||
68 | return PTR_ERR(phyclk); | ||
69 | } | ||
70 | |||
71 | clk48m = clk_get(dev, "ocp2scp_usb_phy_phy_48m"); | ||
72 | if (IS_ERR(clk48m)) { | ||
73 | dev_err(dev, "cannot clk_get ocp2scp_usb_phy_phy_48m\n"); | ||
74 | clk_put(phyclk); | ||
75 | iounmap(ctrl_base); | ||
76 | return PTR_ERR(clk48m); | ||
77 | } | ||
78 | |||
79 | clk32k = clk_get(dev, "usb_phy_cm_clk32k"); | ||
80 | if (IS_ERR(clk32k)) { | ||
81 | dev_err(dev, "cannot clk_get usb_phy_cm_clk32k\n"); | ||
82 | clk_put(phyclk); | ||
83 | clk_put(clk48m); | ||
84 | iounmap(ctrl_base); | ||
85 | return PTR_ERR(clk32k); | ||
86 | } | ||
87 | return 0; | ||
88 | } | ||
89 | |||
90 | int omap4430_phy_set_clk(struct device *dev, int on) | ||
91 | { | ||
92 | static int state; | ||
93 | |||
94 | if (on && !state) { | ||
95 | /* Enable the phy clocks */ | ||
96 | clk_enable(phyclk); | ||
97 | clk_enable(clk48m); | ||
98 | clk_enable(clk32k); | ||
99 | state = 1; | ||
100 | } else if (state) { | ||
101 | /* Disable the phy clocks */ | ||
102 | clk_disable(phyclk); | ||
103 | clk_disable(clk48m); | ||
104 | clk_disable(clk32k); | ||
105 | state = 0; | ||
106 | } | ||
107 | return 0; | ||
108 | } | ||
109 | |||
110 | int omap4430_phy_power(struct device *dev, int ID, int on) | ||
111 | { | ||
112 | if (on) { | ||
113 | if (ID) | ||
114 | /* enable VBUS valid, IDDIG groung */ | ||
115 | __raw_writel(AVALID | VBUSVALID, ctrl_base + | ||
116 | USBOTGHS_CONTROL); | ||
117 | else | ||
118 | /* | ||
119 | * Enable VBUS Valid, AValid and IDDIG | ||
120 | * high impedance | ||
121 | */ | ||
122 | __raw_writel(IDDIG | AVALID | VBUSVALID, | ||
123 | ctrl_base + USBOTGHS_CONTROL); | ||
124 | } else { | ||
125 | /* Enable session END and IDIG to high impedance. */ | ||
126 | __raw_writel(SESSEND | IDDIG, ctrl_base + | ||
127 | USBOTGHS_CONTROL); | ||
128 | } | ||
129 | return 0; | ||
130 | } | ||
131 | |||
132 | int omap4430_phy_suspend(struct device *dev, int suspend) | ||
133 | { | ||
134 | if (suspend) { | ||
135 | /* Disable the clocks */ | ||
136 | omap4430_phy_set_clk(dev, 0); | ||
137 | /* Power down the phy */ | ||
138 | __raw_writel(PHY_PD, ctrl_base + CONTROL_DEV_CONF); | ||
139 | |||
140 | /* save the context */ | ||
141 | usbotghs_control = __raw_readl(ctrl_base + USBOTGHS_CONTROL); | ||
142 | } else { | ||
143 | /* Enable the internel phy clcoks */ | ||
144 | omap4430_phy_set_clk(dev, 1); | ||
145 | /* power on the phy */ | ||
146 | if (__raw_readl(ctrl_base + CONTROL_DEV_CONF) & PHY_PD) { | ||
147 | __raw_writel(~PHY_PD, ctrl_base + CONTROL_DEV_CONF); | ||
148 | mdelay(200); | ||
149 | } | ||
150 | |||
151 | /* restore the context */ | ||
152 | __raw_writel(usbotghs_control, ctrl_base + USBOTGHS_CONTROL); | ||
153 | } | ||
154 | |||
155 | return 0; | ||
156 | } | ||
157 | |||
158 | int omap4430_phy_exit(struct device *dev) | ||
159 | { | ||
160 | if (ctrl_base) | ||
161 | iounmap(ctrl_base); | ||
162 | if (phyclk) | ||
163 | clk_put(phyclk); | ||
164 | if (clk48m) | ||
165 | clk_put(clk48m); | ||
166 | if (clk32k) | ||
167 | clk_put(clk32k); | ||
168 | 32 | ||
169 | return 0; | 33 | #include "soc.h" |
170 | } | 34 | #include "control.h" |
171 | 35 | ||
172 | void am35x_musb_reset(void) | 36 | void am35x_musb_reset(void) |
173 | { | 37 | { |
diff --git a/arch/arm/mach-omap2/opp.c b/arch/arm/mach-omap2/opp.c index d8f6dbf45d16..58e16aef40bb 100644 --- a/arch/arm/mach-omap2/opp.c +++ b/arch/arm/mach-omap2/opp.c | |||
@@ -18,6 +18,7 @@ | |||
18 | */ | 18 | */ |
19 | #include <linux/module.h> | 19 | #include <linux/module.h> |
20 | #include <linux/opp.h> | 20 | #include <linux/opp.h> |
21 | #include <linux/cpu.h> | ||
21 | 22 | ||
22 | #include <plat/omap_device.h> | 23 | #include <plat/omap_device.h> |
23 | 24 | ||
@@ -62,27 +63,34 @@ int __init omap_init_opp_table(struct omap_opp_def *opp_def, | |||
62 | __func__, i); | 63 | __func__, i); |
63 | return -EINVAL; | 64 | return -EINVAL; |
64 | } | 65 | } |
65 | oh = omap_hwmod_lookup(opp_def->hwmod_name); | 66 | |
66 | if (!oh || !oh->od) { | 67 | if (!strncmp(opp_def->hwmod_name, "mpu", 3)) { |
67 | pr_debug("%s: no hwmod or odev for %s, [%d] " | 68 | /* |
68 | "cannot add OPPs.\n", __func__, | 69 | * All current OMAPs share voltage rail and |
69 | opp_def->hwmod_name, i); | 70 | * clock source, so CPU0 is used to represent |
70 | continue; | 71 | * the MPU-SS. |
72 | */ | ||
73 | dev = get_cpu_device(0); | ||
74 | } else { | ||
75 | oh = omap_hwmod_lookup(opp_def->hwmod_name); | ||
76 | if (!oh || !oh->od) { | ||
77 | pr_debug("%s: no hwmod or odev for %s, [%d] cannot add OPPs.\n", | ||
78 | __func__, opp_def->hwmod_name, i); | ||
79 | continue; | ||
80 | } | ||
81 | dev = &oh->od->pdev->dev; | ||
71 | } | 82 | } |
72 | dev = &oh->od->pdev->dev; | ||
73 | 83 | ||
74 | r = opp_add(dev, opp_def->freq, opp_def->u_volt); | 84 | r = opp_add(dev, opp_def->freq, opp_def->u_volt); |
75 | if (r) { | 85 | if (r) { |
76 | dev_err(dev, "%s: add OPP %ld failed for %s [%d] " | 86 | dev_err(dev, "%s: add OPP %ld failed for %s [%d] result=%d\n", |
77 | "result=%d\n", | 87 | __func__, opp_def->freq, |
78 | __func__, opp_def->freq, | 88 | opp_def->hwmod_name, i, r); |
79 | opp_def->hwmod_name, i, r); | ||
80 | } else { | 89 | } else { |
81 | if (!opp_def->default_available) | 90 | if (!opp_def->default_available) |
82 | r = opp_disable(dev, opp_def->freq); | 91 | r = opp_disable(dev, opp_def->freq); |
83 | if (r) | 92 | if (r) |
84 | dev_err(dev, "%s: disable %ld failed for %s " | 93 | dev_err(dev, "%s: disable %ld failed for %s [%d] result=%d\n", |
85 | "[%d] result=%d\n", | ||
86 | __func__, opp_def->freq, | 94 | __func__, opp_def->freq, |
87 | opp_def->hwmod_name, i, r); | 95 | opp_def->hwmod_name, i, r); |
88 | } | 96 | } |
diff --git a/arch/arm/mach-omap2/opp2420_data.c b/arch/arm/mach-omap2/opp2420_data.c index 5037e76e4e23..a9e8cf21705d 100644 --- a/arch/arm/mach-omap2/opp2420_data.c +++ b/arch/arm/mach-omap2/opp2420_data.c | |||
@@ -28,7 +28,7 @@ | |||
28 | * http://repository.maemo.org/pool/diablo/free/k/kernel-source-diablo/ | 28 | * http://repository.maemo.org/pool/diablo/free/k/kernel-source-diablo/ |
29 | */ | 29 | */ |
30 | 30 | ||
31 | #include <plat/hardware.h> | 31 | #include <linux/kernel.h> |
32 | 32 | ||
33 | #include "opp2xxx.h" | 33 | #include "opp2xxx.h" |
34 | #include "sdrc.h" | 34 | #include "sdrc.h" |
diff --git a/arch/arm/mach-omap2/opp2430_data.c b/arch/arm/mach-omap2/opp2430_data.c index 750805c528d8..0e75ec3e114b 100644 --- a/arch/arm/mach-omap2/opp2430_data.c +++ b/arch/arm/mach-omap2/opp2430_data.c | |||
@@ -26,7 +26,7 @@ | |||
26 | * This is technically part of the OMAP2xxx clock code. | 26 | * This is technically part of the OMAP2xxx clock code. |
27 | */ | 27 | */ |
28 | 28 | ||
29 | #include <plat/hardware.h> | 29 | #include <linux/kernel.h> |
30 | 30 | ||
31 | #include "opp2xxx.h" | 31 | #include "opp2xxx.h" |
32 | #include "sdrc.h" | 32 | #include "sdrc.h" |
diff --git a/arch/arm/mach-omap2/opp3xxx_data.c b/arch/arm/mach-omap2/opp3xxx_data.c index d95f3f945d4a..75cef5f67a8a 100644 --- a/arch/arm/mach-omap2/opp3xxx_data.c +++ b/arch/arm/mach-omap2/opp3xxx_data.c | |||
@@ -19,8 +19,6 @@ | |||
19 | */ | 19 | */ |
20 | #include <linux/module.h> | 20 | #include <linux/module.h> |
21 | 21 | ||
22 | #include <plat/cpu.h> | ||
23 | |||
24 | #include "control.h" | 22 | #include "control.h" |
25 | #include "omap_opp_data.h" | 23 | #include "omap_opp_data.h" |
26 | #include "pm.h" | 24 | #include "pm.h" |
diff --git a/arch/arm/mach-omap2/opp4xxx_data.c b/arch/arm/mach-omap2/opp4xxx_data.c index c95415da23c2..a9fd6d5fe79e 100644 --- a/arch/arm/mach-omap2/opp4xxx_data.c +++ b/arch/arm/mach-omap2/opp4xxx_data.c | |||
@@ -20,8 +20,7 @@ | |||
20 | */ | 20 | */ |
21 | #include <linux/module.h> | 21 | #include <linux/module.h> |
22 | 22 | ||
23 | #include <plat/cpu.h> | 23 | #include "soc.h" |
24 | |||
25 | #include "control.h" | 24 | #include "control.h" |
26 | #include "omap_opp_data.h" | 25 | #include "omap_opp_data.h" |
27 | #include "pm.h" | 26 | #include "pm.h" |
diff --git a/arch/arm/mach-omap2/pm-debug.c b/arch/arm/mach-omap2/pm-debug.c index 814bcd901596..46092cd806fa 100644 --- a/arch/arm/mach-omap2/pm-debug.c +++ b/arch/arm/mach-omap2/pm-debug.c | |||
@@ -28,7 +28,6 @@ | |||
28 | #include <linux/slab.h> | 28 | #include <linux/slab.h> |
29 | 29 | ||
30 | #include <plat/clock.h> | 30 | #include <plat/clock.h> |
31 | #include <plat/board.h> | ||
32 | #include "powerdomain.h" | 31 | #include "powerdomain.h" |
33 | #include "clockdomain.h" | 32 | #include "clockdomain.h" |
34 | #include <plat/dmtimer.h> | 33 | #include <plat/dmtimer.h> |
@@ -169,7 +168,7 @@ static int pm_dbg_open(struct inode *inode, struct file *file) | |||
169 | default: | 168 | default: |
170 | return single_open(file, pm_dbg_show_timers, | 169 | return single_open(file, pm_dbg_show_timers, |
171 | &inode->i_private); | 170 | &inode->i_private); |
172 | }; | 171 | } |
173 | } | 172 | } |
174 | 173 | ||
175 | static const struct file_operations debug_fops = { | 174 | static const struct file_operations debug_fops = { |
diff --git a/arch/arm/mach-omap2/pm.c b/arch/arm/mach-omap2/pm.c index 9cb5cede0f50..ea61c32957bd 100644 --- a/arch/arm/mach-omap2/pm.c +++ b/arch/arm/mach-omap2/pm.c | |||
@@ -16,6 +16,7 @@ | |||
16 | #include <linux/opp.h> | 16 | #include <linux/opp.h> |
17 | #include <linux/export.h> | 17 | #include <linux/export.h> |
18 | #include <linux/suspend.h> | 18 | #include <linux/suspend.h> |
19 | #include <linux/cpu.h> | ||
19 | 20 | ||
20 | #include <asm/system_misc.h> | 21 | #include <asm/system_misc.h> |
21 | 22 | ||
@@ -80,7 +81,8 @@ static void __init omap2_init_processor_devices(void) | |||
80 | 81 | ||
81 | int __init omap_pm_clkdms_setup(struct clockdomain *clkdm, void *unused) | 82 | int __init omap_pm_clkdms_setup(struct clockdomain *clkdm, void *unused) |
82 | { | 83 | { |
83 | if (clkdm->flags & CLKDM_CAN_ENABLE_AUTO) | 84 | if ((clkdm->flags & CLKDM_CAN_ENABLE_AUTO) && |
85 | !(clkdm->flags & CLKDM_MISSING_IDLE_REPORTING)) | ||
84 | clkdm_allow_idle(clkdm); | 86 | clkdm_allow_idle(clkdm); |
85 | else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP && | 87 | else if (clkdm->flags & CLKDM_CAN_FORCE_SLEEP && |
86 | atomic_read(&clkdm->usecount) == 0) | 88 | atomic_read(&clkdm->usecount) == 0) |
@@ -168,7 +170,15 @@ static int __init omap2_set_init_voltage(char *vdd_name, char *clk_name, | |||
168 | goto exit; | 170 | goto exit; |
169 | } | 171 | } |
170 | 172 | ||
171 | dev = omap_device_get_by_hwmod_name(oh_name); | 173 | if (!strncmp(oh_name, "mpu", 3)) |
174 | /* | ||
175 | * All current OMAPs share voltage rail and clock | ||
176 | * source, so CPU0 is used to represent the MPU-SS. | ||
177 | */ | ||
178 | dev = get_cpu_device(0); | ||
179 | else | ||
180 | dev = omap_device_get_by_hwmod_name(oh_name); | ||
181 | |||
172 | if (IS_ERR(dev)) { | 182 | if (IS_ERR(dev)) { |
173 | pr_err("%s: Unable to get dev pointer for hwmod %s\n", | 183 | pr_err("%s: Unable to get dev pointer for hwmod %s\n", |
174 | __func__, oh_name); | 184 | __func__, oh_name); |
@@ -176,7 +186,7 @@ static int __init omap2_set_init_voltage(char *vdd_name, char *clk_name, | |||
176 | } | 186 | } |
177 | 187 | ||
178 | voltdm = voltdm_lookup(vdd_name); | 188 | voltdm = voltdm_lookup(vdd_name); |
179 | if (IS_ERR(voltdm)) { | 189 | if (!voltdm) { |
180 | pr_err("%s: unable to get vdd pointer for vdd_%s\n", | 190 | pr_err("%s: unable to get vdd pointer for vdd_%s\n", |
181 | __func__, vdd_name); | 191 | __func__, vdd_name); |
182 | goto exit; | 192 | goto exit; |
@@ -188,7 +198,7 @@ static int __init omap2_set_init_voltage(char *vdd_name, char *clk_name, | |||
188 | goto exit; | 198 | goto exit; |
189 | } | 199 | } |
190 | 200 | ||
191 | freq = clk->rate; | 201 | freq = clk_get_rate(clk); |
192 | clk_put(clk); | 202 | clk_put(clk); |
193 | 203 | ||
194 | rcu_read_lock(); | 204 | rcu_read_lock(); |
@@ -203,8 +213,8 @@ static int __init omap2_set_init_voltage(char *vdd_name, char *clk_name, | |||
203 | bootup_volt = opp_get_voltage(opp); | 213 | bootup_volt = opp_get_voltage(opp); |
204 | rcu_read_unlock(); | 214 | rcu_read_unlock(); |
205 | if (!bootup_volt) { | 215 | if (!bootup_volt) { |
206 | pr_err("%s: unable to find voltage corresponding " | 216 | pr_err("%s: unable to find voltage corresponding to the bootup OPP for vdd_%s\n", |
207 | "to the bootup OPP for vdd_%s\n", __func__, vdd_name); | 217 | __func__, vdd_name); |
208 | goto exit; | 218 | goto exit; |
209 | } | 219 | } |
210 | 220 | ||
diff --git a/arch/arm/mach-omap2/pm24xx.c b/arch/arm/mach-omap2/pm24xx.c index 2edeffc923a6..8af6cd6ac331 100644 --- a/arch/arm/mach-omap2/pm24xx.c +++ b/arch/arm/mach-omap2/pm24xx.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <linux/irq.h> | 29 | #include <linux/irq.h> |
30 | #include <linux/time.h> | 30 | #include <linux/time.h> |
31 | #include <linux/gpio.h> | 31 | #include <linux/gpio.h> |
32 | #include <linux/platform_data/gpio-omap.h> | ||
32 | 33 | ||
33 | #include <asm/mach/time.h> | 34 | #include <asm/mach/time.h> |
34 | #include <asm/mach/irq.h> | 35 | #include <asm/mach/irq.h> |
@@ -38,9 +39,6 @@ | |||
38 | #include <plat/clock.h> | 39 | #include <plat/clock.h> |
39 | #include <plat/sram.h> | 40 | #include <plat/sram.h> |
40 | #include <plat/dma.h> | 41 | #include <plat/dma.h> |
41 | #include <plat/board.h> | ||
42 | |||
43 | #include <mach/irqs.h> | ||
44 | 42 | ||
45 | #include "common.h" | 43 | #include "common.h" |
46 | #include "prm2xxx_3xxx.h" | 44 | #include "prm2xxx_3xxx.h" |
@@ -352,16 +350,6 @@ int __init omap2_pm_init(void) | |||
352 | 350 | ||
353 | prcm_setup_regs(); | 351 | prcm_setup_regs(); |
354 | 352 | ||
355 | /* Hack to prevent MPU retention when STI console is enabled. */ | ||
356 | { | ||
357 | const struct omap_sti_console_config *sti; | ||
358 | |||
359 | sti = omap_get_config(OMAP_TAG_STI_CONSOLE, | ||
360 | struct omap_sti_console_config); | ||
361 | if (sti != NULL && sti->enable) | ||
362 | sti_console_enabled = 1; | ||
363 | } | ||
364 | |||
365 | /* | 353 | /* |
366 | * We copy the assembler sleep/wakeup routines to SRAM. | 354 | * We copy the assembler sleep/wakeup routines to SRAM. |
367 | * These routines need to be in SRAM as that's the only | 355 | * These routines need to be in SRAM as that's the only |
diff --git a/arch/arm/mach-omap2/pm34xx.c b/arch/arm/mach-omap2/pm34xx.c index 05bd8f02723f..ba670db1fd37 100644 --- a/arch/arm/mach-omap2/pm34xx.c +++ b/arch/arm/mach-omap2/pm34xx.c | |||
@@ -28,6 +28,8 @@ | |||
28 | #include <linux/clk.h> | 28 | #include <linux/clk.h> |
29 | #include <linux/delay.h> | 29 | #include <linux/delay.h> |
30 | #include <linux/slab.h> | 30 | #include <linux/slab.h> |
31 | #include <linux/platform_data/gpio-omap.h> | ||
32 | |||
31 | #include <trace/events/power.h> | 33 | #include <trace/events/power.h> |
32 | 34 | ||
33 | #include <asm/suspend.h> | 35 | #include <asm/suspend.h> |
@@ -389,9 +391,8 @@ restore: | |||
389 | list_for_each_entry(pwrst, &pwrst_list, node) { | 391 | list_for_each_entry(pwrst, &pwrst_list, node) { |
390 | state = pwrdm_read_prev_pwrst(pwrst->pwrdm); | 392 | state = pwrdm_read_prev_pwrst(pwrst->pwrdm); |
391 | if (state > pwrst->next_state) { | 393 | if (state > pwrst->next_state) { |
392 | pr_info("Powerdomain (%s) didn't enter " | 394 | pr_info("Powerdomain (%s) didn't enter target state %d\n", |
393 | "target state %d\n", | 395 | pwrst->pwrdm->name, pwrst->next_state); |
394 | pwrst->pwrdm->name, pwrst->next_state); | ||
395 | ret = -1; | 396 | ret = -1; |
396 | } | 397 | } |
397 | omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state); | 398 | omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state); |
@@ -731,8 +732,7 @@ int __init omap3_pm_init(void) | |||
731 | omap3_secure_ram_storage = | 732 | omap3_secure_ram_storage = |
732 | kmalloc(0x803F, GFP_KERNEL); | 733 | kmalloc(0x803F, GFP_KERNEL); |
733 | if (!omap3_secure_ram_storage) | 734 | if (!omap3_secure_ram_storage) |
734 | pr_err("Memory allocation failed when " | 735 | pr_err("Memory allocation failed when allocating for secure sram context\n"); |
735 | "allocating for secure sram context\n"); | ||
736 | 736 | ||
737 | local_irq_disable(); | 737 | local_irq_disable(); |
738 | local_fiq_disable(); | 738 | local_fiq_disable(); |
diff --git a/arch/arm/mach-omap2/pm44xx.c b/arch/arm/mach-omap2/pm44xx.c index ea24174f5707..04922d149068 100644 --- a/arch/arm/mach-omap2/pm44xx.c +++ b/arch/arm/mach-omap2/pm44xx.c | |||
@@ -69,9 +69,8 @@ static int omap4_pm_suspend(void) | |||
69 | list_for_each_entry(pwrst, &pwrst_list, node) { | 69 | list_for_each_entry(pwrst, &pwrst_list, node) { |
70 | state = pwrdm_read_prev_pwrst(pwrst->pwrdm); | 70 | state = pwrdm_read_prev_pwrst(pwrst->pwrdm); |
71 | if (state > pwrst->next_state) { | 71 | if (state > pwrst->next_state) { |
72 | pr_info("Powerdomain (%s) didn't enter " | 72 | pr_info("Powerdomain (%s) didn't enter target state %d\n", |
73 | "target state %d\n", | 73 | pwrst->pwrdm->name, pwrst->next_state); |
74 | pwrst->pwrdm->name, pwrst->next_state); | ||
75 | ret = -1; | 74 | ret = -1; |
76 | } | 75 | } |
77 | omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state); | 76 | omap_set_pwrdm_state(pwrst->pwrdm, pwrst->saved_state); |
@@ -189,8 +188,7 @@ int __init omap4_pm_init(void) | |||
189 | ret |= clkdm_add_wkdep(ducati_clkdm, l3_1_clkdm); | 188 | ret |= clkdm_add_wkdep(ducati_clkdm, l3_1_clkdm); |
190 | ret |= clkdm_add_wkdep(ducati_clkdm, l3_2_clkdm); | 189 | ret |= clkdm_add_wkdep(ducati_clkdm, l3_2_clkdm); |
191 | if (ret) { | 190 | if (ret) { |
192 | pr_err("Failed to add MPUSS -> L3/EMIF/L4PER, DUCATI -> L3 " | 191 | pr_err("Failed to add MPUSS -> L3/EMIF/L4PER, DUCATI -> L3 wakeup dependency\n"); |
193 | "wakeup dependency\n"); | ||
194 | goto err2; | 192 | goto err2; |
195 | } | 193 | } |
196 | 194 | ||
diff --git a/arch/arm/mach-omap2/pmu.c b/arch/arm/mach-omap2/pmu.c new file mode 100644 index 000000000000..2a791766283d --- /dev/null +++ b/arch/arm/mach-omap2/pmu.c | |||
@@ -0,0 +1,95 @@ | |||
1 | /* | ||
2 | * OMAP2 ARM Performance Monitoring Unit (PMU) Support | ||
3 | * | ||
4 | * Copyright (C) 2012 Texas Instruments, Inc. | ||
5 | * | ||
6 | * Contacts: | ||
7 | * Jon Hunter <jon-hunter@ti.com> | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify | ||
10 | * it under the terms of the GNU General Public License as published by | ||
11 | * the Free Software Foundation; either version 2 of the License, or | ||
12 | * (at your option) any later version. | ||
13 | */ | ||
14 | #include <linux/pm_runtime.h> | ||
15 | |||
16 | #include <asm/pmu.h> | ||
17 | |||
18 | #include <plat/omap_hwmod.h> | ||
19 | #include <plat/omap_device.h> | ||
20 | |||
21 | static char *omap2_pmu_oh_names[] = {"mpu"}; | ||
22 | static char *omap3_pmu_oh_names[] = {"mpu", "debugss"}; | ||
23 | static char *omap4430_pmu_oh_names[] = {"l3_main_3", "l3_instr", "debugss"}; | ||
24 | static struct platform_device *omap_pmu_dev; | ||
25 | |||
26 | /** | ||
27 | * omap2_init_pmu - creates and registers PMU platform device | ||
28 | * @oh_num: Number of OMAP HWMODs required to create PMU device | ||
29 | * @oh_names: Array of OMAP HWMODS names required to create PMU device | ||
30 | * | ||
31 | * Uses OMAP HWMOD framework to create and register an ARM PMU device | ||
32 | * from a list of HWMOD names passed. Currently supports OMAP2, OMAP3 | ||
33 | * and OMAP4 devices. | ||
34 | */ | ||
35 | static int __init omap2_init_pmu(unsigned oh_num, char *oh_names[]) | ||
36 | { | ||
37 | int i; | ||
38 | struct omap_hwmod *oh[3]; | ||
39 | char *dev_name = "arm-pmu"; | ||
40 | |||
41 | if ((!oh_num) || (oh_num > 3)) | ||
42 | return -EINVAL; | ||
43 | |||
44 | for (i = 0; i < oh_num; i++) { | ||
45 | oh[i] = omap_hwmod_lookup(oh_names[i]); | ||
46 | if (!oh[i]) { | ||
47 | pr_err("Could not look up %s hwmod\n", oh_names[i]); | ||
48 | return -ENODEV; | ||
49 | } | ||
50 | } | ||
51 | |||
52 | omap_pmu_dev = omap_device_build_ss(dev_name, -1, oh, oh_num, NULL, 0, | ||
53 | NULL, 0, 0); | ||
54 | WARN(IS_ERR(omap_pmu_dev), "Can't build omap_device for %s.\n", | ||
55 | dev_name); | ||
56 | |||
57 | if (IS_ERR(omap_pmu_dev)) | ||
58 | return PTR_ERR(omap_pmu_dev); | ||
59 | |||
60 | pm_runtime_enable(&omap_pmu_dev->dev); | ||
61 | |||
62 | return 0; | ||
63 | } | ||
64 | |||
65 | static int __init omap_init_pmu(void) | ||
66 | { | ||
67 | unsigned oh_num; | ||
68 | char **oh_names; | ||
69 | |||
70 | /* | ||
71 | * To create an ARM-PMU device the following HWMODs | ||
72 | * are required for the various OMAP2+ devices. | ||
73 | * | ||
74 | * OMAP24xx: mpu | ||
75 | * OMAP3xxx: mpu, debugss | ||
76 | * OMAP4430: l3_main_3, l3_instr, debugss | ||
77 | * OMAP4460/70: mpu, debugss | ||
78 | */ | ||
79 | if (cpu_is_omap443x()) { | ||
80 | oh_num = ARRAY_SIZE(omap4430_pmu_oh_names); | ||
81 | oh_names = omap4430_pmu_oh_names; | ||
82 | /* XXX Remove the next two lines when CTI driver available */ | ||
83 | pr_info("ARM PMU: not yet supported on OMAP4430 due to missing CTI driver\n"); | ||
84 | return 0; | ||
85 | } else if (cpu_is_omap34xx() || cpu_is_omap44xx()) { | ||
86 | oh_num = ARRAY_SIZE(omap3_pmu_oh_names); | ||
87 | oh_names = omap3_pmu_oh_names; | ||
88 | } else { | ||
89 | oh_num = ARRAY_SIZE(omap2_pmu_oh_names); | ||
90 | oh_names = omap2_pmu_oh_names; | ||
91 | } | ||
92 | |||
93 | return omap2_init_pmu(oh_num, oh_names); | ||
94 | } | ||
95 | subsys_initcall(omap_init_pmu); | ||
diff --git a/arch/arm/mach-omap2/powerdomain.c b/arch/arm/mach-omap2/powerdomain.c index 69b36e185e9b..1678a3284233 100644 --- a/arch/arm/mach-omap2/powerdomain.c +++ b/arch/arm/mach-omap2/powerdomain.c | |||
@@ -28,11 +28,13 @@ | |||
28 | #include "prm44xx.h" | 28 | #include "prm44xx.h" |
29 | 29 | ||
30 | #include <asm/cpu.h> | 30 | #include <asm/cpu.h> |
31 | #include <plat/cpu.h> | 31 | |
32 | #include <plat/prcm.h> | ||
33 | |||
32 | #include "powerdomain.h" | 34 | #include "powerdomain.h" |
33 | #include "clockdomain.h" | 35 | #include "clockdomain.h" |
34 | #include <plat/prcm.h> | ||
35 | 36 | ||
37 | #include "soc.h" | ||
36 | #include "pm.h" | 38 | #include "pm.h" |
37 | 39 | ||
38 | #define PWRDM_TRACE_STATES_FLAG (1<<31) | 40 | #define PWRDM_TRACE_STATES_FLAG (1<<31) |
@@ -339,8 +341,8 @@ int pwrdm_add_clkdm(struct powerdomain *pwrdm, struct clockdomain *clkdm) | |||
339 | if (!pwrdm || !clkdm) | 341 | if (!pwrdm || !clkdm) |
340 | return -EINVAL; | 342 | return -EINVAL; |
341 | 343 | ||
342 | pr_debug("powerdomain: associating clockdomain %s with powerdomain " | 344 | pr_debug("powerdomain: %s: associating clockdomain %s\n", |
343 | "%s\n", clkdm->name, pwrdm->name); | 345 | pwrdm->name, clkdm->name); |
344 | 346 | ||
345 | for (i = 0; i < PWRDM_MAX_CLKDMS; i++) { | 347 | for (i = 0; i < PWRDM_MAX_CLKDMS; i++) { |
346 | if (!pwrdm->pwrdm_clkdms[i]) | 348 | if (!pwrdm->pwrdm_clkdms[i]) |
@@ -354,8 +356,8 @@ int pwrdm_add_clkdm(struct powerdomain *pwrdm, struct clockdomain *clkdm) | |||
354 | } | 356 | } |
355 | 357 | ||
356 | if (i == PWRDM_MAX_CLKDMS) { | 358 | if (i == PWRDM_MAX_CLKDMS) { |
357 | pr_debug("powerdomain: increase PWRDM_MAX_CLKDMS for " | 359 | pr_debug("powerdomain: %s: increase PWRDM_MAX_CLKDMS for clkdm %s\n", |
358 | "pwrdm %s clkdm %s\n", pwrdm->name, clkdm->name); | 360 | pwrdm->name, clkdm->name); |
359 | WARN_ON(1); | 361 | WARN_ON(1); |
360 | ret = -ENOMEM; | 362 | ret = -ENOMEM; |
361 | goto pac_exit; | 363 | goto pac_exit; |
@@ -387,16 +389,16 @@ int pwrdm_del_clkdm(struct powerdomain *pwrdm, struct clockdomain *clkdm) | |||
387 | if (!pwrdm || !clkdm) | 389 | if (!pwrdm || !clkdm) |
388 | return -EINVAL; | 390 | return -EINVAL; |
389 | 391 | ||
390 | pr_debug("powerdomain: dissociating clockdomain %s from powerdomain " | 392 | pr_debug("powerdomain: %s: dissociating clockdomain %s\n", |
391 | "%s\n", clkdm->name, pwrdm->name); | 393 | pwrdm->name, clkdm->name); |
392 | 394 | ||
393 | for (i = 0; i < PWRDM_MAX_CLKDMS; i++) | 395 | for (i = 0; i < PWRDM_MAX_CLKDMS; i++) |
394 | if (pwrdm->pwrdm_clkdms[i] == clkdm) | 396 | if (pwrdm->pwrdm_clkdms[i] == clkdm) |
395 | break; | 397 | break; |
396 | 398 | ||
397 | if (i == PWRDM_MAX_CLKDMS) { | 399 | if (i == PWRDM_MAX_CLKDMS) { |
398 | pr_debug("powerdomain: clkdm %s not associated with pwrdm " | 400 | pr_debug("powerdomain: %s: clkdm %s not associated?!\n", |
399 | "%s ?!\n", clkdm->name, pwrdm->name); | 401 | pwrdm->name, clkdm->name); |
400 | ret = -ENOENT; | 402 | ret = -ENOENT; |
401 | goto pdc_exit; | 403 | goto pdc_exit; |
402 | } | 404 | } |
@@ -485,7 +487,7 @@ int pwrdm_set_next_pwrst(struct powerdomain *pwrdm, u8 pwrst) | |||
485 | if (!(pwrdm->pwrsts & (1 << pwrst))) | 487 | if (!(pwrdm->pwrsts & (1 << pwrst))) |
486 | return -EINVAL; | 488 | return -EINVAL; |
487 | 489 | ||
488 | pr_debug("powerdomain: setting next powerstate for %s to %0x\n", | 490 | pr_debug("powerdomain: %s: setting next powerstate to %0x\n", |
489 | pwrdm->name, pwrst); | 491 | pwrdm->name, pwrst); |
490 | 492 | ||
491 | if (arch_pwrdm && arch_pwrdm->pwrdm_set_next_pwrst) { | 493 | if (arch_pwrdm && arch_pwrdm->pwrdm_set_next_pwrst) { |
@@ -587,7 +589,7 @@ int pwrdm_set_logic_retst(struct powerdomain *pwrdm, u8 pwrst) | |||
587 | if (!(pwrdm->pwrsts_logic_ret & (1 << pwrst))) | 589 | if (!(pwrdm->pwrsts_logic_ret & (1 << pwrst))) |
588 | return -EINVAL; | 590 | return -EINVAL; |
589 | 591 | ||
590 | pr_debug("powerdomain: setting next logic powerstate for %s to %0x\n", | 592 | pr_debug("powerdomain: %s: setting next logic powerstate to %0x\n", |
591 | pwrdm->name, pwrst); | 593 | pwrdm->name, pwrst); |
592 | 594 | ||
593 | if (arch_pwrdm && arch_pwrdm->pwrdm_set_logic_retst) | 595 | if (arch_pwrdm && arch_pwrdm->pwrdm_set_logic_retst) |
@@ -624,8 +626,8 @@ int pwrdm_set_mem_onst(struct powerdomain *pwrdm, u8 bank, u8 pwrst) | |||
624 | if (!(pwrdm->pwrsts_mem_on[bank] & (1 << pwrst))) | 626 | if (!(pwrdm->pwrsts_mem_on[bank] & (1 << pwrst))) |
625 | return -EINVAL; | 627 | return -EINVAL; |
626 | 628 | ||
627 | pr_debug("powerdomain: setting next memory powerstate for domain %s " | 629 | pr_debug("powerdomain: %s: setting next memory powerstate for bank %0x while pwrdm-ON to %0x\n", |
628 | "bank %0x while pwrdm-ON to %0x\n", pwrdm->name, bank, pwrst); | 630 | pwrdm->name, bank, pwrst); |
629 | 631 | ||
630 | if (arch_pwrdm && arch_pwrdm->pwrdm_set_mem_onst) | 632 | if (arch_pwrdm && arch_pwrdm->pwrdm_set_mem_onst) |
631 | ret = arch_pwrdm->pwrdm_set_mem_onst(pwrdm, bank, pwrst); | 633 | ret = arch_pwrdm->pwrdm_set_mem_onst(pwrdm, bank, pwrst); |
@@ -662,8 +664,8 @@ int pwrdm_set_mem_retst(struct powerdomain *pwrdm, u8 bank, u8 pwrst) | |||
662 | if (!(pwrdm->pwrsts_mem_ret[bank] & (1 << pwrst))) | 664 | if (!(pwrdm->pwrsts_mem_ret[bank] & (1 << pwrst))) |
663 | return -EINVAL; | 665 | return -EINVAL; |
664 | 666 | ||
665 | pr_debug("powerdomain: setting next memory powerstate for domain %s " | 667 | pr_debug("powerdomain: %s: setting next memory powerstate for bank %0x while pwrdm-RET to %0x\n", |
666 | "bank %0x while pwrdm-RET to %0x\n", pwrdm->name, bank, pwrst); | 668 | pwrdm->name, bank, pwrst); |
667 | 669 | ||
668 | if (arch_pwrdm && arch_pwrdm->pwrdm_set_mem_retst) | 670 | if (arch_pwrdm && arch_pwrdm->pwrdm_set_mem_retst) |
669 | ret = arch_pwrdm->pwrdm_set_mem_retst(pwrdm, bank, pwrst); | 671 | ret = arch_pwrdm->pwrdm_set_mem_retst(pwrdm, bank, pwrst); |
@@ -841,7 +843,7 @@ int pwrdm_clear_all_prev_pwrst(struct powerdomain *pwrdm) | |||
841 | * warn & fail if it is not ON. | 843 | * warn & fail if it is not ON. |
842 | */ | 844 | */ |
843 | 845 | ||
844 | pr_debug("powerdomain: clearing previous power state reg for %s\n", | 846 | pr_debug("powerdomain: %s: clearing previous power state reg\n", |
845 | pwrdm->name); | 847 | pwrdm->name); |
846 | 848 | ||
847 | if (arch_pwrdm && arch_pwrdm->pwrdm_clear_all_prev_pwrst) | 849 | if (arch_pwrdm && arch_pwrdm->pwrdm_clear_all_prev_pwrst) |
@@ -871,8 +873,7 @@ int pwrdm_enable_hdwr_sar(struct powerdomain *pwrdm) | |||
871 | if (!(pwrdm->flags & PWRDM_HAS_HDWR_SAR)) | 873 | if (!(pwrdm->flags & PWRDM_HAS_HDWR_SAR)) |
872 | return ret; | 874 | return ret; |
873 | 875 | ||
874 | pr_debug("powerdomain: %s: setting SAVEANDRESTORE bit\n", | 876 | pr_debug("powerdomain: %s: setting SAVEANDRESTORE bit\n", pwrdm->name); |
875 | pwrdm->name); | ||
876 | 877 | ||
877 | if (arch_pwrdm && arch_pwrdm->pwrdm_enable_hdwr_sar) | 878 | if (arch_pwrdm && arch_pwrdm->pwrdm_enable_hdwr_sar) |
878 | ret = arch_pwrdm->pwrdm_enable_hdwr_sar(pwrdm); | 879 | ret = arch_pwrdm->pwrdm_enable_hdwr_sar(pwrdm); |
@@ -901,8 +902,7 @@ int pwrdm_disable_hdwr_sar(struct powerdomain *pwrdm) | |||
901 | if (!(pwrdm->flags & PWRDM_HAS_HDWR_SAR)) | 902 | if (!(pwrdm->flags & PWRDM_HAS_HDWR_SAR)) |
902 | return ret; | 903 | return ret; |
903 | 904 | ||
904 | pr_debug("powerdomain: %s: clearing SAVEANDRESTORE bit\n", | 905 | pr_debug("powerdomain: %s: clearing SAVEANDRESTORE bit\n", pwrdm->name); |
905 | pwrdm->name); | ||
906 | 906 | ||
907 | if (arch_pwrdm && arch_pwrdm->pwrdm_disable_hdwr_sar) | 907 | if (arch_pwrdm && arch_pwrdm->pwrdm_disable_hdwr_sar) |
908 | ret = arch_pwrdm->pwrdm_disable_hdwr_sar(pwrdm); | 908 | ret = arch_pwrdm->pwrdm_disable_hdwr_sar(pwrdm); |
diff --git a/arch/arm/mach-omap2/powerdomain2xxx_3xxx.c b/arch/arm/mach-omap2/powerdomain2xxx_3xxx.c index 0f0a9f1592fe..3950ccfe5f4a 100644 --- a/arch/arm/mach-omap2/powerdomain2xxx_3xxx.c +++ b/arch/arm/mach-omap2/powerdomain2xxx_3xxx.c | |||
@@ -122,8 +122,8 @@ static int omap2_pwrdm_wait_transition(struct powerdomain *pwrdm) | |||
122 | udelay(1); | 122 | udelay(1); |
123 | 123 | ||
124 | if (c > PWRDM_TRANSITION_BAILOUT) { | 124 | if (c > PWRDM_TRANSITION_BAILOUT) { |
125 | printk(KERN_ERR "powerdomain: waited too long for " | 125 | pr_err("powerdomain: %s: waited too long to complete transition\n", |
126 | "powerdomain %s to complete transition\n", pwrdm->name); | 126 | pwrdm->name); |
127 | return -EAGAIN; | 127 | return -EAGAIN; |
128 | } | 128 | } |
129 | 129 | ||
diff --git a/arch/arm/mach-omap2/powerdomain44xx.c b/arch/arm/mach-omap2/powerdomain44xx.c index 601325b852a4..aceb4f464c9b 100644 --- a/arch/arm/mach-omap2/powerdomain44xx.c +++ b/arch/arm/mach-omap2/powerdomain44xx.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * OMAP4 powerdomain control | 2 | * OMAP4 powerdomain control |
3 | * | 3 | * |
4 | * Copyright (C) 2009-2010 Texas Instruments, Inc. | 4 | * Copyright (C) 2009-2010, 2012 Texas Instruments, Inc. |
5 | * Copyright (C) 2007-2009 Nokia Corporation | 5 | * Copyright (C) 2007-2009 Nokia Corporation |
6 | * | 6 | * |
7 | * Derived from mach-omap2/powerdomain.c written by Paul Walmsley | 7 | * Derived from mach-omap2/powerdomain.c written by Paul Walmsley |
@@ -151,6 +151,34 @@ static int omap4_pwrdm_read_logic_retst(struct powerdomain *pwrdm) | |||
151 | return v; | 151 | return v; |
152 | } | 152 | } |
153 | 153 | ||
154 | /** | ||
155 | * omap4_pwrdm_read_prev_logic_pwrst - read the previous logic powerstate | ||
156 | * @pwrdm: struct powerdomain * to read the state for | ||
157 | * | ||
158 | * Reads the previous logic powerstate for a powerdomain. This | ||
159 | * function must determine the previous logic powerstate by first | ||
160 | * checking the previous powerstate for the domain. If that was OFF, | ||
161 | * then logic has been lost. If previous state was RETENTION, the | ||
162 | * function reads the setting for the next retention logic state to | ||
163 | * see the actual value. In every other case, the logic is | ||
164 | * retained. Returns either PWRDM_POWER_OFF or PWRDM_POWER_RET | ||
165 | * depending whether the logic was retained or not. | ||
166 | */ | ||
167 | static int omap4_pwrdm_read_prev_logic_pwrst(struct powerdomain *pwrdm) | ||
168 | { | ||
169 | int state; | ||
170 | |||
171 | state = omap4_pwrdm_read_prev_pwrst(pwrdm); | ||
172 | |||
173 | if (state == PWRDM_POWER_OFF) | ||
174 | return PWRDM_POWER_OFF; | ||
175 | |||
176 | if (state != PWRDM_POWER_RET) | ||
177 | return PWRDM_POWER_RET; | ||
178 | |||
179 | return omap4_pwrdm_read_logic_retst(pwrdm); | ||
180 | } | ||
181 | |||
154 | static int omap4_pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank) | 182 | static int omap4_pwrdm_read_mem_pwrst(struct powerdomain *pwrdm, u8 bank) |
155 | { | 183 | { |
156 | u32 m, v; | 184 | u32 m, v; |
@@ -179,6 +207,35 @@ static int omap4_pwrdm_read_mem_retst(struct powerdomain *pwrdm, u8 bank) | |||
179 | return v; | 207 | return v; |
180 | } | 208 | } |
181 | 209 | ||
210 | /** | ||
211 | * omap4_pwrdm_read_prev_mem_pwrst - reads the previous memory powerstate | ||
212 | * @pwrdm: struct powerdomain * to read mem powerstate for | ||
213 | * @bank: memory bank index | ||
214 | * | ||
215 | * Reads the previous memory powerstate for a powerdomain. This | ||
216 | * function must determine the previous memory powerstate by first | ||
217 | * checking the previous powerstate for the domain. If that was OFF, | ||
218 | * then logic has been lost. If previous state was RETENTION, the | ||
219 | * function reads the setting for the next memory retention state to | ||
220 | * see the actual value. In every other case, the logic is | ||
221 | * retained. Returns either PWRDM_POWER_OFF or PWRDM_POWER_RET | ||
222 | * depending whether logic was retained or not. | ||
223 | */ | ||
224 | static int omap4_pwrdm_read_prev_mem_pwrst(struct powerdomain *pwrdm, u8 bank) | ||
225 | { | ||
226 | int state; | ||
227 | |||
228 | state = omap4_pwrdm_read_prev_pwrst(pwrdm); | ||
229 | |||
230 | if (state == PWRDM_POWER_OFF) | ||
231 | return PWRDM_POWER_OFF; | ||
232 | |||
233 | if (state != PWRDM_POWER_RET) | ||
234 | return PWRDM_POWER_RET; | ||
235 | |||
236 | return omap4_pwrdm_read_mem_retst(pwrdm, bank); | ||
237 | } | ||
238 | |||
182 | static int omap4_pwrdm_wait_transition(struct powerdomain *pwrdm) | 239 | static int omap4_pwrdm_wait_transition(struct powerdomain *pwrdm) |
183 | { | 240 | { |
184 | u32 c = 0; | 241 | u32 c = 0; |
@@ -198,8 +255,8 @@ static int omap4_pwrdm_wait_transition(struct powerdomain *pwrdm) | |||
198 | udelay(1); | 255 | udelay(1); |
199 | 256 | ||
200 | if (c > PWRDM_TRANSITION_BAILOUT) { | 257 | if (c > PWRDM_TRANSITION_BAILOUT) { |
201 | printk(KERN_ERR "powerdomain: waited too long for " | 258 | pr_err("powerdomain: %s: waited too long to complete transition\n", |
202 | "powerdomain %s to complete transition\n", pwrdm->name); | 259 | pwrdm->name); |
203 | return -EAGAIN; | 260 | return -EAGAIN; |
204 | } | 261 | } |
205 | 262 | ||
@@ -217,9 +274,11 @@ struct pwrdm_ops omap4_pwrdm_operations = { | |||
217 | .pwrdm_clear_all_prev_pwrst = omap4_pwrdm_clear_all_prev_pwrst, | 274 | .pwrdm_clear_all_prev_pwrst = omap4_pwrdm_clear_all_prev_pwrst, |
218 | .pwrdm_set_logic_retst = omap4_pwrdm_set_logic_retst, | 275 | .pwrdm_set_logic_retst = omap4_pwrdm_set_logic_retst, |
219 | .pwrdm_read_logic_pwrst = omap4_pwrdm_read_logic_pwrst, | 276 | .pwrdm_read_logic_pwrst = omap4_pwrdm_read_logic_pwrst, |
277 | .pwrdm_read_prev_logic_pwrst = omap4_pwrdm_read_prev_logic_pwrst, | ||
220 | .pwrdm_read_logic_retst = omap4_pwrdm_read_logic_retst, | 278 | .pwrdm_read_logic_retst = omap4_pwrdm_read_logic_retst, |
221 | .pwrdm_read_mem_pwrst = omap4_pwrdm_read_mem_pwrst, | 279 | .pwrdm_read_mem_pwrst = omap4_pwrdm_read_mem_pwrst, |
222 | .pwrdm_read_mem_retst = omap4_pwrdm_read_mem_retst, | 280 | .pwrdm_read_mem_retst = omap4_pwrdm_read_mem_retst, |
281 | .pwrdm_read_prev_mem_pwrst = omap4_pwrdm_read_prev_mem_pwrst, | ||
223 | .pwrdm_set_mem_onst = omap4_pwrdm_set_mem_onst, | 282 | .pwrdm_set_mem_onst = omap4_pwrdm_set_mem_onst, |
224 | .pwrdm_set_mem_retst = omap4_pwrdm_set_mem_retst, | 283 | .pwrdm_set_mem_retst = omap4_pwrdm_set_mem_retst, |
225 | .pwrdm_wait_transition = omap4_pwrdm_wait_transition, | 284 | .pwrdm_wait_transition = omap4_pwrdm_wait_transition, |
diff --git a/arch/arm/mach-omap2/powerdomains3xxx_data.c b/arch/arm/mach-omap2/powerdomains3xxx_data.c index bb883e463078..8b23d234fb55 100644 --- a/arch/arm/mach-omap2/powerdomains3xxx_data.c +++ b/arch/arm/mach-omap2/powerdomains3xxx_data.c | |||
@@ -15,11 +15,9 @@ | |||
15 | #include <linux/init.h> | 15 | #include <linux/init.h> |
16 | #include <linux/bug.h> | 16 | #include <linux/bug.h> |
17 | 17 | ||
18 | #include <plat/cpu.h> | 18 | #include "soc.h" |
19 | |||
20 | #include "powerdomain.h" | 19 | #include "powerdomain.h" |
21 | #include "powerdomains2xxx_3xxx_data.h" | 20 | #include "powerdomains2xxx_3xxx_data.h" |
22 | |||
23 | #include "prcm-common.h" | 21 | #include "prcm-common.h" |
24 | #include "prm2xxx_3xxx.h" | 22 | #include "prm2xxx_3xxx.h" |
25 | #include "prm-regbits-34xx.h" | 23 | #include "prm-regbits-34xx.h" |
diff --git a/arch/arm/mach-omap2/prcm-common.h b/arch/arm/mach-omap2/prcm-common.h index e5f0503a68b0..72df97482cc0 100644 --- a/arch/arm/mach-omap2/prcm-common.h +++ b/arch/arm/mach-omap2/prcm-common.h | |||
@@ -109,6 +109,8 @@ | |||
109 | #define OMAP2430_EN_MDM_INTC_MASK (1 << 11) | 109 | #define OMAP2430_EN_MDM_INTC_MASK (1 << 11) |
110 | #define OMAP2430_EN_USBHS_SHIFT 6 | 110 | #define OMAP2430_EN_USBHS_SHIFT 6 |
111 | #define OMAP2430_EN_USBHS_MASK (1 << 6) | 111 | #define OMAP2430_EN_USBHS_MASK (1 << 6) |
112 | #define OMAP24XX_EN_GPMC_SHIFT 1 | ||
113 | #define OMAP24XX_EN_GPMC_MASK (1 << 1) | ||
112 | 114 | ||
113 | /* CM_IDLEST1_CORE, PM_WKST1_CORE shared bits */ | 115 | /* CM_IDLEST1_CORE, PM_WKST1_CORE shared bits */ |
114 | #define OMAP2420_ST_MMC_SHIFT 26 | 116 | #define OMAP2420_ST_MMC_SHIFT 26 |
diff --git a/arch/arm/mach-omap2/prcm.c b/arch/arm/mach-omap2/prcm.c index 053e24ed3c48..0f51e034e0aa 100644 --- a/arch/arm/mach-omap2/prcm.c +++ b/arch/arm/mach-omap2/prcm.c | |||
@@ -27,7 +27,6 @@ | |||
27 | 27 | ||
28 | #include "common.h" | 28 | #include "common.h" |
29 | #include <plat/prcm.h> | 29 | #include <plat/prcm.h> |
30 | #include <plat/irqs.h> | ||
31 | 30 | ||
32 | #include "clock.h" | 31 | #include "clock.h" |
33 | #include "clock2xxx.h" | 32 | #include "clock2xxx.h" |
@@ -140,11 +139,11 @@ int omap2_cm_wait_idlest(void __iomem *reg, u32 mask, u8 idlest, | |||
140 | MAX_MODULE_ENABLE_WAIT, i); | 139 | MAX_MODULE_ENABLE_WAIT, i); |
141 | 140 | ||
142 | if (i < MAX_MODULE_ENABLE_WAIT) | 141 | if (i < MAX_MODULE_ENABLE_WAIT) |
143 | pr_debug("cm: Module associated with clock %s ready after %d " | 142 | pr_debug("cm: Module associated with clock %s ready after %d loops\n", |
144 | "loops\n", name, i); | 143 | name, i); |
145 | else | 144 | else |
146 | pr_err("cm: Module associated with clock %s didn't enable in " | 145 | pr_err("cm: Module associated with clock %s didn't enable in %d tries\n", |
147 | "%d tries\n", name, MAX_MODULE_ENABLE_WAIT); | 146 | name, MAX_MODULE_ENABLE_WAIT); |
148 | 147 | ||
149 | return (i < MAX_MODULE_ENABLE_WAIT) ? 1 : 0; | 148 | return (i < MAX_MODULE_ENABLE_WAIT) ? 1 : 0; |
150 | }; | 149 | }; |
diff --git a/arch/arm/mach-omap2/prm2xxx_3xxx.c b/arch/arm/mach-omap2/prm2xxx_3xxx.c index a0309dea6794..9529984d8d2b 100644 --- a/arch/arm/mach-omap2/prm2xxx_3xxx.c +++ b/arch/arm/mach-omap2/prm2xxx_3xxx.c | |||
@@ -17,11 +17,10 @@ | |||
17 | #include <linux/io.h> | 17 | #include <linux/io.h> |
18 | #include <linux/irq.h> | 18 | #include <linux/irq.h> |
19 | 19 | ||
20 | #include "common.h" | ||
21 | #include <plat/cpu.h> | ||
22 | #include <plat/prcm.h> | 20 | #include <plat/prcm.h> |
23 | #include <plat/irqs.h> | ||
24 | 21 | ||
22 | #include "soc.h" | ||
23 | #include "common.h" | ||
25 | #include "vp.h" | 24 | #include "vp.h" |
26 | 25 | ||
27 | #include "prm2xxx_3xxx.h" | 26 | #include "prm2xxx_3xxx.h" |
@@ -40,7 +39,7 @@ static struct omap_prcm_irq_setup omap3_prcm_irq_setup = { | |||
40 | .nr_regs = 1, | 39 | .nr_regs = 1, |
41 | .irqs = omap3_prcm_irqs, | 40 | .irqs = omap3_prcm_irqs, |
42 | .nr_irqs = ARRAY_SIZE(omap3_prcm_irqs), | 41 | .nr_irqs = ARRAY_SIZE(omap3_prcm_irqs), |
43 | .irq = INT_34XX_PRCM_MPU_IRQ, | 42 | .irq = 11 + OMAP_INTC_START, |
44 | .read_pending_irqs = &omap3xxx_prm_read_pending_irqs, | 43 | .read_pending_irqs = &omap3xxx_prm_read_pending_irqs, |
45 | .ocp_barrier = &omap3xxx_prm_ocp_barrier, | 44 | .ocp_barrier = &omap3xxx_prm_ocp_barrier, |
46 | .save_and_clear_irqen = &omap3xxx_prm_save_and_clear_irqen, | 45 | .save_and_clear_irqen = &omap3xxx_prm_save_and_clear_irqen, |
diff --git a/arch/arm/mach-omap2/prm44xx.c b/arch/arm/mach-omap2/prm44xx.c index bb727c2d9337..f0c4d5f4a174 100644 --- a/arch/arm/mach-omap2/prm44xx.c +++ b/arch/arm/mach-omap2/prm44xx.c | |||
@@ -17,10 +17,9 @@ | |||
17 | #include <linux/err.h> | 17 | #include <linux/err.h> |
18 | #include <linux/io.h> | 18 | #include <linux/io.h> |
19 | 19 | ||
20 | #include <plat/cpu.h> | ||
21 | #include <plat/irqs.h> | ||
22 | #include <plat/prcm.h> | 20 | #include <plat/prcm.h> |
23 | 21 | ||
22 | #include "soc.h" | ||
24 | #include "iomap.h" | 23 | #include "iomap.h" |
25 | #include "common.h" | 24 | #include "common.h" |
26 | #include "vp.h" | 25 | #include "vp.h" |
@@ -40,7 +39,7 @@ static struct omap_prcm_irq_setup omap4_prcm_irq_setup = { | |||
40 | .nr_regs = 2, | 39 | .nr_regs = 2, |
41 | .irqs = omap4_prcm_irqs, | 40 | .irqs = omap4_prcm_irqs, |
42 | .nr_irqs = ARRAY_SIZE(omap4_prcm_irqs), | 41 | .nr_irqs = ARRAY_SIZE(omap4_prcm_irqs), |
43 | .irq = OMAP44XX_IRQ_PRCM, | 42 | .irq = 11 + OMAP44XX_IRQ_GIC_START, |
44 | .read_pending_irqs = &omap44xx_prm_read_pending_irqs, | 43 | .read_pending_irqs = &omap44xx_prm_read_pending_irqs, |
45 | .ocp_barrier = &omap44xx_prm_ocp_barrier, | 44 | .ocp_barrier = &omap44xx_prm_ocp_barrier, |
46 | .save_and_clear_irqen = &omap44xx_prm_save_and_clear_irqen, | 45 | .save_and_clear_irqen = &omap44xx_prm_save_and_clear_irqen, |
diff --git a/arch/arm/mach-omap2/prm_common.c b/arch/arm/mach-omap2/prm_common.c index 03b126d9ad94..6b4d332be2f6 100644 --- a/arch/arm/mach-omap2/prm_common.c +++ b/arch/arm/mach-omap2/prm_common.c | |||
@@ -26,7 +26,6 @@ | |||
26 | 26 | ||
27 | #include <plat/common.h> | 27 | #include <plat/common.h> |
28 | #include <plat/prcm.h> | 28 | #include <plat/prcm.h> |
29 | #include <plat/irqs.h> | ||
30 | 29 | ||
31 | #include "prm2xxx_3xxx.h" | 30 | #include "prm2xxx_3xxx.h" |
32 | #include "prm44xx.h" | 31 | #include "prm44xx.h" |
diff --git a/arch/arm/mach-omap2/sdrc2xxx.c b/arch/arm/mach-omap2/sdrc2xxx.c index 1133bb2f632b..73e55e485329 100644 --- a/arch/arm/mach-omap2/sdrc2xxx.c +++ b/arch/arm/mach-omap2/sdrc2xxx.c | |||
@@ -24,11 +24,11 @@ | |||
24 | #include <linux/clk.h> | 24 | #include <linux/clk.h> |
25 | #include <linux/io.h> | 25 | #include <linux/io.h> |
26 | 26 | ||
27 | #include <plat/hardware.h> | ||
28 | #include <plat/clock.h> | 27 | #include <plat/clock.h> |
29 | #include <plat/sram.h> | 28 | #include <plat/sram.h> |
30 | #include <plat/sdrc.h> | 29 | #include <plat/sdrc.h> |
31 | 30 | ||
31 | #include "soc.h" | ||
32 | #include "iomap.h" | 32 | #include "iomap.h" |
33 | #include "common.h" | 33 | #include "common.h" |
34 | #include "prm2xxx_3xxx.h" | 34 | #include "prm2xxx_3xxx.h" |
diff --git a/arch/arm/mach-omap2/serial.c b/arch/arm/mach-omap2/serial.c index c1b93c752d70..0405c8190803 100644 --- a/arch/arm/mach-omap2/serial.c +++ b/arch/arm/mach-omap2/serial.c | |||
@@ -29,11 +29,11 @@ | |||
29 | 29 | ||
30 | #include <plat/omap-serial.h> | 30 | #include <plat/omap-serial.h> |
31 | #include "common.h" | 31 | #include "common.h" |
32 | #include <plat/board.h> | ||
33 | #include <plat/dma.h> | 32 | #include <plat/dma.h> |
34 | #include <plat/omap_hwmod.h> | 33 | #include <plat/omap_hwmod.h> |
35 | #include <plat/omap_device.h> | 34 | #include <plat/omap_device.h> |
36 | #include <plat/omap-pm.h> | 35 | #include <plat/omap-pm.h> |
36 | #include <plat/serial.h> | ||
37 | 37 | ||
38 | #include "prm2xxx_3xxx.h" | 38 | #include "prm2xxx_3xxx.h" |
39 | #include "pm.h" | 39 | #include "pm.h" |
@@ -81,8 +81,9 @@ static struct omap_uart_port_info omap_serial_default_info[] __initdata = { | |||
81 | }; | 81 | }; |
82 | 82 | ||
83 | #ifdef CONFIG_PM | 83 | #ifdef CONFIG_PM |
84 | static void omap_uart_enable_wakeup(struct platform_device *pdev, bool enable) | 84 | static void omap_uart_enable_wakeup(struct device *dev, bool enable) |
85 | { | 85 | { |
86 | struct platform_device *pdev = to_platform_device(dev); | ||
86 | struct omap_device *od = to_omap_device(pdev); | 87 | struct omap_device *od = to_omap_device(pdev); |
87 | 88 | ||
88 | if (!od) | 89 | if (!od) |
@@ -99,15 +100,17 @@ static void omap_uart_enable_wakeup(struct platform_device *pdev, bool enable) | |||
99 | * in Smartidle Mode When Configured for DMA Operations. | 100 | * in Smartidle Mode When Configured for DMA Operations. |
100 | * WA: configure uart in force idle mode. | 101 | * WA: configure uart in force idle mode. |
101 | */ | 102 | */ |
102 | static void omap_uart_set_noidle(struct platform_device *pdev) | 103 | static void omap_uart_set_noidle(struct device *dev) |
103 | { | 104 | { |
105 | struct platform_device *pdev = to_platform_device(dev); | ||
104 | struct omap_device *od = to_omap_device(pdev); | 106 | struct omap_device *od = to_omap_device(pdev); |
105 | 107 | ||
106 | omap_hwmod_set_slave_idlemode(od->hwmods[0], HWMOD_IDLEMODE_NO); | 108 | omap_hwmod_set_slave_idlemode(od->hwmods[0], HWMOD_IDLEMODE_NO); |
107 | } | 109 | } |
108 | 110 | ||
109 | static void omap_uart_set_smartidle(struct platform_device *pdev) | 111 | static void omap_uart_set_smartidle(struct device *dev) |
110 | { | 112 | { |
113 | struct platform_device *pdev = to_platform_device(dev); | ||
111 | struct omap_device *od = to_omap_device(pdev); | 114 | struct omap_device *od = to_omap_device(pdev); |
112 | u8 idlemode; | 115 | u8 idlemode; |
113 | 116 | ||
@@ -120,10 +123,10 @@ static void omap_uart_set_smartidle(struct platform_device *pdev) | |||
120 | } | 123 | } |
121 | 124 | ||
122 | #else | 125 | #else |
123 | static void omap_uart_enable_wakeup(struct platform_device *pdev, bool enable) | 126 | static void omap_uart_enable_wakeup(struct device *dev, bool enable) |
124 | {} | 127 | {} |
125 | static void omap_uart_set_noidle(struct platform_device *pdev) {} | 128 | static void omap_uart_set_noidle(struct device *dev) {} |
126 | static void omap_uart_set_smartidle(struct platform_device *pdev) {} | 129 | static void omap_uart_set_smartidle(struct device *dev) {} |
127 | #endif /* CONFIG_PM */ | 130 | #endif /* CONFIG_PM */ |
128 | 131 | ||
129 | #ifdef CONFIG_OMAP_MUX | 132 | #ifdef CONFIG_OMAP_MUX |
@@ -229,9 +232,8 @@ static int __init omap_serial_early_init(void) | |||
229 | 232 | ||
230 | if (console_loglevel >= 10) { | 233 | if (console_loglevel >= 10) { |
231 | uart_debug = true; | 234 | uart_debug = true; |
232 | pr_info("%s used as console in debug mode" | 235 | pr_info("%s used as console in debug mode: uart%d clocks will not be gated", |
233 | " uart%d clocks will not be" | 236 | uart_name, uart->num); |
234 | " gated", uart_name, uart->num); | ||
235 | } | 237 | } |
236 | 238 | ||
237 | if (cmdline_find_option("no_console_suspend")) | 239 | if (cmdline_find_option("no_console_suspend")) |
@@ -304,6 +306,9 @@ void __init omap_serial_init_port(struct omap_board_data *bdata, | |||
304 | omap_up.dma_rx_timeout = info->dma_rx_timeout; | 306 | omap_up.dma_rx_timeout = info->dma_rx_timeout; |
305 | omap_up.dma_rx_poll_rate = info->dma_rx_poll_rate; | 307 | omap_up.dma_rx_poll_rate = info->dma_rx_poll_rate; |
306 | omap_up.autosuspend_timeout = info->autosuspend_timeout; | 308 | omap_up.autosuspend_timeout = info->autosuspend_timeout; |
309 | omap_up.DTR_gpio = info->DTR_gpio; | ||
310 | omap_up.DTR_inverted = info->DTR_inverted; | ||
311 | omap_up.DTR_present = info->DTR_present; | ||
307 | 312 | ||
308 | pdata = &omap_up; | 313 | pdata = &omap_up; |
309 | pdata_size = sizeof(struct omap_uart_port_info); | 314 | pdata_size = sizeof(struct omap_uart_port_info); |
@@ -313,8 +318,11 @@ void __init omap_serial_init_port(struct omap_board_data *bdata, | |||
313 | 318 | ||
314 | pdev = omap_device_build(name, uart->num, oh, pdata, pdata_size, | 319 | pdev = omap_device_build(name, uart->num, oh, pdata, pdata_size, |
315 | NULL, 0, false); | 320 | NULL, 0, false); |
316 | WARN(IS_ERR(pdev), "Could not build omap_device for %s: %s.\n", | 321 | if (IS_ERR(pdev)) { |
317 | name, oh->name); | 322 | WARN(1, "Could not build omap_device for %s: %s.\n", name, |
323 | oh->name); | ||
324 | return; | ||
325 | } | ||
318 | 326 | ||
319 | if ((console_uart_id == bdata->id) && no_console_suspend) | 327 | if ((console_uart_id == bdata->id) && no_console_suspend) |
320 | omap_device_disable_idle_on_suspend(pdev); | 328 | omap_device_disable_idle_on_suspend(pdev); |
diff --git a/arch/arm/mach-omap2/sleep24xx.S b/arch/arm/mach-omap2/sleep24xx.S index d4bf904d84ab..ce0ccd26efbd 100644 --- a/arch/arm/mach-omap2/sleep24xx.S +++ b/arch/arm/mach-omap2/sleep24xx.S | |||
@@ -28,8 +28,7 @@ | |||
28 | #include <linux/linkage.h> | 28 | #include <linux/linkage.h> |
29 | #include <asm/assembler.h> | 29 | #include <asm/assembler.h> |
30 | 30 | ||
31 | #include <plat/omap24xx.h> | 31 | #include "omap24xx.h" |
32 | |||
33 | #include "sdrc.h" | 32 | #include "sdrc.h" |
34 | 33 | ||
35 | /* First address of reserved address space? apparently valid for OMAP2 & 3 */ | 34 | /* First address of reserved address space? apparently valid for OMAP2 & 3 */ |
diff --git a/arch/arm/mach-omap2/sleep34xx.S b/arch/arm/mach-omap2/sleep34xx.S index 1f62f23673fb..506987979c1c 100644 --- a/arch/arm/mach-omap2/sleep34xx.S +++ b/arch/arm/mach-omap2/sleep34xx.S | |||
@@ -26,9 +26,9 @@ | |||
26 | 26 | ||
27 | #include <asm/assembler.h> | 27 | #include <asm/assembler.h> |
28 | 28 | ||
29 | #include <plat/hardware.h> | ||
30 | #include <plat/sram.h> | 29 | #include <plat/sram.h> |
31 | 30 | ||
31 | #include "omap34xx.h" | ||
32 | #include "iomap.h" | 32 | #include "iomap.h" |
33 | #include "cm2xxx_3xxx.h" | 33 | #include "cm2xxx_3xxx.h" |
34 | #include "prm2xxx_3xxx.h" | 34 | #include "prm2xxx_3xxx.h" |
diff --git a/arch/arm/mach-omap2/sleep44xx.S b/arch/arm/mach-omap2/sleep44xx.S index 91e71d8f46f0..88ff83a0942e 100644 --- a/arch/arm/mach-omap2/sleep44xx.S +++ b/arch/arm/mach-omap2/sleep44xx.S | |||
@@ -14,10 +14,10 @@ | |||
14 | #include <asm/memory.h> | 14 | #include <asm/memory.h> |
15 | #include <asm/hardware/cache-l2x0.h> | 15 | #include <asm/hardware/cache-l2x0.h> |
16 | 16 | ||
17 | #include <plat/omap44xx.h> | 17 | #include "omap-secure.h" |
18 | #include <mach/omap-secure.h> | ||
19 | 18 | ||
20 | #include "common.h" | 19 | #include "common.h" |
20 | #include "omap44xx.h" | ||
21 | #include "omap4-sar-layout.h" | 21 | #include "omap4-sar-layout.h" |
22 | 22 | ||
23 | #if defined(CONFIG_SMP) && defined(CONFIG_PM) | 23 | #if defined(CONFIG_SMP) && defined(CONFIG_PM) |
diff --git a/arch/arm/mach-omap2/soc.h b/arch/arm/mach-omap2/soc.h new file mode 100644 index 000000000000..fc9b96daf851 --- /dev/null +++ b/arch/arm/mach-omap2/soc.h | |||
@@ -0,0 +1,7 @@ | |||
1 | #include <plat/cpu.h> | ||
2 | #include "omap24xx.h" | ||
3 | #include "omap34xx.h" | ||
4 | #include "omap44xx.h" | ||
5 | #include "ti81xx.h" | ||
6 | #include "am33xx.h" | ||
7 | #include "omap54xx.h" | ||
diff --git a/arch/arm/mach-omap2/sr_device.c b/arch/arm/mach-omap2/sr_device.c index d033a65f4e4e..f8217a5a4a26 100644 --- a/arch/arm/mach-omap2/sr_device.c +++ b/arch/arm/mach-omap2/sr_device.c | |||
@@ -104,16 +104,15 @@ static int __init sr_dev_init(struct omap_hwmod *oh, void *user) | |||
104 | 104 | ||
105 | sr_data = kzalloc(sizeof(struct omap_sr_data), GFP_KERNEL); | 105 | sr_data = kzalloc(sizeof(struct omap_sr_data), GFP_KERNEL); |
106 | if (!sr_data) { | 106 | if (!sr_data) { |
107 | pr_err("%s: Unable to allocate memory for %s sr_data.Error!\n", | 107 | pr_err("%s: Unable to allocate memory for %s sr_data\n", |
108 | __func__, oh->name); | 108 | __func__, oh->name); |
109 | return -ENOMEM; | 109 | return -ENOMEM; |
110 | } | 110 | } |
111 | 111 | ||
112 | sr_dev_attr = (struct omap_smartreflex_dev_attr *)oh->dev_attr; | 112 | sr_dev_attr = (struct omap_smartreflex_dev_attr *)oh->dev_attr; |
113 | if (!sr_dev_attr || !sr_dev_attr->sensor_voltdm_name) { | 113 | if (!sr_dev_attr || !sr_dev_attr->sensor_voltdm_name) { |
114 | pr_err("%s: No voltage domain specified for %s." | 114 | pr_err("%s: No voltage domain specified for %s. Cannot initialize\n", |
115 | "Cannot initialize\n", __func__, | 115 | __func__, oh->name); |
116 | oh->name); | ||
117 | goto exit; | 116 | goto exit; |
118 | } | 117 | } |
119 | 118 | ||
@@ -123,7 +122,7 @@ static int __init sr_dev_init(struct omap_hwmod *oh, void *user) | |||
123 | sr_data->senp_mod = 0x1; | 122 | sr_data->senp_mod = 0x1; |
124 | 123 | ||
125 | sr_data->voltdm = voltdm_lookup(sr_dev_attr->sensor_voltdm_name); | 124 | sr_data->voltdm = voltdm_lookup(sr_dev_attr->sensor_voltdm_name); |
126 | if (IS_ERR(sr_data->voltdm)) { | 125 | if (!sr_data->voltdm) { |
127 | pr_err("%s: Unable to get voltage domain pointer for VDD %s\n", | 126 | pr_err("%s: Unable to get voltage domain pointer for VDD %s\n", |
128 | __func__, sr_dev_attr->sensor_voltdm_name); | 127 | __func__, sr_dev_attr->sensor_voltdm_name); |
129 | goto exit; | 128 | goto exit; |
@@ -131,8 +130,8 @@ static int __init sr_dev_init(struct omap_hwmod *oh, void *user) | |||
131 | 130 | ||
132 | omap_voltage_get_volttable(sr_data->voltdm, &volt_data); | 131 | omap_voltage_get_volttable(sr_data->voltdm, &volt_data); |
133 | if (!volt_data) { | 132 | if (!volt_data) { |
134 | pr_warning("%s: No Voltage table registered fo VDD%d." | 133 | pr_err("%s: No Voltage table registered for VDD%d\n", |
135 | "Something really wrong\n\n", __func__, i + 1); | 134 | __func__, i + 1); |
136 | goto exit; | 135 | goto exit; |
137 | } | 136 | } |
138 | 137 | ||
diff --git a/arch/arm/mach-omap2/sram242x.S b/arch/arm/mach-omap2/sram242x.S index ee0bfcc1410f..8f7326cd435b 100644 --- a/arch/arm/mach-omap2/sram242x.S +++ b/arch/arm/mach-omap2/sram242x.S | |||
@@ -32,8 +32,7 @@ | |||
32 | 32 | ||
33 | #include <asm/assembler.h> | 33 | #include <asm/assembler.h> |
34 | 34 | ||
35 | #include <mach/hardware.h> | 35 | #include "soc.h" |
36 | |||
37 | #include "iomap.h" | 36 | #include "iomap.h" |
38 | #include "prm2xxx_3xxx.h" | 37 | #include "prm2xxx_3xxx.h" |
39 | #include "cm2xxx_3xxx.h" | 38 | #include "cm2xxx_3xxx.h" |
diff --git a/arch/arm/mach-omap2/sram243x.S b/arch/arm/mach-omap2/sram243x.S index d4d39ef04769..b140d6578529 100644 --- a/arch/arm/mach-omap2/sram243x.S +++ b/arch/arm/mach-omap2/sram243x.S | |||
@@ -32,8 +32,7 @@ | |||
32 | 32 | ||
33 | #include <asm/assembler.h> | 33 | #include <asm/assembler.h> |
34 | 34 | ||
35 | #include <mach/hardware.h> | 35 | #include "soc.h" |
36 | |||
37 | #include "iomap.h" | 36 | #include "iomap.h" |
38 | #include "prm2xxx_3xxx.h" | 37 | #include "prm2xxx_3xxx.h" |
39 | #include "cm2xxx_3xxx.h" | 38 | #include "cm2xxx_3xxx.h" |
diff --git a/arch/arm/mach-omap2/sram34xx.S b/arch/arm/mach-omap2/sram34xx.S index df5a21322b0a..2d0ceaa23fb8 100644 --- a/arch/arm/mach-omap2/sram34xx.S +++ b/arch/arm/mach-omap2/sram34xx.S | |||
@@ -29,8 +29,7 @@ | |||
29 | 29 | ||
30 | #include <asm/assembler.h> | 30 | #include <asm/assembler.h> |
31 | 31 | ||
32 | #include <mach/hardware.h> | 32 | #include "soc.h" |
33 | |||
34 | #include "iomap.h" | 33 | #include "iomap.h" |
35 | #include "sdrc.h" | 34 | #include "sdrc.h" |
36 | #include "cm2xxx_3xxx.h" | 35 | #include "cm2xxx_3xxx.h" |
diff --git a/arch/arm/mach-omap2/ti81xx.h b/arch/arm/mach-omap2/ti81xx.h new file mode 100644 index 000000000000..8f9843f78422 --- /dev/null +++ b/arch/arm/mach-omap2/ti81xx.h | |||
@@ -0,0 +1,27 @@ | |||
1 | /* | ||
2 | * This file contains the address data for various TI81XX modules. | ||
3 | * | ||
4 | * Copyright (C) 2010 Texas Instruments, Inc. - http://www.ti.com/ | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or | ||
7 | * modify it under the terms of the GNU General Public License as | ||
8 | * published by the Free Software Foundation version 2. | ||
9 | * | ||
10 | * This program is distributed "as is" WITHOUT ANY WARRANTY of any | ||
11 | * kind, whether express or implied; without even the implied warranty | ||
12 | * of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
13 | * GNU General Public License for more details. | ||
14 | */ | ||
15 | |||
16 | #ifndef __ASM_ARCH_TI81XX_H | ||
17 | #define __ASM_ARCH_TI81XX_H | ||
18 | |||
19 | #define L4_SLOW_TI81XX_BASE 0x48000000 | ||
20 | |||
21 | #define TI81XX_SCM_BASE 0x48140000 | ||
22 | #define TI81XX_CTRL_BASE TI81XX_SCM_BASE | ||
23 | #define TI81XX_PRCM_BASE 0x48180000 | ||
24 | |||
25 | #define TI81XX_ARM_INTC_BASE 0x48200000 | ||
26 | |||
27 | #endif /* __ASM_ARCH_TI81XX_H */ | ||
diff --git a/arch/arm/mach-omap2/timer.c b/arch/arm/mach-omap2/timer.c index 2ff6d41ec6c6..44f9aa7ec0c0 100644 --- a/arch/arm/mach-omap2/timer.c +++ b/arch/arm/mach-omap2/timer.c | |||
@@ -36,16 +36,20 @@ | |||
36 | #include <linux/clocksource.h> | 36 | #include <linux/clocksource.h> |
37 | #include <linux/clockchips.h> | 37 | #include <linux/clockchips.h> |
38 | #include <linux/slab.h> | 38 | #include <linux/slab.h> |
39 | #include <linux/of.h> | ||
39 | 40 | ||
40 | #include <asm/mach/time.h> | 41 | #include <asm/mach/time.h> |
41 | #include <plat/dmtimer.h> | ||
42 | #include <asm/smp_twd.h> | 42 | #include <asm/smp_twd.h> |
43 | #include <asm/sched_clock.h> | 43 | #include <asm/sched_clock.h> |
44 | #include "common.h" | 44 | |
45 | #include <asm/arch_timer.h> | ||
45 | #include <plat/omap_hwmod.h> | 46 | #include <plat/omap_hwmod.h> |
46 | #include <plat/omap_device.h> | 47 | #include <plat/omap_device.h> |
48 | #include <plat/dmtimer.h> | ||
47 | #include <plat/omap-pm.h> | 49 | #include <plat/omap-pm.h> |
48 | 50 | ||
51 | #include "soc.h" | ||
52 | #include "common.h" | ||
49 | #include "powerdomain.h" | 53 | #include "powerdomain.h" |
50 | 54 | ||
51 | /* Parent clocks, eventually these will come from the clock framework */ | 55 | /* Parent clocks, eventually these will come from the clock framework */ |
@@ -69,6 +73,11 @@ | |||
69 | #define OMAP3_SECURE_TIMER 1 | 73 | #define OMAP3_SECURE_TIMER 1 |
70 | #endif | 74 | #endif |
71 | 75 | ||
76 | #define REALTIME_COUNTER_BASE 0x48243200 | ||
77 | #define INCREMENTER_NUMERATOR_OFFSET 0x10 | ||
78 | #define INCREMENTER_DENUMERATOR_RELOAD_OFFSET 0x14 | ||
79 | #define NUMERATOR_DENUMERATOR_MASK 0xfffff000 | ||
80 | |||
72 | /* Clockevent code */ | 81 | /* Clockevent code */ |
73 | 82 | ||
74 | static struct omap_dm_timer clkev; | 83 | static struct omap_dm_timer clkev; |
@@ -211,7 +220,7 @@ static void __init omap2_gp_clockevent_init(int gptimer_id, | |||
211 | res = omap_dm_timer_init_one(&clkev, gptimer_id, fck_source); | 220 | res = omap_dm_timer_init_one(&clkev, gptimer_id, fck_source); |
212 | BUG_ON(res); | 221 | BUG_ON(res); |
213 | 222 | ||
214 | omap2_gp_timer_irq.dev_id = (void *)&clkev; | 223 | omap2_gp_timer_irq.dev_id = &clkev; |
215 | setup_irq(clkev.irq, &omap2_gp_timer_irq); | 224 | setup_irq(clkev.irq, &omap2_gp_timer_irq); |
216 | 225 | ||
217 | __omap_dm_timer_int_enable(&clkev, OMAP_TIMER_INT_OVERFLOW); | 226 | __omap_dm_timer_int_enable(&clkev, OMAP_TIMER_INT_OVERFLOW); |
@@ -260,6 +269,7 @@ static u32 notrace dmtimer_read_sched_clock(void) | |||
260 | return 0; | 269 | return 0; |
261 | } | 270 | } |
262 | 271 | ||
272 | #ifdef CONFIG_OMAP_32K_TIMER | ||
263 | /* Setup free-running counter for clocksource */ | 273 | /* Setup free-running counter for clocksource */ |
264 | static int __init omap2_sync32k_clocksource_init(void) | 274 | static int __init omap2_sync32k_clocksource_init(void) |
265 | { | 275 | { |
@@ -299,6 +309,12 @@ static int __init omap2_sync32k_clocksource_init(void) | |||
299 | 309 | ||
300 | return ret; | 310 | return ret; |
301 | } | 311 | } |
312 | #else | ||
313 | static inline int omap2_sync32k_clocksource_init(void) | ||
314 | { | ||
315 | return -ENODEV; | ||
316 | } | ||
317 | #endif | ||
302 | 318 | ||
303 | static void __init omap2_gptimer_clocksource_init(int gptimer_id, | 319 | static void __init omap2_gptimer_clocksource_init(int gptimer_id, |
304 | const char *fck_source) | 320 | const char *fck_source) |
@@ -339,6 +355,84 @@ static void __init omap2_clocksource_init(int gptimer_id, | |||
339 | omap2_gptimer_clocksource_init(gptimer_id, fck_source); | 355 | omap2_gptimer_clocksource_init(gptimer_id, fck_source); |
340 | } | 356 | } |
341 | 357 | ||
358 | #ifdef CONFIG_SOC_HAS_REALTIME_COUNTER | ||
359 | /* | ||
360 | * The realtime counter also called master counter, is a free-running | ||
361 | * counter, which is related to real time. It produces the count used | ||
362 | * by the CPU local timer peripherals in the MPU cluster. The timer counts | ||
363 | * at a rate of 6.144 MHz. Because the device operates on different clocks | ||
364 | * in different power modes, the master counter shifts operation between | ||
365 | * clocks, adjusting the increment per clock in hardware accordingly to | ||
366 | * maintain a constant count rate. | ||
367 | */ | ||
368 | static void __init realtime_counter_init(void) | ||
369 | { | ||
370 | void __iomem *base; | ||
371 | static struct clk *sys_clk; | ||
372 | unsigned long rate; | ||
373 | unsigned int reg, num, den; | ||
374 | |||
375 | base = ioremap(REALTIME_COUNTER_BASE, SZ_32); | ||
376 | if (!base) { | ||
377 | pr_err("%s: ioremap failed\n", __func__); | ||
378 | return; | ||
379 | } | ||
380 | sys_clk = clk_get(NULL, "sys_clkin_ck"); | ||
381 | if (IS_ERR(sys_clk)) { | ||
382 | pr_err("%s: failed to get system clock handle\n", __func__); | ||
383 | iounmap(base); | ||
384 | return; | ||
385 | } | ||
386 | |||
387 | rate = clk_get_rate(sys_clk); | ||
388 | /* Numerator/denumerator values refer TRM Realtime Counter section */ | ||
389 | switch (rate) { | ||
390 | case 1200000: | ||
391 | num = 64; | ||
392 | den = 125; | ||
393 | break; | ||
394 | case 1300000: | ||
395 | num = 768; | ||
396 | den = 1625; | ||
397 | break; | ||
398 | case 19200000: | ||
399 | num = 8; | ||
400 | den = 25; | ||
401 | break; | ||
402 | case 2600000: | ||
403 | num = 384; | ||
404 | den = 1625; | ||
405 | break; | ||
406 | case 2700000: | ||
407 | num = 256; | ||
408 | den = 1125; | ||
409 | break; | ||
410 | case 38400000: | ||
411 | default: | ||
412 | /* Program it for 38.4 MHz */ | ||
413 | num = 4; | ||
414 | den = 25; | ||
415 | break; | ||
416 | } | ||
417 | |||
418 | /* Program numerator and denumerator registers */ | ||
419 | reg = __raw_readl(base + INCREMENTER_NUMERATOR_OFFSET) & | ||
420 | NUMERATOR_DENUMERATOR_MASK; | ||
421 | reg |= num; | ||
422 | __raw_writel(reg, base + INCREMENTER_NUMERATOR_OFFSET); | ||
423 | |||
424 | reg = __raw_readl(base + INCREMENTER_NUMERATOR_OFFSET) & | ||
425 | NUMERATOR_DENUMERATOR_MASK; | ||
426 | reg |= den; | ||
427 | __raw_writel(reg, base + INCREMENTER_DENUMERATOR_RELOAD_OFFSET); | ||
428 | |||
429 | iounmap(base); | ||
430 | } | ||
431 | #else | ||
432 | static inline void __init realtime_counter_init(void) | ||
433 | {} | ||
434 | #endif | ||
435 | |||
342 | #define OMAP_SYS_TIMER_INIT(name, clkev_nr, clkev_src, \ | 436 | #define OMAP_SYS_TIMER_INIT(name, clkev_nr, clkev_src, \ |
343 | clksrc_nr, clksrc_src) \ | 437 | clksrc_nr, clksrc_src) \ |
344 | static void __init omap##name##_timer_init(void) \ | 438 | static void __init omap##name##_timer_init(void) \ |
@@ -373,8 +467,7 @@ OMAP_SYS_TIMER(3_am33xx) | |||
373 | #ifdef CONFIG_ARCH_OMAP4 | 467 | #ifdef CONFIG_ARCH_OMAP4 |
374 | #ifdef CONFIG_LOCAL_TIMERS | 468 | #ifdef CONFIG_LOCAL_TIMERS |
375 | static DEFINE_TWD_LOCAL_TIMER(twd_local_timer, | 469 | static DEFINE_TWD_LOCAL_TIMER(twd_local_timer, |
376 | OMAP44XX_LOCAL_TWD_BASE, | 470 | OMAP44XX_LOCAL_TWD_BASE, 29 + OMAP_INTC_START); |
377 | OMAP44XX_IRQ_LOCALTIMER); | ||
378 | #endif | 471 | #endif |
379 | 472 | ||
380 | static void __init omap4_timer_init(void) | 473 | static void __init omap4_timer_init(void) |
@@ -386,6 +479,11 @@ static void __init omap4_timer_init(void) | |||
386 | if (omap_rev() != OMAP4430_REV_ES1_0) { | 479 | if (omap_rev() != OMAP4430_REV_ES1_0) { |
387 | int err; | 480 | int err; |
388 | 481 | ||
482 | if (of_have_populated_dt()) { | ||
483 | twd_local_timer_of_register(); | ||
484 | return; | ||
485 | } | ||
486 | |||
389 | err = twd_local_timer_register(&twd_local_timer); | 487 | err = twd_local_timer_register(&twd_local_timer); |
390 | if (err) | 488 | if (err) |
391 | pr_err("twd_local_timer_register failed %d\n", err); | 489 | pr_err("twd_local_timer_register failed %d\n", err); |
@@ -396,7 +494,18 @@ OMAP_SYS_TIMER(4) | |||
396 | #endif | 494 | #endif |
397 | 495 | ||
398 | #ifdef CONFIG_SOC_OMAP5 | 496 | #ifdef CONFIG_SOC_OMAP5 |
399 | OMAP_SYS_TIMER_INIT(5, 1, OMAP4_CLKEV_SOURCE, 2, OMAP4_MPU_SOURCE) | 497 | static void __init omap5_timer_init(void) |
498 | { | ||
499 | int err; | ||
500 | |||
501 | omap2_gp_clockevent_init(1, OMAP4_CLKEV_SOURCE); | ||
502 | omap2_clocksource_init(2, OMAP4_MPU_SOURCE); | ||
503 | realtime_counter_init(); | ||
504 | |||
505 | err = arch_timer_of_register(); | ||
506 | if (err) | ||
507 | pr_err("%s: arch_timer_register failed %d\n", __func__, err); | ||
508 | } | ||
400 | OMAP_SYS_TIMER(5) | 509 | OMAP_SYS_TIMER(5) |
401 | #endif | 510 | #endif |
402 | 511 | ||
diff --git a/arch/arm/mach-omap2/twl-common.c b/arch/arm/mach-omap2/twl-common.c index 9bf8a89e78c6..635e109f5ad3 100644 --- a/arch/arm/mach-omap2/twl-common.c +++ b/arch/arm/mach-omap2/twl-common.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <plat/i2c.h> | 29 | #include <plat/i2c.h> |
30 | #include <plat/usb.h> | 30 | #include <plat/usb.h> |
31 | 31 | ||
32 | #include "soc.h" | ||
32 | #include "twl-common.h" | 33 | #include "twl-common.h" |
33 | #include "pm.h" | 34 | #include "pm.h" |
34 | #include "voltage.h" | 35 | #include "voltage.h" |
@@ -39,16 +40,6 @@ static struct i2c_board_info __initdata pmic_i2c_board_info = { | |||
39 | .flags = I2C_CLIENT_WAKE, | 40 | .flags = I2C_CLIENT_WAKE, |
40 | }; | 41 | }; |
41 | 42 | ||
42 | static struct i2c_board_info __initdata omap4_i2c1_board_info[] = { | ||
43 | { | ||
44 | .addr = 0x48, | ||
45 | .flags = I2C_CLIENT_WAKE, | ||
46 | }, | ||
47 | { | ||
48 | I2C_BOARD_INFO("twl6040", 0x4b), | ||
49 | }, | ||
50 | }; | ||
51 | |||
52 | #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4) | 43 | #if defined(CONFIG_ARCH_OMAP3) || defined(CONFIG_ARCH_OMAP4) |
53 | static int twl_set_voltage(void *data, int target_uV) | 44 | static int twl_set_voltage(void *data, int target_uV) |
54 | { | 45 | { |
@@ -78,30 +69,25 @@ void __init omap_pmic_init(int bus, u32 clkrate, | |||
78 | 69 | ||
79 | void __init omap4_pmic_init(const char *pmic_type, | 70 | void __init omap4_pmic_init(const char *pmic_type, |
80 | struct twl4030_platform_data *pmic_data, | 71 | struct twl4030_platform_data *pmic_data, |
81 | struct twl6040_platform_data *twl6040_data, int twl6040_irq) | 72 | struct i2c_board_info *devices, int nr_devices) |
82 | { | 73 | { |
83 | /* PMIC part*/ | 74 | /* PMIC part*/ |
84 | omap_mux_init_signal("sys_nirq1", OMAP_PIN_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE); | 75 | omap_mux_init_signal("sys_nirq1", OMAP_PIN_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE); |
85 | strncpy(omap4_i2c1_board_info[0].type, pmic_type, | 76 | omap_pmic_init(1, 400, pmic_type, 7 + OMAP44XX_IRQ_GIC_START, pmic_data); |
86 | sizeof(omap4_i2c1_board_info[0].type)); | ||
87 | omap4_i2c1_board_info[0].irq = OMAP44XX_IRQ_SYS_1N; | ||
88 | omap4_i2c1_board_info[0].platform_data = pmic_data; | ||
89 | |||
90 | /* TWL6040 audio IC part */ | ||
91 | omap4_i2c1_board_info[1].irq = twl6040_irq; | ||
92 | omap4_i2c1_board_info[1].platform_data = twl6040_data; | ||
93 | |||
94 | omap_register_i2c_bus(1, 400, omap4_i2c1_board_info, 2); | ||
95 | 77 | ||
78 | /* Register additional devices on i2c1 bus if needed */ | ||
79 | if (devices) | ||
80 | i2c_register_board_info(1, devices, nr_devices); | ||
96 | } | 81 | } |
97 | 82 | ||
98 | void __init omap_pmic_late_init(void) | 83 | void __init omap_pmic_late_init(void) |
99 | { | 84 | { |
100 | /* Init the OMAP TWL parameters (if PMIC has been registered) */ | 85 | /* Init the OMAP TWL parameters (if PMIC has been registerd) */ |
101 | if (pmic_i2c_board_info.irq) | 86 | if (!pmic_i2c_board_info.irq) |
102 | omap3_twl_init(); | 87 | return; |
103 | if (omap4_i2c1_board_info[0].irq) | 88 | |
104 | omap4_twl_init(); | 89 | omap3_twl_init(); |
90 | omap4_twl_init(); | ||
105 | } | 91 | } |
106 | 92 | ||
107 | #if defined(CONFIG_ARCH_OMAP3) | 93 | #if defined(CONFIG_ARCH_OMAP3) |
@@ -172,7 +158,7 @@ static struct regulator_init_data omap3_vpll2_idata = { | |||
172 | }; | 158 | }; |
173 | 159 | ||
174 | static struct regulator_consumer_supply omap3_vdd1_supply[] = { | 160 | static struct regulator_consumer_supply omap3_vdd1_supply[] = { |
175 | REGULATOR_SUPPLY("vcc", "mpu.0"), | 161 | REGULATOR_SUPPLY("vcc", "cpu0"), |
176 | }; | 162 | }; |
177 | 163 | ||
178 | static struct regulator_consumer_supply omap3_vdd2_supply[] = { | 164 | static struct regulator_consumer_supply omap3_vdd2_supply[] = { |
@@ -251,11 +237,6 @@ void __init omap3_pmic_get_config(struct twl4030_platform_data *pmic_data, | |||
251 | 237 | ||
252 | #if defined(CONFIG_ARCH_OMAP4) | 238 | #if defined(CONFIG_ARCH_OMAP4) |
253 | static struct twl4030_usb_data omap4_usb_pdata = { | 239 | static struct twl4030_usb_data omap4_usb_pdata = { |
254 | .phy_init = omap4430_phy_init, | ||
255 | .phy_exit = omap4430_phy_exit, | ||
256 | .phy_power = omap4430_phy_power, | ||
257 | .phy_set_clock = omap4430_phy_set_clk, | ||
258 | .phy_suspend = omap4430_phy_suspend, | ||
259 | }; | 240 | }; |
260 | 241 | ||
261 | static struct regulator_consumer_supply omap4_vdda_hdmi_dac_supplies[] = { | 242 | static struct regulator_consumer_supply omap4_vdda_hdmi_dac_supplies[] = { |
@@ -544,3 +525,30 @@ void __init omap4_pmic_get_config(struct twl4030_platform_data *pmic_data, | |||
544 | pmic_data->v2v1 = &omap4_v2v1_idata; | 525 | pmic_data->v2v1 = &omap4_v2v1_idata; |
545 | } | 526 | } |
546 | #endif /* CONFIG_ARCH_OMAP4 */ | 527 | #endif /* CONFIG_ARCH_OMAP4 */ |
528 | |||
529 | #if defined(CONFIG_SND_OMAP_SOC_OMAP_TWL4030) || \ | ||
530 | defined(CONFIG_SND_OMAP_SOC_OMAP_TWL4030_MODULE) | ||
531 | #include <linux/platform_data/omap-twl4030.h> | ||
532 | |||
533 | static struct omap_tw4030_pdata omap_twl4030_audio_data; | ||
534 | |||
535 | static struct platform_device audio_device = { | ||
536 | .name = "omap-twl4030", | ||
537 | .id = -1, | ||
538 | .dev = { | ||
539 | .platform_data = &omap_twl4030_audio_data, | ||
540 | }, | ||
541 | }; | ||
542 | |||
543 | void __init omap_twl4030_audio_init(char *card_name) | ||
544 | { | ||
545 | omap_twl4030_audio_data.card_name = card_name; | ||
546 | platform_device_register(&audio_device); | ||
547 | } | ||
548 | |||
549 | #else /* SOC_OMAP_TWL4030 */ | ||
550 | void __init omap_twl4030_audio_init(char *card_name) | ||
551 | { | ||
552 | return; | ||
553 | } | ||
554 | #endif /* SOC_OMAP_TWL4030 */ | ||
diff --git a/arch/arm/mach-omap2/twl-common.h b/arch/arm/mach-omap2/twl-common.h index 8fe71cfd002c..dcfbad5ac471 100644 --- a/arch/arm/mach-omap2/twl-common.h +++ b/arch/arm/mach-omap2/twl-common.h | |||
@@ -1,7 +1,7 @@ | |||
1 | #ifndef __OMAP_PMIC_COMMON__ | 1 | #ifndef __OMAP_PMIC_COMMON__ |
2 | #define __OMAP_PMIC_COMMON__ | 2 | #define __OMAP_PMIC_COMMON__ |
3 | 3 | ||
4 | #include <plat/irqs.h> | 4 | #include "common.h" |
5 | 5 | ||
6 | #define TWL_COMMON_PDATA_USB (1 << 0) | 6 | #define TWL_COMMON_PDATA_USB (1 << 0) |
7 | #define TWL_COMMON_PDATA_BCI (1 << 1) | 7 | #define TWL_COMMON_PDATA_BCI (1 << 1) |
@@ -32,6 +32,7 @@ | |||
32 | 32 | ||
33 | struct twl4030_platform_data; | 33 | struct twl4030_platform_data; |
34 | struct twl6040_platform_data; | 34 | struct twl6040_platform_data; |
35 | struct i2c_board_info; | ||
35 | 36 | ||
36 | void omap_pmic_init(int bus, u32 clkrate, const char *pmic_type, int pmic_irq, | 37 | void omap_pmic_init(int bus, u32 clkrate, const char *pmic_type, int pmic_irq, |
37 | struct twl4030_platform_data *pmic_data); | 38 | struct twl4030_platform_data *pmic_data); |
@@ -40,18 +41,18 @@ void omap_pmic_late_init(void); | |||
40 | static inline void omap2_pmic_init(const char *pmic_type, | 41 | static inline void omap2_pmic_init(const char *pmic_type, |
41 | struct twl4030_platform_data *pmic_data) | 42 | struct twl4030_platform_data *pmic_data) |
42 | { | 43 | { |
43 | omap_pmic_init(2, 2600, pmic_type, INT_24XX_SYS_NIRQ, pmic_data); | 44 | omap_pmic_init(2, 2600, pmic_type, 7 + OMAP_INTC_START, pmic_data); |
44 | } | 45 | } |
45 | 46 | ||
46 | static inline void omap3_pmic_init(const char *pmic_type, | 47 | static inline void omap3_pmic_init(const char *pmic_type, |
47 | struct twl4030_platform_data *pmic_data) | 48 | struct twl4030_platform_data *pmic_data) |
48 | { | 49 | { |
49 | omap_pmic_init(1, 2600, pmic_type, INT_34XX_SYS_NIRQ, pmic_data); | 50 | omap_pmic_init(1, 2600, pmic_type, 7 + OMAP_INTC_START, pmic_data); |
50 | } | 51 | } |
51 | 52 | ||
52 | void omap4_pmic_init(const char *pmic_type, | 53 | void omap4_pmic_init(const char *pmic_type, |
53 | struct twl4030_platform_data *pmic_data, | 54 | struct twl4030_platform_data *pmic_data, |
54 | struct twl6040_platform_data *audio_data, int twl6040_irq); | 55 | struct i2c_board_info *devices, int nr_devices); |
55 | 56 | ||
56 | void omap3_pmic_get_config(struct twl4030_platform_data *pmic_data, | 57 | void omap3_pmic_get_config(struct twl4030_platform_data *pmic_data, |
57 | u32 pdata_flags, u32 regulators_flags); | 58 | u32 pdata_flags, u32 regulators_flags); |
@@ -59,4 +60,6 @@ void omap3_pmic_get_config(struct twl4030_platform_data *pmic_data, | |||
59 | void omap4_pmic_get_config(struct twl4030_platform_data *pmic_data, | 60 | void omap4_pmic_get_config(struct twl4030_platform_data *pmic_data, |
60 | u32 pdata_flags, u32 regulators_flags); | 61 | u32 pdata_flags, u32 regulators_flags); |
61 | 62 | ||
63 | void omap_twl4030_audio_init(char *card_name); | ||
64 | |||
62 | #endif /* __OMAP_PMIC_COMMON__ */ | 65 | #endif /* __OMAP_PMIC_COMMON__ */ |
diff --git a/arch/arm/mach-omap2/usb-host.c b/arch/arm/mach-omap2/usb-host.c index dde8a11f47d5..3c434498e12e 100644 --- a/arch/arm/mach-omap2/usb-host.c +++ b/arch/arm/mach-omap2/usb-host.c | |||
@@ -25,8 +25,6 @@ | |||
25 | 25 | ||
26 | #include <asm/io.h> | 26 | #include <asm/io.h> |
27 | 27 | ||
28 | #include <mach/hardware.h> | ||
29 | #include <mach/irqs.h> | ||
30 | #include <plat/usb.h> | 28 | #include <plat/usb.h> |
31 | #include <plat/omap_device.h> | 29 | #include <plat/omap_device.h> |
32 | 30 | ||
@@ -35,10 +33,12 @@ | |||
35 | #ifdef CONFIG_MFD_OMAP_USB_HOST | 33 | #ifdef CONFIG_MFD_OMAP_USB_HOST |
36 | 34 | ||
37 | #define OMAP_USBHS_DEVICE "usbhs_omap" | 35 | #define OMAP_USBHS_DEVICE "usbhs_omap" |
36 | #define OMAP_USBTLL_DEVICE "usbhs_tll" | ||
38 | #define USBHS_UHH_HWMODNAME "usb_host_hs" | 37 | #define USBHS_UHH_HWMODNAME "usb_host_hs" |
39 | #define USBHS_TLL_HWMODNAME "usb_tll_hs" | 38 | #define USBHS_TLL_HWMODNAME "usb_tll_hs" |
40 | 39 | ||
41 | static struct usbhs_omap_platform_data usbhs_data; | 40 | static struct usbhs_omap_platform_data usbhs_data; |
41 | static struct usbtll_omap_platform_data usbtll_data; | ||
42 | static struct ehci_hcd_omap_platform_data ehci_data; | 42 | static struct ehci_hcd_omap_platform_data ehci_data; |
43 | static struct ohci_hcd_omap_platform_data ohci_data; | 43 | static struct ohci_hcd_omap_platform_data ohci_data; |
44 | 44 | ||
@@ -487,13 +487,14 @@ void __init setup_4430ohci_io_mux(const enum usbhs_omap_port_mode *port_mode) | |||
487 | 487 | ||
488 | void __init usbhs_init(const struct usbhs_omap_board_data *pdata) | 488 | void __init usbhs_init(const struct usbhs_omap_board_data *pdata) |
489 | { | 489 | { |
490 | struct omap_hwmod *oh[2]; | 490 | struct omap_hwmod *uhh_hwm, *tll_hwm; |
491 | struct platform_device *pdev; | 491 | struct platform_device *pdev; |
492 | int bus_id = -1; | 492 | int bus_id = -1; |
493 | int i; | 493 | int i; |
494 | 494 | ||
495 | for (i = 0; i < OMAP3_HS_USB_PORTS; i++) { | 495 | for (i = 0; i < OMAP3_HS_USB_PORTS; i++) { |
496 | usbhs_data.port_mode[i] = pdata->port_mode[i]; | 496 | usbhs_data.port_mode[i] = pdata->port_mode[i]; |
497 | usbtll_data.port_mode[i] = pdata->port_mode[i]; | ||
497 | ohci_data.port_mode[i] = pdata->port_mode[i]; | 498 | ohci_data.port_mode[i] = pdata->port_mode[i]; |
498 | ehci_data.port_mode[i] = pdata->port_mode[i]; | 499 | ehci_data.port_mode[i] = pdata->port_mode[i]; |
499 | ehci_data.reset_gpio_port[i] = pdata->reset_gpio_port[i]; | 500 | ehci_data.reset_gpio_port[i] = pdata->reset_gpio_port[i]; |
@@ -512,25 +513,35 @@ void __init usbhs_init(const struct usbhs_omap_board_data *pdata) | |||
512 | setup_4430ohci_io_mux(pdata->port_mode); | 513 | setup_4430ohci_io_mux(pdata->port_mode); |
513 | } | 514 | } |
514 | 515 | ||
515 | oh[0] = omap_hwmod_lookup(USBHS_UHH_HWMODNAME); | 516 | uhh_hwm = omap_hwmod_lookup(USBHS_UHH_HWMODNAME); |
516 | if (!oh[0]) { | 517 | if (!uhh_hwm) { |
517 | pr_err("Could not look up %s\n", USBHS_UHH_HWMODNAME); | 518 | pr_err("Could not look up %s\n", USBHS_UHH_HWMODNAME); |
518 | return; | 519 | return; |
519 | } | 520 | } |
520 | 521 | ||
521 | oh[1] = omap_hwmod_lookup(USBHS_TLL_HWMODNAME); | 522 | tll_hwm = omap_hwmod_lookup(USBHS_TLL_HWMODNAME); |
522 | if (!oh[1]) { | 523 | if (!tll_hwm) { |
523 | pr_err("Could not look up %s\n", USBHS_TLL_HWMODNAME); | 524 | pr_err("Could not look up %s\n", USBHS_TLL_HWMODNAME); |
524 | return; | 525 | return; |
525 | } | 526 | } |
526 | 527 | ||
527 | pdev = omap_device_build_ss(OMAP_USBHS_DEVICE, bus_id, oh, 2, | 528 | pdev = omap_device_build(OMAP_USBTLL_DEVICE, bus_id, tll_hwm, |
528 | (void *)&usbhs_data, sizeof(usbhs_data), | 529 | &usbtll_data, sizeof(usbtll_data), |
529 | omap_uhhtll_latency, | 530 | omap_uhhtll_latency, |
530 | ARRAY_SIZE(omap_uhhtll_latency), false); | 531 | ARRAY_SIZE(omap_uhhtll_latency), false); |
531 | if (IS_ERR(pdev)) { | 532 | if (IS_ERR(pdev)) { |
532 | pr_err("Could not build hwmod devices %s,%s\n", | 533 | pr_err("Could not build hwmod device %s\n", |
533 | USBHS_UHH_HWMODNAME, USBHS_TLL_HWMODNAME); | 534 | USBHS_TLL_HWMODNAME); |
535 | return; | ||
536 | } | ||
537 | |||
538 | pdev = omap_device_build(OMAP_USBHS_DEVICE, bus_id, uhh_hwm, | ||
539 | &usbhs_data, sizeof(usbhs_data), | ||
540 | omap_uhhtll_latency, | ||
541 | ARRAY_SIZE(omap_uhhtll_latency), false); | ||
542 | if (IS_ERR(pdev)) { | ||
543 | pr_err("Could not build hwmod devices %s\n", | ||
544 | USBHS_UHH_HWMODNAME); | ||
534 | return; | 545 | return; |
535 | } | 546 | } |
536 | } | 547 | } |
diff --git a/arch/arm/mach-omap2/usb-musb.c b/arch/arm/mach-omap2/usb-musb.c index c4a576856661..51da21cb78f1 100644 --- a/arch/arm/mach-omap2/usb-musb.c +++ b/arch/arm/mach-omap2/usb-musb.c | |||
@@ -23,14 +23,13 @@ | |||
23 | #include <linux/clk.h> | 23 | #include <linux/clk.h> |
24 | #include <linux/dma-mapping.h> | 24 | #include <linux/dma-mapping.h> |
25 | #include <linux/io.h> | 25 | #include <linux/io.h> |
26 | |||
27 | #include <linux/usb/musb.h> | 26 | #include <linux/usb/musb.h> |
28 | 27 | ||
29 | #include <mach/hardware.h> | ||
30 | #include <mach/irqs.h> | ||
31 | #include <mach/am35xx.h> | ||
32 | #include <plat/usb.h> | 28 | #include <plat/usb.h> |
33 | #include <plat/omap_device.h> | 29 | #include <plat/omap_device.h> |
30 | |||
31 | #include "am35xx.h" | ||
32 | |||
34 | #include "mux.h" | 33 | #include "mux.h" |
35 | 34 | ||
36 | static struct musb_hdrc_config musb_config = { | 35 | static struct musb_hdrc_config musb_config = { |
@@ -117,7 +116,4 @@ void __init usb_musb_init(struct omap_musb_board_data *musb_board_data) | |||
117 | dev->dma_mask = &musb_dmamask; | 116 | dev->dma_mask = &musb_dmamask; |
118 | dev->coherent_dma_mask = musb_dmamask; | 117 | dev->coherent_dma_mask = musb_dmamask; |
119 | put_device(dev); | 118 | put_device(dev); |
120 | |||
121 | if (cpu_is_omap44xx()) | ||
122 | omap4430_phy_init(dev); | ||
123 | } | 119 | } |
diff --git a/arch/arm/mach-omap2/vc.c b/arch/arm/mach-omap2/vc.c index 84da34f9a7cf..880249b17012 100644 --- a/arch/arm/mach-omap2/vc.c +++ b/arch/arm/mach-omap2/vc.c | |||
@@ -12,8 +12,7 @@ | |||
12 | #include <linux/init.h> | 12 | #include <linux/init.h> |
13 | #include <linux/bug.h> | 13 | #include <linux/bug.h> |
14 | 14 | ||
15 | #include <plat/cpu.h> | 15 | #include "soc.h" |
16 | |||
17 | #include "voltage.h" | 16 | #include "voltage.h" |
18 | #include "vc.h" | 17 | #include "vc.h" |
19 | #include "prm-regbits-34xx.h" | 18 | #include "prm-regbits-34xx.h" |
@@ -116,9 +115,8 @@ int omap_vc_pre_scale(struct voltagedomain *voltdm, | |||
116 | } | 115 | } |
117 | 116 | ||
118 | if (!voltdm->pmic->uv_to_vsel) { | 117 | if (!voltdm->pmic->uv_to_vsel) { |
119 | pr_err("%s: PMIC function to convert voltage in uV to" | 118 | pr_err("%s: PMIC function to convert voltage in uV to vsel not registered. Hence unable to scale voltage for vdd_%s\n", |
120 | "vsel not registered. Hence unable to scale voltage" | 119 | __func__, voltdm->name); |
121 | "for vdd_%s\n", __func__, voltdm->name); | ||
122 | return -ENODATA; | 120 | return -ENODATA; |
123 | } | 121 | } |
124 | 122 | ||
diff --git a/arch/arm/mach-omap2/voltage.c b/arch/arm/mach-omap2/voltage.c index 4dc60e83e00d..3ac8fe1d8213 100644 --- a/arch/arm/mach-omap2/voltage.c +++ b/arch/arm/mach-omap2/voltage.c | |||
@@ -195,8 +195,8 @@ struct omap_volt_data *omap_voltage_get_voltdata(struct voltagedomain *voltdm, | |||
195 | return &voltdm->volt_data[i]; | 195 | return &voltdm->volt_data[i]; |
196 | } | 196 | } |
197 | 197 | ||
198 | pr_notice("%s: Unable to match the current voltage with the voltage" | 198 | pr_notice("%s: Unable to match the current voltage with the voltage table for vdd_%s\n", |
199 | "table for vdd_%s\n", __func__, voltdm->name); | 199 | __func__, voltdm->name); |
200 | 200 | ||
201 | return ERR_PTR(-ENODATA); | 201 | return ERR_PTR(-ENODATA); |
202 | } | 202 | } |
@@ -249,8 +249,8 @@ void omap_change_voltscale_method(struct voltagedomain *voltdm, | |||
249 | voltdm->scale = omap_vc_bypass_scale; | 249 | voltdm->scale = omap_vc_bypass_scale; |
250 | return; | 250 | return; |
251 | default: | 251 | default: |
252 | pr_warning("%s: Trying to change the method of voltage scaling" | 252 | pr_warn("%s: Trying to change the method of voltage scaling to an unsupported one!\n", |
253 | "to an unsupported one!\n", __func__); | 253 | __func__); |
254 | } | 254 | } |
255 | } | 255 | } |
256 | 256 | ||
@@ -331,8 +331,8 @@ int voltdm_add_pwrdm(struct voltagedomain *voltdm, struct powerdomain *pwrdm) | |||
331 | if (!voltdm || !pwrdm) | 331 | if (!voltdm || !pwrdm) |
332 | return -EINVAL; | 332 | return -EINVAL; |
333 | 333 | ||
334 | pr_debug("voltagedomain: associating powerdomain %s with voltagedomain " | 334 | pr_debug("voltagedomain: %s: associating powerdomain %s\n", |
335 | "%s\n", pwrdm->name, voltdm->name); | 335 | voltdm->name, pwrdm->name); |
336 | 336 | ||
337 | list_add(&pwrdm->voltdm_node, &voltdm->pwrdm_list); | 337 | list_add(&pwrdm->voltdm_node, &voltdm->pwrdm_list); |
338 | 338 | ||
diff --git a/arch/arm/mach-omap2/voltage.h b/arch/arm/mach-omap2/voltage.h index 0ac2caf15941..7283b7ed7de8 100644 --- a/arch/arm/mach-omap2/voltage.h +++ b/arch/arm/mach-omap2/voltage.h | |||
@@ -16,7 +16,7 @@ | |||
16 | 16 | ||
17 | #include <linux/err.h> | 17 | #include <linux/err.h> |
18 | 18 | ||
19 | #include <plat/voltage.h> | 19 | #include <linux/platform_data/voltage-omap.h> |
20 | 20 | ||
21 | #include "vc.h" | 21 | #include "vc.h" |
22 | #include "vp.h" | 22 | #include "vp.h" |
diff --git a/arch/arm/mach-omap2/voltagedomains3xxx_data.c b/arch/arm/mach-omap2/voltagedomains3xxx_data.c index d0103c80d040..63afbfed3cbc 100644 --- a/arch/arm/mach-omap2/voltagedomains3xxx_data.c +++ b/arch/arm/mach-omap2/voltagedomains3xxx_data.c | |||
@@ -18,9 +18,8 @@ | |||
18 | #include <linux/err.h> | 18 | #include <linux/err.h> |
19 | #include <linux/init.h> | 19 | #include <linux/init.h> |
20 | 20 | ||
21 | #include "soc.h" | ||
21 | #include "common.h" | 22 | #include "common.h" |
22 | #include <plat/cpu.h> | ||
23 | |||
24 | #include "prm-regbits-34xx.h" | 23 | #include "prm-regbits-34xx.h" |
25 | #include "omap_opp_data.h" | 24 | #include "omap_opp_data.h" |
26 | #include "voltage.h" | 25 | #include "voltage.h" |
diff --git a/arch/arm/mach-omap2/vp.c b/arch/arm/mach-omap2/vp.c index f95c1bad9dc6..85241b828c02 100644 --- a/arch/arm/mach-omap2/vp.c +++ b/arch/arm/mach-omap2/vp.c | |||
@@ -138,8 +138,8 @@ int omap_vp_forceupdate_scale(struct voltagedomain *voltdm, | |||
138 | udelay(1); | 138 | udelay(1); |
139 | } | 139 | } |
140 | if (timeout >= VP_TRANXDONE_TIMEOUT) { | 140 | if (timeout >= VP_TRANXDONE_TIMEOUT) { |
141 | pr_warning("%s: vdd_%s TRANXDONE timeout exceeded." | 141 | pr_warn("%s: vdd_%s TRANXDONE timeout exceeded. Voltage change aborted", |
142 | "Voltage change aborted", __func__, voltdm->name); | 142 | __func__, voltdm->name); |
143 | return -ETIMEDOUT; | 143 | return -ETIMEDOUT; |
144 | } | 144 | } |
145 | 145 | ||
@@ -157,9 +157,8 @@ int omap_vp_forceupdate_scale(struct voltagedomain *voltdm, | |||
157 | omap_test_timeout(vp->common->ops->check_txdone(vp->id), | 157 | omap_test_timeout(vp->common->ops->check_txdone(vp->id), |
158 | VP_TRANXDONE_TIMEOUT, timeout); | 158 | VP_TRANXDONE_TIMEOUT, timeout); |
159 | if (timeout >= VP_TRANXDONE_TIMEOUT) | 159 | if (timeout >= VP_TRANXDONE_TIMEOUT) |
160 | pr_err("%s: vdd_%s TRANXDONE timeout exceeded." | 160 | pr_err("%s: vdd_%s TRANXDONE timeout exceeded. TRANXDONE never got set after the voltage update\n", |
161 | "TRANXDONE never got set after the voltage update\n", | 161 | __func__, voltdm->name); |
162 | __func__, voltdm->name); | ||
163 | 162 | ||
164 | omap_vc_post_scale(voltdm, target_volt, target_vsel, current_vsel); | 163 | omap_vc_post_scale(voltdm, target_volt, target_vsel, current_vsel); |
165 | 164 | ||
@@ -176,8 +175,7 @@ int omap_vp_forceupdate_scale(struct voltagedomain *voltdm, | |||
176 | } | 175 | } |
177 | 176 | ||
178 | if (timeout >= VP_TRANXDONE_TIMEOUT) | 177 | if (timeout >= VP_TRANXDONE_TIMEOUT) |
179 | pr_warning("%s: vdd_%s TRANXDONE timeout exceeded while trying" | 178 | pr_warn("%s: vdd_%s TRANXDONE timeout exceeded while trying to clear the TRANXDONE status\n", |
180 | "to clear the TRANXDONE status\n", | ||
181 | __func__, voltdm->name); | 179 | __func__, voltdm->name); |
182 | 180 | ||
183 | /* Clear force bit */ | 181 | /* Clear force bit */ |
@@ -257,8 +255,8 @@ void omap_vp_disable(struct voltagedomain *voltdm) | |||
257 | 255 | ||
258 | /* If VP is already disabled, do nothing. Return */ | 256 | /* If VP is already disabled, do nothing. Return */ |
259 | if (!vp->enabled) { | 257 | if (!vp->enabled) { |
260 | pr_warning("%s: Trying to disable VP for vdd_%s when" | 258 | pr_warn("%s: Trying to disable VP for vdd_%s when it is already disabled\n", |
261 | "it is already disabled\n", __func__, voltdm->name); | 259 | __func__, voltdm->name); |
262 | return; | 260 | return; |
263 | } | 261 | } |
264 | 262 | ||