1
2
3
4
5
6#include <common.h>
7#include <lmb.h>
8#include <log.h>
9#include <asm/arch/sys_proto.h>
10#include <asm/global_data.h>
11#include <linux/delay.h>
12#include <linux/errno.h>
13#include <asm/io.h>
14#include <asm/mach-imx/regs-common.h>
15
16DECLARE_GLOBAL_DATA_PTR;
17
18
19#define RESET_MAX_TIMEOUT 1000000
20
21#define MXS_BLOCK_SFTRST (1 << 31)
22#define MXS_BLOCK_CLKGATE (1 << 30)
23
24int mxs_wait_mask_set(struct mxs_register_32 *reg, uint32_t mask, unsigned
25 int timeout)
26{
27 while (--timeout) {
28 if ((readl(®->reg) & mask) == mask)
29 break;
30 udelay(1);
31 }
32
33 return !timeout;
34}
35
36int mxs_wait_mask_clr(struct mxs_register_32 *reg, uint32_t mask, unsigned
37 int timeout)
38{
39 while (--timeout) {
40 if ((readl(®->reg) & mask) == 0)
41 break;
42 udelay(1);
43 }
44
45 return !timeout;
46}
47
48int mxs_reset_block(struct mxs_register_32 *reg)
49{
50
51 writel(MXS_BLOCK_SFTRST, ®->reg_clr);
52
53 if (mxs_wait_mask_clr(reg, MXS_BLOCK_SFTRST, RESET_MAX_TIMEOUT))
54 return 1;
55
56
57 writel(MXS_BLOCK_CLKGATE, ®->reg_clr);
58
59
60 writel(MXS_BLOCK_SFTRST, ®->reg_set);
61
62
63 if (mxs_wait_mask_set(reg, MXS_BLOCK_CLKGATE, RESET_MAX_TIMEOUT))
64 return 1;
65
66
67 writel(MXS_BLOCK_SFTRST, ®->reg_clr);
68
69 if (mxs_wait_mask_clr(reg, MXS_BLOCK_SFTRST, RESET_MAX_TIMEOUT))
70 return 1;
71
72
73 writel(MXS_BLOCK_CLKGATE, ®->reg_clr);
74
75 if (mxs_wait_mask_clr(reg, MXS_BLOCK_CLKGATE, RESET_MAX_TIMEOUT))
76 return 1;
77
78 return 0;
79}
80