staging:iio:dds:ad9951: allocate chip state with iio_dev
[linux-2.6/next.git] / arch / arm / mach-mxs / ocotp.c
blob65157a35dbba351d6751bdcb4ee483e37b25ee88
1 /*
2 * Copyright 2010 Freescale Semiconductor, Inc. All Rights Reserved.
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
15 #include <linux/delay.h>
16 #include <linux/err.h>
17 #include <linux/mutex.h>
19 #include <mach/mxs.h>
21 #define OCOTP_WORD_OFFSET 0x20
22 #define OCOTP_WORD_COUNT 0x20
24 #define BM_OCOTP_CTRL_BUSY (1 << 8)
25 #define BM_OCOTP_CTRL_ERROR (1 << 9)
26 #define BM_OCOTP_CTRL_RD_BANK_OPEN (1 << 12)
28 static DEFINE_MUTEX(ocotp_mutex);
29 static u32 ocotp_words[OCOTP_WORD_COUNT];
31 const u32 *mxs_get_ocotp(void)
33 void __iomem *ocotp_base = MXS_IO_ADDRESS(MXS_OCOTP_BASE_ADDR);
34 int timeout = 0x400;
35 size_t i;
36 static int once = 0;
38 if (once)
39 return ocotp_words;
41 mutex_lock(&ocotp_mutex);
44 * clk_enable(hbus_clk) for ocotp can be skipped
45 * as it must be on when system is running.
48 /* try to clear ERROR bit */
49 __mxs_clrl(BM_OCOTP_CTRL_ERROR, ocotp_base);
51 /* check both BUSY and ERROR cleared */
52 while ((__raw_readl(ocotp_base) &
53 (BM_OCOTP_CTRL_BUSY | BM_OCOTP_CTRL_ERROR)) && --timeout)
54 cpu_relax();
56 if (unlikely(!timeout))
57 goto error_unlock;
59 /* open OCOTP banks for read */
60 __mxs_setl(BM_OCOTP_CTRL_RD_BANK_OPEN, ocotp_base);
62 /* approximately wait 32 hclk cycles */
63 udelay(1);
65 /* poll BUSY bit becoming cleared */
66 timeout = 0x400;
67 while ((__raw_readl(ocotp_base) & BM_OCOTP_CTRL_BUSY) && --timeout)
68 cpu_relax();
70 if (unlikely(!timeout))
71 goto error_unlock;
73 for (i = 0; i < OCOTP_WORD_COUNT; i++)
74 ocotp_words[i] = __raw_readl(ocotp_base + OCOTP_WORD_OFFSET +
75 i * 0x10);
77 /* close banks for power saving */
78 __mxs_clrl(BM_OCOTP_CTRL_RD_BANK_OPEN, ocotp_base);
80 once = 1;
82 mutex_unlock(&ocotp_mutex);
84 return ocotp_words;
86 error_unlock:
87 mutex_unlock(&ocotp_mutex);
88 pr_err("%s: timeout in reading OCOTP\n", __func__);
89 return NULL;