2 * JZ4780 BCH controller
4 * Copyright (c) 2015 Imagination Technologies
5 * Author: Alex Smith <alex.smith@imgtec.com>
7 * This program is free software; you can redistribute it and/or modify it
8 * under the terms of the GNU General Public License version 2 as published
9 * by the Free Software Foundation.
12 #include <linux/bitops.h>
13 #include <linux/clk.h>
14 #include <linux/delay.h>
15 #include <linux/init.h>
16 #include <linux/iopoll.h>
17 #include <linux/module.h>
18 #include <linux/mutex.h>
20 #include <linux/of_platform.h>
21 #include <linux/platform_device.h>
22 #include <linux/sched.h>
23 #include <linux/slab.h>
25 #include "jz4780_bch.h"
31 #define BCH_BHPAR0 0x14
32 #define BCH_BHERR0 0x84
33 #define BCH_BHINT 0x184
34 #define BCH_BHINTES 0x188
35 #define BCH_BHINTEC 0x18c
36 #define BCH_BHINTE 0x190
38 #define BCH_BHCR_BSEL_SHIFT 4
39 #define BCH_BHCR_BSEL_MASK (0x7f << BCH_BHCR_BSEL_SHIFT)
40 #define BCH_BHCR_ENCE BIT(2)
41 #define BCH_BHCR_INIT BIT(1)
42 #define BCH_BHCR_BCHE BIT(0)
44 #define BCH_BHCNT_PARITYSIZE_SHIFT 16
45 #define BCH_BHCNT_PARITYSIZE_MASK (0x7f << BCH_BHCNT_PARITYSIZE_SHIFT)
46 #define BCH_BHCNT_BLOCKSIZE_SHIFT 0
47 #define BCH_BHCNT_BLOCKSIZE_MASK (0x7ff << BCH_BHCNT_BLOCKSIZE_SHIFT)
49 #define BCH_BHERR_MASK_SHIFT 16
50 #define BCH_BHERR_MASK_MASK (0xffff << BCH_BHERR_MASK_SHIFT)
51 #define BCH_BHERR_INDEX_SHIFT 0
52 #define BCH_BHERR_INDEX_MASK (0x7ff << BCH_BHERR_INDEX_SHIFT)
54 #define BCH_BHINT_ERRC_SHIFT 24
55 #define BCH_BHINT_ERRC_MASK (0x7f << BCH_BHINT_ERRC_SHIFT)
56 #define BCH_BHINT_TERRC_SHIFT 16
57 #define BCH_BHINT_TERRC_MASK (0x7f << BCH_BHINT_TERRC_SHIFT)
58 #define BCH_BHINT_DECF BIT(3)
59 #define BCH_BHINT_ENCF BIT(2)
60 #define BCH_BHINT_UNCOR BIT(1)
61 #define BCH_BHINT_ERR BIT(0)
63 #define BCH_CLK_RATE (200 * 1000 * 1000)
65 /* Timeout for BCH calculation/correction. */
66 #define BCH_TIMEOUT_US 100000
75 static void jz4780_bch_init(struct jz4780_bch
*bch
,
76 struct jz4780_bch_params
*params
, bool encode
)
80 /* Clear interrupt status. */
81 writel(readl(bch
->base
+ BCH_BHINT
), bch
->base
+ BCH_BHINT
);
83 /* Set up BCH count register. */
84 reg
= params
->size
<< BCH_BHCNT_BLOCKSIZE_SHIFT
;
85 reg
|= params
->bytes
<< BCH_BHCNT_PARITYSIZE_SHIFT
;
86 writel(reg
, bch
->base
+ BCH_BHCNT
);
88 /* Initialise and enable BCH. */
89 reg
= BCH_BHCR_BCHE
| BCH_BHCR_INIT
;
90 reg
|= params
->strength
<< BCH_BHCR_BSEL_SHIFT
;
93 writel(reg
, bch
->base
+ BCH_BHCR
);
96 static void jz4780_bch_disable(struct jz4780_bch
*bch
)
98 writel(readl(bch
->base
+ BCH_BHINT
), bch
->base
+ BCH_BHINT
);
99 writel(BCH_BHCR_BCHE
, bch
->base
+ BCH_BHCCR
);
102 static void jz4780_bch_write_data(struct jz4780_bch
*bch
, const void *buf
,
105 size_t size32
= size
/ sizeof(u32
);
106 size_t size8
= size
% sizeof(u32
);
110 src32
= (const u32
*)buf
;
112 writel(*src32
++, bch
->base
+ BCH_BHDR
);
114 src8
= (const u8
*)src32
;
116 writeb(*src8
++, bch
->base
+ BCH_BHDR
);
119 static void jz4780_bch_read_parity(struct jz4780_bch
*bch
, void *buf
,
122 size_t size32
= size
/ sizeof(u32
);
123 size_t size8
= size
% sizeof(u32
);
130 *dest32
++ = readl(bch
->base
+ BCH_BHPAR0
+ offset
);
131 offset
+= sizeof(u32
);
134 dest8
= (u8
*)dest32
;
135 val
= readl(bch
->base
+ BCH_BHPAR0
+ offset
);
138 dest8
[2] = (val
>> 16) & 0xff;
140 dest8
[1] = (val
>> 8) & 0xff;
142 dest8
[0] = val
& 0xff;
147 static bool jz4780_bch_wait_complete(struct jz4780_bch
*bch
, unsigned int irq
,
154 * While we could use interrupts here and sleep until the operation
155 * completes, the controller works fairly quickly (usually a few
156 * microseconds) and so the overhead of sleeping until we get an
157 * interrupt quite noticeably decreases performance.
159 ret
= readl_poll_timeout(bch
->base
+ BCH_BHINT
, reg
,
160 (reg
& irq
) == irq
, 0, BCH_TIMEOUT_US
);
167 writel(reg
, bch
->base
+ BCH_BHINT
);
172 * jz4780_bch_calculate() - calculate ECC for a data buffer
174 * @params: BCH parameters.
175 * @buf: input buffer with raw data.
176 * @ecc_code: output buffer with ECC.
178 * Return: 0 on success, -ETIMEDOUT if timed out while waiting for BCH
181 int jz4780_bch_calculate(struct jz4780_bch
*bch
, struct jz4780_bch_params
*params
,
182 const u8
*buf
, u8
*ecc_code
)
186 mutex_lock(&bch
->lock
);
187 jz4780_bch_init(bch
, params
, true);
188 jz4780_bch_write_data(bch
, buf
, params
->size
);
190 if (jz4780_bch_wait_complete(bch
, BCH_BHINT_ENCF
, NULL
)) {
191 jz4780_bch_read_parity(bch
, ecc_code
, params
->bytes
);
193 dev_err(bch
->dev
, "timed out while calculating ECC\n");
197 jz4780_bch_disable(bch
);
198 mutex_unlock(&bch
->lock
);
201 EXPORT_SYMBOL(jz4780_bch_calculate
);
204 * jz4780_bch_correct() - detect and correct bit errors
206 * @params: BCH parameters.
207 * @buf: raw data read from the chip.
208 * @ecc_code: ECC read from the chip.
210 * Given the raw data and the ECC read from the NAND device, detects and
211 * corrects errors in the data.
213 * Return: the number of bit errors corrected, -EBADMSG if there are too many
214 * errors to correct or -ETIMEDOUT if we timed out waiting for the controller.
216 int jz4780_bch_correct(struct jz4780_bch
*bch
, struct jz4780_bch_params
*params
,
217 u8
*buf
, u8
*ecc_code
)
219 u32 reg
, mask
, index
;
222 mutex_lock(&bch
->lock
);
224 jz4780_bch_init(bch
, params
, false);
225 jz4780_bch_write_data(bch
, buf
, params
->size
);
226 jz4780_bch_write_data(bch
, ecc_code
, params
->bytes
);
228 if (!jz4780_bch_wait_complete(bch
, BCH_BHINT_DECF
, ®
)) {
229 dev_err(bch
->dev
, "timed out while correcting data\n");
234 if (reg
& BCH_BHINT_UNCOR
) {
235 dev_warn(bch
->dev
, "uncorrectable ECC error\n");
240 /* Correct any detected errors. */
241 if (reg
& BCH_BHINT_ERR
) {
242 count
= (reg
& BCH_BHINT_ERRC_MASK
) >> BCH_BHINT_ERRC_SHIFT
;
243 ret
= (reg
& BCH_BHINT_TERRC_MASK
) >> BCH_BHINT_TERRC_SHIFT
;
245 for (i
= 0; i
< count
; i
++) {
246 reg
= readl(bch
->base
+ BCH_BHERR0
+ (i
* 4));
247 mask
= (reg
& BCH_BHERR_MASK_MASK
) >>
248 BCH_BHERR_MASK_SHIFT
;
249 index
= (reg
& BCH_BHERR_INDEX_MASK
) >>
250 BCH_BHERR_INDEX_SHIFT
;
251 buf
[(index
* 2) + 0] ^= mask
;
252 buf
[(index
* 2) + 1] ^= mask
>> 8;
259 jz4780_bch_disable(bch
);
260 mutex_unlock(&bch
->lock
);
263 EXPORT_SYMBOL(jz4780_bch_correct
);
266 * jz4780_bch_get() - get the BCH controller device
267 * @np: BCH device tree node.
269 * Gets the BCH controller device from the specified device tree node. The
270 * device must be released with jz4780_bch_release() when it is no longer being
273 * Return: a pointer to jz4780_bch, errors are encoded into the pointer.
274 * PTR_ERR(-EPROBE_DEFER) if the device hasn't been initialised yet.
276 static struct jz4780_bch
*jz4780_bch_get(struct device_node
*np
)
278 struct platform_device
*pdev
;
279 struct jz4780_bch
*bch
;
281 pdev
= of_find_device_by_node(np
);
282 if (!pdev
|| !platform_get_drvdata(pdev
))
283 return ERR_PTR(-EPROBE_DEFER
);
285 get_device(&pdev
->dev
);
287 bch
= platform_get_drvdata(pdev
);
288 clk_prepare_enable(bch
->clk
);
294 * of_jz4780_bch_get() - get the BCH controller from a DT node
295 * @of_node: the node that contains a bch-controller property.
297 * Get the bch-controller property from the given device tree
298 * node and pass it to jz4780_bch_get to do the work.
300 * Return: a pointer to jz4780_bch, errors are encoded into the pointer.
301 * PTR_ERR(-EPROBE_DEFER) if the device hasn't been initialised yet.
303 struct jz4780_bch
*of_jz4780_bch_get(struct device_node
*of_node
)
305 struct jz4780_bch
*bch
= NULL
;
306 struct device_node
*np
;
308 np
= of_parse_phandle(of_node
, "ingenic,bch-controller", 0);
311 bch
= jz4780_bch_get(np
);
316 EXPORT_SYMBOL(of_jz4780_bch_get
);
319 * jz4780_bch_release() - release the BCH controller device
322 void jz4780_bch_release(struct jz4780_bch
*bch
)
324 clk_disable_unprepare(bch
->clk
);
325 put_device(bch
->dev
);
327 EXPORT_SYMBOL(jz4780_bch_release
);
329 static int jz4780_bch_probe(struct platform_device
*pdev
)
331 struct device
*dev
= &pdev
->dev
;
332 struct jz4780_bch
*bch
;
333 struct resource
*res
;
335 bch
= devm_kzalloc(dev
, sizeof(*bch
), GFP_KERNEL
);
339 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
340 bch
->base
= devm_ioremap_resource(dev
, res
);
341 if (IS_ERR(bch
->base
))
342 return PTR_ERR(bch
->base
);
344 jz4780_bch_disable(bch
);
346 bch
->clk
= devm_clk_get(dev
, NULL
);
347 if (IS_ERR(bch
->clk
)) {
348 dev_err(dev
, "failed to get clock: %ld\n", PTR_ERR(bch
->clk
));
349 return PTR_ERR(bch
->clk
);
352 clk_set_rate(bch
->clk
, BCH_CLK_RATE
);
354 mutex_init(&bch
->lock
);
357 platform_set_drvdata(pdev
, bch
);
362 static const struct of_device_id jz4780_bch_dt_match
[] = {
363 { .compatible
= "ingenic,jz4780-bch" },
366 MODULE_DEVICE_TABLE(of
, jz4780_bch_dt_match
);
368 static struct platform_driver jz4780_bch_driver
= {
369 .probe
= jz4780_bch_probe
,
371 .name
= "jz4780-bch",
372 .of_match_table
= of_match_ptr(jz4780_bch_dt_match
),
375 module_platform_driver(jz4780_bch_driver
);
377 MODULE_AUTHOR("Alex Smith <alex@alex-smith.me.uk>");
378 MODULE_AUTHOR("Harvey Hunt <harveyhuntnexus@gmail.com>");
379 MODULE_DESCRIPTION("Ingenic JZ4780 BCH error correction driver");
380 MODULE_LICENSE("GPL v2");