2 * OMAP2+ common Power & Reset Management (PRM) IP block functions
4 * Copyright (C) 2011 Texas Instruments, Inc.
5 * Tero Kristo <t-kristo@ti.com>
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.
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.
16 * XXX This code should eventually be moved to a PRM driver.
19 #include <linux/kernel.h>
20 #include <linux/module.h>
21 #include <linux/init.h>
23 #include <linux/irq.h>
24 #include <linux/interrupt.h>
25 #include <linux/slab.h>
27 #include <linux/of_address.h>
28 #include <linux/clk-provider.h>
29 #include <linux/clk/ti.h>
32 #include "prm2xxx_3xxx.h"
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
51 #define OMAP_PRCM_MAX_NR_PENDING_REG 2
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.)
59 static struct irq_chip_generic
**prcm_irq_chips
;
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().
66 static struct omap_prcm_irq_setup
*prcm_irq_setup
;
68 /* prm_base: base virtual address of the PRM IP block */
69 void __iomem
*prm_base
;
74 * prm_ll_data: function pointers to SoC-specific implementations of
75 * common PRM functions
77 static struct prm_ll_data null_prm_ll_data
;
78 static struct prm_ll_data
*prm_ll_data
= &null_prm_ll_data
;
80 /* Private functions */
83 * Move priority events from events to priority_events array
85 static void omap_prcm_events_filter_priority(unsigned long *events
,
86 unsigned long *priority_events
)
90 for (i
= 0; i
< prcm_irq_setup
->nr_regs
; i
++) {
92 events
[i
] & prcm_irq_setup
->priority_mask
[i
];
93 events
[i
] ^= priority_events
[i
];
98 * PRCM Interrupt Handler
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.
105 static void omap_prcm_irq_handler(struct irq_desc
*desc
)
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
;
111 int nr_irq
= prcm_irq_setup
->nr_regs
* 32;
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
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;
129 * Loop until all pending irqs are handled, since
130 * generic_handle_irq() can cause new irqs to come
132 while (!prcm_irq_setup
->suspended
) {
133 prcm_irq_setup
->read_pending_irqs(pending
);
135 /* No bit set, then all IRQs are handled */
136 if (find_first_bit(pending
, nr_irq
) >= nr_irq
)
139 omap_prcm_events_filter_priority(pending
, priority_pending
);
142 * Loop on all currently pending irqs so that new irqs
143 * cannot starve previously pending irqs
146 /* Serve priority events first */
147 for_each_set_bit(virtirq
, priority_pending
, nr_irq
)
148 generic_handle_irq(prcm_irq_setup
->base_irq
+ virtirq
);
150 /* Serve normal events next */
151 for_each_set_bit(virtirq
, pending
, nr_irq
)
152 generic_handle_irq(prcm_irq_setup
->base_irq
+ virtirq
);
155 chip
->irq_ack(&desc
->irq_data
);
157 chip
->irq_eoi(&desc
->irq_data
);
158 chip
->irq_unmask(&desc
->irq_data
);
160 prcm_irq_setup
->ocp_barrier(); /* avoid spurious IRQs */
163 /* Public functions */
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
170 * Returns the Linux internal IRQ ID corresponding to @name upon success,
171 * or -ENOENT upon failure.
173 int omap_prcm_event_to_irq(const char *name
)
177 if (!prcm_irq_setup
|| !name
)
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
;
189 * omap_prcm_irq_cleanup - reverses memory allocated and other steps
190 * done by omap_prcm_register_chain_handler()
194 void omap_prcm_irq_cleanup(void)
199 if (!prcm_irq_setup
) {
200 pr_err("PRCM: IRQ handler not initialized; cannot cleanup\n");
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
],
209 prcm_irq_chips
[i
] = NULL
;
211 kfree(prcm_irq_chips
);
212 prcm_irq_chips
= NULL
;
215 kfree(prcm_irq_setup
->saved_mask
);
216 prcm_irq_setup
->saved_mask
= NULL
;
218 kfree(prcm_irq_setup
->priority_mask
);
219 prcm_irq_setup
->priority_mask
= NULL
;
221 if (prcm_irq_setup
->xlate_irq
)
222 irq
= prcm_irq_setup
->xlate_irq(prcm_irq_setup
->irq
);
224 irq
= prcm_irq_setup
->irq
;
225 irq_set_chained_handler(irq
, NULL
);
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;
233 void omap_prcm_irq_prepare(void)
235 prcm_irq_setup
->suspended
= true;
238 void omap_prcm_irq_complete(void)
240 prcm_irq_setup
->suspended
= false;
242 /* If we have not saved the masks, do not attempt to restore */
243 if (!prcm_irq_setup
->suspend_save_flag
)
246 prcm_irq_setup
->suspend_save_flag
= false;
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
253 prcm_irq_setup
->restore_irqen(prcm_irq_setup
->saved_mask
);
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
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.
266 int omap_prcm_register_chain_handler(struct omap_prcm_irq_setup
*irq_setup
)
269 u32 mask
[OMAP_PRCM_MAX_NR_PENDING_REG
];
271 struct irq_chip_generic
*gc
;
272 struct irq_chip_type
*ct
;
278 nr_regs
= irq_setup
->nr_regs
;
280 if (prcm_irq_setup
) {
281 pr_err("PRCM: already initialized; won't reinitialize\n");
285 if (nr_regs
> OMAP_PRCM_MAX_NR_PENDING_REG
) {
286 pr_err("PRCM: nr_regs too large\n");
290 prcm_irq_setup
= irq_setup
;
292 prcm_irq_chips
= kzalloc(sizeof(void *) * nr_regs
, GFP_KERNEL
);
293 prcm_irq_setup
->saved_mask
= kzalloc(sizeof(u32
) * nr_regs
, GFP_KERNEL
);
294 prcm_irq_setup
->priority_mask
= kzalloc(sizeof(u32
) * nr_regs
,
297 if (!prcm_irq_chips
|| !prcm_irq_setup
->saved_mask
||
298 !prcm_irq_setup
->priority_mask
) {
299 pr_err("PRCM: kzalloc failed\n");
303 memset(mask
, 0, sizeof(mask
));
305 for (i
= 0; i
< irq_setup
->nr_irqs
; i
++) {
306 offset
= irq_setup
->irqs
[i
].offset
;
307 mask
[offset
>> 5] |= 1 << (offset
& 0x1f);
308 if (irq_setup
->irqs
[i
].priority
)
309 irq_setup
->priority_mask
[offset
>> 5] |=
310 1 << (offset
& 0x1f);
313 if (irq_setup
->xlate_irq
)
314 irq
= irq_setup
->xlate_irq(irq_setup
->irq
);
316 irq
= irq_setup
->irq
;
317 irq_set_chained_handler(irq
, omap_prcm_irq_handler
);
319 irq_setup
->base_irq
= irq_alloc_descs(-1, 0, irq_setup
->nr_regs
* 32,
322 if (irq_setup
->base_irq
< 0) {
323 pr_err("PRCM: failed to allocate irq descs: %d\n",
324 irq_setup
->base_irq
);
328 for (i
= 0; i
< irq_setup
->nr_regs
; i
++) {
329 gc
= irq_alloc_generic_chip("PRCM", 1,
330 irq_setup
->base_irq
+ i
* 32, prm_base
,
334 pr_err("PRCM: failed to allocate generic chip\n");
338 ct
->chip
.irq_ack
= irq_gc_ack_set_bit
;
339 ct
->chip
.irq_mask
= irq_gc_mask_clr_bit
;
340 ct
->chip
.irq_unmask
= irq_gc_mask_set_bit
;
342 ct
->regs
.ack
= irq_setup
->ack
+ i
* 4;
343 ct
->regs
.mask
= irq_setup
->mask
+ i
* 4;
345 irq_setup_generic_chip(gc
, mask
[i
], 0, IRQ_NOREQUEST
, 0);
346 prcm_irq_chips
[i
] = gc
;
349 if (of_have_populated_dt()) {
350 int irq
= omap_prcm_event_to_irq("io");
351 omap_pcs_legacy_init(irq
, irq_setup
->reconfigure_io_chain
);
357 omap_prcm_irq_cleanup();
362 * omap2_set_globals_prm - set the PRM base address (for early use)
363 * @prm: PRM base virtual address
365 * XXX Will be replaced when the PRM/CM drivers are completed.
367 void __init
omap2_set_globals_prm(void __iomem
*prm
)
373 * prm_read_reset_sources - return the sources of the SoC's last reset
375 * Return a u32 bitmask representing the reset sources that caused the
376 * SoC to reset. The low-level per-SoC functions called by this
377 * function remap the SoC-specific reset source bits into an
378 * OMAP-common set of reset source bits, defined in
379 * arch/arm/mach-omap2/prm.h. Returns the standardized reset source
380 * u32 bitmask from the hardware upon success, or returns (1 <<
381 * OMAP_UNKNOWN_RST_SRC_ID_SHIFT) if no low-level read_reset_sources()
382 * function was registered.
384 u32
prm_read_reset_sources(void)
386 u32 ret
= 1 << OMAP_UNKNOWN_RST_SRC_ID_SHIFT
;
388 if (prm_ll_data
->read_reset_sources
)
389 ret
= prm_ll_data
->read_reset_sources();
391 WARN_ONCE(1, "prm: %s: no mapping function defined for reset sources\n", __func__
);
397 * prm_was_any_context_lost_old - was device context lost? (old API)
398 * @part: PRM partition ID (e.g., OMAP4430_PRM_PARTITION)
399 * @inst: PRM instance offset (e.g., OMAP4430_PRM_MPU_INST)
400 * @idx: CONTEXT register offset
402 * Return 1 if any bits were set in the *_CONTEXT_* register
403 * identified by (@part, @inst, @idx), which means that some context
404 * was lost for that module; otherwise, return 0. XXX Deprecated;
405 * callers need to use a less-SoC-dependent way to identify hardware
408 bool prm_was_any_context_lost_old(u8 part
, s16 inst
, u16 idx
)
412 if (prm_ll_data
->was_any_context_lost_old
)
413 ret
= prm_ll_data
->was_any_context_lost_old(part
, inst
, idx
);
415 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
422 * prm_clear_context_lost_flags_old - clear context loss flags (old API)
423 * @part: PRM partition ID (e.g., OMAP4430_PRM_PARTITION)
424 * @inst: PRM instance offset (e.g., OMAP4430_PRM_MPU_INST)
425 * @idx: CONTEXT register offset
427 * Clear hardware context loss bits for the module identified by
428 * (@part, @inst, @idx). No return value. XXX Deprecated; callers
429 * need to use a less-SoC-dependent way to identify hardware IP
432 void prm_clear_context_loss_flags_old(u8 part
, s16 inst
, u16 idx
)
434 if (prm_ll_data
->clear_context_loss_flags_old
)
435 prm_ll_data
->clear_context_loss_flags_old(part
, inst
, idx
);
437 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
442 * omap_prm_assert_hardreset - assert hardreset for an IP block
443 * @shift: register bit shift corresponding to the reset line
444 * @part: PRM partition
445 * @prm_mod: PRM submodule base or instance offset
446 * @offset: register offset
448 * Asserts a hardware reset line for an IP block.
450 int omap_prm_assert_hardreset(u8 shift
, u8 part
, s16 prm_mod
, u16 offset
)
452 if (!prm_ll_data
->assert_hardreset
) {
453 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
458 return prm_ll_data
->assert_hardreset(shift
, part
, prm_mod
, offset
);
462 * omap_prm_deassert_hardreset - deassert hardreset for an IP block
463 * @shift: register bit shift corresponding to the reset line
464 * @st_shift: reset status bit shift corresponding to the reset line
465 * @part: PRM partition
466 * @prm_mod: PRM submodule base or instance offset
467 * @offset: register offset
468 * @st_offset: status register offset
470 * Deasserts a hardware reset line for an IP block.
472 int omap_prm_deassert_hardreset(u8 shift
, u8 st_shift
, u8 part
, s16 prm_mod
,
473 u16 offset
, u16 st_offset
)
475 if (!prm_ll_data
->deassert_hardreset
) {
476 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
481 return prm_ll_data
->deassert_hardreset(shift
, st_shift
, part
, prm_mod
,
486 * omap_prm_is_hardreset_asserted - check the hardreset status for an IP block
487 * @shift: register bit shift corresponding to the reset line
488 * @part: PRM partition
489 * @prm_mod: PRM submodule base or instance offset
490 * @offset: register offset
492 * Checks if a hardware reset line for an IP block is enabled or not.
494 int omap_prm_is_hardreset_asserted(u8 shift
, u8 part
, s16 prm_mod
, u16 offset
)
496 if (!prm_ll_data
->is_hardreset_asserted
) {
497 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
502 return prm_ll_data
->is_hardreset_asserted(shift
, part
, prm_mod
, offset
);
506 * omap_prm_reconfigure_io_chain - clear latches and reconfigure I/O chain
508 * Clear any previously-latched I/O wakeup events and ensure that the
509 * I/O wakeup gates are aligned with the current mux settings.
510 * Calls SoC specific I/O chain reconfigure function if available,
511 * otherwise does nothing.
513 void omap_prm_reconfigure_io_chain(void)
515 if (!prcm_irq_setup
|| !prcm_irq_setup
->reconfigure_io_chain
)
518 prcm_irq_setup
->reconfigure_io_chain();
522 * omap_prm_reset_system - trigger global SW reset
524 * Triggers SoC specific global warm reset to reboot the device.
526 void omap_prm_reset_system(void)
528 if (!prm_ll_data
->reset_system
) {
529 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
534 prm_ll_data
->reset_system();
541 * omap_prm_clear_mod_irqs - clear wake-up events from PRCM interrupt
542 * @module: PRM module to clear wakeups from
543 * @regs: register to clear
544 * @wkst_mask: wkst bits to clear
546 * Clears any wakeup events for the module and register set defined.
547 * Uses SoC specific implementation to do the actual wakeup status
550 int omap_prm_clear_mod_irqs(s16 module
, u8 regs
, u32 wkst_mask
)
552 if (!prm_ll_data
->clear_mod_irqs
) {
553 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
558 return prm_ll_data
->clear_mod_irqs(module
, regs
, wkst_mask
);
562 * omap_prm_vp_check_txdone - check voltage processor TX done status
564 * Checks if voltage processor transmission has been completed.
565 * Returns non-zero if a transmission has completed, 0 otherwise.
567 u32
omap_prm_vp_check_txdone(u8 vp_id
)
569 if (!prm_ll_data
->vp_check_txdone
) {
570 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
575 return prm_ll_data
->vp_check_txdone(vp_id
);
579 * omap_prm_vp_clear_txdone - clears voltage processor TX done status
581 * Clears the status bit for completed voltage processor transmission
582 * returned by prm_vp_check_txdone.
584 void omap_prm_vp_clear_txdone(u8 vp_id
)
586 if (!prm_ll_data
->vp_clear_txdone
) {
587 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
592 prm_ll_data
->vp_clear_txdone(vp_id
);
596 * prm_register - register per-SoC low-level data with the PRM
597 * @pld: low-level per-SoC OMAP PRM data & function pointers to register
599 * Register per-SoC low-level OMAP PRM data and function pointers with
600 * the OMAP PRM common interface. The caller must keep the data
601 * pointed to by @pld valid until it calls prm_unregister() and
602 * it returns successfully. Returns 0 upon success, -EINVAL if @pld
603 * is NULL, or -EEXIST if prm_register() has already been called
604 * without an intervening prm_unregister().
606 int prm_register(struct prm_ll_data
*pld
)
611 if (prm_ll_data
!= &null_prm_ll_data
)
620 * prm_unregister - unregister per-SoC low-level data & function pointers
621 * @pld: low-level per-SoC OMAP PRM data & function pointers to unregister
623 * Unregister per-SoC low-level OMAP PRM data and function pointers
624 * that were previously registered with prm_register(). The
625 * caller may not destroy any of the data pointed to by @pld until
626 * this function returns successfully. Returns 0 upon success, or
627 * -EINVAL if @pld is NULL or if @pld does not match the struct
628 * prm_ll_data * previously registered by prm_register().
630 int prm_unregister(struct prm_ll_data
*pld
)
632 if (!pld
|| prm_ll_data
!= pld
)
635 prm_ll_data
= &null_prm_ll_data
;
640 #ifdef CONFIG_ARCH_OMAP2
641 static struct omap_prcm_init_data omap2_prm_data __initdata
= {
642 .index
= TI_CLKM_PRM
,
643 .init
= omap2xxx_prm_init
,
647 #ifdef CONFIG_ARCH_OMAP3
648 static struct omap_prcm_init_data omap3_prm_data __initdata
= {
649 .index
= TI_CLKM_PRM
,
650 .init
= omap3xxx_prm_init
,
653 * IVA2 offset is a negative value, must offset the prm_base
654 * address by this to get it to positive
656 .offset
= -OMAP3430_IVA2_MOD
,
660 #if defined(CONFIG_SOC_AM33XX) || defined(CONFIG_SOC_TI81XX)
661 static struct omap_prcm_init_data am3_prm_data __initdata
= {
662 .index
= TI_CLKM_PRM
,
663 .init
= am33xx_prm_init
,
667 #ifdef CONFIG_ARCH_OMAP4
668 static struct omap_prcm_init_data omap4_prm_data __initdata
= {
669 .index
= TI_CLKM_PRM
,
670 .init
= omap44xx_prm_init
,
671 .device_inst_offset
= OMAP4430_PRM_DEVICE_INST
,
672 .flags
= PRM_HAS_IO_WAKEUP
| PRM_HAS_VOLTAGE
| PRM_IRQ_DEFAULT
,
676 #ifdef CONFIG_SOC_OMAP5
677 static struct omap_prcm_init_data omap5_prm_data __initdata
= {
678 .index
= TI_CLKM_PRM
,
679 .init
= omap44xx_prm_init
,
680 .device_inst_offset
= OMAP54XX_PRM_DEVICE_INST
,
681 .flags
= PRM_HAS_IO_WAKEUP
| PRM_HAS_VOLTAGE
,
685 #ifdef CONFIG_SOC_DRA7XX
686 static struct omap_prcm_init_data dra7_prm_data __initdata
= {
687 .index
= TI_CLKM_PRM
,
688 .init
= omap44xx_prm_init
,
689 .device_inst_offset
= DRA7XX_PRM_DEVICE_INST
,
690 .flags
= PRM_HAS_IO_WAKEUP
,
694 #ifdef CONFIG_SOC_AM43XX
695 static struct omap_prcm_init_data am4_prm_data __initdata
= {
696 .index
= TI_CLKM_PRM
,
697 .init
= omap44xx_prm_init
,
698 .device_inst_offset
= AM43XX_PRM_DEVICE_INST
,
699 .flags
= PRM_HAS_IO_WAKEUP
,
703 #if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5)
704 static struct omap_prcm_init_data scrm_data __initdata
= {
705 .index
= TI_CLKM_SCRM
,
709 static const struct of_device_id
const omap_prcm_dt_match_table
[] __initconst
= {
710 #ifdef CONFIG_SOC_AM33XX
711 { .compatible
= "ti,am3-prcm", .data
= &am3_prm_data
},
713 #ifdef CONFIG_SOC_AM43XX
714 { .compatible
= "ti,am4-prcm", .data
= &am4_prm_data
},
716 #ifdef CONFIG_SOC_TI81XX
717 { .compatible
= "ti,dm814-prcm", .data
= &am3_prm_data
},
718 { .compatible
= "ti,dm816-prcm", .data
= &am3_prm_data
},
720 #ifdef CONFIG_ARCH_OMAP2
721 { .compatible
= "ti,omap2-prcm", .data
= &omap2_prm_data
},
723 #ifdef CONFIG_ARCH_OMAP3
724 { .compatible
= "ti,omap3-prm", .data
= &omap3_prm_data
},
726 #ifdef CONFIG_ARCH_OMAP4
727 { .compatible
= "ti,omap4-prm", .data
= &omap4_prm_data
},
728 { .compatible
= "ti,omap4-scrm", .data
= &scrm_data
},
730 #ifdef CONFIG_SOC_OMAP5
731 { .compatible
= "ti,omap5-prm", .data
= &omap5_prm_data
},
732 { .compatible
= "ti,omap5-scrm", .data
= &scrm_data
},
734 #ifdef CONFIG_SOC_DRA7XX
735 { .compatible
= "ti,dra7-prm", .data
= &dra7_prm_data
},
741 * omap2_prm_base_init - initialize iomappings for the PRM driver
743 * Detects and initializes the iomappings for the PRM driver, based
744 * on the DT data. Returns 0 in success, negative error value
747 int __init
omap2_prm_base_init(void)
749 struct device_node
*np
;
750 const struct of_device_id
*match
;
751 struct omap_prcm_init_data
*data
;
754 for_each_matching_node_and_match(np
, omap_prcm_dt_match_table
, &match
) {
755 data
= (struct omap_prcm_init_data
*)match
->data
;
757 mem
= of_iomap(np
, 0);
761 if (data
->index
== TI_CLKM_PRM
)
762 prm_base
= mem
+ data
->offset
;
775 int __init
omap2_prcm_base_init(void)
779 ret
= omap2_prm_base_init();
783 return omap2_cm_base_init();
787 * omap_prcm_init - low level init for the PRCM drivers
789 * Initializes the low level clock infrastructure for PRCM drivers.
790 * Returns 0 in success, negative error value in failure.
792 int __init
omap_prcm_init(void)
794 struct device_node
*np
;
795 const struct of_device_id
*match
;
796 const struct omap_prcm_init_data
*data
;
799 for_each_matching_node_and_match(np
, omap_prcm_dt_match_table
, &match
) {
802 ret
= omap2_clk_provider_init(np
, data
->index
, NULL
, data
->mem
);
812 static int __init
prm_late_init(void)
814 if (prm_ll_data
->late_init
)
815 return prm_ll_data
->late_init();
818 subsys_initcall(prm_late_init
);