summaryrefslogtreecommitdiffstats
path: root/lib/stmp-device.c
blob: 74d476316e68c85269918bc76316ed0313a5aacb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*
 * Freescale i.MXS common code
 *
 * Copyright (C) 2012 Wolfram Sang <w.sang@pengutronix.de>
 *
 * Based on code from LTIB:
 * Copyright (C) 2010 Freescale Semiconductor, Inc.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License as
 * published by the Free Software Foundation; either version 2 of
 * the License, or (at your option) any later version.
 */

#include <common.h>
#include <io.h>
#include <stmp-device.h>
#include <errno.h>
#include <clock.h>

#define	STMP_IP_RESET_TIMEOUT	(10 * MSECOND)

#define	STMP_BLOCK_SFTRST				(1 << 31)
#define	STMP_BLOCK_CLKGATE				(1 << 30)

int stmp_reset_block(void __iomem *reg, int just_enable)
{
	/* Clear SFTRST */
	writel(STMP_BLOCK_SFTRST, reg + STMP_OFFSET_REG_CLR);

	if (wait_on_timeout(STMP_IP_RESET_TIMEOUT, !(readl(reg) & STMP_BLOCK_SFTRST)))
		goto timeout;

	/* Clear CLKGATE */
	writel(STMP_BLOCK_CLKGATE, reg + STMP_OFFSET_REG_CLR);

	if (!just_enable) {
		/* Set SFTRST */
		writel(STMP_BLOCK_SFTRST, reg + STMP_OFFSET_REG_SET);

		/* Wait for CLKGATE being set */
		if (wait_on_timeout(STMP_IP_RESET_TIMEOUT, readl(reg) & STMP_BLOCK_CLKGATE))
			goto timeout;
	}

	/* Clear SFTRST */
	writel(STMP_BLOCK_SFTRST, reg + STMP_OFFSET_REG_CLR);

	if (wait_on_timeout(STMP_IP_RESET_TIMEOUT, !(readl(reg) & STMP_BLOCK_SFTRST)))
		goto timeout;

	/* Clear CLKGATE */
	writel(STMP_BLOCK_CLKGATE, reg + STMP_OFFSET_REG_CLR);

	if (wait_on_timeout(STMP_IP_RESET_TIMEOUT, !(readl(reg) & STMP_BLOCK_CLKGATE)))
		goto timeout;

	return 0;

timeout:
	printf("MXS: Timeout resetting block via register 0x%p\n", reg);
	return -ETIMEDOUT;
}