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"
40 * OMAP_PRCM_MAX_NR_PENDING_REG: maximum number of PRM_IRQ*_MPU regs
41 * XXX this is technically not needed, since
42 * omap_prcm_register_chain_handler() could allocate this based on the
43 * actual amount of memory needed for the SoC
45 #define OMAP_PRCM_MAX_NR_PENDING_REG 2
48 * prcm_irq_chips: an array of all of the "generic IRQ chips" in use
49 * by the PRCM interrupt handler code. There will be one 'chip' per
50 * PRM_{IRQSTATUS,IRQENABLE}_MPU register pair. (So OMAP3 will have
51 * one "chip" and OMAP4 will have two.)
53 static struct irq_chip_generic
**prcm_irq_chips
;
56 * prcm_irq_setup: the PRCM IRQ parameters for the hardware the code
57 * is currently running on. Defined and passed by initialization code
58 * that calls omap_prcm_register_chain_handler().
60 static struct omap_prcm_irq_setup
*prcm_irq_setup
;
62 /* prm_base: base virtual address of the PRM IP block */
63 void __iomem
*prm_base
;
68 * prm_ll_data: function pointers to SoC-specific implementations of
69 * common PRM functions
71 static struct prm_ll_data null_prm_ll_data
;
72 static struct prm_ll_data
*prm_ll_data
= &null_prm_ll_data
;
74 /* Private functions */
77 * Move priority events from events to priority_events array
79 static void omap_prcm_events_filter_priority(unsigned long *events
,
80 unsigned long *priority_events
)
84 for (i
= 0; i
< prcm_irq_setup
->nr_regs
; i
++) {
86 events
[i
] & prcm_irq_setup
->priority_mask
[i
];
87 events
[i
] ^= priority_events
[i
];
92 * PRCM Interrupt Handler
94 * This is a common handler for the OMAP PRCM interrupts. Pending
95 * interrupts are detected by a call to prcm_pending_events and
96 * dispatched accordingly. Clearing of the wakeup events should be
97 * done by the SoC specific individual handlers.
99 static void omap_prcm_irq_handler(unsigned int irq
, struct irq_desc
*desc
)
101 unsigned long pending
[OMAP_PRCM_MAX_NR_PENDING_REG
];
102 unsigned long priority_pending
[OMAP_PRCM_MAX_NR_PENDING_REG
];
103 struct irq_chip
*chip
= irq_desc_get_chip(desc
);
104 unsigned int virtirq
;
105 int nr_irq
= prcm_irq_setup
->nr_regs
* 32;
108 * If we are suspended, mask all interrupts from PRCM level,
109 * this does not ack them, and they will be pending until we
110 * re-enable the interrupts, at which point the
111 * omap_prcm_irq_handler will be executed again. The
112 * _save_and_clear_irqen() function must ensure that the PRM
113 * write to disable all IRQs has reached the PRM before
114 * returning, or spurious PRCM interrupts may occur during
117 if (prcm_irq_setup
->suspended
) {
118 prcm_irq_setup
->save_and_clear_irqen(prcm_irq_setup
->saved_mask
);
119 prcm_irq_setup
->suspend_save_flag
= true;
123 * Loop until all pending irqs are handled, since
124 * generic_handle_irq() can cause new irqs to come
126 while (!prcm_irq_setup
->suspended
) {
127 prcm_irq_setup
->read_pending_irqs(pending
);
129 /* No bit set, then all IRQs are handled */
130 if (find_first_bit(pending
, nr_irq
) >= nr_irq
)
133 omap_prcm_events_filter_priority(pending
, priority_pending
);
136 * Loop on all currently pending irqs so that new irqs
137 * cannot starve previously pending irqs
140 /* Serve priority events first */
141 for_each_set_bit(virtirq
, priority_pending
, nr_irq
)
142 generic_handle_irq(prcm_irq_setup
->base_irq
+ virtirq
);
144 /* Serve normal events next */
145 for_each_set_bit(virtirq
, pending
, nr_irq
)
146 generic_handle_irq(prcm_irq_setup
->base_irq
+ virtirq
);
149 chip
->irq_ack(&desc
->irq_data
);
151 chip
->irq_eoi(&desc
->irq_data
);
152 chip
->irq_unmask(&desc
->irq_data
);
154 prcm_irq_setup
->ocp_barrier(); /* avoid spurious IRQs */
157 /* Public functions */
160 * omap_prcm_event_to_irq - given a PRCM event name, returns the
161 * corresponding IRQ on which the handler should be registered
162 * @name: name of the PRCM interrupt bit to look up - see struct omap_prcm_irq
164 * Returns the Linux internal IRQ ID corresponding to @name upon success,
165 * or -ENOENT upon failure.
167 int omap_prcm_event_to_irq(const char *name
)
171 if (!prcm_irq_setup
|| !name
)
174 for (i
= 0; i
< prcm_irq_setup
->nr_irqs
; i
++)
175 if (!strcmp(prcm_irq_setup
->irqs
[i
].name
, name
))
176 return prcm_irq_setup
->base_irq
+
177 prcm_irq_setup
->irqs
[i
].offset
;
183 * omap_prcm_irq_cleanup - reverses memory allocated and other steps
184 * done by omap_prcm_register_chain_handler()
188 void omap_prcm_irq_cleanup(void)
192 if (!prcm_irq_setup
) {
193 pr_err("PRCM: IRQ handler not initialized; cannot cleanup\n");
197 if (prcm_irq_chips
) {
198 for (i
= 0; i
< prcm_irq_setup
->nr_regs
; i
++) {
199 if (prcm_irq_chips
[i
])
200 irq_remove_generic_chip(prcm_irq_chips
[i
],
202 prcm_irq_chips
[i
] = NULL
;
204 kfree(prcm_irq_chips
);
205 prcm_irq_chips
= NULL
;
208 kfree(prcm_irq_setup
->saved_mask
);
209 prcm_irq_setup
->saved_mask
= NULL
;
211 kfree(prcm_irq_setup
->priority_mask
);
212 prcm_irq_setup
->priority_mask
= NULL
;
214 irq_set_chained_handler(prcm_irq_setup
->irq
, NULL
);
216 if (prcm_irq_setup
->base_irq
> 0)
217 irq_free_descs(prcm_irq_setup
->base_irq
,
218 prcm_irq_setup
->nr_regs
* 32);
219 prcm_irq_setup
->base_irq
= 0;
222 void omap_prcm_irq_prepare(void)
224 prcm_irq_setup
->suspended
= true;
227 void omap_prcm_irq_complete(void)
229 prcm_irq_setup
->suspended
= false;
231 /* If we have not saved the masks, do not attempt to restore */
232 if (!prcm_irq_setup
->suspend_save_flag
)
235 prcm_irq_setup
->suspend_save_flag
= false;
238 * Re-enable all masked PRCM irq sources, this causes the PRCM
239 * interrupt to fire immediately if the events were masked
240 * previously in the chain handler
242 prcm_irq_setup
->restore_irqen(prcm_irq_setup
->saved_mask
);
246 * omap_prcm_register_chain_handler - initializes the prcm chained interrupt
247 * handler based on provided parameters
248 * @irq_setup: hardware data about the underlying PRM/PRCM
250 * Set up the PRCM chained interrupt handler on the PRCM IRQ. Sets up
251 * one generic IRQ chip per PRM interrupt status/enable register pair.
252 * Returns 0 upon success, -EINVAL if called twice or if invalid
253 * arguments are passed, or -ENOMEM on any other error.
255 int omap_prcm_register_chain_handler(struct omap_prcm_irq_setup
*irq_setup
)
258 u32 mask
[OMAP_PRCM_MAX_NR_PENDING_REG
];
260 struct irq_chip_generic
*gc
;
261 struct irq_chip_type
*ct
;
266 nr_regs
= irq_setup
->nr_regs
;
268 if (prcm_irq_setup
) {
269 pr_err("PRCM: already initialized; won't reinitialize\n");
273 if (nr_regs
> OMAP_PRCM_MAX_NR_PENDING_REG
) {
274 pr_err("PRCM: nr_regs too large\n");
278 prcm_irq_setup
= irq_setup
;
280 prcm_irq_chips
= kzalloc(sizeof(void *) * nr_regs
, GFP_KERNEL
);
281 prcm_irq_setup
->saved_mask
= kzalloc(sizeof(u32
) * nr_regs
, GFP_KERNEL
);
282 prcm_irq_setup
->priority_mask
= kzalloc(sizeof(u32
) * nr_regs
,
285 if (!prcm_irq_chips
|| !prcm_irq_setup
->saved_mask
||
286 !prcm_irq_setup
->priority_mask
) {
287 pr_err("PRCM: kzalloc failed\n");
291 memset(mask
, 0, sizeof(mask
));
293 for (i
= 0; i
< irq_setup
->nr_irqs
; i
++) {
294 offset
= irq_setup
->irqs
[i
].offset
;
295 mask
[offset
>> 5] |= 1 << (offset
& 0x1f);
296 if (irq_setup
->irqs
[i
].priority
)
297 irq_setup
->priority_mask
[offset
>> 5] |=
298 1 << (offset
& 0x1f);
301 irq_set_chained_handler(irq_setup
->irq
, omap_prcm_irq_handler
);
303 irq_setup
->base_irq
= irq_alloc_descs(-1, 0, irq_setup
->nr_regs
* 32,
306 if (irq_setup
->base_irq
< 0) {
307 pr_err("PRCM: failed to allocate irq descs: %d\n",
308 irq_setup
->base_irq
);
312 for (i
= 0; i
< irq_setup
->nr_regs
; i
++) {
313 gc
= irq_alloc_generic_chip("PRCM", 1,
314 irq_setup
->base_irq
+ i
* 32, prm_base
,
318 pr_err("PRCM: failed to allocate generic chip\n");
322 ct
->chip
.irq_ack
= irq_gc_ack_set_bit
;
323 ct
->chip
.irq_mask
= irq_gc_mask_clr_bit
;
324 ct
->chip
.irq_unmask
= irq_gc_mask_set_bit
;
326 ct
->regs
.ack
= irq_setup
->ack
+ i
* 4;
327 ct
->regs
.mask
= irq_setup
->mask
+ i
* 4;
329 irq_setup_generic_chip(gc
, mask
[i
], 0, IRQ_NOREQUEST
, 0);
330 prcm_irq_chips
[i
] = gc
;
333 if (of_have_populated_dt()) {
334 int irq
= omap_prcm_event_to_irq("io");
335 omap_pcs_legacy_init(irq
, irq_setup
->reconfigure_io_chain
);
341 omap_prcm_irq_cleanup();
346 * omap2_set_globals_prm - set the PRM base address (for early use)
347 * @prm: PRM base virtual address
349 * XXX Will be replaced when the PRM/CM drivers are completed.
351 void __init
omap2_set_globals_prm(void __iomem
*prm
)
357 * prm_read_reset_sources - return the sources of the SoC's last reset
359 * Return a u32 bitmask representing the reset sources that caused the
360 * SoC to reset. The low-level per-SoC functions called by this
361 * function remap the SoC-specific reset source bits into an
362 * OMAP-common set of reset source bits, defined in
363 * arch/arm/mach-omap2/prm.h. Returns the standardized reset source
364 * u32 bitmask from the hardware upon success, or returns (1 <<
365 * OMAP_UNKNOWN_RST_SRC_ID_SHIFT) if no low-level read_reset_sources()
366 * function was registered.
368 u32
prm_read_reset_sources(void)
370 u32 ret
= 1 << OMAP_UNKNOWN_RST_SRC_ID_SHIFT
;
372 if (prm_ll_data
->read_reset_sources
)
373 ret
= prm_ll_data
->read_reset_sources();
375 WARN_ONCE(1, "prm: %s: no mapping function defined for reset sources\n", __func__
);
381 * prm_was_any_context_lost_old - was device context lost? (old API)
382 * @part: PRM partition ID (e.g., OMAP4430_PRM_PARTITION)
383 * @inst: PRM instance offset (e.g., OMAP4430_PRM_MPU_INST)
384 * @idx: CONTEXT register offset
386 * Return 1 if any bits were set in the *_CONTEXT_* register
387 * identified by (@part, @inst, @idx), which means that some context
388 * was lost for that module; otherwise, return 0. XXX Deprecated;
389 * callers need to use a less-SoC-dependent way to identify hardware
392 bool prm_was_any_context_lost_old(u8 part
, s16 inst
, u16 idx
)
396 if (prm_ll_data
->was_any_context_lost_old
)
397 ret
= prm_ll_data
->was_any_context_lost_old(part
, inst
, idx
);
399 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
406 * prm_clear_context_lost_flags_old - clear context loss flags (old API)
407 * @part: PRM partition ID (e.g., OMAP4430_PRM_PARTITION)
408 * @inst: PRM instance offset (e.g., OMAP4430_PRM_MPU_INST)
409 * @idx: CONTEXT register offset
411 * Clear hardware context loss bits for the module identified by
412 * (@part, @inst, @idx). No return value. XXX Deprecated; callers
413 * need to use a less-SoC-dependent way to identify hardware IP
416 void prm_clear_context_loss_flags_old(u8 part
, s16 inst
, u16 idx
)
418 if (prm_ll_data
->clear_context_loss_flags_old
)
419 prm_ll_data
->clear_context_loss_flags_old(part
, inst
, idx
);
421 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
426 * prm_register - register per-SoC low-level data with the PRM
427 * @pld: low-level per-SoC OMAP PRM data & function pointers to register
429 * Register per-SoC low-level OMAP PRM data and function pointers with
430 * the OMAP PRM common interface. The caller must keep the data
431 * pointed to by @pld valid until it calls prm_unregister() and
432 * it returns successfully. Returns 0 upon success, -EINVAL if @pld
433 * is NULL, or -EEXIST if prm_register() has already been called
434 * without an intervening prm_unregister().
436 int prm_register(struct prm_ll_data
*pld
)
441 if (prm_ll_data
!= &null_prm_ll_data
)
450 * prm_unregister - unregister per-SoC low-level data & function pointers
451 * @pld: low-level per-SoC OMAP PRM data & function pointers to unregister
453 * Unregister per-SoC low-level OMAP PRM data and function pointers
454 * that were previously registered with prm_register(). The
455 * caller may not destroy any of the data pointed to by @pld until
456 * this function returns successfully. Returns 0 upon success, or
457 * -EINVAL if @pld is NULL or if @pld does not match the struct
458 * prm_ll_data * previously registered by prm_register().
460 int prm_unregister(struct prm_ll_data
*pld
)
462 if (!pld
|| prm_ll_data
!= pld
)
465 prm_ll_data
= &null_prm_ll_data
;
470 static struct of_device_id omap_prcm_dt_match_table
[] = {
471 { .compatible
= "ti,am3-prcm" },
472 { .compatible
= "ti,am3-scrm" },
473 { .compatible
= "ti,am4-prcm" },
474 { .compatible
= "ti,am4-scrm" },
475 { .compatible
= "ti,omap3-prm" },
476 { .compatible
= "ti,omap3-cm" },
477 { .compatible
= "ti,omap3-scrm" },
478 { .compatible
= "ti,omap4-cm1" },
479 { .compatible
= "ti,omap4-prm" },
480 { .compatible
= "ti,omap4-cm2" },
481 { .compatible
= "ti,omap4-scrm" },
482 { .compatible
= "ti,omap5-prm" },
483 { .compatible
= "ti,omap5-cm-core-aon" },
484 { .compatible
= "ti,omap5-scrm" },
485 { .compatible
= "ti,omap5-cm-core" },
486 { .compatible
= "ti,dra7-prm" },
487 { .compatible
= "ti,dra7-cm-core-aon" },
488 { .compatible
= "ti,dra7-cm-core" },
492 static struct clk_hw_omap memmap_dummy_ck
= {
493 .flags
= MEMMAP_ADDRESSING
,
496 static u32
prm_clk_readl(void __iomem
*reg
)
498 return omap2_clk_readl(&memmap_dummy_ck
, reg
);
501 static void prm_clk_writel(u32 val
, void __iomem
*reg
)
503 omap2_clk_writel(val
, &memmap_dummy_ck
, reg
);
506 static struct ti_clk_ll_ops omap_clk_ll_ops
= {
507 .clk_readl
= prm_clk_readl
,
508 .clk_writel
= prm_clk_writel
,
511 int __init
of_prcm_init(void)
513 struct device_node
*np
;
515 int memmap_index
= 0;
517 ti_clk_ll_ops
= &omap_clk_ll_ops
;
519 for_each_matching_node(np
, omap_prcm_dt_match_table
) {
520 mem
= of_iomap(np
, 0);
521 clk_memmaps
[memmap_index
] = mem
;
522 ti_dt_clk_init_provider(np
, memmap_index
);
526 ti_dt_clockdomains_setup();
531 static int __init
prm_late_init(void)
533 if (prm_ll_data
->late_init
)
534 return prm_ll_data
->late_init();
537 subsys_initcall(prm_late_init
);