]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - arch/arm/mach-omap2/prm_common.c
Merge tag 'at91-ab-4.13-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/abellon...
[mirror_ubuntu-bionic-kernel.git] / arch / arm / mach-omap2 / prm_common.c
CommitLineData
0a84a91c
TK
1/*
2 * OMAP2+ common Power & Reset Management (PRM) IP block functions
3 *
4 * Copyright (C) 2011 Texas Instruments, Inc.
5 * Tero Kristo <t-kristo@ti.com>
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 version 2 as
9 * published by the Free Software Foundation.
10 *
11 *
12 * For historical purposes, the API used to configure the PRM
13 * interrupt handler refers to it as the "PRCM interrupt." The
14 * underlying registers are located in the PRM on OMAP3/4.
15 *
16 * XXX This code should eventually be moved to a PRM driver.
17 */
18
19#include <linux/kernel.h>
20#include <linux/module.h>
21#include <linux/init.h>
22#include <linux/io.h>
23#include <linux/irq.h>
24#include <linux/interrupt.h>
25#include <linux/slab.h>
943a63a4
TK
26#include <linux/of.h>
27#include <linux/of_address.h>
28#include <linux/clk-provider.h>
29#include <linux/clk/ti.h>
0a84a91c 30
30a69ef7 31#include "soc.h"
0a84a91c 32#include "prm2xxx_3xxx.h"
2bb2a5d3
PW
33#include "prm2xxx.h"
34#include "prm3xxx.h"
ab7b2ffc 35#include "prm33xx.h"
0a84a91c 36#include "prm44xx.h"
48e0c114
TK
37#include "prm54xx.h"
38#include "prm7xx.h"
39#include "prcm43xx.h"
d9a16f9a 40#include "common.h"
943a63a4 41#include "clock.h"
3dbb048b
TK
42#include "cm.h"
43#include "control.h"
0a84a91c
TK
44
45/*
46 * OMAP_PRCM_MAX_NR_PENDING_REG: maximum number of PRM_IRQ*_MPU regs
47 * XXX this is technically not needed, since
48 * omap_prcm_register_chain_handler() could allocate this based on the
49 * actual amount of memory needed for the SoC
50 */
51#define OMAP_PRCM_MAX_NR_PENDING_REG 2
52
53/*
54 * prcm_irq_chips: an array of all of the "generic IRQ chips" in use
55 * by the PRCM interrupt handler code. There will be one 'chip' per
56 * PRM_{IRQSTATUS,IRQENABLE}_MPU register pair. (So OMAP3 will have
57 * one "chip" and OMAP4 will have two.)
58 */
59static struct irq_chip_generic **prcm_irq_chips;
60
61/*
62 * prcm_irq_setup: the PRCM IRQ parameters for the hardware the code
63 * is currently running on. Defined and passed by initialization code
64 * that calls omap_prcm_register_chain_handler().
65 */
66static struct omap_prcm_irq_setup *prcm_irq_setup;
67
d9a16f9a 68/* prm_base: base virtual address of the PRM IP block */
90129336 69struct omap_domain_base prm_base;
d9a16f9a 70
2541d15f
TK
71u16 prm_features;
72
e24c3573
PW
73/*
74 * prm_ll_data: function pointers to SoC-specific implementations of
75 * common PRM functions
76 */
77static struct prm_ll_data null_prm_ll_data;
78static struct prm_ll_data *prm_ll_data = &null_prm_ll_data;
79
0a84a91c
TK
80/* Private functions */
81
82/*
83 * Move priority events from events to priority_events array
84 */
85static void omap_prcm_events_filter_priority(unsigned long *events,
86 unsigned long *priority_events)
87{
88 int i;
89
90 for (i = 0; i < prcm_irq_setup->nr_regs; i++) {
91 priority_events[i] =
92 events[i] & prcm_irq_setup->priority_mask[i];
93 events[i] ^= priority_events[i];
94 }
95}
96
97/*
98 * PRCM Interrupt Handler
99 *
100 * This is a common handler for the OMAP PRCM interrupts. Pending
101 * interrupts are detected by a call to prcm_pending_events and
102 * dispatched accordingly. Clearing of the wakeup events should be
103 * done by the SoC specific individual handlers.
104 */
bd0b9ac4 105static void omap_prcm_irq_handler(struct irq_desc *desc)
0a84a91c
TK
106{
107 unsigned long pending[OMAP_PRCM_MAX_NR_PENDING_REG];
108 unsigned long priority_pending[OMAP_PRCM_MAX_NR_PENDING_REG];
109 struct irq_chip *chip = irq_desc_get_chip(desc);
110 unsigned int virtirq;
b56f2cb7 111 int nr_irq = prcm_irq_setup->nr_regs * 32;
0a84a91c 112
91285b6f
TK
113 /*
114 * If we are suspended, mask all interrupts from PRCM level,
115 * this does not ack them, and they will be pending until we
116 * re-enable the interrupts, at which point the
117 * omap_prcm_irq_handler will be executed again. The
118 * _save_and_clear_irqen() function must ensure that the PRM
119 * write to disable all IRQs has reached the PRM before
120 * returning, or spurious PRCM interrupts may occur during
121 * suspend.
122 */
123 if (prcm_irq_setup->suspended) {
124 prcm_irq_setup->save_and_clear_irqen(prcm_irq_setup->saved_mask);
125 prcm_irq_setup->suspend_save_flag = true;
126 }
127
0a84a91c
TK
128 /*
129 * Loop until all pending irqs are handled, since
130 * generic_handle_irq() can cause new irqs to come
131 */
91285b6f 132 while (!prcm_irq_setup->suspended) {
0a84a91c
TK
133 prcm_irq_setup->read_pending_irqs(pending);
134
135 /* No bit set, then all IRQs are handled */
b56f2cb7 136 if (find_first_bit(pending, nr_irq) >= nr_irq)
0a84a91c
TK
137 break;
138
139 omap_prcm_events_filter_priority(pending, priority_pending);
140
141 /*
142 * Loop on all currently pending irqs so that new irqs
143 * cannot starve previously pending irqs
144 */
145
146 /* Serve priority events first */
b56f2cb7 147 for_each_set_bit(virtirq, priority_pending, nr_irq)
0a84a91c
TK
148 generic_handle_irq(prcm_irq_setup->base_irq + virtirq);
149
150 /* Serve normal events next */
b56f2cb7 151 for_each_set_bit(virtirq, pending, nr_irq)
0a84a91c
TK
152 generic_handle_irq(prcm_irq_setup->base_irq + virtirq);
153 }
154 if (chip->irq_ack)
155 chip->irq_ack(&desc->irq_data);
156 if (chip->irq_eoi)
157 chip->irq_eoi(&desc->irq_data);
158 chip->irq_unmask(&desc->irq_data);
159
160 prcm_irq_setup->ocp_barrier(); /* avoid spurious IRQs */
161}
162
163/* Public functions */
164
165/**
166 * omap_prcm_event_to_irq - given a PRCM event name, returns the
167 * corresponding IRQ on which the handler should be registered
168 * @name: name of the PRCM interrupt bit to look up - see struct omap_prcm_irq
169 *
170 * Returns the Linux internal IRQ ID corresponding to @name upon success,
171 * or -ENOENT upon failure.
172 */
173int omap_prcm_event_to_irq(const char *name)
174{
175 int i;
176
177 if (!prcm_irq_setup || !name)
178 return -ENOENT;
179
180 for (i = 0; i < prcm_irq_setup->nr_irqs; i++)
181 if (!strcmp(prcm_irq_setup->irqs[i].name, name))
182 return prcm_irq_setup->base_irq +
183 prcm_irq_setup->irqs[i].offset;
184
185 return -ENOENT;
186}
187
188/**
189 * omap_prcm_irq_cleanup - reverses memory allocated and other steps
190 * done by omap_prcm_register_chain_handler()
191 *
192 * No return value.
193 */
194void omap_prcm_irq_cleanup(void)
195{
0fb22a8f 196 unsigned int irq;
0a84a91c
TK
197 int i;
198
199 if (!prcm_irq_setup) {
200 pr_err("PRCM: IRQ handler not initialized; cannot cleanup\n");
201 return;
202 }
203
204 if (prcm_irq_chips) {
205 for (i = 0; i < prcm_irq_setup->nr_regs; i++) {
206 if (prcm_irq_chips[i])
207 irq_remove_generic_chip(prcm_irq_chips[i],
208 0xffffffff, 0, 0);
209 prcm_irq_chips[i] = NULL;
210 }
211 kfree(prcm_irq_chips);
212 prcm_irq_chips = NULL;
213 }
214
91285b6f
TK
215 kfree(prcm_irq_setup->saved_mask);
216 prcm_irq_setup->saved_mask = NULL;
217
0a84a91c
TK
218 kfree(prcm_irq_setup->priority_mask);
219 prcm_irq_setup->priority_mask = NULL;
220
0fb22a8f
MZ
221 if (prcm_irq_setup->xlate_irq)
222 irq = prcm_irq_setup->xlate_irq(prcm_irq_setup->irq);
223 else
224 irq = prcm_irq_setup->irq;
225 irq_set_chained_handler(irq, NULL);
0a84a91c
TK
226
227 if (prcm_irq_setup->base_irq > 0)
228 irq_free_descs(prcm_irq_setup->base_irq,
229 prcm_irq_setup->nr_regs * 32);
230 prcm_irq_setup->base_irq = 0;
231}
232
91285b6f
TK
233void omap_prcm_irq_prepare(void)
234{
235 prcm_irq_setup->suspended = true;
236}
237
238void omap_prcm_irq_complete(void)
239{
240 prcm_irq_setup->suspended = false;
241
242 /* If we have not saved the masks, do not attempt to restore */
243 if (!prcm_irq_setup->suspend_save_flag)
244 return;
245
246 prcm_irq_setup->suspend_save_flag = false;
247
248 /*
249 * Re-enable all masked PRCM irq sources, this causes the PRCM
250 * interrupt to fire immediately if the events were masked
251 * previously in the chain handler
252 */
253 prcm_irq_setup->restore_irqen(prcm_irq_setup->saved_mask);
254}
255
0a84a91c
TK
256/**
257 * omap_prcm_register_chain_handler - initializes the prcm chained interrupt
258 * handler based on provided parameters
259 * @irq_setup: hardware data about the underlying PRM/PRCM
260 *
261 * Set up the PRCM chained interrupt handler on the PRCM IRQ. Sets up
262 * one generic IRQ chip per PRM interrupt status/enable register pair.
263 * Returns 0 upon success, -EINVAL if called twice or if invalid
264 * arguments are passed, or -ENOMEM on any other error.
265 */
266int omap_prcm_register_chain_handler(struct omap_prcm_irq_setup *irq_setup)
267{
eeb3711b 268 int nr_regs;
0a84a91c 269 u32 mask[OMAP_PRCM_MAX_NR_PENDING_REG];
2a26d31b 270 int offset, i, irq;
0a84a91c
TK
271 struct irq_chip_generic *gc;
272 struct irq_chip_type *ct;
273
274 if (!irq_setup)
275 return -EINVAL;
276
eeb3711b
PW
277 nr_regs = irq_setup->nr_regs;
278
0a84a91c
TK
279 if (prcm_irq_setup) {
280 pr_err("PRCM: already initialized; won't reinitialize\n");
281 return -EINVAL;
282 }
283
284 if (nr_regs > OMAP_PRCM_MAX_NR_PENDING_REG) {
285 pr_err("PRCM: nr_regs too large\n");
286 return -EINVAL;
287 }
288
289 prcm_irq_setup = irq_setup;
290
291 prcm_irq_chips = kzalloc(sizeof(void *) * nr_regs, GFP_KERNEL);
91285b6f 292 prcm_irq_setup->saved_mask = kzalloc(sizeof(u32) * nr_regs, GFP_KERNEL);
0a84a91c
TK
293 prcm_irq_setup->priority_mask = kzalloc(sizeof(u32) * nr_regs,
294 GFP_KERNEL);
295
91285b6f 296 if (!prcm_irq_chips || !prcm_irq_setup->saved_mask ||
9a6b6f75 297 !prcm_irq_setup->priority_mask)
0a84a91c 298 goto err;
0a84a91c
TK
299
300 memset(mask, 0, sizeof(mask));
301
302 for (i = 0; i < irq_setup->nr_irqs; i++) {
303 offset = irq_setup->irqs[i].offset;
304 mask[offset >> 5] |= 1 << (offset & 0x1f);
305 if (irq_setup->irqs[i].priority)
306 irq_setup->priority_mask[offset >> 5] |=
307 1 << (offset & 0x1f);
308 }
309
0fb22a8f
MZ
310 if (irq_setup->xlate_irq)
311 irq = irq_setup->xlate_irq(irq_setup->irq);
312 else
313 irq = irq_setup->irq;
314 irq_set_chained_handler(irq, omap_prcm_irq_handler);
0a84a91c
TK
315
316 irq_setup->base_irq = irq_alloc_descs(-1, 0, irq_setup->nr_regs * 32,
317 0);
318
319 if (irq_setup->base_irq < 0) {
320 pr_err("PRCM: failed to allocate irq descs: %d\n",
321 irq_setup->base_irq);
322 goto err;
323 }
324
4ba7c3c3 325 for (i = 0; i < irq_setup->nr_regs; i++) {
0a84a91c 326 gc = irq_alloc_generic_chip("PRCM", 1,
90129336 327 irq_setup->base_irq + i * 32, prm_base.va,
0a84a91c
TK
328 handle_level_irq);
329
330 if (!gc) {
331 pr_err("PRCM: failed to allocate generic chip\n");
332 goto err;
333 }
334 ct = gc->chip_types;
335 ct->chip.irq_ack = irq_gc_ack_set_bit;
336 ct->chip.irq_mask = irq_gc_mask_clr_bit;
337 ct->chip.irq_unmask = irq_gc_mask_set_bit;
338
339 ct->regs.ack = irq_setup->ack + i * 4;
340 ct->regs.mask = irq_setup->mask + i * 4;
341
342 irq_setup_generic_chip(gc, mask[i], 0, IRQ_NOREQUEST, 0);
343 prcm_irq_chips[i] = gc;
344 }
345
2a26d31b
TL
346 irq = omap_prcm_event_to_irq("io");
347 omap_pcs_legacy_init(irq, irq_setup->reconfigure_io_chain);
30a69ef7 348
0a84a91c
TK
349 return 0;
350
351err:
352 omap_prcm_irq_cleanup();
353 return -ENOMEM;
354}
3f4990f4 355
d9a16f9a
PW
356/**
357 * omap2_set_globals_prm - set the PRM base address (for early use)
358 * @prm: PRM base virtual address
359 *
360 * XXX Will be replaced when the PRM/CM drivers are completed.
3f4990f4 361 */
d9a16f9a 362void __init omap2_set_globals_prm(void __iomem *prm)
3f4990f4 363{
90129336 364 prm_base.va = prm;
3f4990f4
S
365}
366
2bb2a5d3
PW
367/**
368 * prm_read_reset_sources - return the sources of the SoC's last reset
369 *
370 * Return a u32 bitmask representing the reset sources that caused the
371 * SoC to reset. The low-level per-SoC functions called by this
372 * function remap the SoC-specific reset source bits into an
373 * OMAP-common set of reset source bits, defined in
374 * arch/arm/mach-omap2/prm.h. Returns the standardized reset source
375 * u32 bitmask from the hardware upon success, or returns (1 <<
376 * OMAP_UNKNOWN_RST_SRC_ID_SHIFT) if no low-level read_reset_sources()
377 * function was registered.
3f4990f4 378 */
2bb2a5d3 379u32 prm_read_reset_sources(void)
3f4990f4 380{
2bb2a5d3 381 u32 ret = 1 << OMAP_UNKNOWN_RST_SRC_ID_SHIFT;
3f4990f4 382
2bb2a5d3
PW
383 if (prm_ll_data->read_reset_sources)
384 ret = prm_ll_data->read_reset_sources();
385 else
386 WARN_ONCE(1, "prm: %s: no mapping function defined for reset sources\n", __func__);
3f4990f4 387
2bb2a5d3 388 return ret;
3f4990f4
S
389}
390
e6d3a8b0
RN
391/**
392 * prm_was_any_context_lost_old - was device context lost? (old API)
393 * @part: PRM partition ID (e.g., OMAP4430_PRM_PARTITION)
394 * @inst: PRM instance offset (e.g., OMAP4430_PRM_MPU_INST)
395 * @idx: CONTEXT register offset
396 *
397 * Return 1 if any bits were set in the *_CONTEXT_* register
398 * identified by (@part, @inst, @idx), which means that some context
399 * was lost for that module; otherwise, return 0. XXX Deprecated;
400 * callers need to use a less-SoC-dependent way to identify hardware
401 * IP blocks.
402 */
403bool prm_was_any_context_lost_old(u8 part, s16 inst, u16 idx)
404{
405 bool ret = true;
406
407 if (prm_ll_data->was_any_context_lost_old)
408 ret = prm_ll_data->was_any_context_lost_old(part, inst, idx);
409 else
410 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
411 __func__);
412
413 return ret;
414}
415
416/**
417 * prm_clear_context_lost_flags_old - clear context loss flags (old API)
418 * @part: PRM partition ID (e.g., OMAP4430_PRM_PARTITION)
419 * @inst: PRM instance offset (e.g., OMAP4430_PRM_MPU_INST)
420 * @idx: CONTEXT register offset
421 *
422 * Clear hardware context loss bits for the module identified by
423 * (@part, @inst, @idx). No return value. XXX Deprecated; callers
424 * need to use a less-SoC-dependent way to identify hardware IP
425 * blocks.
426 */
427void prm_clear_context_loss_flags_old(u8 part, s16 inst, u16 idx)
428{
429 if (prm_ll_data->clear_context_loss_flags_old)
430 prm_ll_data->clear_context_loss_flags_old(part, inst, idx);
431 else
432 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
433 __func__);
434}
435
efd44dc3
TK
436/**
437 * omap_prm_assert_hardreset - assert hardreset for an IP block
438 * @shift: register bit shift corresponding to the reset line
439 * @part: PRM partition
440 * @prm_mod: PRM submodule base or instance offset
441 * @offset: register offset
442 *
443 * Asserts a hardware reset line for an IP block.
444 */
445int omap_prm_assert_hardreset(u8 shift, u8 part, s16 prm_mod, u16 offset)
446{
447 if (!prm_ll_data->assert_hardreset) {
448 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
449 __func__);
450 return -EINVAL;
451 }
452
453 return prm_ll_data->assert_hardreset(shift, part, prm_mod, offset);
454}
455
37fb59d7
TK
456/**
457 * omap_prm_deassert_hardreset - deassert hardreset for an IP block
458 * @shift: register bit shift corresponding to the reset line
459 * @st_shift: reset status bit shift corresponding to the reset line
460 * @part: PRM partition
461 * @prm_mod: PRM submodule base or instance offset
462 * @offset: register offset
463 * @st_offset: status register offset
464 *
465 * Deasserts a hardware reset line for an IP block.
466 */
467int omap_prm_deassert_hardreset(u8 shift, u8 st_shift, u8 part, s16 prm_mod,
468 u16 offset, u16 st_offset)
469{
470 if (!prm_ll_data->deassert_hardreset) {
471 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
472 __func__);
473 return -EINVAL;
474 }
475
476 return prm_ll_data->deassert_hardreset(shift, st_shift, part, prm_mod,
477 offset, st_offset);
478}
479
1bc28b34
TK
480/**
481 * omap_prm_is_hardreset_asserted - check the hardreset status for an IP block
482 * @shift: register bit shift corresponding to the reset line
483 * @part: PRM partition
484 * @prm_mod: PRM submodule base or instance offset
485 * @offset: register offset
486 *
487 * Checks if a hardware reset line for an IP block is enabled or not.
488 */
489int omap_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset)
490{
491 if (!prm_ll_data->is_hardreset_asserted) {
492 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
493 __func__);
494 return -EINVAL;
495 }
496
497 return prm_ll_data->is_hardreset_asserted(shift, part, prm_mod, offset);
498}
499
4984eeaf
TK
500/**
501 * omap_prm_reconfigure_io_chain - clear latches and reconfigure I/O chain
502 *
503 * Clear any previously-latched I/O wakeup events and ensure that the
504 * I/O wakeup gates are aligned with the current mux settings.
505 * Calls SoC specific I/O chain reconfigure function if available,
506 * otherwise does nothing.
507 */
508void omap_prm_reconfigure_io_chain(void)
509{
510 if (!prcm_irq_setup || !prcm_irq_setup->reconfigure_io_chain)
511 return;
512
513 prcm_irq_setup->reconfigure_io_chain();
514}
515
61c8621e
TK
516/**
517 * omap_prm_reset_system - trigger global SW reset
518 *
519 * Triggers SoC specific global warm reset to reboot the device.
520 */
521void omap_prm_reset_system(void)
522{
523 if (!prm_ll_data->reset_system) {
524 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
525 __func__);
526 return;
527 }
528
529 prm_ll_data->reset_system();
530
531 while (1)
532 cpu_relax();
533}
534
9cb6d363
TK
535/**
536 * omap_prm_clear_mod_irqs - clear wake-up events from PRCM interrupt
537 * @module: PRM module to clear wakeups from
538 * @regs: register to clear
539 * @wkst_mask: wkst bits to clear
540 *
541 * Clears any wakeup events for the module and register set defined.
542 * Uses SoC specific implementation to do the actual wakeup status
543 * clearing.
544 */
545int omap_prm_clear_mod_irqs(s16 module, u8 regs, u32 wkst_mask)
546{
547 if (!prm_ll_data->clear_mod_irqs) {
548 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
549 __func__);
550 return -EINVAL;
551 }
552
553 return prm_ll_data->clear_mod_irqs(module, regs, wkst_mask);
554}
555
e9f1ddcd
TK
556/**
557 * omap_prm_vp_check_txdone - check voltage processor TX done status
558 *
559 * Checks if voltage processor transmission has been completed.
560 * Returns non-zero if a transmission has completed, 0 otherwise.
561 */
562u32 omap_prm_vp_check_txdone(u8 vp_id)
563{
564 if (!prm_ll_data->vp_check_txdone) {
565 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
566 __func__);
567 return 0;
568 }
569
570 return prm_ll_data->vp_check_txdone(vp_id);
571}
572
573/**
574 * omap_prm_vp_clear_txdone - clears voltage processor TX done status
575 *
576 * Clears the status bit for completed voltage processor transmission
577 * returned by prm_vp_check_txdone.
578 */
579void omap_prm_vp_clear_txdone(u8 vp_id)
580{
581 if (!prm_ll_data->vp_clear_txdone) {
582 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
583 __func__);
584 return;
585 }
586
587 prm_ll_data->vp_clear_txdone(vp_id);
588}
589
e24c3573
PW
590/**
591 * prm_register - register per-SoC low-level data with the PRM
592 * @pld: low-level per-SoC OMAP PRM data & function pointers to register
593 *
594 * Register per-SoC low-level OMAP PRM data and function pointers with
595 * the OMAP PRM common interface. The caller must keep the data
596 * pointed to by @pld valid until it calls prm_unregister() and
597 * it returns successfully. Returns 0 upon success, -EINVAL if @pld
598 * is NULL, or -EEXIST if prm_register() has already been called
599 * without an intervening prm_unregister().
600 */
601int prm_register(struct prm_ll_data *pld)
3f4990f4 602{
e24c3573
PW
603 if (!pld)
604 return -EINVAL;
3f4990f4 605
e24c3573
PW
606 if (prm_ll_data != &null_prm_ll_data)
607 return -EEXIST;
3f4990f4 608
e24c3573 609 prm_ll_data = pld;
3f4990f4 610
3f4990f4
S
611 return 0;
612}
613
e24c3573
PW
614/**
615 * prm_unregister - unregister per-SoC low-level data & function pointers
616 * @pld: low-level per-SoC OMAP PRM data & function pointers to unregister
617 *
618 * Unregister per-SoC low-level OMAP PRM data and function pointers
619 * that were previously registered with prm_register(). The
620 * caller may not destroy any of the data pointed to by @pld until
621 * this function returns successfully. Returns 0 upon success, or
622 * -EINVAL if @pld is NULL or if @pld does not match the struct
623 * prm_ll_data * previously registered by prm_register().
624 */
625int prm_unregister(struct prm_ll_data *pld)
3f4990f4 626{
e24c3573
PW
627 if (!pld || prm_ll_data != pld)
628 return -EINVAL;
629
630 prm_ll_data = &null_prm_ll_data;
3f4990f4 631
3f4990f4
S
632 return 0;
633}
943a63a4 634
ab7b2ffc
TK
635#ifdef CONFIG_ARCH_OMAP2
636static struct omap_prcm_init_data omap2_prm_data __initdata = {
3a3e1c88 637 .index = TI_CLKM_PRM,
ab7b2ffc 638 .init = omap2xxx_prm_init,
3a3e1c88 639};
ab7b2ffc 640#endif
3a3e1c88 641
ab7b2ffc
TK
642#ifdef CONFIG_ARCH_OMAP3
643static struct omap_prcm_init_data omap3_prm_data __initdata = {
ae521d4d 644 .index = TI_CLKM_PRM,
ab7b2ffc 645 .init = omap3xxx_prm_init,
ae521d4d
TK
646
647 /*
648 * IVA2 offset is a negative value, must offset the prm_base
649 * address by this to get it to positive
650 */
651 .offset = -OMAP3430_IVA2_MOD,
652};
ab7b2ffc 653#endif
ae521d4d 654
ab7b2ffc
TK
655#if defined(CONFIG_SOC_AM33XX) || defined(CONFIG_SOC_TI81XX)
656static struct omap_prcm_init_data am3_prm_data __initdata = {
657 .index = TI_CLKM_PRM,
658 .init = am33xx_prm_init,
659};
dbb7e70a 660#endif
4e34df0c 661
dbb7e70a 662#ifdef CONFIG_SOC_TI81XX
4e34df0c
TL
663static struct omap_prcm_init_data dm814_pllss_data __initdata = {
664 .index = TI_CLKM_PLLSS,
665 .init = am33xx_prm_init,
666};
ab7b2ffc
TK
667#endif
668
48e0c114 669#ifdef CONFIG_ARCH_OMAP4
ab7b2ffc
TK
670static struct omap_prcm_init_data omap4_prm_data __initdata = {
671 .index = TI_CLKM_PRM,
672 .init = omap44xx_prm_init,
48e0c114 673 .device_inst_offset = OMAP4430_PRM_DEVICE_INST,
219595b6 674 .flags = PRM_HAS_IO_WAKEUP | PRM_HAS_VOLTAGE | PRM_IRQ_DEFAULT,
48e0c114
TK
675};
676#endif
677
678#ifdef CONFIG_SOC_OMAP5
679static struct omap_prcm_init_data omap5_prm_data __initdata = {
680 .index = TI_CLKM_PRM,
681 .init = omap44xx_prm_init,
682 .device_inst_offset = OMAP54XX_PRM_DEVICE_INST,
8b5b9a22 683 .flags = PRM_HAS_IO_WAKEUP | PRM_HAS_VOLTAGE,
48e0c114
TK
684};
685#endif
686
687#ifdef CONFIG_SOC_DRA7XX
688static struct omap_prcm_init_data dra7_prm_data __initdata = {
689 .index = TI_CLKM_PRM,
690 .init = omap44xx_prm_init,
691 .device_inst_offset = DRA7XX_PRM_DEVICE_INST,
8b5b9a22 692 .flags = PRM_HAS_IO_WAKEUP,
48e0c114
TK
693};
694#endif
695
696#ifdef CONFIG_SOC_AM43XX
697static struct omap_prcm_init_data am4_prm_data __initdata = {
698 .index = TI_CLKM_PRM,
699 .init = omap44xx_prm_init,
700 .device_inst_offset = AM43XX_PRM_DEVICE_INST,
8740a144 701 .flags = PRM_HAS_IO_WAKEUP,
3a3e1c88 702};
ab7b2ffc 703#endif
3a3e1c88 704
ab7b2ffc
TK
705#if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5)
706static struct omap_prcm_init_data scrm_data __initdata = {
707 .index = TI_CLKM_SCRM,
708};
709#endif
710
0527873b 711static const struct of_device_id omap_prcm_dt_match_table[] __initconst = {
ab7b2ffc
TK
712#ifdef CONFIG_SOC_AM33XX
713 { .compatible = "ti,am3-prcm", .data = &am3_prm_data },
714#endif
715#ifdef CONFIG_SOC_AM43XX
48e0c114 716 { .compatible = "ti,am4-prcm", .data = &am4_prm_data },
ab7b2ffc
TK
717#endif
718#ifdef CONFIG_SOC_TI81XX
719 { .compatible = "ti,dm814-prcm", .data = &am3_prm_data },
4e34df0c 720 { .compatible = "ti,dm814-pllss", .data = &dm814_pllss_data },
ab7b2ffc
TK
721 { .compatible = "ti,dm816-prcm", .data = &am3_prm_data },
722#endif
723#ifdef CONFIG_ARCH_OMAP2
724 { .compatible = "ti,omap2-prcm", .data = &omap2_prm_data },
725#endif
726#ifdef CONFIG_ARCH_OMAP3
ae521d4d 727 { .compatible = "ti,omap3-prm", .data = &omap3_prm_data },
ab7b2ffc
TK
728#endif
729#ifdef CONFIG_ARCH_OMAP4
730 { .compatible = "ti,omap4-prm", .data = &omap4_prm_data },
3a3e1c88 731 { .compatible = "ti,omap4-scrm", .data = &scrm_data },
ab7b2ffc
TK
732#endif
733#ifdef CONFIG_SOC_OMAP5
48e0c114 734 { .compatible = "ti,omap5-prm", .data = &omap5_prm_data },
3a3e1c88 735 { .compatible = "ti,omap5-scrm", .data = &scrm_data },
ab7b2ffc
TK
736#endif
737#ifdef CONFIG_SOC_DRA7XX
48e0c114 738 { .compatible = "ti,dra7-prm", .data = &dra7_prm_data },
ab7b2ffc 739#endif
943a63a4
TK
740 { }
741};
742
ae521d4d
TK
743/**
744 * omap2_prm_base_init - initialize iomappings for the PRM driver
745 *
746 * Detects and initializes the iomappings for the PRM driver, based
747 * on the DT data. Returns 0 in success, negative error value
748 * otherwise.
749 */
750int __init omap2_prm_base_init(void)
751{
752 struct device_node *np;
753 const struct of_device_id *match;
754 struct omap_prcm_init_data *data;
90129336
TK
755 struct resource res;
756 int ret;
ae521d4d
TK
757
758 for_each_matching_node_and_match(np, omap_prcm_dt_match_table, &match) {
759 data = (struct omap_prcm_init_data *)match->data;
760
90129336
TK
761 ret = of_address_to_resource(np, 0, &res);
762 if (ret)
763 return ret;
ae521d4d 764
90129336 765 data->mem = ioremap(res.start, resource_size(&res));
ae521d4d 766
90129336
TK
767 if (data->index == TI_CLKM_PRM) {
768 prm_base.va = data->mem + data->offset;
769 prm_base.pa = res.start + data->offset;
770 }
ab7b2ffc
TK
771
772 data->np = np;
773
774 if (data->init)
775 data->init(data);
ae521d4d
TK
776 }
777
778 return 0;
779}
780
ab7b2ffc
TK
781int __init omap2_prcm_base_init(void)
782{
425dc8b2
TK
783 int ret;
784
785 ret = omap2_prm_base_init();
786 if (ret)
787 return ret;
788
789 return omap2_cm_base_init();
ab7b2ffc
TK
790}
791
3a1a388e
TK
792/**
793 * omap_prcm_init - low level init for the PRCM drivers
794 *
795 * Initializes the low level clock infrastructure for PRCM drivers.
796 * Returns 0 in success, negative error value in failure.
797 */
798int __init omap_prcm_init(void)
943a63a4
TK
799{
800 struct device_node *np;
3a3e1c88
TK
801 const struct of_device_id *match;
802 const struct omap_prcm_init_data *data;
9f029b15 803 int ret;
943a63a4 804
3a3e1c88
TK
805 for_each_matching_node_and_match(np, omap_prcm_dt_match_table, &match) {
806 data = match->data;
807
80cbb224 808 ret = omap2_clk_provider_init(np, data->index, NULL, data->mem);
9f029b15
TK
809 if (ret)
810 return ret;
943a63a4
TK
811 }
812
fe87414f
TK
813 omap_cm_init();
814
943a63a4
TK
815 return 0;
816}
b550e47f
TK
817
818static int __init prm_late_init(void)
819{
820 if (prm_ll_data->late_init)
821 return prm_ll_data->late_init();
822 return 0;
823}
824subsys_initcall(prm_late_init);