1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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>
26#include <linux/of.h>
27#include <linux/of_address.h>
28#include <linux/clk-provider.h>
29#include <linux/clk/ti.h>
30
31#include "soc.h"
32#include "prm2xxx_3xxx.h"
33#include "prm2xxx.h"
34#include "prm3xxx.h"
35#include "prm33xx.h"
36#include "prm44xx.h"
37#include "prm54xx.h"
38#include "prm7xx.h"
39#include "prcm43xx.h"
40#include "common.h"
41#include "clock.h"
42#include "cm.h"
43#include "control.h"
44
45
46
47
48
49
50
51#define OMAP_PRCM_MAX_NR_PENDING_REG 2
52
53
54
55
56
57
58
59static struct irq_chip_generic **prcm_irq_chips;
60
61
62
63
64
65
66static struct omap_prcm_irq_setup *prcm_irq_setup;
67
68
69void __iomem *prm_base;
70
71u16 prm_features;
72
73
74
75
76
77static struct prm_ll_data null_prm_ll_data;
78static struct prm_ll_data *prm_ll_data = &null_prm_ll_data;
79
80
81
82
83
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
99
100
101
102
103
104
105static void omap_prcm_irq_handler(struct irq_desc *desc)
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;
111 int nr_irq = prcm_irq_setup->nr_regs * 32;
112
113
114
115
116
117
118
119
120
121
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
128
129
130
131
132 while (!prcm_irq_setup->suspended) {
133 prcm_irq_setup->read_pending_irqs(pending);
134
135
136 if (find_first_bit(pending, nr_irq) >= nr_irq)
137 break;
138
139 omap_prcm_events_filter_priority(pending, priority_pending);
140
141
142
143
144
145
146
147 for_each_set_bit(virtirq, priority_pending, nr_irq)
148 generic_handle_irq(prcm_irq_setup->base_irq + virtirq);
149
150
151 for_each_set_bit(virtirq, pending, nr_irq)
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();
161}
162
163
164
165
166
167
168
169
170
171
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
190
191
192
193
194void omap_prcm_irq_cleanup(void)
195{
196 unsigned int irq;
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
215 kfree(prcm_irq_setup->saved_mask);
216 prcm_irq_setup->saved_mask = NULL;
217
218 kfree(prcm_irq_setup->priority_mask);
219 prcm_irq_setup->priority_mask = NULL;
220
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);
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
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
243 if (!prcm_irq_setup->suspend_save_flag)
244 return;
245
246 prcm_irq_setup->suspend_save_flag = false;
247
248
249
250
251
252
253 prcm_irq_setup->restore_irqen(prcm_irq_setup->saved_mask);
254}
255
256
257
258
259
260
261
262
263
264
265
266int omap_prcm_register_chain_handler(struct omap_prcm_irq_setup *irq_setup)
267{
268 int nr_regs;
269 u32 mask[OMAP_PRCM_MAX_NR_PENDING_REG];
270 int offset, i;
271 struct irq_chip_generic *gc;
272 struct irq_chip_type *ct;
273 unsigned int irq;
274
275 if (!irq_setup)
276 return -EINVAL;
277
278 nr_regs = irq_setup->nr_regs;
279
280 if (prcm_irq_setup) {
281 pr_err("PRCM: already initialized; won't reinitialize\n");
282 return -EINVAL;
283 }
284
285 if (nr_regs > OMAP_PRCM_MAX_NR_PENDING_REG) {
286 pr_err("PRCM: nr_regs too large\n");
287 return -EINVAL;
288 }
289
290 prcm_irq_setup = irq_setup;
291
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,
295 GFP_KERNEL);
296
297 if (!prcm_irq_chips || !prcm_irq_setup->saved_mask ||
298 !prcm_irq_setup->priority_mask)
299 goto err;
300
301 memset(mask, 0, sizeof(mask));
302
303 for (i = 0; i < irq_setup->nr_irqs; i++) {
304 offset = irq_setup->irqs[i].offset;
305 mask[offset >> 5] |= 1 << (offset & 0x1f);
306 if (irq_setup->irqs[i].priority)
307 irq_setup->priority_mask[offset >> 5] |=
308 1 << (offset & 0x1f);
309 }
310
311 if (irq_setup->xlate_irq)
312 irq = irq_setup->xlate_irq(irq_setup->irq);
313 else
314 irq = irq_setup->irq;
315 irq_set_chained_handler(irq, omap_prcm_irq_handler);
316
317 irq_setup->base_irq = irq_alloc_descs(-1, 0, irq_setup->nr_regs * 32,
318 0);
319
320 if (irq_setup->base_irq < 0) {
321 pr_err("PRCM: failed to allocate irq descs: %d\n",
322 irq_setup->base_irq);
323 goto err;
324 }
325
326 for (i = 0; i < irq_setup->nr_regs; i++) {
327 gc = irq_alloc_generic_chip("PRCM", 1,
328 irq_setup->base_irq + i * 32, prm_base,
329 handle_level_irq);
330
331 if (!gc) {
332 pr_err("PRCM: failed to allocate generic chip\n");
333 goto err;
334 }
335 ct = gc->chip_types;
336 ct->chip.irq_ack = irq_gc_ack_set_bit;
337 ct->chip.irq_mask = irq_gc_mask_clr_bit;
338 ct->chip.irq_unmask = irq_gc_mask_set_bit;
339
340 ct->regs.ack = irq_setup->ack + i * 4;
341 ct->regs.mask = irq_setup->mask + i * 4;
342
343 irq_setup_generic_chip(gc, mask[i], 0, IRQ_NOREQUEST, 0);
344 prcm_irq_chips[i] = gc;
345 }
346
347 if (of_have_populated_dt()) {
348 int irq = omap_prcm_event_to_irq("io");
349 omap_pcs_legacy_init(irq, irq_setup->reconfigure_io_chain);
350 }
351
352 return 0;
353
354err:
355 omap_prcm_irq_cleanup();
356 return -ENOMEM;
357}
358
359
360
361
362
363
364
365void __init omap2_set_globals_prm(void __iomem *prm)
366{
367 prm_base = prm;
368}
369
370
371
372
373
374
375
376
377
378
379
380
381
382u32 prm_read_reset_sources(void)
383{
384 u32 ret = 1 << OMAP_UNKNOWN_RST_SRC_ID_SHIFT;
385
386 if (prm_ll_data->read_reset_sources)
387 ret = prm_ll_data->read_reset_sources();
388 else
389 WARN_ONCE(1, "prm: %s: no mapping function defined for reset sources\n", __func__);
390
391 return ret;
392}
393
394
395
396
397
398
399
400
401
402
403
404
405
406bool prm_was_any_context_lost_old(u8 part, s16 inst, u16 idx)
407{
408 bool ret = true;
409
410 if (prm_ll_data->was_any_context_lost_old)
411 ret = prm_ll_data->was_any_context_lost_old(part, inst, idx);
412 else
413 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
414 __func__);
415
416 return ret;
417}
418
419
420
421
422
423
424
425
426
427
428
429
430void prm_clear_context_loss_flags_old(u8 part, s16 inst, u16 idx)
431{
432 if (prm_ll_data->clear_context_loss_flags_old)
433 prm_ll_data->clear_context_loss_flags_old(part, inst, idx);
434 else
435 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
436 __func__);
437}
438
439
440
441
442
443
444
445
446
447
448int omap_prm_assert_hardreset(u8 shift, u8 part, s16 prm_mod, u16 offset)
449{
450 if (!prm_ll_data->assert_hardreset) {
451 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
452 __func__);
453 return -EINVAL;
454 }
455
456 return prm_ll_data->assert_hardreset(shift, part, prm_mod, offset);
457}
458
459
460
461
462
463
464
465
466
467
468
469
470int omap_prm_deassert_hardreset(u8 shift, u8 st_shift, u8 part, s16 prm_mod,
471 u16 offset, u16 st_offset)
472{
473 if (!prm_ll_data->deassert_hardreset) {
474 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
475 __func__);
476 return -EINVAL;
477 }
478
479 return prm_ll_data->deassert_hardreset(shift, st_shift, part, prm_mod,
480 offset, st_offset);
481}
482
483
484
485
486
487
488
489
490
491
492int omap_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset)
493{
494 if (!prm_ll_data->is_hardreset_asserted) {
495 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
496 __func__);
497 return -EINVAL;
498 }
499
500 return prm_ll_data->is_hardreset_asserted(shift, part, prm_mod, offset);
501}
502
503
504
505
506
507
508
509
510
511void omap_prm_reconfigure_io_chain(void)
512{
513 if (!prcm_irq_setup || !prcm_irq_setup->reconfigure_io_chain)
514 return;
515
516 prcm_irq_setup->reconfigure_io_chain();
517}
518
519
520
521
522
523
524void omap_prm_reset_system(void)
525{
526 if (!prm_ll_data->reset_system) {
527 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
528 __func__);
529 return;
530 }
531
532 prm_ll_data->reset_system();
533
534 while (1)
535 cpu_relax();
536}
537
538
539
540
541
542
543
544
545
546
547
548int omap_prm_clear_mod_irqs(s16 module, u8 regs, u32 wkst_mask)
549{
550 if (!prm_ll_data->clear_mod_irqs) {
551 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
552 __func__);
553 return -EINVAL;
554 }
555
556 return prm_ll_data->clear_mod_irqs(module, regs, wkst_mask);
557}
558
559
560
561
562
563
564
565u32 omap_prm_vp_check_txdone(u8 vp_id)
566{
567 if (!prm_ll_data->vp_check_txdone) {
568 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
569 __func__);
570 return 0;
571 }
572
573 return prm_ll_data->vp_check_txdone(vp_id);
574}
575
576
577
578
579
580
581
582void omap_prm_vp_clear_txdone(u8 vp_id)
583{
584 if (!prm_ll_data->vp_clear_txdone) {
585 WARN_ONCE(1, "prm: %s: no mapping function defined\n",
586 __func__);
587 return;
588 }
589
590 prm_ll_data->vp_clear_txdone(vp_id);
591}
592
593
594
595
596
597
598
599
600
601
602
603
604int prm_register(struct prm_ll_data *pld)
605{
606 if (!pld)
607 return -EINVAL;
608
609 if (prm_ll_data != &null_prm_ll_data)
610 return -EEXIST;
611
612 prm_ll_data = pld;
613
614 return 0;
615}
616
617
618
619
620
621
622
623
624
625
626
627
628int prm_unregister(struct prm_ll_data *pld)
629{
630 if (!pld || prm_ll_data != pld)
631 return -EINVAL;
632
633 prm_ll_data = &null_prm_ll_data;
634
635 return 0;
636}
637
638#ifdef CONFIG_ARCH_OMAP2
639static struct omap_prcm_init_data omap2_prm_data __initdata = {
640 .index = TI_CLKM_PRM,
641 .init = omap2xxx_prm_init,
642};
643#endif
644
645#ifdef CONFIG_ARCH_OMAP3
646static struct omap_prcm_init_data omap3_prm_data __initdata = {
647 .index = TI_CLKM_PRM,
648 .init = omap3xxx_prm_init,
649
650
651
652
653
654 .offset = -OMAP3430_IVA2_MOD,
655};
656#endif
657
658#if defined(CONFIG_SOC_AM33XX) || defined(CONFIG_SOC_TI81XX)
659static struct omap_prcm_init_data am3_prm_data __initdata = {
660 .index = TI_CLKM_PRM,
661 .init = am33xx_prm_init,
662};
663#endif
664
665#ifdef CONFIG_SOC_TI81XX
666static struct omap_prcm_init_data dm814_pllss_data __initdata = {
667 .index = TI_CLKM_PLLSS,
668 .init = am33xx_prm_init,
669};
670#endif
671
672#ifdef CONFIG_ARCH_OMAP4
673static struct omap_prcm_init_data omap4_prm_data __initdata = {
674 .index = TI_CLKM_PRM,
675 .init = omap44xx_prm_init,
676 .device_inst_offset = OMAP4430_PRM_DEVICE_INST,
677 .flags = PRM_HAS_IO_WAKEUP | PRM_HAS_VOLTAGE | PRM_IRQ_DEFAULT,
678};
679#endif
680
681#ifdef CONFIG_SOC_OMAP5
682static struct omap_prcm_init_data omap5_prm_data __initdata = {
683 .index = TI_CLKM_PRM,
684 .init = omap44xx_prm_init,
685 .device_inst_offset = OMAP54XX_PRM_DEVICE_INST,
686 .flags = PRM_HAS_IO_WAKEUP | PRM_HAS_VOLTAGE,
687};
688#endif
689
690#ifdef CONFIG_SOC_DRA7XX
691static struct omap_prcm_init_data dra7_prm_data __initdata = {
692 .index = TI_CLKM_PRM,
693 .init = omap44xx_prm_init,
694 .device_inst_offset = DRA7XX_PRM_DEVICE_INST,
695 .flags = PRM_HAS_IO_WAKEUP,
696};
697#endif
698
699#ifdef CONFIG_SOC_AM43XX
700static struct omap_prcm_init_data am4_prm_data __initdata = {
701 .index = TI_CLKM_PRM,
702 .init = omap44xx_prm_init,
703 .device_inst_offset = AM43XX_PRM_DEVICE_INST,
704 .flags = PRM_HAS_IO_WAKEUP,
705};
706#endif
707
708#if defined(CONFIG_ARCH_OMAP4) || defined(CONFIG_SOC_OMAP5)
709static struct omap_prcm_init_data scrm_data __initdata = {
710 .index = TI_CLKM_SCRM,
711};
712#endif
713
714static const struct of_device_id const omap_prcm_dt_match_table[] __initconst = {
715#ifdef CONFIG_SOC_AM33XX
716 { .compatible = "ti,am3-prcm", .data = &am3_prm_data },
717#endif
718#ifdef CONFIG_SOC_AM43XX
719 { .compatible = "ti,am4-prcm", .data = &am4_prm_data },
720#endif
721#ifdef CONFIG_SOC_TI81XX
722 { .compatible = "ti,dm814-prcm", .data = &am3_prm_data },
723 { .compatible = "ti,dm814-pllss", .data = &dm814_pllss_data },
724 { .compatible = "ti,dm816-prcm", .data = &am3_prm_data },
725#endif
726#ifdef CONFIG_ARCH_OMAP2
727 { .compatible = "ti,omap2-prcm", .data = &omap2_prm_data },
728#endif
729#ifdef CONFIG_ARCH_OMAP3
730 { .compatible = "ti,omap3-prm", .data = &omap3_prm_data },
731#endif
732#ifdef CONFIG_ARCH_OMAP4
733 { .compatible = "ti,omap4-prm", .data = &omap4_prm_data },
734 { .compatible = "ti,omap4-scrm", .data = &scrm_data },
735#endif
736#ifdef CONFIG_SOC_OMAP5
737 { .compatible = "ti,omap5-prm", .data = &omap5_prm_data },
738 { .compatible = "ti,omap5-scrm", .data = &scrm_data },
739#endif
740#ifdef CONFIG_SOC_DRA7XX
741 { .compatible = "ti,dra7-prm", .data = &dra7_prm_data },
742#endif
743 { }
744};
745
746
747
748
749
750
751
752
753int __init omap2_prm_base_init(void)
754{
755 struct device_node *np;
756 const struct of_device_id *match;
757 struct omap_prcm_init_data *data;
758 void __iomem *mem;
759
760 for_each_matching_node_and_match(np, omap_prcm_dt_match_table, &match) {
761 data = (struct omap_prcm_init_data *)match->data;
762
763 mem = of_iomap(np, 0);
764 if (!mem)
765 return -ENOMEM;
766
767 if (data->index == TI_CLKM_PRM)
768 prm_base = mem + data->offset;
769
770 data->mem = mem;
771
772 data->np = np;
773
774 if (data->init)
775 data->init(data);
776 }
777
778 return 0;
779}
780
781int __init omap2_prcm_base_init(void)
782{
783 int ret;
784
785 ret = omap2_prm_base_init();
786 if (ret)
787 return ret;
788
789 return omap2_cm_base_init();
790}
791
792
793
794
795
796
797
798int __init omap_prcm_init(void)
799{
800 struct device_node *np;
801 const struct of_device_id *match;
802 const struct omap_prcm_init_data *data;
803 int ret;
804
805 for_each_matching_node_and_match(np, omap_prcm_dt_match_table, &match) {
806 data = match->data;
807
808 ret = omap2_clk_provider_init(np, data->index, NULL, data->mem);
809 if (ret)
810 return ret;
811 }
812
813 omap_cm_init();
814
815 return 0;
816}
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);
825