xref: /linux/arch/arm/mach-omap2/prm_common.c (revision 132754e483d55309ddd714a2c44580379e4ac55a)
10a84a91cSTero Kristo /*
20a84a91cSTero Kristo  * OMAP2+ common Power & Reset Management (PRM) IP block functions
30a84a91cSTero Kristo  *
40a84a91cSTero Kristo  * Copyright (C) 2011 Texas Instruments, Inc.
50a84a91cSTero Kristo  * Tero Kristo <t-kristo@ti.com>
60a84a91cSTero Kristo  *
70a84a91cSTero Kristo  * This program is free software; you can redistribute it and/or modify
80a84a91cSTero Kristo  * it under the terms of the GNU General Public License version 2 as
90a84a91cSTero Kristo  * published by the Free Software Foundation.
100a84a91cSTero Kristo  *
110a84a91cSTero Kristo  *
120a84a91cSTero Kristo  * For historical purposes, the API used to configure the PRM
130a84a91cSTero Kristo  * interrupt handler refers to it as the "PRCM interrupt."  The
140a84a91cSTero Kristo  * underlying registers are located in the PRM on OMAP3/4.
150a84a91cSTero Kristo  *
160a84a91cSTero Kristo  * XXX This code should eventually be moved to a PRM driver.
170a84a91cSTero Kristo  */
180a84a91cSTero Kristo 
190a84a91cSTero Kristo #include <linux/kernel.h>
200a84a91cSTero Kristo #include <linux/module.h>
210a84a91cSTero Kristo #include <linux/init.h>
220a84a91cSTero Kristo #include <linux/io.h>
230a84a91cSTero Kristo #include <linux/irq.h>
240a84a91cSTero Kristo #include <linux/interrupt.h>
250a84a91cSTero Kristo #include <linux/slab.h>
26943a63a4STero Kristo #include <linux/of.h>
27943a63a4STero Kristo #include <linux/of_address.h>
28943a63a4STero Kristo #include <linux/clk-provider.h>
29943a63a4STero Kristo #include <linux/clk/ti.h>
300a84a91cSTero Kristo 
3130a69ef7STony Lindgren #include "soc.h"
320a84a91cSTero Kristo #include "prm2xxx_3xxx.h"
332bb2a5d3SPaul Walmsley #include "prm2xxx.h"
342bb2a5d3SPaul Walmsley #include "prm3xxx.h"
350a84a91cSTero Kristo #include "prm44xx.h"
36d9a16f9aSPaul Walmsley #include "common.h"
37943a63a4STero Kristo #include "clock.h"
380a84a91cSTero Kristo 
390a84a91cSTero Kristo /*
400a84a91cSTero Kristo  * OMAP_PRCM_MAX_NR_PENDING_REG: maximum number of PRM_IRQ*_MPU regs
410a84a91cSTero Kristo  * XXX this is technically not needed, since
420a84a91cSTero Kristo  * omap_prcm_register_chain_handler() could allocate this based on the
430a84a91cSTero Kristo  * actual amount of memory needed for the SoC
440a84a91cSTero Kristo  */
450a84a91cSTero Kristo #define OMAP_PRCM_MAX_NR_PENDING_REG		2
460a84a91cSTero Kristo 
470a84a91cSTero Kristo /*
480a84a91cSTero Kristo  * prcm_irq_chips: an array of all of the "generic IRQ chips" in use
490a84a91cSTero Kristo  * by the PRCM interrupt handler code.  There will be one 'chip' per
500a84a91cSTero Kristo  * PRM_{IRQSTATUS,IRQENABLE}_MPU register pair.  (So OMAP3 will have
510a84a91cSTero Kristo  * one "chip" and OMAP4 will have two.)
520a84a91cSTero Kristo  */
530a84a91cSTero Kristo static struct irq_chip_generic **prcm_irq_chips;
540a84a91cSTero Kristo 
550a84a91cSTero Kristo /*
560a84a91cSTero Kristo  * prcm_irq_setup: the PRCM IRQ parameters for the hardware the code
570a84a91cSTero Kristo  * is currently running on.  Defined and passed by initialization code
580a84a91cSTero Kristo  * that calls omap_prcm_register_chain_handler().
590a84a91cSTero Kristo  */
600a84a91cSTero Kristo static struct omap_prcm_irq_setup *prcm_irq_setup;
610a84a91cSTero Kristo 
62d9a16f9aSPaul Walmsley /* prm_base: base virtual address of the PRM IP block */
63d9a16f9aSPaul Walmsley void __iomem *prm_base;
64d9a16f9aSPaul Walmsley 
652541d15fSTero Kristo u16 prm_features;
662541d15fSTero Kristo 
67e24c3573SPaul Walmsley /*
68e24c3573SPaul Walmsley  * prm_ll_data: function pointers to SoC-specific implementations of
69e24c3573SPaul Walmsley  * common PRM functions
70e24c3573SPaul Walmsley  */
71e24c3573SPaul Walmsley static struct prm_ll_data null_prm_ll_data;
72e24c3573SPaul Walmsley static struct prm_ll_data *prm_ll_data = &null_prm_ll_data;
73e24c3573SPaul Walmsley 
740a84a91cSTero Kristo /* Private functions */
750a84a91cSTero Kristo 
760a84a91cSTero Kristo /*
770a84a91cSTero Kristo  * Move priority events from events to priority_events array
780a84a91cSTero Kristo  */
790a84a91cSTero Kristo static void omap_prcm_events_filter_priority(unsigned long *events,
800a84a91cSTero Kristo 	unsigned long *priority_events)
810a84a91cSTero Kristo {
820a84a91cSTero Kristo 	int i;
830a84a91cSTero Kristo 
840a84a91cSTero Kristo 	for (i = 0; i < prcm_irq_setup->nr_regs; i++) {
850a84a91cSTero Kristo 		priority_events[i] =
860a84a91cSTero Kristo 			events[i] & prcm_irq_setup->priority_mask[i];
870a84a91cSTero Kristo 		events[i] ^= priority_events[i];
880a84a91cSTero Kristo 	}
890a84a91cSTero Kristo }
900a84a91cSTero Kristo 
910a84a91cSTero Kristo /*
920a84a91cSTero Kristo  * PRCM Interrupt Handler
930a84a91cSTero Kristo  *
940a84a91cSTero Kristo  * This is a common handler for the OMAP PRCM interrupts. Pending
950a84a91cSTero Kristo  * interrupts are detected by a call to prcm_pending_events and
960a84a91cSTero Kristo  * dispatched accordingly. Clearing of the wakeup events should be
970a84a91cSTero Kristo  * done by the SoC specific individual handlers.
980a84a91cSTero Kristo  */
990a84a91cSTero Kristo static void omap_prcm_irq_handler(unsigned int irq, struct irq_desc *desc)
1000a84a91cSTero Kristo {
1010a84a91cSTero Kristo 	unsigned long pending[OMAP_PRCM_MAX_NR_PENDING_REG];
1020a84a91cSTero Kristo 	unsigned long priority_pending[OMAP_PRCM_MAX_NR_PENDING_REG];
1030a84a91cSTero Kristo 	struct irq_chip *chip = irq_desc_get_chip(desc);
1040a84a91cSTero Kristo 	unsigned int virtirq;
105b56f2cb7SVenkatraman S 	int nr_irq = prcm_irq_setup->nr_regs * 32;
1060a84a91cSTero Kristo 
1070a84a91cSTero Kristo 	/*
10891285b6fSTero Kristo 	 * If we are suspended, mask all interrupts from PRCM level,
10991285b6fSTero Kristo 	 * this does not ack them, and they will be pending until we
11091285b6fSTero Kristo 	 * re-enable the interrupts, at which point the
11191285b6fSTero Kristo 	 * omap_prcm_irq_handler will be executed again.  The
11291285b6fSTero Kristo 	 * _save_and_clear_irqen() function must ensure that the PRM
11391285b6fSTero Kristo 	 * write to disable all IRQs has reached the PRM before
11491285b6fSTero Kristo 	 * returning, or spurious PRCM interrupts may occur during
11591285b6fSTero Kristo 	 * suspend.
11691285b6fSTero Kristo 	 */
11791285b6fSTero Kristo 	if (prcm_irq_setup->suspended) {
11891285b6fSTero Kristo 		prcm_irq_setup->save_and_clear_irqen(prcm_irq_setup->saved_mask);
11991285b6fSTero Kristo 		prcm_irq_setup->suspend_save_flag = true;
12091285b6fSTero Kristo 	}
12191285b6fSTero Kristo 
12291285b6fSTero Kristo 	/*
1230a84a91cSTero Kristo 	 * Loop until all pending irqs are handled, since
1240a84a91cSTero Kristo 	 * generic_handle_irq() can cause new irqs to come
1250a84a91cSTero Kristo 	 */
12691285b6fSTero Kristo 	while (!prcm_irq_setup->suspended) {
1270a84a91cSTero Kristo 		prcm_irq_setup->read_pending_irqs(pending);
1280a84a91cSTero Kristo 
1290a84a91cSTero Kristo 		/* No bit set, then all IRQs are handled */
130b56f2cb7SVenkatraman S 		if (find_first_bit(pending, nr_irq) >= nr_irq)
1310a84a91cSTero Kristo 			break;
1320a84a91cSTero Kristo 
1330a84a91cSTero Kristo 		omap_prcm_events_filter_priority(pending, priority_pending);
1340a84a91cSTero Kristo 
1350a84a91cSTero Kristo 		/*
1360a84a91cSTero Kristo 		 * Loop on all currently pending irqs so that new irqs
1370a84a91cSTero Kristo 		 * cannot starve previously pending irqs
1380a84a91cSTero Kristo 		 */
1390a84a91cSTero Kristo 
1400a84a91cSTero Kristo 		/* Serve priority events first */
141b56f2cb7SVenkatraman S 		for_each_set_bit(virtirq, priority_pending, nr_irq)
1420a84a91cSTero Kristo 			generic_handle_irq(prcm_irq_setup->base_irq + virtirq);
1430a84a91cSTero Kristo 
1440a84a91cSTero Kristo 		/* Serve normal events next */
145b56f2cb7SVenkatraman S 		for_each_set_bit(virtirq, pending, nr_irq)
1460a84a91cSTero Kristo 			generic_handle_irq(prcm_irq_setup->base_irq + virtirq);
1470a84a91cSTero Kristo 	}
1480a84a91cSTero Kristo 	if (chip->irq_ack)
1490a84a91cSTero Kristo 		chip->irq_ack(&desc->irq_data);
1500a84a91cSTero Kristo 	if (chip->irq_eoi)
1510a84a91cSTero Kristo 		chip->irq_eoi(&desc->irq_data);
1520a84a91cSTero Kristo 	chip->irq_unmask(&desc->irq_data);
1530a84a91cSTero Kristo 
1540a84a91cSTero Kristo 	prcm_irq_setup->ocp_barrier(); /* avoid spurious IRQs */
1550a84a91cSTero Kristo }
1560a84a91cSTero Kristo 
1570a84a91cSTero Kristo /* Public functions */
1580a84a91cSTero Kristo 
1590a84a91cSTero Kristo /**
1600a84a91cSTero Kristo  * omap_prcm_event_to_irq - given a PRCM event name, returns the
1610a84a91cSTero Kristo  * corresponding IRQ on which the handler should be registered
1620a84a91cSTero Kristo  * @name: name of the PRCM interrupt bit to look up - see struct omap_prcm_irq
1630a84a91cSTero Kristo  *
1640a84a91cSTero Kristo  * Returns the Linux internal IRQ ID corresponding to @name upon success,
1650a84a91cSTero Kristo  * or -ENOENT upon failure.
1660a84a91cSTero Kristo  */
1670a84a91cSTero Kristo int omap_prcm_event_to_irq(const char *name)
1680a84a91cSTero Kristo {
1690a84a91cSTero Kristo 	int i;
1700a84a91cSTero Kristo 
1710a84a91cSTero Kristo 	if (!prcm_irq_setup || !name)
1720a84a91cSTero Kristo 		return -ENOENT;
1730a84a91cSTero Kristo 
1740a84a91cSTero Kristo 	for (i = 0; i < prcm_irq_setup->nr_irqs; i++)
1750a84a91cSTero Kristo 		if (!strcmp(prcm_irq_setup->irqs[i].name, name))
1760a84a91cSTero Kristo 			return prcm_irq_setup->base_irq +
1770a84a91cSTero Kristo 				prcm_irq_setup->irqs[i].offset;
1780a84a91cSTero Kristo 
1790a84a91cSTero Kristo 	return -ENOENT;
1800a84a91cSTero Kristo }
1810a84a91cSTero Kristo 
1820a84a91cSTero Kristo /**
1830a84a91cSTero Kristo  * omap_prcm_irq_cleanup - reverses memory allocated and other steps
1840a84a91cSTero Kristo  * done by omap_prcm_register_chain_handler()
1850a84a91cSTero Kristo  *
1860a84a91cSTero Kristo  * No return value.
1870a84a91cSTero Kristo  */
1880a84a91cSTero Kristo void omap_prcm_irq_cleanup(void)
1890a84a91cSTero Kristo {
1900a84a91cSTero Kristo 	int i;
1910a84a91cSTero Kristo 
1920a84a91cSTero Kristo 	if (!prcm_irq_setup) {
1930a84a91cSTero Kristo 		pr_err("PRCM: IRQ handler not initialized; cannot cleanup\n");
1940a84a91cSTero Kristo 		return;
1950a84a91cSTero Kristo 	}
1960a84a91cSTero Kristo 
1970a84a91cSTero Kristo 	if (prcm_irq_chips) {
1980a84a91cSTero Kristo 		for (i = 0; i < prcm_irq_setup->nr_regs; i++) {
1990a84a91cSTero Kristo 			if (prcm_irq_chips[i])
2000a84a91cSTero Kristo 				irq_remove_generic_chip(prcm_irq_chips[i],
2010a84a91cSTero Kristo 					0xffffffff, 0, 0);
2020a84a91cSTero Kristo 			prcm_irq_chips[i] = NULL;
2030a84a91cSTero Kristo 		}
2040a84a91cSTero Kristo 		kfree(prcm_irq_chips);
2050a84a91cSTero Kristo 		prcm_irq_chips = NULL;
2060a84a91cSTero Kristo 	}
2070a84a91cSTero Kristo 
20891285b6fSTero Kristo 	kfree(prcm_irq_setup->saved_mask);
20991285b6fSTero Kristo 	prcm_irq_setup->saved_mask = NULL;
21091285b6fSTero Kristo 
2110a84a91cSTero Kristo 	kfree(prcm_irq_setup->priority_mask);
2120a84a91cSTero Kristo 	prcm_irq_setup->priority_mask = NULL;
2130a84a91cSTero Kristo 
2140a84a91cSTero Kristo 	irq_set_chained_handler(prcm_irq_setup->irq, NULL);
2150a84a91cSTero Kristo 
2160a84a91cSTero Kristo 	if (prcm_irq_setup->base_irq > 0)
2170a84a91cSTero Kristo 		irq_free_descs(prcm_irq_setup->base_irq,
2180a84a91cSTero Kristo 			prcm_irq_setup->nr_regs * 32);
2190a84a91cSTero Kristo 	prcm_irq_setup->base_irq = 0;
2200a84a91cSTero Kristo }
2210a84a91cSTero Kristo 
22291285b6fSTero Kristo void omap_prcm_irq_prepare(void)
22391285b6fSTero Kristo {
22491285b6fSTero Kristo 	prcm_irq_setup->suspended = true;
22591285b6fSTero Kristo }
22691285b6fSTero Kristo 
22791285b6fSTero Kristo void omap_prcm_irq_complete(void)
22891285b6fSTero Kristo {
22991285b6fSTero Kristo 	prcm_irq_setup->suspended = false;
23091285b6fSTero Kristo 
23191285b6fSTero Kristo 	/* If we have not saved the masks, do not attempt to restore */
23291285b6fSTero Kristo 	if (!prcm_irq_setup->suspend_save_flag)
23391285b6fSTero Kristo 		return;
23491285b6fSTero Kristo 
23591285b6fSTero Kristo 	prcm_irq_setup->suspend_save_flag = false;
23691285b6fSTero Kristo 
23791285b6fSTero Kristo 	/*
23891285b6fSTero Kristo 	 * Re-enable all masked PRCM irq sources, this causes the PRCM
23991285b6fSTero Kristo 	 * interrupt to fire immediately if the events were masked
24091285b6fSTero Kristo 	 * previously in the chain handler
24191285b6fSTero Kristo 	 */
24291285b6fSTero Kristo 	prcm_irq_setup->restore_irqen(prcm_irq_setup->saved_mask);
24391285b6fSTero Kristo }
24491285b6fSTero Kristo 
2450a84a91cSTero Kristo /**
2460a84a91cSTero Kristo  * omap_prcm_register_chain_handler - initializes the prcm chained interrupt
2470a84a91cSTero Kristo  * handler based on provided parameters
2480a84a91cSTero Kristo  * @irq_setup: hardware data about the underlying PRM/PRCM
2490a84a91cSTero Kristo  *
2500a84a91cSTero Kristo  * Set up the PRCM chained interrupt handler on the PRCM IRQ.  Sets up
2510a84a91cSTero Kristo  * one generic IRQ chip per PRM interrupt status/enable register pair.
2520a84a91cSTero Kristo  * Returns 0 upon success, -EINVAL if called twice or if invalid
2530a84a91cSTero Kristo  * arguments are passed, or -ENOMEM on any other error.
2540a84a91cSTero Kristo  */
2550a84a91cSTero Kristo int omap_prcm_register_chain_handler(struct omap_prcm_irq_setup *irq_setup)
2560a84a91cSTero Kristo {
257eeb3711bSPaul Walmsley 	int nr_regs;
2580a84a91cSTero Kristo 	u32 mask[OMAP_PRCM_MAX_NR_PENDING_REG];
2590a84a91cSTero Kristo 	int offset, i;
2600a84a91cSTero Kristo 	struct irq_chip_generic *gc;
2610a84a91cSTero Kristo 	struct irq_chip_type *ct;
2620a84a91cSTero Kristo 
2630a84a91cSTero Kristo 	if (!irq_setup)
2640a84a91cSTero Kristo 		return -EINVAL;
2650a84a91cSTero Kristo 
266eeb3711bSPaul Walmsley 	nr_regs = irq_setup->nr_regs;
267eeb3711bSPaul Walmsley 
2680a84a91cSTero Kristo 	if (prcm_irq_setup) {
2690a84a91cSTero Kristo 		pr_err("PRCM: already initialized; won't reinitialize\n");
2700a84a91cSTero Kristo 		return -EINVAL;
2710a84a91cSTero Kristo 	}
2720a84a91cSTero Kristo 
2730a84a91cSTero Kristo 	if (nr_regs > OMAP_PRCM_MAX_NR_PENDING_REG) {
2740a84a91cSTero Kristo 		pr_err("PRCM: nr_regs too large\n");
2750a84a91cSTero Kristo 		return -EINVAL;
2760a84a91cSTero Kristo 	}
2770a84a91cSTero Kristo 
2780a84a91cSTero Kristo 	prcm_irq_setup = irq_setup;
2790a84a91cSTero Kristo 
2800a84a91cSTero Kristo 	prcm_irq_chips = kzalloc(sizeof(void *) * nr_regs, GFP_KERNEL);
28191285b6fSTero Kristo 	prcm_irq_setup->saved_mask = kzalloc(sizeof(u32) * nr_regs, GFP_KERNEL);
2820a84a91cSTero Kristo 	prcm_irq_setup->priority_mask = kzalloc(sizeof(u32) * nr_regs,
2830a84a91cSTero Kristo 		GFP_KERNEL);
2840a84a91cSTero Kristo 
28591285b6fSTero Kristo 	if (!prcm_irq_chips || !prcm_irq_setup->saved_mask ||
28691285b6fSTero Kristo 	    !prcm_irq_setup->priority_mask) {
2870a84a91cSTero Kristo 		pr_err("PRCM: kzalloc failed\n");
2880a84a91cSTero Kristo 		goto err;
2890a84a91cSTero Kristo 	}
2900a84a91cSTero Kristo 
2910a84a91cSTero Kristo 	memset(mask, 0, sizeof(mask));
2920a84a91cSTero Kristo 
2930a84a91cSTero Kristo 	for (i = 0; i < irq_setup->nr_irqs; i++) {
2940a84a91cSTero Kristo 		offset = irq_setup->irqs[i].offset;
2950a84a91cSTero Kristo 		mask[offset >> 5] |= 1 << (offset & 0x1f);
2960a84a91cSTero Kristo 		if (irq_setup->irqs[i].priority)
2970a84a91cSTero Kristo 			irq_setup->priority_mask[offset >> 5] |=
2980a84a91cSTero Kristo 				1 << (offset & 0x1f);
2990a84a91cSTero Kristo 	}
3000a84a91cSTero Kristo 
3010a84a91cSTero Kristo 	irq_set_chained_handler(irq_setup->irq, omap_prcm_irq_handler);
3020a84a91cSTero Kristo 
3030a84a91cSTero Kristo 	irq_setup->base_irq = irq_alloc_descs(-1, 0, irq_setup->nr_regs * 32,
3040a84a91cSTero Kristo 		0);
3050a84a91cSTero Kristo 
3060a84a91cSTero Kristo 	if (irq_setup->base_irq < 0) {
3070a84a91cSTero Kristo 		pr_err("PRCM: failed to allocate irq descs: %d\n",
3080a84a91cSTero Kristo 			irq_setup->base_irq);
3090a84a91cSTero Kristo 		goto err;
3100a84a91cSTero Kristo 	}
3110a84a91cSTero Kristo 
3124ba7c3c3SMing Lei 	for (i = 0; i < irq_setup->nr_regs; i++) {
3130a84a91cSTero Kristo 		gc = irq_alloc_generic_chip("PRCM", 1,
3140a84a91cSTero Kristo 			irq_setup->base_irq + i * 32, prm_base,
3150a84a91cSTero Kristo 			handle_level_irq);
3160a84a91cSTero Kristo 
3170a84a91cSTero Kristo 		if (!gc) {
3180a84a91cSTero Kristo 			pr_err("PRCM: failed to allocate generic chip\n");
3190a84a91cSTero Kristo 			goto err;
3200a84a91cSTero Kristo 		}
3210a84a91cSTero Kristo 		ct = gc->chip_types;
3220a84a91cSTero Kristo 		ct->chip.irq_ack = irq_gc_ack_set_bit;
3230a84a91cSTero Kristo 		ct->chip.irq_mask = irq_gc_mask_clr_bit;
3240a84a91cSTero Kristo 		ct->chip.irq_unmask = irq_gc_mask_set_bit;
3250a84a91cSTero Kristo 
3260a84a91cSTero Kristo 		ct->regs.ack = irq_setup->ack + i * 4;
3270a84a91cSTero Kristo 		ct->regs.mask = irq_setup->mask + i * 4;
3280a84a91cSTero Kristo 
3290a84a91cSTero Kristo 		irq_setup_generic_chip(gc, mask[i], 0, IRQ_NOREQUEST, 0);
3300a84a91cSTero Kristo 		prcm_irq_chips[i] = gc;
3310a84a91cSTero Kristo 	}
3320a84a91cSTero Kristo 
33330a69ef7STony Lindgren 	if (of_have_populated_dt()) {
33430a69ef7STony Lindgren 		int irq = omap_prcm_event_to_irq("io");
33581243651STero Kristo 		omap_pcs_legacy_init(irq, irq_setup->reconfigure_io_chain);
33630a69ef7STony Lindgren 	}
33730a69ef7STony Lindgren 
3380a84a91cSTero Kristo 	return 0;
3390a84a91cSTero Kristo 
3400a84a91cSTero Kristo err:
3410a84a91cSTero Kristo 	omap_prcm_irq_cleanup();
3420a84a91cSTero Kristo 	return -ENOMEM;
3430a84a91cSTero Kristo }
3443f4990f4SR Sricharan 
345e24c3573SPaul Walmsley /**
346d9a16f9aSPaul Walmsley  * omap2_set_globals_prm - set the PRM base address (for early use)
347d9a16f9aSPaul Walmsley  * @prm: PRM base virtual address
348d9a16f9aSPaul Walmsley  *
349d9a16f9aSPaul Walmsley  * XXX Will be replaced when the PRM/CM drivers are completed.
3503f4990f4SR Sricharan  */
351d9a16f9aSPaul Walmsley void __init omap2_set_globals_prm(void __iomem *prm)
3523f4990f4SR Sricharan {
353d9a16f9aSPaul Walmsley 	prm_base = prm;
354d9a16f9aSPaul Walmsley }
355d9a16f9aSPaul Walmsley 
356d9a16f9aSPaul Walmsley /**
3572bb2a5d3SPaul Walmsley  * prm_read_reset_sources - return the sources of the SoC's last reset
3582bb2a5d3SPaul Walmsley  *
3592bb2a5d3SPaul Walmsley  * Return a u32 bitmask representing the reset sources that caused the
3602bb2a5d3SPaul Walmsley  * SoC to reset.  The low-level per-SoC functions called by this
3612bb2a5d3SPaul Walmsley  * function remap the SoC-specific reset source bits into an
3622bb2a5d3SPaul Walmsley  * OMAP-common set of reset source bits, defined in
3632bb2a5d3SPaul Walmsley  * arch/arm/mach-omap2/prm.h.  Returns the standardized reset source
3642bb2a5d3SPaul Walmsley  * u32 bitmask from the hardware upon success, or returns (1 <<
3652bb2a5d3SPaul Walmsley  * OMAP_UNKNOWN_RST_SRC_ID_SHIFT) if no low-level read_reset_sources()
3662bb2a5d3SPaul Walmsley  * function was registered.
3673f4990f4SR Sricharan  */
3682bb2a5d3SPaul Walmsley u32 prm_read_reset_sources(void)
3693f4990f4SR Sricharan {
3702bb2a5d3SPaul Walmsley 	u32 ret = 1 << OMAP_UNKNOWN_RST_SRC_ID_SHIFT;
3712bb2a5d3SPaul Walmsley 
3722bb2a5d3SPaul Walmsley 	if (prm_ll_data->read_reset_sources)
3732bb2a5d3SPaul Walmsley 		ret = prm_ll_data->read_reset_sources();
3742bb2a5d3SPaul Walmsley 	else
3752bb2a5d3SPaul Walmsley 		WARN_ONCE(1, "prm: %s: no mapping function defined for reset sources\n", __func__);
3762bb2a5d3SPaul Walmsley 
3772bb2a5d3SPaul Walmsley 	return ret;
3782bb2a5d3SPaul Walmsley }
3792bb2a5d3SPaul Walmsley 
3802bb2a5d3SPaul Walmsley /**
381e6d3a8b0SRajendra Nayak  * prm_was_any_context_lost_old - was device context lost? (old API)
382e6d3a8b0SRajendra Nayak  * @part: PRM partition ID (e.g., OMAP4430_PRM_PARTITION)
383e6d3a8b0SRajendra Nayak  * @inst: PRM instance offset (e.g., OMAP4430_PRM_MPU_INST)
384e6d3a8b0SRajendra Nayak  * @idx: CONTEXT register offset
385e6d3a8b0SRajendra Nayak  *
386e6d3a8b0SRajendra Nayak  * Return 1 if any bits were set in the *_CONTEXT_* register
387e6d3a8b0SRajendra Nayak  * identified by (@part, @inst, @idx), which means that some context
388e6d3a8b0SRajendra Nayak  * was lost for that module; otherwise, return 0.  XXX Deprecated;
389e6d3a8b0SRajendra Nayak  * callers need to use a less-SoC-dependent way to identify hardware
390e6d3a8b0SRajendra Nayak  * IP blocks.
391e6d3a8b0SRajendra Nayak  */
392e6d3a8b0SRajendra Nayak bool prm_was_any_context_lost_old(u8 part, s16 inst, u16 idx)
393e6d3a8b0SRajendra Nayak {
394e6d3a8b0SRajendra Nayak 	bool ret = true;
395e6d3a8b0SRajendra Nayak 
396e6d3a8b0SRajendra Nayak 	if (prm_ll_data->was_any_context_lost_old)
397e6d3a8b0SRajendra Nayak 		ret = prm_ll_data->was_any_context_lost_old(part, inst, idx);
398e6d3a8b0SRajendra Nayak 	else
399e6d3a8b0SRajendra Nayak 		WARN_ONCE(1, "prm: %s: no mapping function defined\n",
400e6d3a8b0SRajendra Nayak 			  __func__);
401e6d3a8b0SRajendra Nayak 
402e6d3a8b0SRajendra Nayak 	return ret;
403e6d3a8b0SRajendra Nayak }
404e6d3a8b0SRajendra Nayak 
405e6d3a8b0SRajendra Nayak /**
406e6d3a8b0SRajendra Nayak  * prm_clear_context_lost_flags_old - clear context loss flags (old API)
407e6d3a8b0SRajendra Nayak  * @part: PRM partition ID (e.g., OMAP4430_PRM_PARTITION)
408e6d3a8b0SRajendra Nayak  * @inst: PRM instance offset (e.g., OMAP4430_PRM_MPU_INST)
409e6d3a8b0SRajendra Nayak  * @idx: CONTEXT register offset
410e6d3a8b0SRajendra Nayak  *
411e6d3a8b0SRajendra Nayak  * Clear hardware context loss bits for the module identified by
412e6d3a8b0SRajendra Nayak  * (@part, @inst, @idx).  No return value.  XXX Deprecated; callers
413e6d3a8b0SRajendra Nayak  * need to use a less-SoC-dependent way to identify hardware IP
414e6d3a8b0SRajendra Nayak  * blocks.
415e6d3a8b0SRajendra Nayak  */
416e6d3a8b0SRajendra Nayak void prm_clear_context_loss_flags_old(u8 part, s16 inst, u16 idx)
417e6d3a8b0SRajendra Nayak {
418e6d3a8b0SRajendra Nayak 	if (prm_ll_data->clear_context_loss_flags_old)
419e6d3a8b0SRajendra Nayak 		prm_ll_data->clear_context_loss_flags_old(part, inst, idx);
420e6d3a8b0SRajendra Nayak 	else
421e6d3a8b0SRajendra Nayak 		WARN_ONCE(1, "prm: %s: no mapping function defined\n",
422e6d3a8b0SRajendra Nayak 			  __func__);
423e6d3a8b0SRajendra Nayak }
424e6d3a8b0SRajendra Nayak 
425e6d3a8b0SRajendra Nayak /**
426efd44dc3STero Kristo  * omap_prm_assert_hardreset - assert hardreset for an IP block
427efd44dc3STero Kristo  * @shift: register bit shift corresponding to the reset line
428efd44dc3STero Kristo  * @part: PRM partition
429efd44dc3STero Kristo  * @prm_mod: PRM submodule base or instance offset
430efd44dc3STero Kristo  * @offset: register offset
431efd44dc3STero Kristo  *
432efd44dc3STero Kristo  * Asserts a hardware reset line for an IP block.
433efd44dc3STero Kristo  */
434efd44dc3STero Kristo int omap_prm_assert_hardreset(u8 shift, u8 part, s16 prm_mod, u16 offset)
435efd44dc3STero Kristo {
436efd44dc3STero Kristo 	if (!prm_ll_data->assert_hardreset) {
437efd44dc3STero Kristo 		WARN_ONCE(1, "prm: %s: no mapping function defined\n",
438efd44dc3STero Kristo 			  __func__);
439efd44dc3STero Kristo 		return -EINVAL;
440efd44dc3STero Kristo 	}
441efd44dc3STero Kristo 
442efd44dc3STero Kristo 	return prm_ll_data->assert_hardreset(shift, part, prm_mod, offset);
443efd44dc3STero Kristo }
444efd44dc3STero Kristo 
445efd44dc3STero Kristo /**
44637fb59d7STero Kristo  * omap_prm_deassert_hardreset - deassert hardreset for an IP block
44737fb59d7STero Kristo  * @shift: register bit shift corresponding to the reset line
44837fb59d7STero Kristo  * @st_shift: reset status bit shift corresponding to the reset line
44937fb59d7STero Kristo  * @part: PRM partition
45037fb59d7STero Kristo  * @prm_mod: PRM submodule base or instance offset
45137fb59d7STero Kristo  * @offset: register offset
45237fb59d7STero Kristo  * @st_offset: status register offset
45337fb59d7STero Kristo  *
45437fb59d7STero Kristo  * Deasserts a hardware reset line for an IP block.
45537fb59d7STero Kristo  */
45637fb59d7STero Kristo int omap_prm_deassert_hardreset(u8 shift, u8 st_shift, u8 part, s16 prm_mod,
45737fb59d7STero Kristo 				u16 offset, u16 st_offset)
45837fb59d7STero Kristo {
45937fb59d7STero Kristo 	if (!prm_ll_data->deassert_hardreset) {
46037fb59d7STero Kristo 		WARN_ONCE(1, "prm: %s: no mapping function defined\n",
46137fb59d7STero Kristo 			  __func__);
46237fb59d7STero Kristo 		return -EINVAL;
46337fb59d7STero Kristo 	}
46437fb59d7STero Kristo 
46537fb59d7STero Kristo 	return prm_ll_data->deassert_hardreset(shift, st_shift, part, prm_mod,
46637fb59d7STero Kristo 					       offset, st_offset);
46737fb59d7STero Kristo }
46837fb59d7STero Kristo 
46937fb59d7STero Kristo /**
4701bc28b34STero Kristo  * omap_prm_is_hardreset_asserted - check the hardreset status for an IP block
4711bc28b34STero Kristo  * @shift: register bit shift corresponding to the reset line
4721bc28b34STero Kristo  * @part: PRM partition
4731bc28b34STero Kristo  * @prm_mod: PRM submodule base or instance offset
4741bc28b34STero Kristo  * @offset: register offset
4751bc28b34STero Kristo  *
4761bc28b34STero Kristo  * Checks if a hardware reset line for an IP block is enabled or not.
4771bc28b34STero Kristo  */
4781bc28b34STero Kristo int omap_prm_is_hardreset_asserted(u8 shift, u8 part, s16 prm_mod, u16 offset)
4791bc28b34STero Kristo {
4801bc28b34STero Kristo 	if (!prm_ll_data->is_hardreset_asserted) {
4811bc28b34STero Kristo 		WARN_ONCE(1, "prm: %s: no mapping function defined\n",
4821bc28b34STero Kristo 			  __func__);
4831bc28b34STero Kristo 		return -EINVAL;
4841bc28b34STero Kristo 	}
4851bc28b34STero Kristo 
4861bc28b34STero Kristo 	return prm_ll_data->is_hardreset_asserted(shift, part, prm_mod, offset);
4871bc28b34STero Kristo }
4881bc28b34STero Kristo 
4891bc28b34STero Kristo /**
4904984eeafSTero Kristo  * omap_prm_reconfigure_io_chain - clear latches and reconfigure I/O chain
4914984eeafSTero Kristo  *
4924984eeafSTero Kristo  * Clear any previously-latched I/O wakeup events and ensure that the
4934984eeafSTero Kristo  * I/O wakeup gates are aligned with the current mux settings.
4944984eeafSTero Kristo  * Calls SoC specific I/O chain reconfigure function if available,
4954984eeafSTero Kristo  * otherwise does nothing.
4964984eeafSTero Kristo  */
4974984eeafSTero Kristo void omap_prm_reconfigure_io_chain(void)
4984984eeafSTero Kristo {
4994984eeafSTero Kristo 	if (!prcm_irq_setup || !prcm_irq_setup->reconfigure_io_chain)
5004984eeafSTero Kristo 		return;
5014984eeafSTero Kristo 
5024984eeafSTero Kristo 	prcm_irq_setup->reconfigure_io_chain();
5034984eeafSTero Kristo }
5044984eeafSTero Kristo 
5054984eeafSTero Kristo /**
50661c8621eSTero Kristo  * omap_prm_reset_system - trigger global SW reset
50761c8621eSTero Kristo  *
50861c8621eSTero Kristo  * Triggers SoC specific global warm reset to reboot the device.
50961c8621eSTero Kristo  */
51061c8621eSTero Kristo void omap_prm_reset_system(void)
51161c8621eSTero Kristo {
51261c8621eSTero Kristo 	if (!prm_ll_data->reset_system) {
51361c8621eSTero Kristo 		WARN_ONCE(1, "prm: %s: no mapping function defined\n",
51461c8621eSTero Kristo 			  __func__);
51561c8621eSTero Kristo 		return;
51661c8621eSTero Kristo 	}
51761c8621eSTero Kristo 
51861c8621eSTero Kristo 	prm_ll_data->reset_system();
51961c8621eSTero Kristo 
52061c8621eSTero Kristo 	while (1)
52161c8621eSTero Kristo 		cpu_relax();
52261c8621eSTero Kristo }
52361c8621eSTero Kristo 
52461c8621eSTero Kristo /**
525e24c3573SPaul Walmsley  * prm_register - register per-SoC low-level data with the PRM
526e24c3573SPaul Walmsley  * @pld: low-level per-SoC OMAP PRM data & function pointers to register
527e24c3573SPaul Walmsley  *
528e24c3573SPaul Walmsley  * Register per-SoC low-level OMAP PRM data and function pointers with
529e24c3573SPaul Walmsley  * the OMAP PRM common interface.  The caller must keep the data
530e24c3573SPaul Walmsley  * pointed to by @pld valid until it calls prm_unregister() and
531e24c3573SPaul Walmsley  * it returns successfully.  Returns 0 upon success, -EINVAL if @pld
532e24c3573SPaul Walmsley  * is NULL, or -EEXIST if prm_register() has already been called
533e24c3573SPaul Walmsley  * without an intervening prm_unregister().
534e24c3573SPaul Walmsley  */
535e24c3573SPaul Walmsley int prm_register(struct prm_ll_data *pld)
536e24c3573SPaul Walmsley {
537e24c3573SPaul Walmsley 	if (!pld)
538e24c3573SPaul Walmsley 		return -EINVAL;
539e24c3573SPaul Walmsley 
540e24c3573SPaul Walmsley 	if (prm_ll_data != &null_prm_ll_data)
541e24c3573SPaul Walmsley 		return -EEXIST;
542e24c3573SPaul Walmsley 
543e24c3573SPaul Walmsley 	prm_ll_data = pld;
544e24c3573SPaul Walmsley 
5453f4990f4SR Sricharan 	return 0;
5463f4990f4SR Sricharan }
5473f4990f4SR Sricharan 
548e24c3573SPaul Walmsley /**
549e24c3573SPaul Walmsley  * prm_unregister - unregister per-SoC low-level data & function pointers
550e24c3573SPaul Walmsley  * @pld: low-level per-SoC OMAP PRM data & function pointers to unregister
551e24c3573SPaul Walmsley  *
552e24c3573SPaul Walmsley  * Unregister per-SoC low-level OMAP PRM data and function pointers
553e24c3573SPaul Walmsley  * that were previously registered with prm_register().  The
554e24c3573SPaul Walmsley  * caller may not destroy any of the data pointed to by @pld until
555e24c3573SPaul Walmsley  * this function returns successfully.  Returns 0 upon success, or
556e24c3573SPaul Walmsley  * -EINVAL if @pld is NULL or if @pld does not match the struct
557e24c3573SPaul Walmsley  * prm_ll_data * previously registered by prm_register().
558e24c3573SPaul Walmsley  */
559e24c3573SPaul Walmsley int prm_unregister(struct prm_ll_data *pld)
5603f4990f4SR Sricharan {
561e24c3573SPaul Walmsley 	if (!pld || prm_ll_data != pld)
562e24c3573SPaul Walmsley 		return -EINVAL;
5633f4990f4SR Sricharan 
564e24c3573SPaul Walmsley 	prm_ll_data = &null_prm_ll_data;
565e24c3573SPaul Walmsley 
5663f4990f4SR Sricharan 	return 0;
5673f4990f4SR Sricharan }
568943a63a4STero Kristo 
56931957609SUwe Kleine-König static const struct of_device_id omap_prcm_dt_match_table[] = {
570943a63a4STero Kristo 	{ .compatible = "ti,am3-prcm" },
571943a63a4STero Kristo 	{ .compatible = "ti,am3-scrm" },
572943a63a4STero Kristo 	{ .compatible = "ti,am4-prcm" },
573943a63a4STero Kristo 	{ .compatible = "ti,am4-scrm" },
574*132754e4STony Lindgren 	{ .compatible = "ti,dm814-prcm" },
575*132754e4STony Lindgren 	{ .compatible = "ti,dm814-scrm" },
576*132754e4STony Lindgren 	{ .compatible = "ti,dm816-prcm" },
577*132754e4STony Lindgren 	{ .compatible = "ti,dm816-scrm" },
578ee200119STero Kristo 	{ .compatible = "ti,omap2-prcm" },
579ee200119STero Kristo 	{ .compatible = "ti,omap2-scrm" },
580943a63a4STero Kristo 	{ .compatible = "ti,omap3-prm" },
581943a63a4STero Kristo 	{ .compatible = "ti,omap3-cm" },
582943a63a4STero Kristo 	{ .compatible = "ti,omap3-scrm" },
583943a63a4STero Kristo 	{ .compatible = "ti,omap4-cm1" },
584943a63a4STero Kristo 	{ .compatible = "ti,omap4-prm" },
585943a63a4STero Kristo 	{ .compatible = "ti,omap4-cm2" },
586943a63a4STero Kristo 	{ .compatible = "ti,omap4-scrm" },
587943a63a4STero Kristo 	{ .compatible = "ti,omap5-prm" },
588943a63a4STero Kristo 	{ .compatible = "ti,omap5-cm-core-aon" },
589943a63a4STero Kristo 	{ .compatible = "ti,omap5-scrm" },
590943a63a4STero Kristo 	{ .compatible = "ti,omap5-cm-core" },
591943a63a4STero Kristo 	{ .compatible = "ti,dra7-prm" },
592943a63a4STero Kristo 	{ .compatible = "ti,dra7-cm-core-aon" },
593943a63a4STero Kristo 	{ .compatible = "ti,dra7-cm-core" },
594943a63a4STero Kristo 	{ }
595943a63a4STero Kristo };
596943a63a4STero Kristo 
597943a63a4STero Kristo static struct clk_hw_omap memmap_dummy_ck = {
598943a63a4STero Kristo 	.flags = MEMMAP_ADDRESSING,
599943a63a4STero Kristo };
600943a63a4STero Kristo 
601943a63a4STero Kristo static u32 prm_clk_readl(void __iomem *reg)
602943a63a4STero Kristo {
603943a63a4STero Kristo 	return omap2_clk_readl(&memmap_dummy_ck, reg);
604943a63a4STero Kristo }
605943a63a4STero Kristo 
606943a63a4STero Kristo static void prm_clk_writel(u32 val, void __iomem *reg)
607943a63a4STero Kristo {
608943a63a4STero Kristo 	omap2_clk_writel(val, &memmap_dummy_ck, reg);
609943a63a4STero Kristo }
610943a63a4STero Kristo 
611943a63a4STero Kristo static struct ti_clk_ll_ops omap_clk_ll_ops = {
612943a63a4STero Kristo 	.clk_readl = prm_clk_readl,
613943a63a4STero Kristo 	.clk_writel = prm_clk_writel,
614943a63a4STero Kristo };
615943a63a4STero Kristo 
616943a63a4STero Kristo int __init of_prcm_init(void)
617943a63a4STero Kristo {
618943a63a4STero Kristo 	struct device_node *np;
619943a63a4STero Kristo 	void __iomem *mem;
620943a63a4STero Kristo 	int memmap_index = 0;
621943a63a4STero Kristo 
622943a63a4STero Kristo 	ti_clk_ll_ops = &omap_clk_ll_ops;
623943a63a4STero Kristo 
624943a63a4STero Kristo 	for_each_matching_node(np, omap_prcm_dt_match_table) {
625943a63a4STero Kristo 		mem = of_iomap(np, 0);
626943a63a4STero Kristo 		clk_memmaps[memmap_index] = mem;
627943a63a4STero Kristo 		ti_dt_clk_init_provider(np, memmap_index);
628943a63a4STero Kristo 		memmap_index++;
629943a63a4STero Kristo 	}
630943a63a4STero Kristo 
631943a63a4STero Kristo 	return 0;
632943a63a4STero Kristo }
633b550e47fSTero Kristo 
634b550e47fSTero Kristo static int __init prm_late_init(void)
635b550e47fSTero Kristo {
636b550e47fSTero Kristo 	if (prm_ll_data->late_init)
637b550e47fSTero Kristo 		return prm_ll_data->late_init();
638b550e47fSTero Kristo 	return 0;
639b550e47fSTero Kristo }
640b550e47fSTero Kristo subsys_initcall(prm_late_init);
641